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
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
|
(kicad_sch (version 20211123) (generator eeschema)
(uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)
(paper "A4")
(title_block
(title "0x10.mod ${VCS_TAG}")
(date "${VCS_DATE}")
(rev "${VCS_REV}")
)
(lib_symbols
(symbol "Connector:Conn_01x02_Female" (pin_names (offset 1.016) hide) (in_bom no) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02_Female" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_Female_1_1"
(arc (start 0 -2.032) (mid -0.508 -2.54) (end 0 -3.048)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -2.54)
(xy -0.508 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy -0.508 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(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:Conn_01x02_Male" (pin_names (offset 1.016) hide) (in_bom no) (on_board yes)
(property "Reference" "J" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02_Male" (id 1) (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_Male_1_1"
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(pin passive line (at 5.08 0 180) (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 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:Conn_01x04_Female" (pin_names (offset 1.016) hide) (in_bom no) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04_Female" (id 1) (at 0 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x04_Female_1_1"
(arc (start 0 -4.572) (mid -0.508 -5.08) (end 0 -5.588)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -2.032) (mid -0.508 -2.54) (end 0 -3.048)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -5.08)
(xy -0.508 -5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -2.54)
(xy -0.508 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy -0.508 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.54)
(xy -0.508 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 3.048) (mid -0.508 2.54) (end 0 2.032)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 2.54 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 0 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 -5.08 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:Conn_01x04_Male" (pin_names (offset 1.016) hide) (in_bom no) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04_Male" (id 1) (at 0 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x04_Male_1_1"
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(pin passive line (at 5.08 2.54 180) (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 0 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (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 -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))))
)
)
)
(symbol "Connector:Conn_01x05_Female" (pin_names (offset 1.016) hide) (in_bom no) (on_board yes)
(property "Reference" "J" (id 0) (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x05_Female" (id 1) (at 0 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x05_Female_1_1"
(arc (start 0 -4.572) (mid -0.508 -5.08) (end 0 -5.588)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -2.032) (mid -0.508 -2.54) (end 0 -3.048)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -5.08)
(xy -0.508 -5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -2.54)
(xy -0.508 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy -0.508 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.54)
(xy -0.508 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 5.08)
(xy -0.508 5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 3.048) (mid -0.508 2.54) (end 0 2.032)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 5.588) (mid -0.508 5.08) (end 0 4.572)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:Conn_01x05_Male" (pin_names (offset 1.016) hide) (in_bom no) (on_board yes)
(property "Reference" "J" (id 0) (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x05_Male" (id 1) (at 0 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x05_Male_1_1"
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 5.08)
(xy 0.8636 5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(pin passive line (at 5.08 5.08 180) (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 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 0 180) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 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 -5.08 180) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:D_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at -1.27 2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Small" (id 1) (at -3.81 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Diode, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Small_0_1"
(polyline
(pts
(xy -0.762 -1.016)
(xy -0.762 1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.762 0)
(xy 0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_Small_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Jumper:SolderJumper_2_Open" (pin_names (offset 0) hide) (in_bom no) (on_board yes)
(property "Reference" "JP" (id 0) (at 0 2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_2_Open" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "solder jumper SPST" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Solder Jumper, 2-pole, open" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Open*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_2_Open_0_1"
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -0.254 1.016) (mid -1.27 0) (end -0.254 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -0.254 1.016)
(xy -0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.016)
(xy 0.254 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0.254 -1.016) (mid 1.27 0) (end 0.254 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SolderJumper_2_Open_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A" (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 "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Jumper:SolderJumper_3_Bridged12" (pin_names (offset 0) hide) (in_bom no) (on_board yes)
(property "Reference" "JP" (id 0) (at -2.54 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SolderJumper_3_Bridged12" (id 1) (at 0 2.794 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Solder Jumper SPDT" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "3-pole Solder Jumper, pins 1+2 closed/bridged" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SolderJumper*Bridged12*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SolderJumper_3_Bridged12_0_1"
(rectangle (start -1.016 0.508) (end -0.508 -0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(arc (start -1.016 1.016) (mid -2.032 0) (end -1.016 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start -1.016 1.016) (mid -2.032 0) (end -1.016 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -0.508 1.016) (end 0.508 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy -2.54 0)
(xy -2.032 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.016)
(xy -1.016 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -1.27)
(xy 0 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 1.016)
(xy 1.016 -1.016)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 2.032 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 1.016 -1.016) (mid 2.032 0) (end 1.016 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 1.016 -1.016) (mid 2.032 0) (end 1.016 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "SolderJumper_3_Bridged12_1_1"
(pin passive line (at -5.08 0 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at 0 -3.81 90) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole_Pad" (id 1) (at 0 4.445 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole with connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*Pad*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_Pad_0_1"
(circle (center 0 1.27) (radius 1.27)
(stroke (width 1.27) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "MountingHole_Pad_1_1"
(pin input line (at 0 -2.54 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "s-ol:PG1350" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "S" (id 0) (at -2.54 2.54 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
)
(property "Value" "PG1350" (id 1) (at -3.81 -3.81 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "library:PG1350" (id 2) (at -3.81 -6.35 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 2.54 3.175 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "ki_keywords" "Keyswitch RGB LED NeoPixel addressable" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Keyswitch and RGB LED with integrated controller" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED*SK6812*PLCC*5.0x5.0mm*P3.2mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PG1350_0_1"
(rectangle (start 5.08 5.08) (end -5.08 -2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "PG1350_1_1"
(polyline
(pts
(xy -2.54 0)
(xy -1.27 1.27)
(xy 1.27 1.27)
(xy 2.54 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -3.81 -1.27)
(xy 3.81 -1.27)
(xy 3.81 0)
(xy -3.81 0)
(xy -3.81 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -7.62 0 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "s-ol:SK6812MINI-E" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "RGB1" (id 0) (at -5.08 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SK6812MINI-E" (id 1) (at 10.795 1.7907 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 1.27 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 2.54 -9.525 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "ki_keywords" "RGB LED NeoPixel Nano addressable" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "RGB LED with integrated controller" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED*SK6805*PLCC*2.4x2.7mm*P1.3mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SK6812MINI-E_0_0"
(text "RGB" (at 2.286 -4.191 0)
(effects (font (size 0.762 0.762)))
)
)
(symbol "SK6812MINI-E_0_1"
(polyline
(pts
(xy 1.27 -3.556)
(xy 1.778 -3.556)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 1.778 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 4.699 -3.556)
(xy 2.667 -3.556)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -2.54)
(xy 1.27 -3.556)
(xy 1.27 -3.048)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -1.524)
(xy 1.27 -2.54)
(xy 1.27 -2.032)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.683 -1.016)
(xy 3.683 -3.556)
(xy 3.683 -4.064)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 4.699 -1.524)
(xy 2.667 -1.524)
(xy 3.683 -3.556)
(xy 4.699 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 5.08 5.08) (end -5.08 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "SK6812MINI-E_1_1"
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "DOUT" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 2.54)
(name "DIN" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 67.31 121.92) (diameter 0) (color 0 0 0 0)
(uuid 0055caa0-d033-4ead-97a1-a03b126ce569)
)
(junction (at 48.26 142.24) (diameter 0) (color 0 0 0 0)
(uuid 033d5848-4bf7-4449-ba4d-8183a7f12c8b)
)
(junction (at 129.54 161.29) (diameter 0) (color 0 0 0 0)
(uuid 0aca5fc3-d0de-486f-a554-9cc84c3c6414)
)
(junction (at 67.31 180.34) (diameter 0) (color 0 0 0 0)
(uuid 0b518260-1793-46f4-a0d6-e892a93f4603)
)
(junction (at 86.36 142.24) (diameter 0) (color 0 0 0 0)
(uuid 0d02e4d9-5be0-4b22-95fb-5c2c308d0af4)
)
(junction (at 86.36 180.34) (diameter 0) (color 0 0 0 0)
(uuid 17af8cec-b024-49ab-be09-7f7bd29b02c7)
)
(junction (at 149.86 161.29) (diameter 0) (color 0 0 0 0)
(uuid 1b5f912f-adc3-4910-adcf-23d309263037)
)
(junction (at 78.74 55.88) (diameter 0) (color 0 0 0 0)
(uuid 1ba011fe-f19e-447c-aab4-6659f22f0eb4)
)
(junction (at 48.26 165.1) (diameter 0) (color 0 0 0 0)
(uuid 1ec6fba6-3206-41a1-b779-68ecf2cb6c9e)
)
(junction (at 134.62 161.29) (diameter 0) (color 0 0 0 0)
(uuid 1f72a614-66a3-4d9c-bb4d-37d10d2857e2)
)
(junction (at 78.74 40.64) (diameter 0) (color 0 0 0 0)
(uuid 28ee7b9f-5166-42d1-9c12-881e7e6bfb94)
)
(junction (at 36.83 50.8) (diameter 0) (color 0 0 0 0)
(uuid 29e6a130-495c-4405-bc16-0e621f20a1ee)
)
(junction (at 55.88 66.04) (diameter 0) (color 0 0 0 0)
(uuid 2cc7daa3-a292-4c60-be77-0138b175b6b0)
)
(junction (at 40.64 86.36) (diameter 0) (color 0 0 0 0)
(uuid 30020cdb-01cd-4457-a2be-0028810ebd7f)
)
(junction (at 93.98 35.56) (diameter 0) (color 0 0 0 0)
(uuid 338f720e-c002-481d-a976-8ccc1d54b9cc)
)
(junction (at 36.83 66.04) (diameter 0) (color 0 0 0 0)
(uuid 34563c3a-d0d8-4c54-a8e3-af8c620fe46f)
)
(junction (at 134.62 142.24) (diameter 0) (color 0 0 0 0)
(uuid 38bdf87f-7983-44a8-a347-f9f6b8946eb7)
)
(junction (at 48.26 147.32) (diameter 0) (color 0 0 0 0)
(uuid 3a474d98-2541-4666-9adc-8fece59a5330)
)
(junction (at 48.26 180.34) (diameter 0) (color 0 0 0 0)
(uuid 3dc242d9-de2b-45ab-989f-80a739202167)
)
(junction (at 93.98 66.04) (diameter 0) (color 0 0 0 0)
(uuid 3e196e70-cf46-4566-b3ee-e36d76e3f76c)
)
(junction (at 149.86 151.765) (diameter 0) (color 0 0 0 0)
(uuid 41fd6a2f-9241-41e0-abbc-29cef16a5af2)
)
(junction (at 149.86 142.24) (diameter 0) (color 0 0 0 0)
(uuid 52777a8d-94be-4aef-946e-51b2b8e184dd)
)
(junction (at 144.78 170.815) (diameter 0) (color 0 0 0 0)
(uuid 5467dd5b-9d16-478d-972e-e981c4c90abe)
)
(junction (at 67.31 127) (diameter 0) (color 0 0 0 0)
(uuid 5b5a9813-e636-49c3-a526-6efa4b1ca0bf)
)
(junction (at 59.69 55.88) (diameter 0) (color 0 0 0 0)
(uuid 6055e249-45a3-4ccc-bed9-76bd94f68482)
)
(junction (at 67.31 162.56) (diameter 0) (color 0 0 0 0)
(uuid 6275d15e-34c8-4217-84c5-4b18c03c6fbd)
)
(junction (at 67.31 106.68) (diameter 0) (color 0 0 0 0)
(uuid 6615ef86-fe4e-49a7-a545-8cc46937146b)
)
(junction (at 67.31 147.32) (diameter 0) (color 0 0 0 0)
(uuid 6a9e1afc-56ba-4859-b642-84caf4b8d598)
)
(junction (at 40.64 40.64) (diameter 0) (color 0 0 0 0)
(uuid 758206f0-a5fb-40d7-a87f-e82f43722d6e)
)
(junction (at 29.21 106.68) (diameter 0) (color 0 0 0 0)
(uuid 7c327855-6afc-45ca-ad79-04a3ce6b7954)
)
(junction (at 86.36 162.56) (diameter 0) (color 0 0 0 0)
(uuid 841c12ca-b57e-4c80-a64b-fd7f349dcf83)
)
(junction (at 128.27 35.56) (diameter 0) (color 0 0 0 0)
(uuid 852c5adc-902d-4761-898a-2e7147516436)
)
(junction (at 78.74 71.12) (diameter 0) (color 0 0 0 0)
(uuid 89c84ecc-07f6-4daa-93a2-bfe863ed676e)
)
(junction (at 55.88 50.8) (diameter 0) (color 0 0 0 0)
(uuid 8ae3eab1-116b-466e-8b27-688bbd7564ec)
)
(junction (at 29.21 165.1) (diameter 0) (color 0 0 0 0)
(uuid 8eae6cf8-484d-47b5-a992-77dea0a44eb6)
)
(junction (at 129.54 71.12) (diameter 0) (color 0 0 0 0)
(uuid 95f497d5-b5ca-4c89-af6d-162da4cfe728)
)
(junction (at 134.62 151.765) (diameter 0) (color 0 0 0 0)
(uuid 984cb129-03e3-4978-942b-57ca0a84ce0f)
)
(junction (at 59.69 40.64) (diameter 0) (color 0 0 0 0)
(uuid 999d02e4-5d07-45c7-869f-99155963e222)
)
(junction (at 29.21 147.32) (diameter 0) (color 0 0 0 0)
(uuid aa30f88d-30e4-44e5-a203-8cca1b5523c0)
)
(junction (at 129.54 151.765) (diameter 0) (color 0 0 0 0)
(uuid aaffbfdb-8a96-4a28-9465-4c9a6b3b8a88)
)
(junction (at 86.36 121.92) (diameter 0) (color 0 0 0 0)
(uuid ad11c50c-9253-4883-a0cd-60197d979d9a)
)
(junction (at 29.21 127) (diameter 0) (color 0 0 0 0)
(uuid afcf2471-244a-49fe-aabb-0231811a2bb3)
)
(junction (at 78.74 86.36) (diameter 0) (color 0 0 0 0)
(uuid bd5256a0-4297-4e78-8693-cafbc2ab1641)
)
(junction (at 59.69 86.36) (diameter 0) (color 0 0 0 0)
(uuid bd8282e6-051f-4cd8-8de0-ce31ca586596)
)
(junction (at 74.93 35.56) (diameter 0) (color 0 0 0 0)
(uuid c062e533-698a-42c3-b486-073752a06a19)
)
(junction (at 129.54 170.815) (diameter 0) (color 0 0 0 0)
(uuid c3a3dabb-3ccb-4f24-8134-75db70772645)
)
(junction (at 144.78 151.765) (diameter 0) (color 0 0 0 0)
(uuid c6b69ef7-03ac-4216-aab1-a3c2cc3e1e70)
)
(junction (at 93.98 50.8) (diameter 0) (color 0 0 0 0)
(uuid c8f6e199-89b2-497e-a4e7-59f18a5d34a9)
)
(junction (at 40.64 55.88) (diameter 0) (color 0 0 0 0)
(uuid ce952333-6018-4bed-abae-9e64fd7a7895)
)
(junction (at 74.93 50.8) (diameter 0) (color 0 0 0 0)
(uuid cfc67d58-4f68-4a33-9d0d-1f4ef187122c)
)
(junction (at 59.69 71.12) (diameter 0) (color 0 0 0 0)
(uuid d285ae75-36fd-4d17-9325-56eefe136ed1)
)
(junction (at 67.31 142.24) (diameter 0) (color 0 0 0 0)
(uuid df94f76c-603b-457e-9b56-41a30d439765)
)
(junction (at 48.26 162.56) (diameter 0) (color 0 0 0 0)
(uuid e09862b8-4e90-4cb0-9cbd-4140a363f35f)
)
(junction (at 48.26 106.68) (diameter 0) (color 0 0 0 0)
(uuid e319dd52-c0ab-4d83-a483-db75999fea53)
)
(junction (at 48.26 121.92) (diameter 0) (color 0 0 0 0)
(uuid e44d256d-1b87-47c1-a41f-04d0cb98dc7d)
)
(junction (at 55.88 35.56) (diameter 0) (color 0 0 0 0)
(uuid e61e31fa-697e-42ad-a64f-0558738b8956)
)
(junction (at 36.83 35.56) (diameter 0) (color 0 0 0 0)
(uuid ef14a061-00e6-49b2-a44a-aa2ce7967b8c)
)
(junction (at 74.93 66.04) (diameter 0) (color 0 0 0 0)
(uuid ef9d3252-19eb-4d6f-beb2-533d9002166a)
)
(junction (at 48.26 127) (diameter 0) (color 0 0 0 0)
(uuid f4d03ed7-3fcd-4862-a3fa-7d29df9ef57a)
)
(junction (at 144.78 161.29) (diameter 0) (color 0 0 0 0)
(uuid f5b84f5f-8e4e-43b8-879d-0a645f955b67)
)
(junction (at 40.64 71.12) (diameter 0) (color 0 0 0 0)
(uuid f7ad0dc3-ab58-4fc3-b2f1-642e149924d5)
)
(junction (at 67.31 165.1) (diameter 0) (color 0 0 0 0)
(uuid fd2ed7da-835b-4f7d-ba10-bf79bc64ad75)
)
(no_connect (at 182.88 137.16) (uuid 64d5f06a-352a-4892-b1e7-bb35c4506dff))
(no_connect (at 182.88 147.32) (uuid 64d5f06a-352a-4892-b1e7-bb35c4506e00))
(no_connect (at 198.12 137.16) (uuid 64d5f06a-352a-4892-b1e7-bb35c4506e01))
(no_connect (at 198.12 147.32) (uuid 64d5f06a-352a-4892-b1e7-bb35c4506e02))
(wire (pts (xy 218.44 101.6) (xy 229.87 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0019dc1f-6fb8-426b-85a9-c5cb9deb5cf4)
)
(wire (pts (xy 203.2 91.44) (xy 191.77 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 012c047e-2c56-49d7-ac17-b3fb2dce587d)
)
(wire (pts (xy 67.31 121.92) (xy 86.36 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 019f858e-71cc-4d6a-83e6-e3b480d4b505)
)
(wire (pts (xy 24.13 147.32) (xy 29.21 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04a02c0c-8e6d-41eb-b136-a6bc0c74b7b3)
)
(wire (pts (xy 55.88 22.86) (xy 55.88 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04b95a57-c19c-47bb-bc10-4674e896bbc3)
)
(wire (pts (xy 40.64 71.12) (xy 59.69 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 055c11ae-b88d-427b-834b-46128a058704)
)
(wire (pts (xy 175.26 50.8) (xy 175.26 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09577789-de0c-4bbc-853c-501f6559a6d5)
)
(wire (pts (xy 129.54 71.12) (xy 129.54 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09aa370e-70d1-454c-a6ae-03e9569198f7)
)
(wire (pts (xy 233.68 73.66) (xy 233.68 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09dd0e08-d8d6-49bd-891a-d468b98b4115)
)
(wire (pts (xy 203.2 55.88) (xy 205.74 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c381197-16bb-47fd-8e02-4c638434e4fb)
)
(wire (pts (xy 238.76 66.04) (xy 238.76 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c8c4d37-4934-4279-8f71-ae5cf4a39da7)
)
(wire (pts (xy 152.4 91.44) (xy 140.97 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d04b386-d4fa-44a5-a94f-12c789c7d2b0)
)
(wire (pts (xy 21.59 40.64) (xy 40.64 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0dfcddb8-8102-43b8-8e03-ab9dd6a38f86)
)
(wire (pts (xy 29.21 127) (xy 48.26 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 114933de-a3f9-4e78-8005-73d3060d3f81)
)
(wire (pts (xy 67.31 147.32) (xy 86.36 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11ce7e43-7df4-4ff7-877a-a3eb04566c52)
)
(wire (pts (xy 187.96 58.42) (xy 190.5 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 125fa0f9-b674-4dba-aca2-840d626d69ee)
)
(wire (pts (xy 116.84 63.5) (xy 129.54 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12d7dfa9-b97a-4c47-8fce-851092de98ef)
)
(wire (pts (xy 74.93 134.62) (xy 78.74 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13fbcf75-29fc-41df-a589-7d366ebdc9bb)
)
(wire (pts (xy 128.27 33.02) (xy 139.7 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a303e65-fe8c-4ef6-b370-cd21f4c7d82b)
)
(wire (pts (xy 156.21 96.52) (xy 165.1 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a3a87db-0d15-45ba-9ae3-369555887d74)
)
(wire (pts (xy 119.38 71.12) (xy 129.54 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1bfe171a-98d9-46db-9492-855c2e95383e)
)
(wire (pts (xy 236.22 55.88) (xy 236.22 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ca71f92-dd57-4dd3-ba3f-4b871e6d4e58)
)
(wire (pts (xy 220.98 33.02) (xy 220.98 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e236586-c66f-412e-91b3-7895b50e00bf)
)
(wire (pts (xy 93.98 35.56) (xy 93.98 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 218ef8e8-88f3-4ef1-8002-b495a72b44e6)
)
(wire (pts (xy 29.21 162.56) (xy 48.26 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22772aae-d10e-4512-be35-de5997b304a0)
)
(wire (pts (xy 36.83 50.8) (xy 36.83 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23b088a6-39c7-4192-af0c-2881074bbe87)
)
(wire (pts (xy 261.62 58.42) (xy 254 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25293a3d-2dbe-4d42-a5bd-186bcd383084)
)
(wire (pts (xy 149.86 135.89) (xy 149.86 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26f0f8e7-ad58-4de6-a86c-ff38cb6d9bd0)
)
(wire (pts (xy 116.84 57.15) (xy 116.84 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2885e2ec-5ffd-4756-91ec-37fc521f680f)
)
(wire (pts (xy 223.52 33.02) (xy 223.52 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2938dc94-97db-4eae-b843-b7efb7068dcf)
)
(wire (pts (xy 165.1 33.02) (xy 165.1 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d18c66b-3bd0-4c40-8f6b-b2ee6bdc8f15)
)
(wire (pts (xy 266.7 43.18) (xy 254 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2dbbd40d-b446-4847-b3b9-ffa242df8491)
)
(wire (pts (xy 129.54 151.765) (xy 129.54 161.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e3e5699-f94d-4431-9a07-e48c21efb9d3)
)
(wire (pts (xy 134.62 151.765) (xy 134.62 161.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e82cd41-cce5-4a32-af29-ca5b2fad93ea)
)
(wire (pts (xy 203.2 53.34) (xy 203.2 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 318bd9a9-e34f-4481-a87c-99cb36e91a78)
)
(wire (pts (xy 144.78 161.29) (xy 144.78 170.815))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31d0e2fb-1135-4bf4-8b19-87a9ac03c266)
)
(wire (pts (xy 181.61 96.52) (xy 189.23 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3267cff1-040e-42ec-90da-01b2e4304a3e)
)
(wire (pts (xy 254 142.24) (xy 254 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33feefb8-8a50-4858-bed7-0ade94be87f5)
)
(wire (pts (xy 238.76 58.42) (xy 238.76 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34304809-49ab-4e62-ad44-330352f0f06a)
)
(wire (pts (xy 40.64 55.88) (xy 59.69 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34496fe3-7e75-4d1b-82ff-297cbb5182b2)
)
(wire (pts (xy 55.88 172.72) (xy 59.69 172.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3466c742-68b5-4d5d-9e6a-1534fab8e063)
)
(wire (pts (xy 166.37 101.6) (xy 177.8 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36339333-9be5-438f-9b78-d9b9f75808de)
)
(wire (pts (xy 24.13 165.1) (xy 29.21 165.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3657c352-3003-4a31-bbfe-da1abe904516)
)
(wire (pts (xy 223.52 50.8) (xy 223.52 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3770cc27-a14d-42c1-9715-6f74c4529dd1)
)
(wire (pts (xy 236.22 73.66) (xy 236.22 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3aee4f5f-52be-45ea-b489-9526621babe9)
)
(wire (pts (xy 48.26 165.1) (xy 67.31 165.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b4355c9-6be6-4613-bfaf-e7ce6d83e906)
)
(wire (pts (xy 21.59 71.12) (xy 40.64 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3bd9fda6-f19d-4bb2-833e-26e925bdb30c)
)
(wire (pts (xy 149.86 142.24) (xy 149.86 151.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c8f2602-ba55-4072-9cb9-e29f09a7375b)
)
(wire (pts (xy 129.54 170.815) (xy 129.54 173.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f4ff587-2a68-48cb-90b5-1ba1c4b7654b)
)
(wire (pts (xy 59.69 71.12) (xy 78.74 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f8c7ce8-5955-4517-9e55-fd8f825c516e)
)
(wire (pts (xy 48.26 127) (xy 67.31 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40459166-7e46-4e6a-aea7-c9c24a75a933)
)
(wire (pts (xy 59.69 40.64) (xy 78.74 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40797728-a63b-4878-8146-06ba1b831580)
)
(wire (pts (xy 121.92 48.26) (xy 129.54 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 408dfadb-9dd4-4e53-b3e2-cec2556f32be)
)
(wire (pts (xy 36.83 154.94) (xy 40.64 154.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41c8ca29-f7a5-439b-a346-1bca541d7b25)
)
(polyline (pts (xy 248.92 27.94) (xy 134.62 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41fb8272-d19a-4e82-b99f-c067fa29de33)
)
(wire (pts (xy 193.04 50.8) (xy 193.04 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44e7a98d-5f3c-49ed-8b15-c8ca74c69028)
)
(wire (pts (xy 195.58 53.34) (xy 203.2 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45fe04a3-76a2-419d-a82c-1a73cf7210fe)
)
(wire (pts (xy 48.26 142.24) (xy 67.31 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4698e87a-8f0e-4ab6-8614-8d3ef26d43a2)
)
(wire (pts (xy 55.88 114.3) (xy 59.69 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46ddc515-3bd1-4360-9b31-c9606a39a07c)
)
(wire (pts (xy 233.68 55.88) (xy 236.22 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4747b8a1-5c0d-485f-a16a-50b24be87c61)
)
(wire (pts (xy 172.72 33.02) (xy 172.72 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49462f9a-52ea-4370-b7b2-d2e7ed98a8fe)
)
(wire (pts (xy 261.62 50.8) (xy 254 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4bdb38f0-c9c9-4c82-b48b-c026a679e1a3)
)
(wire (pts (xy 36.83 22.86) (xy 36.83 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e0dba7d-9068-4cbd-bf73-616f4ae70db9)
)
(wire (pts (xy 36.83 35.56) (xy 36.83 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e87e6af-e2fd-4687-b095-9252195f604d)
)
(wire (pts (xy 233.68 53.34) (xy 233.68 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4fa8f8bc-f4b3-48c1-88b1-16413258604c)
)
(wire (pts (xy 36.83 66.04) (xy 36.83 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 504b3821-9799-4114-8e62-c637643695f9)
)
(wire (pts (xy 149.86 151.765) (xy 149.86 161.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 51c97409-bb80-4de7-b01c-e5a629a17a5b)
)
(polyline (pts (xy 248.92 27.94) (xy 248.92 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 52208951-353b-45e9-b125-080750a59a4a)
)
(wire (pts (xy 205.74 73.66) (xy 205.74 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 530fad06-d91b-4305-be24-6601699cf936)
)
(wire (pts (xy 67.31 162.56) (xy 86.36 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53111fcf-7b97-4e63-9b2c-3ae38d6417e2)
)
(wire (pts (xy 119.38 35.56) (xy 128.27 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54ca13f3-a04b-4b08-b4e3-49aede80d987)
)
(wire (pts (xy 93.98 50.8) (xy 93.98 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55abc356-8f4d-429a-8200-b049d68e4700)
)
(wire (pts (xy 233.68 96.52) (xy 241.3 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 597b5c8f-4ea3-4920-a163-9918b687db26)
)
(wire (pts (xy 180.34 55.88) (xy 187.96 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a19759e-1796-4f6d-a6b6-6dd320b7c5d8)
)
(wire (pts (xy 177.8 50.8) (xy 175.26 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c5706ed-b922-4d85-a8e9-c628ba054ac8)
)
(wire (pts (xy 208.28 58.42) (xy 208.28 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d5af555-888a-489f-8bef-f43bee1e78f3)
)
(wire (pts (xy 134.62 161.29) (xy 134.62 170.815))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5eabb861-ee2a-42aa-96c5-fe9266a3e35d)
)
(wire (pts (xy 74.93 35.56) (xy 74.93 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5fc23699-5c95-4fa5-a682-ac556e126d6c)
)
(wire (pts (xy 74.93 66.04) (xy 74.93 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 62deb7bf-2e92-4623-842a-d12cc6b3c1cd)
)
(wire (pts (xy 144.78 33.02) (xy 144.78 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 631c1919-897e-41c7-9678-4341d204cd53)
)
(wire (pts (xy 86.36 121.92) (xy 92.71 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6542d858-9bb3-4d4d-9256-55234f7f0acd)
)
(wire (pts (xy 144.78 142.24) (xy 144.78 151.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6588ba6b-49ce-499e-baa8-e4b7aa703683)
)
(wire (pts (xy 40.64 86.36) (xy 59.69 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 674bedac-238a-4aea-aca8-4fbc8deebc24)
)
(wire (pts (xy 129.54 73.66) (xy 139.7 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68f7013f-070e-47c6-b5c8-a98bafabbcf4)
)
(wire (pts (xy 78.74 40.64) (xy 101.6 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b2a2b77-c7b8-49d7-88fe-e96d1292cc74)
)
(wire (pts (xy 74.93 154.94) (xy 78.74 154.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6bd29a08-3765-4055-b4ce-6ee329a8c528)
)
(wire (pts (xy 266.7 35.56) (xy 254 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f6d94a2-ff06-468f-93cb-7d1121493be0)
)
(wire (pts (xy 157.48 55.88) (xy 157.48 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7196291f-da87-41cb-81c5-a2d7546e6afa)
)
(wire (pts (xy 93.98 172.72) (xy 102.87 172.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72cde717-926f-4efe-987f-af53ed43209f)
)
(wire (pts (xy 78.74 71.12) (xy 101.6 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7416833f-544f-4373-a127-c10599ea0566)
)
(wire (pts (xy 67.31 106.68) (xy 86.36 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 760cd44b-a5b1-4f0d-835b-ee96c96f1df4)
)
(wire (pts (xy 86.36 142.24) (xy 92.71 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7979fe4f-4eb6-48b2-a6c1-4b0390edb30d)
)
(wire (pts (xy 36.83 134.62) (xy 40.64 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7aa30995-010d-44fe-a977-4d0ad5d6b7a2)
)
(wire (pts (xy 226.06 53.34) (xy 233.68 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7bd3dc89-9459-46a0-ae29-87714ddb6eb1)
)
(wire (pts (xy 13.97 154.94) (xy 21.59 154.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ccf98c5-bbda-4089-98a6-75ed6f8fd803)
)
(wire (pts (xy 193.04 33.02) (xy 193.04 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7cd91055-f09f-4920-a1ba-228a86fb90fb)
)
(wire (pts (xy 93.98 154.94) (xy 102.87 154.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e13bb37-aaa6-4a59-bdad-c7b03a16ec58)
)
(wire (pts (xy 29.21 142.24) (xy 48.26 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f5bcee2-3154-4694-aa30-e3b753104fb6)
)
(wire (pts (xy 218.44 33.02) (xy 218.44 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7fe74c0f-9bc6-4445-a182-cdd4b1fea500)
)
(wire (pts (xy 93.98 22.86) (xy 93.98 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 803ce97e-9e95-414d-b6c4-3e437677a965)
)
(wire (pts (xy 13.97 134.62) (xy 21.59 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8188d10e-64c7-4456-a8af-296627b3e265)
)
(wire (pts (xy 149.86 73.66) (xy 149.86 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82b6f787-7d10-49c5-805d-7edd9a94e464)
)
(wire (pts (xy 74.93 50.8) (xy 74.93 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8346937d-4677-47c1-a284-f51b3c4ba710)
)
(wire (pts (xy 48.26 147.32) (xy 67.31 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 843e1a26-3dbd-4182-9b9b-939cd49fdc6f)
)
(wire (pts (xy 74.93 114.3) (xy 78.74 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 84723b76-325a-487f-9da2-d4543a4b9032)
)
(wire (pts (xy 55.88 134.62) (xy 59.69 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 84c1c498-af07-43c8-b0b9-254f1ef2b219)
)
(wire (pts (xy 116.84 43.18) (xy 116.84 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 84cdc27f-3bbb-4106-9132-0ea8c4c8712e)
)
(wire (pts (xy 55.88 154.94) (xy 59.69 154.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 870b8d81-e49b-405d-83af-f0ce9e912e29)
)
(wire (pts (xy 144.78 170.815) (xy 144.78 173.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 870c32e1-ab93-4ca4-8bd1-345b2925fd06)
)
(wire (pts (xy 177.8 53.34) (xy 177.8 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88008754-5625-42e9-9aba-6b82bd6bde26)
)
(wire (pts (xy 210.82 33.02) (xy 210.82 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88448c25-3fc9-4e98-a9da-7656e88cada1)
)
(wire (pts (xy 134.62 142.24) (xy 134.62 151.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88cda46a-4ab7-4f47-b2ce-92a9138fd731)
)
(wire (pts (xy 129.54 142.24) (xy 129.54 151.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8998ad2e-90e5-421f-9467-cca6acba8816)
)
(wire (pts (xy 144.78 151.765) (xy 144.78 161.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a54adf5-9465-445c-a6ef-80e562114a51)
)
(wire (pts (xy 86.36 162.56) (xy 92.71 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b637b4b-9239-474d-aac7-dc2e7b545594)
)
(wire (pts (xy 128.27 35.56) (xy 128.27 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8bcb1ec9-ea48-4980-9e37-a401b78d1b65)
)
(wire (pts (xy 149.86 55.88) (xy 157.48 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f239e5e-1495-41a8-b859-66a0595cc3ec)
)
(wire (pts (xy 254 63.5) (xy 266.7 63.5))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90101d42-8c0a-4eac-8a89-48c1abb01963)
)
(wire (pts (xy 48.26 121.92) (xy 67.31 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93afffd8-594e-4b11-b830-1044d73be69a)
)
(wire (pts (xy 175.26 33.02) (xy 175.26 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 947b038b-2479-4faf-8c1a-ae3675da6dda)
)
(wire (pts (xy 180.34 73.66) (xy 180.34 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 95ebc7ac-20b1-4587-8163-bf465dbf1038)
)
(wire (pts (xy 29.21 165.1) (xy 48.26 165.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 975cdb5f-4c3c-43a6-a043-4e2de11343ff)
)
(wire (pts (xy 190.5 33.02) (xy 190.5 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98084d08-d7a8-4bbd-827a-55157c53cc05)
)
(wire (pts (xy 191.77 101.6) (xy 203.2 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 986374cd-3b04-4717-9a1f-ff9f611edbb7)
)
(wire (pts (xy 195.58 53.34) (xy 195.58 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9875cbca-607a-4517-8f9c-d92f960603d3)
)
(wire (pts (xy 78.74 86.36) (xy 101.6 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9bbd61d9-8e61-497c-9be1-db402fe14c67)
)
(wire (pts (xy 177.8 53.34) (xy 180.34 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c029fd0-b773-4152-9d1f-5a6b8932d602)
)
(wire (pts (xy 48.26 180.34) (xy 67.31 180.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9fc1c505-4248-4d71-baf9-fb87d02fcd83)
)
(wire (pts (xy 67.31 180.34) (xy 86.36 180.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a00e726f-b27b-41a8-96eb-411a2feeb30a)
)
(wire (pts (xy 67.31 165.1) (xy 86.36 165.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a094bfac-7e11-41e0-8bdf-e90b0391e9cf)
)
(wire (pts (xy 226.06 53.34) (xy 226.06 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a17bc43c-dab6-4fa3-9c5d-34feb89e44f4)
)
(wire (pts (xy 229.87 91.44) (xy 218.44 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1bdbc4c-83b2-4ded-80c2-958b201f7f44)
)
(wire (pts (xy 195.58 33.02) (xy 195.58 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a489852c-e0cc-47ec-87b8-16eb72cefc9e)
)
(wire (pts (xy 144.78 50.8) (xy 144.78 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a6bf676f-300c-4b96-87ae-c4dfce7f6c63)
)
(wire (pts (xy 177.8 91.44) (xy 166.37 91.44))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a6ebb9e2-8e98-400f-bfba-c99ec61db906)
)
(wire (pts (xy 93.98 114.3) (xy 102.87 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a87f3f5d-16ef-47e7-a518-0c46c0f2e773)
)
(wire (pts (xy 78.74 55.88) (xy 101.6 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a8a73cd6-0594-40ff-8ac0-5f7d172a2791)
)
(wire (pts (xy 142.24 33.02) (xy 142.24 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9382fcb-fc51-4b98-bf97-972b46fc0949)
)
(wire (pts (xy 21.59 86.36) (xy 40.64 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a9becfab-523b-4dfb-b03e-7a827510e512)
)
(wire (pts (xy 177.8 33.02) (xy 177.8 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ab80135a-dcdd-41d4-9db9-fe0841ca0876)
)
(wire (pts (xy 157.48 58.42) (xy 160.02 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ac214c53-3470-4dcf-8559-a43b3e4d4a39)
)
(wire (pts (xy 13.97 172.72) (xy 21.59 172.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid acc4c694-4c59-4c48-9c54-b1d06850fa1e)
)
(wire (pts (xy 128.27 35.56) (xy 129.54 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af7fa9fd-ff8d-4291-a6fe-86bead20ecaa)
)
(wire (pts (xy 121.92 58.42) (xy 129.54 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b294fc15-9ff9-47af-895b-16b3082ab0c1)
)
(wire (pts (xy 59.69 86.36) (xy 78.74 86.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b29f6df2-8380-450f-b998-3c29d97319c8)
)
(wire (pts (xy 157.48 73.66) (xy 157.48 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b4119a9d-d52f-4293-a1b4-18be7da3098c)
)
(wire (pts (xy 121.92 50.8) (xy 129.54 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b56f5991-0cb2-431a-893d-f10c5c3ea72a)
)
(wire (pts (xy 48.26 162.56) (xy 67.31 162.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b657a837-673e-4263-8f53-0a6b9ad51ef8)
)
(wire (pts (xy 261.62 55.88) (xy 254 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7a243c3-812a-46d6-890f-d2f4760f31d8)
)
(wire (pts (xy 187.96 73.66) (xy 187.96 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b945990c-1fc7-460b-92eb-f486109a9bbc)
)
(wire (pts (xy 24.13 127) (xy 29.21 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ba78f18c-a04f-4c54-8b3d-58b2a0637ad1)
)
(wire (pts (xy 203.2 73.66) (xy 203.2 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bcc596aa-a68e-49a2-87a6-2cc5ced1dfb9)
)
(wire (pts (xy 24.13 106.68) (xy 29.21 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bd46ad91-5425-456e-b984-eec2fa3a4852)
)
(wire (pts (xy 13.97 114.3) (xy 21.59 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bdec444e-9604-4af1-a90e-394e6e0ca4ed)
)
(wire (pts (xy 147.32 53.34) (xy 147.32 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid be6a1f66-ebcd-4ffa-b9ed-58f45a69db1c)
)
(wire (pts (xy 140.97 101.6) (xy 152.4 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c025afbb-59dd-40f8-99c6-fd53a5b34e5d)
)
(wire (pts (xy 134.62 135.89) (xy 134.62 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c15cc0ff-5e52-413c-a355-a481d35b0469)
)
(wire (pts (xy 149.86 161.29) (xy 149.86 170.815))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c4b94910-1ad7-40e6-8fd9-eb57abc551b3)
)
(wire (pts (xy 205.74 55.88) (xy 205.74 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c6e9ab23-a6cc-486f-89fa-53305a71da34)
)
(wire (pts (xy 74.93 172.72) (xy 78.74 172.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7c4f779-15f3-4893-a73c-6ef305e07b36)
)
(wire (pts (xy 266.7 71.12) (xy 254 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9c96aab-e82f-454d-95ad-a6e064a7fcec)
)
(wire (pts (xy 74.93 22.86) (xy 74.93 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ca37f1e9-d07c-49a1-8fb8-3b21527756f8)
)
(wire (pts (xy 195.58 50.8) (xy 193.04 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ca7bd2a5-7623-4d69-8e94-23da43924dc6)
)
(wire (pts (xy 93.98 66.04) (xy 93.98 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ca7e0732-5d41-4b6f-9999-0eeb6611f350)
)
(wire (pts (xy 93.98 134.62) (xy 102.87 134.62))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc58db80-ab35-4c66-9833-4933683e4686)
)
(wire (pts (xy 21.59 55.88) (xy 40.64 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd02c098-ab58-4745-98c6-8cf7ccc1a514)
)
(wire (pts (xy 160.02 66.04) (xy 160.02 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cdc6880b-ea5e-4e7a-8c89-498f103ca1c5)
)
(wire (pts (xy 67.31 142.24) (xy 86.36 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ce411d2b-83a5-42e8-ad9a-a41453f826f9)
)
(wire (pts (xy 55.88 35.56) (xy 55.88 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf1654dd-654c-4468-a8f0-86c22f14b624)
)
(wire (pts (xy 40.64 40.64) (xy 59.69 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf95b16f-354e-4210-ab65-32a09b205235)
)
(wire (pts (xy 208.28 66.04) (xy 208.28 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cfad399c-e805-4045-9b53-c2483b9d21c6)
)
(wire (pts (xy 67.31 127) (xy 86.36 127))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d0f96b94-1ea5-4367-b365-2707c7458fa0)
)
(wire (pts (xy 261.62 48.26) (xy 254 48.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d17865e7-6650-4a2a-b35d-c9aa95c56a35)
)
(wire (pts (xy 29.21 106.68) (xy 48.26 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d23b21cd-7b7a-4a25-a65a-1b3b2d64d779)
)
(wire (pts (xy 236.22 58.42) (xy 238.76 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d53ca447-d4a8-4c05-8888-02e3b5025ee7)
)
(wire (pts (xy 147.32 50.8) (xy 144.78 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dbb185e8-7cbd-4b7a-9b35-9c1050822200)
)
(wire (pts (xy 187.96 55.88) (xy 187.96 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dcb2f58f-9b98-40ce-8723-204f35aaf977)
)
(wire (pts (xy 147.32 33.02) (xy 147.32 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dcb4928e-ddb5-4410-a693-213bb15c60f1)
)
(wire (pts (xy 48.26 106.68) (xy 67.31 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dcb929bd-de72-4e6a-b352-9a8000f84af9)
)
(wire (pts (xy 149.86 53.34) (xy 149.86 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dcddefe2-c13e-41e8-bc2b-326e64b5ad03)
)
(wire (pts (xy 36.83 172.72) (xy 40.64 172.72))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd5abd0a-b4f7-4fc0-bbc0-47ee45b779a5)
)
(wire (pts (xy 160.02 58.42) (xy 160.02 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid de223127-f6ae-41d8-8319-e98cd8a97ec0)
)
(wire (pts (xy 226.06 50.8) (xy 223.52 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e1b1f512-8081-4a38-96f7-137e0283d815)
)
(wire (pts (xy 226.06 33.02) (xy 226.06 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e3640f92-9be2-40fd-a837-7432bf37ec54)
)
(wire (pts (xy 29.21 147.32) (xy 48.26 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e36cda7d-4fa6-4e6a-be87-a4ab61ab786e)
)
(polyline (pts (xy 134.62 27.94) (xy 134.62 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4c0e7a1-47ca-4d98-8d08-25317b4793b0)
)
(wire (pts (xy 29.21 121.92) (xy 48.26 121.92))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4cac856-744a-4add-9f14-a3d70d599400)
)
(polyline (pts (xy 134.62 78.74) (xy 248.92 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e4fda51c-06d7-48bd-ac2c-b443aa1d254d)
)
(wire (pts (xy 55.88 66.04) (xy 55.88 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e74b1e3c-8b13-4658-8fa2-c75f679dadbe)
)
(wire (pts (xy 190.5 66.04) (xy 190.5 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e81b6973-f0d5-4559-8b53-8a2e2fa154a1)
)
(wire (pts (xy 147.32 53.34) (xy 149.86 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e990d4aa-3652-4433-98b4-deb8fc5b6e36)
)
(wire (pts (xy 241.3 33.02) (xy 241.3 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec101f1f-bf0f-4bf3-af2f-9aac417e23db)
)
(wire (pts (xy 207.01 96.52) (xy 214.63 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ed103fab-17b9-489a-ba34-360763c92ff4)
)
(wire (pts (xy 129.54 161.29) (xy 129.54 170.815))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ed9f99c7-64e1-43ad-9504-a36a0fec85f7)
)
(wire (pts (xy 228.6 137.16) (xy 228.6 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef66508d-f267-4f58-a851-8f9c22f5ebe1)
)
(wire (pts (xy 116.84 43.18) (xy 129.54 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f02be3db-4d42-41e9-a0b9-d10990809717)
)
(wire (pts (xy 36.83 114.3) (xy 40.64 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f108e8b2-da18-456d-9184-c51940f8e426)
)
(wire (pts (xy 29.21 180.34) (xy 48.26 180.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1e7e3d4-ac7f-4f92-8439-e0399ae4a39b)
)
(wire (pts (xy 55.88 50.8) (xy 55.88 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f3bfaafb-82e6-4160-a877-07ba79015a7c)
)
(wire (pts (xy 121.92 55.88) (xy 129.54 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f57b4c66-7596-4059-b1c8-4573832fe7cc)
)
(wire (pts (xy 180.34 53.34) (xy 180.34 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f5f863ae-66b4-4083-8d7a-115dad6fa93a)
)
(wire (pts (xy 205.74 58.42) (xy 208.28 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f721ef67-52d6-4234-aad6-3eb903c1cbf6)
)
(wire (pts (xy 86.36 180.34) (xy 92.71 180.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f9dc0fa2-5020-4a92-a1d4-5f77f9e52a8f)
)
(wire (pts (xy 162.56 33.02) (xy 162.56 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fbb94e70-8f36-44f3-a34c-cfecf9c56404)
)
(wire (pts (xy 59.69 55.88) (xy 78.74 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid febb6406-ec95-4da5-a618-7a4ecd2afb8b)
)
(label "ROW20" (at 140.97 101.6 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0180b25e-9b15-4a66-9cd4-1f87d6739b3a)
)
(label "ROW1" (at 121.92 50.8 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 02206ee4-cd07-4c00-a0c2-091e808e593d)
)
(label "ROW5" (at 177.8 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 079977eb-0c21-4703-a178-349ef6b22d0d)
)
(label "COL2" (at 210.82 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0996a6ac-e577-46ea-8ac6-038d596a580e)
)
(label "ROW6" (at 195.58 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0a6c4b85-5bd7-463f-bfb9-d09bcd2a10d9)
)
(label "ROW0" (at 101.6 40.64 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 0a929f74-bea4-4a64-984c-83a71eceaa11)
)
(label "ROW3" (at 121.92 58.42 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 17875fe3-da22-4b59-8490-f325d0332ce2)
)
(label "ROW1" (at 166.37 91.44 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1efbdce2-6f6a-4014-a1f0-7a595c1d48d1)
)
(label "LED3_O" (at 119.38 71.12 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 20064495-64fc-4cb8-955c-ef1184a521a7)
)
(label "ROW12" (at 157.48 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 23599ec9-bdc2-444d-987a-65938245a108)
)
(label "LED0_I" (at 13.97 114.3 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 257acdcb-6ae1-43c1-8003-2ea8cb8d3232)
)
(label "LED1_O" (at 119.38 43.18 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 28d903b1-f0fc-4fe3-8653-aa79fd0c91de)
)
(label "ROW17" (at 190.5 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 35aacc85-783f-4682-8321-31020a6db54f)
)
(label "ROW(2)1" (at 189.23 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3be92d88-1940-4c46-a3a2-47988ec20c1e)
)
(label "ROW20" (at 160.02 66.04 270)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3c8596c6-d806-4312-bce8-2a5e57412fdf)
)
(label "ROW10" (at 203.2 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 40582ff1-d5f6-45b5-b975-1328857d9b48)
)
(label "ROW(2)3" (at 223.52 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4404cf30-42f8-4337-8158-d0403ca54693)
)
(label "ROW21" (at 166.37 101.6 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 44459866-d340-4332-b9c3-4a4a378aa135)
)
(label "ROW2" (at 191.77 91.44 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 44531374-6acd-41c1-b578-1a75861e90a6)
)
(label "ROW0" (at 140.97 91.44 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 474be961-6211-472f-bb0a-c75df45f3a44)
)
(label "LED0_O" (at 262.255 35.56 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4b504e7f-0b7b-452e-b358-dc51673646b1)
)
(label "COL2" (at 74.93 22.86 270)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 4c890b83-4bb8-4170-9fa4-9fc217c6c1be)
)
(label "ROW13" (at 187.96 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 53fa2606-46a4-4848-9e66-df27507da690)
)
(label "COL0" (at 142.24 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 55e8f3ae-911a-4f80-a4b3-4614567ad8d5)
)
(label "ROW23" (at 238.76 66.04 270)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 5fc90327-2a54-4180-873c-9b34c24f2b3a)
)
(label "ROW11" (at 233.68 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 61835e5c-7684-4f96-9f60-cae2fb613d93)
)
(label "ROW0" (at 121.92 48.26 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 63f581da-9700-49de-9856-669a2947cb91)
)
(label "ROW(2)1" (at 175.26 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6634b39c-ec93-4464-b2fd-6fb6b4d382fe)
)
(label "ROW8" (at 149.86 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 697df087-dbcd-4f59-8c0e-e3e5a69404cd)
)
(label "GND" (at 162.56 55.88 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 698a63bb-c7e0-4777-ac22-d2505213b5da)
)
(label "ROW2" (at 101.6 71.12 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 6c8dbc2a-2cf9-4c21-a077-8e3a86f125a1)
)
(label "ROW22" (at 208.28 66.04 270)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 70c9b3a5-dad8-4b6c-b9dd-f268b5a5a3a0)
)
(label "LED1_I" (at 262.255 43.18 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 71407632-595c-426e-b6ae-4fb2a403e147)
)
(label "LED1_I" (at 102.87 134.62 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 71f035d0-5730-4e9b-9bed-2515503de19d)
)
(label "ROW3" (at 261.62 58.42 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 7280ac20-d7b1-46c7-985b-ef582df2afc0)
)
(label "COL3" (at 241.3 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 733b595f-784e-490b-a340-5459e6558e50)
)
(label "ROW2(2)" (at 214.63 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 79bd3776-d0ed-4cf4-a54b-bd037fd263af)
)
(label "ROW(2)2" (at 193.04 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7a126357-6a84-4b70-be08-97540f39d2de)
)
(label "LED1_O" (at 13.97 134.62 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 80c0e714-84bf-4145-8be3-6b15e879fb93)
)
(label "+5V" (at 218.44 55.88 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8116d072-6a2e-4458-b367-ce9712971395)
)
(label "ROW14" (at 205.74 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 871e759a-5e64-46cd-aa1a-ff5404db350c)
)
(label "ROW2" (at 121.92 55.88 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8817beb3-3b6e-45b6-98e9-51a359c3bb26)
)
(label "LED3_I" (at 102.87 172.72 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 88ecb286-b8d7-42df-b3a3-77bb132e33a8)
)
(label "ROW18" (at 208.28 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8da87f4a-8fec-4570-bdf6-3dcee0981f99)
)
(label "ROW3" (at 218.44 91.44 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 92b2679f-8491-410b-a003-31f60f784aa0)
)
(label "COL0" (at 36.83 22.86 270)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 96085316-b00f-4331-a3f7-9d45bf901175)
)
(label "ROW(2)0" (at 165.1 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 9cf2f021-1a67-44e7-8c01-2b21bee44760)
)
(label "ROW16" (at 160.02 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a52a1cea-2738-4322-9ccd-2af63c2c7b97)
)
(label "ROW15" (at 236.22 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a5a866ea-5d6c-4eea-9cef-5ffe8d1a3e98)
)
(label "ROW(2)3" (at 241.3 96.52 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid a70cd20f-c653-4a62-8eab-e664e527547f)
)
(label "ROW21" (at 190.5 66.04 270)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid af462b6f-6c51-44ac-9c51-e97539c61841)
)
(label "ROW1" (at 101.6 55.88 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid b0c0af56-d9a2-4955-910d-faf87a6672fa)
)
(label "+5V" (at 165.1 55.88 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b1fa4ecf-b43b-4226-8992-6062c2d7b871)
)
(label "ROW(2)0" (at 144.78 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b2976365-262e-4b95-8205-6eb4a60ec754)
)
(label "COL1" (at 172.72 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b52a40be-6fa2-4236-bfd1-df094d3e9f99)
)
(label "LED0_O" (at 102.87 114.3 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid bf7dc955-a4e0-418e-a004-dcb876689d2d)
)
(label "COL1" (at 55.88 22.86 270)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c1917425-d6b4-4ce3-8cfb-91584cfd0fe3)
)
(label "LED3_O" (at 13.97 172.72 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c20b2cfd-3f54-43df-b6fa-7b6303cf9a72)
)
(label "ROW0" (at 261.62 48.26 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid c7facaec-fa60-4523-a708-70308ef8571a)
)
(label "LED2_O" (at 262.255 63.5 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid cef7bd70-c854-422d-bb31-79b3bc5f3753)
)
(label "ROW22" (at 191.77 101.6 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid d1a2019c-ebc5-435c-aba4-81d9482bdc92)
)
(label "ROW23" (at 218.44 101.6 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid da439890-c71c-4177-935a-e1cdd67c5af2)
)
(label "LED3_I" (at 262.255 71.12 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid de8c69df-4ce6-41f9-a620-ec52e340e548)
)
(label "GND" (at 220.98 55.88 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e25e340d-3520-412b-a59d-0c8ba9acb2ae)
)
(label "ROW7" (at 226.06 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e5eebc95-6f8a-427c-95c9-d569c70b38a1)
)
(label "ROW2" (at 261.62 55.88 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e6723d19-77b9-4753-8a2b-c3657293a75b)
)
(label "COL3" (at 93.98 22.86 270)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e6e955f9-62d4-4ed3-8a2e-6e463b900850)
)
(label "ROW3" (at 101.6 86.36 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid e896a5b0-cc56-4dd8-8ac9-e17efcf39cc9)
)
(label "LED2_I" (at 119.38 63.5 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid eae076f3-f35a-462b-ab31-a57157d8cb10)
)
(label "LED0_I" (at 119.38 35.56 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid eea8ec1d-7e24-47e8-9469-3d7839feef1c)
)
(label "ROW9" (at 180.34 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f068ee03-76c8-4a16-ad65-17fc43274ca5)
)
(label "LED2_I" (at 13.97 154.94 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f09c6a95-b458-4a26-88c2-2754718c2122)
)
(label "LED2_O" (at 102.87 154.94 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f3647507-d84e-4739-9bfd-8f1fc58678bc)
)
(label "ROW19" (at 238.76 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f3c2f082-3b70-4787-a741-feca4f9242e5)
)
(label "ROW4" (at 147.32 40.64 90)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f7a52c23-4224-4a3b-a787-11f4e1ec5850)
)
(label "ROW1" (at 261.62 50.8 180)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid f91b5aa0-71c4-4e0b-9c39-5fd205916adb)
)
(symbol (lib_id "s-ol:PG1350") (at 67.31 50.8 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 02c1059d-7cff-4215-b8b9-2047b4c15567)
(property "Reference" "S7" (id 0) (at 63.5 44.45 0))
(property "Value" "PG1350" (id 1) (at 63.5 54.61 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 63.5 57.15 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 69.85 47.625 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid cd18166f-e653-4dde-bb35-d830fc9f55d2))
(pin "2" (uuid ad56ee72-4dc1-4c46-9838-5fe06b9a6a03))
)
(symbol (lib_id "Device:D_Small") (at 59.69 38.1 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 02fe19da-2364-4243-b37a-4b62f606fa32)
(property "Reference" "D3" (id 0) (at 64.77 39.37 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 57.785 39.3699 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 59.69 38.1 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 59.69 38.1 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid afc8b7f6-6742-4498-84c6-09ba16ec6ab6))
(pin "2" (uuid 576e785b-897d-4a0a-9f8d-9a2545917257))
)
(symbol (lib_id "Device:D_Small") (at 59.69 83.82 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0a9b40c6-ee6d-4067-8e5e-d3439a1532c1)
(property "Reference" "D15" (id 0) (at 64.77 85.09 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 57.785 85.0899 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 59.69 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 59.69 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0ead7e21-772f-440b-9105-287c0de9c2da))
(pin "2" (uuid 1b64a48b-9b85-4a87-a329-bf7bcc442bfb))
)
(symbol (lib_id "Device:C_Small") (at 132.08 161.29 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0a9efea4-b97a-485c-a8dd-af7b6fe55f0c)
(property "Reference" "C5" (id 0) (at 132.08 156.21 90))
(property "Value" "100nF" (id 1) (at 132.08 158.115 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 132.08 161.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 132.08 161.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5223378c-6faa-4da8-8c93-410c7e148516))
(pin "2" (uuid cfa9144f-ba5e-495e-bf59-9f00b2b43175))
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 198.12 144.78 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0c151c2a-1757-49b0-9903-d8c34a8c7f8f)
(property "Reference" "H4" (id 0) (at 200.66 144.7799 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 200.66 146.0499 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:Mounting_Penn_SMTSO-M2-2" (id 2) (at 198.12 144.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 198.12 144.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a721edc1-88d1-4b6a-bc28-369d6822f2de))
)
(symbol (lib_id "Device:D_Small") (at 21.59 38.1 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0c927c13-f528-4efb-a3d2-faafc24c7bf5)
(property "Reference" "D1" (id 0) (at 26.67 39.37 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 19.685 39.3699 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 21.59 38.1 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 21.59 38.1 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 487ff884-9bfc-46f0-b52a-e6bb941e5844))
(pin "2" (uuid bd20259e-0ec0-452e-a29d-938ef0f817fb))
)
(symbol (lib_id "Device:D_Small") (at 40.64 38.1 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0ea76d01-71c3-4396-bb0e-227fc0c13052)
(property "Reference" "D2" (id 0) (at 45.72 39.37 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 38.735 39.3699 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 40.64 38.1 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 40.64 38.1 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 46bc582d-1229-44b9-8832-be540fd554ad))
(pin "2" (uuid 3a0d6046-e031-4434-839e-00b4606690d3))
)
(symbol (lib_id "Connector:Conn_01x04_Female") (at 238.76 78.74 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 0f87f1f3-0445-434a-bdcc-6b1162948ef1)
(property "Reference" "J18" (id 0) (at 237.49 81.28 90))
(property "Value" "Edge4 F" (id 1) (at 237.49 83.82 90))
(property "Footprint" "local:Edge4_Female" (id 2) (at 238.76 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 238.76 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f0306fb5-51a3-4255-9bdb-fb06e96fe82d))
(pin "2" (uuid b500ce2c-8fa1-4f1f-bb4a-9793f0eca960))
(pin "3" (uuid 6d62cac6-24f7-446c-bbc8-51be60af8c1e))
(pin "4" (uuid 5fb1def5-7ea8-49dc-b3a9-cbf9d869d607))
)
(symbol (lib_id "s-ol:PG1350") (at 48.26 81.28 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 12f530dc-de9e-4bee-bc5d-b860a5352fc4)
(property "Reference" "S14" (id 0) (at 44.45 74.93 0))
(property "Value" "PG1350" (id 1) (at 44.45 85.09 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 44.45 87.63 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 50.8 78.105 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 89207f7f-2989-4c0d-beee-96e4a3bacb49))
(pin "2" (uuid 54b2e022-61a2-4de1-9431-71ab745f7384))
)
(symbol (lib_id "s-ol:PG1350") (at 29.21 81.28 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 1408a993-a5f9-4856-b1c6-584538e8f442)
(property "Reference" "S13" (id 0) (at 25.4 74.93 0))
(property "Value" "PG1350" (id 1) (at 25.4 85.09 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 25.4 87.63 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 31.75 78.105 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 74cc59fe-d1a5-4e9a-b402-fbde4a2b2708))
(pin "2" (uuid 09debd93-c9ca-408d-872b-2645fcd547e9))
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 198.12 134.62 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 15ce7a15-2825-4918-8e39-d0d59d1aecb8)
(property "Reference" "H2" (id 0) (at 200.66 134.6199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 200.66 135.8899 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:Mounting_Penn_SMTSO-M2-2" (id 2) (at 198.12 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 198.12 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 96420c75-89bb-4d91-a516-f3d024ec5fd3))
)
(symbol (lib_id "Connector:Conn_01x05_Female") (at 144.78 78.74 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 1997b9b6-7fb7-4f6a-b499-b7740ba18622)
(property "Reference" "J12" (id 0) (at 144.78 81.28 90))
(property "Value" "Edge5 F" (id 1) (at 144.78 83.82 90))
(property "Footprint" "local:Edge4+1_Female" (id 2) (at 144.78 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 144.78 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3327a932-5e03-4aa6-8362-81785ea92525))
(pin "2" (uuid 971993ce-81dc-43fe-b717-6bb7537adacf))
(pin "3" (uuid a48641a6-6ca8-4f12-938a-1e9d3a5e266d))
(pin "4" (uuid 6c1daa0e-f97d-47ca-9763-5d736781736f))
(pin "5" (uuid 42589d9e-02db-4a0f-86dc-45d67956db2d))
)
(symbol (lib_id "s-ol:PG1350") (at 29.21 35.56 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 1a2c0968-f4e6-44ff-97b5-079207b49cee)
(property "Reference" "S1" (id 0) (at 25.4 29.21 0))
(property "Value" "PG1350" (id 1) (at 25.4 39.37 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 25.4 41.91 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 31.75 32.385 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 08bc3028-b2eb-4783-b043-1fba6438b880))
(pin "2" (uuid 7f40a835-2c9f-43e0-9a9e-98963569ae79))
)
(symbol (lib_id "Connector:Conn_01x04_Male") (at 177.8 27.94 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 1b0150a5-3539-4573-9d95-e3701ed9fe95)
(property "Reference" "J3" (id 0) (at 176.53 22.86 90))
(property "Value" "Edge4 M" (id 1) (at 176.53 25.4 90))
(property "Footprint" "local:Edge4_Male" (id 2) (at 177.8 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 177.8 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1162b7f9-3ee5-49a1-9d40-a760274f4bf1))
(pin "2" (uuid d5cb4ce0-e428-4dbf-b72c-ff4847b2b25b))
(pin "3" (uuid 97e70c03-0f71-4ead-806a-370a910d4fe2))
(pin "4" (uuid 06bb2736-ad10-481d-987b-9106bdffdc62))
)
(symbol (lib_id "power:GND") (at 92.71 162.56 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 1e4b8fec-5bd7-4956-b20a-b78cdca08bec)
(property "Reference" "#PWR0103" (id 0) (at 99.06 162.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 96.52 162.5599 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 92.71 162.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 92.71 162.56 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3959f37e-2af5-4e18-8920-2d6be2498a6c))
)
(symbol (lib_id "s-ol:PG1350") (at 86.36 81.28 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 1ee1a48a-f274-4bc8-a821-be52f98b45ce)
(property "Reference" "S16" (id 0) (at 82.55 74.93 0))
(property "Value" "PG1350" (id 1) (at 82.55 85.09 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 82.55 87.63 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 88.9 78.105 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 0bf486ca-1577-403e-aded-f6c2708a6596))
(pin "2" (uuid 3930eed3-bc1e-4534-81d3-5e7b6ba3505a))
)
(symbol (lib_id "Jumper:SolderJumper_3_Bridged12") (at 152.4 96.52 90) (mirror x) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 23ef4ae7-3fea-40ec-9b53-f6f2e520bc3c)
(property "Reference" "JP4" (id 0) (at 149.86 96.5199 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SolderJumper_3_Bridged12" (id 1) (at 149.86 97.7899 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm" (id 2) (at 152.4 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 152.4 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 47b9b90d-6d94-4113-8f07-53b7888232ce))
(pin "2" (uuid 4b513d14-9d97-4f6a-887e-571d4e478e8b))
(pin "3" (uuid 41c3172e-2602-463a-8df8-fc0642e1bcc0))
)
(symbol (lib_id "Connector:Conn_01x04_Male") (at 223.52 27.94 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 2444f275-30f8-43dd-9071-8095feb2594c)
(property "Reference" "J6" (id 0) (at 222.25 22.86 90))
(property "Value" "Edge4 M" (id 1) (at 222.25 25.4 90))
(property "Footprint" "local:Edge4_Male" (id 2) (at 223.52 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 223.52 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 16833cdb-a080-4ae2-8df5-84467c22cd01))
(pin "2" (uuid 8158ab41-9208-4de4-954d-ce1b41460827))
(pin "3" (uuid 43d7b22d-2dd7-4d82-b9c2-272817e94fb8))
(pin "4" (uuid c0e29123-5bbf-4646-bd7d-57f74c961a45))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 86.36 134.62 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 26cfd08b-d133-4465-a7e4-6ac4dcb5095a)
(property "Reference" "RGB8" (id 0) (at 91.44 128.27 0))
(property "Value" "SK6812MINI-E" (id 1) (at 75.565 132.8293 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 85.09 142.24 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 83.82 144.145 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid c39d3218-8e96-4f40-8d20-fb920fe0104a))
(pin "2" (uuid 085494b2-cf57-4d39-aaaa-d71a3b19d35c))
(pin "3" (uuid f28000c8-fb89-438e-ac93-8cf6457691fa))
(pin "4" (uuid 71caa184-da00-433c-a71e-b36ff08d839f))
)
(symbol (lib_id "s-ol:PG1350") (at 86.36 66.04 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 27711e8d-0b6b-41a4-8d9e-cf0bed6f132f)
(property "Reference" "S12" (id 0) (at 82.55 59.69 0))
(property "Value" "PG1350" (id 1) (at 82.55 69.85 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 82.55 72.39 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 88.9 62.865 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid cab4c1cd-27a0-4554-a94f-139a648516c9))
(pin "2" (uuid 14688bf7-72c9-4472-8759-3926f55d31e8))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 48.26 134.62 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 28a9d30b-5073-4e0b-abb9-322d37d7870a)
(property "Reference" "RGB6" (id 0) (at 53.34 128.27 0))
(property "Value" "SK6812MINI-E" (id 1) (at 37.465 132.8293 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 46.99 142.24 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 45.72 144.145 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 584bc1fd-c064-4c87-92c4-af3cf97f7126))
(pin "2" (uuid b879fef9-fd40-42c5-a0aa-d2487f7b03d4))
(pin "3" (uuid 3a577177-919e-440f-824a-44f8fc5e4bf0))
(pin "4" (uuid 613e4b15-5690-46d7-b32e-17a22eba2a78))
)
(symbol (lib_id "Device:D_Small") (at 78.74 38.1 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 2b4ec715-7772-491e-89b4-03099d11a61e)
(property "Reference" "D4" (id 0) (at 83.82 39.37 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 76.835 39.3699 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 78.74 38.1 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 78.74 38.1 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c4bcffce-4097-42e7-97aa-bae61d7b9657))
(pin "2" (uuid b1241192-6af1-4119-912a-87a12314d3c3))
)
(symbol (lib_id "Connector:Conn_01x04_Male") (at 208.28 27.94 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 2bb77d5d-efb8-4e4e-9186-c4c0e965392d)
(property "Reference" "J5" (id 0) (at 207.01 22.86 90))
(property "Value" "Edge4 M" (id 1) (at 207.01 25.4 90))
(property "Footprint" "local:Edge4_Male" (id 2) (at 208.28 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 208.28 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a3dcb502-7538-49ea-9cce-37a225d4b76c))
(pin "2" (uuid d24ec5d8-71b9-4bd9-bd80-ce3d76ef54b6))
(pin "3" (uuid 541c7f71-9e27-4e93-a84a-df446cadee2a))
(pin "4" (uuid 9cce473a-1ff5-469f-bf3c-c4e0bd334497))
)
(symbol (lib_id "s-ol:PG1350") (at 67.31 35.56 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 2bc8876f-6946-41c2-9193-b968b84210b3)
(property "Reference" "S3" (id 0) (at 63.5 29.21 0))
(property "Value" "PG1350" (id 1) (at 63.5 39.37 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 63.5 41.91 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 69.85 32.385 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid d773c5a9-668d-4235-b0fd-749cc4e01baf))
(pin "2" (uuid 7c996c46-fb97-4fc9-924a-223799792639))
)
(symbol (lib_id "Connector:Conn_01x04_Female") (at 134.62 38.1 0) (unit 1)
(in_bom no) (on_board yes)
(uuid 301ca0a5-7785-4d4e-8e51-2b4feabb4231)
(property "Reference" "J8" (id 0) (at 137.16 38.1 0))
(property "Value" "Edge4 F" (id 1) (at 135.255 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "local:Edge4_Female" (id 2) (at 134.62 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 134.62 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 16afad40-d03e-4cec-a335-624be1167775))
(pin "2" (uuid 0271d5d0-2527-496e-b2bb-46e2b98ace8e))
(pin "3" (uuid 87a925a8-f8e8-407b-8148-1bb52437b254))
(pin "4" (uuid 851037ba-0908-4efe-b041-55d9bfcd5e8c))
)
(symbol (lib_id "Connector:Conn_01x04_Female") (at 162.56 78.74 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 32a7d0cd-bab4-466b-8984-a21bdc1f5417)
(property "Reference" "J13" (id 0) (at 161.29 81.28 90))
(property "Value" "Edge4 F" (id 1) (at 161.29 83.82 90))
(property "Footprint" "local:Edge4_Female" (id 2) (at 162.56 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 162.56 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 49d24dc2-56fc-4435-81c8-6cb0a1762a0e))
(pin "2" (uuid ab063534-a197-438c-9711-2930f653bda3))
(pin "3" (uuid 0f067c76-7fd5-4e1c-8810-59e4ad0d45c8))
(pin "4" (uuid 1f30bc7e-de1b-4025-bc9d-b4cc1b1ea02d))
)
(symbol (lib_id "Connector:Conn_01x04_Male") (at 162.56 27.94 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 33e84cb1-8ab5-40e8-985c-1035197a078b)
(property "Reference" "J2" (id 0) (at 161.29 22.86 90))
(property "Value" "Edge4 M" (id 1) (at 161.29 25.4 90))
(property "Footprint" "local:Edge4_Male" (id 2) (at 162.56 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 162.56 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0d364f18-9d22-46d6-8d98-6e918b4a61ad))
(pin "2" (uuid 401ef29b-792e-4acb-8dcb-e250e63e6834))
(pin "3" (uuid 5c201a33-dfab-41f9-9fc8-9fb756c9e57f))
(pin "4" (uuid 0e0b34f0-76cf-4034-9eee-5ccf5bd4c06c))
)
(symbol (lib_id "power:GND") (at 254 142.24 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 33fbee4f-0863-4149-ba96-7e4e4e03f4d3)
(property "Reference" "#PWR0118" (id 0) (at 254 148.59 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 254 147.32 0))
(property "Footprint" "" (id 2) (at 254 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 254 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fd197db7-a0f0-42e8-915a-ca41f43bda52))
)
(symbol (lib_id "power:+5V") (at 24.13 106.68 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 343e458d-112f-4b78-a204-b6416216f3ba)
(property "Reference" "#PWR0101" (id 0) (at 27.94 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 20.955 106.6799 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 24.13 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 24.13 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 421f1692-b1ce-4fcc-8a9a-6cb29df79583))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 29.21 114.3 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 3511dfd9-45f8-4391-9a0e-8ea36a39b35c)
(property "Reference" "RGB1" (id 0) (at 24.13 107.95 0))
(property "Value" "SK6812MINI-E" (id 1) (at 40.005 112.5093 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 30.48 121.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 31.75 123.825 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 4b2b3207-4dda-4b83-a11b-55b92242cef3))
(pin "2" (uuid 17ac1064-741d-430c-9556-99cab6472bcb))
(pin "3" (uuid 01ef8742-6977-4f0e-847b-def53754a17d))
(pin "4" (uuid 957c1b7f-c1ac-426b-9e73-a9c8375a89a0))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 67.31 154.94 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 374d4248-db9c-4a89-8433-72d8ba1a8313)
(property "Reference" "RGB11" (id 0) (at 62.23 148.59 0))
(property "Value" "SK6812MINI-E" (id 1) (at 78.105 153.1493 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 68.58 162.56 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 69.85 164.465 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 25cbeb72-92c5-4817-97e6-30072c44f12b))
(pin "2" (uuid 9c960ea3-e77e-4c09-a289-a879c9a2afa4))
(pin "3" (uuid 6d2a691b-a3e6-460b-8e24-cdea69607e64))
(pin "4" (uuid d63b5ab3-6c59-4db0-b6bb-3c81c922843d))
)
(symbol (lib_id "power:+5V") (at 134.62 135.89 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 396281bc-871d-401e-bf94-6b35b38ca473)
(property "Reference" "#PWR0121" (id 0) (at 134.62 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 134.62 130.81 0))
(property "Footprint" "" (id 2) (at 134.62 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 134.62 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 170d2cba-f9b1-40c3-9a74-f87c9eb0be3f))
)
(symbol (lib_id "Device:D_Small") (at 59.69 68.58 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 39920ec6-1cb1-4e17-8e49-b9662dfb6564)
(property "Reference" "D11" (id 0) (at 64.77 69.85 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 57.785 69.8499 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 59.69 68.58 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 59.69 68.58 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5e68b00b-b9cc-4392-b4fe-1d82f7c1752b))
(pin "2" (uuid ce1e044d-927d-4849-b648-4c2c65f6bd9d))
)
(symbol (lib_id "s-ol:PG1350") (at 48.26 35.56 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 3c196d27-9223-405d-99ba-70e842a2607d)
(property "Reference" "S2" (id 0) (at 44.45 29.21 0))
(property "Value" "PG1350" (id 1) (at 44.45 39.37 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 44.45 41.91 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 50.8 32.385 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 27dd0c4d-075a-4101-ac13-a33a2ae67d20))
(pin "2" (uuid 9c0b1f73-eb7e-46e4-93e4-37e8ca26d5fb))
)
(symbol (lib_id "s-ol:PG1350") (at 67.31 81.28 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 3d4183d3-645b-4046-9ea8-aa3a0c1b3871)
(property "Reference" "S15" (id 0) (at 63.5 74.93 0))
(property "Value" "PG1350" (id 1) (at 63.5 85.09 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 63.5 87.63 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 69.85 78.105 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 960758ca-be6d-4738-a1e2-d7eac1313d70))
(pin "2" (uuid 51e81b6a-0c41-4d88-9150-869c2666af63))
)
(symbol (lib_id "power:GND") (at 254 66.04 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 4459b91b-d937-4427-a170-e7027c4df452)
(property "Reference" "#PWR0110" (id 0) (at 260.35 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 259.08 66.04 90))
(property "Footprint" "" (id 2) (at 254 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 254 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 51b18456-8852-4cce-ad37-628dd1c4103a))
)
(symbol (lib_id "Connector:Conn_01x04_Male") (at 193.04 27.94 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 452920bc-3cfa-491f-b868-43775dee729a)
(property "Reference" "J4" (id 0) (at 191.77 22.86 90))
(property "Value" "Edge4 M" (id 1) (at 191.77 25.4 90))
(property "Footprint" "local:Edge4_Male" (id 2) (at 193.04 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 193.04 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d56a7e43-ac76-4d66-bbf7-8e58a9f41fd2))
(pin "2" (uuid 6f8ba9a7-5935-4d0e-91f9-f80864aae582))
(pin "3" (uuid c941a52a-18fc-4998-9a5d-228649a68c92))
(pin "4" (uuid 85077f9f-cb5d-4437-9b78-3653128f3243))
)
(symbol (lib_id "power:+5V") (at 24.13 147.32 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 4547ca24-8b97-4226-95eb-dd2d38ed5fcd)
(property "Reference" "#PWR0107" (id 0) (at 27.94 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 20.955 147.3199 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 24.13 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 24.13 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bba8d0ba-b0b6-460e-b8da-1948e4cc98b3))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 86.36 114.3 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 48902f8f-41a9-4d79-bcb3-26ed06ba7bcc)
(property "Reference" "RGB4" (id 0) (at 81.28 107.95 0))
(property "Value" "SK6812MINI-E" (id 1) (at 97.155 112.5093 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 87.63 121.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 88.9 123.825 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 4b005d9e-915e-446c-a780-c313b4c5cf61))
(pin "2" (uuid 2f061198-5ab2-4753-a30e-8b5456c33704))
(pin "3" (uuid 1215ccde-64c3-4528-8f8c-9e37746d6295))
(pin "4" (uuid 5516264c-1191-4b49-94bb-ca48c476bde7))
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 182.88 134.62 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 48e47547-6d25-4ca6-b23d-b41e739b1208)
(property "Reference" "H1" (id 0) (at 185.42 134.6199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 185.42 135.8899 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:Mounting_Penn_SMTSO-M2-2" (id 2) (at 182.88 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 182.88 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 003891d8-0903-4537-b765-55f80bc44c42))
)
(symbol (lib_id "Connector:Conn_01x04_Male") (at 238.76 27.94 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 490f8f5a-03b5-4455-976b-beb38a1106a6)
(property "Reference" "J7" (id 0) (at 237.49 22.86 90))
(property "Value" "Edge4 M" (id 1) (at 237.49 25.4 90))
(property "Footprint" "local:Edge4_Male" (id 2) (at 238.76 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 238.76 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5937491d-3b0e-456b-95d4-816566963eb3))
(pin "2" (uuid 33deaf0e-28da-4167-8886-a74f26bb6ae8))
(pin "3" (uuid 0dd7a7dc-3a33-40b4-a338-dc7d080d3818))
(pin "4" (uuid 2e9a27c5-2eee-469d-8701-8440f039bf7c))
)
(symbol (lib_id "Connector:Conn_01x04_Female") (at 223.52 78.74 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 491b16fb-bcb6-4ba1-8618-d77644a08b45)
(property "Reference" "J17" (id 0) (at 222.25 81.28 90))
(property "Value" "Edge4 F" (id 1) (at 222.25 83.82 90))
(property "Footprint" "local:Edge4_Female" (id 2) (at 223.52 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 223.52 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ccc04a55-1e6e-4684-b73a-b2ca4998712e))
(pin "2" (uuid 7211c828-45a6-41b3-b5f2-f569d59c981b))
(pin "3" (uuid 9aaca96f-cdc7-4ed7-9862-70bad7032c96))
(pin "4" (uuid c2331e7a-f35f-493a-b62a-4c6fc78fc2b3))
)
(symbol (lib_id "Device:C_Small") (at 147.32 151.765 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 4a1e465f-e568-46d9-8996-009ed2d449c0)
(property "Reference" "C4" (id 0) (at 147.32 146.685 90))
(property "Value" "100nF" (id 1) (at 147.32 148.59 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 147.32 151.765 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 147.32 151.765 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 79efdb4b-d90a-4061-b5a2-b489f325430b))
(pin "2" (uuid 968421aa-92fd-48bf-8919-f0d653e29f75))
)
(symbol (lib_id "power:+5V") (at 24.13 165.1 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 4a4865b0-aca4-442b-9756-3c7ba9345c5a)
(property "Reference" "#PWR0108" (id 0) (at 27.94 165.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 20.955 165.0999 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 24.13 165.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 24.13 165.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c9bc2cef-6d30-469e-9bb2-995e63e42e57))
)
(symbol (lib_id "power:GND") (at 144.78 173.99 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 4ae2ba65-de3c-485c-95aa-9c55886e5147)
(property "Reference" "#PWR0123" (id 0) (at 144.78 180.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 144.78 179.07 0))
(property "Footprint" "" (id 2) (at 144.78 173.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 144.78 173.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fd648467-d088-4d4a-8e6c-f46d72fd3f60))
)
(symbol (lib_id "Device:C_Small") (at 147.32 170.815 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 4b9694a9-a292-4e3c-aedd-63d98bf236ae)
(property "Reference" "C8" (id 0) (at 147.32 165.735 90))
(property "Value" "100nF" (id 1) (at 147.32 167.64 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 147.32 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 147.32 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6413fea1-03de-45b7-99b4-ce1c1a6c5907))
(pin "2" (uuid 769dc2e8-ae97-4b3c-a24c-5412314b87b3))
)
(symbol (lib_id "Connector:Conn_01x04_Male") (at 248.92 38.1 0) (unit 1)
(in_bom no) (on_board yes)
(uuid 4d03b054-6dd8-4504-865b-b40682a87281)
(property "Reference" "J9" (id 0) (at 246.38 38.1 0))
(property "Value" "Edge4 M" (id 1) (at 248.285 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "local:Edge4_Male" (id 2) (at 248.92 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 248.92 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 005ef2dd-67f3-4c1a-8f33-40b68f59aebc))
(pin "2" (uuid fb253b24-d84b-46df-9285-f88a8d63fefd))
(pin "3" (uuid 16b2628a-7c26-4222-9d20-205b5feb9491))
(pin "4" (uuid 83cbe4e6-d462-4c40-b7f0-1a6306dc9a18))
)
(symbol (lib_id "Connector:Conn_01x02_Male") (at 248.92 55.88 0) (unit 1)
(in_bom no) (on_board yes)
(uuid 4d04a43e-e30b-47cd-bdcf-b24a4227a468)
(property "Reference" "J22" (id 0) (at 246.38 57.15 0))
(property "Value" "Edge2 M" (id 1) (at 249.555 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "local:Edge2_Male" (id 2) (at 248.92 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 248.92 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 389d7f1c-db15-43dd-ad3e-4c870e56abee))
(pin "2" (uuid 08e0f7f8-109e-49af-89ef-0fd4156b43bd))
)
(symbol (lib_id "power:GND") (at 92.71 180.34 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 4fc1e3b5-91d4-42f0-b179-e5626410ac46)
(property "Reference" "#PWR0104" (id 0) (at 99.06 180.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 96.52 180.3399 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 92.71 180.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 92.71 180.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7d397b9e-ac8e-43d9-af16-2260182d2522))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 29.21 154.94 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 510f4c22-1a2d-4524-9825-d368d51750a5)
(property "Reference" "RGB9" (id 0) (at 24.13 148.59 0))
(property "Value" "SK6812MINI-E" (id 1) (at 40.005 153.1493 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 30.48 162.56 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 31.75 164.465 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 57cb228c-ebe8-4a0b-945d-399b69d25ce6))
(pin "2" (uuid 65181d3c-d299-4f9b-92af-e4388f5e5c0f))
(pin "3" (uuid 0bf89867-6191-4c5b-9263-d59bc72f5da2))
(pin "4" (uuid aea0d701-759d-41d3-9050-fb9691c2065b))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 67.31 134.62 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 527b4c2d-5483-448b-a23c-102096a1fb5c)
(property "Reference" "RGB7" (id 0) (at 72.39 128.27 0))
(property "Value" "SK6812MINI-E" (id 1) (at 56.515 132.8293 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 66.04 142.24 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 64.77 144.145 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 04f8fc12-5cb9-40c0-a9de-731697432e34))
(pin "2" (uuid fb81ab6f-db1f-4c13-96ee-399681c2b4bb))
(pin "3" (uuid 42765906-01fe-4d3b-81c3-a733d025f941))
(pin "4" (uuid a63bd01c-1b6e-43ab-ae9e-3a786ff36a77))
)
(symbol (lib_id "Connector:Conn_01x02_Female") (at 134.62 48.26 0) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 56712097-e43d-43dd-af9b-61ecf96bf3cb)
(property "Reference" "J19" (id 0) (at 135.89 49.5299 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Edge2 F" (id 1) (at 135.89 50.7999 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "local:Edge2_Female" (id 2) (at 134.62 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 134.62 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a8e026e5-2321-43c5-b361-de2c9f4cc5bc))
(pin "2" (uuid 78a09261-e878-4593-90fa-d4fa17ee0282))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 67.31 172.72 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 5777fd58-e569-4572-97ca-a3198e9e6570)
(property "Reference" "RGB15" (id 0) (at 72.39 166.37 0))
(property "Value" "SK6812MINI-E" (id 1) (at 56.515 170.9293 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 66.04 180.34 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 64.77 182.245 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 10ed18e6-d8d0-4c01-ac7d-038564d085a6))
(pin "2" (uuid 36cf3c0d-4200-4935-bb0d-d0ff354986d4))
(pin "3" (uuid ee2ac67c-9b2c-45dc-94bc-8e609d7758e9))
(pin "4" (uuid 88be75e1-7948-457f-9e77-e52635749b97))
)
(symbol (lib_id "Device:D_Small") (at 40.64 53.34 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 5844d790-f599-4b5f-8af5-05f3334d95bf)
(property "Reference" "D6" (id 0) (at 45.72 54.61 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 38.735 54.6099 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 40.64 53.34 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 40.64 53.34 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a1e3cb6b-954c-412e-8efe-3ee50d7f811c))
(pin "2" (uuid d6d301fd-e45c-4f3d-a7a3-bb0d61a957f1))
)
(symbol (lib_id "Jumper:SolderJumper_2_Open") (at 266.7 67.31 90) (mirror x) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 5a6ed875-37a7-423c-b8c3-64e1dc8fd71a)
(property "Reference" "JP3" (id 0) (at 269.24 67.3099 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "Jumper" (id 1) (at 269.24 66.0401 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
(property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (id 2) (at 266.7 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 266.7 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2389267e-b39e-4057-980a-d385ac0cb8f8))
(pin "2" (uuid 42cf1b42-7549-445e-bbbe-0f4e6dbca9f0))
)
(symbol (lib_id "Connector:Conn_01x04_Female") (at 193.04 78.74 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 5c0cc505-f06f-47e5-a5b5-1d15b53e8df8)
(property "Reference" "J15" (id 0) (at 191.77 81.28 90))
(property "Value" "Edge4 F" (id 1) (at 191.77 83.82 90))
(property "Footprint" "local:Edge4_Female" (id 2) (at 193.04 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 193.04 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bd5adbe6-ead1-4400-a4da-c4e7f7e6e5f2))
(pin "2" (uuid 1ea02ecf-1d02-44ae-a8a4-70049ca30b55))
(pin "3" (uuid e6a5092d-5d74-46e2-9e9e-40e79b6bfcc9))
(pin "4" (uuid 814a07e0-b170-4e59-901c-e3e01a902a51))
)
(symbol (lib_id "Connector:Conn_01x04_Female") (at 177.8 78.74 270) (unit 1)
(in_bom no) (on_board yes)
(uuid 5e21c14c-b03d-4e49-aee5-a2ecbae4934c)
(property "Reference" "J14" (id 0) (at 176.53 81.28 90))
(property "Value" "Edge4 F" (id 1) (at 176.53 83.82 90))
(property "Footprint" "local:Edge4_Female" (id 2) (at 177.8 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 177.8 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9a9266b2-9ecc-4396-9cd0-6d6fb21e47b3))
(pin "2" (uuid dbb176df-9f49-4da5-8069-fc1ea50daff4))
(pin "3" (uuid 26182818-96a2-406c-93fc-00eec8a0b338))
(pin "4" (uuid b047e928-9fbc-4fdf-a78d-97aba578fc1a))
)
(symbol (lib_id "power:+5V") (at 149.86 135.89 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 5ffb5243-7e74-434a-8c9f-b1641e6e25d4)
(property "Reference" "#PWR0122" (id 0) (at 149.86 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 149.86 130.81 0))
(property "Footprint" "" (id 2) (at 149.86 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 149.86 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6e3b47f6-8619-41e0-a859-3c285a7cdfd0))
)
(symbol (lib_id "s-ol:PG1350") (at 48.26 50.8 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 638391f8-d1e0-4de8-a7d2-0396a7b18806)
(property "Reference" "S6" (id 0) (at 44.45 44.45 0))
(property "Value" "PG1350" (id 1) (at 44.45 54.61 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 44.45 57.15 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 50.8 47.625 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 8949888f-60f8-440b-bb4c-6efdb98b8428))
(pin "2" (uuid 58823461-ffff-4494-b5d1-ae828310480c))
)
(symbol (lib_id "Device:C_Small") (at 147.32 142.24 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 6d8ccdfc-e46d-4bf6-a05a-8f90b69c1f90)
(property "Reference" "C2" (id 0) (at 147.32 137.16 90))
(property "Value" "100nF" (id 1) (at 147.32 139.065 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 147.32 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 147.32 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e5c5f8f9-1495-439d-a761-d38b49cb32a0))
(pin "2" (uuid b65484af-c826-4cce-b4e8-285009a5dd3c))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 29.21 172.72 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 6daf75c6-e228-412d-8189-c5e97b62574e)
(property "Reference" "RGB13" (id 0) (at 34.29 166.37 0))
(property "Value" "SK6812MINI-E" (id 1) (at 18.415 170.9293 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 27.94 180.34 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 26.67 182.245 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 5bba4ae5-a3a3-4bc5-a322-1369e3572bf7))
(pin "2" (uuid 5dc8b9a4-5534-4956-bcd2-e88dd94e62a6))
(pin "3" (uuid cf53f3b9-46f5-4333-88ea-5e26c89c4b59))
(pin "4" (uuid d4275c7d-b8bb-404f-bbb1-0ac11d8df295))
)
(symbol (lib_id "s-ol:PG1350") (at 29.21 66.04 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 742786f2-cfb2-471f-a3a7-c5e33d99a18d)
(property "Reference" "S9" (id 0) (at 25.4 59.69 0))
(property "Value" "PG1350" (id 1) (at 25.4 69.85 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 25.4 72.39 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 31.75 62.865 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 1bbf847e-088e-4b43-a55d-4e3fbe03c5c8))
(pin "2" (uuid 5d454da2-d42a-4338-8ab2-1b197db40964))
)
(symbol (lib_id "power:+5V") (at 129.54 40.64 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 760d4bc0-3b2b-4702-b107-777b37bca046)
(property "Reference" "#PWR0116" (id 0) (at 133.35 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 124.46 40.64 90))
(property "Footprint" "" (id 2) (at 129.54 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 129.54 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9aaac48f-a574-410c-add5-d4a18d9127a8))
)
(symbol (lib_id "power:GND") (at 254 38.1 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 785a321f-4534-45d0-be7f-b5bda6fa00cc)
(property "Reference" "#PWR0112" (id 0) (at 260.35 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 259.08 38.1 90))
(property "Footprint" "" (id 2) (at 254 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 254 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d25f3f52-eef2-4291-b790-c24f600068b1))
)
(symbol (lib_id "power:GND") (at 129.54 38.1 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 7a6020af-8219-48c2-85d0-8e2a627b691c)
(property "Reference" "#PWR0117" (id 0) (at 123.19 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 124.46 38.1 90))
(property "Footprint" "" (id 2) (at 129.54 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 129.54 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b77118ce-499d-48a3-82be-d4c3c5e576a3))
)
(symbol (lib_id "power:PWR_FLAG") (at 228.6 142.24 180) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 7d8d50f3-ba0a-49ea-8db2-20042670e6e8)
(property "Reference" "#FLG0101" (id 0) (at 228.6 144.145 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 228.6 147.32 0))
(property "Footprint" "" (id 2) (at 228.6 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 228.6 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4e5fe002-a6ae-413f-8868-31e25a06d035))
)
(symbol (lib_id "power:+5V") (at 254 68.58 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 816dc656-ef63-4b7e-ba23-93c421a09dd9)
(property "Reference" "#PWR0109" (id 0) (at 250.19 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 259.08 68.58 90))
(property "Footprint" "" (id 2) (at 254 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 254 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8188a76e-2568-4947-ac3f-1ebfeff7c425))
)
(symbol (lib_id "Jumper:SolderJumper_2_Open") (at 116.84 53.34 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 8444c185-7f72-481f-8ef6-2c274c7e87f8)
(property "Reference" "JP2" (id 0) (at 114.3 53.3399 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "Jumper" (id 1) (at 114.3 52.0701 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
(property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (id 2) (at 116.84 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 116.84 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9008fb46-3c57-4b20-a855-531bbb33489e))
(pin "2" (uuid 672695b1-a29b-4b50-9ee3-a99e195cf9d3))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 48.26 172.72 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 86f6dd31-4f24-4c2c-9a98-1efa23ad6a55)
(property "Reference" "RGB14" (id 0) (at 53.34 166.37 0))
(property "Value" "SK6812MINI-E" (id 1) (at 37.465 170.9293 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 46.99 180.34 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 45.72 182.245 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 066b19bd-6a58-4360-b49e-6d1e66ccb369))
(pin "2" (uuid 655ff49c-a368-4559-9b07-30153900f026))
(pin "3" (uuid f23dfbc9-ed6a-4764-9e58-aced8eb4fdce))
(pin "4" (uuid b8bf420f-267c-492f-86a7-e5da589b3572))
)
(symbol (lib_id "power:GND") (at 92.71 121.92 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 88491862-5656-4a28-a76f-118f81a879f3)
(property "Reference" "#PWR0106" (id 0) (at 99.06 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 96.52 121.9199 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 92.71 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 92.71 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2259e6be-71d2-46b9-9159-6f05a230d027))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 86.36 154.94 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 88974a7f-1601-4d08-a5cc-6e8995677292)
(property "Reference" "RGB12" (id 0) (at 81.28 148.59 0))
(property "Value" "SK6812MINI-E" (id 1) (at 97.155 153.1493 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 87.63 162.56 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 88.9 164.465 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid e19a33e9-2d41-4ba5-9097-81b55aa7221a))
(pin "2" (uuid c2ac11dc-1933-43c1-a1e2-7daf9d8d2973))
(pin "3" (uuid bc838451-69a0-4c99-af77-00e54d45e399))
(pin "4" (uuid 022613a5-4f53-45f3-a222-3ee4cac2910d))
)
(symbol (lib_id "power:+5V") (at 228.6 137.16 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 8dbdfa84-5413-4236-872c-9ab96d23e972)
(property "Reference" "#PWR0113" (id 0) (at 228.6 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 228.6 132.08 0))
(property "Footprint" "" (id 2) (at 228.6 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 228.6 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c23575e7-94ca-403e-b2fe-7735faa0ff9a))
)
(symbol (lib_id "Jumper:SolderJumper_3_Bridged12") (at 229.87 96.52 90) (mirror x) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid 8e4288b5-8d9c-490e-9cc1-03c5e8213cc2)
(property "Reference" "JP7" (id 0) (at 227.33 96.5199 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SolderJumper_3_Bridged12" (id 1) (at 227.33 97.7899 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm" (id 2) (at 229.87 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 229.87 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4c072be9-68fa-44ad-90f4-60486ed088ee))
(pin "2" (uuid 89242783-336f-4ea7-8ebc-c965000c0977))
(pin "3" (uuid 3c947d75-9bb4-4d83-8083-d365aca391be))
)
(symbol (lib_id "Device:C_Small") (at 132.08 151.765 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 924f550c-b23a-4368-9a0e-0d402efd9098)
(property "Reference" "C3" (id 0) (at 132.08 146.685 90))
(property "Value" "100nF" (id 1) (at 132.08 148.59 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 132.08 151.765 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 132.08 151.765 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 35edd212-c856-426e-9e4e-63dfb2213c4c))
(pin "2" (uuid 9da61849-f4a7-47d0-85b9-d801f561f6d4))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 48.26 114.3 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 9351ed0d-6d36-4b9f-87b9-ca4625a8041c)
(property "Reference" "RGB2" (id 0) (at 43.18 107.95 0))
(property "Value" "SK6812MINI-E" (id 1) (at 59.055 112.5093 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 49.53 121.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 50.8 123.825 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid fe82e53d-2d3e-496e-92a4-b65056a400f2))
(pin "2" (uuid 2f865570-270b-45ae-9f8d-44d7cb8b36f5))
(pin "3" (uuid 1dbf7fe9-c46c-44d9-88e9-123cd0036b40))
(pin "4" (uuid 186acaa2-2afe-4ce3-84ab-4745b6054eea))
)
(symbol (lib_id "power:+5V") (at 24.13 127 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 93c5053c-d44d-4c43-826a-7343ec870dff)
(property "Reference" "#PWR0102" (id 0) (at 27.94 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 20.955 126.9999 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 24.13 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 24.13 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e7fae0f0-af15-4823-83ea-eb2be5996d9f))
)
(symbol (lib_id "s-ol:PG1350") (at 48.26 66.04 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 94298d03-8c3f-467f-99b9-81b2515582ee)
(property "Reference" "S10" (id 0) (at 44.45 59.69 0))
(property "Value" "PG1350" (id 1) (at 44.45 69.85 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 44.45 72.39 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 50.8 62.865 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid b248e940-ce26-4aa0-b025-7b954e095e35))
(pin "2" (uuid 77616b14-127a-4f73-9c57-750dba783bbe))
)
(symbol (lib_id "s-ol:PG1350") (at 86.36 35.56 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 9bf2ec75-be6b-4d6d-9ab9-509d9da4365e)
(property "Reference" "S4" (id 0) (at 82.55 29.21 0))
(property "Value" "PG1350" (id 1) (at 82.55 39.37 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 82.55 41.91 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 88.9 32.385 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 94f72bdd-7cba-4608-b5e2-5e8b08c67b93))
(pin "2" (uuid 065aadef-8305-48e8-a1c2-9994a720ccde))
)
(symbol (lib_id "Device:D_Small") (at 21.59 68.58 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid 9eadf9c4-8497-4bba-9d7a-53f83697e626)
(property "Reference" "D9" (id 0) (at 26.67 69.85 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 19.685 69.8499 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 21.59 68.58 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 21.59 68.58 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 30db849c-7585-49eb-a50e-9963a732f7bc))
(pin "2" (uuid fcf1a255-daf2-4f18-a4ae-6e57ddd99d02))
)
(symbol (lib_id "Connector:Conn_01x02_Female") (at 134.62 55.88 0) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid a7600590-e3fc-49e1-b67d-71423d92efc1)
(property "Reference" "J21" (id 0) (at 135.89 57.1499 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Edge2 F" (id 1) (at 135.89 58.4199 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "local:Edge2_Female" (id 2) (at 134.62 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 134.62 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bd4195b3-4285-4922-9691-2507ff82e29f))
(pin "2" (uuid a7fd1a4f-0275-4c86-8afc-e805694bb99b))
)
(symbol (lib_id "power:GND") (at 92.71 142.24 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid a955e2d1-667e-49ea-815e-d673f3992258)
(property "Reference" "#PWR0105" (id 0) (at 99.06 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 96.52 142.2399 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 92.71 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 92.71 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 60d42996-ec0b-41b6-bbde-7c7f6b627d6b))
)
(symbol (lib_id "Connector:Conn_01x02_Male") (at 248.92 48.26 0) (unit 1)
(in_bom no) (on_board yes)
(uuid b0009516-ba05-4318-b7df-805486c43229)
(property "Reference" "J20" (id 0) (at 246.38 49.53 0))
(property "Value" "Edge2 M" (id 1) (at 249.555 45.72 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "local:Edge2_Male" (id 2) (at 248.92 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 248.92 48.26 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 081c27c9-7b61-4188-8455-168c8bc2e022))
(pin "2" (uuid 27e79604-be17-432f-ad93-3428f78dbfaf))
)
(symbol (lib_id "Jumper:SolderJumper_2_Open") (at 266.7 39.37 90) (mirror x) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid b4c3a472-494e-447b-bcc3-5be85780d99c)
(property "Reference" "JP1" (id 0) (at 269.24 39.3699 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "Jumper" (id 1) (at 269.24 38.1001 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
(property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" (id 2) (at 266.7 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 266.7 39.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 751eb55e-3695-4ad7-9117-329972559b42))
(pin "2" (uuid c0eeded9-2da5-40a7-9cfa-1061ef668cda))
)
(symbol (lib_id "Device:D_Small") (at 78.74 53.34 90) (unit 1)
(in_bom no) (on_board yes)
(uuid b71da8d5-ff36-4708-a749-85cb7da4a939)
(property "Reference" "D8" (id 0) (at 83.82 54.61 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 76.835 54.6099 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 78.74 53.34 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 78.74 53.34 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 90c1a472-de13-4689-bbbb-8459fecc53a1))
(pin "2" (uuid dc2e2881-c7a9-4030-9c1c-5f70418fde26))
)
(symbol (lib_id "Mechanical:MountingHole_Pad") (at 182.88 144.78 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid ba86d8c1-cffb-4a8b-8ed8-9ee6f4d8f61e)
(property "Reference" "H3" (id 0) (at 185.42 144.7799 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MountingHole" (id 1) (at 185.42 146.0499 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:Mounting_Penn_SMTSO-M2-2" (id 2) (at 182.88 144.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 182.88 144.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2cd840cc-aa11-4d91-8f12-9457e3e96680))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 67.31 114.3 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid bb2b9440-6d30-4a85-9e94-023ffbe375de)
(property "Reference" "RGB3" (id 0) (at 62.23 107.95 0))
(property "Value" "SK6812MINI-E" (id 1) (at 78.105 112.5093 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 68.58 121.92 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 69.85 123.825 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 930b87d1-80ec-4a5a-95b4-b56280951e42))
(pin "2" (uuid e1262752-ae98-4235-9973-297f9d3eb864))
(pin "3" (uuid 20cad31c-aad4-436b-92d2-5ab64ad3ad82))
(pin "4" (uuid c20a17da-8139-4a6e-86cb-ade5eaa26ffd))
)
(symbol (lib_id "Connector:Conn_01x05_Male") (at 144.78 27.94 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid bf44c414-7b44-4ebb-819c-a4357d1bdd86)
(property "Reference" "J1" (id 0) (at 144.78 22.86 90))
(property "Value" "Edge5 M" (id 1) (at 144.78 25.4 90))
(property "Footprint" "local:Edge4+1_Male" (id 2) (at 144.78 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 144.78 27.94 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e4b61afc-3800-44bc-b13b-bd452858e6b2))
(pin "2" (uuid 0c3aa802-ed3b-4a37-847a-7535c56a8e9b))
(pin "3" (uuid 0b0eadd1-d4bc-4bdd-92e5-a54b06d5380d))
(pin "4" (uuid 2e4f721d-d8b0-4960-8455-f6903fb81c76))
(pin "5" (uuid 4280cd58-c145-48ac-b716-2c916320028a))
)
(symbol (lib_id "Device:D_Small") (at 59.69 53.34 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid c108618d-400f-41a8-9b3d-affd82639547)
(property "Reference" "D7" (id 0) (at 64.77 54.61 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 57.785 54.6099 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 59.69 53.34 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 59.69 53.34 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5b869971-68f3-406b-a43a-58d32abb29a3))
(pin "2" (uuid ea169cfa-1ec8-44b8-8980-2d3583cce222))
)
(symbol (lib_id "Device:D_Small") (at 40.64 68.58 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid c2e700f7-5218-49b5-ac2f-53c937a76610)
(property "Reference" "D10" (id 0) (at 45.72 69.85 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 38.735 69.8499 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 40.64 68.58 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 40.64 68.58 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b3d37071-7eee-4c49-9408-719d4f97d1a2))
(pin "2" (uuid 712b5946-9260-482f-a081-12361dcc88b9))
)
(symbol (lib_id "Connector:Conn_01x04_Male") (at 248.92 66.04 0) (unit 1)
(in_bom no) (on_board yes)
(uuid c82d7390-0905-416b-bd25-7c82a3bef829)
(property "Reference" "J11" (id 0) (at 246.38 66.04 0))
(property "Value" "Edge4 M" (id 1) (at 248.285 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "local:Edge4_Male" (id 2) (at 248.92 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 248.92 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a016c0cd-38cc-4a91-aea3-df16c9047bdf))
(pin "2" (uuid 0b1f014a-7d36-4171-9358-74385970d022))
(pin "3" (uuid 369d10ed-52a8-4132-8d73-bc450c282850))
(pin "4" (uuid 380e8325-1fb2-4f34-b386-9bb9a061e948))
)
(symbol (lib_id "s-ol:PG1350") (at 29.21 50.8 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid c8d383e6-63d1-4e8f-963f-9d94364be4fc)
(property "Reference" "S5" (id 0) (at 25.4 44.45 0))
(property "Value" "PG1350" (id 1) (at 25.4 54.61 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 25.4 57.15 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 31.75 47.625 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid c2c55047-b013-4d4c-8570-c30accb7b5de))
(pin "2" (uuid 09b7ae1c-98bc-4808-83dd-204ee65b87f1))
)
(symbol (lib_id "Device:C_Small") (at 132.08 170.815 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid d2f1e502-dd1a-4250-a44c-7c8abdb1f88c)
(property "Reference" "C7" (id 0) (at 132.08 165.735 90))
(property "Value" "100nF" (id 1) (at 132.08 167.64 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 132.08 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 132.08 170.815 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid da5e0794-f377-4a59-a269-9399bbfc6891))
(pin "2" (uuid 51998cc8-e385-42e7-965d-54cb8f5aba67))
)
(symbol (lib_id "power:PWR_FLAG") (at 254 137.16 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid d539250a-d408-4330-a149-ce70612fdfca)
(property "Reference" "#FLG0102" (id 0) (at 254 135.255 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 254 132.08 0))
(property "Footprint" "" (id 2) (at 254 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 254 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b01c3326-b0b4-4668-a3c9-8886c1e5428f))
)
(symbol (lib_id "Device:D_Small") (at 78.74 68.58 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid d5d42696-8c2f-420d-8d07-39e07169b7c5)
(property "Reference" "D12" (id 0) (at 83.82 69.85 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 76.835 69.8499 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 78.74 68.58 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 78.74 68.58 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3308ee7f-aa36-47d0-bf03-93497d7c5ba1))
(pin "2" (uuid da69f15b-21fb-4e68-8de5-35e966442df1))
)
(symbol (lib_id "Connector:Conn_01x04_Female") (at 134.62 66.04 0) (unit 1)
(in_bom no) (on_board yes)
(uuid d630ead5-52a8-4ac6-b043-f7f36bb530e5)
(property "Reference" "J10" (id 0) (at 137.16 66.04 0))
(property "Value" "Edge4 F" (id 1) (at 135.255 60.96 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "local:Edge4_Female" (id 2) (at 134.62 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 134.62 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8c6cdb7d-44c5-4056-a078-cb483acf1eb8))
(pin "2" (uuid 508a3a09-da27-41d9-babc-05bc50ea132c))
(pin "3" (uuid 27d25c89-8a74-4170-b877-81cd0f4fa412))
(pin "4" (uuid 6ca814bd-d9ee-446c-8f76-1559f39bd4bc))
)
(symbol (lib_id "Device:D_Small") (at 21.59 83.82 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid d6868b03-0527-4b36-a78e-56db0b65022a)
(property "Reference" "D13" (id 0) (at 26.67 85.09 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 19.685 85.0899 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 21.59 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 21.59 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5ba7295c-6693-4532-9524-da0ec4df31de))
(pin "2" (uuid e5c2e58c-5697-4aa9-a6aa-e1f23fa7a060))
)
(symbol (lib_id "Jumper:SolderJumper_3_Bridged12") (at 177.8 96.52 90) (mirror x) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid d741205a-5f16-4561-9260-4efe2ea426f6)
(property "Reference" "JP5" (id 0) (at 175.26 96.5199 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SolderJumper_3_Bridged12" (id 1) (at 175.26 97.7899 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm" (id 2) (at 177.8 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 177.8 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e964519c-d9ef-43ac-b478-f6aa4f64e641))
(pin "2" (uuid b18edc66-225f-4468-b076-e9b8cbd2840c))
(pin "3" (uuid 9495ad35-12f2-4624-83d4-6f1d372488a0))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 29.21 134.62 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid dbccfda0-1c27-40e8-8534-72ead460fbab)
(property "Reference" "RGB5" (id 0) (at 34.29 128.27 0))
(property "Value" "SK6812MINI-E" (id 1) (at 18.415 132.8293 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 27.94 142.24 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 26.67 144.145 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 414b8d74-6054-4fa3-84f8-b520a18f9785))
(pin "2" (uuid f0b05172-ee96-43a1-8682-84f947fc2468))
(pin "3" (uuid 778b7d59-0244-4ab7-9dcf-850bed8d2d07))
(pin "4" (uuid 1e27c49b-6388-4c7b-9fa3-3c41d10d48b1))
)
(symbol (lib_id "Jumper:SolderJumper_3_Bridged12") (at 203.2 96.52 90) (mirror x) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid e22b95d5-5009-40ef-8147-c03e89b576f8)
(property "Reference" "JP6" (id 0) (at 200.66 96.5199 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SolderJumper_3_Bridged12" (id 1) (at 200.66 97.7899 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm" (id 2) (at 203.2 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 203.2 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b8b2d333-084b-46b5-b733-bbc563354592))
(pin "2" (uuid 8d9b361a-5ad9-4084-9a9f-d8ad59c58829))
(pin "3" (uuid f720b2b1-369a-4a70-a604-20b13e25afc2))
)
(symbol (lib_id "power:GND") (at 129.54 173.99 0) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid e337bc1a-3304-4689-8b02-38452cde2d07)
(property "Reference" "#PWR0124" (id 0) (at 129.54 180.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 129.54 179.07 0))
(property "Footprint" "" (id 2) (at 129.54 173.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 129.54 173.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 51df6e3d-e1f6-42e9-9399-372218f33670))
)
(symbol (lib_id "Device:D_Small") (at 78.74 83.82 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid e3f52dd7-710c-4ac3-aebd-3338dff76473)
(property "Reference" "D16" (id 0) (at 83.82 85.09 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 76.835 85.0899 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 78.74 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 78.74 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f6e256d3-834c-4b71-be90-057530b80969))
(pin "2" (uuid 854f14ee-3062-48b9-896e-adaecc4fdbdd))
)
(symbol (lib_id "s-ol:PG1350") (at 67.31 66.04 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid e9aafd8f-cde7-48e4-b8fc-f92ef1c61755)
(property "Reference" "S11" (id 0) (at 63.5 59.69 0))
(property "Value" "PG1350" (id 1) (at 63.5 69.85 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 63.5 72.39 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 69.85 62.865 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 57d076cc-dd71-424d-bf34-4aecaf9a5ef9))
(pin "2" (uuid 5494be73-9672-44e9-91f2-5735a246cdb0))
)
(symbol (lib_id "Connector:Conn_01x04_Female") (at 208.28 78.74 270) (unit 1)
(in_bom no) (on_board yes) (fields_autoplaced)
(uuid eba45353-88e6-4224-a639-f06eefb85d05)
(property "Reference" "J16" (id 0) (at 207.01 81.28 90))
(property "Value" "Edge4 F" (id 1) (at 207.01 83.82 90))
(property "Footprint" "local:Edge4_Female" (id 2) (at 208.28 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 208.28 78.74 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f005412d-da9b-408b-a5aa-cb7025c4e936))
(pin "2" (uuid 7ff6ae6c-b170-48f4-b9d6-bca9de23d250))
(pin "3" (uuid 13bff926-1321-4f73-a2df-c224fe77283f))
(pin "4" (uuid 4074b173-ab95-4bb2-b745-d77daa4036bf))
)
(symbol (lib_id "power:GND") (at 129.54 66.04 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid f0ba81ae-5e64-49aa-825d-d0fb41c9b229)
(property "Reference" "#PWR0114" (id 0) (at 123.19 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 124.46 66.04 90))
(property "Footprint" "" (id 2) (at 129.54 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 129.54 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 614d8eac-f1b1-4753-9f2f-88de079ba47a))
)
(symbol (lib_id "power:+5V") (at 129.54 68.58 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid f19c8bb4-e53a-40d3-a102-36fb06ffcc5b)
(property "Reference" "#PWR0115" (id 0) (at 133.35 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 124.46 68.58 90))
(property "Footprint" "" (id 2) (at 129.54 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 129.54 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2f16834b-a2c5-4f79-8453-5cf80b6da034))
)
(symbol (lib_id "Device:C_Small") (at 132.08 142.24 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid f3fdf68c-df57-4218-8ad0-e10eaf73f0bc)
(property "Reference" "C1" (id 0) (at 132.08 137.16 90))
(property "Value" "100nF" (id 1) (at 132.08 139.065 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 132.08 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 132.08 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e966dbac-2156-481c-b847-18c77666c66a))
(pin "2" (uuid 4bee9dae-e777-434b-8f2d-eff86f74be71))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 48.26 154.94 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid f921da92-75c1-4813-8aa1-f8aa1b39217e)
(property "Reference" "RGB10" (id 0) (at 43.18 148.59 0))
(property "Value" "SK6812MINI-E" (id 1) (at 59.055 153.1493 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 49.53 162.56 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 50.8 164.465 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 6c860aa8-afd9-4c61-8bb9-8f8733506aaa))
(pin "2" (uuid 30e60f97-9abe-419a-8667-d12e9a7cf53c))
(pin "3" (uuid 9fe1b226-e2c1-4e3a-94bd-342c220a8e73))
(pin "4" (uuid 3aed8717-be05-4cc4-a1a1-d6ba6545cd2e))
)
(symbol (lib_id "power:+5V") (at 254 40.64 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid fbc33d67-378c-4865-93fe-8195c4fb3efa)
(property "Reference" "#PWR0111" (id 0) (at 250.19 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 259.08 40.64 90))
(property "Footprint" "" (id 2) (at 254 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 254 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 481a87ce-fada-4a0e-8910-53060bf92cba))
)
(symbol (lib_id "Device:D_Small") (at 40.64 83.82 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid fc28a851-94d7-4286-8470-c4f096cabf5a)
(property "Reference" "D14" (id 0) (at 45.72 85.09 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 38.735 85.0899 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 40.64 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 40.64 83.82 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8b808d13-c6e5-4180-be72-3783a4137ad6))
(pin "2" (uuid 985a9f83-6038-4716-9527-92db87c19fb3))
)
(symbol (lib_id "s-ol:SK6812MINI-E") (at 86.36 172.72 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid fd261229-8b2d-4aac-8047-182ba1d13ddb)
(property "Reference" "RGB16" (id 0) (at 91.44 166.37 0))
(property "Value" "SK6812MINI-E" (id 1) (at 75.565 170.9293 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:SK6812MINI-E" (id 2) (at 85.09 180.34 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/4960/4960_SK6812MINI-E_REV02_EN.pdf" (id 3) (at 83.82 182.245 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid 89c074ef-5cd9-4a5e-9d8b-9143314ee136))
(pin "2" (uuid 62016a4c-fa1a-48a6-829a-a3404edfb8d4))
(pin "3" (uuid a196324e-6dd0-4cde-a66f-b14eb889d4b2))
(pin "4" (uuid 28b2dd58-4ae6-4989-88ac-0da7cb1d5976))
)
(symbol (lib_id "Device:D_Small") (at 21.59 53.34 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid fda39647-580b-4139-afcd-e18a83fcf878)
(property "Reference" "D5" (id 0) (at 26.67 54.61 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1N4148" (id 1) (at 19.685 54.6099 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Footprint" "s-ol:D_SOD-323" (id 2) (at 21.59 53.34 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 21.59 53.34 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4fb2d16d-db09-416a-8ff8-aedd3bf39913))
(pin "2" (uuid fc4fda1a-38a0-4428-8274-0cb19caee11f))
)
(symbol (lib_id "Device:C_Small") (at 147.32 161.29 90) (unit 1)
(in_bom yes) (on_board yes)
(uuid fe30da8d-042e-434b-8824-d301d64d734b)
(property "Reference" "C6" (id 0) (at 147.32 156.21 90))
(property "Value" "100nF" (id 1) (at 147.32 158.115 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 147.32 161.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 147.32 161.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6ae18f5c-b287-4f07-b7cb-81e0e687ea47))
(pin "2" (uuid e6939f6d-e880-4f77-bb7d-17991ca45b99))
)
(symbol (lib_id "s-ol:PG1350") (at 86.36 50.8 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid ff4b04cf-a9f7-4912-97b7-1fc46b4ddc72)
(property "Reference" "S8" (id 0) (at 82.55 44.45 0))
(property "Value" "PG1350" (id 1) (at 82.55 54.61 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Footprint" "s-ol:PG1350_hotswap" (id 2) (at 82.55 57.15 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf" (id 3) (at 88.9 47.625 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(pin "1" (uuid f21192cb-f218-4a7a-977c-2b8c05a69975))
(pin "2" (uuid f619d3a4-d941-40fc-b060-1eb575d6d91a))
)
(sheet_instances
(path "/" (page "1"))
)
(symbol_instances
(path "/7d8d50f3-ba0a-49ea-8db2-20042670e6e8"
(reference "#FLG0101") (unit 1) (value "PWR_FLAG") (footprint "")
)
(path "/d539250a-d408-4330-a149-ce70612fdfca"
(reference "#FLG0102") (unit 1) (value "PWR_FLAG") (footprint "")
)
(path "/343e458d-112f-4b78-a204-b6416216f3ba"
(reference "#PWR0101") (unit 1) (value "+5V") (footprint "")
)
(path "/93c5053c-d44d-4c43-826a-7343ec870dff"
(reference "#PWR0102") (unit 1) (value "+5V") (footprint "")
)
(path "/1e4b8fec-5bd7-4956-b20a-b78cdca08bec"
(reference "#PWR0103") (unit 1) (value "GND") (footprint "")
)
(path "/4fc1e3b5-91d4-42f0-b179-e5626410ac46"
(reference "#PWR0104") (unit 1) (value "GND") (footprint "")
)
(path "/a955e2d1-667e-49ea-815e-d673f3992258"
(reference "#PWR0105") (unit 1) (value "GND") (footprint "")
)
(path "/88491862-5656-4a28-a76f-118f81a879f3"
(reference "#PWR0106") (unit 1) (value "GND") (footprint "")
)
(path "/4547ca24-8b97-4226-95eb-dd2d38ed5fcd"
(reference "#PWR0107") (unit 1) (value "+5V") (footprint "")
)
(path "/4a4865b0-aca4-442b-9756-3c7ba9345c5a"
(reference "#PWR0108") (unit 1) (value "+5V") (footprint "")
)
(path "/816dc656-ef63-4b7e-ba23-93c421a09dd9"
(reference "#PWR0109") (unit 1) (value "+5V") (footprint "")
)
(path "/4459b91b-d937-4427-a170-e7027c4df452"
(reference "#PWR0110") (unit 1) (value "GND") (footprint "")
)
(path "/fbc33d67-378c-4865-93fe-8195c4fb3efa"
(reference "#PWR0111") (unit 1) (value "+5V") (footprint "")
)
(path "/785a321f-4534-45d0-be7f-b5bda6fa00cc"
(reference "#PWR0112") (unit 1) (value "GND") (footprint "")
)
(path "/8dbdfa84-5413-4236-872c-9ab96d23e972"
(reference "#PWR0113") (unit 1) (value "+5V") (footprint "")
)
(path "/f0ba81ae-5e64-49aa-825d-d0fb41c9b229"
(reference "#PWR0114") (unit 1) (value "GND") (footprint "")
)
(path "/f19c8bb4-e53a-40d3-a102-36fb06ffcc5b"
(reference "#PWR0115") (unit 1) (value "+5V") (footprint "")
)
(path "/760d4bc0-3b2b-4702-b107-777b37bca046"
(reference "#PWR0116") (unit 1) (value "+5V") (footprint "")
)
(path "/7a6020af-8219-48c2-85d0-8e2a627b691c"
(reference "#PWR0117") (unit 1) (value "GND") (footprint "")
)
(path "/33fbee4f-0863-4149-ba96-7e4e4e03f4d3"
(reference "#PWR0118") (unit 1) (value "GND") (footprint "")
)
(path "/396281bc-871d-401e-bf94-6b35b38ca473"
(reference "#PWR0121") (unit 1) (value "+5V") (footprint "")
)
(path "/5ffb5243-7e74-434a-8c9f-b1641e6e25d4"
(reference "#PWR0122") (unit 1) (value "+5V") (footprint "")
)
(path "/4ae2ba65-de3c-485c-95aa-9c55886e5147"
(reference "#PWR0123") (unit 1) (value "GND") (footprint "")
)
(path "/e337bc1a-3304-4689-8b02-38452cde2d07"
(reference "#PWR0124") (unit 1) (value "GND") (footprint "")
)
(path "/f3fdf68c-df57-4218-8ad0-e10eaf73f0bc"
(reference "C1") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/6d8ccdfc-e46d-4bf6-a05a-8f90b69c1f90"
(reference "C2") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/924f550c-b23a-4368-9a0e-0d402efd9098"
(reference "C3") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/4a1e465f-e568-46d9-8996-009ed2d449c0"
(reference "C4") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/0a9efea4-b97a-485c-a8dd-af7b6fe55f0c"
(reference "C5") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/fe30da8d-042e-434b-8824-d301d64d734b"
(reference "C6") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/d2f1e502-dd1a-4250-a44c-7c8abdb1f88c"
(reference "C7") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/4b9694a9-a292-4e3c-aedd-63d98bf236ae"
(reference "C8") (unit 1) (value "100nF") (footprint "Capacitor_SMD:C_0603_1608Metric")
)
(path "/0c927c13-f528-4efb-a3d2-faafc24c7bf5"
(reference "D1") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/0ea76d01-71c3-4396-bb0e-227fc0c13052"
(reference "D2") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/02fe19da-2364-4243-b37a-4b62f606fa32"
(reference "D3") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/2b4ec715-7772-491e-89b4-03099d11a61e"
(reference "D4") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/fda39647-580b-4139-afcd-e18a83fcf878"
(reference "D5") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/5844d790-f599-4b5f-8af5-05f3334d95bf"
(reference "D6") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/c108618d-400f-41a8-9b3d-affd82639547"
(reference "D7") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/b71da8d5-ff36-4708-a749-85cb7da4a939"
(reference "D8") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/9eadf9c4-8497-4bba-9d7a-53f83697e626"
(reference "D9") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/c2e700f7-5218-49b5-ac2f-53c937a76610"
(reference "D10") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/39920ec6-1cb1-4e17-8e49-b9662dfb6564"
(reference "D11") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/d5d42696-8c2f-420d-8d07-39e07169b7c5"
(reference "D12") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/d6868b03-0527-4b36-a78e-56db0b65022a"
(reference "D13") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/fc28a851-94d7-4286-8470-c4f096cabf5a"
(reference "D14") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/0a9b40c6-ee6d-4067-8e5e-d3439a1532c1"
(reference "D15") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/e3f52dd7-710c-4ac3-aebd-3338dff76473"
(reference "D16") (unit 1) (value "1N4148") (footprint "s-ol:D_SOD-323")
)
(path "/48e47547-6d25-4ca6-b23d-b41e739b1208"
(reference "H1") (unit 1) (value "MountingHole") (footprint "s-ol:Mounting_Penn_SMTSO-M2-2")
)
(path "/15ce7a15-2825-4918-8e39-d0d59d1aecb8"
(reference "H2") (unit 1) (value "MountingHole") (footprint "s-ol:Mounting_Penn_SMTSO-M2-2")
)
(path "/ba86d8c1-cffb-4a8b-8ed8-9ee6f4d8f61e"
(reference "H3") (unit 1) (value "MountingHole") (footprint "s-ol:Mounting_Penn_SMTSO-M2-2")
)
(path "/0c151c2a-1757-49b0-9903-d8c34a8c7f8f"
(reference "H4") (unit 1) (value "MountingHole") (footprint "s-ol:Mounting_Penn_SMTSO-M2-2")
)
(path "/bf44c414-7b44-4ebb-819c-a4357d1bdd86"
(reference "J1") (unit 1) (value "Edge5 M") (footprint "local:Edge4+1_Male")
)
(path "/33e84cb1-8ab5-40e8-985c-1035197a078b"
(reference "J2") (unit 1) (value "Edge4 M") (footprint "local:Edge4_Male")
)
(path "/1b0150a5-3539-4573-9d95-e3701ed9fe95"
(reference "J3") (unit 1) (value "Edge4 M") (footprint "local:Edge4_Male")
)
(path "/452920bc-3cfa-491f-b868-43775dee729a"
(reference "J4") (unit 1) (value "Edge4 M") (footprint "local:Edge4_Male")
)
(path "/2bb77d5d-efb8-4e4e-9186-c4c0e965392d"
(reference "J5") (unit 1) (value "Edge4 M") (footprint "local:Edge4_Male")
)
(path "/2444f275-30f8-43dd-9071-8095feb2594c"
(reference "J6") (unit 1) (value "Edge4 M") (footprint "local:Edge4_Male")
)
(path "/490f8f5a-03b5-4455-976b-beb38a1106a6"
(reference "J7") (unit 1) (value "Edge4 M") (footprint "local:Edge4_Male")
)
(path "/301ca0a5-7785-4d4e-8e51-2b4feabb4231"
(reference "J8") (unit 1) (value "Edge4 F") (footprint "local:Edge4_Female")
)
(path "/4d03b054-6dd8-4504-865b-b40682a87281"
(reference "J9") (unit 1) (value "Edge4 M") (footprint "local:Edge4_Male")
)
(path "/d630ead5-52a8-4ac6-b043-f7f36bb530e5"
(reference "J10") (unit 1) (value "Edge4 F") (footprint "local:Edge4_Female")
)
(path "/c82d7390-0905-416b-bd25-7c82a3bef829"
(reference "J11") (unit 1) (value "Edge4 M") (footprint "local:Edge4_Male")
)
(path "/1997b9b6-7fb7-4f6a-b499-b7740ba18622"
(reference "J12") (unit 1) (value "Edge5 F") (footprint "local:Edge4+1_Female")
)
(path "/32a7d0cd-bab4-466b-8984-a21bdc1f5417"
(reference "J13") (unit 1) (value "Edge4 F") (footprint "local:Edge4_Female")
)
(path "/5e21c14c-b03d-4e49-aee5-a2ecbae4934c"
(reference "J14") (unit 1) (value "Edge4 F") (footprint "local:Edge4_Female")
)
(path "/5c0cc505-f06f-47e5-a5b5-1d15b53e8df8"
(reference "J15") (unit 1) (value "Edge4 F") (footprint "local:Edge4_Female")
)
(path "/eba45353-88e6-4224-a639-f06eefb85d05"
(reference "J16") (unit 1) (value "Edge4 F") (footprint "local:Edge4_Female")
)
(path "/491b16fb-bcb6-4ba1-8618-d77644a08b45"
(reference "J17") (unit 1) (value "Edge4 F") (footprint "local:Edge4_Female")
)
(path "/0f87f1f3-0445-434a-bdcc-6b1162948ef1"
(reference "J18") (unit 1) (value "Edge4 F") (footprint "local:Edge4_Female")
)
(path "/56712097-e43d-43dd-af9b-61ecf96bf3cb"
(reference "J19") (unit 1) (value "Edge2 F") (footprint "local:Edge2_Female")
)
(path "/b0009516-ba05-4318-b7df-805486c43229"
(reference "J20") (unit 1) (value "Edge2 M") (footprint "local:Edge2_Male")
)
(path "/a7600590-e3fc-49e1-b67d-71423d92efc1"
(reference "J21") (unit 1) (value "Edge2 F") (footprint "local:Edge2_Female")
)
(path "/4d04a43e-e30b-47cd-bdcf-b24a4227a468"
(reference "J22") (unit 1) (value "Edge2 M") (footprint "local:Edge2_Male")
)
(path "/b4c3a472-494e-447b-bcc3-5be85780d99c"
(reference "JP1") (unit 1) (value "Jumper") (footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm")
)
(path "/8444c185-7f72-481f-8ef6-2c274c7e87f8"
(reference "JP2") (unit 1) (value "Jumper") (footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm")
)
(path "/5a6ed875-37a7-423c-b8c3-64e1dc8fd71a"
(reference "JP3") (unit 1) (value "Jumper") (footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm")
)
(path "/23ef4ae7-3fea-40ec-9b53-f6f2e520bc3c"
(reference "JP4") (unit 1) (value "SolderJumper_3_Bridged12") (footprint "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm")
)
(path "/d741205a-5f16-4561-9260-4efe2ea426f6"
(reference "JP5") (unit 1) (value "SolderJumper_3_Bridged12") (footprint "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm")
)
(path "/e22b95d5-5009-40ef-8147-c03e89b576f8"
(reference "JP6") (unit 1) (value "SolderJumper_3_Bridged12") (footprint "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm")
)
(path "/8e4288b5-8d9c-490e-9cc1-03c5e8213cc2"
(reference "JP7") (unit 1) (value "SolderJumper_3_Bridged12") (footprint "Jumper:SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm")
)
(path "/3511dfd9-45f8-4391-9a0e-8ea36a39b35c"
(reference "RGB1") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/9351ed0d-6d36-4b9f-87b9-ca4625a8041c"
(reference "RGB2") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/bb2b9440-6d30-4a85-9e94-023ffbe375de"
(reference "RGB3") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/48902f8f-41a9-4d79-bcb3-26ed06ba7bcc"
(reference "RGB4") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/dbccfda0-1c27-40e8-8534-72ead460fbab"
(reference "RGB5") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/28a9d30b-5073-4e0b-abb9-322d37d7870a"
(reference "RGB6") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/527b4c2d-5483-448b-a23c-102096a1fb5c"
(reference "RGB7") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/26cfd08b-d133-4465-a7e4-6ac4dcb5095a"
(reference "RGB8") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/510f4c22-1a2d-4524-9825-d368d51750a5"
(reference "RGB9") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/f921da92-75c1-4813-8aa1-f8aa1b39217e"
(reference "RGB10") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/374d4248-db9c-4a89-8433-72d8ba1a8313"
(reference "RGB11") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/88974a7f-1601-4d08-a5cc-6e8995677292"
(reference "RGB12") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/6daf75c6-e228-412d-8189-c5e97b62574e"
(reference "RGB13") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/86f6dd31-4f24-4c2c-9a98-1efa23ad6a55"
(reference "RGB14") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/5777fd58-e569-4572-97ca-a3198e9e6570"
(reference "RGB15") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/fd261229-8b2d-4aac-8047-182ba1d13ddb"
(reference "RGB16") (unit 1) (value "SK6812MINI-E") (footprint "s-ol:SK6812MINI-E")
)
(path "/1a2c0968-f4e6-44ff-97b5-079207b49cee"
(reference "S1") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/3c196d27-9223-405d-99ba-70e842a2607d"
(reference "S2") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/2bc8876f-6946-41c2-9193-b968b84210b3"
(reference "S3") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/9bf2ec75-be6b-4d6d-9ab9-509d9da4365e"
(reference "S4") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/c8d383e6-63d1-4e8f-963f-9d94364be4fc"
(reference "S5") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/638391f8-d1e0-4de8-a7d2-0396a7b18806"
(reference "S6") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/02c1059d-7cff-4215-b8b9-2047b4c15567"
(reference "S7") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/ff4b04cf-a9f7-4912-97b7-1fc46b4ddc72"
(reference "S8") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/742786f2-cfb2-471f-a3a7-c5e33d99a18d"
(reference "S9") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/94298d03-8c3f-467f-99b9-81b2515582ee"
(reference "S10") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/e9aafd8f-cde7-48e4-b8fc-f92ef1c61755"
(reference "S11") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/27711e8d-0b6b-41a4-8d9e-cf0bed6f132f"
(reference "S12") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/1408a993-a5f9-4856-b1c6-584538e8f442"
(reference "S13") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/12f530dc-de9e-4bee-bc5d-b860a5352fc4"
(reference "S14") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/3d4183d3-645b-4046-9ea8-aa3a0c1b3871"
(reference "S15") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
(path "/1ee1a48a-f274-4bc8-a821-be52f98b45ce"
(reference "S16") (unit 1) (value "PG1350") (footprint "s-ol:PG1350_hotswap")
)
)
)
|