summaryrefslogtreecommitdiffstats
path: root/schematics/tetris.kicad_sch
blob: 0d762443ba3ac82ec721333e4fb3f2260a39fbba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
(kicad_sch (version 20211123) (generator eeschema)

  (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55)

  (paper "A4")

  (title_block
    (title "Tetris - Plain board")
    (date "2022-02-23")
    (rev "1.0")
    (company "Michael Büsch <m@bues.ch>")
  )

  (lib_symbols
    (symbol "74hct4094:74HCT4094" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
      (property "Reference" "U" (id 0) (at 0 -13.9954 0)
        (effects (font (size 1.524 1.524)))
      )
      (property "Value" "74HCT4094" (id 1) (at 0 13.9954 0)
        (effects (font (size 1.524 1.524)))
      )
      (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)
      )
      (symbol "74HCT4094_0_1"
        (rectangle (start -10.16 11.43) (end 10.16 -11.43)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "74HCT4094_1_1"
        (pin input line (at -16.51 8.89 0) (length 7.62)
          (name "STR" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 -6.35 180) (length 7.62)
          (name "QS2" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 -3.81 180) (length 7.62)
          (name "QP7" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 -1.27 180) (length 7.62)
          (name "QP6" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 1.27 180) (length 7.62)
          (name "QP5" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 3.81 180) (length 7.62)
          (name "QP4" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 6.35 180) (length 7.62)
          (name "OE" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 8.89 180) (length 7.62)
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 6.35 0) (length 7.62)
          (name "D" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 3.81 0) (length 7.62)
          (name "CP" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 1.27 0) (length 7.62)
          (name "QP0" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 -1.27 0) (length 7.62)
          (name "QP1" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 -3.81 0) (length 7.62)
          (name "QP2" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 -6.35 0) (length 7.62)
          (name "QP3" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -16.51 -8.89 0) (length 7.62)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 16.51 -8.89 180) (length 7.62)
          (name "QS1" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Connector_Generic:Conn_02x03_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "J" (id 0) (at 1.27 5.08 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Conn_02x03_Odd_Even" (id 1) (at 1.27 -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, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Conn_02x03_Odd_Even_1_1"
        (rectangle (start -1.27 -2.413) (end 0 -2.667)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 0.127) (end 0 -0.127)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 2.667) (end 0 2.413)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -1.27 3.81) (end 3.81 -3.81)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
        (rectangle (start 3.81 -2.413) (end 2.54 -2.667)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 0.127) (end 2.54 -0.127)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 3.81 2.667) (end 2.54 2.413)
          (stroke (width 0.1524) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (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 7.62 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 0) (length 3.81)
          (name "Pin_3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 0 180) (length 3.81)
          (name "Pin_4" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -5.08 -2.54 0) (length 3.81)
          (name "Pin_5" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 7.62 -2.54 180) (length 3.81)
          (name "Pin_6" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C" (id 1) (at 0.635 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.032 0.762)
            (xy 2.032 0.762)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "C_1_1"
        (pin passive line (at 0 3.81 270) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C_Polarized" (id 1) (at 0.635 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Polarized capacitor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_Polarized_0_1"
        (rectangle (start -2.286 0.508) (end 2.286 1.016)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.778 2.286)
            (xy -0.762 2.286)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.27 2.794)
            (xy -1.27 1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 2.286 -0.508) (end -2.286 -1.016)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
      )
      (symbol "C_Polarized_1_1"
        (pin passive line (at 0 3.81 270) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:Crystal" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "Y" (id 0) (at 0 3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Crystal" (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" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Two pin crystal" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Crystal_0_1"
        (rectangle (start -1.143 2.54) (end 1.143 -2.54)
          (stroke (width 0.3048) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.54 0)
            (xy -1.905 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.905 -1.27)
            (xy -1.905 1.27)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.905 -1.27)
            (xy 1.905 1.27)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.54 0)
            (xy 1.905 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "Crystal_1_1"
        (pin passive line (at -3.81 0 0) (length 1.27)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 3.81 0 180) (length 1.27)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "D" (id 0) (at 0 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "LED" (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" "LED diode" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "LED_0_1"
        (polyline
          (pts
            (xy -1.27 -1.27)
            (xy -1.27 1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.27 0)
            (xy 1.27 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 -1.27)
            (xy 1.27 1.27)
            (xy -1.27 0)
            (xy 1.27 -1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -3.048 -0.762)
            (xy -4.572 -2.286)
            (xy -3.81 -2.286)
            (xy -4.572 -2.286)
            (xy -4.572 -1.524)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.778 -0.762)
            (xy -3.302 -2.286)
            (xy -2.54 -2.286)
            (xy -3.302 -2.286)
            (xy -3.302 -1.524)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "LED_1_1"
        (pin passive line (at -3.81 0 0) (length 2.54)
          (name "K" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 3.81 0 180) (length 2.54)
          (name "A" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (id 0) (at 2.032 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R" (id 1) (at 0 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at -1.778 0 90)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Resistor" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_0_1"
        (rectangle (start -1.016 -2.54) (end 1.016 2.54)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "R_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:R_Potentiometer" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "RV" (id 0) (at -4.445 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R_Potentiometer" (id 1) (at -2.54 0 90)
        (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" "resistor variable" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Potentiometer" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Potentiometer*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_Potentiometer_0_1"
        (polyline
          (pts
            (xy 2.54 0)
            (xy 1.524 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.143 0)
            (xy 2.286 0.508)
            (xy 2.286 -0.508)
            (xy 1.143 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (rectangle (start 1.016 2.54) (end -1.016 -2.54)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "R_Potentiometer_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 3.81 0 180) (length 1.27)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:Speaker_Crystal" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
      (property "Reference" "LS" (id 0) (at 0.635 5.715 0)
        (effects (font (size 1.27 1.27)) (justify right))
      )
      (property "Value" "Speaker_Crystal" (id 1) (at 0.635 3.81 0)
        (effects (font (size 1.27 1.27)) (justify right))
      )
      (property "Footprint" "" (id 2) (at -0.889 -1.27 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at -0.889 -1.27 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "crystal speaker ultrasonic transducer" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Crystal speaker/transducer" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Speaker_Crystal_0_0"
        (rectangle (start -2.54 1.27) (end 1.143 -3.81)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -2.032 -0.635) (end 0.635 -1.905)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.651 -2.286)
            (xy 0.381 -2.286)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.651 -0.254)
            (xy 0.381 -0.254)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -0.635 -2.286)
            (xy -0.635 -3.048)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -0.635 -0.254)
            (xy -0.635 0.508)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.143 1.27)
            (xy 3.683 3.81)
            (xy 3.683 -6.35)
            (xy 1.143 -3.81)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "Speaker_Crystal_1_1"
        (pin input line (at -5.08 0 0) (length 2.54)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -5.08 -2.54 0) (length 2.54)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "MCU_Microchip_ATmega:ATmega8-16P" (in_bom yes) (on_board yes)
      (property "Reference" "U" (id 0) (at -12.7 34.29 0)
        (effects (font (size 1.27 1.27)) (justify left bottom))
      )
      (property "Value" "ATmega8-16P" (id 1) (at 5.08 -34.29 0)
        (effects (font (size 1.27 1.27)) (justify left top))
      )
      (property "Footprint" "Package_DIP:DIP-28_W7.62mm" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27) italic) hide)
      )
      (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-2486-8-bit-avr-microcontroller-atmega8_l_datasheet.pdf" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "AVR 8bit Microcontroller MegaAVR" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "16MHz, 8kB Flash, 1kB SRAM, 512B EEPROM, DIP-28" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "DIP*W7.62mm*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "ATmega8-16P_0_1"
        (rectangle (start -12.7 -33.02) (end 12.7 33.02)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
      )
      (symbol "ATmega8-16P_1_1"
        (pin bidirectional line (at -15.24 27.94 0) (length 2.54)
          (name "PC6/~{RESET}" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -15.24 17.78 0) (length 2.54)
          (name "PB7/XTAL2" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 -20.32 180) (length 2.54)
          (name "PD5" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 -22.86 180) (length 2.54)
          (name "PD6" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 -25.4 180) (length 2.54)
          (name "PD7" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 27.94 180) (length 2.54)
          (name "PB0" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 25.4 180) (length 2.54)
          (name "PB1" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 22.86 180) (length 2.54)
          (name "PB2" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 20.32 180) (length 2.54)
          (name "PB3" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 17.78 180) (length 2.54)
          (name "PB4" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 15.24 180) (length 2.54)
          (name "PB5" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 -7.62 180) (length 2.54)
          (name "PD0" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 35.56 270) (length 2.54)
          (name "AVCC" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -15.24 12.7 0) (length 2.54)
          (name "AREF" (effects (font (size 1.27 1.27))))
          (number "21" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 2.54 -35.56 90) (length 2.54)
          (name "AGND" (effects (font (size 1.27 1.27))))
          (number "22" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 10.16 180) (length 2.54)
          (name "PC0" (effects (font (size 1.27 1.27))))
          (number "23" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 7.62 180) (length 2.54)
          (name "PC1" (effects (font (size 1.27 1.27))))
          (number "24" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 5.08 180) (length 2.54)
          (name "PC2" (effects (font (size 1.27 1.27))))
          (number "25" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 2.54 180) (length 2.54)
          (name "PC3" (effects (font (size 1.27 1.27))))
          (number "26" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 0 180) (length 2.54)
          (name "PC4" (effects (font (size 1.27 1.27))))
          (number "27" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 -2.54 180) (length 2.54)
          (name "PC5" (effects (font (size 1.27 1.27))))
          (number "28" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 -10.16 180) (length 2.54)
          (name "PD1" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 -12.7 180) (length 2.54)
          (name "PD2" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 -15.24 180) (length 2.54)
          (name "PD3" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at 15.24 -17.78 180) (length 2.54)
          (name "PD4" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 35.56 270) (length 2.54)
          (name "VCC" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at 0 -35.56 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin bidirectional line (at -15.24 22.86 0) (length 2.54)
          (name "PB6/XTAL1" (effects (font (size 1.27 1.27))))
          (number "9" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "SW" (id 0) (at 1.27 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "SW_Push" (id 1) (at 0 -1.524 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 5.08 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 5.08 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "SW_Push_0_1"
        (circle (center -2.032 0) (radius 0.508)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 1.27)
            (xy 0 3.048)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.54 1.27)
            (xy -2.54 1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 2.032 0) (radius 0.508)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin passive line (at -5.08 0 0) (length 2.54)
          (name "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 2.54)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "ks0108:KS0108" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
      (property "Reference" "S" (id 0) (at -20.32 20.32 0)
        (effects (font (size 1.524 1.524)))
      )
      (property "Value" "KS0108" (id 1) (at 20.32 20.32 0)
        (effects (font (size 1.524 1.524)))
      )
      (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)
      )
      (symbol "KS0108_0_0"
        (text "ABC" (at 1.27 3.81 0)
          (effects (font (size 12.7 12.7)))
        )
      )
      (symbol "KS0108_0_1"
        (rectangle (start -36.83 13.97) (end 36.83 -5.08)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start 40.64 -13.97) (end -40.64 17.78)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "KS0108_1_1"
        (pin input line (at -38.1 -21.59 90) (length 7.62)
          (name "VSS" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -3.81 -21.59 90) (length 7.62)
          (name "DB3" (effects (font (size 1.27 1.27))))
          (number "10" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 0 -21.59 90) (length 7.62)
          (name "DB4" (effects (font (size 1.27 1.27))))
          (number "11" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 3.81 -21.59 90) (length 7.62)
          (name "DB5" (effects (font (size 1.27 1.27))))
          (number "12" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 7.62 -21.59 90) (length 7.62)
          (name "DB6" (effects (font (size 1.27 1.27))))
          (number "13" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 11.43 -21.59 90) (length 7.62)
          (name "DB7" (effects (font (size 1.27 1.27))))
          (number "14" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 15.24 -21.59 90) (length 7.62)
          (name "CS1" (effects (font (size 1.27 1.27))))
          (number "15" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 19.05 -21.59 90) (length 7.62)
          (name "CS2" (effects (font (size 1.27 1.27))))
          (number "16" (effects (font (size 1.27 1.27))))
        )
        (pin input inverted (at 22.86 -21.59 90) (length 7.62)
          (name "RST" (effects (font (size 1.27 1.27))))
          (number "17" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 26.67 -21.59 90) (length 7.62)
          (name "VEE" (effects (font (size 1.27 1.27))))
          (number "18" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 34.29 -21.59 90) (length 7.62)
          (name "K" (effects (font (size 1.27 1.27))))
          (number "19" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -34.29 -21.59 90) (length 7.62)
          (name "VDD" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 38.1 -21.59 90) (length 7.62)
          (name "A" (effects (font (size 1.27 1.27))))
          (number "20" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -30.48 -21.59 90) (length 7.62)
          (name "V0" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -26.67 -21.59 90) (length 7.62)
          (name "D/I" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -22.86 -21.59 90) (length 7.62)
          (name "R/W" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -19.05 -21.59 90) (length 7.62)
          (name "E" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -15.24 -21.59 90) (length 7.62)
          (name "DB0" (effects (font (size 1.27 1.27))))
          (number "7" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -11.43 -21.59 90) (length 7.62)
          (name "DB1" (effects (font (size 1.27 1.27))))
          (number "8" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -7.62 -21.59 90) (length 7.62)
          (name "DB2" (effects (font (size 1.27 1.27))))
          (number "9" (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))))
        )
      )
    )
  )

  (junction (at 113.03 45.72) (diameter 0) (color 0 0 0 0)
    (uuid 021ab302-6bfd-494d-8045-9531b94fabdb)
  )
  (junction (at 99.06 21.59) (diameter 0) (color 0 0 0 0)
    (uuid 03b0cf0e-2950-4040-95ed-906ec9db7f41)
  )
  (junction (at 92.71 184.15) (diameter 0) (color 0 0 0 0)
    (uuid 077c053e-d6f6-4143-bef2-50136f5d9a4e)
  )
  (junction (at 36.83 46.99) (diameter 0) (color 0 0 0 0)
    (uuid 0a870695-faeb-47c1-892b-cd4304a11cf9)
  )
  (junction (at 184.15 119.38) (diameter 0) (color 0 0 0 0)
    (uuid 22b03740-b4e1-4092-bb47-c6af174dfb7b)
  )
  (junction (at 154.94 71.12) (diameter 0) (color 0 0 0 0)
    (uuid 35318ab5-9d7c-4bdd-a72a-c62185738587)
  )
  (junction (at 110.49 45.72) (diameter 0) (color 0 0 0 0)
    (uuid 39611836-39e9-4763-994b-0111c26ebbbb)
  )
  (junction (at 260.35 16.51) (diameter 0) (color 0 0 0 0)
    (uuid 42692922-11eb-4926-b2ed-f6ed24fceb5c)
  )
  (junction (at 127 68.58) (diameter 0) (color 0 0 0 0)
    (uuid 5f809a60-617d-45eb-94ef-e75ebb0eadf4)
  )
  (junction (at 25.4 78.74) (diameter 0) (color 0 0 0 0)
    (uuid 70ef196b-c1c7-4aa0-ba4d-c73b0df808dc)
  )
  (junction (at 48.26 175.26) (diameter 0) (color 0 0 0 0)
    (uuid a4c1cc93-6121-442a-8272-9bd72c6162d7)
  )
  (junction (at 48.26 184.15) (diameter 0) (color 0 0 0 0)
    (uuid b4da002e-bec9-452a-822e-5c2495a9a01a)
  )
  (junction (at 173.99 119.38) (diameter 0) (color 0 0 0 0)
    (uuid ce5c3918-7bf1-4ddf-bb84-a492f1ea2f0f)
  )
  (junction (at 64.77 184.15) (diameter 0) (color 0 0 0 0)
    (uuid cff6e777-4556-4967-99d9-7474f54e1c4d)
  )
  (junction (at 116.84 29.21) (diameter 0) (color 0 0 0 0)
    (uuid db642c55-18fd-4565-ab05-87ce7e9cd776)
  )
  (junction (at 88.9 21.59) (diameter 0) (color 0 0 0 0)
    (uuid e08ef865-4b5c-4f30-90d0-055c173b6ced)
  )
  (junction (at 265.43 106.68) (diameter 0) (color 0 0 0 0)
    (uuid ed2885b5-f3c4-4bf1-97db-c3789a851293)
  )
  (junction (at 260.35 22.86) (diameter 0) (color 0 0 0 0)
    (uuid f27c76bc-3ddc-45c3-9174-5300c06922f1)
  )

  (no_connect (at 220.98 38.1) (uuid 16834039-4a62-4b91-b724-3329ca64dfc7))
  (no_connect (at 86.36 30.48) (uuid 20c88fbe-d753-418e-8b62-4a856b923a77))
  (no_connect (at 254 38.1) (uuid 3f39750c-d425-4d28-89d8-54454da7c832))
  (no_connect (at 254 40.64) (uuid 3f39750c-d425-4d28-89d8-54454da7c833))

  (bus (pts (xy 50.8 171.45) (xy 50.8 177.8))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 00b4c5a2-82c8-4868-ae7c-d7b313a95ea2)
  )

  (wire (pts (xy 127 129.54) (xy 127 167.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 028756e9-31f6-45aa-ae3f-73933f5cdd8d)
  )
  (wire (pts (xy 99.06 26.67) (xy 96.52 26.67))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 03d6817a-c32c-423c-9fd5-31b363e0f4a1)
  )
  (wire (pts (xy 154.94 46.99) (xy 154.94 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 03de85dc-b128-49ac-8b1c-15f0b91dca0a)
  )
  (wire (pts (xy 152.4 44.45) (xy 151.13 44.45))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 05e277c4-e124-46c1-8d97-7415e5f8a243)
  )
  (wire (pts (xy 275.59 64.77) (xy 275.59 27.94))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 06376680-88dc-4466-bdf5-35da73485560)
  )
  (wire (pts (xy 63.5 86.36) (xy 238.76 86.36))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 069991dc-50a8-4365-9067-51c47d73f796)
  )
  (wire (pts (xy 26.67 81.28) (xy 26.67 82.55))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0ad88b14-75ca-4fe9-9bb6-f5d58fe3e7f9)
  )
  (wire (pts (xy 96.52 60.96) (xy 96.52 66.04))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0c5a4f7c-8841-4b10-bd8c-6cad6e64c7ef)
  )
  (wire (pts (xy 48.26 184.15) (xy 48.26 185.42))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0d4f5d6c-a62e-4ff6-8a37-6e64970c5386)
  )
  (wire (pts (xy 223.52 96.52) (xy 223.52 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0e85ef60-03d0-4f27-ab00-c9ef884830b9)
  )
  (wire (pts (xy 55.88 60.96) (xy 55.88 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0ef4566a-f178-40cc-a5e3-c7d5f850c862)
  )
  (wire (pts (xy 260.35 22.86) (xy 260.35 25.4))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0eff30fd-f307-4f7b-8d51-de2e9913887b)
  )
  (wire (pts (xy 265.43 114.3) (xy 265.43 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 10c48426-3089-4dad-884d-28c2ece73588)
  )
  (wire (pts (xy 220.98 33.02) (xy 208.28 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1105187a-f0e3-4cdc-b46c-b965eb3b8d70)
  )
  (wire (pts (xy 60.96 60.96) (xy 60.96 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 11331dfc-94ab-41c8-aa3b-ac4ad5877ea9)
  )
  (wire (pts (xy 265.43 121.92) (xy 265.43 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1255b667-cfe9-4868-80dc-a66764f0354c)
  )
  (wire (pts (xy 113.03 45.72) (xy 113.03 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1555bf67-d23b-4c54-856f-8cf650e4481e)
  )
  (bus (pts (xy 73.66 170.18) (xy 73.66 163.83))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 157ec0e6-1420-4435-bd43-f1f4eebca671)
  )
  (bus (pts (xy 66.04 163.83) (xy 66.04 170.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 15b49e6e-0e80-4708-8921-ba9c92cfe80d)
  )

  (wire (pts (xy 138.43 49.53) (xy 137.16 49.53))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 175e4d9c-542d-4a9c-81a9-c2dcc3b30f79)
  )
  (wire (pts (xy 212.09 35.56) (xy 212.09 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1772526f-dc44-467c-9cae-85a6f68d9b54)
  )
  (wire (pts (xy 193.04 120.65) (xy 193.04 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1817b29a-436f-48bf-99bd-3a5698c98c46)
  )
  (wire (pts (xy 36.83 45.72) (xy 36.83 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1a62dd2e-9ec8-4222-a6b4-444b6a0b4d7e)
  )
  (wire (pts (xy 48.26 175.26) (xy 49.53 175.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1adf1389-bd4a-4ed2-9e16-23db07be7231)
  )
  (wire (pts (xy 45.72 167.64) (xy 44.45 167.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1c34d6a2-a1e3-49eb-8740-61076e2f3911)
  )
  (bus (pts (xy 50.8 163.83) (xy 58.42 163.83))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1f090ca6-29d1-4986-a2dd-76adacf3c6d2)
  )
  (bus (pts (xy 58.42 177.8) (xy 58.42 171.45))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 233523f9-3dff-445c-811f-f32328cb1417)
  )

  (polyline (pts (xy 264.16 45.72) (xy 264.16 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 26499fda-28f0-49df-ae6e-bde6da76eedc)
  )

  (wire (pts (xy 88.9 26.67) (xy 91.44 26.67))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 26aa4754-9e34-4bb5-b763-5e6af0eae64a)
  )
  (wire (pts (xy 48.26 161.29) (xy 48.26 175.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 26b56c85-3779-400f-bd85-800cd91379b1)
  )
  (wire (pts (xy 248.92 64.77) (xy 250.19 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 28832c25-45ff-4a01-8239-e4338781248f)
  )
  (wire (pts (xy 96.52 26.67) (xy 96.52 30.48))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2a651c5e-519e-42f2-bab3-d536af6f665b)
  )
  (bus (pts (xy 50.8 157.48) (xy 58.42 157.48))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2aab21a9-5287-4659-a98c-4b7e85215d3e)
  )

  (wire (pts (xy 87.63 21.59) (xy 88.9 21.59))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2b2b1940-f5f2-4eea-b924-cae50b3552d8)
  )
  (wire (pts (xy 116.84 33.02) (xy 152.4 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2d14f77a-84c5-42e3-9cc0-03da46afee17)
  )
  (wire (pts (xy 138.43 46.99) (xy 127 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2e56941a-eaa3-46b8-9e24-3e4f87576735)
  )
  (wire (pts (xy 172.72 119.38) (xy 173.99 119.38))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2ef5ba40-5b97-495d-919f-ba3a3bca5615)
  )
  (wire (pts (xy 273.05 30.48) (xy 254 30.48))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 300ba232-db64-4485-b9fe-78ff72053216)
  )
  (wire (pts (xy 88.9 21.59) (xy 88.9 26.67))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 30e2312d-8138-4197-8b9a-3fecdacd4244)
  )
  (bus (pts (xy 35.56 163.83) (xy 43.18 163.83))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 310cc178-c185-404c-ab6c-49771ed2776d)
  )

  (wire (pts (xy 171.45 66.04) (xy 171.45 25.4))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 31899ff7-650c-4330-beb6-f043e7a2f078)
  )
  (bus (pts (xy 43.18 163.83) (xy 43.18 170.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 32bdb73a-385b-4119-bef3-50cc73570324)
  )

  (wire (pts (xy 261.62 114.3) (xy 261.62 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3550b464-6306-46ab-98e2-d1347d0c0479)
  )
  (bus (pts (xy 95.25 176.53) (xy 95.25 182.88))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 369ebbff-ee2e-4eb6-95ea-6d0e3b640d65)
  )

  (wire (pts (xy 173.99 68.58) (xy 173.99 27.94))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 37065c98-4a7a-4331-b778-9d7f5075361a)
  )
  (wire (pts (xy 50.8 99.06) (xy 50.8 60.96))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 37e93e98-6072-4061-ba9a-79645f5ffcde)
  )
  (wire (pts (xy 254 35.56) (xy 267.97 35.56))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 37ef3847-8dca-46a6-97d0-3af46e99c1f3)
  )
  (wire (pts (xy 260.35 16.51) (xy 262.89 16.51))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3879ff75-1061-4ee0-89e1-010dddc7c333)
  )
  (wire (pts (xy 151.13 49.53) (xy 152.4 49.53))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3898f5c8-ee96-4e35-bcf8-d01755d4153d)
  )
  (wire (pts (xy 58.42 60.96) (xy 58.42 91.44))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 394e941d-ac3b-40e0-9fdf-e009d5b7cfa3)
  )
  (wire (pts (xy 152.4 49.53) (xy 152.4 73.66))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3a43f2ef-4839-435a-bede-c90252339a51)
  )
  (wire (pts (xy 240.03 64.77) (xy 241.3 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3a481847-e277-4cb9-b4b5-4343280a856d)
  )
  (wire (pts (xy 242.57 83.82) (xy 242.57 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3a567c06-dc48-4b40-adb0-aa46394be319)
  )
  (wire (pts (xy 175.26 119.38) (xy 173.99 119.38))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3dc5f9f2-9707-41c0-88d7-79010a72454c)
  )
  (bus (pts (xy 50.8 177.8) (xy 58.42 177.8))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3e19905d-7c5b-4f08-bfa2-3aa4b6731ad9)
  )

  (wire (pts (xy 151.13 46.99) (xy 154.94 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 409c54f7-cec2-4b52-aeca-dca5e023379a)
  )
  (wire (pts (xy 219.71 99.06) (xy 219.71 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 40f35fd5-158f-4602-99b9-8c3a914ac031)
  )
  (wire (pts (xy 88.9 21.59) (xy 90.17 21.59))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 413b2b78-3fc8-42ea-bd01-367f13cc19d2)
  )
  (wire (pts (xy 240.03 53.34) (xy 241.3 53.34))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 41cc0679-8161-4215-94fc-78f2db3ca7c0)
  )
  (bus (pts (xy 116.84 163.83) (xy 116.84 170.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 43a44252-b87b-42f4-b646-396b9270046d)
  )

  (wire (pts (xy 184.15 119.38) (xy 189.23 119.38))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 44201832-bc06-4847-b03f-3b8231c23180)
  )
  (wire (pts (xy 78.74 60.96) (xy 78.74 167.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 44a23c5b-9419-4e6e-babd-e3a22d381e78)
  )
  (wire (pts (xy 25.4 81.28) (xy 26.67 81.28))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4500c442-7b89-475a-95ec-430a7c766954)
  )
  (wire (pts (xy 99.06 78.74) (xy 99.06 60.96))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 46edfbb4-bcbe-4f19-a4e1-b05af0e119b9)
  )
  (wire (pts (xy 173.99 123.19) (xy 175.26 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 486fe374-1f78-44ed-8a5e-2e422e0f72e0)
  )
  (wire (pts (xy 88.9 71.12) (xy 88.9 60.96))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 49891a6b-c45f-4344-8d9e-75df749aee73)
  )
  (wire (pts (xy 71.12 60.96) (xy 71.12 132.08))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4f6560d1-6240-4a4e-9298-692f5b8380c3)
  )
  (wire (pts (xy 76.2 175.26) (xy 59.69 175.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 51262407-fe6f-48ea-9bd6-9a9eb81016d7)
  )
  (wire (pts (xy 101.6 63.5) (xy 168.91 63.5))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 52aca99f-a34c-45cb-9001-cfd561720eeb)
  )
  (wire (pts (xy 113.03 54.61) (xy 113.03 55.88))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 530ecd20-89cb-4b0d-9394-0efef7f4295d)
  )
  (polyline (pts (xy 231.14 45.72) (xy 231.14 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 533e0349-e9bd-4e8f-92c0-75eac764bdf1)
  )

  (wire (pts (xy 49.53 161.29) (xy 48.26 161.29))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 53959976-c61d-429c-be40-0e18b8c80021)
  )
  (wire (pts (xy 105.41 132.08) (xy 105.41 180.34))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 541689b6-a9fd-4b30-868b-2457179378be)
  )
  (wire (pts (xy 182.88 119.38) (xy 184.15 119.38))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 55afc7e9-ec7b-4402-9209-decdf37fb483)
  )
  (wire (pts (xy 127 68.58) (xy 173.99 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 57195a29-a4a1-47b8-8cfc-e9d4e20f2d2b)
  )
  (wire (pts (xy 171.45 25.4) (xy 220.98 25.4))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5d550da3-1a19-4fd1-a436-6197aaba7669)
  )
  (bus (pts (xy 58.42 163.83) (xy 58.42 157.48))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5d6ddbbe-5f82-407f-ab4c-3f397da4bd72)
  )

  (wire (pts (xy 81.28 138.43) (xy 45.72 138.43))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 605fc8dd-d392-4d0a-a622-ddfc3f596b0b)
  )
  (wire (pts (xy 33.02 184.15) (xy 48.26 184.15))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 60dd5bd5-8bc2-49b7-ad00-0adc3383f5cc)
  )
  (wire (pts (xy 260.35 111.76) (xy 257.81 111.76))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 61b202b1-9a79-4b59-9c22-b07745116cd6)
  )
  (wire (pts (xy 63.5 60.96) (xy 63.5 86.36))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6251afce-f5c7-4e63-b6ee-0eeeadda8a75)
  )
  (bus (pts (xy 35.56 170.18) (xy 43.18 170.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 62f90603-62e7-4c29-837c-57b7be7b7721)
  )

  (wire (pts (xy 105.41 180.34) (xy 104.14 180.34))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6310fd1c-af66-4732-86a8-e9f0a34f681f)
  )
  (wire (pts (xy 113.03 45.72) (xy 113.03 43.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 631a8614-33a1-42ac-ad29-87f64a3a3729)
  )
  (wire (pts (xy 260.35 110.49) (xy 260.35 111.76))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 63bae6bb-e600-4187-89aa-89a6461a8122)
  )
  (wire (pts (xy 97.79 21.59) (xy 99.06 21.59))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 64e4884f-e152-452d-83cd-ecdcb8e2524a)
  )
  (wire (pts (xy 184.15 123.19) (xy 184.15 119.38))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 665ff7d6-f7af-4ca8-b1cf-88bfc41b08ac)
  )
  (wire (pts (xy 260.35 22.86) (xy 260.35 16.51))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 691e481b-686c-419e-a7c2-a62bd6709101)
  )
  (wire (pts (xy 220.98 35.56) (xy 212.09 35.56))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6aaab5b2-d958-45f9-b439-b397c42d8e40)
  )
  (bus (pts (xy 95.25 176.53) (xy 102.87 176.53))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6bc1486e-e2d3-4154-b5cb-e6bfa1598ee8)
  )

  (wire (pts (xy 138.43 44.45) (xy 137.16 44.45))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6e71c5c3-f5ed-43c6-9c9a-bf5017c8b57d)
  )
  (wire (pts (xy 73.66 129.54) (xy 127 129.54))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 70d3d4ad-ca8c-4296-a0c2-b86722b66973)
  )
  (wire (pts (xy 271.78 16.51) (xy 270.51 16.51))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 71ec1717-25e0-4a5a-9214-03e942bb7f9e)
  )
  (wire (pts (xy 173.99 27.94) (xy 220.98 27.94))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 72b7b96e-c94d-47ff-8317-65017f34ac79)
  )
  (wire (pts (xy 71.12 132.08) (xy 105.41 132.08))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 731d9bfd-847c-46c7-a411-80e6dc8ab9b2)
  )
  (wire (pts (xy 231.14 91.44) (xy 231.14 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 77167940-5596-44b8-af3c-2fdb741d928e)
  )
  (wire (pts (xy 200.66 106.68) (xy 200.66 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 77df0052-32fa-414e-862d-6b2c9d085b14)
  )
  (wire (pts (xy 107.95 21.59) (xy 109.22 21.59))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 77e24705-8fdc-4ee1-9108-5bbcd3d6276d)
  )
  (wire (pts (xy 50.8 99.06) (xy 219.71 99.06))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 793cbc9a-d991-4452-949f-3c10a4a009fa)
  )
  (wire (pts (xy 220.98 30.48) (xy 204.47 30.48))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7ba902a6-009e-48e6-9638-2027731e5198)
  )
  (wire (pts (xy 250.19 85.09) (xy 250.19 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7c9e7706-be25-4b58-abab-4d0b7ec09f34)
  )
  (wire (pts (xy 168.91 22.86) (xy 220.98 22.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7d8d7c3a-72f6-4362-afc1-fa0e8f21c970)
  )
  (wire (pts (xy 91.44 26.67) (xy 91.44 30.48))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7fad9608-c93e-4805-99d5-4901b080869d)
  )
  (wire (pts (xy 273.05 53.34) (xy 273.05 30.48))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8028f837-9637-4f21-85cd-50b5b5e10ec2)
  )
  (wire (pts (xy 267.97 85.09) (xy 250.19 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 81d5838b-a431-413c-bfb6-ac203318b82b)
  )
  (bus (pts (xy 102.87 182.88) (xy 102.87 176.53))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 82a53414-5813-46ff-89bb-0ba22999c039)
  )
  (bus (pts (xy 50.8 157.48) (xy 50.8 163.83))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 836b1eda-684e-4ca7-8e9f-496a3ccb5c07)
  )

  (wire (pts (xy 48.26 101.6) (xy 48.26 60.96))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 85c250ab-4be4-401c-a2dc-efd252b4b5cc)
  )
  (wire (pts (xy 22.86 21.59) (xy 22.86 22.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8b945e8f-7a37-4ac2-892a-038ae702cbe9)
  )
  (bus (pts (xy 35.56 170.18) (xy 35.56 163.83))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8c2a106a-1697-4fb1-9c12-4a1a0b26fc6a)
  )

  (wire (pts (xy 48.26 175.26) (xy 48.26 184.15))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8d500f4b-e9f8-4903-ab0a-a08d84e95cce)
  )
  (wire (pts (xy 93.98 60.96) (xy 93.98 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8ec4a986-1487-437f-865d-75a72525a82a)
  )
  (wire (pts (xy 93.98 180.34) (xy 92.71 180.34))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 91a9d718-35de-48cb-9cf3-a9035fc7a17d)
  )
  (wire (pts (xy 248.92 53.34) (xy 250.19 53.34))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 922c525d-b2c5-417d-a219-f9214525171e)
  )
  (wire (pts (xy 246.38 71.12) (xy 154.94 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 92443956-9969-4a14-bdfa-61c54a686fe8)
  )
  (wire (pts (xy 60.96 88.9) (xy 234.95 88.9))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 980ca874-17f3-4e77-a79d-aafa4594d3b4)
  )
  (wire (pts (xy 91.44 73.66) (xy 91.44 60.96))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 98fdaaa4-ab6c-4567-b372-3bc94fd81e5f)
  )
  (polyline (pts (xy 231.14 45.72) (xy 264.16 45.72))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 99e435f9-35c9-4f7b-81bb-55482767f5f5)
  )

  (wire (pts (xy 48.26 101.6) (xy 215.9 101.6))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9c1fe43c-c52f-4143-be2e-8d34bdee381a)
  )
  (wire (pts (xy 101.6 29.21) (xy 116.84 29.21))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9c5ed5f5-cef3-4b6f-b3ed-9b643ed91639)
  )
  (wire (pts (xy 22.86 30.48) (xy 22.86 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9c691704-c21a-4886-8412-c55614db0282)
  )
  (wire (pts (xy 127 46.99) (xy 127 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9d42b08e-20c7-4a44-ae23-52cfdb4770af)
  )
  (wire (pts (xy 257.81 64.77) (xy 275.59 64.77))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a1305039-b559-44f7-81ea-9f98a0e8639b)
  )
  (wire (pts (xy 60.96 140.97) (xy 60.96 161.29))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a23d29d5-3f13-45cc-b13b-a7f81fbf755a)
  )
  (bus (pts (xy 66.04 163.83) (xy 73.66 163.83))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a2652116-3816-479f-96f4-ee69574d0744)
  )

  (wire (pts (xy 173.99 119.38) (xy 173.99 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a3248b9f-85a5-43b4-8332-23af264cc407)
  )
  (wire (pts (xy 264.16 106.68) (xy 265.43 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a5edafe2-28fe-4e0c-aad3-78eade74e869)
  )
  (wire (pts (xy 66.04 83.82) (xy 242.57 83.82))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a6343994-f407-4d76-a8df-45d3d229e776)
  )
  (wire (pts (xy 45.72 138.43) (xy 45.72 167.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a6359e96-3788-4d46-ae7b-1eaf21f970fd)
  )
  (wire (pts (xy 254 87.63) (xy 254 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a8c8eefb-79b7-4f8b-80af-d19d19f7e89e)
  )
  (wire (pts (xy 116.84 29.21) (xy 116.84 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid abffa26c-31fa-4158-8c93-944660b4af4d)
  )
  (wire (pts (xy 257.81 111.76) (xy 257.81 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid af33b042-4abf-4888-b4db-504e1de2ce52)
  )
  (wire (pts (xy 38.1 45.72) (xy 36.83 45.72))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b08df3c5-b398-4e4c-b51b-72ee62534fce)
  )
  (wire (pts (xy 127 167.64) (xy 125.73 167.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b57b993a-86b6-47d9-a924-7c6dbcf13c7e)
  )
  (wire (pts (xy 215.9 123.19) (xy 215.9 101.6))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b7854b17-6c26-4ed7-bcb7-52f1ce0a5b8c)
  )
  (wire (pts (xy 152.4 33.02) (xy 152.4 44.45))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b8a5dc52-7eab-44b5-89c7-1bcb7bf04bc5)
  )
  (wire (pts (xy 81.28 60.96) (xy 81.28 138.43))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b8c46602-8da2-408c-8ce4-9e8c85beade7)
  )
  (wire (pts (xy 168.91 63.5) (xy 168.91 22.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ba8aa5f0-1fc2-41c7-82e7-a28ec675cc90)
  )
  (wire (pts (xy 38.1 48.26) (xy 36.83 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid baf8b2be-6fba-4a02-a740-45d2317d2a9a)
  )
  (wire (pts (xy 115.57 184.15) (xy 92.71 184.15))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bc7ae565-0a26-42ef-8c00-ed08f026f128)
  )
  (wire (pts (xy 58.42 91.44) (xy 231.14 91.44))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bc98f607-babf-4296-b706-e1cad76ea4c6)
  )
  (wire (pts (xy 53.34 60.96) (xy 53.34 96.52))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bcb4ffac-f99b-48ab-9158-d06e9da4d7b7)
  )
  (wire (pts (xy 73.66 60.96) (xy 73.66 129.54))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bd54677c-227c-4394-89d5-1de88beb80ba)
  )
  (wire (pts (xy 34.29 167.64) (xy 33.02 167.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bdf68a2a-861b-42f2-9e45-dfa6c4505878)
  )
  (bus (pts (xy 124.46 170.18) (xy 124.46 163.83))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bdff255f-42d5-4c10-ae30-dcc54b1263ba)
  )

  (wire (pts (xy 22.86 78.74) (xy 25.4 78.74))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bfe09861-2ee3-488e-adb4-45706518aaaf)
  )
  (polyline (pts (xy 264.16 68.58) (xy 231.14 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c0b7f3c6-3a8b-4cbc-8e07-4879365e8103)
  )

  (wire (pts (xy 64.77 184.15) (xy 48.26 184.15))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c0c432d2-c124-48a4-ac5c-976f87eccdcf)
  )
  (wire (pts (xy 110.49 45.72) (xy 113.03 45.72))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c11720ed-481b-4c34-8b16-e07127707d58)
  )
  (wire (pts (xy 257.81 53.34) (xy 273.05 53.34))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c25500e7-f6cf-455d-b599-a4000751be3f)
  )
  (wire (pts (xy 246.38 71.12) (xy 246.38 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c2ee6eb0-0d11-46ba-9666-ef4ee518169b)
  )
  (wire (pts (xy 25.4 78.74) (xy 30.48 78.74))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c3d14610-c218-4ccb-9e6f-7903751f2c23)
  )
  (wire (pts (xy 53.34 96.52) (xy 223.52 96.52))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c3dd3667-a1cb-45e1-95b3-e340dba28616)
  )
  (wire (pts (xy 116.84 29.21) (xy 119.38 29.21))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c454beff-df47-4e18-a5d2-7a8ead40816a)
  )
  (wire (pts (xy 270.51 33.02) (xy 270.51 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c862c416-204b-408c-86dd-98a83ed09fe6)
  )
  (bus (pts (xy 116.84 163.83) (xy 124.46 163.83))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ca2b9f2c-91fd-43ce-9f0b-f072c3bc71cc)
  )

  (wire (pts (xy 270.51 87.63) (xy 254 87.63))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cada6608-5fff-4982-b07f-bca7392744c1)
  )
  (wire (pts (xy 238.76 123.19) (xy 238.76 86.36))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cc277384-2b3a-49eb-9652-8c2b5eb5074c)
  )
  (bus (pts (xy 66.04 170.18) (xy 73.66 170.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cccb2227-9f9e-4532-b1f6-291ad9c9b584)
  )

  (wire (pts (xy 152.4 73.66) (xy 91.44 73.66))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ce81dad1-984f-418b-94c3-c50892ce4eaf)
  )
  (bus (pts (xy 116.84 170.18) (xy 124.46 170.18))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cef57f78-8ee2-4b5b-971d-07808e19b54b)
  )

  (wire (pts (xy 38.1 78.74) (xy 99.06 78.74))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cf0722bf-7049-407b-9987-8fa84b71e1d4)
  )
  (wire (pts (xy 261.62 114.3) (xy 265.43 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d15a3475-fd99-4b4b-8494-ed8c5e3f4652)
  )
  (wire (pts (xy 76.2 60.96) (xy 76.2 175.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d2c73ff7-297f-495a-9cff-a88fc87dcb88)
  )
  (bus (pts (xy 95.25 182.88) (xy 102.87 182.88))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d3657b2b-4e76-42df-9926-dfe141ed2758)
  )

  (wire (pts (xy 127 29.21) (xy 128.27 29.21))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d4711eb9-ff48-49ce-b815-81232642e24a)
  )
  (bus (pts (xy 50.8 171.45) (xy 58.42 171.45))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d4859eeb-8a6c-42d4-be41-bc3a84238456)
  )

  (wire (pts (xy 254 25.4) (xy 260.35 25.4))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d573a69d-9d88-4cd8-b9a5-38fddab41194)
  )
  (wire (pts (xy 110.49 45.72) (xy 110.49 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d61c24af-15d6-46a5-9fd3-f178cabcc28c)
  )
  (wire (pts (xy 33.02 167.64) (xy 33.02 184.15))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d6a66725-40d4-47d9-8b66-43d02ce90b78)
  )
  (wire (pts (xy 182.88 123.19) (xy 184.15 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d7845539-e4f9-4291-90e2-5fc144064453)
  )
  (wire (pts (xy 55.88 93.98) (xy 227.33 93.98))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dadb52c3-a81d-42a7-b54e-32dff446b5ae)
  )
  (wire (pts (xy 36.83 48.26) (xy 36.83 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dc5eafc9-4a0b-42f7-93fe-1261b6cdbd17)
  )
  (wire (pts (xy 36.83 46.99) (xy 35.56 46.99))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dcce0b76-8b86-4cc6-a6e9-c2a1ab301c64)
  )
  (wire (pts (xy 78.74 21.59) (xy 80.01 21.59))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dd2420ef-94d7-4dce-9f8d-f321b3b2d15f)
  )
  (wire (pts (xy 234.95 88.9) (xy 234.95 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dd70be90-81d5-47a9-bd9f-6f009fec1c2c)
  )
  (wire (pts (xy 60.96 161.29) (xy 59.69 161.29))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid de1d4f70-08be-4d51-95dc-d49133b003c8)
  )
  (wire (pts (xy 109.22 48.26) (xy 110.49 48.26))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid df20b510-0dfd-4c45-ba29-d413d85f66e2)
  )
  (wire (pts (xy 101.6 60.96) (xy 101.6 63.5))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dfc81e9b-e832-46cd-8ec1-443093fd8bfb)
  )
  (wire (pts (xy 66.04 60.96) (xy 66.04 83.82))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e29b8ff0-5e43-4cb4-9273-cd29dcdd985d)
  )
  (wire (pts (xy 254 33.02) (xy 270.51 33.02))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e2bc8d6f-342f-4bc5-be73-c9b3c6c7e441)
  )
  (wire (pts (xy 92.71 180.34) (xy 92.71 184.15))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e56ae513-a61c-43e5-930c-1674b585c0b9)
  )
  (wire (pts (xy 200.66 106.68) (xy 256.54 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e5f566b1-9132-45c0-85fe-e797fb0b6e1f)
  )
  (wire (pts (xy 99.06 21.59) (xy 100.33 21.59))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e81a9935-9539-4f72-99aa-903e6531f779)
  )
  (wire (pts (xy 204.47 30.48) (xy 204.47 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e8c727b3-9828-47ec-892b-172397912e60)
  )
  (wire (pts (xy 189.23 119.38) (xy 189.23 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e927a3ca-d5ce-4ae8-a5dd-167dc53be91c)
  )
  (wire (pts (xy 96.52 66.04) (xy 171.45 66.04))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ed439c36-851c-439e-b552-bcee9a0d96f6)
  )
  (wire (pts (xy 267.97 35.56) (xy 267.97 85.09))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ee1ec6d0-1ea1-46bf-acbf-05c2e28aadb8)
  )
  (wire (pts (xy 154.94 71.12) (xy 88.9 71.12))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ef36da6c-b409-4756-be92-54a96426032e)
  )
  (wire (pts (xy 64.77 167.64) (xy 64.77 184.15))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ef758d34-0c51-4f97-9023-f8df8dbdaeff)
  )
  (wire (pts (xy 83.82 140.97) (xy 60.96 140.97))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f08bb9d1-62a7-4ed2-86c1-98d8dd9341d3)
  )
  (wire (pts (xy 92.71 184.15) (xy 64.77 184.15))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f1f3f9b5-fa66-4c02-80c0-4fa558b48eb7)
  )
  (wire (pts (xy 227.33 93.98) (xy 227.33 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f4ea450f-1d00-4cfa-81aa-8ec0203c705b)
  )
  (wire (pts (xy 256.54 16.51) (xy 260.35 16.51))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f6263eeb-964c-4947-8b06-53dfa9ca22c3)
  )
  (wire (pts (xy 265.43 106.68) (xy 267.97 106.68))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f701839a-88fc-4935-befa-f16fe6ff7b7e)
  )
  (wire (pts (xy 254 22.86) (xy 260.35 22.86))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f8567fb6-c885-4c9a-b0d9-705d6c23f25a)
  )
  (wire (pts (xy 101.6 30.48) (xy 101.6 29.21))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f9827ca1-1418-448d-9618-54a19eec8cbc)
  )
  (wire (pts (xy 115.57 167.64) (xy 115.57 184.15))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f992c099-2750-4fce-a9c0-b1ca9c100d62)
  )
  (wire (pts (xy 220.98 41.91) (xy 220.98 40.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fa70a37d-a700-402c-8d62-5e45aa559d96)
  )
  (wire (pts (xy 93.98 68.58) (xy 127 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fba39b54-dfc0-4788-8283-61790e591d57)
  )
  (wire (pts (xy 78.74 167.64) (xy 74.93 167.64))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fbb695cd-fcc3-4780-bc24-55d7c75b33c7)
  )
  (wire (pts (xy 83.82 60.96) (xy 83.82 140.97))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fbd2d809-9edf-482e-ad88-2857836861cb)
  )
  (wire (pts (xy 99.06 21.59) (xy 99.06 26.67))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fc35230f-af20-4b9c-8d40-63106bfba665)
  )
  (wire (pts (xy 254 27.94) (xy 275.59 27.94))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fcecca06-d342-4b2f-b957-1847949cfedc)
  )
  (wire (pts (xy 208.28 33.02) (xy 208.28 123.19))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid feba5658-a1a1-458a-b4c7-a0e7e5c1e609)
  )
  (wire (pts (xy 109.22 45.72) (xy 110.49 45.72))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fed9278c-6eb5-44fa-95f9-8eb31b8162bf)
  )

  (text "optional" (at 232.41 59.69 0)
    (effects (font (size 1.27 1.27) italic) (justify left bottom))
    (uuid 2efaba24-aee5-4bea-ae84-dbce9fb4b72e)
  )

  (symbol (lib_id "Switch:SW_Push") (at 120.65 167.64 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 002a2500-bad9-4775-bde2-16b5cd46b737)
    (property "Reference" "SW5" (id 0) (at 120.65 160.02 0))
    (property "Value" "A" (id 1) (at 120.65 162.56 0))
    (property "Footprint" "" (id 2) (at 120.65 162.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 120.65 162.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e0b9fcb2-2cc6-4675-a381-4d41bf7dae9e))
    (pin "2" (uuid 98722a2e-596d-415d-9e94-18e2dab6b81d))
  )

  (symbol (lib_id "Device:R") (at 254 53.34 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 007434c1-d54a-4227-99f6-f11787ec2c21)
    (property "Reference" "R1" (id 0) (at 254 46.99 90))
    (property "Value" "330" (id 1) (at 254 49.53 90))
    (property "Footprint" "" (id 2) (at 254 55.118 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 254 53.34 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 67535936-a17d-42d8-bf75-b2da760732b7))
    (pin "2" (uuid cd205d97-1d47-4b62-bfb3-1ee65ddae43e))
  )

  (symbol (lib_id "Device:R") (at 123.19 29.21 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 0b327e1e-f016-40f7-9405-4de62ee7a2fe)
    (property "Reference" "R5" (id 0) (at 123.19 22.86 90))
    (property "Value" "10k" (id 1) (at 123.19 25.4 90))
    (property "Footprint" "" (id 2) (at 123.19 27.432 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 123.19 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8716b869-f528-40ae-9e51-8b0a0d24d464))
    (pin "2" (uuid 85bd41c3-9598-4c38-bbe2-e28b1bc30e91))
  )

  (symbol (lib_id "Switch:SW_Push") (at 39.37 167.64 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 0f8b8512-682c-430d-b367-b186a9cd6f78)
    (property "Reference" "SW2" (id 0) (at 39.37 160.02 0))
    (property "Value" "LEFT" (id 1) (at 39.37 162.56 0))
    (property "Footprint" "" (id 2) (at 39.37 162.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 39.37 162.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 661e5d9b-ccfc-4a22-af7b-142569a69025))
    (pin "2" (uuid 595b9b59-b668-42fa-b835-17663a6d6585))
  )

  (symbol (lib_id "power:GND") (at 22.86 31.75 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 1c923acd-18bd-41ea-8f86-0370109f0f1a)
    (property "Reference" "#PWR02" (id 0) (at 22.86 38.1 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 22.86 36.83 0))
    (property "Footprint" "" (id 2) (at 22.86 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 22.86 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0f1784aa-35b4-4bbc-98c2-79bd2403be36))
  )

  (symbol (lib_id "power:GND") (at 193.04 120.65 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 1f025dee-a539-410f-8be8-b9d19076a02d)
    (property "Reference" "#PWR013" (id 0) (at 193.04 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 193.04 115.57 0))
    (property "Footprint" "" (id 2) (at 193.04 120.65 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 193.04 120.65 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 969599c8-b931-433b-aed3-094c7ad3961c))
  )

  (symbol (lib_id "Switch:SW_Push") (at 69.85 167.64 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 26f5ef97-ce6d-4578-9c98-39b0bc2450d5)
    (property "Reference" "SW3" (id 0) (at 69.85 160.02 0))
    (property "Value" "RIGHT" (id 1) (at 69.85 162.56 0))
    (property "Footprint" "" (id 2) (at 69.85 162.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 69.85 162.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3d2b7f2d-95e8-4bb7-a303-925f216359fb))
    (pin "2" (uuid 8086eab4-2357-4ecf-96a1-de7815d35845))
  )

  (symbol (lib_id "power:GND") (at 78.74 21.59 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 2ec69efc-88e9-4013-b4ce-d5dc9782dfbd)
    (property "Reference" "#PWR06" (id 0) (at 72.39 21.59 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 74.93 21.5899 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 78.74 21.59 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 78.74 21.59 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9f09ed57-75e0-4e42-870c-790185e17063))
  )

  (symbol (lib_id "Switch:SW_Push") (at 54.61 175.26 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 33c70d44-6905-491f-a296-96dea97c00b5)
    (property "Reference" "SW4" (id 0) (at 54.61 167.64 0))
    (property "Value" "DOWN" (id 1) (at 54.61 170.18 0))
    (property "Footprint" "" (id 2) (at 54.61 170.18 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 54.61 170.18 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 99fd1c0c-8f0c-4b85-bc7c-282724e6cbf5))
    (pin "2" (uuid 85ca8e6d-b53b-4a61-9f5a-3be82316e787))
  )

  (symbol (lib_id "power:+5V") (at 22.86 21.59 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 3dff4130-cf84-4fc5-accc-905a7135b795)
    (property "Reference" "#PWR01" (id 0) (at 22.86 25.4 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (id 1) (at 22.86 16.51 0))
    (property "Footprint" "" (id 2) (at 22.86 21.59 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 22.86 21.59 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid fae80f21-12af-42c9-941b-f17fb37fe48d))
  )

  (symbol (lib_id "Device:R") (at 254 64.77 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 484e5bf9-5ff0-425a-aa84-db92769a007e)
    (property "Reference" "R2" (id 0) (at 254 58.42 90))
    (property "Value" "330" (id 1) (at 254 60.96 90))
    (property "Footprint" "" (id 2) (at 254 66.548 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 254 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1183f62a-d713-4e77-81c3-ee9448d57629))
    (pin "2" (uuid 8743d179-444b-4836-903a-f319836fe11d))
  )

  (symbol (lib_id "power:GND") (at 26.67 82.55 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4a4f5e1c-1d23-434e-8df3-d04106a0e9ac)
    (property "Reference" "#PWR03" (id 0) (at 26.67 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 26.67 87.63 0))
    (property "Footprint" "" (id 2) (at 26.67 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 26.67 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ec38ad4b-8e98-4c92-99bb-aaec2e6a4fb9))
  )

  (symbol (lib_id "Device:Crystal") (at 93.98 21.59 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4d8dbc63-c141-4ca9-9bf1-73648396a066)
    (property "Reference" "Y1" (id 0) (at 93.98 13.97 0))
    (property "Value" "16 MHz" (id 1) (at 93.98 16.51 0))
    (property "Footprint" "" (id 2) (at 93.98 21.59 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 93.98 21.59 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0ec91f5c-b9f3-4e32-8ba1-7373c9fdb4cc))
    (pin "2" (uuid a0c4b28b-dc6b-4d9b-9748-f705d264d03e))
  )

  (symbol (lib_id "power:+5V") (at 137.16 49.53 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 4f0f774a-018a-4e93-bd9a-64afb77b7ddf)
    (property "Reference" "#PWR011" (id 0) (at 140.97 49.53 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (id 1) (at 133.35 49.5301 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 137.16 49.53 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 137.16 49.53 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6ac6701b-6019-4892-927b-fbb9639741e7))
  )

  (symbol (lib_id "Device:C") (at 266.7 16.51 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 50e15cdf-4793-48c4-b031-a6fe50a4e887)
    (property "Reference" "C6" (id 0) (at 267.9701 20.32 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "100 nF" (id 1) (at 265.4301 20.32 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 262.89 17.4752 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 266.7 16.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0a0ae451-d0cb-460a-a1a9-8f7c42491840))
    (pin "2" (uuid 3bfac8a8-a637-4193-8588-4fb1c6b2fb10))
  )

  (symbol (lib_id "Device:C") (at 83.82 21.59 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 52691218-b464-4eb6-94d1-6f71aa60d9a0)
    (property "Reference" "C3" (id 0) (at 83.82 13.97 90))
    (property "Value" "22pF" (id 1) (at 83.82 16.51 90))
    (property "Footprint" "" (id 2) (at 87.63 20.6248 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 83.82 21.59 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 01c556c0-f538-4cae-b1dd-9e43ff428d0b))
    (pin "2" (uuid 81840745-3fa5-43c7-9b75-2066737667c6))
  )

  (symbol (lib_id "Device:C_Polarized") (at 22.86 26.67 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 62cce691-f40a-48ff-bf57-4b0c1e93d151)
    (property "Reference" "C2" (id 0) (at 26.67 24.5109 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "470 µF" (id 1) (at 26.67 27.0509 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 23.8252 30.48 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 22.86 26.67 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1703b5e8-ce13-402c-8aa0-ce42287c6378))
    (pin "2" (uuid 43e6006e-c76e-45b3-b2f2-a34f86d11054))
  )

  (symbol (lib_id "power:GND") (at 109.22 21.59 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 65eaa0dc-ae68-4cbc-b4e4-e6f92321816b)
    (property "Reference" "#PWR07" (id 0) (at 115.57 21.59 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 113.03 21.5899 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 109.22 21.59 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 109.22 21.59 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 8626b041-ecb0-4210-b60a-a4bcec07f25e))
  )

  (symbol (lib_id "Device:R") (at 179.07 119.38 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 6b06f8dc-86cf-41a8-b8c4-e1920d2f3090)
    (property "Reference" "R4" (id 0) (at 180.34 113.03 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "47" (id 1) (at 180.34 115.57 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 179.07 121.158 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 179.07 119.38 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6745f54c-b2b9-4c2c-bb1d-3b2c862cca64))
    (pin "2" (uuid 41178f10-9942-424b-8ecb-9661f254316d))
  )

  (symbol (lib_id "Device:LED") (at 245.11 64.77 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 70e12aed-c407-4e85-8630-06e78c3640e4)
    (property "Reference" "D2" (id 0) (at 243.5225 58.42 0))
    (property "Value" "LED" (id 1) (at 243.84 60.96 0))
    (property "Footprint" "" (id 2) (at 245.11 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 245.11 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 84b55a47-d71d-49e2-b4e5-19bac2109be5))
    (pin "2" (uuid 4f5a111a-08e7-4a94-846e-9a6a871750ac))
  )

  (symbol (lib_id "74hct4094:74HCT4094") (at 237.49 31.75 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 71ada6d4-2bdc-415e-9841-dc20ffbfe2a2)
    (property "Reference" "U1" (id 0) (at 237.49 15.24 0)
      (effects (font (size 1.524 1.524)))
    )
    (property "Value" "74HCT4094" (id 1) (at 237.49 19.05 0)
      (effects (font (size 1.524 1.524)))
    )
    (property "Footprint" "" (id 2) (at 237.49 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 237.49 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 867a4c16-a425-4ca8-91c1-76ab6f6b5176))
    (pin "10" (uuid 1882f3d0-98f4-4093-9b2a-e5d3fbd0c9d5))
    (pin "11" (uuid 4fe55daa-8865-45d0-a627-12be5aa3e4ac))
    (pin "12" (uuid f57592b8-297f-440b-9400-0803ec832e8c))
    (pin "13" (uuid a0c31abc-8529-417b-817e-12f55591ef0d))
    (pin "14" (uuid d2d8c792-2986-4c30-8a5c-173bc7fee8d2))
    (pin "15" (uuid 15f62c24-08bc-44cd-b96a-554f83a4ba1e))
    (pin "16" (uuid 12e60b5c-9312-421e-a1f0-3ab5b3f20448))
    (pin "2" (uuid e2b8eac7-d208-431f-be03-681af2566fce))
    (pin "3" (uuid f81d4ed7-483f-4e2b-a550-b7b5b4f574ba))
    (pin "4" (uuid 9bee4d80-cde5-41c3-9077-28c6de820ff2))
    (pin "5" (uuid 89435736-0f74-4d2b-8b2e-14d2974eb8d4))
    (pin "6" (uuid cf8d645b-5da1-4d8a-9df2-e0523bd72167))
    (pin "7" (uuid 5fe21a5e-fdef-4914-a698-cdc64fa7e111))
    (pin "8" (uuid d9df6135-439d-48d2-96bd-9ad112ffd471))
    (pin "9" (uuid 78c540d5-488d-4464-a4e0-98831190b176))
  )

  (symbol (lib_id "power:+5V") (at 256.54 16.51 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 71b8cb61-f470-4cf1-92b6-22e50200c908)
    (property "Reference" "#PWR020" (id 0) (at 260.35 16.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (id 1) (at 252.73 16.5099 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 256.54 16.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 256.54 16.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d10b0992-783f-47c0-828f-df54e26d5872))
  )

  (symbol (lib_id "Device:C_Polarized") (at 34.29 78.74 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 7b27c0a7-a198-4e14-9c61-11ec33430d4c)
    (property "Reference" "C1" (id 0) (at 35.179 71.12 90))
    (property "Value" "220 µF" (id 1) (at 35.179 73.66 90))
    (property "Footprint" "" (id 2) (at 30.48 79.7052 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 34.29 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1882572b-1db6-465d-860d-4ddaf1600639))
    (pin "2" (uuid 1adb6156-1c82-4254-a402-8fde8307abb1))
  )

  (symbol (lib_id "Switch:SW_Push") (at 99.06 180.34 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 7e4c59fc-cf37-4e4a-8069-a112b08aff10)
    (property "Reference" "SW6" (id 0) (at 99.06 172.72 0))
    (property "Value" "B" (id 1) (at 99.06 175.26 0))
    (property "Footprint" "" (id 2) (at 99.06 175.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 99.06 175.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5ef9a9d9-7cc9-4fe7-86d7-c25925801583))
    (pin "2" (uuid 02f24636-6f91-4fc9-8a30-d742aa4071cb))
  )

  (symbol (lib_id "Device:C") (at 104.14 21.59 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 80e86756-483d-4682-85fe-9a05b885cdf1)
    (property "Reference" "C4" (id 0) (at 104.14 13.97 90))
    (property "Value" "22pF" (id 1) (at 104.14 16.51 90))
    (property "Footprint" "" (id 2) (at 107.95 20.6248 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 104.14 21.59 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ea4c63b0-195b-4276-ba3c-e522d3ffda52))
    (pin "2" (uuid 2cb5eaaf-6d0d-462c-bece-37b74dfcd8f5))
  )

  (symbol (lib_id "power:GND") (at 35.56 46.99 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 8281d181-1713-4417-907b-4b3978afca4c)
    (property "Reference" "#PWR04" (id 0) (at 29.21 46.99 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 31.75 46.9899 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 35.56 46.99 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 35.56 46.99 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 512dae0b-b4d7-48cf-8707-3e57ee5f0977))
  )

  (symbol (lib_id "power:GND") (at 240.03 64.77 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 8c3ac992-4b4e-4953-995e-5efdab2a3c5f)
    (property "Reference" "#PWR016" (id 0) (at 233.68 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 236.22 64.7699 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 240.03 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 240.03 64.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 64eccdae-7c87-41e9-aefb-1e038218b7a3))
  )

  (symbol (lib_id "Connector_Generic:Conn_02x03_Odd_Even") (at 146.05 46.99 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 98ece371-dece-47f6-ab08-b95baf25b257)
    (property "Reference" "J1" (id 0) (at 144.78 38.1 0))
    (property "Value" "AVR ISP" (id 1) (at 144.78 40.64 0))
    (property "Footprint" "" (id 2) (at 146.05 46.99 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 146.05 46.99 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9387658b-372e-4e4a-aa86-c14108584259))
    (pin "2" (uuid a6990c5d-aa83-42a8-82ee-ed4b40ae097b))
    (pin "3" (uuid 13209de9-fb75-49e7-acaf-f0f6b9b72bbe))
    (pin "4" (uuid 9ad311c8-a7fd-486e-a93e-a8b2d210f737))
    (pin "5" (uuid a74b37d2-0e4d-4a6b-bf10-8f28cb0a4710))
    (pin "6" (uuid 29796176-e60e-413e-8104-63ed48ff957f))
  )

  (symbol (lib_id "ks0108:KS0108") (at 227.33 144.78 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 9b71ca1c-d192-4287-9f1d-fc82a23e9ee9)
    (property "Reference" "S1" (id 0) (at 269.24 145.415 0)
      (effects (font (size 1.524 1.524)) (justify right))
    )
    (property "Value" "KS0108" (id 1) (at 269.24 149.225 0)
      (effects (font (size 1.524 1.524)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 227.33 144.78 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 227.33 144.78 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 597dbb4f-c266-41a7-a06d-cfa35911bcfe))
    (pin "10" (uuid f9773a61-d4f7-4b2f-b43c-81f39c3e74f9))
    (pin "11" (uuid 2a361cd1-bb98-4414-922e-3d73157c51c3))
    (pin "12" (uuid b340af40-50a7-4e12-b4a8-1e7b4057bbeb))
    (pin "13" (uuid 36ac9279-b07c-4300-96f4-b4ffbf5d18d5))
    (pin "14" (uuid c15c8c43-8323-44bb-8c8d-3a82032904ac))
    (pin "15" (uuid 0e0fd5b5-4d28-4caa-b190-568c3d44a18b))
    (pin "16" (uuid dec68d0b-23d3-440f-9a8c-9b5fdc458b76))
    (pin "17" (uuid 7ec10a01-85d4-4e1f-94dc-3f456d985c90))
    (pin "18" (uuid 537a89c8-00b8-48a2-8564-163333bed543))
    (pin "19" (uuid 8b34223f-eb75-4734-b225-df0afd55b575))
    (pin "2" (uuid 6c048ba9-8da4-4e42-9558-54130fde6f70))
    (pin "20" (uuid 064b62ab-de72-403c-a688-3aa33e521328))
    (pin "3" (uuid 0863abdc-b4e6-4c7e-8328-66adfa8fd9c1))
    (pin "4" (uuid eed153e4-67c5-4cf2-bfdd-c716a91d144f))
    (pin "5" (uuid eaea3f15-03cf-4704-bcd1-6e24c424fdb3))
    (pin "6" (uuid 6543eb9e-70bc-4f57-b3ed-c968d6024e0b))
    (pin "7" (uuid 1568911f-ee1c-4bf6-88a1-27c3d193882e))
    (pin "8" (uuid d49e32cf-b9db-4f4e-b1d0-fb2965c87e3b))
    (pin "9" (uuid ea7df3f3-7f58-492b-917c-7a4cd820fae8))
  )

  (symbol (lib_id "Device:R_Potentiometer") (at 260.35 106.68 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 9ea98644-e388-49da-acbf-1043fc79962c)
    (property "Reference" "RV1" (id 0) (at 260.35 100.33 90))
    (property "Value" "10k" (id 1) (at 260.35 102.87 90))
    (property "Footprint" "" (id 2) (at 260.35 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 260.35 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 352cf3f7-5f43-4c4b-97a2-a5c6e823a8b0))
    (pin "2" (uuid a9ab557e-f35a-48c2-ad97-8051c6ef52ba))
    (pin "3" (uuid f068510e-a75e-4c8f-9c81-ad30ce8fd745))
  )

  (symbol (lib_id "power:+5V") (at 113.03 43.18 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid a65f11fe-e1df-46fe-938d-316fe8546daa)
    (property "Reference" "#PWR08" (id 0) (at 113.03 46.99 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (id 1) (at 113.03 38.1 0))
    (property "Footprint" "" (id 2) (at 113.03 43.18 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 113.03 43.18 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 81e5e2e6-ebe4-4e93-9cf2-434d0395e1d1))
  )

  (symbol (lib_id "power:GND") (at 240.03 53.34 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid a687ae61-8ba0-4a94-8259-73b2b3caf323)
    (property "Reference" "#PWR015" (id 0) (at 233.68 53.34 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 236.22 53.3399 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 240.03 53.34 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 240.03 53.34 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f95c1091-5287-40cc-8adc-4d15c6f45cc2))
  )

  (symbol (lib_id "power:GND") (at 113.03 55.88 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid ac78f3fe-4922-458e-aa7a-d6915db0a4da)
    (property "Reference" "#PWR021" (id 0) (at 113.03 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 113.03 60.96 0))
    (property "Footprint" "" (id 2) (at 113.03 55.88 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 113.03 55.88 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 67f595f2-a040-45ef-9452-bd91c5174948))
  )

  (symbol (lib_id "power:GND") (at 137.16 44.45 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid acc8e7bc-fc73-4d50-9fe6-7c30265e80e7)
    (property "Reference" "#PWR010" (id 0) (at 130.81 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 133.35 44.4501 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 137.16 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 137.16 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid dc62daf0-3252-4c7c-9783-525c6b70871c))
  )

  (symbol (lib_id "Device:R") (at 179.07 123.19 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid b6e3cb0e-667e-44d9-b9b3-bfb283df6b87)
    (property "Reference" "R3" (id 0) (at 179.07 129.54 90))
    (property "Value" "100" (id 1) (at 179.07 127 90))
    (property "Footprint" "" (id 2) (at 179.07 124.968 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 179.07 123.19 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7a1909fc-8035-431b-8164-54efa6fb5d12))
    (pin "2" (uuid ab9b541e-8ef7-4dea-b9fb-0f68ef646f61))
  )

  (symbol (lib_id "Device:LED") (at 245.11 53.34 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid b7d5af5d-1697-424d-88fb-082c1609fbac)
    (property "Reference" "D1" (id 0) (at 243.5225 46.99 0))
    (property "Value" "LED" (id 1) (at 243.5225 49.53 0))
    (property "Footprint" "" (id 2) (at 245.11 53.34 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 245.11 53.34 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid fe950717-a6f1-475d-bc4b-e1e05f897d64))
    (pin "2" (uuid a3234b15-6725-48ae-8847-be17a69d2a7b))
  )

  (symbol (lib_id "power:+5V") (at 128.27 29.21 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid c812e8ff-9ae4-440e-a096-01c7a2970cb7)
    (property "Reference" "#PWR09" (id 0) (at 124.46 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (id 1) (at 132.08 29.2099 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 128.27 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 128.27 29.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2fc5c034-818b-4f0f-a69c-5e8a22b4eec6))
  )

  (symbol (lib_id "Device:C") (at 113.03 50.8 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid cdb2878b-f702-4635-9e4c-1cc8cfe5a84c)
    (property "Reference" "C5" (id 0) (at 116.84 49.5299 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "100 nF" (id 1) (at 116.84 52.0699 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "" (id 2) (at 112.0648 46.99 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 113.03 50.8 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3f6533ba-c4f9-46fc-b56b-e4570f6ba8d8))
    (pin "2" (uuid f6662114-e94f-4466-8b01-5f4d76363a86))
  )

  (symbol (lib_id "Switch:SW_Push") (at 54.61 161.29 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid d2e7a734-2bbe-48fa-8d8e-8094dbc62401)
    (property "Reference" "SW1" (id 0) (at 54.61 153.67 0))
    (property "Value" "UP" (id 1) (at 54.61 156.21 0))
    (property "Footprint" "" (id 2) (at 54.61 156.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 54.61 156.21 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 19f547f4-ddfc-4e32-aa0e-8a536970c4d5))
    (pin "2" (uuid b981de5e-77aa-4e0d-b11d-cad24538b925))
  )

  (symbol (lib_id "power:GND") (at 271.78 16.51 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid d38263b5-d146-499a-a50b-89d65ebe60eb)
    (property "Reference" "#PWR022" (id 0) (at 278.13 16.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 276.86 16.51 0))
    (property "Footprint" "" (id 2) (at 271.78 16.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 271.78 16.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 48cca43f-df8d-46c0-a705-600595f5e315))
  )

  (symbol (lib_id "power:GND") (at 220.98 41.91 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid d83b4012-c92a-414b-b99b-3480cdd9a0aa)
    (property "Reference" "#PWR014" (id 0) (at 220.98 48.26 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 220.98 46.99 0))
    (property "Footprint" "" (id 2) (at 220.98 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 220.98 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a9ccb533-f004-4f0e-85b6-fc4a979f28e1))
  )

  (symbol (lib_id "power:GND") (at 265.43 121.92 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid dca0a4c3-ed73-4f98-a90a-d6418159e696)
    (property "Reference" "#PWR019" (id 0) (at 265.43 115.57 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 265.43 116.84 0))
    (property "Footprint" "" (id 2) (at 265.43 121.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 265.43 121.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 90dd4c56-7470-4347-92b0-75a721c04596))
  )

  (symbol (lib_id "MCU_Microchip_ATmega:ATmega8-16P") (at 73.66 45.72 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid e053a144-33eb-4ad0-a28f-c3ec3e6f8862)
    (property "Reference" "U2" (id 0) (at 44.45 30.48 90))
    (property "Value" "ATmega8-16P" (id 1) (at 60.96 30.48 90))
    (property "Footprint" "Package_DIP:DIP-28_W7.62mm" (id 2) (at 73.66 45.72 0)
      (effects (font (size 1.27 1.27) italic) hide)
    )
    (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-2486-8-bit-avr-microcontroller-atmega8_l_datasheet.pdf" (id 3) (at 73.66 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7f0c1ea5-31ba-4e3c-b23d-dc37801fb19b))
    (pin "10" (uuid 6828e5b1-9686-4f2b-afeb-e93e9ba5ac33))
    (pin "11" (uuid ecdb34a2-4cdc-4a30-a88c-cbf5ac83399c))
    (pin "12" (uuid 8acaf6b9-a3a5-456a-a486-3bf8ee9b4b79))
    (pin "13" (uuid 66aa1bc3-ffb7-43d4-88ae-6c86417d54bc))
    (pin "14" (uuid 67d86072-2f7f-4489-beb0-6ba3aea587e9))
    (pin "15" (uuid f094a04e-97d3-4bf8-800d-8371147afe46))
    (pin "16" (uuid 93214faa-922d-478e-8ec1-80d24a2b2723))
    (pin "17" (uuid 7e61ab51-cbb1-4b94-801a-34a87b40bc16))
    (pin "18" (uuid 2e1e6281-0991-4814-9e62-4e28c44fa195))
    (pin "19" (uuid 2c7f194e-4495-4fdc-8feb-e71a81fd860a))
    (pin "2" (uuid 4512e1de-1ae8-4271-aab5-cfad75ab4cbf))
    (pin "20" (uuid 2418aed3-fab0-4ebf-be99-31f25345da31))
    (pin "21" (uuid 0f426fa1-fc2f-405a-ad53-6e830f7ee04b))
    (pin "22" (uuid baaf558e-dfc4-48a9-a946-c8fcc5540262))
    (pin "23" (uuid 0b9e7ca0-9d50-423a-94c8-1dda9a2eaa73))
    (pin "24" (uuid 8e10817d-5099-439b-9504-1c054cce61ce))
    (pin "25" (uuid 02bc6b3e-0522-400e-b6b8-d18c2cfd2960))
    (pin "26" (uuid d44b001a-c4b5-4120-9284-6c7991794e28))
    (pin "27" (uuid 1913ae2c-1bc2-48d9-914f-4c532d02ffb4))
    (pin "28" (uuid 0f47421c-1e82-4036-b8e8-a06d02b43b87))
    (pin "3" (uuid bcc40fb8-020a-4739-8e85-82c40b31a03a))
    (pin "4" (uuid 6d025ced-6ac4-4b51-9abd-c7c1dda9f9b8))
    (pin "5" (uuid 4b9a1e55-d75d-425c-9459-6ce1d0c58dbe))
    (pin "6" (uuid 115c8e86-c44c-49a7-bc69-7044c5ce83c9))
    (pin "7" (uuid fa41102b-8163-4b6e-a5da-850b9aac1839))
    (pin "8" (uuid eee7b72b-b900-4fb7-9e9e-ffec25e17b7d))
    (pin "9" (uuid 7dc1ce1b-568c-4602-a1cf-8ad58eddd87c))
  )

  (symbol (lib_id "Device:Speaker_Crystal") (at 20.32 81.28 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid e3eafd25-9d22-4ffc-b6b6-b73b92148618)
    (property "Reference" "BZ1" (id 0) (at 20.32 73.66 0))
    (property "Value" "Buzzer" (id 1) (at 20.32 86.36 0))
    (property "Footprint" "" (id 2) (at 21.209 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 21.209 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3fc8664b-dac7-4f98-8027-ef29aedf7232))
    (pin "2" (uuid cd8369c7-4992-4478-823f-f6150748eff2))
  )

  (symbol (lib_id "power:GND") (at 48.26 185.42 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid e83cec32-4be6-4967-b8ce-5b5da274f928)
    (property "Reference" "#PWR05" (id 0) (at 48.26 191.77 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 48.26 190.5 0))
    (property "Footprint" "" (id 2) (at 48.26 185.42 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 48.26 185.42 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4fc61e53-1703-4760-9cd9-625e65aafa5c))
  )

  (symbol (lib_id "power:+5V") (at 267.97 106.68 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid ea24e1c7-e4c6-425c-92f4-ec7df5755ab9)
    (property "Reference" "#PWR018" (id 0) (at 264.16 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (id 1) (at 271.78 106.6799 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 267.97 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 267.97 106.68 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 10f42549-fcdc-49b4-af5f-9159c86e3766))
  )

  (symbol (lib_id "power:+5V") (at 172.72 119.38 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid ffad65e6-eaa7-4d7a-8516-d01cec99aa38)
    (property "Reference" "#PWR012" (id 0) (at 176.53 119.38 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+5V" (id 1) (at 168.91 119.3799 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 172.72 119.38 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 172.72 119.38 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e0e97a7a-cc44-458d-8d10-de5796ebbdd7))
  )

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

  (symbol_instances
    (path "/3dff4130-cf84-4fc5-accc-905a7135b795"
      (reference "#PWR01") (unit 1) (value "+5V") (footprint "")
    )
    (path "/1c923acd-18bd-41ea-8f86-0370109f0f1a"
      (reference "#PWR02") (unit 1) (value "GND") (footprint "")
    )
    (path "/4a4f5e1c-1d23-434e-8df3-d04106a0e9ac"
      (reference "#PWR03") (unit 1) (value "GND") (footprint "")
    )
    (path "/8281d181-1713-4417-907b-4b3978afca4c"
      (reference "#PWR04") (unit 1) (value "GND") (footprint "")
    )
    (path "/e83cec32-4be6-4967-b8ce-5b5da274f928"
      (reference "#PWR05") (unit 1) (value "GND") (footprint "")
    )
    (path "/2ec69efc-88e9-4013-b4ce-d5dc9782dfbd"
      (reference "#PWR06") (unit 1) (value "GND") (footprint "")
    )
    (path "/65eaa0dc-ae68-4cbc-b4e4-e6f92321816b"
      (reference "#PWR07") (unit 1) (value "GND") (footprint "")
    )
    (path "/a65f11fe-e1df-46fe-938d-316fe8546daa"
      (reference "#PWR08") (unit 1) (value "+5V") (footprint "")
    )
    (path "/c812e8ff-9ae4-440e-a096-01c7a2970cb7"
      (reference "#PWR09") (unit 1) (value "+5V") (footprint "")
    )
    (path "/acc8e7bc-fc73-4d50-9fe6-7c30265e80e7"
      (reference "#PWR010") (unit 1) (value "GND") (footprint "")
    )
    (path "/4f0f774a-018a-4e93-bd9a-64afb77b7ddf"
      (reference "#PWR011") (unit 1) (value "+5V") (footprint "")
    )
    (path "/ffad65e6-eaa7-4d7a-8516-d01cec99aa38"
      (reference "#PWR012") (unit 1) (value "+5V") (footprint "")
    )
    (path "/1f025dee-a539-410f-8be8-b9d19076a02d"
      (reference "#PWR013") (unit 1) (value "GND") (footprint "")
    )
    (path "/d83b4012-c92a-414b-b99b-3480cdd9a0aa"
      (reference "#PWR014") (unit 1) (value "GND") (footprint "")
    )
    (path "/a687ae61-8ba0-4a94-8259-73b2b3caf323"
      (reference "#PWR015") (unit 1) (value "GND") (footprint "")
    )
    (path "/8c3ac992-4b4e-4953-995e-5efdab2a3c5f"
      (reference "#PWR016") (unit 1) (value "GND") (footprint "")
    )
    (path "/ea24e1c7-e4c6-425c-92f4-ec7df5755ab9"
      (reference "#PWR018") (unit 1) (value "+5V") (footprint "")
    )
    (path "/dca0a4c3-ed73-4f98-a90a-d6418159e696"
      (reference "#PWR019") (unit 1) (value "GND") (footprint "")
    )
    (path "/71b8cb61-f470-4cf1-92b6-22e50200c908"
      (reference "#PWR020") (unit 1) (value "+5V") (footprint "")
    )
    (path "/ac78f3fe-4922-458e-aa7a-d6915db0a4da"
      (reference "#PWR021") (unit 1) (value "GND") (footprint "")
    )
    (path "/d38263b5-d146-499a-a50b-89d65ebe60eb"
      (reference "#PWR022") (unit 1) (value "GND") (footprint "")
    )
    (path "/e3eafd25-9d22-4ffc-b6b6-b73b92148618"
      (reference "BZ1") (unit 1) (value "Buzzer") (footprint "")
    )
    (path "/7b27c0a7-a198-4e14-9c61-11ec33430d4c"
      (reference "C1") (unit 1) (value "220 µF") (footprint "")
    )
    (path "/62cce691-f40a-48ff-bf57-4b0c1e93d151"
      (reference "C2") (unit 1) (value "470 µF") (footprint "")
    )
    (path "/52691218-b464-4eb6-94d1-6f71aa60d9a0"
      (reference "C3") (unit 1) (value "22pF") (footprint "")
    )
    (path "/80e86756-483d-4682-85fe-9a05b885cdf1"
      (reference "C4") (unit 1) (value "22pF") (footprint "")
    )
    (path "/cdb2878b-f702-4635-9e4c-1cc8cfe5a84c"
      (reference "C5") (unit 1) (value "100 nF") (footprint "")
    )
    (path "/50e15cdf-4793-48c4-b031-a6fe50a4e887"
      (reference "C6") (unit 1) (value "100 nF") (footprint "")
    )
    (path "/b7d5af5d-1697-424d-88fb-082c1609fbac"
      (reference "D1") (unit 1) (value "LED") (footprint "")
    )
    (path "/70e12aed-c407-4e85-8630-06e78c3640e4"
      (reference "D2") (unit 1) (value "LED") (footprint "")
    )
    (path "/98ece371-dece-47f6-ab08-b95baf25b257"
      (reference "J1") (unit 1) (value "AVR ISP") (footprint "")
    )
    (path "/007434c1-d54a-4227-99f6-f11787ec2c21"
      (reference "R1") (unit 1) (value "330") (footprint "")
    )
    (path "/484e5bf9-5ff0-425a-aa84-db92769a007e"
      (reference "R2") (unit 1) (value "330") (footprint "")
    )
    (path "/b6e3cb0e-667e-44d9-b9b3-bfb283df6b87"
      (reference "R3") (unit 1) (value "100") (footprint "")
    )
    (path "/6b06f8dc-86cf-41a8-b8c4-e1920d2f3090"
      (reference "R4") (unit 1) (value "47") (footprint "")
    )
    (path "/0b327e1e-f016-40f7-9405-4de62ee7a2fe"
      (reference "R5") (unit 1) (value "10k") (footprint "")
    )
    (path "/9ea98644-e388-49da-acbf-1043fc79962c"
      (reference "RV1") (unit 1) (value "10k") (footprint "")
    )
    (path "/9b71ca1c-d192-4287-9f1d-fc82a23e9ee9"
      (reference "S1") (unit 1) (value "KS0108") (footprint "")
    )
    (path "/d2e7a734-2bbe-48fa-8d8e-8094dbc62401"
      (reference "SW1") (unit 1) (value "UP") (footprint "")
    )
    (path "/0f8b8512-682c-430d-b367-b186a9cd6f78"
      (reference "SW2") (unit 1) (value "LEFT") (footprint "")
    )
    (path "/26f5ef97-ce6d-4578-9c98-39b0bc2450d5"
      (reference "SW3") (unit 1) (value "RIGHT") (footprint "")
    )
    (path "/33c70d44-6905-491f-a296-96dea97c00b5"
      (reference "SW4") (unit 1) (value "DOWN") (footprint "")
    )
    (path "/002a2500-bad9-4775-bde2-16b5cd46b737"
      (reference "SW5") (unit 1) (value "A") (footprint "")
    )
    (path "/7e4c59fc-cf37-4e4a-8069-a112b08aff10"
      (reference "SW6") (unit 1) (value "B") (footprint "")
    )
    (path "/71ada6d4-2bdc-415e-9841-dc20ffbfe2a2"
      (reference "U1") (unit 1) (value "74HCT4094") (footprint "")
    )
    (path "/e053a144-33eb-4ad0-a28f-c3ec3e6f8862"
      (reference "U2") (unit 1) (value "ATmega8-16P") (footprint "Package_DIP:DIP-28_W7.62mm")
    )
    (path "/4d8dbc63-c141-4ca9-9bf1-73648396a066"
      (reference "Y1") (unit 1) (value "16 MHz") (footprint "")
    )
  )
)
bues.ch cgit interface