-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
matrix.kicad_sch
5474 lines (5266 loc) · 213 KB
/
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 20211123) (generator eeschema)
(uuid 4c397681-0188-46bd-9f8a-33f086d40307)
(paper "A3")
(lib_symbols
(symbol "Device:D_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at -1.27 2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Small" (id 1) (at -3.81 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Diode, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Small_0_1"
(polyline
(pts
(xy -0.762 -1.016)
(xy -0.762 1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.762 0)
(xy 0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_Small_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "marbastlib-mx:MX_SW_HS" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 3.048 1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MX_SW_HS" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "marbastlib-mx:SW_MX_HS_1u" (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" "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, normally open, two pins, 45° tilted" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MX_SW_HS_0_1"
(circle (center -1.1684 1.1684) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.508 2.54)
(xy 2.54 -0.508)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 1.016)
(xy 2.032 2.032)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 2.54)
(xy -1.524 1.524)
(xy -1.524 1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.524 -1.524)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 1.143 -1.1938) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -2.54 2.54 0) (length 0)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -2.54 180) (length 0)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "marbastlib-mx:MX_stab" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "S" (id 0) (at -5.08 6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MX_stab" (id 1) (at -5.08 3.81 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "marbastlib-mx:STAB_MX_P_6.25u" (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" "cherry mx stabilizer stab" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Cherry MX-style stabilizer" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MX_stab_0_1"
(rectangle (start -5.08 -1.524) (end -2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -5.08 1.27) (end -2.54 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -4.826 2.794) (end -2.794 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -4.064 -2.286) (end -3.556 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -4.064 -1.778) (end 4.064 -2.286)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -4.064 1.27) (end -3.556 2.794)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 2.54 -1.524) (end 5.08 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 2.54 1.27) (end 5.08 -2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 2.794 2.794) (end 4.826 1.27)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.556 1.27) (end 4.064 2.794)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 4.064 -2.286) (end 3.556 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 81.28 137.16) (diameter 0) (color 0 0 0 0)
(uuid 01632055-1f34-4f6a-be74-12a2d78bad1d)
)
(junction (at 71.12 59.69) (diameter 0) (color 0 0 0 0)
(uuid 032a1bed-7924-4a2e-8e1e-bd27e706e740)
)
(junction (at 71.12 142.24) (diameter 0) (color 0 0 0 0)
(uuid 03a6cdc8-8afa-46bc-8f07-81dcdd9bbffe)
)
(junction (at 76.2 82.55) (diameter 0) (color 0 0 0 0)
(uuid 0521e779-cff1-41c3-90f5-f52f9d5e2fa0)
)
(junction (at 121.92 137.16) (diameter 0) (color 0 0 0 0)
(uuid 0622bf00-3631-4665-85d8-76a5212db04f)
)
(junction (at 121.92 142.24) (diameter 0) (color 0 0 0 0)
(uuid 06c47283-5b94-4c9a-b736-4e719e76f13d)
)
(junction (at 66.04 99.06) (diameter 0) (color 0 0 0 0)
(uuid 06effb40-ef8a-414c-b217-68c7fd3d8b9d)
)
(junction (at 116.84 49.53) (diameter 0) (color 0 0 0 0)
(uuid 07fc1976-5a56-4796-83bf-8dd7b5c8c28c)
)
(junction (at 157.48 49.53) (diameter 0) (color 0 0 0 0)
(uuid 0d2e1d7e-487a-4801-b8a8-6ceabd81039f)
)
(junction (at 76.2 132.08) (diameter 0) (color 0 0 0 0)
(uuid 0d5324bb-6493-49ca-bbbe-1e13545c7091)
)
(junction (at 182.88 109.22) (diameter 0) (color 0 0 0 0)
(uuid 0f364d8f-5200-4743-94ad-b652b2ebad8f)
)
(junction (at 182.88 120.65) (diameter 0) (color 0 0 0 0)
(uuid 0f7240eb-9752-49fb-bf95-608e9186b78a)
)
(junction (at 127 82.55) (diameter 0) (color 0 0 0 0)
(uuid 0fa2d535-8bd8-49a7-916d-4b44df681490)
)
(junction (at 162.56 109.22) (diameter 0) (color 0 0 0 0)
(uuid 1030aa35-8ba9-4737-82d3-4e00bc1f3b12)
)
(junction (at 228.6 66.04) (diameter 0) (color 0 0 0 0)
(uuid 11e0cb9b-cbef-4af7-ae3c-9a38cfec8dc3)
)
(junction (at 182.88 137.16) (diameter 0) (color 0 0 0 0)
(uuid 13405fbd-169e-4280-9bff-7710f259b624)
)
(junction (at 223.52 92.71) (diameter 0) (color 0 0 0 0)
(uuid 13b16715-eeee-4f44-b537-aa4c4318f40e)
)
(junction (at 60.96 142.24) (diameter 0) (color 0 0 0 0)
(uuid 1415c5a5-eac0-4ac2-92f0-6c735a8cba39)
)
(junction (at 81.28 59.69) (diameter 0) (color 0 0 0 0)
(uuid 142ad3eb-2491-449c-84ec-c16ad1d4e5ff)
)
(junction (at 172.72 137.16) (diameter 0) (color 0 0 0 0)
(uuid 15d6ad28-5f3d-46a7-9ac1-0c28900c6b0a)
)
(junction (at 111.76 125.73) (diameter 0) (color 0 0 0 0)
(uuid 16562c2a-8405-49a0-9ce4-ce7476a2c92c)
)
(junction (at 132.08 59.69) (diameter 0) (color 0 0 0 0)
(uuid 18e6b244-d018-4e02-9ea4-7ebcbc641f63)
)
(junction (at 132.08 109.22) (diameter 0) (color 0 0 0 0)
(uuid 1c42ed20-931e-48cf-a397-f52e9a1d8de9)
)
(junction (at 86.36 82.55) (diameter 0) (color 0 0 0 0)
(uuid 1de0ca05-9b1c-4bf2-b23f-5da72ec473a1)
)
(junction (at 71.12 137.16) (diameter 0) (color 0 0 0 0)
(uuid 23cc2ac6-5a92-434b-b864-aea768e0a421)
)
(junction (at 101.6 76.2) (diameter 0) (color 0 0 0 0)
(uuid 2533e459-093f-4642-9b6e-fc68ea1dc82b)
)
(junction (at 142.24 76.2) (diameter 0) (color 0 0 0 0)
(uuid 25a8e61c-e410-4a93-8be0-cf60927ab337)
)
(junction (at 121.92 125.73) (diameter 0) (color 0 0 0 0)
(uuid 2654daa6-f750-4f28-a3ec-9496928f7cfb)
)
(junction (at 167.64 99.06) (diameter 0) (color 0 0 0 0)
(uuid 2960e5d4-f780-4ef9-b261-1a4ad05902e2)
)
(junction (at 91.44 59.69) (diameter 0) (color 0 0 0 0)
(uuid 2a92f855-1f4f-4a29-943e-bf3d850e68bf)
)
(junction (at 96.52 82.55) (diameter 0) (color 0 0 0 0)
(uuid 2ff15f29-589b-4c1d-b420-df05d45aefd5)
)
(junction (at 172.72 109.22) (diameter 0) (color 0 0 0 0)
(uuid 34a42d22-d973-485f-82ee-a377922dfdf6)
)
(junction (at 167.64 115.57) (diameter 0) (color 0 0 0 0)
(uuid 3726929d-11a8-4983-9f16-c6178484e77f)
)
(junction (at 177.8 99.06) (diameter 0) (color 0 0 0 0)
(uuid 3c8261e1-67da-4bd6-897f-9dffc53c0af3)
)
(junction (at 60.96 109.22) (diameter 0) (color 0 0 0 0)
(uuid 3ce94245-3879-46a4-8050-7462f1da2300)
)
(junction (at 228.6 82.55) (diameter 0) (color 0 0 0 0)
(uuid 3e8f9c6e-21a4-4709-ba99-f78f6f23b53d)
)
(junction (at 152.4 92.71) (diameter 0) (color 0 0 0 0)
(uuid 4048770d-664e-46eb-a5f1-820beea98ca3)
)
(junction (at 127 49.53) (diameter 0) (color 0 0 0 0)
(uuid 405a8f7b-bce7-429e-99f9-1391fa767962)
)
(junction (at 157.48 99.06) (diameter 0) (color 0 0 0 0)
(uuid 4272371b-7400-4f33-9446-5343d62a6f63)
)
(junction (at 157.48 66.04) (diameter 0) (color 0 0 0 0)
(uuid 43032aea-c62a-4a45-b962-6d9590d4131f)
)
(junction (at 142.24 125.73) (diameter 0) (color 0 0 0 0)
(uuid 45428bc0-d5f2-4b34-97d9-064fb8ef3cc0)
)
(junction (at 55.88 49.53) (diameter 0) (color 0 0 0 0)
(uuid 4593a25a-2c17-4b3b-a243-41b0a8c084a0)
)
(junction (at 167.64 82.55) (diameter 0) (color 0 0 0 0)
(uuid 477e36d1-20eb-4cc4-a9e4-799dea2c0408)
)
(junction (at 60.96 137.16) (diameter 0) (color 0 0 0 0)
(uuid 48261d0a-e5b2-480a-a944-73f1f7689478)
)
(junction (at 167.64 49.53) (diameter 0) (color 0 0 0 0)
(uuid 48acf4d5-de00-4958-967d-623b96787cbd)
)
(junction (at 162.56 59.69) (diameter 0) (color 0 0 0 0)
(uuid 49937aa2-cd16-48e0-afd4-770825c1de79)
)
(junction (at 223.52 59.69) (diameter 0) (color 0 0 0 0)
(uuid 4a1554cf-75ff-4d3a-947f-4c8e524dfa1f)
)
(junction (at 218.44 66.04) (diameter 0) (color 0 0 0 0)
(uuid 4a618f5e-783c-4b78-ae5d-b08fcd5d49da)
)
(junction (at 106.68 49.53) (diameter 0) (color 0 0 0 0)
(uuid 4b9862f8-18bc-49d5-a98d-15bbc7a5a5ca)
)
(junction (at 198.12 82.55) (diameter 0) (color 0 0 0 0)
(uuid 4c47c301-fe6d-4b2c-8799-379066020f26)
)
(junction (at 81.28 76.2) (diameter 0) (color 0 0 0 0)
(uuid 535bb030-d820-45ac-8e95-9d4f3eec1edb)
)
(junction (at 182.88 142.24) (diameter 0) (color 0 0 0 0)
(uuid 535d9bed-9b59-44c1-80e4-fcc51fd01014)
)
(junction (at 55.88 66.04) (diameter 0) (color 0 0 0 0)
(uuid 56747d3d-105b-4c41-bd75-1ff484610223)
)
(junction (at 142.24 92.71) (diameter 0) (color 0 0 0 0)
(uuid 56b1a4f5-f472-44e0-b36f-2f969cee4546)
)
(junction (at 213.36 142.24) (diameter 0) (color 0 0 0 0)
(uuid 5b70f833-e7df-4340-b98d-7256b60f8e63)
)
(junction (at 157.48 82.55) (diameter 0) (color 0 0 0 0)
(uuid 5d13abde-7ac6-4681-b5b1-839a7e204004)
)
(junction (at 121.92 59.69) (diameter 0) (color 0 0 0 0)
(uuid 5e2636c3-9c24-42f2-b770-d826a78bf8ea)
)
(junction (at 60.96 125.73) (diameter 0) (color 0 0 0 0)
(uuid 60594dc8-adbb-449d-ac70-a038f229886c)
)
(junction (at 71.12 125.73) (diameter 0) (color 0 0 0 0)
(uuid 61875058-a02d-4aad-9f92-8dc88ea5909a)
)
(junction (at 76.2 66.04) (diameter 0) (color 0 0 0 0)
(uuid 633df2cb-36fe-4982-950e-0c917628a270)
)
(junction (at 81.28 92.71) (diameter 0) (color 0 0 0 0)
(uuid 63bf482e-a570-4990-98d5-875432c28a8b)
)
(junction (at 218.44 49.53) (diameter 0) (color 0 0 0 0)
(uuid 68e929b4-959e-4604-a0f3-8378dc2f69b5)
)
(junction (at 86.36 99.06) (diameter 0) (color 0 0 0 0)
(uuid 6b7e280a-ece4-42d6-a02f-5234b9dc6900)
)
(junction (at 60.96 92.71) (diameter 0) (color 0 0 0 0)
(uuid 6bd88ec2-2b22-44d8-99e8-2f3e2d0c6f6d)
)
(junction (at 152.4 109.22) (diameter 0) (color 0 0 0 0)
(uuid 6e4f788d-ab17-4aa2-8a35-09ea8e0dd00b)
)
(junction (at 213.36 76.2) (diameter 0) (color 0 0 0 0)
(uuid 7226e053-08ca-48cf-bf42-24190170fa60)
)
(junction (at 121.92 109.22) (diameter 0) (color 0 0 0 0)
(uuid 745b73f6-e0fb-4435-b192-4e721d67dc4d)
)
(junction (at 111.76 109.22) (diameter 0) (color 0 0 0 0)
(uuid 746029da-e8b7-4414-af00-4eb39b5cacdf)
)
(junction (at 177.8 66.04) (diameter 0) (color 0 0 0 0)
(uuid 752261e1-21b7-412f-9a47-ba15c7c28a58)
)
(junction (at 203.2 142.24) (diameter 0) (color 0 0 0 0)
(uuid 75d9d37e-b19d-4fe1-a815-b81f2b46f0d4)
)
(junction (at 101.6 59.69) (diameter 0) (color 0 0 0 0)
(uuid 774b853a-4c1d-43c9-807e-2355f1d7829e)
)
(junction (at 162.56 142.24) (diameter 0) (color 0 0 0 0)
(uuid 77b5a4a2-b6b7-4403-b866-7b3b1e4100a3)
)
(junction (at 121.92 92.71) (diameter 0) (color 0 0 0 0)
(uuid 77dd9582-ff2e-4281-ac95-e762ee5d669a)
)
(junction (at 203.2 87.63) (diameter 0) (color 0 0 0 0)
(uuid 7896285b-db4d-4184-a73d-a132df72e29b)
)
(junction (at 213.36 59.69) (diameter 0) (color 0 0 0 0)
(uuid 8010346d-881f-4877-8552-acfeee760084)
)
(junction (at 66.04 115.57) (diameter 0) (color 0 0 0 0)
(uuid 845e1455-a951-43a5-bf7f-b2ddac900d84)
)
(junction (at 142.24 109.22) (diameter 0) (color 0 0 0 0)
(uuid 84d4e849-82d4-423b-95b7-9c7e89c3c290)
)
(junction (at 137.16 49.53) (diameter 0) (color 0 0 0 0)
(uuid 858410cb-352c-4f67-bf87-d49d19c96294)
)
(junction (at 101.6 109.22) (diameter 0) (color 0 0 0 0)
(uuid 8609aa56-3226-4298-9295-292ed15ed7e7)
)
(junction (at 167.64 66.04) (diameter 0) (color 0 0 0 0)
(uuid 8758000c-74f7-4661-9122-1a56487b8bc4)
)
(junction (at 137.16 99.06) (diameter 0) (color 0 0 0 0)
(uuid 87c64d23-04c4-4e16-b3b1-2b63e4a05694)
)
(junction (at 60.96 76.2) (diameter 0) (color 0 0 0 0)
(uuid 87f5e6bb-fbc9-4e72-8f7f-8395ae4c736e)
)
(junction (at 116.84 82.55) (diameter 0) (color 0 0 0 0)
(uuid 89d61abb-a6b9-47cc-b31e-5dd86eca7af2)
)
(junction (at 147.32 82.55) (diameter 0) (color 0 0 0 0)
(uuid 8a5a094a-66ac-4be9-a270-04d705147254)
)
(junction (at 96.52 66.04) (diameter 0) (color 0 0 0 0)
(uuid 8db88c34-9067-44cb-9bf8-27e685e5ba0d)
)
(junction (at 76.2 49.53) (diameter 0) (color 0 0 0 0)
(uuid 8f5bcbfb-aef9-4903-a499-51e32710fb21)
)
(junction (at 66.04 82.55) (diameter 0) (color 0 0 0 0)
(uuid 8f9057c3-9c01-4c21-8ec4-807a73a44424)
)
(junction (at 147.32 66.04) (diameter 0) (color 0 0 0 0)
(uuid 8fde6dbb-aa24-4d34-a0e9-843f761763a6)
)
(junction (at 198.12 132.08) (diameter 0) (color 0 0 0 0)
(uuid 90a14938-9393-4dba-8cdc-74be36e8e0e0)
)
(junction (at 86.36 66.04) (diameter 0) (color 0 0 0 0)
(uuid 952dc3bc-374a-48f0-888e-9fa03323d692)
)
(junction (at 132.08 92.71) (diameter 0) (color 0 0 0 0)
(uuid 96225057-f0b3-4c98-99b2-32ee9110e397)
)
(junction (at 195.58 71.12) (diameter 0) (color 0 0 0 0)
(uuid 9855ad51-4faf-40f2-aa0f-0c574d6e4526)
)
(junction (at 60.96 120.65) (diameter 0) (color 0 0 0 0)
(uuid 9864d6d1-5a5f-4aa1-98dc-230b44e77236)
)
(junction (at 162.56 76.2) (diameter 0) (color 0 0 0 0)
(uuid 98d0658a-9b22-4cd3-861f-ab1a64ad37a5)
)
(junction (at 218.44 115.57) (diameter 0) (color 0 0 0 0)
(uuid 98d4a051-d305-411f-8634-668e49611053)
)
(junction (at 91.44 109.22) (diameter 0) (color 0 0 0 0)
(uuid 993808e4-bd14-4c34-8439-20948ca3164e)
)
(junction (at 208.28 66.04) (diameter 0) (color 0 0 0 0)
(uuid 9bde0249-3d1f-4706-853f-21ffc36c1068)
)
(junction (at 142.24 59.69) (diameter 0) (color 0 0 0 0)
(uuid 9c68cf61-7ce1-4b87-8e4a-3b630cb181fd)
)
(junction (at 203.2 59.69) (diameter 0) (color 0 0 0 0)
(uuid a2d35e1d-444c-4166-8fd6-c249e08dadb3)
)
(junction (at 55.88 99.06) (diameter 0) (color 0 0 0 0)
(uuid a54b59d4-a1ed-4f79-b025-535074335fed)
)
(junction (at 55.88 82.55) (diameter 0) (color 0 0 0 0)
(uuid a58e7a68-3965-4883-b33a-c2a5202b222c)
)
(junction (at 152.4 76.2) (diameter 0) (color 0 0 0 0)
(uuid a83a4fd8-a163-41e5-afb7-8ab86b7f81ad)
)
(junction (at 203.2 125.73) (diameter 0) (color 0 0 0 0)
(uuid a89cd5fb-53e1-43fa-91e0-3a71f6e60de0)
)
(junction (at 111.76 92.71) (diameter 0) (color 0 0 0 0)
(uuid acf2eddf-2d36-4c9f-828b-fd746edd4541)
)
(junction (at 208.28 82.55) (diameter 0) (color 0 0 0 0)
(uuid ad2fbb21-1529-4bc2-b660-a8cd62ed7e74)
)
(junction (at 60.96 59.69) (diameter 0) (color 0 0 0 0)
(uuid adb27112-00d9-4314-847e-80e084f801f2)
)
(junction (at 137.16 66.04) (diameter 0) (color 0 0 0 0)
(uuid af0533bd-55d6-4005-81aa-5e3067ffde9c)
)
(junction (at 127 66.04) (diameter 0) (color 0 0 0 0)
(uuid af3396ba-5d06-4fbe-9642-2da8cf5f1fd0)
)
(junction (at 91.44 76.2) (diameter 0) (color 0 0 0 0)
(uuid af7a49d0-f5b6-4e03-aec1-f9c08003b130)
)
(junction (at 228.6 49.53) (diameter 0) (color 0 0 0 0)
(uuid b17d4dcb-3a8f-4727-a47d-0c6ef280197f)
)
(junction (at 203.2 137.16) (diameter 0) (color 0 0 0 0)
(uuid b292ca0a-cff9-48e4-8d4f-0979da38ae23)
)
(junction (at 157.48 115.57) (diameter 0) (color 0 0 0 0)
(uuid b51bff7e-a2cf-4940-a0ef-32fade2c6750)
)
(junction (at 172.72 142.24) (diameter 0) (color 0 0 0 0)
(uuid b5822de4-5e13-4409-8b6e-e97f225acf40)
)
(junction (at 106.68 99.06) (diameter 0) (color 0 0 0 0)
(uuid b66be649-397e-4441-a21c-905196448413)
)
(junction (at 66.04 66.04) (diameter 0) (color 0 0 0 0)
(uuid b6bedc29-e809-4c46-82a2-a8d07ceabb94)
)
(junction (at 147.32 99.06) (diameter 0) (color 0 0 0 0)
(uuid b81f84d6-cc1e-41d4-b164-fcf850e31232)
)
(junction (at 152.4 59.69) (diameter 0) (color 0 0 0 0)
(uuid bb028e2a-5054-4e49-bca1-713751864c3c)
)
(junction (at 172.72 76.2) (diameter 0) (color 0 0 0 0)
(uuid bbd1247b-4f74-4251-8191-beaa0036c2f0)
)
(junction (at 182.88 92.71) (diameter 0) (color 0 0 0 0)
(uuid bc310b4c-1763-4365-99dc-e50a79c50ed9)
)
(junction (at 132.08 76.2) (diameter 0) (color 0 0 0 0)
(uuid be075b1f-e72e-4720-9a2f-b65880cc9b2d)
)
(junction (at 182.88 125.73) (diameter 0) (color 0 0 0 0)
(uuid bec9dd1f-0982-4621-8b9b-b600ba225bb0)
)
(junction (at 177.8 132.08) (diameter 0) (color 0 0 0 0)
(uuid c0075c0d-bb71-437d-b0f9-7f1c31b89e1a)
)
(junction (at 223.52 142.24) (diameter 0) (color 0 0 0 0)
(uuid c012752d-80b7-41b5-bf9f-5178a9af3775)
)
(junction (at 223.52 76.2) (diameter 0) (color 0 0 0 0)
(uuid c04708c6-6829-4568-9871-259b9afbde03)
)
(junction (at 81.28 125.73) (diameter 0) (color 0 0 0 0)
(uuid c0cf5ff1-0911-4a9b-8b83-5c1f59baee65)
)
(junction (at 66.04 49.53) (diameter 0) (color 0 0 0 0)
(uuid c158334e-80da-4da8-9e93-cdf12f908dcf)
)
(junction (at 60.96 104.14) (diameter 0) (color 0 0 0 0)
(uuid c2714787-b4c6-49a3-920d-f73d822a0621)
)
(junction (at 182.88 76.2) (diameter 0) (color 0 0 0 0)
(uuid c384cd97-bc92-4c82-a05a-e6ef56e4bd25)
)
(junction (at 96.52 99.06) (diameter 0) (color 0 0 0 0)
(uuid c3e521d5-e762-4d78-a925-64181d7fa5ea)
)
(junction (at 76.2 99.06) (diameter 0) (color 0 0 0 0)
(uuid c4cc14df-4d94-4fb5-9bea-e2b4da327f8d)
)
(junction (at 116.84 99.06) (diameter 0) (color 0 0 0 0)
(uuid c673ffab-3d42-4551-b71c-7b2e6c1d2a25)
)
(junction (at 213.36 92.71) (diameter 0) (color 0 0 0 0)
(uuid c82aae99-32ee-4d3a-851b-6c53e1456c3e)
)
(junction (at 106.68 66.04) (diameter 0) (color 0 0 0 0)
(uuid c8c6580d-be09-46a2-aafc-f4cc05d0082a)
)
(junction (at 172.72 125.73) (diameter 0) (color 0 0 0 0)
(uuid c9174cac-8742-4719-aec9-80cb3b6954e0)
)
(junction (at 198.12 66.04) (diameter 0) (color 0 0 0 0)
(uuid ca37a5f8-8975-40ba-bd3f-dba6fd364cc6)
)
(junction (at 55.88 132.08) (diameter 0) (color 0 0 0 0)
(uuid ca4f69e4-4939-409b-a07b-a27e65b41ff9)
)
(junction (at 190.5 66.04) (diameter 0) (color 0 0 0 0)
(uuid ca8d3252-3530-445d-8083-7e905e4a7a27)
)
(junction (at 172.72 59.69) (diameter 0) (color 0 0 0 0)
(uuid cc1f3bd6-bff2-4683-83fb-37de12e2c49f)
)
(junction (at 81.28 142.24) (diameter 0) (color 0 0 0 0)
(uuid cd8ee43f-c3d5-48f0-88f0-ea9e49998b12)
)
(junction (at 116.84 132.08) (diameter 0) (color 0 0 0 0)
(uuid ce9a8648-6b2c-4809-970b-78d91f859cb4)
)
(junction (at 208.28 49.53) (diameter 0) (color 0 0 0 0)
(uuid cfa38080-e348-4bf2-a0c4-dc9062a9cc79)
)
(junction (at 76.2 115.57) (diameter 0) (color 0 0 0 0)
(uuid d1da5952-3152-4564-8343-2065a0ddb83f)
)
(junction (at 162.56 125.73) (diameter 0) (color 0 0 0 0)
(uuid d67c5880-c448-408d-addd-75f7a6d02038)
)
(junction (at 177.8 82.55) (diameter 0) (color 0 0 0 0)
(uuid d6fb887d-4604-4aba-b217-882df83d0941)
)
(junction (at 137.16 82.55) (diameter 0) (color 0 0 0 0)
(uuid d8875aed-e8a4-4369-aaad-7f0a4ebd0710)
)
(junction (at 71.12 92.71) (diameter 0) (color 0 0 0 0)
(uuid d8996e0e-d376-4bf6-85ba-b640ed64b34f)
)
(junction (at 96.52 49.53) (diameter 0) (color 0 0 0 0)
(uuid d8b4875a-4d15-475b-a499-3ea1b2f66bb8)
)
(junction (at 195.58 76.2) (diameter 0) (color 0 0 0 0)
(uuid da5fb7bf-e8eb-4223-9d6e-5e59da1fe240)
)
(junction (at 71.12 109.22) (diameter 0) (color 0 0 0 0)
(uuid dc9a1817-ae82-4236-a779-e74ee8e841a5)
)
(junction (at 167.64 132.08) (diameter 0) (color 0 0 0 0)
(uuid de4b7cca-fd24-47bb-b677-c4683155c89d)
)
(junction (at 66.04 132.08) (diameter 0) (color 0 0 0 0)
(uuid e0041223-f7e8-4071-bf02-a0b2256060ab)
)
(junction (at 182.88 104.14) (diameter 0) (color 0 0 0 0)
(uuid e2126560-8153-4970-bef6-29460373aefe)
)
(junction (at 127 99.06) (diameter 0) (color 0 0 0 0)
(uuid e32a5d5e-36ae-41c7-ad88-73e134688747)
)
(junction (at 198.12 115.57) (diameter 0) (color 0 0 0 0)
(uuid e3b69809-412d-4a75-8272-69e8857c465d)
)
(junction (at 111.76 59.69) (diameter 0) (color 0 0 0 0)
(uuid e6fc460c-3d49-4a02-8671-3c96ec4de051)
)
(junction (at 177.8 49.53) (diameter 0) (color 0 0 0 0)
(uuid e826bcea-457b-4112-9ed7-82a4915fc865)
)
(junction (at 198.12 49.53) (diameter 0) (color 0 0 0 0)
(uuid ea25cd11-cd30-49cb-86e3-23f69b327717)
)
(junction (at 101.6 125.73) (diameter 0) (color 0 0 0 0)
(uuid ebb0731d-70bd-4beb-a9e3-6ef411fa2cd3)
)
(junction (at 177.8 115.57) (diameter 0) (color 0 0 0 0)
(uuid ec881d94-f487-4253-b0fc-1613776c78c4)
)
(junction (at 116.84 115.57) (diameter 0) (color 0 0 0 0)
(uuid ed04140e-7197-4368-a415-3b073699fc7e)
)
(junction (at 147.32 49.53) (diameter 0) (color 0 0 0 0)
(uuid ef7ce676-6b1a-40db-9678-83332d1673d6)
)
(junction (at 172.72 92.71) (diameter 0) (color 0 0 0 0)
(uuid ef97900b-6d1f-47ab-8cab-1763450e15c4)
)
(junction (at 218.44 82.55) (diameter 0) (color 0 0 0 0)
(uuid f0d24137-31af-469b-adae-cb9d7f3ba054)
)
(junction (at 121.92 76.2) (diameter 0) (color 0 0 0 0)
(uuid f1304e79-b297-4288-8da5-149a27079c9b)
)
(junction (at 55.88 115.57) (diameter 0) (color 0 0 0 0)
(uuid f2466e3e-0400-42b6-92ef-2114660f9efc)
)
(junction (at 203.2 92.71) (diameter 0) (color 0 0 0 0)
(uuid f32392cd-452e-412e-ae54-a14081e9e88e)
)
(junction (at 81.28 109.22) (diameter 0) (color 0 0 0 0)
(uuid f4287b50-479b-4e00-a7ef-486b31a4a0f9)
)
(junction (at 152.4 125.73) (diameter 0) (color 0 0 0 0)
(uuid f4adb015-59de-43cf-9122-938e3f4d82d7)
)
(junction (at 116.84 66.04) (diameter 0) (color 0 0 0 0)
(uuid f4dc0edc-a036-4aac-9432-c4ae2d4febd1)
)
(junction (at 71.12 76.2) (diameter 0) (color 0 0 0 0)
(uuid f5424ed5-296c-4b09-88e7-0283c5228b0c)
)
(junction (at 91.44 125.73) (diameter 0) (color 0 0 0 0)
(uuid f5650d0a-62c7-4723-9f87-cbb901be24c7)
)
(junction (at 106.68 82.55) (diameter 0) (color 0 0 0 0)
(uuid f5a2de78-4b45-4226-9e68-08c70328a511)
)
(junction (at 132.08 125.73) (diameter 0) (color 0 0 0 0)
(uuid f75d6901-a9e6-4f03-9e9e-8abbce477fcf)
)
(junction (at 111.76 76.2) (diameter 0) (color 0 0 0 0)
(uuid fc6b3e28-4ebd-4fac-beac-61ff818e876f)
)
(junction (at 101.6 92.71) (diameter 0) (color 0 0 0 0)
(uuid fcbee4f7-97f0-4c5f-94fe-20e6e6157443)
)
(junction (at 86.36 49.53) (diameter 0) (color 0 0 0 0)
(uuid fcde1d90-99e8-47fd-b26a-b209990225d5)
)
(junction (at 182.88 59.69) (diameter 0) (color 0 0 0 0)
(uuid fdf33824-73e9-44a6-88f5-6b7d7534f8d9)
)
(junction (at 162.56 92.71) (diameter 0) (color 0 0 0 0)
(uuid ffa38b00-8707-49d4-a010-68758e16a679)
)
(junction (at 91.44 92.71) (diameter 0) (color 0 0 0 0)
(uuid ffa90321-0819-4dcb-b193-bddd70cf1a42)
)
(wire (pts (xy 137.16 99.06) (xy 137.16 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0070f10b-5b19-4c3c-a832-8cc27d21a4d3)
)
(wire (pts (xy 101.6 76.2) (xy 111.76 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 007d0826-8524-4544-8d68-13e6f711d6f1)
)
(wire (pts (xy 182.88 59.69) (xy 203.2 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00b63bb3-55a7-4087-b4de-1e11f6af771b)
)
(wire (pts (xy 76.2 36.83) (xy 76.2 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 014cdfb0-0725-4450-a311-bfada91c7abf)
)
(wire (pts (xy 66.04 82.55) (xy 66.04 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07b1b66b-7be0-4688-9795-6a7d3b389bd4)
)
(wire (pts (xy 60.96 104.14) (xy 64.77 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 098f9218-f5c9-4d79-a2a0-35dd0a41bfb4)
)
(wire (pts (xy 147.32 49.53) (xy 147.32 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09d15c1e-22f7-4910-b3a6-438260bb98f6)
)
(wire (pts (xy 60.96 125.73) (xy 71.12 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cba60e2-6d31-42c4-9230-f2170be7b320)
)
(wire (pts (xy 41.91 59.69) (xy 60.96 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e1670eb-ad53-4159-94dd-632f2b08af0e)
)
(wire (pts (xy 60.96 59.69) (xy 71.12 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e19e431-99e6-4291-86f6-9764d829ebef)
)
(wire (pts (xy 213.36 92.71) (xy 223.52 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1026816b-6e6d-4fc7-9a16-a35b559ac783)
)
(wire (pts (xy 152.4 92.71) (xy 162.56 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 104cb355-cb12-4505-80a0-73b50173c907)
)
(wire (pts (xy 208.28 66.04) (xy 208.28 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1392628b-5e75-42c4-b8d3-ebfd76afb888)
)
(wire (pts (xy 91.44 59.69) (xy 101.6 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14add30d-71c1-4aa1-8695-3774a52cc78d)
)
(wire (pts (xy 198.12 49.53) (xy 198.12 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14eb7cf5-488c-48da-9332-32fecb201ad4)
)
(wire (pts (xy 127 82.55) (xy 127 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 176ff252-8628-4964-97ec-8eb851a741b0)
)
(wire (pts (xy 101.6 59.69) (xy 111.76 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17916d8a-4baa-4631-bfa9-d1bea3579029)
)
(wire (pts (xy 198.12 66.04) (xy 198.12 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 181f55dc-6cf1-400d-b1c2-79d7705f741d)
)
(wire (pts (xy 60.96 109.22) (xy 71.12 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a7ea3e4-4c4e-4a74-9b78-357e4ed527a2)
)
(wire (pts (xy 71.12 59.69) (xy 81.28 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a8447e2-e4e5-4168-b486-7f6ffbdce931)
)
(wire (pts (xy 203.2 142.24) (xy 213.36 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b3c867e-63da-48c1-87cb-f05a4862dfa9)
)
(wire (pts (xy 132.08 76.2) (xy 142.24 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c58dbbf-6dff-4df7-a8d2-031ec9631967)
)
(wire (pts (xy 205.74 72.39) (xy 205.74 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1cd94390-e05b-453f-8381-1f692ac3c623)
)
(wire (pts (xy 177.8 99.06) (xy 181.61 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d759879-b189-469c-8bf3-f0cea0ed69a2)
)
(wire (pts (xy 71.12 137.16) (xy 76.2 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d788e41-ba44-4839-955a-f028d56c89e0)
)
(wire (pts (xy 167.64 66.04) (xy 167.64 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1de2106e-c73d-413f-899a-7cb40cef008e)
)
(wire (pts (xy 152.4 76.2) (xy 162.56 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e8885be-85aa-4ca6-8296-67f361e05681)
)
(wire (pts (xy 157.48 49.53) (xy 157.48 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f42d245-e172-4c8a-80c6-1698d4579799)
)
(wire (pts (xy 91.44 76.2) (xy 101.6 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1fd0f74e-9d24-44be-9578-8d4d88dc63f0)
)
(wire (pts (xy 182.88 104.14) (xy 186.69 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2232aab5-3c19-4419-bc9f-c65061cbfd70)
)
(wire (pts (xy 167.64 36.83) (xy 167.64 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 223852da-00ae-447b-a7fc-b22ac9a0d800)
)
(wire (pts (xy 198.12 132.08) (xy 203.2 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23b4b14d-246b-438d-8559-f7f6673753f2)
)
(wire (pts (xy 86.36 66.04) (xy 86.36 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23e45ee5-9115-4f95-94be-fcd4602cc1cf)
)
(wire (pts (xy 177.8 132.08) (xy 182.88 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 287fb9aa-0b93-42a8-b348-3bd38a99b406)
)
(wire (pts (xy 66.04 36.83) (xy 66.04 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29c53d8b-7d2a-4b61-a9ce-096026cfa539)
)
(wire (pts (xy 228.6 82.55) (xy 228.6 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b7df2fd-913f-4a58-b8cc-8dd9a0370fa7)
)
(wire (pts (xy 177.8 115.57) (xy 181.61 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d9cb9a2-989d-474e-ac3b-135b4a7df0db)
)
(wire (pts (xy 41.91 76.2) (xy 60.96 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2dae87bf-3d5b-4689-84ed-403badbf2619)
)
(wire (pts (xy 157.48 115.57) (xy 157.48 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e2a9251-a592-403f-92c8-bf7e6f7be08a)
)
(wire (pts (xy 157.48 99.06) (xy 157.48 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e93749f-199d-4868-a411-da8087a476db)
)
(wire (pts (xy 208.28 49.53) (xy 208.28 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32201b25-f286-4091-a7f5-f0a5039c47fe)
)
(wire (pts (xy 172.72 92.71) (xy 182.88 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34375cca-ea0d-4296-9f15-5ce49f570106)
)
(wire (pts (xy 60.96 92.71) (xy 71.12 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34703cef-3c20-45f4-a8b8-cf54e02c5b8a)
)
(wire (pts (xy 60.96 137.16) (xy 66.04 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3509c53f-aeaf-4005-94ae-7bace6bac0b1)
)
(wire (pts (xy 203.2 87.63) (xy 207.01 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36659320-1f27-466f-9062-1e63a112e97a)
)
(wire (pts (xy 121.92 59.69) (xy 132.08 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3812047c-fda1-4548-8764-398bd12c83f5)
)
(wire (pts (xy 147.32 66.04) (xy 147.32 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a4c2ac2-18ce-4f85-82e1-5bf797100299)
)
(wire (pts (xy 127 99.06) (xy 127 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a9fd8b7-2c2b-47d1-8e16-874a8daaf6c5)
)
(wire (pts (xy 142.24 92.71) (xy 152.4 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b53d117-8251-4aae-ad78-35a93585d9f5)
)
(wire (pts (xy 132.08 125.73) (xy 142.24 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3cc8ae8b-ab18-4514-8fb9-367aa052d3f0)
)
(wire (pts (xy 157.48 66.04) (xy 157.48 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e9244ee-f39f-4d38-bf60-dabab03dd0ee)
)
(wire (pts (xy 116.84 66.04) (xy 116.84 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3fa89f18-52fa-42c7-bc1d-9831e861a87f)
)
(wire (pts (xy 86.36 82.55) (xy 86.36 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4012d619-f9d2-4bc3-8b87-2d0e5e541a76)
)
(wire (pts (xy 213.36 142.24) (xy 223.52 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4188969e-da0c-4b6f-8731-b91f751f2ea3)
)
(wire (pts (xy 147.32 82.55) (xy 147.32 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41940a4c-674e-441b-9072-975fc4e7a710)
)
(wire (pts (xy 137.16 49.53) (xy 137.16 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 422238fa-88ee-4a16-a785-f0f0f2b69071)
)
(wire (pts (xy 116.84 115.57) (xy 116.84 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44d3b7f5-f8d5-4bee-8633-65a5779559e2)
)
(wire (pts (xy 172.72 137.16) (xy 177.8 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49b1089c-40bb-4b20-95c4-554b7b52cca6)
)
(wire (pts (xy 71.12 142.24) (xy 81.28 142.24))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d44dfd5-8a9b-4a1f-9152-b9eef819cf82)
)
(wire (pts (xy 182.88 125.73) (xy 203.2 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e114a5c-100e-4f3c-b84c-ddcce0cfb104)
)
(wire (pts (xy 81.28 137.16) (xy 86.36 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5002569f-c5e3-4b0c-b7e6-6cca4062327a)
)
(wire (pts (xy 66.04 115.57) (xy 66.04 132.08))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 506c2373-0c6e-4234-b179-8553885de477)
)
(wire (pts (xy 177.8 99.06) (xy 177.8 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50fe322e-11c5-4cfa-8742-5e5512b0391e)
)
(wire (pts (xy 121.92 109.22) (xy 132.08 109.22))