summaryrefslogtreecommitdiff
path: root/hw/plinkyblackfront/plinkyblackfront.kicad_sch
blob: 827a24951c425ac182ba85a3704d38c7fb6f9a36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
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
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
(kicad_sch (version 20230121) (generator eeschema)

  (uuid 46ebfb8b-bc9d-4910-8c61-7118174680ab)

  (paper "A4")

  (lib_symbols
    (symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (at 0 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_01x02" (at 0 -5.08 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "connector" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_01x02_1_1"
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 1.27) (end 1.27 -3.81)
          (stroke (width 0.254) (type default))
          (fill (type background))
        )
        (pin passive line (at -5.08 0 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 -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))))
        )
      )
    )
    (symbol "Connector_Generic:Conn_02x08_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (at 1.27 10.16 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_02x08_Odd_Even" (at 1.27 -12.7 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "connector" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Generic connector, double row, 02x08, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_02x08_Odd_Even_1_1"
        (rectangle (start -1.27 -10.033) (end 0 -10.287)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 -7.493) (end 0 -7.747)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 -4.953) (end 0 -5.207)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 2.667) (end 0 2.413)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 5.207) (end 0 4.953)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 7.747) (end 0 7.493)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 8.89) (end 3.81 -11.43)
          (stroke (width 0.254) (type default))
          (fill (type background))
        )
        (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 0.127) (end 2.54 -0.127)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 2.667) (end 2.54 2.413)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 5.207) (end 2.54 4.953)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 7.747) (end 2.54 7.493)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (pin passive line (at -5.08 7.62 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 -2.54 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 -5.08 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 -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 -7.62 0) (length 3.81)
          (name "Pin_13" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -7.62 180) (length 3.81)
          (name "Pin_14" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -10.16 0) (length 3.81)
          (name "Pin_15" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -10.16 180) (length 3.81)
          (name "Pin_16" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 7.62 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 5.08 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 5.08 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 2.54 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 2.54 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 0 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 0 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 -2.54 0) (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_02x08_Top_Bottom" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (at 1.27 10.16 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_02x08_Top_Bottom" (at 1.27 -12.7 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "connector" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Generic connector, double row, 02x08, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins), script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Connector*:*_2x??_*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_02x08_Top_Bottom_1_1"
        (rectangle (start -1.27 -10.033) (end 0 -10.287)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 -7.493) (end 0 -7.747)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 -4.953) (end 0 -5.207)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 2.667) (end 0 2.413)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 5.207) (end 0 4.953)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 7.747) (end 0 7.493)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start -1.27 8.89) (end 3.81 -11.43)
          (stroke (width 0.254) (type default))
          (fill (type background))
        )
        (rectangle (start 3.81 -10.033) (end 2.54 -10.287)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 -7.493) (end 2.54 -7.747)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 -4.953) (end 2.54 -5.207)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 0.127) (end 2.54 -0.127)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 2.667) (end 2.54 2.413)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 5.207) (end 2.54 4.953)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (rectangle (start 3.81 7.747) (end 2.54 7.493)
          (stroke (width 0.1524) (type default))
          (fill (type none))
        )
        (pin passive line (at -5.08 7.62 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 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 0 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 -2.54 180) (length 3.81)
          (name "Pin_13" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -5.08 180) (length 3.81)
          (name "Pin_14" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -7.62 180) (length 3.81)
          (name "Pin_15" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -10.16 180) (length 3.81)
          (name "Pin_16" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 5.08 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 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 -5.08 0 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 -2.54 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 -5.08 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 -5.08 -7.62 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 -5.08 -10.16 0) (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 7.62 180) (length 3.81)
          (name "Pin_9" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "D" (at 0 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "LED" (at 0 -2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "LED diode" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Light emitting diode" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "LED_0_1"
        (polyline
          (pts
            (xy -1.27 -1.27)
            (xy -1.27 1.27)
          )
          (stroke (width 0.254) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.27 0)
            (xy 1.27 0)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 -1.27)
            (xy 1.27 1.27)
            (xy -1.27 0)
            (xy 1.27 -1.27)
          )
          (stroke (width 0.254) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -3.048 -0.762)
            (xy -4.572 -2.286)
            (xy -3.81 -2.286)
            (xy -4.572 -2.286)
            (xy -4.572 -1.524)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.778 -0.762)
            (xy -3.302 -2.286)
            (xy -2.54 -2.286)
            (xy -3.302 -2.286)
            (xy -3.302 -1.524)
          )
          (stroke (width 0) (type default))
          (fill (type none))
        )
      )
      (symbol "LED_1_1"
        (pin passive line (at -3.81 0 0) (length 2.54)
          (name "K" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 3.81 0 180) (length 2.54)
          (name "A" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
  )

  (junction (at 85.09 63.5) (diameter 0) (color 0 0 0 0)
    (uuid 0307bda9-4aa2-432d-96f3-335736f13e8b)
  )
  (junction (at 124.46 147.32) (diameter 0) (color 0 0 0 0)
    (uuid 03947916-6cb5-4eb6-969e-3534721a5692)
  )
  (junction (at 81.28 134.62) (diameter 0) (color 0 0 0 0)
    (uuid 041e8676-843a-4337-bcdf-b6076995c80e)
  )
  (junction (at 106.68 83.82) (diameter 0) (color 0 0 0 0)
    (uuid 04ead179-069e-4d54-8ac1-c4fd37783fab)
  )
  (junction (at 63.5 71.12) (diameter 0) (color 0 0 0 0)
    (uuid 051fcc34-4c47-44c8-b2a8-9b01ecceb344)
  )
  (junction (at 106.68 71.12) (diameter 0) (color 0 0 0 0)
    (uuid 0cfeba3a-85ea-48f5-8180-a13c86a0765b)
  )
  (junction (at 85.09 50.8) (diameter 0) (color 0 0 0 0)
    (uuid 0deaf1f2-468e-43cd-9006-5036bc94da1f)
  )
  (junction (at 102.87 88.9) (diameter 0) (color 0 0 0 0)
    (uuid 1596a89b-2beb-41d3-a0ea-8781671e7f69)
  )
  (junction (at 52.07 58.42) (diameter 0) (color 0 0 0 0)
    (uuid 1598f042-5f5c-4e51-ba7b-8a861b19cfd2)
  )
  (junction (at 88.9 147.32) (diameter 0) (color 0 0 0 0)
    (uuid 1766053b-60e7-4f6a-ac01-c35674903bda)
  )
  (junction (at 55.88 76.2) (diameter 0) (color 0 0 0 0)
    (uuid 183c7ea4-7c37-43d1-b44b-fbb67afcc9ca)
  )
  (junction (at 52.07 121.92) (diameter 0) (color 0 0 0 0)
    (uuid 1b5f4419-79a9-4e12-8fba-fb88273fcd0e)
  )
  (junction (at 81.28 83.82) (diameter 0) (color 0 0 0 0)
    (uuid 1b86ca55-c4f0-4c85-97fa-fbb979a7a750)
  )
  (junction (at 63.5 109.22) (diameter 0) (color 0 0 0 0)
    (uuid 1ec4f5b1-1e8a-40a7-a49a-7553bfd765d6)
  )
  (junction (at 81.28 121.92) (diameter 0) (color 0 0 0 0)
    (uuid 1f8ae2e6-f310-4f61-b6cc-6859d64230f6)
  )
  (junction (at 99.06 96.52) (diameter 0) (color 0 0 0 0)
    (uuid 21212f15-0cc7-4d91-9abc-a19442ecf4be)
  )
  (junction (at 71.12 71.12) (diameter 0) (color 0 0 0 0)
    (uuid 21492f7b-4864-4d67-a68b-493796744fd2)
  )
  (junction (at 67.31 76.2) (diameter 0) (color 0 0 0 0)
    (uuid 22a29d12-168a-4bd7-a117-6d76ae0a8724)
  )
  (junction (at 81.28 96.52) (diameter 0) (color 0 0 0 0)
    (uuid 22f3d2ce-8dc5-4f2b-a712-e14d53013df2)
  )
  (junction (at 55.88 88.9) (diameter 0) (color 0 0 0 0)
    (uuid 244aad8f-1edf-4055-a441-626c611165a5)
  )
  (junction (at 71.12 147.32) (diameter 0) (color 0 0 0 0)
    (uuid 24b055b6-bae1-4ae9-8de2-1c2905084a16)
  )
  (junction (at 81.28 58.42) (diameter 0) (color 0 0 0 0)
    (uuid 27623aa4-60de-4db2-abde-67052e5dcf55)
  )
  (junction (at 106.68 121.92) (diameter 0) (color 0 0 0 0)
    (uuid 27d006c8-a15c-46e0-a22c-bfd347113d00)
  )
  (junction (at 116.84 71.12) (diameter 0) (color 0 0 0 0)
    (uuid 28515f24-7dbd-4c42-8bdd-cc0352424088)
  )
  (junction (at 55.88 114.3) (diameter 0) (color 0 0 0 0)
    (uuid 29a4cb11-938e-4fe0-a15a-eb6191bdc12d)
  )
  (junction (at 116.84 83.82) (diameter 0) (color 0 0 0 0)
    (uuid 2aae3b0c-4feb-4fa1-b354-2a366bf47aa7)
  )
  (junction (at 55.88 139.7) (diameter 0) (color 0 0 0 0)
    (uuid 2ef35725-944e-4ce6-8a11-e537df9006bf)
  )
  (junction (at 55.88 63.5) (diameter 0) (color 0 0 0 0)
    (uuid 34ea5d75-32cb-4601-a632-567a8292e4f5)
  )
  (junction (at 63.5 147.32) (diameter 0) (color 0 0 0 0)
    (uuid 35b9d831-46ee-4d0e-8355-8b7e5e8c292f)
  )
  (junction (at 120.65 88.9) (diameter 0) (color 0 0 0 0)
    (uuid 39001697-182c-49f1-b5b3-2ee93e6818d8)
  )
  (junction (at 120.65 63.5) (diameter 0) (color 0 0 0 0)
    (uuid 3e3f017a-4582-4052-bf49-1679b474f984)
  )
  (junction (at 71.12 134.62) (diameter 0) (color 0 0 0 0)
    (uuid 3f43fc98-6eb9-4d8f-943c-181c7d6268ac)
  )
  (junction (at 52.07 83.82) (diameter 0) (color 0 0 0 0)
    (uuid 41662c30-9c59-4187-96b8-0cd16bf533d4)
  )
  (junction (at 116.84 147.32) (diameter 0) (color 0 0 0 0)
    (uuid 456a3e8d-c965-4ce6-89e9-e7b2866de9ae)
  )
  (junction (at 52.07 134.62) (diameter 0) (color 0 0 0 0)
    (uuid 47c3071f-f57f-4b3f-93b7-a7ceb862e1f2)
  )
  (junction (at 88.9 134.62) (diameter 0) (color 0 0 0 0)
    (uuid 49cd2bdd-35a0-4c3b-ae5d-382ef97f8652)
  )
  (junction (at 99.06 58.42) (diameter 0) (color 0 0 0 0)
    (uuid 4a0c8098-87c2-4463-9628-ee480e3cdf27)
  )
  (junction (at 106.68 109.22) (diameter 0) (color 0 0 0 0)
    (uuid 4b84d838-2177-4f0a-9408-ba83ca44ba45)
  )
  (junction (at 124.46 96.52) (diameter 0) (color 0 0 0 0)
    (uuid 4b97cd6a-38d9-4b7c-99bb-df8bc3c3b5bc)
  )
  (junction (at 85.09 114.3) (diameter 0) (color 0 0 0 0)
    (uuid 4e577054-24d8-464a-a6d4-03d4d404f5f6)
  )
  (junction (at 81.28 71.12) (diameter 0) (color 0 0 0 0)
    (uuid 569571de-35f2-4229-a350-7ebc861aa8dc)
  )
  (junction (at 63.5 134.62) (diameter 0) (color 0 0 0 0)
    (uuid 5698581a-47b1-4300-b4b6-f30d0d95f5c2)
  )
  (junction (at 71.12 83.82) (diameter 0) (color 0 0 0 0)
    (uuid 57d5b708-e136-4f9c-9e40-1627f9edadc4)
  )
  (junction (at 124.46 71.12) (diameter 0) (color 0 0 0 0)
    (uuid 68ec0611-545a-4795-ab66-5205db943a25)
  )
  (junction (at 106.68 58.42) (diameter 0) (color 0 0 0 0)
    (uuid 6e1ee894-6ecf-44c5-8cc7-accd614d012b)
  )
  (junction (at 99.06 121.92) (diameter 0) (color 0 0 0 0)
    (uuid 6e7251be-f614-490f-afe6-1983084f432d)
  )
  (junction (at 116.84 134.62) (diameter 0) (color 0 0 0 0)
    (uuid 6f7f54cb-9f94-4cb2-91eb-edaae0a187cf)
  )
  (junction (at 85.09 88.9) (diameter 0) (color 0 0 0 0)
    (uuid 744d1941-3a8e-4399-be9f-d9bf7c02ab89)
  )
  (junction (at 55.88 101.6) (diameter 0) (color 0 0 0 0)
    (uuid 758eabd5-111d-4d0f-b3a6-4d275032ff42)
  )
  (junction (at 85.09 139.7) (diameter 0) (color 0 0 0 0)
    (uuid 777e5959-295c-4d27-81db-c7e99750a488)
  )
  (junction (at 124.46 58.42) (diameter 0) (color 0 0 0 0)
    (uuid 77d73d52-40c5-448c-b76f-81a7f56cd672)
  )
  (junction (at 88.9 96.52) (diameter 0) (color 0 0 0 0)
    (uuid 79c8fa81-a16a-4b02-81c4-4374b99844af)
  )
  (junction (at 67.31 127) (diameter 0) (color 0 0 0 0)
    (uuid 7ac423f9-2068-4733-9432-7b8353e14a3e)
  )
  (junction (at 124.46 83.82) (diameter 0) (color 0 0 0 0)
    (uuid 7d1e2c8d-94de-4d30-89f9-e7f6f3d3b1b8)
  )
  (junction (at 88.9 83.82) (diameter 0) (color 0 0 0 0)
    (uuid 7dbe6bab-380b-4cc5-8618-89e1f3c1debb)
  )
  (junction (at 106.68 134.62) (diameter 0) (color 0 0 0 0)
    (uuid 7edffe60-65e1-4404-b0ab-561975399722)
  )
  (junction (at 120.65 101.6) (diameter 0) (color 0 0 0 0)
    (uuid 8326c62f-1478-4673-a332-97a447480304)
  )
  (junction (at 120.65 127) (diameter 0) (color 0 0 0 0)
    (uuid 836e4dde-9b4c-4632-ba03-6ba8b1000eee)
  )
  (junction (at 116.84 58.42) (diameter 0) (color 0 0 0 0)
    (uuid 883b7a50-ec75-4fa5-83ba-d520b6c8bbbd)
  )
  (junction (at 88.9 109.22) (diameter 0) (color 0 0 0 0)
    (uuid 8b27b0ef-4e72-4b16-8a60-1010109afc6f)
  )
  (junction (at 67.31 139.7) (diameter 0) (color 0 0 0 0)
    (uuid 8b8d6af4-c7ab-4cf0-b115-7c85e091aa02)
  )
  (junction (at 88.9 71.12) (diameter 0) (color 0 0 0 0)
    (uuid 8d0bf328-83c8-46db-9d67-ae16eea6c0ee)
  )
  (junction (at 116.84 121.92) (diameter 0) (color 0 0 0 0)
    (uuid 9018fba8-e77f-4b63-88b5-a5d43e31fb39)
  )
  (junction (at 63.5 96.52) (diameter 0) (color 0 0 0 0)
    (uuid 90345c78-119d-4af6-bafe-fab7a2c0f2ee)
  )
  (junction (at 67.31 88.9) (diameter 0) (color 0 0 0 0)
    (uuid 90eabba8-0710-4078-872f-8f7280743e66)
  )
  (junction (at 71.12 121.92) (diameter 0) (color 0 0 0 0)
    (uuid 9177891f-ebc2-4ce3-8da1-d41a008bb880)
  )
  (junction (at 124.46 121.92) (diameter 0) (color 0 0 0 0)
    (uuid 919332c8-d756-4b3b-a956-932090e98df6)
  )
  (junction (at 71.12 96.52) (diameter 0) (color 0 0 0 0)
    (uuid 93515b34-9db4-4abd-a21c-aa2525c79613)
  )
  (junction (at 67.31 114.3) (diameter 0) (color 0 0 0 0)
    (uuid 95573f11-580e-47af-b224-92671614ed9f)
  )
  (junction (at 102.87 76.2) (diameter 0) (color 0 0 0 0)
    (uuid 96865829-6f2e-409e-9dc1-7e414cc0147a)
  )
  (junction (at 55.88 50.8) (diameter 0) (color 0 0 0 0)
    (uuid 9842c701-f903-445e-916c-da6ef93a85ef)
  )
  (junction (at 81.28 147.32) (diameter 0) (color 0 0 0 0)
    (uuid 9ecd7797-04b7-41f8-b9a4-b7c84dd8bcb8)
  )
  (junction (at 99.06 147.32) (diameter 0) (color 0 0 0 0)
    (uuid a18c4202-d7d4-4458-993c-ed2a4aeb148a)
  )
  (junction (at 81.28 109.22) (diameter 0) (color 0 0 0 0)
    (uuid a1ebdb1c-3c5e-44eb-988f-2475f34ca7ea)
  )
  (junction (at 63.5 121.92) (diameter 0) (color 0 0 0 0)
    (uuid a30acdf7-b8a0-4a48-9ccb-3f95a35dc654)
  )
  (junction (at 99.06 109.22) (diameter 0) (color 0 0 0 0)
    (uuid a600bf09-8766-4b3e-804d-b6ff9fd84eff)
  )
  (junction (at 99.06 134.62) (diameter 0) (color 0 0 0 0)
    (uuid ad954fed-d9a8-418c-a129-7762eac2de0f)
  )
  (junction (at 52.07 96.52) (diameter 0) (color 0 0 0 0)
    (uuid b06424f4-ac75-4abe-9ced-230b1378dda1)
  )
  (junction (at 52.07 71.12) (diameter 0) (color 0 0 0 0)
    (uuid b1900166-cd6d-424e-8a15-57f2202debab)
  )
  (junction (at 120.65 139.7) (diameter 0) (color 0 0 0 0)
    (uuid b65aa592-b9ba-4c34-b786-b428ada1cecb)
  )
  (junction (at 102.87 127) (diameter 0) (color 0 0 0 0)
    (uuid b9d1343e-fc5a-4852-a1da-628bdd0f52bb)
  )
  (junction (at 124.46 109.22) (diameter 0) (color 0 0 0 0)
    (uuid ba6d209b-ff5f-4b3c-9be5-11105558358e)
  )
  (junction (at 67.31 101.6) (diameter 0) (color 0 0 0 0)
    (uuid bc8c7fb0-4820-46e9-b6c6-9f9cdb4a4485)
  )
  (junction (at 106.68 96.52) (diameter 0) (color 0 0 0 0)
    (uuid c5f7378e-cf4d-4f33-b996-bd7abbde0a1e)
  )
  (junction (at 124.46 134.62) (diameter 0) (color 0 0 0 0)
    (uuid c68f4c4a-1c82-4efb-92d1-56601fd94a6f)
  )
  (junction (at 85.09 127) (diameter 0) (color 0 0 0 0)
    (uuid ca3a4987-ea97-4c9d-8423-0bab60cc5a57)
  )
  (junction (at 102.87 139.7) (diameter 0) (color 0 0 0 0)
    (uuid cbb61cfe-1a53-4296-a7ef-8b30c3bb7d6f)
  )
  (junction (at 102.87 114.3) (diameter 0) (color 0 0 0 0)
    (uuid cc49b52a-32e4-499a-aae8-4b0f120fdd3f)
  )
  (junction (at 67.31 63.5) (diameter 0) (color 0 0 0 0)
    (uuid ce74863c-908c-4506-9d57-7e0f6821c3a8)
  )
  (junction (at 120.65 76.2) (diameter 0) (color 0 0 0 0)
    (uuid d172016a-5d33-48be-bf28-2e4186b61a0d)
  )
  (junction (at 102.87 101.6) (diameter 0) (color 0 0 0 0)
    (uuid d465db74-de2f-4f03-95a6-2656d0e96e63)
  )
  (junction (at 67.31 50.8) (diameter 0) (color 0 0 0 0)
    (uuid d52767ee-ed17-4093-ace4-15868bcc36c1)
  )
  (junction (at 88.9 121.92) (diameter 0) (color 0 0 0 0)
    (uuid d5d1e966-34fb-443a-bdb1-d50ce445e118)
  )
  (junction (at 116.84 109.22) (diameter 0) (color 0 0 0 0)
    (uuid d8121077-b2a5-4995-8c76-8bdaf2006b96)
  )
  (junction (at 106.68 147.32) (diameter 0) (color 0 0 0 0)
    (uuid da9cf23d-f449-4532-b829-7a6ef88e13a6)
  )
  (junction (at 55.88 127) (diameter 0) (color 0 0 0 0)
    (uuid dc96cc2a-49a3-4531-b492-36a2a8cd770b)
  )
  (junction (at 52.07 109.22) (diameter 0) (color 0 0 0 0)
    (uuid dd8efcbd-c6f5-4b86-93d1-ee27edfbf1ea)
  )
  (junction (at 116.84 96.52) (diameter 0) (color 0 0 0 0)
    (uuid ddb7550f-8039-4589-8f31-6d4d0e7409d9)
  )
  (junction (at 85.09 76.2) (diameter 0) (color 0 0 0 0)
    (uuid dfbdebb1-2ef4-4640-b2da-5cb079dd76df)
  )
  (junction (at 99.06 83.82) (diameter 0) (color 0 0 0 0)
    (uuid e100c6f0-ee3b-4904-bc72-341846da1137)
  )
  (junction (at 71.12 109.22) (diameter 0) (color 0 0 0 0)
    (uuid e149b5fc-0c21-406d-93f1-54fec2207eed)
  )
  (junction (at 88.9 58.42) (diameter 0) (color 0 0 0 0)
    (uuid e2c80436-5fbc-4eb1-8f0a-5facbae6d2fc)
  )
  (junction (at 52.07 147.32) (diameter 0) (color 0 0 0 0)
    (uuid e817e301-d4b5-417d-80ca-7b7e8b8a7737)
  )
  (junction (at 63.5 83.82) (diameter 0) (color 0 0 0 0)
    (uuid ecb7fbeb-2181-48a2-be8b-0c5509f0736c)
  )
  (junction (at 71.12 58.42) (diameter 0) (color 0 0 0 0)
    (uuid ecd8e3c1-1208-4034-82f6-99a6c7f0ca89)
  )
  (junction (at 99.06 71.12) (diameter 0) (color 0 0 0 0)
    (uuid f4610061-64cf-4d0e-b394-ed9361df2359)
  )
  (junction (at 63.5 58.42) (diameter 0) (color 0 0 0 0)
    (uuid f660f23a-7aff-4caf-8774-33d34a3a75d9)
  )
  (junction (at 85.09 101.6) (diameter 0) (color 0 0 0 0)
    (uuid fa886d15-0a83-4980-9fec-5ae87418f147)
  )
  (junction (at 120.65 50.8) (diameter 0) (color 0 0 0 0)
    (uuid fc3294ef-c167-4252-aa1c-c5462b1ac7b2)
  )
  (junction (at 102.87 63.5) (diameter 0) (color 0 0 0 0)
    (uuid fd95d64e-22f3-4150-934b-f3056a95e310)
  )
  (junction (at 102.87 50.8) (diameter 0) (color 0 0 0 0)
    (uuid febb0c51-a54b-4c0c-9033-22f118c611c5)
  )
  (junction (at 120.65 114.3) (diameter 0) (color 0 0 0 0)
    (uuid fefa3417-482a-4622-ba6b-6fddb99390aa)
  )

  (wire (pts (xy 154.94 113.03) (xy 162.56 113.03))
    (stroke (width 0) (type default))
    (uuid 0142df90-b8da-4a02-ae35-1660804257f2)
  )
  (wire (pts (xy 157.48 97.79) (xy 157.48 45.72))
    (stroke (width 0) (type default))
    (uuid 02c0df20-b469-4db3-a5af-1c050c7bbfdd)
  )
  (wire (pts (xy 67.31 76.2) (xy 71.12 76.2))
    (stroke (width 0) (type default))
    (uuid 03749636-e1ef-41b5-a948-f5d288a5e1ba)
  )
  (wire (pts (xy 198.12 96.52) (xy 200.66 96.52))
    (stroke (width 0) (type default))
    (uuid 039a02c2-6267-4c1b-ad90-681bb63acd35)
  )
  (wire (pts (xy 48.26 134.62) (xy 52.07 134.62))
    (stroke (width 0) (type default))
    (uuid 065a2452-15e2-4d10-a8c1-9af136c20675)
  )
  (wire (pts (xy 55.88 88.9) (xy 55.88 101.6))
    (stroke (width 0) (type default))
    (uuid 06e5e5fc-0bc6-4b17-a028-c4da82a4e368)
  )
  (wire (pts (xy 162.56 40.64) (xy 67.31 40.64))
    (stroke (width 0) (type default))
    (uuid 071ab2f5-2231-4ff0-b78f-0a428c3b5134)
  )
  (wire (pts (xy 99.06 134.62) (xy 106.68 134.62))
    (stroke (width 0) (type default))
    (uuid 08d286ca-360f-4049-9800-da5485b1d0c8)
  )
  (wire (pts (xy 81.28 96.52) (xy 88.9 96.52))
    (stroke (width 0) (type default))
    (uuid 08e1a283-7eec-48cb-bd6a-ac23aca001fe)
  )
  (wire (pts (xy 102.87 127) (xy 102.87 139.7))
    (stroke (width 0) (type default))
    (uuid 09cfa3bf-46ce-4edb-9d97-5098066d2966)
  )
  (wire (pts (xy 85.09 43.18) (xy 160.02 43.18))
    (stroke (width 0) (type default))
    (uuid 0a10c5af-4a43-4fd8-a60e-dbb765305037)
  )
  (wire (pts (xy 198.12 86.36) (xy 200.66 86.36))
    (stroke (width 0) (type default))
    (uuid 0a9acea3-64b3-4041-abb5-8c14fec98435)
  )
  (wire (pts (xy 63.5 76.2) (xy 67.31 76.2))
    (stroke (width 0) (type default))
    (uuid 0ae7c285-c573-4ab2-84fb-b670d0c5f6b2)
  )
  (wire (pts (xy 133.35 134.62) (xy 133.35 110.49))
    (stroke (width 0) (type default))
    (uuid 0bf7911b-48cc-494e-91ad-26e074e0d98a)
  )
  (wire (pts (xy 55.88 101.6) (xy 55.88 114.3))
    (stroke (width 0) (type default))
    (uuid 0d99488c-7452-4262-9a34-2ee086e337f6)
  )
  (wire (pts (xy 213.36 83.82) (xy 215.9 83.82))
    (stroke (width 0) (type default))
    (uuid 0da5089e-437a-4879-ba77-a36638025c64)
  )
  (wire (pts (xy 99.06 101.6) (xy 102.87 101.6))
    (stroke (width 0) (type default))
    (uuid 0f6e4c59-8787-4fef-84d2-5f5ac041aac6)
  )
  (wire (pts (xy 63.5 58.42) (xy 71.12 58.42))
    (stroke (width 0) (type default))
    (uuid 0fce987b-9ad8-4ab4-9ca5-805a67eeacc1)
  )
  (wire (pts (xy 116.84 96.52) (xy 124.46 96.52))
    (stroke (width 0) (type default))
    (uuid 0fee5789-5d15-43e7-8535-8f0d67428161)
  )
  (wire (pts (xy 52.07 88.9) (xy 55.88 88.9))
    (stroke (width 0) (type default))
    (uuid 11930040-6c12-4ced-bfc9-7cf6af2e3c23)
  )
  (wire (pts (xy 213.36 86.36) (xy 215.9 86.36))
    (stroke (width 0) (type default))
    (uuid 12de1657-3bb0-4ed7-a2b9-7db65332c382)
  )
  (wire (pts (xy 198.12 67.31) (xy 200.66 67.31))
    (stroke (width 0) (type default))
    (uuid 13868bb6-1975-4861-b259-5dd3eff12e39)
  )
  (wire (pts (xy 102.87 114.3) (xy 102.87 127))
    (stroke (width 0) (type default))
    (uuid 14005c7b-52a3-4d1d-a0b1-d2b5a20de85d)
  )
  (wire (pts (xy 67.31 101.6) (xy 71.12 101.6))
    (stroke (width 0) (type default))
    (uuid 140c22df-becb-444f-881f-e7662f079d38)
  )
  (wire (pts (xy 132.08 83.82) (xy 132.08 100.33))
    (stroke (width 0) (type default))
    (uuid 16fa960d-3d3b-41b5-97ea-6cb060ca4d30)
  )
  (wire (pts (xy 124.46 121.92) (xy 132.08 121.92))
    (stroke (width 0) (type default))
    (uuid 17cba15e-7ed9-4c2e-b2d8-eb980a76a95e)
  )
  (wire (pts (xy 52.07 114.3) (xy 55.88 114.3))
    (stroke (width 0) (type default))
    (uuid 182f963b-d703-41a1-8670-1f851cd0fd99)
  )
  (wire (pts (xy 52.07 83.82) (xy 63.5 83.82))
    (stroke (width 0) (type default))
    (uuid 1899ae8d-f179-4963-95a6-62c2f4e40649)
  )
  (wire (pts (xy 52.07 71.12) (xy 63.5 71.12))
    (stroke (width 0) (type default))
    (uuid 19edab82-101b-420f-81c6-2ac7a4230a31)
  )
  (wire (pts (xy 134.62 95.25) (xy 142.24 95.25))
    (stroke (width 0) (type default))
    (uuid 1b14a6e5-2047-4258-bd02-699cc668365f)
  )
  (wire (pts (xy 120.65 76.2) (xy 120.65 88.9))
    (stroke (width 0) (type default))
    (uuid 1b1b4a93-89bb-46eb-96a1-aba7fa1f421c)
  )
  (wire (pts (xy 55.88 38.1) (xy 165.1 38.1))
    (stroke (width 0) (type default))
    (uuid 1c3519cd-a9ef-4696-bf57-eb897e64bf9f)
  )
  (wire (pts (xy 85.09 43.18) (xy 85.09 50.8))
    (stroke (width 0) (type default))
    (uuid 1ce929c3-d3d5-48fa-adcb-2fb9ba4f4499)
  )
  (wire (pts (xy 71.12 96.52) (xy 81.28 96.52))
    (stroke (width 0) (type default))
    (uuid 1d6b74d9-2c4e-44dc-8a57-18ec6d803dff)
  )
  (wire (pts (xy 55.88 76.2) (xy 55.88 88.9))
    (stroke (width 0) (type default))
    (uuid 1ffeb4c9-c288-49dc-8fc2-c000d989c12e)
  )
  (wire (pts (xy 106.68 109.22) (xy 116.84 109.22))
    (stroke (width 0) (type default))
    (uuid 20100001-449a-431c-930e-fd580c970464)
  )
  (wire (pts (xy 213.36 54.61) (xy 215.9 54.61))
    (stroke (width 0) (type default))
    (uuid 219f8b77-058d-4de4-934d-4a72bc83437b)
  )
  (wire (pts (xy 120.65 63.5) (xy 124.46 63.5))
    (stroke (width 0) (type default))
    (uuid 220fa9d9-332f-4931-bd9f-c00a60cb6bdb)
  )
  (wire (pts (xy 120.65 63.5) (xy 120.65 76.2))
    (stroke (width 0) (type default))
    (uuid 22295402-52a8-4910-8779-2cc54b3827f8)
  )
  (wire (pts (xy 63.5 147.32) (xy 71.12 147.32))
    (stroke (width 0) (type default))
    (uuid 239ec75f-0113-43fa-8a96-77b7fc464f0f)
  )
  (wire (pts (xy 88.9 134.62) (xy 99.06 134.62))
    (stroke (width 0) (type default))
    (uuid 23cfded5-7784-4e3f-9570-07ba7d11540d)
  )
  (wire (pts (xy 55.88 114.3) (xy 55.88 127))
    (stroke (width 0) (type default))
    (uuid 24d8bf5d-4a09-45e2-9cf8-c5847c212e8f)
  )
  (wire (pts (xy 213.36 96.52) (xy 215.9 96.52))
    (stroke (width 0) (type default))
    (uuid 28606fd2-7069-469b-aac0-08d01eebe2c5)
  )
  (wire (pts (xy 133.35 97.79) (xy 142.24 97.79))
    (stroke (width 0) (type default))
    (uuid 2bec3160-4ed9-455e-ad0a-26bcc8f94b6c)
  )
  (wire (pts (xy 99.06 63.5) (xy 102.87 63.5))
    (stroke (width 0) (type default))
    (uuid 2c3953e6-2c50-4e80-8d00-71904fa20f5f)
  )
  (wire (pts (xy 213.36 67.31) (xy 215.9 67.31))
    (stroke (width 0) (type default))
    (uuid 2e107bce-4069-40a3-8838-0d9cc1b47cd0)
  )
  (wire (pts (xy 52.07 127) (xy 55.88 127))
    (stroke (width 0) (type default))
    (uuid 2e306a57-d826-4b91-8c53-f785c9de2705)
  )
  (wire (pts (xy 106.68 83.82) (xy 116.84 83.82))
    (stroke (width 0) (type default))
    (uuid 302c7d16-eaea-4495-8375-6e077e2a9f7f)
  )
  (wire (pts (xy 81.28 58.42) (xy 88.9 58.42))
    (stroke (width 0) (type default))
    (uuid 3036209a-6159-43ff-8b25-309a644e157d)
  )
  (wire (pts (xy 67.31 88.9) (xy 67.31 101.6))
    (stroke (width 0) (type default))
    (uuid 30ddb3a4-beda-404f-b99e-0a691800d020)
  )
  (wire (pts (xy 165.1 38.1) (xy 165.1 105.41))
    (stroke (width 0) (type default))
    (uuid 3182d753-e77b-47aa-9151-415f8c774db4)
  )
  (wire (pts (xy 124.46 83.82) (xy 132.08 83.82))
    (stroke (width 0) (type default))
    (uuid 3550e0b3-f43f-4f66-85c1-c852b77477f7)
  )
  (wire (pts (xy 85.09 101.6) (xy 85.09 114.3))
    (stroke (width 0) (type default))
    (uuid 357c2ae9-153d-4d50-be1c-e1cc6c5e20d5)
  )
  (wire (pts (xy 81.28 50.8) (xy 85.09 50.8))
    (stroke (width 0) (type default))
    (uuid 35fb33b8-9983-4949-9184-b0c1c81b86e3)
  )
  (wire (pts (xy 81.28 127) (xy 85.09 127))
    (stroke (width 0) (type default))
    (uuid 387480b7-274d-4d5c-a1bc-c803a494846d)
  )
  (wire (pts (xy 48.26 147.32) (xy 52.07 147.32))
    (stroke (width 0) (type default))
    (uuid 39fdcae9-3355-404f-b768-38b87c450e81)
  )
  (wire (pts (xy 116.84 88.9) (xy 120.65 88.9))
    (stroke (width 0) (type default))
    (uuid 3ce61c2c-6925-477a-bdaf-7f924a0b581b)
  )
  (wire (pts (xy 55.88 50.8) (xy 55.88 63.5))
    (stroke (width 0) (type default))
    (uuid 3d1a96b0-6ab3-4f7a-91f3-a3853e5d8f04)
  )
  (wire (pts (xy 198.12 64.77) (xy 200.66 64.77))
    (stroke (width 0) (type default))
    (uuid 3db689ab-f159-45a2-8c08-7d0897a46e87)
  )
  (wire (pts (xy 81.28 121.92) (xy 88.9 121.92))
    (stroke (width 0) (type default))
    (uuid 3e344d54-b0d3-4c93-91a1-d45609a8d9fa)
  )
  (wire (pts (xy 71.12 109.22) (xy 81.28 109.22))
    (stroke (width 0) (type default))
    (uuid 3e94d068-e462-49d6-8745-ace16e3aad0a)
  )
  (wire (pts (xy 213.36 91.44) (xy 215.9 91.44))
    (stroke (width 0) (type default))
    (uuid 3f886ee6-218e-4876-8491-b9a59fe2fb62)
  )
  (wire (pts (xy 99.06 50.8) (xy 102.87 50.8))
    (stroke (width 0) (type default))
    (uuid 3ffe44fd-f7b0-4aca-9919-1927de7403e0)
  )
  (wire (pts (xy 116.84 147.32) (xy 124.46 147.32))
    (stroke (width 0) (type default))
    (uuid 40542344-b147-4cc0-be16-120ceee6eaae)
  )
  (wire (pts (xy 102.87 127) (xy 106.68 127))
    (stroke (width 0) (type default))
    (uuid 40b174b0-8860-46b6-a487-322fe5d66504)
  )
  (wire (pts (xy 55.88 139.7) (xy 55.88 149.86))
    (stroke (width 0) (type default))
    (uuid 42274d1f-e912-4c87-9aee-ab9d4522f43f)
  )
  (wire (pts (xy 85.09 63.5) (xy 85.09 76.2))
    (stroke (width 0) (type default))
    (uuid 42ef1dbe-b407-4ffb-9efa-abf1126c38c2)
  )
  (wire (pts (xy 85.09 76.2) (xy 88.9 76.2))
    (stroke (width 0) (type default))
    (uuid 4361d097-e266-4c63-b471-d11693130e03)
  )
  (wire (pts (xy 102.87 114.3) (xy 106.68 114.3))
    (stroke (width 0) (type default))
    (uuid 44c2f761-25d2-47ff-9648-2c4af154fdc2)
  )
  (wire (pts (xy 67.31 127) (xy 67.31 139.7))
    (stroke (width 0) (type default))
    (uuid 48e6f1c9-7df5-4b2f-9edc-2354fe0a17b7)
  )
  (wire (pts (xy 116.84 50.8) (xy 120.65 50.8))
    (stroke (width 0) (type default))
    (uuid 49401077-8b1c-454d-82ca-4d0ff0e6fb5e)
  )
  (wire (pts (xy 48.26 121.92) (xy 52.07 121.92))
    (stroke (width 0) (type default))
    (uuid 49aafce8-4d77-467d-8cf4-2eceaab580cd)
  )
  (wire (pts (xy 99.06 76.2) (xy 102.87 76.2))
    (stroke (width 0) (type default))
    (uuid 4e6e7514-36f6-45f2-8c9f-f04a68fb2c14)
  )
  (wire (pts (xy 67.31 63.5) (xy 67.31 76.2))
    (stroke (width 0) (type default))
    (uuid 4e8866ea-b79c-49d9-9c65-47b6b747ed67)
  )
  (wire (pts (xy 85.09 50.8) (xy 88.9 50.8))
    (stroke (width 0) (type default))
    (uuid 509fba7b-3f7d-4db2-9cc9-350995cae0d0)
  )
  (wire (pts (xy 198.12 91.44) (xy 200.66 91.44))
    (stroke (width 0) (type default))
    (uuid 51541709-f3d9-4134-95ae-8274d45b7621)
  )
  (wire (pts (xy 106.68 134.62) (xy 116.84 134.62))
    (stroke (width 0) (type default))
    (uuid 523e6ac4-6f1d-4fa4-9f62-e4e2409e90c5)
  )
  (wire (pts (xy 88.9 71.12) (xy 99.06 71.12))
    (stroke (width 0) (type default))
    (uuid 532486ef-83d5-4ddc-b184-2cd0aa1f892f)
  )
  (wire (pts (xy 52.07 76.2) (xy 55.88 76.2))
    (stroke (width 0) (type default))
    (uuid 5374827e-581b-441d-bc50-5c93000408d4)
  )
  (wire (pts (xy 120.65 127) (xy 120.65 139.7))
    (stroke (width 0) (type default))
    (uuid 53c30ad7-6e39-4641-81c7-6a326de0ec93)
  )
  (wire (pts (xy 71.12 121.92) (xy 81.28 121.92))
    (stroke (width 0) (type default))
    (uuid 53da07c4-3869-425c-9c32-07cd45904ad4)
  )
  (wire (pts (xy 106.68 58.42) (xy 116.84 58.42))
    (stroke (width 0) (type default))
    (uuid 54750be2-50fb-4eff-94d5-2e4ab1c0a563)
  )
  (wire (pts (xy 99.06 127) (xy 102.87 127))
    (stroke (width 0) (type default))
    (uuid 54ff4507-5a03-4059-b1db-f68ee4ee4434)
  )
  (wire (pts (xy 81.28 109.22) (xy 88.9 109.22))
    (stroke (width 0) (type default))
    (uuid 556422d0-ab65-4b12-8d8f-d202246ac346)
  )
  (wire (pts (xy 52.07 134.62) (xy 63.5 134.62))
    (stroke (width 0) (type default))
    (uuid 5571dcc7-7cb0-43d7-af70-7d54f768766c)
  )
  (wire (pts (xy 116.84 139.7) (xy 120.65 139.7))
    (stroke (width 0) (type default))
    (uuid 58beeca7-17e1-4a71-b0f1-8aec66bf123f)
  )
  (wire (pts (xy 55.88 127) (xy 55.88 139.7))
    (stroke (width 0) (type default))
    (uuid 5935125c-0008-4794-9099-d64681e04977)
  )
  (wire (pts (xy 81.28 76.2) (xy 85.09 76.2))
    (stroke (width 0) (type default))
    (uuid 59f29b84-2563-4fe7-8571-b30af0ec6ea9)
  )
  (wire (pts (xy 48.26 83.82) (xy 52.07 83.82))
    (stroke (width 0) (type default))
    (uuid 5aa91690-f024-4615-9255-441025ff8ee3)
  )
  (wire (pts (xy 130.81 102.87) (xy 142.24 102.87))
    (stroke (width 0) (type default))
    (uuid 5ab6b30d-e70a-48ed-8ee0-7daa4fcb0317)
  )
  (wire (pts (xy 102.87 50.8) (xy 106.68 50.8))
    (stroke (width 0) (type default))
    (uuid 5cf5ef14-cde5-4894-9d42-783b3d1637ef)
  )
  (wire (pts (xy 134.62 147.32) (xy 134.62 113.03))
    (stroke (width 0) (type default))
    (uuid 5d7586aa-6ee8-441e-aa14-e3d9d053552c)
  )
  (wire (pts (xy 120.65 88.9) (xy 124.46 88.9))
    (stroke (width 0) (type default))
    (uuid 5dd73585-38fa-460e-811a-80902e87e742)
  )
  (wire (pts (xy 55.88 63.5) (xy 55.88 76.2))
    (stroke (width 0) (type default))
    (uuid 5e3657fc-d081-4e70-a7fc-9bf13af805df)
  )
  (wire (pts (xy 130.81 109.22) (xy 130.81 105.41))
    (stroke (width 0) (type default))
    (uuid 602cd422-690a-4bc5-877e-5b702a975dcc)
  )
  (wire (pts (xy 154.94 48.26) (xy 154.94 95.25))
    (stroke (width 0) (type default))
    (uuid 611e1374-04aa-48bc-ad98-d8cf0e6a0b0c)
  )
  (wire (pts (xy 120.65 88.9) (xy 120.65 101.6))
    (stroke (width 0) (type default))
    (uuid 6142d2e4-6f59-43fe-80d7-2969aa832a87)
  )
  (wire (pts (xy 99.06 147.32) (xy 106.68 147.32))
    (stroke (width 0) (type default))
    (uuid 6202eb9c-c36a-4a53-b58c-359952e12313)
  )
  (wire (pts (xy 85.09 88.9) (xy 85.09 101.6))
    (stroke (width 0) (type default))
    (uuid 637ce425-6161-479d-9fe6-b0231b610f7c)
  )
  (wire (pts (xy 81.28 147.32) (xy 88.9 147.32))
    (stroke (width 0) (type default))
    (uuid 6467102c-6af3-4be6-99f0-65de209eef8b)
  )
  (wire (pts (xy 160.02 100.33) (xy 154.94 100.33))
    (stroke (width 0) (type default))
    (uuid 64d344db-d1f1-4b2b-a88d-28dc938dc92a)
  )
  (wire (pts (xy 67.31 101.6) (xy 67.31 114.3))
    (stroke (width 0) (type default))
    (uuid 66c50b8b-b956-479b-9620-262da41ae7f9)
  )
  (wire (pts (xy 102.87 139.7) (xy 102.87 149.86))
    (stroke (width 0) (type default))
    (uuid 6764723c-5d5a-42ab-b13f-fa7822cae739)
  )
  (wire (pts (xy 85.09 101.6) (xy 88.9 101.6))
    (stroke (width 0) (type default))
    (uuid 68cda301-5c62-45cd-a284-8dc2dfbc8114)
  )
  (wire (pts (xy 213.36 62.23) (xy 215.9 62.23))
    (stroke (width 0) (type default))
    (uuid 68d386ea-6d53-4f7f-aa44-057838c9d47d)
  )
  (wire (pts (xy 198.12 54.61) (xy 200.66 54.61))
    (stroke (width 0) (type default))
    (uuid 68de2ba4-3030-486c-8115-4e5be4247595)
  )
  (wire (pts (xy 213.36 52.07) (xy 215.9 52.07))
    (stroke (width 0) (type default))
    (uuid 691239d9-2ad1-43ab-a7ea-c7a914c61185)
  )
  (wire (pts (xy 63.5 127) (xy 67.31 127))
    (stroke (width 0) (type default))
    (uuid 6a421a5c-34d5-4b24-9b1c-44f4a090f00a)
  )
  (wire (pts (xy 116.84 71.12) (xy 124.46 71.12))
    (stroke (width 0) (type default))
    (uuid 6aa48086-ce5f-443b-a2e9-3a181ffe17bc)
  )
  (wire (pts (xy 133.35 110.49) (xy 142.24 110.49))
    (stroke (width 0) (type default))
    (uuid 6aab4078-d4e0-48cc-9266-04023070d962)
  )
  (wire (pts (xy 81.28 63.5) (xy 85.09 63.5))
    (stroke (width 0) (type default))
    (uuid 6b00a6f5-39aa-4a4c-95b9-eac5022afda9)
  )
  (wire (pts (xy 132.08 100.33) (xy 142.24 100.33))
    (stroke (width 0) (type default))
    (uuid 6df95baa-c951-4b2b-b935-52046993ce30)
  )
  (wire (pts (xy 48.26 58.42) (xy 52.07 58.42))
    (stroke (width 0) (type default))
    (uuid 6ee56c51-882a-4060-842e-9c506f5744fa)
  )
  (wire (pts (xy 213.36 59.69) (xy 215.9 59.69))
    (stroke (width 0) (type default))
    (uuid 703d6c8c-7ceb-42c4-a017-e84c1f5ad033)
  )
  (wire (pts (xy 52.07 101.6) (xy 55.88 101.6))
    (stroke (width 0) (type default))
    (uuid 719cc4eb-4127-4044-8ab5-9b8cdac0333b)
  )
  (wire (pts (xy 88.9 147.32) (xy 99.06 147.32))
    (stroke (width 0) (type default))
    (uuid 7276cdb6-3b4f-46d9-85d4-8cb81d5ed89c)
  )
  (wire (pts (xy 67.31 50.8) (xy 67.31 63.5))
    (stroke (width 0) (type default))
    (uuid 73367c2c-7aaa-4798-8d66-594d9d6a097a)
  )
  (wire (pts (xy 67.31 50.8) (xy 71.12 50.8))
    (stroke (width 0) (type default))
    (uuid 751516ab-a719-4ef8-872d-cc9dc895f7b9)
  )
  (wire (pts (xy 198.12 78.74) (xy 200.66 78.74))
    (stroke (width 0) (type default))
    (uuid 76a8aac0-f72a-45fe-840e-c2cbf0d6f616)
  )
  (wire (pts (xy 85.09 114.3) (xy 88.9 114.3))
    (stroke (width 0) (type default))
    (uuid 778bd0c6-6162-4e22-9302-e2d47f8e7620)
  )
  (wire (pts (xy 88.9 83.82) (xy 99.06 83.82))
    (stroke (width 0) (type default))
    (uuid 7957a28d-0860-41f9-8efd-03e634dbb9ea)
  )
  (wire (pts (xy 67.31 114.3) (xy 71.12 114.3))
    (stroke (width 0) (type default))
    (uuid 7bf72d8d-805c-499e-8f34-9db949411ecc)
  )
  (wire (pts (xy 116.84 134.62) (xy 124.46 134.62))
    (stroke (width 0) (type default))
    (uuid 7dd3f7df-7c7a-47bf-bafc-972237b3a3c6)
  )
  (wire (pts (xy 154.94 110.49) (xy 162.56 110.49))
    (stroke (width 0) (type default))
    (uuid 7e3dbbcc-9d99-4542-807e-918814965469)
  )
  (wire (pts (xy 198.12 52.07) (xy 200.66 52.07))
    (stroke (width 0) (type default))
    (uuid 7ea32f2b-28d2-4116-ad87-b3cac3285b27)
  )
  (wire (pts (xy 198.12 83.82) (xy 200.66 83.82))
    (stroke (width 0) (type default))
    (uuid 7edcfd7c-27d5-410d-b0f5-33a8a666523b)
  )
  (wire (pts (xy 120.65 101.6) (xy 120.65 114.3))
    (stroke (width 0) (type default))
    (uuid 7f07cf0b-b279-4ff5-bf12-3ab4f3baab73)
  )
  (wire (pts (xy 124.46 58.42) (xy 134.62 58.42))
    (stroke (width 0) (type default))
    (uuid 7f476c09-b1d2-4c11-99ec-6ae52e9234d1)
  )
  (wire (pts (xy 198.12 93.98) (xy 200.66 93.98))
    (stroke (width 0) (type default))
    (uuid 7f81936a-fd6b-44a5-99e4-2e6d2c2e71cf)
  )
  (wire (pts (xy 52.07 139.7) (xy 55.88 139.7))
    (stroke (width 0) (type default))
    (uuid 825eab4d-d48b-4124-8fe0-c2476f2eaee9)
  )
  (wire (pts (xy 63.5 88.9) (xy 67.31 88.9))
    (stroke (width 0) (type default))
    (uuid 82608f66-27ea-4a92-925d-3622143acfa7)
  )
  (wire (pts (xy 165.1 105.41) (xy 154.94 105.41))
    (stroke (width 0) (type default))
    (uuid 8555df42-d46f-4ca1-8a87-8cfe075b174f)
  )
  (wire (pts (xy 88.9 96.52) (xy 99.06 96.52))
    (stroke (width 0) (type default))
    (uuid 862dfff0-d781-4156-9579-838104b0744e)
  )
  (wire (pts (xy 120.65 114.3) (xy 124.46 114.3))
    (stroke (width 0) (type default))
    (uuid 8a03d43e-486f-40ea-9957-75821ec18014)
  )
  (wire (pts (xy 130.81 96.52) (xy 130.81 102.87))
    (stroke (width 0) (type default))
    (uuid 8b44f722-7ba8-4971-8687-dd7ce9ec05bd)
  )
  (wire (pts (xy 55.88 38.1) (xy 55.88 50.8))
    (stroke (width 0) (type default))
    (uuid 8baa973c-0eed-4085-ab63-5caee0e837ad)
  )
  (wire (pts (xy 52.07 58.42) (xy 63.5 58.42))
    (stroke (width 0) (type default))
    (uuid 8ccc4ccc-99ce-4065-882f-2f4eea04a713)
  )
  (wire (pts (xy 116.84 76.2) (xy 120.65 76.2))
    (stroke (width 0) (type default))
    (uuid 8dbe8f3a-eb39-4671-8787-86c871cebc9b)
  )
  (wire (pts (xy 63.5 71.12) (xy 71.12 71.12))
    (stroke (width 0) (type default))
    (uuid 8dd9005c-5600-4666-af08-ff39686cfaa3)
  )
  (wire (pts (xy 124.46 109.22) (xy 130.81 109.22))
    (stroke (width 0) (type default))
    (uuid 8fa97ed9-2368-4863-a55a-7d2d6a403717)
  )
  (wire (pts (xy 71.12 71.12) (xy 81.28 71.12))
    (stroke (width 0) (type default))
    (uuid 8fb503a5-79b4-4e68-ae44-dab950ef68b1)
  )
  (wire (pts (xy 133.35 71.12) (xy 133.35 97.79))
    (stroke (width 0) (type default))
    (uuid 90b4628f-b985-4104-922e-9a9fd0db5d25)
  )
  (wire (pts (xy 116.84 109.22) (xy 124.46 109.22))
    (stroke (width 0) (type default))
    (uuid 911404d5-41d2-44f9-a061-ad11f804a46e)
  )
  (wire (pts (xy 52.07 96.52) (xy 63.5 96.52))
    (stroke (width 0) (type default))
    (uuid 9230ff5c-5fd3-4098-899d-5056f354c0d8)
  )
  (wire (pts (xy 160.02 43.18) (xy 160.02 100.33))
    (stroke (width 0) (type default))
    (uuid 933111a2-f546-4bc1-a0e3-94b4eb86fd58)
  )
  (wire (pts (xy 102.87 45.72) (xy 102.87 50.8))
    (stroke (width 0) (type default))
    (uuid 94427b4d-58ad-4445-9aa7-29984ac6dcc0)
  )
  (wire (pts (xy 198.12 81.28) (xy 200.66 81.28))
    (stroke (width 0) (type default))
    (uuid 9470c1f0-1a45-4144-8337-795e6cc7214c)
  )
  (wire (pts (xy 52.07 147.32) (xy 63.5 147.32))
    (stroke (width 0) (type default))
    (uuid 952ec344-6cc0-4d76-a882-3c661b0cf50c)
  )
  (wire (pts (xy 99.06 83.82) (xy 106.68 83.82))
    (stroke (width 0) (type default))
    (uuid 953ee053-2cac-46cb-9562-83d35f1b5b78)
  )
  (wire (pts (xy 85.09 139.7) (xy 85.09 149.86))
    (stroke (width 0) (type default))
    (uuid 96627b47-1b91-4223-9879-e53f18ae2727)
  )
  (wire (pts (xy 71.12 83.82) (xy 81.28 83.82))
    (stroke (width 0) (type default))
    (uuid 9979bd67-b6ef-4d88-9e23-edcafb467ba9)
  )
  (wire (pts (xy 63.5 101.6) (xy 67.31 101.6))
    (stroke (width 0) (type default))
    (uuid 9b0e15cc-abaf-493b-95b6-aee92113603a)
  )
  (wire (pts (xy 63.5 83.82) (xy 71.12 83.82))
    (stroke (width 0) (type default))
    (uuid 9c0fe1ea-824e-4027-926e-a6c2f5b28241)
  )
  (wire (pts (xy 52.07 63.5) (xy 55.88 63.5))
    (stroke (width 0) (type default))
    (uuid 9cb3b06e-f498-4be1-887c-dd0ea0ea8dd5)
  )
  (wire (pts (xy 213.36 81.28) (xy 215.9 81.28))
    (stroke (width 0) (type default))
    (uuid 9cb4c6ef-67ed-4d0a-9cc8-277fd807c3d2)
  )
  (wire (pts (xy 213.36 93.98) (xy 215.9 93.98))
    (stroke (width 0) (type default))
    (uuid 9ccf7250-be7e-427c-b2f6-910a11dbdf1d)
  )
  (wire (pts (xy 67.31 63.5) (xy 71.12 63.5))
    (stroke (width 0) (type default))
    (uuid 9d0949b6-7591-4465-a69e-6b1e06ac1e5b)
  )
  (wire (pts (xy 102.87 76.2) (xy 102.87 88.9))
    (stroke (width 0) (type default))
    (uuid 9d2610f0-bed7-4b1b-b4dc-b14e74479da8)
  )
  (wire (pts (xy 102.87 139.7) (xy 106.68 139.7))
    (stroke (width 0) (type default))
    (uuid a03debc2-085d-4d0c-813e-9e6cac56e4cc)
  )
  (wire (pts (xy 63.5 50.8) (xy 67.31 50.8))
    (stroke (width 0) (type default))
    (uuid a158449d-edb9-49c7-81bb-0d0f26c7ef23)
  )
  (wire (pts (xy 102.87 101.6) (xy 106.68 101.6))
    (stroke (width 0) (type default))
    (uuid a15a5d71-8939-4b6d-b421-ba0ec680491e)
  )
  (wire (pts (xy 67.31 139.7) (xy 71.12 139.7))
    (stroke (width 0) (type default))
    (uuid a1688188-3346-48fd-8df2-986b3ca9b5ee)
  )
  (wire (pts (xy 85.09 63.5) (xy 88.9 63.5))
    (stroke (width 0) (type default))
    (uuid a4b5e264-e350-4365-9681-737d9b2909d4)
  )
  (wire (pts (xy 120.65 50.8) (xy 124.46 50.8))
    (stroke (width 0) (type default))
    (uuid a59ea83c-2d0a-48a8-a7a9-7641adfce3f4)
  )
  (wire (pts (xy 116.84 101.6) (xy 120.65 101.6))
    (stroke (width 0) (type default))
    (uuid a61171f2-5291-442d-a7f1-1f85b33dbe7f)
  )
  (wire (pts (xy 132.08 121.92) (xy 132.08 107.95))
    (stroke (width 0) (type default))
    (uuid a69e4cd5-90c4-4419-9c5d-881f0f37646a)
  )
  (wire (pts (xy 85.09 139.7) (xy 88.9 139.7))
    (stroke (width 0) (type default))
    (uuid a8c0650f-8bac-47b3-baef-ba915264cc1b)
  )
  (wire (pts (xy 102.87 63.5) (xy 102.87 76.2))
    (stroke (width 0) (type default))
    (uuid a9a67c0f-6027-41b9-9199-f1d5965f1f7a)
  )
  (wire (pts (xy 124.46 71.12) (xy 133.35 71.12))
    (stroke (width 0) (type default))
    (uuid aa2b1780-25cf-422b-bfc1-59a7193a6ab9)
  )
  (wire (pts (xy 88.9 109.22) (xy 99.06 109.22))
    (stroke (width 0) (type default))
    (uuid aa63c437-7dc8-44d5-81f7-ecf75df23d23)
  )
  (wire (pts (xy 81.28 88.9) (xy 85.09 88.9))
    (stroke (width 0) (type default))
    (uuid ab702114-edc4-4c96-9086-fb30fa3f5634)
  )
  (wire (pts (xy 99.06 96.52) (xy 106.68 96.52))
    (stroke (width 0) (type default))
    (uuid abd44143-f87b-4e20-a1dd-29e4b7c0eead)
  )
  (wire (pts (xy 99.06 109.22) (xy 106.68 109.22))
    (stroke (width 0) (type default))
    (uuid aced246b-b3e3-4eaf-bc7d-fdb7780ca4fa)
  )
  (wire (pts (xy 81.28 71.12) (xy 88.9 71.12))
    (stroke (width 0) (type default))
    (uuid ae20b905-193d-4770-aef2-71bd57f77e2a)
  )
  (wire (pts (xy 81.28 101.6) (xy 85.09 101.6))
    (stroke (width 0) (type default))
    (uuid ae6392a5-36a2-42a0-91c2-b5d50e83bb7c)
  )
  (wire (pts (xy 102.87 76.2) (xy 106.68 76.2))
    (stroke (width 0) (type default))
    (uuid af2ac6e9-a3bc-4bf0-887d-dc7a93004679)
  )
  (wire (pts (xy 213.36 64.77) (xy 215.9 64.77))
    (stroke (width 0) (type default))
    (uuid af4a9312-0bd0-4866-a231-3cdb11ae2451)
  )
  (wire (pts (xy 99.06 121.92) (xy 106.68 121.92))
    (stroke (width 0) (type default))
    (uuid af92748a-0baf-49d6-a58e-5510c18dd341)
  )
  (wire (pts (xy 99.06 71.12) (xy 106.68 71.12))
    (stroke (width 0) (type default))
    (uuid b0ba7b26-69c9-47f1-9270-99def1adaff0)
  )
  (wire (pts (xy 157.48 45.72) (xy 102.87 45.72))
    (stroke (width 0) (type default))
    (uuid b0ec566b-0f77-4e0a-bef8-4d639f923786)
  )
  (wire (pts (xy 120.65 114.3) (xy 120.65 127))
    (stroke (width 0) (type default))
    (uuid b3a28437-5fe2-4f1c-8b6a-058752c990d9)
  )
  (wire (pts (xy 48.26 71.12) (xy 52.07 71.12))
    (stroke (width 0) (type default))
    (uuid b3a84844-3607-461c-91ba-417cb905c5f3)
  )
  (wire (pts (xy 116.84 127) (xy 120.65 127))
    (stroke (width 0) (type default))
    (uuid b45dc3cf-3a14-4040-8fd0-d9b6d1cc59e3)
  )
  (wire (pts (xy 198.12 59.69) (xy 200.66 59.69))
    (stroke (width 0) (type default))
    (uuid b57e2d14-e7f8-4533-bf8f-cf24c27365c2)
  )
  (wire (pts (xy 198.12 69.85) (xy 200.66 69.85))
    (stroke (width 0) (type default))
    (uuid b6fa1278-df34-4ee5-b6d3-2dabf39cd417)
  )
  (wire (pts (xy 85.09 114.3) (xy 85.09 127))
    (stroke (width 0) (type default))
    (uuid b72d7077-7619-4121-8218-f1db86ccad8c)
  )
  (wire (pts (xy 63.5 109.22) (xy 71.12 109.22))
    (stroke (width 0) (type default))
    (uuid b94f082e-1f80-4505-b147-fa67c20713b5)
  )
  (wire (pts (xy 134.62 113.03) (xy 142.24 113.03))
    (stroke (width 0) (type default))
    (uuid ba892855-f838-40d5-998f-6084d8c41094)
  )
  (wire (pts (xy 71.12 134.62) (xy 81.28 134.62))
    (stroke (width 0) (type default))
    (uuid bb7acc83-7b2e-4c7b-8433-377e199b7720)
  )
  (wire (pts (xy 81.28 83.82) (xy 88.9 83.82))
    (stroke (width 0) (type default))
    (uuid bbda173f-2a6b-47a8-bd1c-7272ea426289)
  )
  (wire (pts (xy 81.28 139.7) (xy 85.09 139.7))
    (stroke (width 0) (type default))
    (uuid bc5ba187-8124-4f06-a33a-a20e41a1e335)
  )
  (wire (pts (xy 67.31 114.3) (xy 67.31 127))
    (stroke (width 0) (type default))
    (uuid bd42773f-8097-4562-95ba-6580a21cae17)
  )
  (wire (pts (xy 134.62 58.42) (xy 134.62 95.25))
    (stroke (width 0) (type default))
    (uuid be2a202f-86f9-4af3-88ba-80ff369fbdec)
  )
  (wire (pts (xy 154.94 102.87) (xy 162.56 102.87))
    (stroke (width 0) (type default))
    (uuid be4253f8-86f6-4921-889b-0431612213b3)
  )
  (wire (pts (xy 85.09 50.8) (xy 85.09 63.5))
    (stroke (width 0) (type default))
    (uuid bee4da3c-c646-4e8b-add3-5ae2d504903d)
  )
  (wire (pts (xy 81.28 134.62) (xy 88.9 134.62))
    (stroke (width 0) (type default))
    (uuid bf9c6af7-ccea-4ea9-9717-63f17ca2d140)
  )
  (wire (pts (xy 120.65 127) (xy 124.46 127))
    (stroke (width 0) (type default))
    (uuid c18b7857-1d6e-4a2c-b10a-ae76c1af9966)
  )
  (wire (pts (xy 120.65 50.8) (xy 120.65 48.26))
    (stroke (width 0) (type default))
    (uuid c1b881d4-6a34-4629-b11d-fcb9570785c2)
  )
  (wire (pts (xy 106.68 71.12) (xy 116.84 71.12))
    (stroke (width 0) (type default))
    (uuid c29a71fc-72b0-4d01-88b9-5e0244f1ae87)
  )
  (wire (pts (xy 102.87 50.8) (xy 102.87 63.5))
    (stroke (width 0) (type default))
    (uuid c43c08f4-df80-49fe-a954-2ff924fc3288)
  )
  (wire (pts (xy 116.84 63.5) (xy 120.65 63.5))
    (stroke (width 0) (type default))
    (uuid c4bc9961-2691-4baf-ad10-da68607f0bbd)
  )
  (wire (pts (xy 67.31 127) (xy 71.12 127))
    (stroke (width 0) (type default))
    (uuid c5302f72-cd85-4e02-9979-0fac849c08b9)
  )
  (wire (pts (xy 120.65 101.6) (xy 124.46 101.6))
    (stroke (width 0) (type default))
    (uuid c5c4e925-834c-45ca-80c8-e6e44aadb8d7)
  )
  (wire (pts (xy 63.5 63.5) (xy 67.31 63.5))
    (stroke (width 0) (type default))
    (uuid c6db80ee-3f33-4201-9d60-aaba3842fcf9)
  )
  (wire (pts (xy 99.06 139.7) (xy 102.87 139.7))
    (stroke (width 0) (type default))
    (uuid c835c7d8-72a8-4ce7-8db7-8cab124c359e)
  )
  (wire (pts (xy 99.06 88.9) (xy 102.87 88.9))
    (stroke (width 0) (type default))
    (uuid c866b850-3d52-4783-a8ed-3b65bac82ec8)
  )
  (wire (pts (xy 213.36 88.9) (xy 215.9 88.9))
    (stroke (width 0) (type default))
    (uuid c88708fd-b91f-4630-a163-575d4289d30d)
  )
  (wire (pts (xy 88.9 58.42) (xy 99.06 58.42))
    (stroke (width 0) (type default))
    (uuid c89e3724-2128-4dd5-bc60-ba33c848ae2d)
  )
  (wire (pts (xy 63.5 114.3) (xy 67.31 114.3))
    (stroke (width 0) (type default))
    (uuid c8c52e3c-f5a9-4e0c-85ea-ce1894f53a38)
  )
  (wire (pts (xy 67.31 40.64) (xy 67.31 50.8))
    (stroke (width 0) (type default))
    (uuid cca2799d-5f0e-4c46-92fe-eae6df311982)
  )
  (wire (pts (xy 106.68 121.92) (xy 116.84 121.92))
    (stroke (width 0) (type default))
    (uuid cd2aa59f-07ae-402a-a7a0-2ff7fe58c9d8)
  )
  (wire (pts (xy 67.31 139.7) (xy 67.31 149.86))
    (stroke (width 0) (type default))
    (uuid cd4d1977-3b14-4d8d-9ad0-de2203cece5e)
  )
  (wire (pts (xy 85.09 127) (xy 85.09 139.7))
    (stroke (width 0) (type default))
    (uuid ce9190bc-2663-4a56-b9bc-0d6b7da7a8a3)
  )
  (wire (pts (xy 88.9 121.92) (xy 99.06 121.92))
    (stroke (width 0) (type default))
    (uuid ced876e8-e1f4-412a-bbea-f2a7bb6e08c3)
  )
  (wire (pts (xy 120.65 48.26) (xy 154.94 48.26))
    (stroke (width 0) (type default))
    (uuid cfbfc243-a0ee-4356-8305-e7671a5cfe1f)
  )
  (wire (pts (xy 124.46 134.62) (xy 133.35 134.62))
    (stroke (width 0) (type default))
    (uuid d030aae5-be97-4a46-a24f-734142d6e388)
  )
  (wire (pts (xy 116.84 121.92) (xy 124.46 121.92))
    (stroke (width 0) (type default))
    (uuid d051de68-ba6a-4e67-af0f-fefe1b033a74)
  )
  (wire (pts (xy 198.12 88.9) (xy 200.66 88.9))
    (stroke (width 0) (type default))
    (uuid d10b73a3-614d-4275-8e98-4a9295aca35a)
  )
  (wire (pts (xy 116.84 83.82) (xy 124.46 83.82))
    (stroke (width 0) (type default))
    (uuid d20ad269-0b9e-4926-a6f5-33aa7d480ad0)
  )
  (wire (pts (xy 99.06 58.42) (xy 106.68 58.42))
    (stroke (width 0) (type default))
    (uuid d22a27b8-7937-4be6-a9fc-591f0740563c)
  )
  (wire (pts (xy 102.87 63.5) (xy 106.68 63.5))
    (stroke (width 0) (type default))
    (uuid d3f841f5-f4e9-46c6-830a-12d5b19478ef)
  )
  (wire (pts (xy 116.84 58.42) (xy 124.46 58.42))
    (stroke (width 0) (type default))
    (uuid d64303ae-449f-4c1d-b04d-c3297145a193)
  )
  (wire (pts (xy 154.94 97.79) (xy 157.48 97.79))
    (stroke (width 0) (type default))
    (uuid d65cbd94-7c4c-424c-b36a-f22efffa18eb)
  )
  (wire (pts (xy 52.07 50.8) (xy 55.88 50.8))
    (stroke (width 0) (type default))
    (uuid d6d08328-4198-4ac9-87bd-fa605a529fa0)
  )
  (wire (pts (xy 71.12 58.42) (xy 81.28 58.42))
    (stroke (width 0) (type default))
    (uuid d73d6609-9419-4512-8f7a-f95cef90dd27)
  )
  (wire (pts (xy 85.09 127) (xy 88.9 127))
    (stroke (width 0) (type default))
    (uuid d7d8a264-4e49-4791-bfae-4df90eb6ca1e)
  )
  (wire (pts (xy 63.5 96.52) (xy 71.12 96.52))
    (stroke (width 0) (type default))
    (uuid d888c0b9-6402-4890-ab61-51cb77f96bf1)
  )
  (wire (pts (xy 48.26 96.52) (xy 52.07 96.52))
    (stroke (width 0) (type default))
    (uuid d99ef1a0-a98f-4ab7-8e83-dbfc3f4e87e1)
  )
  (wire (pts (xy 120.65 76.2) (xy 124.46 76.2))
    (stroke (width 0) (type default))
    (uuid d9e161a6-d407-449e-81e3-48636e6b01ba)
  )
  (wire (pts (xy 52.07 109.22) (xy 63.5 109.22))
    (stroke (width 0) (type default))
    (uuid dab19ada-2180-45f5-be88-5b48b2a7d546)
  )
  (wire (pts (xy 132.08 107.95) (xy 142.24 107.95))
    (stroke (width 0) (type default))
    (uuid db2d362e-1329-42ee-bd5f-3520e09784fc)
  )
  (wire (pts (xy 213.36 78.74) (xy 215.9 78.74))
    (stroke (width 0) (type default))
    (uuid db9ebb0e-914b-4c1f-a3bf-208b8f12a6dd)
  )
  (wire (pts (xy 106.68 96.52) (xy 116.84 96.52))
    (stroke (width 0) (type default))
    (uuid dbdd3ebc-5eb1-4c65-bab6-318b5d9b5829)
  )
  (wire (pts (xy 213.36 69.85) (xy 215.9 69.85))
    (stroke (width 0) (type default))
    (uuid dcc6c431-3db8-4dc1-9373-9a6bb7d3fdde)
  )
  (wire (pts (xy 162.56 102.87) (xy 162.56 40.64))
    (stroke (width 0) (type default))
    (uuid dd158af1-7785-4c8f-81e4-5a403e34ddf6)
  )
  (wire (pts (xy 99.06 114.3) (xy 102.87 114.3))
    (stroke (width 0) (type default))
    (uuid dd6cf18e-58d2-4a03-83a0-2ef71e22d26b)
  )
  (wire (pts (xy 124.46 147.32) (xy 134.62 147.32))
    (stroke (width 0) (type default))
    (uuid dd95f1e0-f1bc-460c-8a55-2f7c35692394)
  )
  (wire (pts (xy 213.36 57.15) (xy 215.9 57.15))
    (stroke (width 0) (type default))
    (uuid de184188-463b-41ad-abc0-ae0676d39d9f)
  )
  (wire (pts (xy 48.26 109.22) (xy 52.07 109.22))
    (stroke (width 0) (type default))
    (uuid e1a889fb-1d8e-4b12-ad67-9f7f8ce4cc78)
  )
  (wire (pts (xy 81.28 114.3) (xy 85.09 114.3))
    (stroke (width 0) (type default))
    (uuid e21fe0fe-3c1b-49d4-baa6-b4dcbcbe56fa)
  )
  (wire (pts (xy 120.65 50.8) (xy 120.65 63.5))
    (stroke (width 0) (type default))
    (uuid e23bed43-cac6-48b7-8390-fd59fcac5d5f)
  )
  (wire (pts (xy 63.5 139.7) (xy 67.31 139.7))
    (stroke (width 0) (type default))
    (uuid e3f45b30-a92e-44ae-a559-df342d8cc880)
  )
  (wire (pts (xy 52.07 121.92) (xy 63.5 121.92))
    (stroke (width 0) (type default))
    (uuid e6056c29-d5d2-4a70-9d49-08adc73ca702)
  )
  (wire (pts (xy 102.87 88.9) (xy 106.68 88.9))
    (stroke (width 0) (type default))
    (uuid e79c2fe7-594d-417e-a800-e758e5c501f4)
  )
  (wire (pts (xy 116.84 114.3) (xy 120.65 114.3))
    (stroke (width 0) (type default))
    (uuid e93d7667-3101-4bdd-ac21-b82d6a28bad0)
  )
  (wire (pts (xy 67.31 88.9) (xy 71.12 88.9))
    (stroke (width 0) (type default))
    (uuid eb06699b-f371-43cc-aaae-ca05f8dc8d42)
  )
  (wire (pts (xy 198.12 62.23) (xy 200.66 62.23))
    (stroke (width 0) (type default))
    (uuid eb964a72-7176-41ab-b712-a00351ddffd1)
  )
  (wire (pts (xy 124.46 96.52) (xy 130.81 96.52))
    (stroke (width 0) (type default))
    (uuid ed9504a2-ddf6-48fd-8d51-da8cef9f19b6)
  )
  (wire (pts (xy 198.12 57.15) (xy 200.66 57.15))
    (stroke (width 0) (type default))
    (uuid eed7404f-3972-42e7-a1a7-42fd6cc7da30)
  )
  (wire (pts (xy 71.12 147.32) (xy 81.28 147.32))
    (stroke (width 0) (type default))
    (uuid efbdf7ad-7b96-4ef0-be52-8eb313297b3b)
  )
  (wire (pts (xy 106.68 147.32) (xy 116.84 147.32))
    (stroke (width 0) (type default))
    (uuid f11dc155-c083-460f-be57-c80c132a285a)
  )
  (wire (pts (xy 85.09 76.2) (xy 85.09 88.9))
    (stroke (width 0) (type default))
    (uuid f20ff195-a69c-40b0-b1db-0c18c8ff7380)
  )
  (wire (pts (xy 102.87 88.9) (xy 102.87 101.6))
    (stroke (width 0) (type default))
    (uuid f4cb2be9-ae04-4acb-8ba7-cbffbc4d6895)
  )
  (wire (pts (xy 120.65 139.7) (xy 124.46 139.7))
    (stroke (width 0) (type default))
    (uuid f61de89e-37c5-45f7-a936-45451722c66e)
  )
  (wire (pts (xy 85.09 88.9) (xy 88.9 88.9))
    (stroke (width 0) (type default))
    (uuid f623293c-6709-42a0-92e1-80a35c64d5ac)
  )
  (wire (pts (xy 102.87 101.6) (xy 102.87 114.3))
    (stroke (width 0) (type default))
    (uuid f7aa8a35-3235-4d16-b0c7-cbfb9b51f944)
  )
  (wire (pts (xy 63.5 134.62) (xy 71.12 134.62))
    (stroke (width 0) (type default))
    (uuid f87288f5-e1d6-4c78-bd26-b08eb7b06a5b)
  )
  (wire (pts (xy 130.81 105.41) (xy 142.24 105.41))
    (stroke (width 0) (type default))
    (uuid f96a45a3-e044-4158-81a1-9cc3b41d09df)
  )
  (wire (pts (xy 63.5 121.92) (xy 71.12 121.92))
    (stroke (width 0) (type default))
    (uuid fb163365-dcff-4c36-9b2a-b7fe505a32b1)
  )
  (wire (pts (xy 67.31 76.2) (xy 67.31 88.9))
    (stroke (width 0) (type default))
    (uuid fb93a3c4-eaeb-488e-93b1-a496a82c0979)
  )
  (wire (pts (xy 120.65 139.7) (xy 120.65 149.86))
    (stroke (width 0) (type default))
    (uuid fba42a8d-f8e9-41ae-b718-932e44777bef)
  )

  (label "Y6" (at 48.26 121.92 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 2d81f694-95b3-4cd0-81b2-efb09a779250)
  )
  (label "Y5" (at 48.26 109.22 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 3d520ec2-7b8e-4685-943d-21e41bedd063)
  )
  (label "X1" (at 67.31 149.86 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 68c1726b-4898-4f6e-81fa-46faa1b2fac7)
  )
  (label "X5" (at 55.88 149.86 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 7c049d0d-4e0f-4c71-bf86-3cfa385e4b00)
  )
  (label "Y3" (at 59.69 83.82 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 7c1ec6a7-34f1-4210-aa02-d57cdb1aab0f)
  )
  (label "Y2" (at 59.69 71.12 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 7f7795cc-7d96-44aa-b627-f06fd3c4ad89)
  )
  (label "X2" (at 85.09 149.86 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 8611fabf-ffff-451a-b14b-13be6b8cbaa2)
  )
  (label "Y1" (at 48.26 58.42 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 8d0cb1ba-dfe5-4ee9-85a7-f4cb45d4664b)
  )
  (label "Y8" (at 59.69 147.32 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid a89be2bb-6be0-4b8d-b512-b9035552cfb9)
  )
  (label "Y7" (at 48.26 134.62 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid b373eaac-0d5f-495c-9b4c-4472c61103fc)
  )
  (label "X4" (at 120.65 149.86 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid c5859fc0-3acc-43ce-a68f-ec81e67b7dd6)
  )
  (label "X3" (at 102.87 149.86 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid cacc62e0-3c1b-4508-b517-7346a3c1b35e)
  )
  (label "Y1" (at 59.69 58.42 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid d8096450-f88f-4aaa-9864-d1481e272d4e)
  )
  (label "Y4" (at 48.26 96.52 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid e0dd4c11-3455-476a-838b-5cfc32800d88)
  )
  (label "Y8" (at 48.26 147.32 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid e6e5ef22-29ca-4628-b4da-0f78c5097f35)
  )
  (label "Y5" (at 59.69 109.22 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid ecc6d891-ce8c-47de-9af2-f64f9d584da7)
  )
  (label "Y7" (at 59.69 134.62 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid f1768b7c-32bb-4ee8-bcc9-61c985c73e03)
  )
  (label "Y6" (at 59.69 121.92 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid f31c4408-2c23-4337-8a62-c60574fad2cc)
  )
  (label "Y4" (at 59.69 96.52 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid f41b6f45-014e-43cb-bfab-9d2148f50f7c)
  )

  (global_label "T15" (shape input) (at 215.9 93.98 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 0049e724-07a7-4c6f-9045-1a4859913051)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 93.98 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T5" (shape input) (at 198.12 62.23 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 01779a3d-8407-4a4e-930e-660e5303d137)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T6" (shape input) (at 198.12 91.44 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 1546334b-8310-4d0d-a423-e5e8294e966a)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 91.44 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T14" (shape input) (at 215.9 91.44 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 1ce88c60-0e33-4ced-b3de-ee9ae6465fa8)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 91.44 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T12" (shape input) (at 215.9 86.36 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 1f648606-a9ca-439d-b05e-71bda896e612)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T1" (shape input) (at 198.12 52.07 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 1fa3b909-3b6b-4358-ab05-a5676222142a)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T2" (shape input) (at 198.12 81.28 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 243b728b-d424-4363-9c60-198ea0fbacdd)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T16" (shape input) (at 215.9 69.85 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 3170b7e6-eec3-4401-bbcf-5b6439137282)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 69.85 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T9" (shape input) (at 215.9 52.07 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 41236117-7226-4ea5-8018-fa5374ce578b)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T2" (shape input) (at 198.12 54.61 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 4194e102-991c-466f-ab10-64eae42c47f1)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T11" (shape input) (at 215.9 57.15 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 47e9e865-fe6e-4cee-bf4b-89c21208d036)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 57.15 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T11" (shape input) (at 215.9 83.82 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 543d0436-a4f5-42bd-bccc-e2e36f30b319)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T10" (shape input) (at 215.9 54.61 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 56bb7cc1-2b5c-48c1-be2a-b3f03588d64c)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T3" (shape input) (at 198.12 83.82 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 7384bd01-4654-47da-8e35-8ee789cca54d)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 83.82 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T4" (shape input) (at 198.12 59.69 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 76c6c014-f132-4cc3-9e06-0bd8b7167716)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 59.69 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T4" (shape input) (at 198.12 86.36 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 78d17127-8b75-4163-96c9-8208ab85db1b)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T13" (shape input) (at 215.9 88.9 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 9cbe0a35-78a3-4de9-8f64-d80d1d76efe3)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T6" (shape input) (at 198.12 64.77 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 9ec14f32-f090-4708-91cf-7b55d64f0e59)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T15" (shape input) (at 215.9 67.31 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 9f6c6086-ebb2-4e87-b292-5139671f1a33)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T16" (shape input) (at 215.9 96.52 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid acc724f4-6386-4098-90ad-8789407b941d)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T8" (shape input) (at 198.12 69.85 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid b183a6b8-b4bc-4c9c-97ff-5974f1fa6b6d)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 69.85 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T9" (shape input) (at 215.9 78.74 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid c208c86d-c224-42ca-a4b0-15fd04b17c16)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T8" (shape input) (at 198.12 96.52 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid c8683e68-dce8-4beb-b7ad-6fa7ed2e3c4e)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T7" (shape input) (at 198.12 93.98 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid c8cfb52a-5f69-46af-a53c-7017ce180c4a)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 93.98 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T5" (shape input) (at 198.12 88.9 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid cc9cd1b0-9ac6-4730-8091-35ca2998c31a)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T13" (shape input) (at 215.9 62.23 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid d092361d-48a2-4cb5-8863-2cf3f70d1dfd)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T10" (shape input) (at 215.9 81.28 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid d6172c62-aaa1-40d7-b439-b1b0d1c7d862)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T1" (shape input) (at 198.12 78.74 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid df70604a-8576-4307-b48d-8623f24eae87)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T14" (shape input) (at 215.9 64.77 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid e16b4274-6b02-454e-b879-cc5ea67fa438)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T3" (shape input) (at 198.12 57.15 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid f298cb44-30d8-44ca-91ac-7ce510a59fc5)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 57.15 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T12" (shape input) (at 215.9 59.69 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid fc4ffc37-c49e-4a58-bec9-7c2dacd2f2c6)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 215.9 59.69 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )
  (global_label "T7" (shape input) (at 198.12 67.31 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid fdd4363c-dce6-4045-bfe1-b6b7b65e859e)
    (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 198.12 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
  )

  (symbol (lib_id "Device:LED") (at 63.5 54.61 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc7b49d)
    (property "Reference" "D1" (at 61.5188 55.9562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 61.5188 53.6448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 63.5 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 63.5 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3b7b99de-d4d1-471e-8138-8c6de1f2d42d))
    (pin "2" (uuid 6d114a63-fe79-42a2-a4c6-9e53398c2c66))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 71.12 54.61 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc7bf02)
    (property "Reference" "D9" (at 68.1482 55.6006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 68.1482 53.2892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 71.12 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 71.12 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 593b3080-5e7b-4f1e-b778-9fa81289c5cf))
    (pin "2" (uuid 16c2d3d1-58a9-41a9-b15b-94d366cdd559))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D9") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 81.28 54.61 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc7d3b1)
    (property "Reference" "D17" (at 79.2988 55.9562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 79.2988 53.6448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 81.28 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 81.28 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7448e60c-9fbb-46d5-a829-6d3014dc2a7f))
    (pin "2" (uuid 2f2d0b8f-1337-4d77-88f7-72b5b6cb3fe9))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D17") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 88.9 54.61 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc7d3b7)
    (property "Reference" "D25" (at 85.9282 55.6006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 85.9282 53.2892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 88.9 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 88.9 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9ce5f078-5686-4966-b8c0-786fb416d88d))
    (pin "2" (uuid 34602f8f-064a-4d6d-9e27-5e9d9f2ea54b))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D25") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 99.06 54.61 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc7e0fe)
    (property "Reference" "D33" (at 97.0788 55.9562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 97.0788 53.6448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 99.06 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 99.06 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 07ad213e-bb10-43d5-b20d-d6bff9678125))
    (pin "2" (uuid d05d1f07-48d1-44ee-94e9-545af33011e1))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D33") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 106.68 54.61 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc7e104)
    (property "Reference" "D41" (at 103.7082 55.6006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 103.7082 53.2892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 106.68 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 106.68 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid bed9cc38-a3db-4516-9f21-13bd3f30588d))
    (pin "2" (uuid 67da4793-813c-4fec-b661-da7d185ef50f))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D41") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 116.84 54.61 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc7f0ed)
    (property "Reference" "D49" (at 114.8588 55.9562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 114.8588 53.6448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 116.84 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 116.84 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ed32c46a-53c5-4d06-baa1-29b86f3e8a95))
    (pin "2" (uuid d36f8cff-e06e-46d3-af2b-3b094d3c2515))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D49") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 124.46 54.61 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc7f0f3)
    (property "Reference" "D57" (at 121.4882 55.6006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 121.4882 53.2892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 124.46 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 124.46 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9a38d758-14df-4170-8da3-84704e6aa7b3))
    (pin "2" (uuid 4711b34e-2457-4fab-82b7-82764ca8d65d))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D57") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 63.5 67.31 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc83688)
    (property "Reference" "D2" (at 61.5188 68.6562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 61.5188 66.3448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 63.5 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 63.5 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4373d22d-eb5d-49bc-b29c-df61168e30b4))
    (pin "2" (uuid 094844db-f861-4893-9ca2-278ffb8533ef))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D2") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 71.12 67.31 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc8368e)
    (property "Reference" "D10" (at 68.1482 68.3006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 68.1482 65.9892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 71.12 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 71.12 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5a5edcf4-d261-4c5f-9d39-dab528d8fbd8))
    (pin "2" (uuid 4715a0b0-26c0-4ddb-883c-4ff29a7a8613))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D10") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 81.28 67.31 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc8369d)
    (property "Reference" "D18" (at 79.2988 68.6562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 79.2988 66.3448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 81.28 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 81.28 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2426125b-95de-4541-bf42-62b23478e211))
    (pin "2" (uuid 87cbdd94-a778-4ad5-991a-00cb8fe1dc3f))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D18") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 88.9 67.31 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc836a3)
    (property "Reference" "D26" (at 85.9282 68.3006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 85.9282 65.9892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 88.9 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 88.9 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 14d284cc-7ef6-4b88-9c03-b8547b3ae6dd))
    (pin "2" (uuid 417fb353-d3f1-44aa-b606-c7c538137c25))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D26") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 99.06 67.31 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc836b2)
    (property "Reference" "D34" (at 97.0788 68.6562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 97.0788 66.3448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 99.06 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 99.06 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9a7ed562-acf4-47b6-8d47-0c023783423a))
    (pin "2" (uuid ae83d190-b038-4d1e-8fba-032f3d314124))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D34") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 106.68 67.31 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc836b8)
    (property "Reference" "D42" (at 103.7082 68.3006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 103.7082 65.9892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 106.68 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 106.68 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7f0d3729-cc46-4a73-a1ea-09453a934dd4))
    (pin "2" (uuid 5b7603af-25eb-4645-a30b-081d94731f8d))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D42") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 116.84 67.31 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc836c7)
    (property "Reference" "D50" (at 114.8588 68.6562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 114.8588 66.3448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 116.84 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 116.84 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 91362a8e-3884-4d73-aa2b-dc5694ba743f))
    (pin "2" (uuid 1229b516-b8be-46f9-951a-52ddfbef5317))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D50") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 124.46 67.31 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc836cd)
    (property "Reference" "D58" (at 121.4882 68.3006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 121.4882 65.9892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 124.46 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 124.46 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 39a017a0-1fb2-4c1c-b446-21df83811c58))
    (pin "2" (uuid 3287f2ef-ef19-4319-a053-a7657973c16d))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D58") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 63.5 80.01 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc85d3f)
    (property "Reference" "D3" (at 61.5188 81.3562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 61.5188 79.0448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 63.5 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 63.5 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e8b79e88-517d-4497-b4af-adfeb6a1f93d))
    (pin "2" (uuid 2623f049-a554-4717-b47c-9cc49088d83e))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D3") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 71.12 80.01 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc85d45)
    (property "Reference" "D11" (at 68.1482 81.0006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 68.1482 78.6892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 71.12 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 71.12 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid be155b45-6722-413b-86b7-304fe3ce55c5))
    (pin "2" (uuid aafde5dc-0f88-46b7-9a8e-336b87e867f0))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D11") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 81.28 80.01 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc85d54)
    (property "Reference" "D19" (at 79.2988 81.3562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 79.2988 79.0448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 81.28 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 81.28 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 31daa1d4-9bdf-45d1-aa74-6d41e49dd419))
    (pin "2" (uuid c9db05fe-af42-4602-90e5-18c7218325c0))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D19") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 88.9 80.01 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc85d5a)
    (property "Reference" "D27" (at 85.9282 81.0006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 85.9282 78.6892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 88.9 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 88.9 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5ddac47d-fe7e-4950-83cd-1ca5b4ff1e16))
    (pin "2" (uuid 743f5961-ec87-4e1a-8a0f-3bd7f4b875d1))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D27") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 99.06 80.01 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc85d69)
    (property "Reference" "D35" (at 97.0788 81.3562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 97.0788 79.0448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 99.06 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 99.06 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b0ad2af7-f7cb-4b59-b014-9e1d083f238e))
    (pin "2" (uuid 344eca84-a58f-466a-9e4e-dbf0c721d2b1))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D35") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 106.68 80.01 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc85d6f)
    (property "Reference" "D43" (at 103.7082 81.0006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 103.7082 78.6892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 106.68 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 106.68 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8875e917-b530-423c-a00d-8c68036ad841))
    (pin "2" (uuid c4556b71-6fa0-4323-b7d9-981d73ff611d))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D43") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 116.84 80.01 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc85d7e)
    (property "Reference" "D51" (at 114.8588 81.3562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 114.8588 79.0448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 116.84 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 116.84 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 93ab9690-462e-4c66-852e-a9ac1c4e7e86))
    (pin "2" (uuid 21bd1ad2-01dd-4af1-9917-64d81f769749))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D51") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 124.46 80.01 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc85d84)
    (property "Reference" "D59" (at 121.4882 81.0006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 121.4882 78.6892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 124.46 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 124.46 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1992e23a-2002-40eb-ae4b-4ddf03e9363c))
    (pin "2" (uuid b5423b47-6349-4c46-a424-0f54464d3f57))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D59") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 63.5 92.71 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc89166)
    (property "Reference" "D4" (at 61.5188 94.0562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 61.5188 91.7448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 63.5 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 63.5 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b4fdc4a5-6ba4-44e2-9644-c9ef305054b1))
    (pin "2" (uuid aba7019a-a4b1-4044-bd8b-20ad9288c9d9))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D4") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 71.12 92.71 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc8916c)
    (property "Reference" "D12" (at 68.1482 93.7006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 68.1482 91.3892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 71.12 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 71.12 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2fa68663-215b-4c10-81aa-32a3f87b592a))
    (pin "2" (uuid a234056a-1b61-4419-93e8-c73ea536aec2))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D12") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 81.28 92.71 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc8917b)
    (property "Reference" "D20" (at 79.2988 94.0562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 79.2988 91.7448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 81.28 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 81.28 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 445ba135-4183-4d6d-8bcb-4e49a422bf7f))
    (pin "2" (uuid f1b09e93-aab9-4e0e-bafa-dd816e750b61))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D20") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 88.9 92.71 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc89181)
    (property "Reference" "D28" (at 85.9282 93.7006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 85.9282 91.3892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 88.9 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 88.9 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 87476919-b4f6-4cb1-9106-f8aa9cc69f40))
    (pin "2" (uuid 0dd5a73b-9324-4574-bbd3-d275dc4ab4ad))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D28") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 99.06 92.71 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc89190)
    (property "Reference" "D36" (at 97.0788 94.0562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 97.0788 91.7448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 99.06 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 99.06 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6f1f2604-311e-44be-bccc-68cf56ddbe87))
    (pin "2" (uuid 7c2a2a0b-9c26-40e9-bb8d-d9f04f264fd6))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D36") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 106.68 92.71 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc89196)
    (property "Reference" "D44" (at 103.7082 93.7006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 103.7082 91.3892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 106.68 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 106.68 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 862238bc-5e83-489f-a477-c6a2a3d3977d))
    (pin "2" (uuid 121cd5a4-88d7-44cb-9da0-510069f82e10))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D44") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 116.84 92.71 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc891a5)
    (property "Reference" "D52" (at 114.8588 94.0562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 114.8588 91.7448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 116.84 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 116.84 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 24957cda-5230-4bd5-a006-72c27006678f))
    (pin "2" (uuid b70b2da8-6a28-4321-a8f8-8d34011370a7))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D52") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 124.46 92.71 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc891ab)
    (property "Reference" "D60" (at 121.4882 93.7006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 121.4882 91.3892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 124.46 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 124.46 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2e7c8461-eb88-4fac-8cfc-f01432e293b5))
    (pin "2" (uuid 5ead64d0-5a33-4de2-8894-f967f16270fd))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D60") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 63.5 105.41 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc8e842)
    (property "Reference" "D5" (at 61.5188 106.7562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 61.5188 104.4448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 63.5 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 63.5 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e12c83c7-3fac-4ba3-93c9-bb1b4af1696b))
    (pin "2" (uuid bdadaaa8-c1de-4e81-a2f1-c90caa4f5ddd))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D5") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 71.12 105.41 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc8e848)
    (property "Reference" "D13" (at 68.1482 106.4006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 68.1482 104.0892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 71.12 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 71.12 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7a42a832-7026-4685-9095-e8733d900056))
    (pin "2" (uuid 31bb38b8-eeea-43a9-a89a-5c9c4eba5a6e))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D13") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 81.28 105.41 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc8e857)
    (property "Reference" "D21" (at 79.2988 106.7562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 79.2988 104.4448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 81.28 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 81.28 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e8f6d3dd-cada-40fe-835e-601ae99387c3))
    (pin "2" (uuid 65ebadee-7e27-4ba0-82f1-b48236109302))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D21") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 88.9 105.41 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc8e85d)
    (property "Reference" "D29" (at 85.9282 106.4006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 85.9282 104.0892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 88.9 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 88.9 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 27bf7c5c-9af3-4347-82bd-0c64e9b8ab46))
    (pin "2" (uuid badb5b42-83bf-4547-ba11-71c50437340a))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D29") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 99.06 105.41 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc8e86c)
    (property "Reference" "D37" (at 97.0788 106.7562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 97.0788 104.4448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 99.06 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 99.06 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 33f55968-1a3c-4fdc-9be0-49cdb3da7b30))
    (pin "2" (uuid 3d157bd8-cb75-4cd1-b826-0905ba99a13f))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D37") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 106.68 105.41 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc8e872)
    (property "Reference" "D45" (at 103.7082 106.4006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 103.7082 104.0892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 106.68 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 106.68 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7b1469bd-699f-49bd-bdb5-a69ce1812cd8))
    (pin "2" (uuid 0a5770ad-a451-4255-a56b-cbe25df1338d))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D45") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 116.84 105.41 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc8e881)
    (property "Reference" "D53" (at 114.8588 106.7562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 114.8588 104.4448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 116.84 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 116.84 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8996376b-a553-4f2e-922e-663b6b87fd03))
    (pin "2" (uuid 206febe9-6b8a-4233-9726-397636f3e1b1))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D53") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 124.46 105.41 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc8e887)
    (property "Reference" "D61" (at 121.4882 106.4006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 121.4882 104.0892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 124.46 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 124.46 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 397c7066-aa75-4ba2-b7a5-6fbca3ff601d))
    (pin "2" (uuid c5a158e0-100d-4be4-ba03-f97c9ec08206))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D61") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 63.5 118.11 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc9432a)
    (property "Reference" "D6" (at 61.5188 119.4562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 61.5188 117.1448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 63.5 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 63.5 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6c59521e-89cf-4ca4-82ca-be950d6ac474))
    (pin "2" (uuid 2d3da469-d0f5-4936-a1b4-a1a18fc7684f))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D6") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 71.12 118.11 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc94330)
    (property "Reference" "D14" (at 68.1482 119.1006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 68.1482 116.7892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 71.12 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 71.12 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 43286f90-69cc-45b8-b971-a4203a092621))
    (pin "2" (uuid 1fc5319b-bd5c-489a-a97f-f28827a564a4))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D14") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 81.28 118.11 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc9433f)
    (property "Reference" "D22" (at 79.2988 119.4562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 79.2988 117.1448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 81.28 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 81.28 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f62fef70-b634-46b6-971c-5f20828cf4b1))
    (pin "2" (uuid 28ef98af-08f0-43d5-8169-8e9908c958ac))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D22") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 88.9 118.11 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc94345)
    (property "Reference" "D30" (at 85.9282 119.1006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 85.9282 116.7892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 88.9 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 88.9 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid eb92727c-6759-4fe5-b95c-d1bf800d6b11))
    (pin "2" (uuid 62a28ace-37a4-45ea-9c68-41b9cbc86c55))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D30") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 99.06 118.11 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc94354)
    (property "Reference" "D38" (at 97.0788 119.4562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 97.0788 117.1448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 99.06 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 99.06 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c8958dbf-258d-4ab1-a2c7-11576213ba0f))
    (pin "2" (uuid b22680af-a15a-40d0-a5ad-29f91182124b))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D38") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 106.68 118.11 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc9435a)
    (property "Reference" "D46" (at 103.7082 119.1006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 103.7082 116.7892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 106.68 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 106.68 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0ae54845-bb81-4885-b39d-1ac0f1819a93))
    (pin "2" (uuid d19670c8-631b-4f3a-9f33-67372dc1940b))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D46") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 116.84 118.11 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc94369)
    (property "Reference" "D54" (at 114.8588 119.4562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 114.8588 117.1448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 116.84 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 116.84 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 188be919-3988-4236-a41d-c34ae71a1142))
    (pin "2" (uuid 0e0e6e18-2df9-444b-8e50-9761bb7b8f96))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D54") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 124.46 118.11 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc9436f)
    (property "Reference" "D62" (at 121.4882 119.1006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 121.4882 116.7892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 124.46 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 124.46 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e6f40f72-1d8c-4cbd-b7dd-c09e97bca137))
    (pin "2" (uuid 61760cf7-651a-4ff1-ba6f-7d08cd1d8c77))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D62") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 63.5 130.81 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc9c8b9)
    (property "Reference" "D7" (at 61.5188 132.1562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 61.5188 129.8448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 63.5 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 63.5 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2583e6ba-4fa3-4a81-a9f2-d7b32d44fa09))
    (pin "2" (uuid 2c29eecb-1a66-44d4-aad1-f18e3f13e1c1))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D7") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 71.12 130.81 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc9c8bf)
    (property "Reference" "D15" (at 68.1482 131.8006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 68.1482 129.4892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 71.12 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 71.12 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid fd224e33-41cf-4a8e-b654-d6bfbd64774e))
    (pin "2" (uuid 54c1aff1-d19a-495b-be6e-78db55cb27f9))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D15") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 81.28 130.81 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc9c8ce)
    (property "Reference" "D23" (at 79.2988 132.1562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 79.2988 129.8448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 81.28 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 81.28 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2da497e2-72cd-4f24-b69d-bde0cccbdc80))
    (pin "2" (uuid 89ea0810-915d-4cdb-b6a5-4cc83edfbe65))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D23") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 88.9 130.81 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc9c8d4)
    (property "Reference" "D31" (at 85.9282 131.8006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 85.9282 129.4892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 88.9 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 88.9 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2f85e508-e765-462f-945f-f33b0e088e75))
    (pin "2" (uuid 86b5bcde-1741-43fa-a442-357cde463d89))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D31") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 99.06 130.81 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc9c8e3)
    (property "Reference" "D39" (at 97.0788 132.1562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 97.0788 129.8448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 99.06 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 99.06 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid db39caee-fb89-4da1-8559-a9cc0b439314))
    (pin "2" (uuid 6b4dadeb-3164-44a5-a07d-c048410e2a7e))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D39") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 106.68 130.81 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc9c8e9)
    (property "Reference" "D47" (at 103.7082 131.8006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 103.7082 129.4892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 106.68 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 106.68 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 910b9a2d-84f8-435e-8edd-d26608ae62e7))
    (pin "2" (uuid cde74799-fafe-4a20-bb7a-36e8a04b1184))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D47") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 116.84 130.81 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc9c8f8)
    (property "Reference" "D55" (at 114.8588 132.1562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 114.8588 129.8448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 116.84 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 116.84 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cea51cbb-5be4-439a-8a14-65dc1dcfab4e))
    (pin "2" (uuid 1a70ac83-fb98-4da9-9d73-9aea8a7694a6))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D55") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 124.46 130.81 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fc9c8fe)
    (property "Reference" "D63" (at 121.4882 131.8006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 121.4882 129.4892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 124.46 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 124.46 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9a5ca26e-a8e5-49ed-9edd-84056aa7bcee))
    (pin "2" (uuid 9274a2ab-7aa8-4133-a83c-900bdb547f02))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D63") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 63.5 143.51 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fca70e3)
    (property "Reference" "D8" (at 61.5188 144.8562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 61.5188 142.5448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 63.5 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 63.5 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 50b9eb53-3e86-4294-a00b-071f1163e731))
    (pin "2" (uuid aec1af56-0d0a-436b-a14c-f9585624ecdf))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D8") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 71.12 143.51 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fca70e9)
    (property "Reference" "D16" (at 68.1482 144.5006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 68.1482 142.1892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 71.12 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 71.12 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 80c99947-6f7d-45dc-867f-b6d9d17bf662))
    (pin "2" (uuid 3dfc2795-4b02-4bad-8667-54b22216146f))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D16") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 81.28 143.51 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fca70f8)
    (property "Reference" "D24" (at 79.2988 144.8562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 79.2988 142.5448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 81.28 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 81.28 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 80c81428-987c-4095-8396-951f58b0bffd))
    (pin "2" (uuid 0f63656a-c59f-444b-a1fd-c93aefc7337d))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D24") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 88.9 143.51 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fca70fe)
    (property "Reference" "D32" (at 85.9282 144.5006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 85.9282 142.1892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 88.9 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 88.9 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f02f78f5-d3eb-494b-956d-d4ef2093f674))
    (pin "2" (uuid 9b95afcd-43b9-4bc6-9f91-95c7c6f719d2))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D32") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 99.06 143.51 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fca710d)
    (property "Reference" "D40" (at 97.0788 144.8562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 97.0788 142.5448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 99.06 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 99.06 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 435e8c7f-ce27-46fd-91f8-c0bea447e9bd))
    (pin "2" (uuid 3d39b468-b77a-4eae-b99a-66f25d762549))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D40") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 106.68 143.51 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fca7113)
    (property "Reference" "D48" (at 103.7082 144.5006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 103.7082 142.1892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 106.68 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 106.68 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 294bfe5a-2757-4329-a0af-2008dab718f5))
    (pin "2" (uuid 0af9106b-f329-40d1-9ceb-8eee1b69a0b9))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D48") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 116.84 143.51 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fca7122)
    (property "Reference" "D56" (at 114.8588 144.8562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "LED" (at 114.8588 142.5448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "cap:led_reverse" (at 116.84 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 116.84 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 08bc1879-bf7b-4514-9630-d7d6c69ac953))
    (pin "2" (uuid 37e7d9be-26fc-4ed9-8987-78f5d5e126ab))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D56") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 124.46 143.51 270) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fca7128)
    (property "Reference" "D64" (at 121.4882 144.5006 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "LED" (at 121.4882 142.1892 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "cap:led_reverse" (at 124.46 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 124.46 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 38988835-4fbd-47be-ad2a-6ac936954e3a))
    (pin "2" (uuid 4b85e79a-a36f-4bc3-a0e9-61130138a226))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D64") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Connector_Generic:Conn_02x08_Top_Bottom") (at 205.74 86.36 0) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fdaabae)
    (property "Reference" "J3" (at 207.01 73.2282 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "Conn_02x08_Top_Bottom" (at 207.01 75.5396 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "cap:touchy7" (at 205.74 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 205.74 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 013691d6-5995-4ef9-82a2-6084094d0bff))
    (pin "10" (uuid 70ce4176-d095-4f9c-b3df-ec0f268c26a1))
    (pin "11" (uuid 21a2d148-957d-40a8-b480-783c11aa4e58))
    (pin "12" (uuid 50c6a4ee-faee-486e-94df-716c77a1d814))
    (pin "13" (uuid 9dff7f30-6f75-4981-9fc8-9a4ce83e2289))
    (pin "14" (uuid 558c0b1a-7178-42ff-9f48-6f24143bde7a))
    (pin "15" (uuid ffc9aa01-afa2-43ff-b266-af79e78e0f57))
    (pin "16" (uuid 17d0b743-1cfc-4c81-b8d2-8d8a373c9add))
    (pin "2" (uuid 8f204001-7377-4742-873a-1c2086ed6525))
    (pin "3" (uuid 58d30d36-ebb6-4b20-b9ae-535524e79b7e))
    (pin "4" (uuid 9e461063-4f7a-4e88-83c2-6c3d8ebafc82))
    (pin "5" (uuid f5f2e58c-92a0-4452-abfd-a13c46bbb5b9))
    (pin "6" (uuid 8a9fa466-1b1b-43e8-8d29-01715de12ac9))
    (pin "7" (uuid 83746ada-ad2a-4e04-89ea-7a95b14db6df))
    (pin "8" (uuid 925ba99c-7aed-4647-91a7-f2b4c197c7be))
    (pin "9" (uuid fabffef9-dd27-49c8-8479-88b52c9e212f))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "J3") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Connector_Generic:Conn_02x08_Odd_Even") (at 149.86 102.87 0) (mirror y) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fdfa592)
    (property "Reference" "J1" (at 148.59 89.7382 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "Conn_02x08_Odd_Even" (at 148.59 92.0496 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x08_P2.54mm_Vertical_SMD" (at 149.86 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 149.86 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 10ff434c-53b9-43f4-ba98-4dbe6cbd1ebe))
    (pin "10" (uuid a237e262-89d7-4fd9-ace5-6084faf3ed7d))
    (pin "11" (uuid f62a157d-8129-472a-a8a0-15ca35376518))
    (pin "12" (uuid 3182414f-f96a-414a-9c58-224384cd60d6))
    (pin "13" (uuid 7470318a-b220-4cc5-8e6b-1305a2ed6b6f))
    (pin "14" (uuid 4cec9beb-b940-4cee-b7f5-aaa775c8306b))
    (pin "15" (uuid e79586cb-5308-481b-8ece-4159aad4d09a))
    (pin "16" (uuid 408cb3b4-4d6e-4119-a307-ff820350401d))
    (pin "2" (uuid 438cfa62-5255-4ee9-bea6-5777f5c6c340))
    (pin "3" (uuid 4054b4c7-6e68-45b8-8fde-312abd0bee3d))
    (pin "4" (uuid c6e34e1c-72c5-4a79-9c71-2d206b5fdfb2))
    (pin "5" (uuid 1a45e384-f857-47fb-a01f-0a6634c62163))
    (pin "6" (uuid 95fdd1b1-1ba1-4252-8552-0929def1462b))
    (pin "7" (uuid d2a91b39-aefe-4e47-af95-9f428c095fbb))
    (pin "8" (uuid 5ca92b68-590b-4482-a212-ce8d77935eb1))
    (pin "9" (uuid c41ab97a-bf4e-4ed8-ac0d-f50b705f42f3))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "J1") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Connector_Generic:Conn_02x08_Odd_Even") (at 208.28 59.69 0) (mirror y) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00005fdfb474)
    (property "Reference" "J2" (at 207.01 46.5582 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "Conn_02x08_Odd_Even" (at 207.01 48.8696 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_2x08_P2.54mm_Vertical_SMD" (at 208.28 59.69 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 208.28 59.69 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f4afb7e2-6130-415f-9606-9e4e4e40931a))
    (pin "10" (uuid f7fe6954-5541-4867-bef7-8059b7acdd1a))
    (pin "11" (uuid 82f997f9-2f2f-45bb-904b-7359652f2e20))
    (pin "12" (uuid 9716d86a-2175-4cd7-8c22-1eeb68ccfe9f))
    (pin "13" (uuid 367122f1-7bec-48c4-9b26-9eba3e6397e7))
    (pin "14" (uuid db8e374a-1563-432e-9d74-0722efc15f84))
    (pin "15" (uuid c4329dc8-884f-499c-8baf-3bf75e89a85a))
    (pin "16" (uuid fcc00a7a-a404-4647-a450-36cc2d21dde2))
    (pin "2" (uuid 48fe32de-9187-4b03-be6e-96b2de2885b1))
    (pin "3" (uuid 99342bcf-ab28-43f7-a99f-86152fba3ea5))
    (pin "4" (uuid f8c26469-c1c3-48dd-af2f-48eab392d7ae))
    (pin "5" (uuid c9c6427e-de6b-4883-b7bd-248d99d9715b))
    (pin "6" (uuid d2d7ce6d-526a-4eb6-a222-b2c289f4b1fd))
    (pin "7" (uuid d501f57a-8dfb-4b02-b960-7f7480d89d75))
    (pin "8" (uuid 34fad1d5-4065-488a-81aa-62cdaa5cc94d))
    (pin "9" (uuid e7182b38-cb77-44c8-a800-3466172f0d4c))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "J2") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Connector_Generic:Conn_01x02") (at 167.64 113.03 0) (mirror x) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-00006566d994)
    (property "Reference" "J4" (at 165.5572 104.775 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Value" "Conn_01x02" (at 165.5572 107.0864 0)
      (effects (font (size 1.27 1.27)))
    )
    (property "Footprint" "cap:touchy7horiz" (at 167.64 113.03 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 167.64 113.03 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3175910d-6dd3-4702-abb9-48050e7391a4))
    (pin "2" (uuid 972a7c99-c9a4-4e98-90ba-36741b55b7dd))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "J4") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 52.07 54.61 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-000065692c66)
    (property "Reference" "D65" (at 50.0888 55.9562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BLUE" (at 50.0888 53.6448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "plinkyblackfront:led_reverse_bigger_oval" (at 52.07 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 52.07 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6188d9ee-7a91-41f2-a9a5-0e33b5b92421))
    (pin "2" (uuid 0cb3c3f6-a6d9-49fd-89c3-dd014960c08c))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D65") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 52.07 67.31 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-000065692c74)
    (property "Reference" "D66" (at 50.0888 68.6562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BLUE" (at 50.0888 66.3448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "plinkyblackfront:led_reverse_bigger_oval" (at 52.07 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 52.07 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid de0cc001-e983-4660-bfd8-d14c3fdc370d))
    (pin "2" (uuid c8c16c87-060d-458f-94fb-fc4a88167e6a))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D66") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 52.07 80.01 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-000065692c82)
    (property "Reference" "D67" (at 50.0888 81.3562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BLUE" (at 50.0888 79.0448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "plinkyblackfront:led_reverse_bigger_oval" (at 52.07 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 52.07 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f50bdb25-f9c5-4654-8dbf-d1a61c4ae69b))
    (pin "2" (uuid 9466979d-5082-4a98-befd-3096cc310563))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D67") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 52.07 92.71 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-000065692c90)
    (property "Reference" "D68" (at 50.0888 94.0562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BLUE" (at 50.0888 91.7448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "plinkyblackfront:led_reverse_bigger_oval" (at 52.07 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 52.07 92.71 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 057780db-e6ca-479d-80d8-faa8a3eb0cef))
    (pin "2" (uuid 79237909-981c-444c-9ef7-a1f53228d1d2))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D68") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 52.07 105.41 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-000065692c9e)
    (property "Reference" "D69" (at 50.0888 106.7562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BLUE" (at 50.0888 104.4448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "plinkyblackfront:led_reverse_bigger_oval" (at 52.07 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 52.07 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4bba3acb-833b-45fe-af07-32943bde4f91))
    (pin "2" (uuid 149f6442-9ab5-40c0-9524-06ad715f2082))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D69") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 52.07 118.11 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-000065692cac)
    (property "Reference" "D70" (at 50.0888 119.4562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BLUE" (at 50.0888 117.1448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "plinkyblackfront:led_reverse_bigger_oval" (at 52.07 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 52.07 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3b4bd681-6ee5-451e-b2ad-df96b76fb074))
    (pin "2" (uuid 654e6930-50f0-40df-a8d9-6bd47dd1a4e8))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D70") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 52.07 130.81 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-000065771979)
    (property "Reference" "D71" (at 50.0888 132.1562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BLUE" (at 50.0888 129.8448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "plinkyblackfront:led_reverse_bigger_oval" (at 52.07 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 52.07 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid aebdd1ad-e855-477e-a66e-fc272b658095))
    (pin "2" (uuid 12d0acbb-3864-451b-a55c-ec3cba05bde7))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D71") (unit 1)
        )
      )
    )
  )

  (symbol (lib_id "Device:LED") (at 52.07 143.51 90) (unit 1)
    (in_bom yes) (on_board yes) (dnp no)
    (uuid 00000000-0000-0000-0000-0000657888d6)
    (property "Reference" "D72" (at 50.0888 144.8562 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BLUE" (at 50.0888 142.5448 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "plinkyblackfront:led_reverse_bigger_oval" (at 52.07 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (at 52.07 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6c4e3363-fa29-48bc-81cc-682ddde0b383))
    (pin "2" (uuid a2b7d4f4-91c1-4026-bdde-f51a5a581d20))
    (instances
      (project "plinkyblackfront"
        (path "/46ebfb8b-bc9d-4910-8c61-7118174680ab"
          (reference "D72") (unit 1)
        )
      )
    )
  )

  (sheet_instances
    (path "/" (page "1"))
  )
)