esd
ethan
2022-09-13 6c6974eb42f2995767fd94b01b120b6f9b4fc1a9
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
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
(kicad_sch (version 20211123) (generator eeschema)
 
  (uuid e569fc1b-1aa9-4ed8-8ef8-33bf974ca0a7)
 
  (paper "A4")
 
  (title_block
    (title "SX7H SHIFER MIAN SCH")
    (date "2022-07-18")
    (rev "V03")
    (company "宁波正朗汽车零部件有限公司")
    (comment 1 "批准:")
    (comment 2 "校准:")
    (comment 3 "设计:Ethan")
  )
 
  (lib_symbols
    (symbol "Connector_Generic:Conn_02x06_Counter_Clockwise" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (id 0) (at 1.27 7.62 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_02x06_Counter_Clockwise" (id 1) (at 1.27 -10.16 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" "connector" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Generic connector, double row, 02x06, counter clockwise pin numbering scheme (similar to DIP packge numbering), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_02x06_Counter_Clockwise_1_1"
        (rectangle (start -1.27 -7.493) (end 0 -7.747)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -4.953) (end 0 -5.207)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 2.667) (end 0 2.413)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 5.207) (end 0 4.953)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 6.35) (end 3.81 -8.89)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
        (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 0.127) (end 2.54 -0.127)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 2.667) (end 2.54 2.413)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 5.207) (end 2.54 4.953)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin passive line (at -5.08 5.08 0) (length 3.81)
          (name "Pin_1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 0 180) (length 3.81)
          (name "Pin_10" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 2.54 180) (length 3.81)
          (name "Pin_11" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 5.08 180) (length 3.81)
          (name "Pin_12" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 2.54 0) (length 3.81)
          (name "Pin_2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 0 0) (length 3.81)
          (name "Pin_3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -2.54 0) (length 3.81)
          (name "Pin_4" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -5.08 0) (length 3.81)
          (name "Pin_5" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -7.62 0) (length 3.81)
          (name "Pin_6" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -7.62 180) (length 3.81)
          (name "Pin_7" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -5.08 180) (length 3.81)
          (name "Pin_8" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -2.54 180) (length 3.81)
          (name "Pin_9" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Connector_Generic:Conn_02x06_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (id 0) (at 1.27 7.62 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_02x06_Odd_Even" (id 1) (at 1.27 -10.16 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" "connector" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Generic connector, double row, 02x06, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_02x06_Odd_Even_1_1"
        (rectangle (start -1.27 -7.493) (end 0 -7.747)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -4.953) (end 0 -5.207)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 2.667) (end 0 2.413)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 5.207) (end 0 4.953)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 6.35) (end 3.81 -8.89)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
        (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 0.127) (end 2.54 -0.127)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 2.667) (end 2.54 2.413)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 5.207) (end 2.54 4.953)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin passive line (at -5.08 5.08 0) (length 3.81)
          (name "Pin_1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -5.08 180) (length 3.81)
          (name "Pin_10" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -7.62 0) (length 3.81)
          (name "Pin_11" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -7.62 180) (length 3.81)
          (name "Pin_12" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 5.08 180) (length 3.81)
          (name "Pin_2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 2.54 0) (length 3.81)
          (name "Pin_3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 2.54 180) (length 3.81)
          (name "Pin_4" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 0 0) (length 3.81)
          (name "Pin_5" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 0 180) (length 3.81)
          (name "Pin_6" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -2.54 0) (length 3.81)
          (name "Pin_7" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -2.54 180) (length 3.81)
          (name "Pin_8" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -5.08 0) (length 3.81)
          (name "Pin_9" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Mechanical:Fiducial" (in_bom yes) (on_board yes)
      (property "Reference" "FID" (id 0) (at 0 5.08 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Fiducial" (id 1) (at 0 3.175 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" "fiducial marker" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Fiducial Marker" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Fiducial*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Fiducial_0_1"
        (circle (center 0 0) (radius 1.27)
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type background))
        )
      )
    )
    (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" "power-flag" (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))))
        )
      )
    )
  )
 
 
  (no_connect (at 25.4 101.6) (uuid 76e4aaec-3045-473b-a970-307f2e45188f))
  (no_connect (at 55.88 99.06) (uuid 76e4aaec-3045-473b-a970-307f2e451890))
  (no_connect (at 55.88 101.6) (uuid 76e4aaec-3045-473b-a970-307f2e451891))
 
  (wire (pts (xy 218.44 57.15) (xy 218.44 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 034645a4-e7fe-4d5c-9d37-b27c4acc0acf)
  )
  (wire (pts (xy 243.84 39.37) (xy 256.54 39.37))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0aaceb18-413f-4fdb-b68d-baed05f87aba)
  )
  (wire (pts (xy 111.76 49.53) (xy 156.21 49.53))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0eda82f9-005c-47cb-9ab1-ef078968dad8)
  )
  (wire (pts (xy 25.4 109.22) (xy 33.02 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0fb601e9-1048-4e45-9ec6-7818ca10abad)
  )
  (wire (pts (xy 243.84 35.56) (xy 256.54 35.56))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1028fa35-ec16-48e0-bcbc-34d6d004b4ec)
  )
  (wire (pts (xy 232.41 106.68) (xy 241.3 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 10cabbd3-1595-462f-addd-5257b8d4b75b)
  )
  (wire (pts (xy 173.99 114.3) (xy 173.99 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 112c80a6-cee3-472c-8ce6-4f57360b4b9a)
  )
  (wire (pts (xy 200.66 85.09) (xy 213.36 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 171dcf72-0ea6-48b7-9e8b-bf1355e0d4ac)
  )
  (wire (pts (xy 243.84 43.18) (xy 256.54 43.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 19e972c8-5a22-47df-89d4-42bb41b9464c)
  )
  (wire (pts (xy 158.75 114.3) (xy 158.75 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 21cb0b97-54d4-4f02-8b68-c4e9b857de94)
  )
  (wire (pts (xy 71.12 49.53) (xy 81.28 49.53))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 21e3b7da-c464-4b78-9b84-59b80b37d418)
  )
  (wire (pts (xy 254 101.6) (xy 265.43 101.6))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 24554304-3a95-4902-a359-dcdc2a63dc72)
  )
  (wire (pts (xy 214.63 149.86) (xy 228.6 149.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3249201d-3d90-40ac-8240-9983a2bdb930)
  )
  (wire (pts (xy 127 146.05) (xy 139.7 146.05))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 326e06ba-73c6-4f69-88df-2d7ec218e0d2)
  )
  (wire (pts (xy 45.72 106.68) (xy 55.88 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 32f7ab66-fb52-4f0e-a706-e9bd521128b6)
  )
  (wire (pts (xy 232.41 104.14) (xy 241.3 104.14))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 35d26666-f190-4c4a-82f8-25981c8153ba)
  )
  (wire (pts (xy 45.72 101.6) (xy 55.88 101.6))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 36c148f8-2b4b-45ff-9415-6e8948439288)
  )
  (wire (pts (xy 25.4 96.52) (xy 33.02 96.52))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 38ec6dbc-a5ae-4f4f-ba70-029d3c55ca3c)
  )
  (wire (pts (xy 168.91 114.3) (xy 168.91 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3d6139b4-4cc7-4cb2-85fb-ea238d38321e)
  )
  (wire (pts (xy 45.72 109.22) (xy 55.88 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3e5a507e-ca20-426d-ab77-77a52d345c9f)
  )
  (wire (pts (xy 111.76 92.71) (xy 143.51 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3f4aa6c1-3835-41aa-84e0-431e7fa87aa8)
  )
  (wire (pts (xy 232.41 111.76) (xy 241.3 111.76))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4140a140-54b8-471c-80da-c5967403aff2)
  )
  (wire (pts (xy 254 111.76) (xy 265.43 111.76))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 444dc910-d1aa-48e5-ae9d-09ff11a0e0b2)
  )
  (wire (pts (xy 181.61 43.18) (xy 181.61 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4c30d7b6-27cd-4895-b120-db500697fa7c)
  )
  (wire (pts (xy 181.61 43.18) (xy 196.85 43.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4f934a88-4195-4d37-89de-f240992520bb)
  )
  (wire (pts (xy 156.21 77.47) (xy 156.21 49.53))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 524be3bb-fea9-46b5-89e0-a82e4e826e55)
  )
  (wire (pts (xy 160.02 45.72) (xy 111.76 45.72))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 53cdb6ba-a8dd-4089-991d-e12551b62cf6)
  )
  (wire (pts (xy 160.02 77.47) (xy 160.02 45.72))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 53cdb6ba-a8dd-4089-991d-e12551b62cf7)
  )
  (wire (pts (xy 111.76 86.36) (xy 143.51 86.36))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5b984b5f-c5d5-4d67-93b0-8c362fb0e7ba)
  )
  (wire (pts (xy 71.12 29.21) (xy 81.28 29.21))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 61c18c15-c936-45f5-aea8-269b0d65095c)
  )
  (wire (pts (xy 45.72 99.06) (xy 55.88 99.06))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6763f569-3769-47af-9fdc-66f37261a48f)
  )
  (wire (pts (xy 173.99 35.56) (xy 196.85 35.56))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 71d01b6e-ee59-4df0-a48d-70871235d187)
  )
  (wire (pts (xy 173.99 77.47) (xy 173.99 35.56))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 71d01b6e-ee59-4df0-a48d-70871235d188)
  )
  (wire (pts (xy 73.66 86.36) (xy 81.28 86.36))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 793fdffc-81de-4f29-bbcc-3c141ebf0e22)
  )
  (wire (pts (xy 209.55 57.15) (xy 209.55 81.28))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8251a4ae-5894-41e0-85c8-7a01126ffdd7)
  )
  (wire (pts (xy 232.41 109.22) (xy 241.3 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 875cf574-c07f-4963-9e77-8d2bd676d2f7)
  )
  (wire (pts (xy 71.12 43.18) (xy 81.28 43.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 88676b5a-32e2-44af-93b2-48a02e01830a)
  )
  (wire (pts (xy 214.63 139.7) (xy 228.6 139.7))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8e7aabd0-02b7-4100-9731-dde93a4fa3dc)
  )
  (wire (pts (xy 73.66 93.98) (xy 81.28 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9448b59c-f83b-4897-a4d5-5bfd39b362bb)
  )
  (wire (pts (xy 179.07 114.3) (xy 179.07 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 967ee6ca-7d9a-47f5-a201-4246290c4e04)
  )
  (wire (pts (xy 177.8 39.37) (xy 196.85 39.37))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9732ccd6-a954-4f0e-8207-51a4e4bdba01)
  )
  (wire (pts (xy 177.8 77.47) (xy 177.8 39.37))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9732ccd6-a954-4f0e-8207-51a4e4bdba02)
  )
  (wire (pts (xy 243.84 31.75) (xy 256.54 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9c0b3d74-2c80-4bff-8526-dfeb44befa4d)
  )
  (wire (pts (xy 111.76 29.21) (xy 128.27 29.21))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a1686c7e-9e1c-4b19-8573-6b64ec8c0e31)
  )
  (wire (pts (xy 214.63 129.54) (xy 228.6 129.54))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a184f076-e6fa-40b0-b1d7-371c125103fd)
  )
  (wire (pts (xy 214.63 134.62) (xy 228.6 134.62))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a31aa2d0-a10a-4add-9261-f569a1c8834d)
  )
  (wire (pts (xy 222.25 57.15) (xy 222.25 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a4ecf8f3-4036-4a06-8c14-c960b5a1cd18)
  )
  (wire (pts (xy 184.15 114.3) (xy 184.15 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b2598980-5757-47b8-be9b-2ea8ed9aa924)
  )
  (wire (pts (xy 254 114.3) (xy 265.43 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b3abb6a0-211c-47d3-9c7e-61bf4c1c838d)
  )
  (wire (pts (xy 25.4 101.6) (xy 33.02 101.6))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b4fceeb7-c529-4c7b-8864-926275e487c2)
  )
  (wire (pts (xy 111.76 99.06) (xy 143.51 99.06))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b5ab5f21-2ad9-4b69-9bfa-03c0062ca454)
  )
  (wire (pts (xy 254 109.22) (xy 265.43 109.22))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bc5a251a-dba9-4c26-ad1d-ab9eecf05539)
  )
  (wire (pts (xy 25.4 106.68) (xy 33.02 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bf3f2be5-af11-41b5-b43a-be817356253f)
  )
  (wire (pts (xy 254 104.14) (xy 265.43 104.14))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c007afa3-8c5a-44af-88f3-8a718758b182)
  )
  (wire (pts (xy 45.72 104.14) (xy 55.88 104.14))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c3fc91db-1299-4910-b1cf-0194d682b448)
  )
  (wire (pts (xy 162.56 114.3) (xy 162.56 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c461ac0f-646e-496f-b62f-971b9881d0f2)
  )
  (wire (pts (xy 189.23 114.3) (xy 189.23 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c5b72ef7-bbeb-483f-9259-cbe8d0a7d84a)
  )
  (wire (pts (xy 232.41 114.3) (xy 241.3 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c7c6cf5a-279c-43b7-b95b-9bcd4c52d67e)
  )
  (wire (pts (xy 200.66 97.79) (xy 226.06 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c900ffbd-d6ae-4ed0-92c8-b4245a4eae98)
  )
  (wire (pts (xy 25.4 104.14) (xy 33.02 104.14))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cff5ee09-520d-4584-be49-ad1cf120dad8)
  )
  (wire (pts (xy 111.76 40.64) (xy 163.83 40.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d603a73e-aa41-4777-82db-089b49b892f1)
  )
  (wire (pts (xy 163.83 40.64) (xy 163.83 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d603a73e-aa41-4777-82db-089b49b892f2)
  )
  (wire (pts (xy 200.66 81.28) (xy 209.55 81.28))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid db4e7fd7-280c-44e0-a24c-de47799abc6d)
  )
  (wire (pts (xy 254 106.68) (xy 265.43 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dc0dd3d1-7424-4b5c-a88a-edd7bdbc3442)
  )
  (wire (pts (xy 25.4 99.06) (xy 33.02 99.06))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dc624b11-c3f4-4fcd-90ed-f8e6d20f94a5)
  )
  (wire (pts (xy 232.41 101.6) (xy 241.3 101.6))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e0bcab42-d16f-4ae8-9515-30c838dd7503)
  )
  (wire (pts (xy 213.36 57.15) (xy 213.36 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e4dae60c-96a0-428e-b944-60df0fc05c69)
  )
  (wire (pts (xy 170.18 31.75) (xy 196.85 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e60014f3-ef56-47c8-918c-80f73fb0a65e)
  )
  (wire (pts (xy 170.18 77.47) (xy 170.18 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e60014f3-ef56-47c8-918c-80f73fb0a65f)
  )
  (wire (pts (xy 214.63 144.78) (xy 228.6 144.78))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f03aed89-becc-4ee4-9022-158c9d02ca9e)
  )
  (wire (pts (xy 226.06 57.15) (xy 226.06 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f42d7c43-fe54-4bf9-9ec6-40c62687890b)
  )
  (wire (pts (xy 200.66 93.98) (xy 222.25 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f559caa6-f56d-4e91-8a70-0e91f26e4dc2)
  )
  (wire (pts (xy 45.72 96.52) (xy 55.88 96.52))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f58b7e5a-f32d-4f8a-bb3b-c22d6a24cdd7)
  )
  (wire (pts (xy 200.66 88.9) (xy 218.44 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fd4d6bda-de82-447a-a1fb-b649163d2ca3)
  )
  (wire (pts (xy 127 139.7) (xy 139.7 139.7))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ff83ea93-58b2-4461-b808-0422b9a1dca0)
  )
 
  (label "RELEASE2_AI" (at 245.11 43.18 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 0b500527-6865-4add-892c-6717376ce190)
  )
  (label "PARK1_AI" (at 247.65 31.75 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 129a49c6-7003-4fb9-af28-e634652ded08)
  )
  (label "P_OH" (at 223.52 129.54 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 12d487be-7611-43d7-9145-96aa2eac75d8)
  )
  (label "PARK1_AI" (at 232.41 109.22 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 17cf6de5-87c8-4b33-982f-229b8f493491)
  )
  (label "P_OH" (at 256.54 104.14 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 19ac441e-f2bc-4fcd-908b-bdfda7dee31c)
  )
  (label "KL30" (at 50.8 109.22 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 1d6a0c3a-0006-4b5a-9515-d81825eb311c)
  )
  (label "RELEASE2_AI" (at 232.41 106.68 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 1fe5d720-7e26-4084-aab3-6675726ba992)
  )
  (label "D_OH" (at 256.54 101.6 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 37835012-4b95-4bc5-b880-18b76a1f5194)
  )
  (label "Paddle-" (at 127 146.05 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 5c2330f4-a749-4e2c-80cb-50aaf1d3ff2f)
  )
  (label "N_OH" (at 257.81 114.3 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 627be4a4-9989-4b28-82f1-b34d12341603)
  )
  (label "GND" (at 25.4 104.14 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 69d0d199-a39a-4155-82cc-0baa96351fc5)
  )
  (label "M_OH" (at 232.41 104.14 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 6ae58dcf-a38b-44a0-b6b8-aa69c98b02cf)
  )
  (label "ILL+" (at 52.07 106.68 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 77ab12d5-99c3-4e39-b607-005c42efc09a)
  )
  (label "CANL" (at 50.8 96.52 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 83a642da-9e9e-4688-85aa-6bb43dfd5070)
  )
  (label "DriveMode" (at 25.4 99.06 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 85b2b3c0-c246-421c-b914-81beba0fc9e6)
  )
  (label "ILL_LED_OH" (at 116.84 29.21 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 865706a4-560a-425a-9136-1ec0890db3c2)
  )
  (label "PARK2_AI" (at 256.54 106.68 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 8d14daef-2a77-4ed7-ba58-b22f14ef23f4)
  )
  (label "CANH" (at 25.4 96.52 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 8e0f091a-de2d-4c98-96ab-faf7d259a37f)
  )
  (label "Paddle-" (at 25.4 106.68 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 8f172043-cf97-4331-9a7f-51c97f381046)
  )
  (label "M_OH" (at 223.52 149.86 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 8f58c1fc-d9e2-4be8-881a-e5bad7a990ef)
  )
  (label "R_OH" (at 256.54 109.22 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 93e0266b-d646-4ef3-bfef-b4635fc3c81b)
  )
  (label "N_OH" (at 223.52 139.7 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid a367e6ad-e6cc-4dae-a91c-f4358612b2f9)
  )
  (label "Paddle+" (at 127 139.7 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid a753f774-f297-492b-b6c2-915d414b5dad)
  )
  (label "ILL_LED_OH" (at 232.41 111.76 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid a93e94f3-547e-409c-bcb1-bade5ebc7821)
  )
  (label "KL30" (at 71.12 29.21 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid a973b428-ef8c-4353-9d1f-f089619d8b39)
  )
  (label "CANH" (at 73.66 93.98 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid b0637410-099e-4f01-9d3d-e8b613e6120b)
  )
  (label "RELEASE1_AI" (at 245.11 35.56 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid b249b19e-0d21-455c-9b78-515b4245f854)
  )
  (label "ILL+" (at 71.12 49.53 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid bc49dfc9-78a8-4fde-8434-a0799a788c68)
  )
  (label "R_OH" (at 223.52 134.62 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid c336ad46-6de8-44c5-a4a7-7695f0b0c896)
  )
  (label "KL15" (at 71.12 43.18 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid c37799d8-ad0f-4e76-928b-97362b918665)
  )
  (label "KL15" (at 25.4 109.22 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid ccc2eff6-a6af-440e-b7b7-13cb444cabf8)
  )
  (label "Paddle+" (at 48.26 104.14 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid d09162fc-3d30-469f-9f0d-dda8ca330524)
  )
  (label "RELEASE1_AI" (at 232.41 101.6 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid d899216b-8643-4c1d-9a76-4cb3c78a1ff9)
  )
  (label "CANL" (at 73.66 86.36 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid df13d3cd-7ea9-4fcc-80dc-1719f54ce724)
  )
  (label "PARK2_AI" (at 247.65 39.37 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid ebe5b71f-c900-4cf2-9f04-5c2aede0fc38)
  )
  (label "D_OH" (at 223.52 144.78 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid ed12c05c-7412-4a81-97c1-2687e56f9815)
  )
 
  (symbol (lib_id "Connector_Generic:Conn_02x06_Counter_Clockwise") (at 246.38 106.68 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 07e25b82-3b42-48a2-b5b7-c00ff83e35e6)
    (property "Reference" "J2" (id 0) (at 247.65 96.3635 0))
    (property "Value" "5031541290" (id 1) (at 247.65 99.1386 0))
    (property "Footprint" "GODPP:5031541290" (id 2) (at 246.38 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 246.38 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "CONN RCPT 12P 0.059 TIN SMD R/A" (id 4) (at 246.38 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Molex" (id 5) (at 246.38 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "5031541290" (id 6) (at 246.38 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "CONN RCPT 12P 0.059 TIN SMD R/A" (id 7) (at 246.38 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b4419e81-b18a-4ee4-9ffb-4898fa7aa0b4))
    (pin "10" (uuid a8520ac1-f99c-47ff-89b6-9885b31a6573))
    (pin "11" (uuid b0c66066-4146-4df8-8c15-19de220f7dd8))
    (pin "12" (uuid bea7840b-4b00-4226-97b4-6d294e7a961c))
    (pin "2" (uuid 5560b5f0-e7e7-4d2d-b566-90660e807681))
    (pin "3" (uuid fdec6e63-a785-4890-9bcf-eeb4dbab266e))
    (pin "4" (uuid 1f6835b6-1198-40be-9b3a-647b3d63c93b))
    (pin "5" (uuid ebcedf59-af16-4904-ae14-f6ffce07d09e))
    (pin "6" (uuid 564cd11d-c361-47ad-bdfc-2cafe27fcbf9))
    (pin "7" (uuid 59745363-d564-4a22-9d32-9901348cfc46))
    (pin "8" (uuid cb0856e0-ecfc-48f4-ab3e-193b3942a03f))
    (pin "9" (uuid 937c0dcb-68f1-41e9-9ee7-3da430c31469))
  )
 
  (symbol (lib_id "power:GND") (at 265.43 111.76 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 1a459560-67eb-45ff-ab19-f1a280a9db05)
    (property "Reference" "#PWR0103" (id 0) (at 271.78 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 268.605 112.239 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 265.43 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 265.43 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 91372182-6270-4f97-9d26-a7dc796c8b40))
  )
 
  (symbol (lib_id "Mechanical:Fiducial") (at 26.67 170.18 0) (mirror y) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4f25ee5d-850d-40da-ba4d-e73fdfeaeb9c)
    (property "Reference" "ZLONG_LOGO2" (id 0) (at 28.829 170.659 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "Fiducial" (id 1) (at 24.511 172.0466 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "GODPP:ZLONG" (id 2) (at 26.67 170.18 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 26.67 170.18 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "" (id 4) (at 26.67 170.18 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
 
  (symbol (lib_id "Mechanical:Fiducial") (at 45.72 171.45 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 78217514-de9a-4ccc-8bb1-e93c141ceb41)
    (property "Reference" "MARK1" (id 0) (at 47.879 171.929 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "Fiducial" (id 1) (at 47.879 173.3166 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Fiducial:Fiducial_1mm_Mask2mm" (id 2) (at 45.72 171.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 45.72 171.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
 
  (symbol (lib_id "Mechanical:Fiducial") (at 45.72 182.88 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 7d363984-169f-4ec0-ba3e-1cb1e617050e)
    (property "Reference" "MARK4" (id 0) (at 47.879 183.359 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "Fiducial" (id 1) (at 47.879 184.7466 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Fiducial:Fiducial_1mm_Mask2mm" (id 2) (at 45.72 182.88 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 45.72 182.88 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
 
  (symbol (lib_id "power:GND") (at 25.4 104.14 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 8f60c627-b42e-41bc-b0fb-a454e819c1bc)
    (property "Reference" "#PWR0101" (id 0) (at 19.05 104.14 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 22.225 104.619 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 25.4 104.14 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 25.4 104.14 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid bdaa0ebc-18aa-4e17-9ac4-b87dbb9c82f7))
  )
 
  (symbol (lib_id "Mechanical:Fiducial") (at 45.72 179.07 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid b27fa53b-fae0-4373-891c-38a81914eb13)
    (property "Reference" "MARK3" (id 0) (at 47.879 179.549 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "Fiducial" (id 1) (at 47.879 180.9366 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Fiducial:Fiducial_1mm_Mask2mm" (id 2) (at 45.72 179.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 45.72 179.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
 
  (symbol (lib_id "power:GND") (at 232.41 114.3 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid bf1b77e0-17b8-4cf4-a84e-9ec77bf8ead2)
    (property "Reference" "#PWR0102" (id 0) (at 226.06 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 228.6 114.2999 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 232.41 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 232.41 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 253467c2-f320-4543-a828-932c37415391))
  )
 
  (symbol (lib_id "Mechanical:Fiducial") (at 45.72 175.26 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid d0b37681-d7a2-47da-b6ef-88cc3506cec0)
    (property "Reference" "MARK2" (id 0) (at 47.879 175.739 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "Fiducial" (id 1) (at 47.879 177.1266 0)
      (effects (font (size 1.27 1.27)) (justify left) hide)
    )
    (property "Footprint" "Fiducial:Fiducial_1mm_Mask2mm" (id 2) (at 45.72 175.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 45.72 175.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
 
  (symbol (lib_id "Connector_Generic:Conn_02x06_Odd_Even") (at 38.1 101.6 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid e654ebce-49dd-4d19-95ab-47ef016f388e)
    (property "Reference" "J1" (id 0) (at 39.37 91.2835 0))
    (property "Value" "JAE MX34012UF1" (id 1) (at 39.37 94.0586 0))
    (property "Footprint" "GODPP:MX34012UF1" (id 2) (at 38.1 101.6 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 38.1 101.6 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "CONN HEADER VERT 12POS 2.2MM" (id 4) (at 38.1 101.6 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "JAE Electronics" (id 5) (at 38.1 101.6 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "MX34012UF1" (id 6) (at 38.1 101.6 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "CONN HEADER VERT 12POS 2.2MM" (id 7) (at 38.1 101.6 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1ffe315f-ac73-4305-acd3-a61786478a42))
    (pin "10" (uuid 37f335c4-6d5c-481b-ba74-0b8fd7b76499))
    (pin "11" (uuid 0081cc87-1f98-4fee-9f08-a58b8d70188c))
    (pin "12" (uuid 82557314-7cd2-46a0-8eef-a2e0d45daf8c))
    (pin "2" (uuid fb4dcefd-ea27-4c1a-aad8-f6448d66147f))
    (pin "3" (uuid a6f34144-aaff-438b-9d1b-b1986bcd2f34))
    (pin "4" (uuid b0c46e4b-0d11-4a03-9d09-cb29e2a3afb6))
    (pin "5" (uuid 10df2f0e-c936-4338-9ccc-64b905d1d699))
    (pin "6" (uuid 759cbb68-c255-407f-82ad-14af08a2ce73))
    (pin "7" (uuid 87a5add4-f4ba-403f-95a7-52fba71ee8e3))
    (pin "8" (uuid d98407f5-0ba0-489f-9385-a55529f5fa88))
    (pin "9" (uuid e172d847-7345-4411-8c8a-fd65cdeb176c))
  )
 
  (sheet (at 139.7 123.19) (size 74.93 31.75)
    (stroke (width 0.1524) (type solid) (color 0 0 0 0))
    (fill (color 0 0 0 0.0000))
    (uuid 010305d3-4f44-4e9f-bf9f-7277deff627c)
    (property "Sheet name" "IO" (id 0) (at 139.7 122.4784 0)
      (effects (font (size 1.27 1.27)) (justify left bottom))
    )
    (property "Sheet file" "SX7H02050048_IO.kicad_sch" (id 1) (at 160.02 140.2846 0)
      (effects (font (size 1.27 1.27)) (justify left top))
    )
    (pin "Paddle+_AI" input (at 158.75 123.19 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid ca76b09a-cf99-4d27-a83a-ffb61afd1961)
    )
    (pin "Paddle-_AI" input (at 162.56 123.19 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 8d0af717-fc1c-4c92-abf9-265fc09790eb)
    )
    (pin "Paddle+" input (at 139.7 139.7 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 26699f04-5c44-4a0f-9776-471b2145c52a)
    )
    (pin "Paddle-" input (at 139.7 146.05 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 260f8ff6-d50e-4477-b3de-656549947c90)
    )
    (pin "P_LED_OH" input (at 214.63 129.54 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 8535e863-7517-405b-99d5-f0098ebe5dc2)
    )
    (pin "P_LED_C" input (at 168.91 123.19 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid d5071f91-fcc5-434e-9c36-b147473d66d2)
    )
    (pin "N_LED_OH" input (at 214.63 139.7 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid c4cf32e3-0235-454c-abed-a53a52782950)
    )
    (pin "N_LED_C" input (at 179.07 123.19 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid d06bfaec-f79a-4acd-9910-f922d9222643)
    )
    (pin "D_LED_OH" input (at 214.63 144.78 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 844c334b-59d4-404d-a303-84c150937828)
    )
    (pin "D_LED_C" input (at 184.15 123.19 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 8fb7cda1-acc1-41a2-a493-f3cc90cfd4ad)
    )
    (pin "R_LED_OH" input (at 214.63 134.62 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 739cf1aa-c2f7-479c-a929-4a7af5d1367e)
    )
    (pin "R_LED_C" input (at 173.99 123.19 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 2dcc883d-408c-4950-85e2-d181d7107707)
    )
    (pin "M_LED_OH" input (at 214.63 149.86 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 496e9a69-8403-452a-b9da-f4e8bb98ee3a)
    )
    (pin "M_LED_C" input (at 189.23 123.19 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 716af217-ffcc-4f37-b4dc-2e05619b98bd)
    )
  )
 
  (sheet (at 81.28 74.93) (size 30.48 34.29) (fields_autoplaced)
    (stroke (width 0.1524) (type solid) (color 0 0 0 0))
    (fill (color 0 0 0 0.0000))
    (uuid 8929cf7a-ec8a-4303-bbbe-050bce5a358f)
    (property "Sheet name" "CAN" (id 0) (at 81.28 74.2184 0)
      (effects (font (size 1.27 1.27)) (justify left bottom))
    )
    (property "Sheet file" "SX7H02050048_CAN.kicad_sch" (id 1) (at 81.28 109.8046 0)
      (effects (font (size 1.27 1.27)) (justify left top))
    )
    (pin "CAN_RX" input (at 111.76 86.36 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 4e08fdc9-2ecd-4061-9ed7-a2ee9d5196d3)
    )
    (pin "CAN_TX" input (at 111.76 92.71 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 777ec89a-110a-4ec3-bee0-9d6387822684)
    )
    (pin "CAN_STB" input (at 111.76 99.06 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid b620b5ce-cb14-4677-aa65-1e1e5a351413)
    )
    (pin "CANL" input (at 81.28 86.36 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 78f589f1-45e6-4ff0-a629-d3d8cad692f6)
    )
    (pin "CANH" input (at 81.28 93.98 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 7dfe35d9-e4d3-4926-b8e7-b8c13d7f32d5)
    )
  )
 
  (sheet (at 81.28 17.78) (size 30.48 48.26) (fields_autoplaced)
    (stroke (width 0.1524) (type solid) (color 0 0 0 0))
    (fill (color 0 0 0 0.0000))
    (uuid 91165038-a1bf-48d6-a5c0-5350aa105039)
    (property "Sheet name" "Power" (id 0) (at 81.28 17.0684 0)
      (effects (font (size 1.27 1.27)) (justify left bottom))
    )
    (property "Sheet file" "SX7H02050048_Power.kicad_sch" (id 1) (at 81.28 66.6246 0)
      (effects (font (size 1.27 1.27)) (justify left top))
    )
    (pin "KL15" input (at 81.28 43.18 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 458e176f-e6e2-4a7b-b858-19562732ff53)
    )
    (pin "KL30" input (at 81.28 29.21 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid c78444e9-32a4-4565-a9a0-9d859636841f)
    )
    (pin "ILL" input (at 81.28 49.53 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 98a68c21-59b3-40d3-ab7b-92089d848768)
    )
    (pin "ILL_O" input (at 111.76 29.21 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid ff62da3f-0cdb-46ab-b3c2-4e1e7d476c2b)
    )
    (pin "WAKEUP_M" input (at 111.76 40.64 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid e09a09fd-47ff-4029-a5dd-12e9a1367ed7)
    )
    (pin "VCC12_C" input (at 111.76 49.53 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid a18d1979-4d93-4075-8b1d-1df9c7dad802)
    )
    (pin "POWER_M" input (at 111.76 45.72 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 9eb949af-b075-461e-8c88-49d2d9d83a36)
    )
  )
 
  (sheet (at 196.85 24.13) (size 46.99 33.02)
    (stroke (width 0.1524) (type solid) (color 0 0 0 0))
    (fill (color 0 0 0 0.0000))
    (uuid aa974d54-b763-4f96-a5be-30a9bd995f89)
    (property "Sheet name" "SENSOR" (id 0) (at 196.85 23.4184 0)
      (effects (font (size 1.27 1.27)) (justify left bottom))
    )
    (property "Sheet file" "SX7H02050048_Sensor.kicad_sch" (id 1) (at 201.93 25.9846 0)
      (effects (font (size 1.27 1.27)) (justify left top))
    )
    (pin "RELEASE1_AI" input (at 243.84 35.56 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 7760d72f-ef6d-4d54-9dca-810209fbe2f5)
    )
    (pin "UNLOCK1_MCU" input (at 196.85 31.75 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 6bf31e42-fb46-4a73-99eb-069c50e8d99e)
    )
    (pin "PARK1_AI" input (at 243.84 31.75 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid b37acc91-4354-4f1b-b81e-9b0a2277b334)
    )
    (pin "P1_MCU" input (at 196.85 43.18 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid b10ca6b3-671a-43e3-9398-d00025930049)
    )
    (pin "PARK2_AI" input (at 243.84 39.37 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid ccce208e-c626-4762-ab40-660261c0167a)
    )
    (pin "P2_MCU" input (at 196.85 39.37 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 98b321d2-11fa-4cb4-963b-fbb8f80766cd)
    )
    (pin "UNLOCK2_MCU" input (at 196.85 35.56 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 5938f850-a680-4b71-bfd0-0555984f57fe)
    )
    (pin "RELEASE2_AI" input (at 243.84 43.18 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 90d2e20c-32ed-4339-8ab4-7085904156e7)
    )
    (pin "MISO_SENSOR" input (at 209.55 57.15 270)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 9f049f9e-d93e-4ea4-aea6-5f387d0cfc22)
    )
    (pin "MOSI_SENSOR" input (at 213.36 57.15 270)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 3dc68a9c-0bc0-4d00-b5c2-8a598bae9593)
    )
    (pin "SS2" input (at 222.25 57.15 270)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 40f38e2f-364f-43e4-b8d8-ec6897cff4b5)
    )
    (pin "SCL" input (at 218.44 57.15 270)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 09c047a8-3d0c-46b8-882b-f0825bdb23c3)
    )
    (pin "SS1" input (at 226.06 57.15 270)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 3b66ad19-309f-4ca2-8561-5c3c0cd97698)
    )
  )
 
  (sheet (at 143.51 77.47) (size 57.15 36.83)
    (stroke (width 0.1524) (type solid) (color 0 0 0 0))
    (fill (color 0 0 0 0.0000))
    (uuid ad6437eb-8d0e-431a-964e-d423d3e1c5f9)
    (property "Sheet name" "MCU" (id 0) (at 143.51 76.7584 0)
      (effects (font (size 1.27 1.27)) (justify left bottom))
    )
    (property "Sheet file" "SX7H02050048_MCU.kicad_sch" (id 1) (at 154.94 95.8346 0)
      (effects (font (size 1.27 1.27)) (justify left top))
    )
    (pin "CAN_TX" input (at 143.51 92.71 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 870375fb-cb2f-4e89-948d-94a2b4ef95fd)
    )
    (pin "CAN_RX" input (at 143.51 86.36 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 0c9ef9a2-123a-4c83-8944-754ef120828f)
    )
    (pin "CAN_STB" input (at 143.51 99.06 180)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid c1b2a852-14cf-4af0-a6ea-5a8667442953)
    )
    (pin "SPI_PCS2" input (at 200.66 93.98 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 9beffb8a-b023-47ab-a0d0-b1c5b9dd115c)
    )
    (pin "SPI_PCS" input (at 200.66 97.79 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 22a077fd-6deb-4a66-9f72-a8cfb7426879)
    )
    (pin "SPI_MISO" input (at 200.66 81.28 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 52ecb10a-aed3-41da-a5a9-196e173220a3)
    )
    (pin "SPI_MOSI" input (at 200.66 85.09 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid aeea88ec-88f2-462e-aa8c-9cefee9087f9)
    )
    (pin "P1_MCU" input (at 181.61 77.47 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 6f1a3661-1d8e-4ff6-a98a-10ebab64ee92)
    )
    (pin "P2_MCU" input (at 177.8 77.47 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 66f26f83-45f7-43fb-b1a7-e42eb7488859)
    )
    (pin "UNLOCK1_MCU" input (at 170.18 77.47 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 015fa13b-9eff-4177-bdb8-5e7f7db999a1)
    )
    (pin "UNLOCK2_MCU" input (at 173.99 77.47 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 07a9f714-367f-405a-be43-6dabe1d7686e)
    )
    (pin "SPI_CLK" input (at 200.66 88.9 0)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 7a1b0897-7015-4cb3-8b9e-901bc18f4e7f)
    )
    (pin "WAKEUP_CTR" input (at 156.21 77.47 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 6552e776-f2fb-44de-a161-4d8acd02c2c8)
    )
    (pin "WAKEUP_M" input (at 163.83 77.47 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 613c9635-a59b-4b9e-a716-2e83c2dc59d0)
    )
    (pin "LED_N_C" input (at 179.07 114.3 270)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 41b9ef38-c6a6-48e4-bfbd-4a6212b03be6)
    )
    (pin "LED_D_C" input (at 184.15 114.3 270)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 9c22e76d-3ee5-436b-be0a-04cc882fdca8)
    )
    (pin "LED_P_C" input (at 168.91 114.3 270)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid cdedd453-5485-4623-9ee3-5862de6bf5d4)
    )
    (pin "LED_R_C" input (at 173.99 114.3 270)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid bd62cea1-4c3e-43c7-8ddd-6c8143f97610)
    )
    (pin "LED_M_C" input (at 189.23 114.3 270)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 314b291a-8115-42dc-b5a5-96e98c2b4295)
    )
    (pin "Paddle-_AI" input (at 162.56 114.3 270)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 50946fcb-4d0f-4200-834e-87776cd83c3c)
    )
    (pin "Paddle+_AI" input (at 158.75 114.3 270)
      (effects (font (size 1.27 1.27)) (justify left))
      (uuid 8b0fa46a-9231-4a05-b3c5-7c33131eb1ce)
    )
    (pin "POWER_M" input (at 160.02 77.47 90)
      (effects (font (size 1.27 1.27)) (justify right))
      (uuid 3c7bde33-b8ff-4e88-b993-a2dbfdcf3947)
    )
  )
 
  (sheet_instances
    (path "/" (page "1"))
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039" (page "2"))
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9" (page "3"))
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89" (page "4"))
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c" (page "5"))
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f" (page "6"))
  )
 
  (symbol_instances
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/a25666df-4d3f-4043-bdcd-8d7d044ddb5f"
      (reference "#PWR02") (unit 1) (value "+5V") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/e25a485b-cba4-45a6-bd9f-f0a50030a9bf"
      (reference "#PWR03") (unit 1) (value "GND") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/016487b7-b888-4d30-8d12-b3d432fff43c"
      (reference "#PWR04") (unit 1) (value "+5V") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/bf0e2ab4-e8ec-4c49-be53-047aab30a5c4"
      (reference "#PWR05") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/337eb52b-5d08-4cbc-9382-c1fb484030da"
      (reference "#PWR06") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/e2777ecf-66a9-41fb-b25e-b6b9d03c8994"
      (reference "#PWR07") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/ec59bdd4-013f-4211-a9f0-edae019aeb34"
      (reference "#PWR08") (unit 1) (value "GND") (footprint "")
    )
    (path "/8f60c627-b42e-41bc-b0fb-a454e819c1bc"
      (reference "#PWR0101") (unit 1) (value "GND") (footprint "")
    )
    (path "/bf1b77e0-17b8-4cf4-a84e-9ec77bf8ead2"
      (reference "#PWR0102") (unit 1) (value "GND") (footprint "")
    )
    (path "/1a459560-67eb-45ff-ab19-f1a280a9db05"
      (reference "#PWR0103") (unit 1) (value "GND") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/92dd058d-708c-4945-a281-3b09614a80f1"
      (reference "#PWR0104") (unit 1) (value "GND") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/13d56c39-fe34-4be3-b477-2b719a480999"
      (reference "#PWR0105") (unit 1) (value "GND") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/00530f7f-c61e-4339-bab4-f549c043fdab"
      (reference "#PWR0106") (unit 1) (value "GND") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/123acfd2-b213-4faa-992d-0992d466cb2c"
      (reference "#PWR0107") (unit 1) (value "GND") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/f43ccf50-eb6e-48c9-9454-1f7662083fe0"
      (reference "#PWR0108") (unit 1) (value "GND") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/0aa4f9c7-c6d8-4b61-8262-50f1921d933e"
      (reference "#PWR0109") (unit 1) (value "+12P") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/d37e9e8f-8dca-4b4e-a66a-114a14b0ad97"
      (reference "#PWR0110") (unit 1) (value "GND") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/cec9e636-c33f-495a-a0ec-dcc6558e441a"
      (reference "#PWR0111") (unit 1) (value "GND") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/ba3fdc11-d0ae-4114-85ff-df4ffefff2d4"
      (reference "#PWR0112") (unit 1) (value "GND") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/ddab9ccd-03e4-4b4c-a031-d5e85958a309"
      (reference "#PWR0113") (unit 1) (value "GND") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/71276f01-b42f-4520-8fbe-ef2ce50841df"
      (reference "#PWR0114") (unit 1) (value "+5V") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/82475a9f-6bd1-476f-bb73-fb3beacaf1f4"
      (reference "#PWR0115") (unit 1) (value "GND") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/adf6d277-3956-4804-8420-69c124e96fc4"
      (reference "#PWR0116") (unit 1) (value "+5V") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/49a85bfb-0079-4395-9dd5-965c125a68a2"
      (reference "#PWR0117") (unit 1) (value "GND") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/917ae10f-58a1-4d3d-8759-4ea67a0cf747"
      (reference "#PWR0118") (unit 1) (value "+5V") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/42a0cf62-9319-427f-ac40-de46548ba29d"
      (reference "#PWR0119") (unit 1) (value "GND") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/57cb5b40-30a2-498f-b918-c115f81fb2bb"
      (reference "#PWR0120") (unit 1) (value "GND") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/141b2a63-60a2-4c82-ae36-322f6be5546a"
      (reference "#PWR0121") (unit 1) (value "VDDA") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/ef3fddde-e64f-4489-a8f8-a0003d52b42c"
      (reference "#PWR0122") (unit 1) (value "+5V") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/fc2c0bf8-4433-4bfc-bdcc-7969cf5b60a6"
      (reference "#PWR0123") (unit 1) (value "VDDA") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/38c762b3-e7b2-4bec-b353-35f54aa1a945"
      (reference "#PWR0124") (unit 1) (value "GND") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/3db6277c-4b31-4cd4-b826-556b9d34829f"
      (reference "#PWR0125") (unit 1) (value "GND") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/511c639f-55db-476b-a2cd-555654b4dcdd"
      (reference "#PWR0126") (unit 1) (value "+5V") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/9407b75c-a38c-4e69-8f73-4ef4ab2503bb"
      (reference "#PWR0127") (unit 1) (value "+5V") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/e62443e9-3484-4d9b-a41b-dfe4073c9dbe"
      (reference "#PWR0128") (unit 1) (value "+5V") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/2564824f-ed3b-420f-9965-611e276499b0"
      (reference "#PWR0129") (unit 1) (value "+5V") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/23e89e3c-8aa0-41cd-a0e5-f39f5a242fde"
      (reference "#PWR0130") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/c36b8ef1-3166-4504-9085-9870e8241167"
      (reference "#PWR0131") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/fdb4f7a0-cf48-4728-acf1-c106c2945b7e"
      (reference "#PWR0132") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/2eddf9d9-1f7e-4a67-9662-c2497592d70d"
      (reference "#PWR0133") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/903f10be-77a3-4c77-b569-107e56d721f7"
      (reference "#PWR0134") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/0c4e9ba4-49ed-494a-a0c9-e006fddba946"
      (reference "#PWR0135") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/16f3e199-bdc3-4963-8f83-39745ca76460"
      (reference "#PWR0136") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/e7bfe924-a4ac-4da3-9ad9-3398cb66a075"
      (reference "#PWR0137") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/f0bb8104-31ec-42f5-abfc-29d52218b1a9"
      (reference "#PWR0138") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/f6197ac8-2d23-4fdb-a2a8-df7c2e6a5b09"
      (reference "#PWR0139") (unit 1) (value "+5V") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/e1b80e98-e8b7-48c4-9864-f5152f0983c4"
      (reference "#PWR0140") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/316e831e-82ad-45d5-ad67-8107b84398b4"
      (reference "#PWR0141") (unit 1) (value "+5V") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/19fa979e-81cc-4c40-aae2-9ee433c95b4d"
      (reference "#PWR0142") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/3d401cba-df2c-4088-a9a9-48a128606858"
      (reference "#PWR0143") (unit 1) (value "+5V") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/6ecd7d09-6167-48c9-989d-845d34eee3e9"
      (reference "#PWR0144") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/bd7cdc7e-4511-4e19-a5b3-58b29859ac23"
      (reference "#PWR0145") (unit 1) (value "+5V") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/6a9266a1-2e76-42aa-9c33-f3e2f513e52c"
      (reference "#PWR0146") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/b863af18-6b64-4353-88f4-4bcf8c07907e"
      (reference "#PWR0147") (unit 1) (value "GND") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/30114e89-b45f-49d4-8636-d26a013eaed3"
      (reference "#PWR0148") (unit 1) (value "+5V") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/04c52631-3a2c-4b66-8ff7-1fdee2179ec1"
      (reference "#PWR0149") (unit 1) (value "+5V") (footprint "")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/9d3b8525-4aa5-40e6-9869-6188ae073883"
      (reference "#PWR0151") (unit 1) (value "GND") (footprint "")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/2d9da376-86c3-4618-9381-4e1a4b17fb26"
      (reference "#PWR0156") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/5e7e3bdf-092d-47fb-9c87-5224c95e8f69"
      (reference "#PWR0161") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/3f8da623-5abf-4266-8afd-38865bd7b73a"
      (reference "#PWR0162") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/9a9b7e4b-73b9-4c87-ba1e-6a824fcef417"
      (reference "#PWR0163") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/debe4d25-6a3c-4a57-bf99-c1f5ac401736"
      (reference "#PWR0164") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/e91ca954-5ea0-4133-82e9-8e2cf6db44a0"
      (reference "#PWR0165") (unit 1) (value "+12P") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/e8ba958c-9723-455a-beda-b737cf105233"
      (reference "#PWR0166") (unit 1) (value "+12P") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/8d9b0102-58bf-4d4d-8062-c158180ac9f6"
      (reference "#PWR0167") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/7ce949db-e0e0-4e7d-af6e-c9ddb5ad7516"
      (reference "#PWR0168") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/0dd3e991-25ee-48c6-9e0f-db36f4378d61"
      (reference "#PWR0169") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/75e7bf71-dd24-4e68-b245-37652527b34c"
      (reference "#PWR0170") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/11ba094c-a6b7-4186-bd06-fc4d1717e9af"
      (reference "#PWR0171") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/753297c8-d00d-4dfa-b8f8-b6ee93937d77"
      (reference "#PWR0172") (unit 1) (value "GND") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/5a052929-c727-46cf-a562-34c92c5271a7"
      (reference "#PWR0173") (unit 1) (value "+12P") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/e6fd514c-a9bd-4ad4-b798-41d6a1d10aa0"
      (reference "#PWR0174") (unit 1) (value "+12P") (footprint "")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/09d6f107-d181-4402-ac93-4ec52ed3246c"
      (reference "#PWR0175") (unit 1) (value "+12P") (footprint "")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/32d7629b-15b8-4604-bad8-155625867905"
      (reference "#PWR0176") (unit 1) (value "GND") (footprint "")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/0e35a0fb-f37d-4846-b6d6-5971c44d204d"
      (reference "#PWR0177") (unit 1) (value "GND") (footprint "")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/a9942282-741e-4625-82d8-8b3531484126"
      (reference "#PWR0178") (unit 1) (value "GND") (footprint "")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/044601ee-41bb-46af-90cd-eabb7d31ec64"
      (reference "#PWR0179") (unit 1) (value "GND") (footprint "")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/9d6d02e4-1c65-4727-b325-31e8a52a44dc"
      (reference "#PWR0180") (unit 1) (value "+5V") (footprint "")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/c6c0f0e0-418e-47e0-815c-979ea7ff673f"
      (reference "#PWR0181") (unit 1) (value "GND") (footprint "")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/c30849fb-e85e-45e8-af17-5a25239ddaed"
      (reference "#PWR0182") (unit 1) (value "GND") (footprint "")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/7fe6c8bc-9657-472b-a535-54e285e7d5ff"
      (reference "C101") (unit 1) (value "100nF/100V") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/911a8210-e033-4592-bcee-4d0be01a2067"
      (reference "C102") (unit 1) (value "100nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/c89e899e-547e-4ff2-b049-83bdcf8b5bcf"
      (reference "C103") (unit 1) (value "4.7uF/50V") (footprint "Capacitor_SMD:C_1206_3216Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/34b19ee5-2304-4157-a99b-3b289dfc7c25"
      (reference "C104") (unit 1) (value "47uF/35V") (footprint "Capacitor_SMD:CP_Elec_6.3x9.9")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/439371a1-5e14-4aa8-9976-fc66e9090e1a"
      (reference "C105") (unit 1) (value "10nF/100V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/7f309d35-e974-41e9-a997-043bc5c8a1cd"
      (reference "C106") (unit 1) (value "100nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/60561c64-7efd-4219-8ce7-be3b31e5a64c"
      (reference "C107") (unit 1) (value "100nF/100V") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/aef5a31a-cf32-43b1-8780-04f5f844769f"
      (reference "C108") (unit 1) (value "10uF/10V") (footprint "Capacitor_SMD:C_1206_3216Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/14653ec7-8696-4ff8-8e3f-fce06f734916"
      (reference "C109") (unit 1) (value "100nF/100V") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/018c6ba5-d638-4319-a4d0-41fa346fb86e"
      (reference "C110") (unit 1) (value "100nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/af6c3da8-77ed-4855-9196-bd80ca5b0eea"
      (reference "C111") (unit 1) (value "1nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/edf611f6-9f5c-41e5-b0eb-bad26ea79e4a"
      (reference "C112") (unit 1) (value "10nF/100V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/9ea9200c-2293-4b12-bd68-47735e68a877"
      (reference "C113") (unit 1) (value "100nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/83f7c0e6-4890-4f96-a6a6-68fccf3d20b0"
      (reference "C114") (unit 1) (value "12pF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/e81530d2-53a9-40fa-9c81-d00107802bba"
      (reference "C115") (unit 1) (value "12pF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/cc595ec5-2bda-4aa3-9bc7-66bb42e793e0"
      (reference "C116") (unit 1) (value "10uF/6.3V") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/9528e785-ba42-42f9-a993-9bacf9dca0f8"
      (reference "C117") (unit 1) (value "10uF/6.3V") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/6e2efee0-843c-462e-86d5-2b59afa11847"
      (reference "C118") (unit 1) (value "100nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/22c9741b-81f3-431b-aa1f-0a3d6fbf3e37"
      (reference "C119") (unit 1) (value "10uF/6.3V") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/6a1071b7-96c5-4472-b9c6-f1409416d5cd"
      (reference "C120") (unit 1) (value "100nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/e2047a35-6506-4346-958a-ddd54c2728a1"
      (reference "C121") (unit 1) (value "100nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/0dee554c-127a-45f6-b0b7-8b7ca03a1390"
      (reference "C122") (unit 1) (value "100nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/bb4142cb-a156-44b7-833a-717a57a41b12"
      (reference "C123") (unit 1) (value "10nF/100V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/226c0d9e-0262-4c99-8f72-52474ec7067e"
      (reference "C124") (unit 1) (value "10nF/100V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/2180809f-ea80-4d13-855a-813efc18fd68"
      (reference "C125") (unit 1) (value "10nF/100V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/5cc259b2-2523-4e73-94e5-6e82148a6c89"
      (reference "C126") (unit 1) (value "10nF/100V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/7b9399d8-e30c-4def-9771-7da4923a2443"
      (reference "C127") (unit 1) (value "100nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/06457a05-c425-472f-8319-ca5f2c554a35"
      (reference "C128") (unit 1) (value "100nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/7983e483-1b0d-42ff-b9a9-ff13f12a0340"
      (reference "C129") (unit 1) (value "100nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/e98453cc-2bb3-4bd0-84e8-39f23bce56cc"
      (reference "C130") (unit 1) (value "100nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/7fee4683-c1f5-42bf-b419-c424f2d5ba45"
      (reference "C132") (unit 1) (value "470nF/50V") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/c55ae89c-860d-45b5-963c-6b4be5313b0c"
      (reference "C139") (unit 1) (value "47nF{slash}100V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/f17cc08b-5d43-4aca-900e-a2d134a74068"
      (reference "C140") (unit 1) (value "47nF{slash}100V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/c080f8e5-9345-4da6-a738-e6ebeb409a67"
      (reference "C141") (unit 1) (value "47nF{slash}100V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/ca215849-340e-4cc9-8c89-419e10acdc77"
      (reference "C142") (unit 1) (value "47nF{slash}100V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/354383b7-677c-422c-a267-bce9e97516b2"
      (reference "C143") (unit 1) (value "47nF{slash}100V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/f57bd89e-b3ce-40db-b544-668299367a27"
      (reference "C144") (unit 1) (value "100pF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/b060f6a4-592c-442f-b626-a856fef685bb"
      (reference "C145") (unit 1) (value "100pF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/6a7a7537-3763-4189-9c3d-5d1a6fceeb82"
      (reference "C146") (unit 1) (value "4.7nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/6614eb77-1c77-4067-b8bc-1d119d8aa64f"
      (reference "C147") (unit 1) (value "100nF/50V") (footprint "Capacitor_SMD:C_0603_1608Metric")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/53073a26-9fcf-43c0-b311-d46ed88023ad"
      (reference "C148") (unit 1) (value "10uF/6.3V") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/dfb170ab-3f29-42e9-894e-77f242496b41"
      (reference "D2") (unit 1) (value "BAV99S,115") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/27677dd4-8775-406f-b286-ab078d7f612f"
      (reference "D2") (unit 2) (value "BAV99S,115") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/e09a804f-288d-49fd-894f-c1d02b9d2a19"
      (reference "D3") (unit 1) (value "BAS316") (footprint "Diode_SMD:D_SOD-323")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/33ea07b4-c273-4e34-bd62-f3d28d50d038"
      (reference "D4") (unit 1) (value "BAS316") (footprint "Diode_SMD:D_SOD-323")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/a2be3100-ea90-4b1e-819d-6564f1bf42c0"
      (reference "D5") (unit 1) (value "ESDA25L") (footprint "Package_TO_SOT_SMD:SOT-23")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/c51575b4-42e6-4549-854b-493ba3ffb451"
      (reference "D6") (unit 1) (value "BAS316") (footprint "Diode_SMD:D_SOD-323")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/47c66f6a-d3ed-4486-b792-f41184e36847"
      (reference "D7") (unit 1) (value "BAS316") (footprint "Diode_SMD:D_SOD-323")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/535f1748-f1fd-44f0-9260-0607aa8fde13"
      (reference "D8") (unit 1) (value "ESDA25L") (footprint "Package_TO_SOT_SMD:SOT-23")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/634e2edf-9e99-4dee-b4bb-b66fae286dd5"
      (reference "D9") (unit 1) (value "ESDA25L") (footprint "Package_TO_SOT_SMD:SOT-23")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/5255f862-1b7c-4e10-9e68-0e1a32bd0fd9"
      (reference "D10") (unit 1) (value "BAS316") (footprint "Diode_SMD:D_SOD-323")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/6771f39d-da91-40c4-8ded-810f47f2dbca"
      (reference "D11") (unit 1) (value "BAS316") (footprint "Diode_SMD:D_SOD-323")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/62a3dbfb-d085-478d-91b9-e59575db0126"
      (reference "D12") (unit 1) (value "BAS316") (footprint "Diode_SMD:D_SOD-323")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/e1ac51a6-7591-435c-8072-4d99cc247828"
      (reference "D101") (unit 1) (value "BAS16") (footprint "Diode_SMD:D_SOD-123")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/a563f3ba-3baf-407e-881b-a80a77fa9b26"
      (reference "D102") (unit 1) (value "SMAJ33CA-AT") (footprint "Diode_SMD:D_SMA")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/132ed816-029e-4675-af97-41b908efbc07"
      (reference "D103") (unit 1) (value "BAV70") (footprint "Package_TO_SOT_SMD:SOT-23")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/3cb143bb-54ed-45b1-89aa-323a79d49246"
      (reference "D104") (unit 1) (value "SMAJ33CA-AT") (footprint "Diode_SMD:D_SMA")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/16938811-b24e-4aca-b5c5-5d1d97d79fcd"
      (reference "D105") (unit 1) (value "S1G") (footprint "Diode_SMD:D_SMA")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/cf1a7ee2-b1b1-4fd6-b53a-efa95cf080b1"
      (reference "D108") (unit 1) (value "NUP2105LT1G") (footprint "Package_TO_SOT_SMD:SOT-23")
    )
    (path "/e654ebce-49dd-4d19-95ab-47ef016f388e"
      (reference "J1") (unit 1) (value "JAE MX34012UF1") (footprint "GODPP:MX34012UF1")
    )
    (path "/07e25b82-3b42-48a2-b5b7-c00ff83e35e6"
      (reference "J2") (unit 1) (value "5031541290") (footprint "GODPP:5031541290")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/834e55ae-f2b7-46a9-bab1-95534d50d10d"
      (reference "J101") (unit 1) (value "DEBUG") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/ae3fb869-43d5-4781-b4f0-a5bace9e5d79"
      (reference "L101") (unit 1) (value "1k@100MHz") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/299ac45b-c5b7-455a-8034-871ea36966ff"
      (reference "L102") (unit 1) (value "1k@100MHz") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/a53eab38-94e5-4ec7-a5bc-327db57d091f"
      (reference "L103") (unit 1) (value "1k@100MHz") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/3c50190e-e112-4eec-8fc7-1d342d4ade0a"
      (reference "L104") (unit 1) (value "DLW43SH510XK") (footprint "Inductor_SMD:L_CommonModeChoke_Coilcraft_1812CAN")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/656ca715-beb1-4b6a-b1e8-b22834c5c7e4"
      (reference "L105") (unit 1) (value "1k@100MHz") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/78217514-de9a-4ccc-8bb1-e93c141ceb41"
      (reference "MARK1") (unit 1) (value "Fiducial") (footprint "Fiducial:Fiducial_1mm_Mask2mm")
    )
    (path "/d0b37681-d7a2-47da-b6ef-88cc3506cec0"
      (reference "MARK2") (unit 1) (value "Fiducial") (footprint "Fiducial:Fiducial_1mm_Mask2mm")
    )
    (path "/b27fa53b-fae0-4373-891c-38a81914eb13"
      (reference "MARK3") (unit 1) (value "Fiducial") (footprint "Fiducial:Fiducial_1mm_Mask2mm")
    )
    (path "/7d363984-169f-4ec0-ba3e-1cb1e617050e"
      (reference "MARK4") (unit 1) (value "Fiducial") (footprint "Fiducial:Fiducial_1mm_Mask2mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/9eddaa4a-a339-449e-9a06-337c22448dc7"
      (reference "Q101") (unit 1) (value "DDTC114ECA-7-F|PDTC114ET,215") (footprint "Package_TO_SOT_SMD:SOT-23")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/8bc9ccaa-2f09-4881-b3b8-de0e3ba988f8"
      (reference "Q102") (unit 1) (value "BCP53TA") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/19e7f892-5e1a-49d2-86f6-f5eb70a6cec8"
      (reference "Q103") (unit 1) (value "PUMD3,115") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/d463ad2c-74ba-45ea-a1f2-a387e56c0843"
      (reference "Q103") (unit 2) (value "PUMD3,115") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/0051c27b-c5ec-4a7b-8127-15e1057aa525"
      (reference "Q104") (unit 1) (value "PUMD3,115") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/fb83ed5a-01ac-4ddc-9964-2bb8862c7ea4"
      (reference "Q104") (unit 2) (value "PUMD3,115") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/fd582d95-c620-4695-99f3-c8482bb36b4d"
      (reference "Q105") (unit 1) (value "PUMD3,115") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/c26774dc-30ee-4715-a40d-12e9184bc090"
      (reference "Q105") (unit 2) (value "PUMD3,115") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/b1e4be8f-a2a7-4c9a-ab6a-2e065f1c374f"
      (reference "Q106") (unit 1) (value "PUMD3,115") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/244bcdf3-cb1e-4418-9865-8a7e785a6b1a"
      (reference "Q106") (unit 2) (value "PUMD3,115") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/407aa0f4-bd39-43d0-80aa-972ec5916551"
      (reference "Q107") (unit 1) (value "PUMD3,115") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/01f94654-08d7-4652-8cfa-a116e078a3d5"
      (reference "Q107") (unit 2) (value "PUMD3,115") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/63bd1b1a-f258-4dc0-8d59-cdf68500bdb6"
      (reference "R101") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/8ed1993f-a050-40cc-8ce8-3a5fa3a1c565"
      (reference "R102") (unit 1) (value "30k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/458991f8-b568-4bff-b3dc-10880b5b94c9"
      (reference "R103") (unit 1) (value "30k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/f050fa3c-7ddf-4e21-8819-7e93897ef14b"
      (reference "R104") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/da7d3b82-f2ed-4275-bddf-ae31a76780bf"
      (reference "R105") (unit 1) (value "51k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/6b701029-ee22-4704-8b63-58cfca9c37ff"
      (reference "R106") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/432dfe91-5cf1-44e6-9378-1b27baa870ac"
      (reference "R107") (unit 1) (value "30k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/62518fd6-0cc9-472d-a6aa-47515df59283"
      (reference "R108") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/c1b686f5-0a19-449d-a448-9b35539ea1fc"
      (reference "R109") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/db8a5ae9-ac8d-432f-9c7f-a28b01b64d50"
      (reference "R110") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/fa88df19-abde-47f8-a2a0-7f9a6418ffd4"
      (reference "R111") (unit 1) (value "1M") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/86df1a5d-0c26-484e-9c88-969d587284d5"
      (reference "R113") (unit 1) (value "47k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/954801e2-e115-41ef-bc53-2bc2fca99fce"
      (reference "R114") (unit 1) (value "100R") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/1b60fbe9-6877-4cd3-b40c-36ba74b14159"
      (reference "R115") (unit 1) (value "47k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/5e00e4ce-3bab-45d3-98cc-12f7412db642"
      (reference "R116") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/66548026-5bab-4fd3-96c8-56c9905b6a8f"
      (reference "R117") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/8907b5d0-0aec-4782-bb00-8725386cc33c"
      (reference "R119") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/c0b5e166-6bc9-4361-b060-dc6615d0180b"
      (reference "R122") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/95e074be-6ff5-46f6-8883-d0abf853778b"
      (reference "R123") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/37d420da-c66a-4ce8-aaef-917133b7d7de"
      (reference "R124") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/d305a7ab-45ff-40f7-b6af-88a2191e0b66"
      (reference "R125") (unit 1) (value "2.2k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/cccca7c7-1840-4527-83eb-73170ea507be"
      (reference "R126") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/9853c198-1d1a-4531-9cc7-e82cb188f7f2"
      (reference "R127") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/99b7687e-fbef-40e0-bdda-2576c2584fb1"
      (reference "R128") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/45485a85-5611-4dd6-9708-150a03e65ada"
      (reference "R129") (unit 1) (value "4.7k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/d5726aa4-e5ca-4b40-aced-c7495db4b942"
      (reference "R130") (unit 1) (value "1.5k") (footprint "Resistor_SMD:R_0805_2012Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/4cad49ea-cdc7-4a1c-bd58-42f2ff2244b9"
      (reference "R131") (unit 1) (value "1.5k") (footprint "Resistor_SMD:R_0805_2012Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/ca85a7e4-b681-4746-8338-793a5bd65887"
      (reference "R132") (unit 1) (value "1.5k") (footprint "Resistor_SMD:R_0805_2012Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/77a79e76-e5ef-4c69-8752-b6d472b0efa4"
      (reference "R133") (unit 1) (value "1.5k") (footprint "Resistor_SMD:R_0805_2012Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/3e8d1078-bb38-4a36-9dc0-216130665146"
      (reference "R134") (unit 1) (value "100R") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/11ede88b-1255-4c0f-a28b-a5d044e45df7"
      (reference "R135") (unit 1) (value "100R") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/1719599d-0816-4b3c-ab32-fa2ff1283f95"
      (reference "R136") (unit 1) (value "100R") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/0a5c61cf-8c58-4a04-8502-ed37593c7297"
      (reference "R143") (unit 1) (value "1.1k") (footprint "Resistor_SMD:R_1206_3216Metric")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/90baa3fa-a3f6-4cfc-be71-d86fc47f1706"
      (reference "R144") (unit 1) (value "1.1k") (footprint "Resistor_SMD:R_1206_3216Metric")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/a6401353-1cec-46b0-8afd-bd9bd3ed1888"
      (reference "R145") (unit 1) (value "1.1k") (footprint "Resistor_SMD:R_1206_3216Metric")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/770eb11f-feb5-475d-a370-dd813eded366"
      (reference "R146") (unit 1) (value "1.1k") (footprint "Resistor_SMD:R_1206_3216Metric")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/5e7d3dfc-9afb-4c90-95e8-699727f76d50"
      (reference "R147") (unit 1) (value "1.1k") (footprint "Resistor_SMD:R_1206_3216Metric")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/6cbc1a43-3ad4-4f6f-aa4a-f18b49509aca"
      (reference "R148") (unit 1) (value "0R") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/a33553e1-95ba-4fc8-92b4-7ab699c6a454"
      (reference "R149") (unit 1) (value "0R") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/74f691b6-1242-4be4-b9a5-24868830616d"
      (reference "R150") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/5510ee7b-fcca-4b60-a716-33bd1570ef45"
      (reference "R151") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/2bbd3bae-2dbf-40d7-9a31-110e805d3ab0"
      (reference "R152") (unit 1) (value "10k") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/66c9a571-0ff0-42fd-8ca1-88238afda743"
      (reference "R153") (unit 1) (value "0R") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/324cd4e6-448d-41f2-814c-fb8ce9ea7272"
      (reference "R154") (unit 1) (value "0R") (footprint "Resistor_SMD:R_0603_1608Metric")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/687615a3-5083-4491-9588-45c2ab0a6632"
      (reference "TP2") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/26d834a0-dcb1-4bc6-b271-eb01d9ee53a7"
      (reference "TP3") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/7cf4c959-d558-40bc-a75b-8a60008888ae"
      (reference "TP4") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/e24fd258-4d87-4572-83c6-d826654c84fa"
      (reference "TP5") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/e3bd363b-3c28-4fd8-8baa-e2fafa896a3e"
      (reference "TP6") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/9bfbfc72-ae10-4ee6-a4c5-7eeccd19f11a"
      (reference "TP7") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/d0541640-cd73-4462-bfce-fb8763d062d7"
      (reference "TP8") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/d0e80dd3-2c8d-4e50-a741-f96de002d673"
      (reference "TP9") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/49380763-5206-4110-aece-7b27fff2e1d3"
      (reference "TP10") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/5a8f5c71-732b-487e-a232-aba7b8bcd364"
      (reference "TP11") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/03c52fc9-1316-4bbe-b4f7-8441abf239f1"
      (reference "TP12") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/27d4f420-8897-44c4-a4ab-1ef2bd73bd1b"
      (reference "TP13") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/40d97694-9b7c-43c7-a727-e5c8cdfb2c56"
      (reference "TP14") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/d2eb1415-0d43-47e9-b9eb-d9fdfa334f8e"
      (reference "TP15") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/ccea6eb4-4899-460a-9006-a6ef4a73a90e"
      (reference "TP16") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/820be5da-fd60-479a-bb4b-6ca2ad96cee2"
      (reference "TP17") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/d54f5d67-aa55-4b73-9fe4-4cc258a6858c"
      (reference "TP20") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/8310e143-5b79-4e05-b6a9-53cccdf52849"
      (reference "TP21") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/657cf435-e996-4e0a-a283-0f3f7db7fbb6"
      (reference "TP23") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/eaad7ab4-8c9d-4ca7-8ab9-3866f55927cd"
      (reference "TP24") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/8cae00d6-67c7-4c32-883b-9b7ad27a3fbc"
      (reference "TP25") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/f79f3210-4f67-47ef-b71c-3b1b06366b9d"
      (reference "TP28") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/528fc4fb-3afb-4fed-b768-fec3de604420"
      (reference "TP31") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/29c23c55-17d3-41d1-bea1-54fc7d940f34"
      (reference "TP43") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/abfc1e2c-9aec-457c-85b9-bc1c7390a57f"
      (reference "TP44") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/62fd46f5-b105-4145-910c-e8ca8ea0b4d3"
      (reference "TP45") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/e8fc7925-2689-465c-a1c9-75ecd61921f8"
      (reference "TP46") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/d35c8db5-5618-422c-9c49-b98a880273ac"
      (reference "TP47") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/326bc2df-5ae5-49d1-ab03-b22400020c8f"
      (reference "TP48") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/bba00fc8-f2be-4979-99f5-1ba4102434a7"
      (reference "TP49") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/2af7fb1a-1f9d-42aa-aeaa-3eb9fcd951df"
      (reference "TP50") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/f0bf5951-5e56-4505-8139-8d9b8a97261b"
      (reference "TP51") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/1487e66e-bc0d-47e5-8970-c6c8ce820982"
      (reference "TP52") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/a506efd0-aff0-49a4-b00f-2640f6dabae6"
      (reference "TP53") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/b44e05e7-2b30-4502-9bcc-7346d7c89a07"
      (reference "TP54") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/301d6ded-fc16-4742-8eeb-cf331f6bdb2a"
      (reference "TP55") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/992a1148-abce-4037-936f-a5503f8eb479"
      (reference "TP56") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/300bd3a0-f169-4279-af79-07585f03daba"
      (reference "TP57") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/c38d9de0-a08e-4428-8db9-d0e154e52586"
      (reference "TP58") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/ce3e43d6-da0d-466a-846b-ffc95962e7eb"
      (reference "TP59") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/89fd07f2-c2fd-40c0-9689-0624d4926980"
      (reference "TP60") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/fc3846d8-e91e-4204-a3b4-3bdf3e72d891"
      (reference "TP69") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/ed8ab504-d407-4e67-89c8-da4f7ac13119"
      (reference "TP70") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/4d966b6a-2df3-4011-9e7b-6a44ef668c34"
      (reference "TP71") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/a9d2cc85-6cce-45ba-8dfb-c06654c8513a"
      (reference "TP72") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/b89f13ed-e39d-47b6-966c-753fd264eb94"
      (reference "TP73") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/61c52056-f6a3-476e-9a52-e8248809f97f"
      (reference "TP74") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/b3528c92-e1eb-4a1c-9cfa-aed4b4b64b78"
      (reference "TP77") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/20e0ab30-c7a8-407a-9421-615d34248087"
      (reference "TP78") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/087facb6-8f6b-4b1b-a115-9dc2f0ab20d3"
      (reference "TP79") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/93369f53-a83c-4ddd-9013-fa4ad9d579e2"
      (reference "TP80") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/48ab4ed6-be4a-4811-8d3e-1a50189119dd"
      (reference "TP81") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/0cb208d3-9eb8-4a80-a643-bf19447638d6"
      (reference "TP82") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/52b2fd62-1523-4526-81c5-31fd3125de1e"
      (reference "TP83") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/e8212c8a-30d4-4d7d-b78d-a5397ffaab9b"
      (reference "TP84") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/010305d3-4f44-4e9f-bf9f-7277deff627c/cd6d28a1-6768-4de4-9b30-68ff440da312"
      (reference "TP85") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/ee3c2c5d-756d-4e30-9a47-0038220ad8d1"
      (reference "TP91") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/756401bc-c4a9-412f-b73f-bac4b6a542af"
      (reference "TP92") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/3ceabd97-a796-4335-afab-cb81b80d48b6"
      (reference "TP93") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/6f9fbc62-6159-46b5-804f-e236a133c25a"
      (reference "TP94") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/9760dd4f-4252-4fc5-828b-1ca3e2065f93"
      (reference "TP95") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/ae23cda2-1ed6-4978-b36d-f030157cdf77"
      (reference "TP96") (unit 1) (value "TestPoint_Small") (footprint "TestPoint:TestPoint_Pad_D1.0mm")
    )
    (path "/91165038-a1bf-48d6-a5c0-5350aa105039/c7025077-1b7c-4407-9a3a-fbb7657c712f"
      (reference "U101") (unit 1) (value "BD450M2FP3-CE2") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/da5346d6-0a77-49b0-b6d9-d5eefec18f4c"
      (reference "U102") (unit 1) (value "XL6600AxxxL7") (footprint "Package_QFP:LQFP-64_10x10mm_P0.5mm")
    )
    (path "/aa974d54-b763-4f96-a5be-30a9bd995f89/8b43dbed-7320-4700-8fb0-8ccb7398a029"
      (reference "U103") (unit 1) (value "HAL3900DJ") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
    )
    (path "/8929cf7a-ec8a-4303-bbbe-050bce5a358f/a6a65b17-f964-4470-8f0c-93de0d730794"
      (reference "U104") (unit 1) (value "TJA1042T") (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm")
    )
    (path "/ad6437eb-8d0e-431a-964e-d423d3e1c5f9/adc54012-db06-462e-bae7-766027ded7c9"
      (reference "Y101") (unit 1) (value "YSX321SC16MHZ") (footprint "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm")
    )
    (path "/4f25ee5d-850d-40da-ba4d-e73fdfeaeb9c"
      (reference "ZLONG_LOGO2") (unit 1) (value "Fiducial") (footprint "GODPP:ZLONG")
    )
  )
)