aboutsummaryrefslogtreecommitdiffstats
path: root/kicad-dart-70/usbaudio.kicad_sch
blob: bfe9a7b479a56ad25d13d6c8ab26cc1df69a5cf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
(kicad_sch (version 20211123) (generator eeschema)

  (uuid 26dcb423-5b49-4724-91cf-bd14a1d23ade)

  (paper "A4")

  (title_block
    (title "DART-70 TRX")
    (date "2023-03-08")
    (rev "0")
    (company "HB9EGM")
    (comment 1 "A 4m Band SSB/CW Transceiver")
  )

  (lib_symbols
    (symbol "Connector:USB_B_Micro" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
      (property "Reference" "J" (id 0) (at -5.08 11.43 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "USB_B_Micro" (id 1) (at -5.08 8.89 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 3.81 -1.27 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 3.81 -1.27 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "connector USB micro" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "USB Micro Type B connector" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "USB*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "USB_B_Micro_0_1"
        (rectangle (start -5.08 -7.62) (end 5.08 7.62)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
        (circle (center -3.81 2.159) (radius 0.635)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (circle (center -0.635 3.429) (radius 0.381)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (rectangle (start -0.127 -7.62) (end 0.127 -6.858)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.905 2.159)
            (xy 0.635 2.159)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -3.175 2.159)
            (xy -2.54 2.159)
            (xy -1.27 3.429)
            (xy -0.635 3.429)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.54 2.159)
            (xy -1.905 2.159)
            (xy -1.27 0.889)
            (xy 0 0.889)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.635 2.794)
            (xy 0.635 1.524)
            (xy 1.905 2.159)
            (xy 0.635 2.794)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (polyline
          (pts
            (xy -4.318 5.588)
            (xy -1.778 5.588)
            (xy -2.032 4.826)
            (xy -4.064 4.826)
            (xy -4.318 5.588)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (polyline
          (pts
            (xy -4.699 5.842)
            (xy -4.699 5.588)
            (xy -4.445 4.826)
            (xy -4.445 4.572)
            (xy -1.651 4.572)
            (xy -1.651 4.826)
            (xy -1.397 5.588)
            (xy -1.397 5.842)
            (xy -4.699 5.842)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 0.254 1.27) (end -0.508 0.508)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (rectangle (start 5.08 -5.207) (end 4.318 -4.953)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 5.08 -2.667) (end 4.318 -2.413)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 5.08 -0.127) (end 4.318 0.127)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 5.08 4.953) (end 4.318 5.207)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "USB_B_Micro_1_1"
        (pin power_out line (at 7.62 5.08 180) (length 2.54)
          (name "VBUS" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 7.62 -2.54 180) (length 2.54)
          (name "D-" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 7.62 0 180) (length 2.54)
          (name "D+" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -5.08 180) (length 2.54)
          (name "ID" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin power_out line (at 0 -10.16 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -2.54 -10.16 90) (length 2.54)
          (name "Shield" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C" (id 1) (at 0.635 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.032 0.762)
            (xy 2.032 0.762)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "C_1_1"
        (pin passive line (at 0 3.81 270) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:Crystal_Small" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "Y" (id 0) (at 0 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Crystal_Small" (id 1) (at 0 -2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Two pin crystal, small symbol" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Crystal_Small_0_1"
        (rectangle (start -0.762 -1.524) (end 0.762 1.524)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.27 -0.762)
            (xy -1.27 0.762)
          )
          (stroke (width 0.381) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 -0.762)
            (xy 1.27 0.762)
          )
          (stroke (width 0.381) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "Crystal_Small_1_1"
        (pin passive line (at -2.54 0 0) (length 1.27)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 0 180) (length 1.27)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:FerriteBead" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "FB" (id 0) (at -3.81 0.635 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "FerriteBead" (id 1) (at 3.81 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at -1.778 0 90)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "L ferrite bead inductor filter" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Ferrite bead" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "FerriteBead_0_1"
        (polyline
          (pts
            (xy 0 -1.27)
            (xy 0 -1.2192)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 1.27)
            (xy 0 1.2954)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.7686 0.4064)
            (xy -1.7018 2.2606)
            (xy 2.7686 -0.3048)
            (xy 1.6764 -2.159)
            (xy -2.7686 0.4064)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "FerriteBead_1_1"
        (pin passive line (at 0 3.81 270) (length 2.54)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 2.54)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (id 0) (at 2.032 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R" (id 1) (at 0 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at -1.778 0 90)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Resistor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_0_1"
        (rectangle (start -1.016 -2.54) (end 1.016 2.54)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "R_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "mpb:PCM2903C" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
      (property "Reference" "U" (id 0) (at -1.27 21.59 0)
        (effects (font (size 1.524 1.524)))
      )
      (property "Value" "PCM2903C" (id 1) (at -1.27 -21.59 0)
        (effects (font (size 1.524 1.524)))
      )
      (property "Footprint" "Package_SO:SSOP-28_5.3x10.2mm_P0.65mm" (id 2) (at 1.27 20.32 0)
        (effects (font (size 1.524 1.524)) hide)
      )
      (property "Datasheet" "/home/bram/Sync/Doc/Datasheet/pcm2903c.pdf" (id 3) (at 0 -24.13 0)
        (effects (font (size 1.524 1.524)) hide)
      )
      (property "ki_keywords" "USB Audio" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "PCM2903C Stereo Audio Codec With USB Interface,\nSingle-Ended Analog Input/Output, and S/PDIF" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "PCM2903C_0_1"
        (rectangle (start -11.43 19.05) (end 11.43 -19.05)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type background))
        )
      )
      (symbol "PCM2903C_1_1"
        (pin bidirectional line (at -16.51 16.51 0) (length 5.08)
          (name "D+" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -16.51 -6.35 0) (length 5.08)
          (name "VCCC" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -16.51 -8.89 0) (length 5.08)
          (name "AGNDC" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 -11.43 0) (length 5.08)
          (name "VINL" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 -13.97 0) (length 5.08)
          (name "VINR" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin power_out line (at -16.51 -16.51 0) (length 5.08)
          (name "VCOM" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 16.51 -16.51 180) (length 5.08)
          (name "VOUTR" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 -13.97 180) (length 5.08)
          (name "VOUTL" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 16.51 -11.43 180) (length 5.08)
          (name "VCCP1" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 16.51 -8.89 180) (length 5.08)
          (name "AGNDP" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 16.51 -6.35 180) (length 5.08)
          (name "VCCP2" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -16.51 13.97 0) (length 5.08)
          (name "D-" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 16.51 -3.81 180) (length 5.08)
          (name "XTO" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 16.51 -1.27 180) (length 5.08)
          (name "XTI" (effects (font (size 1.27 1.27))))
          (number "21" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 16.51 1.27 180) (length 5.08)
          (name "AGNDX" (effects (font (size 1.27 1.27))))
          (number "22" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 16.51 3.81 180) (length 5.08)
          (name "VCCX" (effects (font (size 1.27 1.27))))
          (number "23" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 6.35 180) (length 5.08)
          (name "DIN" (effects (font (size 1.27 1.27))))
          (number "24" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 16.51 8.89 180) (length 5.08)
          (name "DOUT" (effects (font (size 1.27 1.27))))
          (number "25" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 16.51 11.43 180) (length 5.08)
          (name "DGND" (effects (font (size 1.27 1.27))))
          (number "26" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 16.51 13.97 180) (length 5.08)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "27" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 16.51 16.51 180) (length 5.08)
          (name "SSPNDn" (effects (font (size 1.27 1.27))))
          (number "28" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -16.51 11.43 0) (length 5.08)
          (name "VBUS" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -16.51 8.89 0) (length 5.08)
          (name "DGNDU" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 6.35 0) (length 5.08)
          (name "HID0" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 3.81 0) (length 5.08)
          (name "HID1" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 1.27 0) (length 5.08)
          (name "HID2" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 -1.27 0) (length 5.08)
          (name "SEL0" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 -3.81 0) (length 5.08)
          (name "SEL1" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "+3V3" (id 1) (at 0 3.556 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "global power" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"+3V3\"" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "+3V3_0_1"
        (polyline
          (pts
            (xy -0.762 1.27)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "+3V3_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "+3V3" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "GND" (id 1) (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "global power" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "GND_0_1"
        (polyline
          (pts
            (xy 0 0)
            (xy 0 -1.27)
            (xy 1.27 -1.27)
            (xy 0 -2.54)
            (xy -1.27 -1.27)
            (xy 0 -1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "GND_1_1"
        (pin power_in line (at 0 0 270) (length 0) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
  )

  (junction (at 86.36 80.01) (diameter 0) (color 0 0 0 0)
    (uuid 0e33a30c-5897-4800-b884-ee75cdbdfc2e)
  )
  (junction (at 45.72 85.09) (diameter 0) (color 0 0 0 0)
    (uuid 2659b29f-b216-4ba2-8ad4-7f39f035d584)
  )
  (junction (at 101.6 53.34) (diameter 0) (color 0 0 0 0)
    (uuid 277fddd3-2c43-423f-b7c5-d5a13398fa69)
  )
  (junction (at 74.93 95.25) (diameter 0) (color 0 0 0 0)
    (uuid 2e3f754e-8774-4acf-b914-ca035cdaee8d)
  )
  (junction (at 63.5 74.93) (diameter 0) (color 0 0 0 0)
    (uuid 47ebe5bc-4694-493b-914b-53dabb8450a8)
  )
  (junction (at 207.01 87.63) (diameter 0) (color 0 0 0 0)
    (uuid 4f07ef79-9057-4cd0-9a0e-e4dadb2a2954)
  )
  (junction (at 153.67 102.87) (diameter 0) (color 0 0 0 0)
    (uuid 61b26a27-99cb-4d52-8cf5-176f99ff4db2)
  )
  (junction (at 86.36 55.88) (diameter 0) (color 0 0 0 0)
    (uuid 7b2bcadc-2c8e-46bc-b9db-ebaebd04b252)
  )
  (junction (at 153.67 87.63) (diameter 0) (color 0 0 0 0)
    (uuid a772c776-1be2-4008-be9e-63437ed78277)
  )
  (junction (at 43.18 85.09) (diameter 0) (color 0 0 0 0)
    (uuid be72efc1-0d75-4a6f-8685-b61329c2f33c)
  )
  (junction (at 199.39 87.63) (diameter 0) (color 0 0 0 0)
    (uuid c0587862-f804-4911-ab2c-e55f9ca2bf94)
  )
  (junction (at 97.79 43.18) (diameter 0) (color 0 0 0 0)
    (uuid cdf6b800-7928-4b9d-8647-df7a951c133e)
  )
  (junction (at 153.67 97.79) (diameter 0) (color 0 0 0 0)
    (uuid d06a1dcb-9c8a-4e5c-b417-7b7574dd5dbd)
  )
  (junction (at 101.6 97.79) (diameter 0) (color 0 0 0 0)
    (uuid d31100fc-36d7-41c7-90d6-baf7b2e7f5b2)
  )
  (junction (at 151.13 77.47) (diameter 0) (color 0 0 0 0)
    (uuid eb09623a-6166-43cf-bb4e-bb94552d5259)
  )

  (no_connect (at 143.51 82.55) (uuid 100f2140-f2c4-46b3-a2fc-2a5c853c8a63))
  (no_connect (at 110.49 85.09) (uuid 8942b981-a284-4727-885c-6b36ac0cd06c))
  (no_connect (at 110.49 87.63) (uuid 93db4b09-05d5-493d-ae0d-114b4bfe714d))
  (no_connect (at 143.51 85.09) (uuid 9d5127ae-8483-4488-8d86-1d37708e8812))
  (no_connect (at 110.49 90.17) (uuid b7026ef9-8a81-4f15-89e6-c3c14cce1238))
  (no_connect (at 143.51 74.93) (uuid e710ef83-299f-465e-b1b3-a112e8c556f1))

  (wire (pts (xy 74.93 54.61) (xy 74.93 95.25))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 00b71405-c2e7-4939-a20d-9db7f0c8dc1f)
  )
  (wire (pts (xy 86.36 80.01) (xy 86.36 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 023c4095-8a36-4369-96f7-cb65075c8fd7)
  )
  (wire (pts (xy 101.6 43.18) (xy 101.6 44.45))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 05fd2030-174e-4288-a8b3-6a22f2265379)
  )
  (wire (pts (xy 143.51 77.47) (xy 151.13 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 06d81e1a-5068-4c50-930e-23b42e3c8fba)
  )
  (wire (pts (xy 73.66 77.47) (xy 110.49 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 14fca238-b330-47aa-a246-45118afdb3d0)
  )
  (wire (pts (xy 71.12 124.46) (xy 71.12 135.89))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 15977d7d-050c-4618-8653-030771d9caee)
  )
  (wire (pts (xy 63.5 64.77) (xy 63.5 67.31))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1bbd36f5-d927-44b6-b33d-0986cb52c7ad)
  )
  (wire (pts (xy 143.51 102.87) (xy 153.67 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1c78ff2e-1284-4f50-abaf-b396cba3af6c)
  )
  (wire (pts (xy 151.13 120.65) (xy 151.13 105.41))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1dde2127-d7c9-4a41-b24c-5109dff3c05b)
  )
  (wire (pts (xy 43.18 85.09) (xy 45.72 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1de310f4-01f9-4501-ba74-9b2f2487b80c)
  )
  (wire (pts (xy 151.13 105.41) (xy 143.51 105.41))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1f1f8056-56ed-4f8a-bc6c-aef7a8021a6c)
  )
  (wire (pts (xy 66.04 77.47) (xy 53.34 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 24fd59f4-86c4-48c2-b3d1-1fcfdd49179d)
  )
  (wire (pts (xy 86.36 52.07) (xy 86.36 55.88))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 26664d44-e025-4f14-86be-b0e418b8f6e9)
  )
  (wire (pts (xy 199.39 87.63) (xy 199.39 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 266eb809-b62f-46d7-85ab-16bfdfe41707)
  )
  (wire (pts (xy 143.51 97.79) (xy 153.67 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2dd7f83b-6b03-4998-8a11-d2c71f71aa7d)
  )
  (wire (pts (xy 96.52 124.46) (xy 96.52 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2e24c098-1608-4f08-b7d4-aaa502d9ff45)
  )
  (wire (pts (xy 146.05 92.71) (xy 143.51 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3f6d5850-7b3c-4995-8e7a-0dd90aca267e)
  )
  (wire (pts (xy 151.13 55.88) (xy 151.13 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 43159657-22f5-4e02-a2a7-0b39f3285c14)
  )
  (wire (pts (xy 143.51 107.95) (xy 148.59 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 448110fb-09b0-42e8-b81f-60993bd58090)
  )
  (wire (pts (xy 146.05 95.25) (xy 143.51 95.25))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 480df3b1-df3f-4b0e-9e1d-3065859a57b9)
  )
  (wire (pts (xy 73.66 74.93) (xy 110.49 74.93))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 55203471-517f-4139-beaa-61f5f59cc562)
  )
  (wire (pts (xy 162.56 120.65) (xy 151.13 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5ab5d642-3ea2-48de-b133-6d1348603e6a)
  )
  (wire (pts (xy 205.74 85.09) (xy 207.01 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5e28ea42-032a-428a-ac8e-aacde86b8856)
  )
  (wire (pts (xy 97.79 43.18) (xy 101.6 43.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 63fac080-d1ca-4670-a3da-c65f324cae56)
  )
  (wire (pts (xy 60.96 85.09) (xy 60.96 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 656dd03c-6a6a-470b-8e0c-84873a28a659)
  )
  (wire (pts (xy 100.33 105.41) (xy 100.33 135.89))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 68a407bd-d880-4129-a78f-452e857fff65)
  )
  (wire (pts (xy 207.01 87.63) (xy 207.01 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 70c9e7ed-3eac-4bfe-a8ec-7d073f1800df)
  )
  (wire (pts (xy 100.33 135.89) (xy 88.9 135.89))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7a650e54-d790-4993-a710-e2ffd1b8e475)
  )
  (wire (pts (xy 143.51 87.63) (xy 153.67 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7fcb4c3d-af0b-4ade-8929-11400c674318)
  )
  (wire (pts (xy 148.59 127) (xy 162.56 127))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 82c2644d-e080-4d76-8f44-6f026494ba72)
  )
  (wire (pts (xy 153.67 53.34) (xy 101.6 53.34))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8c88d865-0f5c-4284-9431-2b1095aa2a3a)
  )
  (wire (pts (xy 53.34 54.61) (xy 74.93 54.61))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8ca266f5-d971-4ea3-a1b7-8f3744ef3d94)
  )
  (wire (pts (xy 148.59 107.95) (xy 148.59 127))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 92d62072-e100-4e61-b600-c200048f68b2)
  )
  (wire (pts (xy 101.6 53.34) (xy 101.6 52.07))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 940fc603-6096-44db-834b-b91c7d3546cc)
  )
  (wire (pts (xy 110.49 105.41) (xy 100.33 105.41))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 95411427-c139-457c-9d06-aebab9d34606)
  )
  (wire (pts (xy 96.52 102.87) (xy 110.49 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 95b0db0d-7cd2-4b0e-ba72-f9cbc965faa3)
  )
  (wire (pts (xy 193.04 87.63) (xy 199.39 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9620607f-bbcb-45fb-8fe1-f60125c58027)
  )
  (wire (pts (xy 86.36 44.45) (xy 86.36 43.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 97c4f1ae-be40-461a-a599-8a3c385ef3f3)
  )
  (wire (pts (xy 63.5 74.93) (xy 53.34 74.93))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a12a6aa8-c20e-42ff-b05b-6676ad4356e4)
  )
  (wire (pts (xy 200.66 85.09) (xy 199.39 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a29cd356-e87c-47a7-a432-d14ac0d1c3f4)
  )
  (wire (pts (xy 86.36 97.79) (xy 101.6 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a7304204-890f-4bcc-86e5-b1d320cb39b7)
  )
  (wire (pts (xy 153.67 97.79) (xy 153.67 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a8fae355-9c8f-46ca-8558-354ab569852a)
  )
  (wire (pts (xy 153.67 102.87) (xy 162.56 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid aba5ec6e-1a1d-4f13-bc5b-6b1051ce6f8d)
  )
  (wire (pts (xy 86.36 92.71) (xy 110.49 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b2790631-17c1-4cdc-a822-7b998f3befcc)
  )
  (wire (pts (xy 45.72 85.09) (xy 53.34 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bb7ca3cc-2e4a-44f5-a26b-dbcc02b4c013)
  )
  (wire (pts (xy 199.39 85.09) (xy 199.39 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bd31d9fe-3b30-4cf9-903a-4325bf1ec212)
  )
  (wire (pts (xy 71.12 135.89) (xy 81.28 135.89))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c4277042-3deb-4483-9c85-9a3b0e72c071)
  )
  (wire (pts (xy 86.36 43.18) (xy 97.79 43.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c5a1d522-9d76-4b76-9091-bb76323fba6d)
  )
  (wire (pts (xy 101.6 97.79) (xy 110.49 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c81049c0-81ce-48b4-aa72-2e341587e78a)
  )
  (wire (pts (xy 40.64 85.09) (xy 43.18 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c9c53f9b-4395-44c9-a132-9319635ff4cd)
  )
  (wire (pts (xy 153.67 102.87) (xy 153.67 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c9ee0eaa-7e91-44dd-b63a-df61ed56cffb)
  )
  (wire (pts (xy 88.9 124.46) (xy 96.52 124.46))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cd43177d-8047-4aec-9bec-0dc55ccba11a)
  )
  (wire (pts (xy 86.36 55.88) (xy 86.36 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d0e9cffd-bbb3-413b-8fef-f010ab4471eb)
  )
  (wire (pts (xy 53.34 69.85) (xy 53.34 54.61))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d17b784c-ce12-4d6f-a61b-4b2cee7647d8)
  )
  (wire (pts (xy 74.93 95.25) (xy 110.49 95.25))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d45bfbd5-e842-42f2-98b2-81e24543cda8)
  )
  (wire (pts (xy 151.13 77.47) (xy 162.56 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d484b33b-f25d-46bd-a21c-bdb997f5009e)
  )
  (wire (pts (xy 193.04 91.44) (xy 193.04 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d4eba5a6-94ff-454d-b9d6-43fa3ec6da21)
  )
  (wire (pts (xy 86.36 80.01) (xy 110.49 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d601ba13-045d-430d-8fa0-4d20c7317fd2)
  )
  (wire (pts (xy 86.36 55.88) (xy 151.13 55.88))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d6251cc9-b746-4cdb-808d-caf526f9744f)
  )
  (wire (pts (xy 63.5 74.93) (xy 66.04 74.93))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dabb344b-ae61-48f4-9765-1cabc3275683)
  )
  (wire (pts (xy 214.63 87.63) (xy 207.01 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dc9341ee-27f3-454f-a4f5-bec06b25343a)
  )
  (wire (pts (xy 207.01 85.09) (xy 207.01 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dca47938-cf1d-4dbc-838d-9ae6c1bd63db)
  )
  (wire (pts (xy 60.96 80.01) (xy 53.34 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dd2742d4-5bdf-4e56-969b-823bcb27cc6e)
  )
  (wire (pts (xy 101.6 53.34) (xy 101.6 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e52a32ef-af59-48c3-b5d5-d28307676b04)
  )
  (wire (pts (xy 214.63 91.44) (xy 214.63 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e61fc16f-3fd5-4251-8c22-68efb57d9c2c)
  )
  (wire (pts (xy 86.36 97.79) (xy 86.36 100.33))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f301b8ea-b6ec-4fc6-9eaf-303a9be3b5bf)
  )
  (wire (pts (xy 153.67 87.63) (xy 153.67 53.34))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f3c74367-bf80-4c93-abdd-85d42e33fea7)
  )
  (wire (pts (xy 71.12 124.46) (xy 81.28 124.46))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f466119b-9dfb-4cbc-9c23-9a673212b463)
  )

  (text "Maybe only fit capacitor for a\nsingle input channel"
    (at 69.85 143.51 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid be63d12d-de47-4c88-9be7-03df23d72531)
  )

  (label "XTO" (at 208.28 87.63 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 147ccee8-7982-4397-a0c2-2e9f360e1747)
  )
  (label "VDD" (at 91.44 55.88 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 19c6da02-dd7e-4bb1-b9ea-b967c394350f)
  )
  (label "XTO" (at 146.05 95.25 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 4073c567-a464-4be1-8202-dee9fda48ca9)
  )
  (label "USB_DM" (at 60.96 77.47 180)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid 7e3f33dd-8f17-4107-accc-1f1814d8bf2f)
  )
  (label "XTI" (at 198.12 87.63 180)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid ba232523-e5b0-4b9a-8dbd-52a367cf557c)
  )
  (label "USB_DP" (at 60.96 74.93 180)
    (effects (font (size 1.27 1.27)) (justify right bottom))
    (uuid d2247b98-74e4-4051-81c6-8a302ab226aa)
  )
  (label "VCC" (at 110.49 53.34 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid d3a4f574-a2c1-416e-a0f7-3d9ea1f49a28)
  )
  (label "XTI" (at 146.05 92.71 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid de1589b9-db1b-4497-bf40-435aad76a55f)
  )

  (hierarchical_label "AF_OUT_L" (shape output) (at 170.18 120.65 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 11dbce18-7a53-433d-9526-fe9597d80d5f)
  )
  (hierarchical_label "AF_IN" (shape input) (at 71.12 130.81 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 39ef28f4-21b3-47ee-8abb-8c10e2b3ff7c)
  )
  (hierarchical_label "AF_OUT_R" (shape output) (at 170.18 127 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 593307cc-5bd9-452a-9168-5dd5c0bf0cb7)
  )

  (symbol (lib_id "power:GND") (at 143.51 90.17 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 03f0d9d3-e38a-4ab7-9a04-543ca9eb1b60)
    (property "Reference" "#PWR0260" (id 0) (at 149.86 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 147.32 90.1699 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 143.51 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 143.51 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 50996f24-586d-4065-9927-1136c86aae17))
  )

  (symbol (lib_id "power:+3V3") (at 97.79 43.18 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 0515ce7c-1f64-49ec-b3f2-b678e445af1e)
    (property "Reference" "#PWR0255" (id 0) (at 97.79 46.99 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3V3" (id 1) (at 95.25 39.37 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 97.79 43.18 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 97.79 43.18 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c00d8776-8a7f-4b1d-9f61-04989f66a98d))
  )

  (symbol (lib_id "Connector:USB_B_Micro") (at 45.72 74.93 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 084ea724-fe89-42aa-b030-601319b128b0)
    (property "Reference" "J33" (id 0) (at 39.878 77.5462 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "USB" (id 1) (at 39.878 75.2348 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Connector_USB:USB_Micro-B_Molex-105017-0001" (id 2) (at 49.53 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 49.53 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "Molex 104017-0001" (id 4) (at 45.72 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 5) (at 45.72 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 38f2bdfd-f137-43ee-98c3-f5b3dd0028a8))
    (pin "2" (uuid df5e62f8-fa3a-421a-8045-02c2e4821dc8))
    (pin "3" (uuid 733353f4-1e41-4f53-b350-1c1d53a925c7))
    (pin "4" (uuid 1a257d92-6865-4f7d-8c0d-0daa33dee509))
    (pin "5" (uuid 94614cca-940a-43d4-a34b-8596c39d7cb1))
    (pin "6" (uuid 0d85e056-1d62-4c9c-89db-e140f8b4f98b))
  )

  (symbol (lib_id "Device:FerriteBead") (at 101.6 48.26 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 0ad023f0-297e-4cb0-a43c-8df67aa96052)
    (property "Reference" "FB6" (id 0) (at 105.41 48.3107 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "BLM18BB221SN1D" (id 1) (at 96.9518 48.26 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "Inductor_SMD:L_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (id 2) (at 103.378 48.26 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 101.6 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "BLM18BB221SN1D" (id 4) (at 101.6 48.26 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 5) (at 101.6 48.26 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b4825ad3-99bb-43e3-ac8e-c09a146496ce))
    (pin "2" (uuid 51ff75f0-3458-4e4a-91a4-056a1c45f37d))
  )

  (symbol (lib_id "Device:R") (at 57.15 85.09 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 0e9dd8b2-15e8-40ef-bd52-0c82b9e70193)
    (property "Reference" "R201" (id 0) (at 57.15 90.3478 90))
    (property "Value" "0" (id 1) (at 57.15 88.0364 90))
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 57.15 86.868 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 57.15 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 57.15 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 331c8ac9-c3ea-4f57-96a1-fac668dba920))
    (pin "2" (uuid 583b3f7a-b59e-47f7-94b2-bde30f79e2fd))
  )

  (symbol (lib_id "power:GND") (at 110.49 107.95 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 1494950a-6de8-421c-8fdf-1ad2deab738a)
    (property "Reference" "#PWR0258" (id 0) (at 104.14 107.95 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 107.2388 108.077 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 110.49 107.95 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 110.49 107.95 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9561dbbb-1910-46cd-845b-ab2051d94040))
  )

  (symbol (lib_id "Device:R") (at 69.85 77.47 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 1f1b55c7-c4f3-46a1-a61c-ad48d3fffb6a)
    (property "Reference" "R204" (id 0) (at 69.85 82.7278 90))
    (property "Value" "22" (id 1) (at 69.85 80.4164 90))
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 69.85 79.248 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 69.85 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 69.85 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ded98a88-2dd7-460a-a64a-ba270e0cb90e))
    (pin "2" (uuid b6081649-b967-4623-bf14-e0319e9554a5))
  )

  (symbol (lib_id "Device:Crystal_Small") (at 203.2 85.09 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2206e99b-ca29-4b36-aba6-5ecff04fcbb1)
    (property "Reference" "Y11" (id 0) (at 203.2 78.74 0))
    (property "Value" "ABM3-12MHz" (id 1) (at 203.2 81.28 0))
    (property "Footprint" "mpb:ABM3" (id 2) (at 203.2 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 203.2 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid dbf9c1b6-44fc-43a7-8de0-7f90bceb54c5))
    (pin "2" (uuid c0488de1-f648-46fe-b83a-47a99ab7074f))
  )

  (symbol (lib_id "Device:C") (at 86.36 104.14 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2663e03f-3034-4259-8b18-377891714e0f)
    (property "Reference" "C185" (id 0) (at 90.17 102.8699 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "10uF" (id 1) (at 90.17 105.4099 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 85.3948 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 86.36 104.14 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "GRM21BR6YA106ME" (id 4) (at 86.36 104.14 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6a7e0970-5fee-4e2f-8ee3-2a3867d108ef))
    (pin "2" (uuid f61d9e2f-3c5c-4ee8-b3e7-f7982ff68d33))
  )

  (symbol (lib_id "Device:R") (at 63.5 71.12 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 3200e2dc-c05d-4c27-bccc-cedb3e9f6742)
    (property "Reference" "R202" (id 0) (at 61.722 72.2884 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "1.5k" (id 1) (at 61.722 69.977 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 61.722 71.12 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 63.5 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 63.5 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7e67ea14-328f-4c5c-88d2-a5d97c656a80))
    (pin "2" (uuid 899275d7-bc30-47c3-a60e-588415a5c092))
  )

  (symbol (lib_id "power:GND") (at 214.63 99.06 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 362ed2b9-7136-42eb-83cc-04dd8d71bb3c)
    (property "Reference" "#PWR0265" (id 0) (at 214.63 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 217.17 100.3299 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 214.63 99.06 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 214.63 99.06 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e4e4f6b6-1ce7-4f76-8bcb-65e9349c08e9))
  )

  (symbol (lib_id "Device:C") (at 85.09 124.46 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 380405b3-9e24-45f0-a357-ec801455e058)
    (property "Reference" "C183" (id 0) (at 85.09 116.84 90))
    (property "Value" "10uF" (id 1) (at 85.09 119.38 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 88.9 123.4948 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 85.09 124.46 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "GRM21BR6YA106ME" (id 4) (at 85.09 124.46 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7b625b80-064c-48ca-b19b-6e816504a809))
    (pin "2" (uuid f0272c65-b037-4d17-b449-7a112d24eaac))
  )

  (symbol (lib_id "Device:C") (at 85.09 135.89 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 3f6a76af-5af4-49c4-8f2c-01783d9ffd66)
    (property "Reference" "C184" (id 0) (at 85.09 128.27 90))
    (property "Value" "10uF" (id 1) (at 85.09 130.81 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 88.9 134.9248 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 85.09 135.89 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "GRM21BR6YA106ME" (id 4) (at 85.09 135.89 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 68a0d4fe-a59d-48e8-a6da-9ce53dcb0b74))
    (pin "2" (uuid 93839ca3-ca96-4f77-930b-8c249cee06b0))
  )

  (symbol (lib_id "power:GND") (at 170.18 102.87 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4e604f71-f874-4145-90c0-ec6a845f0fd3)
    (property "Reference" "#PWR0263" (id 0) (at 176.53 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 173.99 102.8699 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 170.18 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 170.18 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e52de028-993c-4ac5-b846-ec0db2fcb0e7))
  )

  (symbol (lib_id "Device:FerriteBead") (at 86.36 48.26 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4e7148c5-6f2c-4be3-a9d8-7368363c6fdd)
    (property "Reference" "FB5" (id 0) (at 90.17 48.3107 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "BLM18BB221SN1D" (id 1) (at 81.7118 48.26 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "Inductor_SMD:L_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (id 2) (at 88.138 48.26 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 86.36 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "BLM18BB221SN1D" (id 4) (at 86.36 48.26 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 5) (at 86.36 48.26 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ffa64476-f74b-431f-ba90-f9bd54179cfc))
    (pin "2" (uuid 8af18c67-d82c-4597-8596-94939d2b9fa6))
  )

  (symbol (lib_id "mpb:PCM2903C") (at 127 91.44 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4fa948c2-0b82-48b3-97ed-189b48778e87)
    (property "Reference" "U10" (id 0) (at 127 67.31 0)
      (effects (font (size 1.524 1.524)))
    )
    (property "Value" "PCM2903C" (id 1) (at 127 71.12 0)
      (effects (font (size 1.524 1.524)))
    )
    (property "Footprint" "Package_SO:SSOP-28_5.3x10.2mm_P0.65mm" (id 2) (at 128.27 71.12 0)
      (effects (font (size 1.524 1.524)) hide)
    )
    (property "Datasheet" "/home/bram/Sync/Doc/Datasheet/pcm2903c.pdf" (id 3) (at 127 115.57 0)
      (effects (font (size 1.524 1.524)) hide)
    )
    (pin "1" (uuid 461e3f6a-aa8a-4d15-af3b-d358f9cbecb9))
    (pin "10" (uuid f2512b38-e69f-478b-b844-45f4d8deace2))
    (pin "11" (uuid 7c9f41a3-fcfd-4345-befb-5a0008383343))
    (pin "12" (uuid d76388f6-ee47-4e52-809e-5fee663dc50c))
    (pin "13" (uuid 58c30272-92a6-49ff-b05c-fb8ed613f5a3))
    (pin "14" (uuid 2a6dcf80-c72b-4e56-aff1-eea36ae7911e))
    (pin "15" (uuid 7ff3eb5c-378d-4a46-b75f-4523dbdd395c))
    (pin "16" (uuid dcd52954-df9e-4e25-96f3-027d81afc647))
    (pin "17" (uuid 0fa46494-c009-4e49-8d5a-cd090b3a255f))
    (pin "18" (uuid 599bb4c0-f897-45f7-a037-817ad5e7afe6))
    (pin "19" (uuid 45530f99-4ff4-4986-b804-b0185d150a5f))
    (pin "2" (uuid 0dcc775e-c191-46ac-a000-925ae08f6e50))
    (pin "20" (uuid b60dc3e2-d9da-48d5-9143-e2081a68fb65))
    (pin "21" (uuid f01d9dbd-8aa9-4b55-91dc-d96c6e51786e))
    (pin "22" (uuid 6f3f9c92-5d64-4d0c-ad6c-8a9eb5a3cb4c))
    (pin "23" (uuid 7edee329-a1eb-4dbe-838f-b8d4e0994931))
    (pin "24" (uuid 26e3e84e-4f5e-41a1-900f-c59bf84ebb7b))
    (pin "25" (uuid 67bef0ec-9c29-47ed-ae91-cdb3e89ff87f))
    (pin "26" (uuid 9438fa28-61df-4f63-b102-7d39766bf4b9))
    (pin "27" (uuid 4d173f92-e619-4389-a272-38783a73c83f))
    (pin "28" (uuid 89e362da-de7a-47f8-bba2-959847c943b0))
    (pin "3" (uuid 193dbeb7-6b45-42f9-8e7b-a4ca91711f9f))
    (pin "4" (uuid df40c62d-169f-492e-8191-fb2c746f2d9e))
    (pin "5" (uuid d6b9a62a-a342-475b-88dc-26d56a38cdce))
    (pin "6" (uuid dc42a06e-7266-423b-bac2-1ac53fe5bb69))
    (pin "7" (uuid 789900a1-c677-4da4-8070-a4224f3a2d9b))
    (pin "8" (uuid 007ce431-8003-41f2-a094-ee9e17e73dd2))
    (pin "9" (uuid 97cfccef-ce9a-4858-9c95-ec52e158c015))
  )

  (symbol (lib_id "power:GND") (at 110.49 100.33 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 53d81da5-d9c5-49eb-9a10-bd90ba97d648)
    (property "Reference" "#PWR0257" (id 0) (at 104.14 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 107.2388 100.457 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 110.49 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 110.49 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9639fb1e-b2bc-414d-aaca-af601fc11814))
  )

  (symbol (lib_id "Device:R") (at 203.2 88.9 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 559e661e-4794-4acf-b5ae-fa74e3d7c272)
    (property "Reference" "R209" (id 0) (at 203.2 92.71 90))
    (property "Value" "1M" (id 1) (at 203.2 95.25 90))
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 203.2 90.678 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 203.2 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b9cd7c60-27e1-439d-af4c-a6f6da0da31c))
    (pin "2" (uuid cd027378-cdf8-41a4-aa07-9912cf7926e5))
  )

  (symbol (lib_id "power:GND") (at 143.51 100.33 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 662f2a23-2f89-48f3-92ae-9a241d8222bb)
    (property "Reference" "#PWR0261" (id 0) (at 149.86 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 147.32 100.3299 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 143.51 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 143.51 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e503bc43-61da-427b-8eb9-21b157a721f3))
  )

  (symbol (lib_id "power:GND") (at 170.18 77.47 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 6eb1ecba-77cf-40ce-b99a-a8d32401f2b6)
    (property "Reference" "#PWR0262" (id 0) (at 176.53 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 173.99 77.4699 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 170.18 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 170.18 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 31ed2dc1-d50d-440d-910c-d663781acfb4))
  )

  (symbol (lib_id "Device:C") (at 166.37 77.47 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 7c84e2c8-4b6e-4a48-aaa6-6a2c3b5560dc)
    (property "Reference" "C186" (id 0) (at 166.37 69.85 90))
    (property "Value" "10uF" (id 1) (at 166.37 72.39 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 162.56 78.4352 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 166.37 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "GRM21BR6YA106ME" (id 4) (at 166.37 77.47 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d0634c25-0bb4-47e2-816d-415c28c06853))
    (pin "2" (uuid 469031c1-7342-47fb-8338-c46e95cd60e0))
  )

  (symbol (lib_id "Device:C") (at 166.37 102.87 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 7f75055d-6b6f-484c-bf43-c6fd52bdab4c)
    (property "Reference" "C187" (id 0) (at 166.37 95.25 90))
    (property "Value" "10uF" (id 1) (at 166.37 97.79 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 162.56 103.8352 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 166.37 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "GRM21BR6YA106ME" (id 4) (at 166.37 102.87 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3343f60f-4d4a-47aa-81ce-ca94fe830838))
    (pin "2" (uuid 77f65c78-02f4-424d-9fae-a22ac915efa3))
  )

  (symbol (lib_id "Device:C") (at 214.63 95.25 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 7fdc48e3-10f9-4939-b98f-bd11ad772e6a)
    (property "Reference" "C191" (id 0) (at 213.995 97.79 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "18pF" (id 1) (at 213.995 92.71 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 213.6648 91.44 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 214.63 95.25 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "CBR" (id 5) (at 162.56 172.72 0)
      (effects (font (size 1.524 1.524)) hide)
    )
    (pin "1" (uuid d4f42efd-b7d6-4819-bde0-5efdd231b449))
    (pin "2" (uuid 900aafda-b311-41ff-809c-b93ce22756a9))
  )

  (symbol (lib_id "power:GND") (at 143.51 80.01 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 883866be-268e-4d0c-b7ab-98f4e996c6bf)
    (property "Reference" "#PWR0259" (id 0) (at 149.86 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 146.7612 79.883 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 143.51 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 143.51 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7e787bc8-be51-4bc7-95c9-35d12e4fb9d9))
  )

  (symbol (lib_id "Device:R") (at 74.93 99.06 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 88f0061a-e682-4ae1-b82d-95abf1b24ac8)
    (property "Reference" "R205" (id 0) (at 77.47 97.7899 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "1M" (id 1) (at 77.47 100.3299 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 76.708 99.06 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 74.93 99.06 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6ca8a0c4-a82c-4de1-a460-ab0dffad5eb8))
    (pin "2" (uuid 818b936a-6fcf-4de7-8ac0-06d611c9ec1e))
  )

  (symbol (lib_id "power:+3V3") (at 63.5 64.77 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 9b94e38c-760f-40f6-9555-592ac767455e)
    (property "Reference" "#PWR0252" (id 0) (at 63.5 68.58 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+3V3" (id 1) (at 60.96 60.96 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 63.5 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 63.5 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a441be54-7412-4bfd-a81d-169927215d66))
  )

  (symbol (lib_id "power:GND") (at 193.04 99.06 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid a928f312-ec2c-438d-9f3e-4824461c62ee)
    (property "Reference" "#PWR0264" (id 0) (at 193.04 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 195.58 100.3299 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 193.04 99.06 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 193.04 99.06 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7555c125-9cb3-474d-be21-259ea545c18d))
  )

  (symbol (lib_id "power:GND") (at 74.93 102.87 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid b0ddcb60-d17a-403b-af18-77ea81d5a857)
    (property "Reference" "#PWR0253" (id 0) (at 74.93 109.22 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 74.93 106.68 0))
    (property "Footprint" "" (id 2) (at 74.93 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 74.93 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1ecc0f22-1b34-4cb0-b99d-c310ef1662ca))
  )

  (symbol (lib_id "Device:R") (at 69.85 74.93 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid b5b112c5-5127-42d9-aa18-284e90b296b9)
    (property "Reference" "R203" (id 0) (at 69.85 72.009 90))
    (property "Value" "22" (id 1) (at 69.85 69.6976 90))
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 69.85 76.708 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 69.85 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Need_order" "0" (id 4) (at 69.85 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b233f993-1ec0-4c60-8742-79353b746526))
    (pin "2" (uuid dad9bf1d-f91f-41e0-bcb0-2e8bff0ed059))
  )

  (symbol (lib_id "power:GND") (at 110.49 82.55 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid b9735e07-0bfa-45cf-98db-5b7efcec9d0b)
    (property "Reference" "#PWR0256" (id 0) (at 104.14 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 107.2388 82.677 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 110.49 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 110.49 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7bf5a6cd-f6eb-4246-a111-b21a527af5ca))
  )

  (symbol (lib_id "Device:C") (at 193.04 95.25 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid bae8cea3-b887-4507-988b-0a1c8784aa16)
    (property "Reference" "C190" (id 0) (at 192.405 97.79 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "18pF" (id 1) (at 192.405 92.71 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 192.0748 91.44 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 193.04 95.25 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "CBR" (id 5) (at 140.97 172.72 0)
      (effects (font (size 1.524 1.524)) hide)
    )
    (pin "1" (uuid e6708d3b-be7e-48b7-a935-cdcca5d0521e))
    (pin "2" (uuid d27b0e07-0ee6-4ad5-9f11-7a7adab5a59e))
  )

  (symbol (lib_id "power:GND") (at 40.64 85.09 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid bbbb47ba-03e8-475d-a862-bdddc6b5a225)
    (property "Reference" "#PWR0251" (id 0) (at 34.29 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 37.3888 85.217 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 40.64 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 40.64 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid feff1893-cec6-4742-af4f-2c2a2f62ed0c))
  )

  (symbol (lib_id "Device:C") (at 166.37 127 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid c01a2f13-6e9b-4e56-878b-77ddcf9b162c)
    (property "Reference" "C189" (id 0) (at 166.37 132.08 90))
    (property "Value" "10uF" (id 1) (at 166.37 134.62 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 162.56 127.9652 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 166.37 127 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "GRM21BR6YA106ME" (id 4) (at 166.37 127 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d5bf25e0-ed12-4670-ba3e-652a9d11d8c2))
    (pin "2" (uuid 53490594-a3c5-4a21-bccd-c3e0e04a6e85))
  )

  (symbol (lib_id "power:GND") (at 86.36 107.95 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid e7a9c437-09e2-43ef-9077-e1d465233e6e)
    (property "Reference" "#PWR0254" (id 0) (at 86.36 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 86.36 111.76 0))
    (property "Footprint" "" (id 2) (at 86.36 107.95 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 86.36 107.95 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3ccf8df6-df1c-4048-b28e-55842045ca8c))
  )

  (symbol (lib_id "Device:C") (at 166.37 120.65 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid f38b6303-7d1d-418c-a18a-28ec2b2f095d)
    (property "Reference" "C188" (id 0) (at 166.37 113.03 90))
    (property "Value" "10uF" (id 1) (at 166.37 115.57 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (id 2) (at 162.56 121.6152 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 166.37 120.65 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "GRM21BR6YA106ME" (id 4) (at 166.37 120.65 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4a5c4885-41e5-499a-b2e8-75036e4f6ed4))
    (pin "2" (uuid cb18056f-a8ce-4ebb-aabe-085660d5fe08))
  )
)