-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbutton_matrix.kicad_sch
3580 lines (3515 loc) · 141 KB
/
button_matrix.kicad_sch
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
(kicad_sch (version 20230121) (generator eeschema)
(uuid 630c5a5d-df9a-42b1-b8c9-4d1ea447e904)
(paper "USLetter" portrait)
(title_block
(title "TI-83x Button Matrix")
(date "2023-02-21")
(rev "A")
(company "Licensed under CERN-OHL-S v2")
)
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (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))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(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 "Interface_Expansion:TCA9535PWR" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -11.43 24.13 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TCA9535PWR" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:TSSOP-24_4.4x7.8mm_P0.65mm" (at 26.67 -25.4 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/ds/symlink/tca9535.pdf" (at -12.7 22.86 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "ti parallel port" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "16-bit I/O expander, I2C and SMBus interface, interrupts, w/o pull-ups, TSSOP-24 package" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TSSOP*4.4x7.8mm*P0.65mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TCA9535PWR_0_1"
(rectangle (start -12.7 22.86) (end 12.7 -22.86)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "TCA9535PWR_1_1"
(pin open_collector line (at -17.78 15.24 0) (length 5.08)
(name "~{INT}" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 5.08 180) (length 5.08)
(name "P06" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 2.54 180) (length 5.08)
(name "P07" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -27.94 90) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -2.54 180) (length 5.08)
(name "P10" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -5.08 180) (length 5.08)
(name "P11" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -7.62 180) (length 5.08)
(name "P12" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -10.16 180) (length 5.08)
(name "P13" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -12.7 180) (length 5.08)
(name "P14" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -15.24 180) (length 5.08)
(name "P15" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -17.78 180) (length 5.08)
(name "P16" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -17.78 0) (length 5.08)
(name "A1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -20.32 180) (length 5.08)
(name "P17" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -20.32 0) (length 5.08)
(name "A0" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 17.78 0) (length 5.08)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 20.32 0) (length 5.08)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 27.94 270) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -15.24 0) (length 5.08)
(name "A2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 20.32 180) (length 5.08)
(name "P00" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 17.78 180) (length 5.08)
(name "P01" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 15.24 180) (length 5.08)
(name "P02" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 12.7 180) (length 5.08)
(name "P03" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 10.16 180) (length 5.08)
(name "P04" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 7.62 180) (length 5.08)
(name "P05" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "TS07-667-37-BK-100-SMT-TR:TS07-667-37-BK-100-SMT-TR" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "S60" (at 0 12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TS07-667-37-BK-100-SMT-TR" (at 0 10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "SnapEDA Library:SW_TS07-667-37-BK-100-SMT-TR" (at 8.255 13.335 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "MANUFACTURER" "CUI Devices" (at 13.335 13.97 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "PARTREV" "1.0" (at 20.955 12.7 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "STANDARD" "Manufacturer Recommendations" (at 8.255 13.335 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "MAXIMUM_PACKAGE_HEIGHT" "2.7 mm" (at 22.86 13.335 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "TS07-667-37-BK-100-SMT-TR_0_0"
(rectangle (start -3.81 7.62) (end 3.81 -6.985)
(stroke (width 0.254) (type default))
(fill (type background))
)
(circle (center 0 -1.905) (radius 0.635)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 0 -5.08)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 5.08)
(xy 0 2.54)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -2.2352)
(xy 2.54 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -5.08)
(xy -2.54 -5.08)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 5.08)
(xy -2.54 5.08)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(circle (center 0 1.905) (radius 0.635)
(stroke (width 0.254) (type default))
(fill (type none))
)
(pin passive line (at -8.89 5.08 0) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -8.89 -5.08 0) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 8.89 5.08 180) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 8.89 -5.08 180) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "TS07-667-37-BK-100-SMT-TR_1" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "S52" (at 0 11.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TS07-667-37-BK-100-SMT-TR_1" (at 0 8.89 0)
(effects (font (size 0.762 0.762)))
)
(property "Footprint" "SnapEDA Library:SW_TS07-667-37-BK-100-SMT-TR" (at 8.255 13.335 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "MANUFACTURER" "CUI Devices" (at 13.335 13.97 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "PARTREV" "1.0" (at 20.955 12.7 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "STANDARD" "Manufacturer Recommendations" (at 8.255 13.335 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "MAXIMUM_PACKAGE_HEIGHT" "2.7 mm" (at 22.86 13.335 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "TS07-667-37-BK-100-SMT-TR_1_0_0"
(rectangle (start -3.81 7.62) (end 3.81 -6.985)
(stroke (width 0.254) (type default))
(fill (type background))
)
(circle (center 0 -1.905) (radius 0.635)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 0 -5.08)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 5.08)
(xy 0 2.54)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -2.2352)
(xy 2.54 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -5.08)
(xy -2.54 -5.08)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 5.08)
(xy -2.54 5.08)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(circle (center 0 1.905) (radius 0.635)
(stroke (width 0.254) (type default))
(fill (type none))
)
(pin passive line (at -8.89 5.08 0) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at -8.89 -5.08 0) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 8.89 5.08 180) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 8.89 -5.08 180) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "power:+3.3V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+3.3V" (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+3.3V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (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" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (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" (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))
(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 73.66 185.42) (diameter 0) (color 0 0 0 0)
(uuid 08f8dab0-d03b-4257-8fc1-4a0aa6cd1daf)
)
(junction (at 195.58 137.16) (diameter 0) (color 0 0 0 0)
(uuid 0d619870-0044-432b-bca7-b35d7dc6402c)
)
(junction (at 27.94 185.42) (diameter 0) (color 0 0 0 0)
(uuid 0ea7c359-e0f3-4f5f-9773-799e64dddcec)
)
(junction (at 50.8 63.5) (diameter 0) (color 0 0 0 0)
(uuid 0ee3c9ad-5685-4d89-a400-33703c4407bb)
)
(junction (at 119.38 185.42) (diameter 0) (color 0 0 0 0)
(uuid 10459d9e-f666-43dd-b7eb-f21faff3a0d6)
)
(junction (at 27.94 43.18) (diameter 0) (color 0 0 0 0)
(uuid 19e1392c-3b77-4e52-a8e0-b2c0fb8d28af)
)
(junction (at 50.8 83.82) (diameter 0) (color 0 0 0 0)
(uuid 1a079f54-5017-48b2-948c-02638b20bb46)
)
(junction (at 96.52 144.78) (diameter 0) (color 0 0 0 0)
(uuid 1b630084-a6b4-4ca9-b9f0-8a1d9bc8e09b)
)
(junction (at 27.94 124.46) (diameter 0) (color 0 0 0 0)
(uuid 1c43e085-4516-4543-a737-8d1c7bdfdbfd)
)
(junction (at 27.94 63.5) (diameter 0) (color 0 0 0 0)
(uuid 1cab3dca-c144-4023-b925-b0f107c39b35)
)
(junction (at 73.66 205.74) (diameter 0) (color 0 0 0 0)
(uuid 2be1132e-475d-4874-8ba7-c3b0f5f180f1)
)
(junction (at 119.38 165.1) (diameter 0) (color 0 0 0 0)
(uuid 31f3dbf7-99ef-4004-90e5-4d475641374c)
)
(junction (at 27.94 165.1) (diameter 0) (color 0 0 0 0)
(uuid 354528ae-fe3a-42c0-b705-567237f31837)
)
(junction (at 119.38 205.74) (diameter 0) (color 0 0 0 0)
(uuid 3ec2d132-ad01-40a0-92e2-3d866da205c3)
)
(junction (at 119.38 144.78) (diameter 0) (color 0 0 0 0)
(uuid 3ed586e5-3ca2-4e14-a9c6-a1a2a8588854)
)
(junction (at 73.66 83.82) (diameter 0) (color 0 0 0 0)
(uuid 506e8be6-b90a-40f7-a6f8-6a3e00e97579)
)
(junction (at 50.8 205.74) (diameter 0) (color 0 0 0 0)
(uuid 59ca6e56-5054-435c-9a22-013d9f33eec4)
)
(junction (at 50.8 185.42) (diameter 0) (color 0 0 0 0)
(uuid 5b9b641e-775c-44e7-b1b4-c703a769be69)
)
(junction (at 96.52 104.14) (diameter 0) (color 0 0 0 0)
(uuid 5d803f82-0d11-4e9f-9a2e-25f1dea931d2)
)
(junction (at 50.8 43.18) (diameter 0) (color 0 0 0 0)
(uuid 64934330-b68a-480d-82bb-ab4874331af0)
)
(junction (at 50.8 165.1) (diameter 0) (color 0 0 0 0)
(uuid 661e091b-1c9e-4e40-9c82-b1fd39ecaa8c)
)
(junction (at 73.66 43.18) (diameter 0) (color 0 0 0 0)
(uuid 6800a837-9854-4ab2-b971-8dc3f8eca7d3)
)
(junction (at 73.66 144.78) (diameter 0) (color 0 0 0 0)
(uuid 696f5b91-00c8-4615-8441-78b02eea26ec)
)
(junction (at 50.8 144.78) (diameter 0) (color 0 0 0 0)
(uuid 6b20ff26-d742-4e8e-b884-aa73e3e9ffa9)
)
(junction (at 160.02 142.24) (diameter 0) (color 0 0 0 0)
(uuid 6b58fdfa-8c78-445f-9c66-7227fb113440)
)
(junction (at 96.52 124.46) (diameter 0) (color 0 0 0 0)
(uuid 6caaac70-1601-4e88-83fe-54c19862ecc1)
)
(junction (at 96.52 43.18) (diameter 0) (color 0 0 0 0)
(uuid 6ef36fbc-0805-4b29-8ddd-083d180682ea)
)
(junction (at 96.52 205.74) (diameter 0) (color 0 0 0 0)
(uuid 7181c178-5ea9-4cc5-9ef4-a645b31ff002)
)
(junction (at 73.66 124.46) (diameter 0) (color 0 0 0 0)
(uuid 7b40f7da-c374-4e24-bd41-70bee40e9a4d)
)
(junction (at 195.58 132.08) (diameter 0) (color 0 0 0 0)
(uuid 7cc88f5f-8cb9-4105-b4bd-8aedaa3c796c)
)
(junction (at 119.38 124.46) (diameter 0) (color 0 0 0 0)
(uuid 84f17ae5-384a-40cb-a206-fb42f7748994)
)
(junction (at 27.94 205.74) (diameter 0) (color 0 0 0 0)
(uuid 86bb3ee1-5c8f-493f-9c03-07e200c01fd5)
)
(junction (at 160.02 139.7) (diameter 0) (color 0 0 0 0)
(uuid 8d32b4e4-f232-4fde-813d-ea3a5cb390c0)
)
(junction (at 119.38 104.14) (diameter 0) (color 0 0 0 0)
(uuid a3c73b47-918d-4a80-a119-f9f1429c15b1)
)
(junction (at 195.58 142.24) (diameter 0) (color 0 0 0 0)
(uuid ab1b3a7f-1614-4cb5-b894-9f9b6d19d962)
)
(junction (at 96.52 83.82) (diameter 0) (color 0 0 0 0)
(uuid afb24614-0625-4876-8602-ec37d9713f28)
)
(junction (at 96.52 63.5) (diameter 0) (color 0 0 0 0)
(uuid b2c05bbf-ae67-4e38-89ae-431b04cea420)
)
(junction (at 177.8 149.86) (diameter 0) (color 0 0 0 0)
(uuid b877bb91-6147-48ca-8bc2-7d80c1fda6fc)
)
(junction (at 119.38 83.82) (diameter 0) (color 0 0 0 0)
(uuid bb47e7f7-735f-4e3a-a41a-1f04a2b074f2)
)
(junction (at 177.8 93.98) (diameter 0) (color 0 0 0 0)
(uuid bd5b0d80-1615-4fc9-b30b-8023d9d7243a)
)
(junction (at 27.94 144.78) (diameter 0) (color 0 0 0 0)
(uuid be38f4c3-4613-42e5-a5d4-6e7db3c2677e)
)
(junction (at 50.8 104.14) (diameter 0) (color 0 0 0 0)
(uuid cef472ac-ff76-451b-bb12-dcf9b87e2a64)
)
(junction (at 73.66 104.14) (diameter 0) (color 0 0 0 0)
(uuid d27c05a1-362a-4c59-b8e5-7f789a7da49f)
)
(junction (at 73.66 63.5) (diameter 0) (color 0 0 0 0)
(uuid dc6d1f3c-5f82-4570-ad6d-7225ba7e5945)
)
(junction (at 50.8 124.46) (diameter 0) (color 0 0 0 0)
(uuid e30e0fc1-8e85-427a-af67-e384e3887341)
)
(junction (at 119.38 63.5) (diameter 0) (color 0 0 0 0)
(uuid e7c83560-7a7b-4557-8f6c-c1484420cfbb)
)
(junction (at 119.38 43.18) (diameter 0) (color 0 0 0 0)
(uuid e9367725-ba1c-4afc-99ea-7a951ea381ea)
)
(junction (at 195.58 139.7) (diameter 0) (color 0 0 0 0)
(uuid eecda3b7-2f00-43c2-b54f-3844f7f1299c)
)
(junction (at 73.66 165.1) (diameter 0) (color 0 0 0 0)
(uuid efed202e-c227-4d8f-9a80-b0d0c778fd9c)
)
(junction (at 27.94 104.14) (diameter 0) (color 0 0 0 0)
(uuid f2148c4d-14e3-4397-b6e5-128da3c9652e)
)
(junction (at 27.94 83.82) (diameter 0) (color 0 0 0 0)
(uuid f63606c3-3674-4bf8-8586-ed60cc59c250)
)
(junction (at 195.58 134.62) (diameter 0) (color 0 0 0 0)
(uuid f6cc44e6-3985-44d0-afa6-aadd6b0f7d19)
)
(junction (at 96.52 185.42) (diameter 0) (color 0 0 0 0)
(uuid f7e5a347-f540-45ad-917f-6a479d0f16b5)
)
(junction (at 96.52 165.1) (diameter 0) (color 0 0 0 0)
(uuid fb7450a6-6176-4535-a7ba-ecb7bc4feb09)
)
(no_connect (at 116.84 63.5) (uuid 046eb02e-f847-4149-a964-3db09e452733))
(no_connect (at 93.98 165.1) (uuid 11476359-3a9e-4651-ba64-5e69972b71f2))
(no_connect (at 139.7 226.06) (uuid 13b1bd5f-9de1-4194-9e35-6475109f8b11))
(no_connect (at 93.98 226.06) (uuid 19207328-2cfc-42da-b2e3-e78590d35ffc))
(no_connect (at 116.84 124.46) (uuid 1a0d8123-9eec-4d6b-b8c2-67c7492879ea))
(no_connect (at 116.921 83.82) (uuid 1a1ae6b3-7b9f-45c6-96b5-ab5ba0d77e03))
(no_connect (at 139.7 63.5) (uuid 1ec9432f-4e39-47a3-8995-9de68e84e36a))
(no_connect (at 48.26 185.42) (uuid 23485d3a-f899-46f5-9d8d-fb94e559b218))
(no_connect (at 116.84 226.06) (uuid 2431c0be-75b8-4b31-bf3b-ad99a866810f))
(no_connect (at 93.98 104.14) (uuid 2a057397-480b-4607-aa74-812f54be8532))
(no_connect (at 139.7 165.1) (uuid 2b6a0c64-1cdf-4c81-b57b-796e5aab467f))
(no_connect (at 139.7 185.42) (uuid 2c447126-c52f-408a-a68f-080d2dfda7d6))
(no_connect (at 71.12 104.14) (uuid 315e2246-8a63-4e96-93b5-049f08b7e4a2))
(no_connect (at 71.201 83.82) (uuid 3af9f293-34af-41af-8be8-92ec0e39d3fc))
(no_connect (at 71.12 124.46) (uuid 3fc1169b-1f51-4776-98d5-b1c3b371c5ef))
(no_connect (at 48.26 124.46) (uuid 4f3ac2b8-cab7-402e-a7c2-8e05d2cde797))
(no_connect (at 139.7 144.78) (uuid 50ecdfc8-22e4-4f34-bbf9-511dde19439c))
(no_connect (at 93.98 43.18) (uuid 5cb77ec8-b682-4a18-ba51-7933982cb92c))
(no_connect (at 139.781 83.82) (uuid 6493e7d1-af42-432f-b11c-07ffcd035bd2))
(no_connect (at 48.26 165.1) (uuid 6648394a-e5a7-4da1-91e6-b837c8b76d5c))
(no_connect (at 93.98 185.42) (uuid 7019ace0-5410-49a1-8ccb-4235cefe4253))
(no_connect (at 93.98 144.78) (uuid 75ceccb9-1c8e-4c33-9563-27091972e0c4))
(no_connect (at 48.26 144.78) (uuid 7ee8587b-c6c2-42af-9734-db5dd546b0e0))
(no_connect (at 116.84 205.74) (uuid 81fef689-8f6d-4892-8ee5-accf9266310e))
(no_connect (at 93.98 124.46) (uuid 8accfc61-59d5-44b6-a04e-a67bb272d0ae))
(no_connect (at 116.84 165.1) (uuid 8b192e05-1999-478e-b36e-0c7a79a4a048))
(no_connect (at 71.12 205.74) (uuid 8eb0cc6a-e550-497e-a879-8fe3f7c2b579))
(no_connect (at 48.26 63.5) (uuid 8fa00ff3-2c44-4727-a259-8327e6543ad1))
(no_connect (at 93.98 205.74) (uuid 939bb510-3911-403b-ac68-4e0cc2b3dc75))
(no_connect (at 139.7 205.74) (uuid 967cb720-b9c4-456e-9e90-687ea77f8a09))
(no_connect (at 71.12 185.42) (uuid ad55ad2b-6a29-4b57-bf9e-380464a0ae66))
(no_connect (at 116.84 43.18) (uuid b382ed12-9c5e-4ed9-9ec6-11fb9f67c868))
(no_connect (at 139.7 104.14) (uuid b550ed1e-54b1-4388-a84a-36eab86eb821))
(no_connect (at 48.341 83.82) (uuid b5dda9ff-bc0d-4659-95bd-5249b0772314))
(no_connect (at 116.84 104.14) (uuid b9972054-8c3e-4265-b0cc-694799293844))
(no_connect (at 48.26 226.06) (uuid bfae057b-62a1-4e26-a809-629b65a01039))
(no_connect (at 48.26 104.14) (uuid c3f61009-3d28-4da4-aac4-1476d9923692))
(no_connect (at 139.7 124.46) (uuid c69020a7-2de3-4d49-8272-42fb36c2a52d))
(no_connect (at 116.84 144.78) (uuid c8b301de-39a2-4904-b229-f4364551a3cf))
(no_connect (at 71.12 165.1) (uuid ce176ad9-278f-4777-99a3-bd1fb0c5cb34))
(no_connect (at 71.12 144.78) (uuid d5aa9d8b-e2ec-4e06-9e3c-cab8f3ed4a6b))
(no_connect (at 71.12 63.5) (uuid da5dc1e6-bd35-4a01-8654-c046223f9431))
(no_connect (at 93.98 63.5) (uuid e036d632-9d9c-496f-b1b3-4b5095688830))
(no_connect (at 48.26 205.74) (uuid e276e950-6c36-46e8-bdfb-0176ef23ef0e))
(no_connect (at 71.12 43.18) (uuid e5704130-8878-4588-b27d-e284c79771ec))
(no_connect (at 139.7 43.18) (uuid ea357732-a8c3-4f74-920a-2236f00996df))
(no_connect (at 48.26 43.18) (uuid eddc876b-5c70-4c13-a167-b6b22239e989))
(no_connect (at 116.84 185.42) (uuid f07e4354-f1ec-4c82-85c7-3071c3792f73))
(no_connect (at 94.061 83.82) (uuid f0a36ba5-4e9a-43c1-8c59-386c15eea0fc))
(no_connect (at 71.12 226.06) (uuid fe61d21e-654e-4d44-b824-07edba9c019f))
(wire (pts (xy 116.84 215.9) (xy 121.92 215.9))
(stroke (width 0) (type default))
(uuid 026f59f6-d7c5-48dd-97c8-bb9b54eb8de7)
)
(wire (pts (xy 195.58 132.08) (xy 195.58 134.62))
(stroke (width 0) (type default))
(uuid 032f9681-be38-441f-8063-d60a8b32a888)
)
(wire (pts (xy 96.52 83.82) (xy 96.52 104.14))
(stroke (width 0) (type default))
(uuid 052fb2cc-b332-4aa6-8601-59c1bd10d616)
)
(wire (pts (xy 48.26 215.9) (xy 53.34 215.9))
(stroke (width 0) (type default))
(uuid 06f5cc28-612d-4d23-a3e6-e7eb22582224)
)
(wire (pts (xy 96.52 124.46) (xy 96.52 144.78))
(stroke (width 0) (type default))
(uuid 08a5e420-23d6-4d0f-b153-12306dadb124)
)
(wire (pts (xy 50.8 226.06) (xy 53.34 226.06))
(stroke (width 0) (type default))
(uuid 08d19bdd-a32f-4da1-8b45-1a4a597961a8)
)
(wire (pts (xy 71.12 154.94) (xy 76.2 154.94))
(stroke (width 0) (type default))
(uuid 0d8a66af-e628-419f-9b8d-19d2cd67da97)
)
(wire (pts (xy 96.52 165.1) (xy 96.52 185.42))
(stroke (width 0) (type default))
(uuid 0dc1335f-4b64-49bf-871e-ad98e57ce912)
)
(wire (pts (xy 48.26 154.94) (xy 53.34 154.94))
(stroke (width 0) (type default))
(uuid 0dc7a81a-e114-47c2-9d87-7027868eb149)
)
(wire (pts (xy 119.38 43.18) (xy 119.38 63.5))
(stroke (width 0) (type default))
(uuid 109f5bc8-68bd-4b3d-8d54-01353badd105)
)
(wire (pts (xy 195.58 129.54) (xy 195.58 132.08))
(stroke (width 0) (type default))
(uuid 110b7969-c526-4c8a-a9de-80f0e570bcf1)
)
(wire (pts (xy 73.66 165.1) (xy 76.2 165.1))
(stroke (width 0) (type default))
(uuid 11218e75-652a-4c71-b712-dbe44dac56d9)
)
(wire (pts (xy 71.12 53.34) (xy 76.2 53.34))
(stroke (width 0) (type default))
(uuid 1151e02b-9d90-4ea1-b160-5bea727e6197)
)
(wire (pts (xy 116.84 195.58) (xy 121.92 195.58))
(stroke (width 0) (type default))
(uuid 11e38e65-44db-4f47-82a2-7ef2ed3a5176)
)
(wire (pts (xy 48.26 33.02) (xy 53.34 33.02))
(stroke (width 0) (type default))
(uuid 1220af9b-e90f-417f-aa05-09330aecc74b)
)
(wire (pts (xy 50.8 83.82) (xy 53.34 83.82))
(stroke (width 0) (type default))
(uuid 154b9534-433e-438f-940f-c252b20ba63c)
)
(wire (pts (xy 73.66 83.82) (xy 73.66 104.14))
(stroke (width 0) (type default))
(uuid 18aa10fa-1a63-4b68-807b-7cd7e41ce123)
)
(wire (pts (xy 50.8 165.1) (xy 50.8 185.42))
(stroke (width 0) (type default))
(uuid 19c56b73-a069-4781-8da2-d790180cba1a)
)
(wire (pts (xy 73.66 43.18) (xy 73.66 63.5))
(stroke (width 0) (type default))
(uuid 1b1fd889-20c8-4d5c-86de-7e883680fb1c)
)
(wire (pts (xy 27.94 226.06) (xy 30.48 226.06))
(stroke (width 0) (type default))
(uuid 1bb58991-42fc-47a7-9e5b-974a87fdca82)
)
(wire (pts (xy 96.52 83.82) (xy 99.06 83.82))
(stroke (width 0) (type default))
(uuid 1d0fa874-13ee-49fd-a461-23e948998a90)
)
(wire (pts (xy 119.38 124.46) (xy 119.38 144.78))
(stroke (width 0) (type default))
(uuid 20d9ec4b-9ef4-47ce-bfcf-a08ba6cbeda3)
)
(wire (pts (xy 93.98 114.3) (xy 99.06 114.3))
(stroke (width 0) (type default))
(uuid 2146fb7d-4d6b-4499-ac24-98115a1d48f7)
)
(wire (pts (xy 93.98 93.98) (xy 99.06 93.98))
(stroke (width 0) (type default))
(uuid 239a065c-2be6-48e6-a371-9ca6c88be6fd)
)
(wire (pts (xy 160.02 149.86) (xy 177.8 149.86))
(stroke (width 0) (type default))
(uuid 25abf378-9866-4f07-9dff-a1b98c3d48d0)
)
(wire (pts (xy 48.26 114.3) (xy 53.34 114.3))
(stroke (width 0) (type default))
(uuid 260d3486-4271-4333-a71b-36297e6f4dcd)
)
(wire (pts (xy 50.8 185.42) (xy 50.8 205.74))
(stroke (width 0) (type default))
(uuid 27ac68f2-2e7f-47ba-ac46-8c5622991f8f)
)
(wire (pts (xy 119.38 185.42) (xy 119.38 205.74))
(stroke (width 0) (type default))
(uuid 28d7b8cc-b899-453c-ab7a-bab12da08d10)
)
(wire (pts (xy 27.94 124.46) (xy 30.48 124.46))
(stroke (width 0) (type default))
(uuid 2c0d1408-712f-4e4c-8169-94b706b41110)
)
(wire (pts (xy 116.84 53.34) (xy 121.92 53.34))
(stroke (width 0) (type default))
(uuid 2e5ddb1d-7b0e-4b2a-ac1a-6a09a3b5f521)
)
(wire (pts (xy 71.12 73.66) (xy 76.2 73.66))
(stroke (width 0) (type default))
(uuid 33d31df3-dc2f-4f79-b269-53cfb3a7aaf2)
)
(wire (pts (xy 50.8 144.78) (xy 50.8 165.1))
(stroke (width 0) (type default))
(uuid 34be4000-e396-4f03-8738-6918035ac902)
)
(wire (pts (xy 119.38 205.74) (xy 121.92 205.74))
(stroke (width 0) (type default))
(uuid 383e389f-66f5-424e-a707-d0d5e7408234)
)
(wire (pts (xy 71.12 195.58) (xy 76.2 195.58))
(stroke (width 0) (type default))
(uuid 3a7aa790-9aa0-4cfc-93ed-b554d08caee5)
)
(wire (pts (xy 195.58 139.7) (xy 195.58 142.24))
(stroke (width 0) (type default))
(uuid 3aea15d6-3f76-478e-811d-c705e22f5b17)
)
(wire (pts (xy 27.94 43.18) (xy 30.48 43.18))
(stroke (width 0) (type default))
(uuid 3b382737-5b29-4af9-8551-2822d151b44b)
)
(wire (pts (xy 73.66 83.82) (xy 76.2 83.82))
(stroke (width 0) (type default))
(uuid 3ded0693-34a3-4a49-9cda-576e662ac3de)
)
(wire (pts (xy 50.8 25.4) (xy 50.8 43.18))
(stroke (width 0) (type default))
(uuid 3e519c1c-0dae-427e-bee6-ff4e747ce5c4)
)
(wire (pts (xy 71.12 215.9) (xy 76.2 215.9))
(stroke (width 0) (type default))
(uuid 3fb4532f-ff10-4fee-a9cd-ef078335960d)
)
(wire (pts (xy 96.52 144.78) (xy 96.52 165.1))
(stroke (width 0) (type default))
(uuid 40295301-8b57-455b-a9bd-d7a0ebae3e60)
)
(wire (pts (xy 27.94 63.5) (xy 27.94 83.82))
(stroke (width 0) (type default))
(uuid 4165a1dc-8c07-4cec-83f8-4e01c9fa9a58)
)
(wire (pts (xy 50.8 83.82) (xy 50.8 104.14))
(stroke (width 0) (type default))
(uuid 4195e6e2-a620-4b42-a2db-dc4ce3fadcdd)
)
(wire (pts (xy 73.66 226.06) (xy 76.2 226.06))
(stroke (width 0) (type default))
(uuid 4221fea7-7727-4680-a14e-4e0621762384)
)
(wire (pts (xy 96.52 104.14) (xy 96.52 124.46))
(stroke (width 0) (type default))
(uuid 4473031d-554a-4272-bd59-3df4d02ca06c)
)
(wire (pts (xy 119.38 83.82) (xy 119.38 104.14))
(stroke (width 0) (type default))
(uuid 4503e11e-c558-4dc5-be01-ce8a5c863f33)
)
(wire (pts (xy 48.26 175.26) (xy 53.34 175.26))
(stroke (width 0) (type default))
(uuid 4553eb09-75bb-4746-9012-93f77c82a03a)
)
(wire (pts (xy 50.8 144.78) (xy 53.34 144.78))
(stroke (width 0) (type default))
(uuid 46e7a6f5-7348-4382-bab9-e86d2076f29a)
)
(wire (pts (xy 119.38 165.1) (xy 121.92 165.1))
(stroke (width 0) (type default))
(uuid 49981988-4e32-49bf-8d31-7b9adf3da20b)
)
(wire (pts (xy 152.4 93.98) (xy 161.29 93.98))
(stroke (width 0) (type default))
(uuid 4aad0825-444f-4627-825e-ce5a076854cd)
)
(wire (pts (xy 73.66 144.78) (xy 76.2 144.78))
(stroke (width 0) (type default))
(uuid 4bf47456-5836-4939-97b6-9087a4fd8531)
)
(wire (pts (xy 71.12 33.02) (xy 76.2 33.02))
(stroke (width 0) (type default))
(uuid 4bffc0d6-1a06-4210-b495-e6478cbb3cec)
)
(wire (pts (xy 119.38 185.42) (xy 121.92 185.42))
(stroke (width 0) (type default))
(uuid 4c2f61ef-3633-43bd-b3b5-bd285433a8f6)
)
(wire (pts (xy 27.94 185.42) (xy 30.48 185.42))
(stroke (width 0) (type default))
(uuid 4c986138-a4b2-4183-ab17-9330221f94b4)
)
(wire (pts (xy 96.52 43.18) (xy 96.52 63.5))
(stroke (width 0) (type default))
(uuid 4e05630b-4a0c-414d-9a46-df9acbdf3304)
)
(wire (pts (xy 50.8 63.5) (xy 53.34 63.5))
(stroke (width 0) (type default))
(uuid 4e7e3898-eae4-42dc-a987-769bba3d63f1)
)
(wire (pts (xy 96.52 205.74) (xy 96.52 226.06))
(stroke (width 0) (type default))
(uuid 4ec9c005-a85e-4d2b-ac8d-7facf9ad463d)
)
(wire (pts (xy 116.84 154.94) (xy 121.92 154.94))
(stroke (width 0) (type default))
(uuid 4fce8343-0fec-4c01-8b1f-138891cfd003)
)
(wire (pts (xy 96.52 124.46) (xy 99.06 124.46))
(stroke (width 0) (type default))
(uuid 5251229c-dea4-4ae9-bfa0-7ad8c25d82b4)
)
(wire (pts (xy 73.66 63.5) (xy 76.2 63.5))
(stroke (width 0) (type default))
(uuid 53226edf-e7c8-437f-b473-e15f564aed61)
)
(wire (pts (xy 119.38 124.46) (xy 121.92 124.46))
(stroke (width 0) (type default))
(uuid 53b03fd4-5d27-468f-aedd-4399a0d5910a)
)
(wire (pts (xy 96.52 185.42) (xy 96.52 205.74))
(stroke (width 0) (type default))
(uuid 5663ba34-0621-4586-8973-006deae01e8b)
)
(wire (pts (xy 48.26 195.58) (xy 53.34 195.58))
(stroke (width 0) (type default))
(uuid 57979b99-375d-4761-9ce8-d0ed1a666c9b)
)
(wire (pts (xy 93.98 215.9) (xy 99.06 215.9))
(stroke (width 0) (type default))
(uuid 58cc2dd2-34af-435c-b3e5-5bc5df5316db)
)
(wire (pts (xy 50.8 165.1) (xy 53.34 165.1))
(stroke (width 0) (type default))
(uuid 59246a58-ded8-4b05-bcff-8387bea26bce)
)
(wire (pts (xy 71.12 134.62) (xy 76.2 134.62))
(stroke (width 0) (type default))
(uuid 598ca928-cdbf-466c-9e8e-e4d68194d07f)
)
(wire (pts (xy 96.52 144.78) (xy 99.06 144.78))
(stroke (width 0) (type default))
(uuid 5b2c2853-b98a-43bd-9fb5-263e121a6842)
)
(wire (pts (xy 116.84 175.26) (xy 121.92 175.26))
(stroke (width 0) (type default))
(uuid 5d1b2028-180b-45bb-af35-c233c064db98)
)
(wire (pts (xy 50.8 43.18) (xy 53.34 43.18))
(stroke (width 0) (type default))
(uuid 5d4a7076-9046-4d63-9b80-2a942698db94)
)
(wire (pts (xy 27.94 25.4) (xy 27.94 43.18))
(stroke (width 0) (type default))
(uuid 5ee64e38-fd97-44e7-af74-fc6e6c344250)
)
(wire (pts (xy 96.52 43.18) (xy 99.06 43.18))
(stroke (width 0) (type default))
(uuid 5f58fad5-b73a-44f5-bf58-92386f9137fc)
)
(wire (pts (xy 73.66 124.46) (xy 76.2 124.46))
(stroke (width 0) (type default))
(uuid 6335e42e-bf77-4363-8f0c-8aa5b7c8836f)
)
(wire (pts (xy 119.38 104.14) (xy 119.38 124.46))
(stroke (width 0) (type default))
(uuid 64ace9fa-3c53-4931-99a6-a2ebd1cc35db)
)
(wire (pts (xy 27.94 185.42) (xy 27.94 205.74))
(stroke (width 0) (type default))
(uuid 64efbcd6-92f5-4f73-b51c-d853cd7e2463)
)
(wire (pts (xy 50.8 124.46) (xy 50.8 144.78))
(stroke (width 0) (type default))
(uuid 67812a5f-ad06-4320-b9c2-b72f80ad4751)
)
(wire (pts (xy 93.98 134.62) (xy 99.06 134.62))
(stroke (width 0) (type default))
(uuid 67acde7b-509a-4d01-ae4d-3eafdc17aa73)
)
(wire (pts (xy 119.38 104.14) (xy 121.92 104.14))
(stroke (width 0) (type default))