-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix.kicad_sch
3450 lines (3310 loc) · 135 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 71692346-855f-46af-a3f2-4cb7661f3596)
(paper "A4")
(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_solder" (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_solder" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "marbastlib-mx:SW_MX_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_solder_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))))
)
)
)
)
(junction (at 48.26 76.962) (diameter 0) (color 0 0 0 0)
(uuid 04ac6c87-db96-4c29-b62f-72f81a541a7a)
)
(junction (at 109.22 62.738) (diameter 0) (color 0 0 0 0)
(uuid 068571a0-49a4-43be-bf0c-3a72a0d29fcd)
)
(junction (at 200.66 62.738) (diameter 0) (color 0 0 0 0)
(uuid 0addee70-2231-4938-9bdc-7b4372f5c138)
)
(junction (at 83.82 44.45) (diameter 0) (color 0 0 0 0)
(uuid 10d001a1-b674-4475-9efd-9788e75bd05d)
)
(junction (at 48.26 62.738) (diameter 0) (color 0 0 0 0)
(uuid 12fdfa9d-132b-4a8d-a062-b35a227a188f)
)
(junction (at 154.94 48.514) (diameter 0) (color 0 0 0 0)
(uuid 1517b10f-9eca-48fd-8934-1609a46e7ecc)
)
(junction (at 200.66 48.514) (diameter 0) (color 0 0 0 0)
(uuid 19415d34-68c5-42e8-b954-5daa15528e20)
)
(junction (at 129.54 87.122) (diameter 0) (color 0 0 0 0)
(uuid 197fd0db-cc7c-45ec-8e64-9ff5284ac6fe)
)
(junction (at 129.54 72.898) (diameter 0) (color 0 0 0 0)
(uuid 19e25780-2b91-43d4-80dc-1406969f1a8c)
)
(junction (at 215.9 48.514) (diameter 0) (color 0 0 0 0)
(uuid 1c5f2787-9ec1-4004-8445-0ed26f49db75)
)
(junction (at 48.26 34.29) (diameter 0) (color 0 0 0 0)
(uuid 1cabc9b2-e805-4b2d-ad4e-cf8a81a20f44)
)
(junction (at 246.38 34.29) (diameter 0) (color 0 0 0 0)
(uuid 1d2b92c1-50ae-43d0-a094-ee0a00152a8a)
)
(junction (at 160.02 44.45) (diameter 0) (color 0 0 0 0)
(uuid 20044216-d46d-4bf1-8786-1b3425c41e3c)
)
(junction (at 78.74 34.29) (diameter 0) (color 0 0 0 0)
(uuid 2070385a-b571-4ff9-8b75-9e2b4ecc635b)
)
(junction (at 185.42 76.962) (diameter 0) (color 0 0 0 0)
(uuid 207d1ea5-5cad-4c10-a6b8-04dedb2e0176)
)
(junction (at 33.02 62.738) (diameter 0) (color 0 0 0 0)
(uuid 2169ed88-9740-4ee1-b768-0fc734d78323)
)
(junction (at 99.06 72.898) (diameter 0) (color 0 0 0 0)
(uuid 21afb631-96eb-481b-874e-3757fce6e6e8)
)
(junction (at 114.3 58.674) (diameter 0) (color 0 0 0 0)
(uuid 21bc020e-e201-4359-8cde-f20921d6df83)
)
(junction (at 139.7 34.29) (diameter 0) (color 0 0 0 0)
(uuid 244f7442-1af8-4e02-9d6a-d477ef397892)
)
(junction (at 154.94 34.29) (diameter 0) (color 0 0 0 0)
(uuid 24ffd4f9-a70d-420a-8745-1cfc1478c1cb)
)
(junction (at 68.58 72.898) (diameter 0) (color 0 0 0 0)
(uuid 283932aa-30e3-44b8-9e4a-842a39a32da4)
)
(junction (at 200.66 34.29) (diameter 0) (color 0 0 0 0)
(uuid 2bd21a0f-278c-4d1b-9ddb-13fdf8fe010b)
)
(junction (at 170.18 34.29) (diameter 0) (color 0 0 0 0)
(uuid 2be5b360-b949-4bfb-8170-2b2161a1d475)
)
(junction (at 38.1 72.898) (diameter 0) (color 0 0 0 0)
(uuid 2cd6b7b0-aabd-4614-a823-ee648b3fb22b)
)
(junction (at 114.3 101.346) (diameter 0) (color 0 0 0 0)
(uuid 2db7a4c9-a711-4b54-bf2e-242d215b62c2)
)
(junction (at 139.7 62.738) (diameter 0) (color 0 0 0 0)
(uuid 2ff7a83b-0b76-43bd-a1ab-963e03cd971c)
)
(junction (at 175.26 87.122) (diameter 0) (color 0 0 0 0)
(uuid 3020aef1-ffd0-4d4e-be98-6791edce2328)
)
(junction (at 220.98 101.346) (diameter 0) (color 0 0 0 0)
(uuid 31f16de1-d970-4e46-b001-512b05a74c91)
)
(junction (at 185.42 62.738) (diameter 0) (color 0 0 0 0)
(uuid 32439d0b-154c-48be-aeb9-44007af52f3c)
)
(junction (at 175.26 72.898) (diameter 0) (color 0 0 0 0)
(uuid 368fb0c7-775a-43a8-a496-64f0cac9e3ef)
)
(junction (at 215.9 76.962) (diameter 0) (color 0 0 0 0)
(uuid 371bc4be-a9fd-468e-8689-aefdcbab61b2)
)
(junction (at 205.74 44.45) (diameter 0) (color 0 0 0 0)
(uuid 3ab3010f-e582-46df-99af-9b8fc484cb8f)
)
(junction (at 144.78 44.45) (diameter 0) (color 0 0 0 0)
(uuid 3df6e4c5-10cb-4baf-baea-e5190cc3efdb)
)
(junction (at 109.22 48.514) (diameter 0) (color 0 0 0 0)
(uuid 3f00c2c4-9624-45c9-bad4-521d9b9bbebc)
)
(junction (at 124.46 34.29) (diameter 0) (color 0 0 0 0)
(uuid 3f30eba9-446c-4199-aac4-1f255252700f)
)
(junction (at 129.54 58.674) (diameter 0) (color 0 0 0 0)
(uuid 4157fc14-7040-484c-a6a2-8a8949d4c88c)
)
(junction (at 33.02 48.514) (diameter 0) (color 0 0 0 0)
(uuid 44abe559-5f8e-4e08-a60e-9382460f70f4)
)
(junction (at 220.98 87.122) (diameter 0) (color 0 0 0 0)
(uuid 494577ff-5f30-4172-9e6a-277f4064cee6)
)
(junction (at 68.58 101.346) (diameter 0) (color 0 0 0 0)
(uuid 4eb683a7-ecfd-4153-9361-ac343d666c41)
)
(junction (at 53.34 87.122) (diameter 0) (color 0 0 0 0)
(uuid 5210453e-8005-4645-bf04-12ad6d8b79ad)
)
(junction (at 38.1 58.674) (diameter 0) (color 0 0 0 0)
(uuid 56e1f701-6e19-4d3c-9c97-01db811cef19)
)
(junction (at 190.5 87.122) (diameter 0) (color 0 0 0 0)
(uuid 59cd6ff0-afa3-4fd0-8022-b188b77d82c9)
)
(junction (at 236.22 101.346) (diameter 0) (color 0 0 0 0)
(uuid 5ca64baf-6b19-4828-8660-6e3f35fec941)
)
(junction (at 109.22 76.962) (diameter 0) (color 0 0 0 0)
(uuid 5ef3d670-e213-48e6-b88d-804dfc340f87)
)
(junction (at 160.02 72.898) (diameter 0) (color 0 0 0 0)
(uuid 5fa7c8b2-af68-4b2f-8366-c959298f7137)
)
(junction (at 190.5 72.898) (diameter 0) (color 0 0 0 0)
(uuid 5fcc4d61-4bf1-4475-808b-a6590ea0d745)
)
(junction (at 231.14 34.29) (diameter 0) (color 0 0 0 0)
(uuid 60f28e36-a99e-4f38-9636-ad7de8afc235)
)
(junction (at 175.26 44.45) (diameter 0) (color 0 0 0 0)
(uuid 638451c9-75a6-4604-9fbe-470328a7ef7e)
)
(junction (at 190.5 44.45) (diameter 0) (color 0 0 0 0)
(uuid 6428e6e5-0d26-4fac-9927-fff24aa037cb)
)
(junction (at 236.22 44.45) (diameter 0) (color 0 0 0 0)
(uuid 675a73e0-ed85-4087-9210-5fdcaff33695)
)
(junction (at 53.34 72.898) (diameter 0) (color 0 0 0 0)
(uuid 68a42692-9821-4627-82c4-9f2f8ce045bd)
)
(junction (at 246.38 62.738) (diameter 0) (color 0 0 0 0)
(uuid 69cf053e-a095-415f-85da-b209bdbc52d4)
)
(junction (at 236.22 58.674) (diameter 0) (color 0 0 0 0)
(uuid 6b213c56-a047-4560-b816-b33723a8c59a)
)
(junction (at 99.06 87.122) (diameter 0) (color 0 0 0 0)
(uuid 6ba4dc57-2d58-47d2-978a-c599bc7ac768)
)
(junction (at 124.46 48.514) (diameter 0) (color 0 0 0 0)
(uuid 6d2f3c81-3801-481a-97bf-9284f2fea5be)
)
(junction (at 99.06 44.45) (diameter 0) (color 0 0 0 0)
(uuid 70f43cb2-9e7e-489b-bbfb-bee106beaf47)
)
(junction (at 68.58 87.122) (diameter 0) (color 0 0 0 0)
(uuid 7219cb74-6dcc-46fb-b796-558d17b63f2f)
)
(junction (at 68.58 58.674) (diameter 0) (color 0 0 0 0)
(uuid 73a5928f-ad16-460b-bdb3-25416e01e1a5)
)
(junction (at 231.14 48.514) (diameter 0) (color 0 0 0 0)
(uuid 77bed9da-feca-4f20-a5d0-42e1d492603e)
)
(junction (at 53.34 101.346) (diameter 0) (color 0 0 0 0)
(uuid 7b05db4e-c696-426d-a9e5-d858e7ca76f2)
)
(junction (at 124.46 62.738) (diameter 0) (color 0 0 0 0)
(uuid 7b68f0cd-5a72-4a19-b868-9a5a14b58779)
)
(junction (at 144.78 72.898) (diameter 0) (color 0 0 0 0)
(uuid 82bf92a6-357f-4c52-8fe7-e3d3401510f5)
)
(junction (at 160.02 87.122) (diameter 0) (color 0 0 0 0)
(uuid 851ef3c2-b177-4d64-9a0d-3f3703558c3a)
)
(junction (at 53.34 44.45) (diameter 0) (color 0 0 0 0)
(uuid 887a682c-d705-4e0a-934e-137583f0589a)
)
(junction (at 93.98 48.514) (diameter 0) (color 0 0 0 0)
(uuid 89982963-120c-4b95-ad26-d9b4eea10258)
)
(junction (at 93.98 34.29) (diameter 0) (color 0 0 0 0)
(uuid 8a1f4039-42e4-4cef-bab8-1bdabf2579a9)
)
(junction (at 246.38 76.962) (diameter 0) (color 0 0 0 0)
(uuid 8b244292-9b3b-4ce6-a7ff-8f9f9a9c7935)
)
(junction (at 231.14 62.738) (diameter 0) (color 0 0 0 0)
(uuid 8d9d52c3-c285-4b55-9901-ba2b0a40006b)
)
(junction (at 236.22 87.122) (diameter 0) (color 0 0 0 0)
(uuid 8efeaecb-f1d9-4306-b74f-c221f89c6aeb)
)
(junction (at 38.1 44.45) (diameter 0) (color 0 0 0 0)
(uuid 8fdfc787-dbfa-4f99-8c10-bdcc52deec71)
)
(junction (at 33.02 76.962) (diameter 0) (color 0 0 0 0)
(uuid 90225353-f23a-4612-9a80-c7c27714fcfb)
)
(junction (at 205.74 101.346) (diameter 0) (color 0 0 0 0)
(uuid 909a5caf-80f4-4ffa-a8f5-fb16ef18c0dd)
)
(junction (at 190.5 101.346) (diameter 0) (color 0 0 0 0)
(uuid 91a0c361-8a4b-4336-a73b-fd4750072afe)
)
(junction (at 38.1 87.122) (diameter 0) (color 0 0 0 0)
(uuid 935b61a1-9e65-450f-84de-df89e6d358e8)
)
(junction (at 205.74 58.674) (diameter 0) (color 0 0 0 0)
(uuid 945eede0-720a-4cac-8139-f1b94c459ff9)
)
(junction (at 63.5 76.962) (diameter 0) (color 0 0 0 0)
(uuid 977a8bad-2900-4adb-84eb-1143c1e66abd)
)
(junction (at 160.02 58.674) (diameter 0) (color 0 0 0 0)
(uuid 9bb916fa-ef43-40bb-8bcd-8281e1a1d030)
)
(junction (at 63.5 62.738) (diameter 0) (color 0 0 0 0)
(uuid a0b8396d-2809-46bc-a69b-45dda497ef38)
)
(junction (at 185.42 34.29) (diameter 0) (color 0 0 0 0)
(uuid a253119b-2721-47bc-a721-5d86f66bbac1)
)
(junction (at 78.74 62.738) (diameter 0) (color 0 0 0 0)
(uuid a46368da-8b04-4dfd-8674-a5ad0b6c653d)
)
(junction (at 109.22 34.29) (diameter 0) (color 0 0 0 0)
(uuid a4afe0b1-d847-45b2-93dd-97e5886e641e)
)
(junction (at 220.98 44.45) (diameter 0) (color 0 0 0 0)
(uuid a552bf26-32cb-4406-94a8-ae669de8077c)
)
(junction (at 53.34 58.674) (diameter 0) (color 0 0 0 0)
(uuid aaea4941-4038-450d-ad76-bcc40934aca5)
)
(junction (at 246.38 48.514) (diameter 0) (color 0 0 0 0)
(uuid ad18ccdd-6d72-4931-bf53-87d9f1357ed9)
)
(junction (at 231.14 76.962) (diameter 0) (color 0 0 0 0)
(uuid af361c81-1a4e-4f12-8748-732aa206611d)
)
(junction (at 93.98 62.738) (diameter 0) (color 0 0 0 0)
(uuid afdf57e0-aba7-4c21-95fe-1e66fa016449)
)
(junction (at 99.06 58.674) (diameter 0) (color 0 0 0 0)
(uuid b1052f6e-d759-4a5c-99fa-75bf636a45bf)
)
(junction (at 114.3 44.45) (diameter 0) (color 0 0 0 0)
(uuid b42c7609-e08f-46e5-b57f-53d611493cea)
)
(junction (at 68.58 44.45) (diameter 0) (color 0 0 0 0)
(uuid b81f9fd0-1b7c-42b7-aa7f-5cf8d3153088)
)
(junction (at 83.82 87.122) (diameter 0) (color 0 0 0 0)
(uuid b8619b78-98f4-4238-a0fa-23a4422ffdbb)
)
(junction (at 129.54 44.45) (diameter 0) (color 0 0 0 0)
(uuid beb9c106-9a30-4b40-aced-fdbca91d862b)
)
(junction (at 190.5 58.674) (diameter 0) (color 0 0 0 0)
(uuid c327971d-af76-4fe3-a6ef-5dccf123426d)
)
(junction (at 220.98 58.674) (diameter 0) (color 0 0 0 0)
(uuid c49236ff-446d-47cf-8360-041a13301d40)
)
(junction (at 48.26 48.514) (diameter 0) (color 0 0 0 0)
(uuid c8367f22-7d76-4c53-82b3-95146c3e35af)
)
(junction (at 139.7 48.514) (diameter 0) (color 0 0 0 0)
(uuid c89b0e6c-b1b9-42c6-9298-c020055a8d22)
)
(junction (at 114.3 87.122) (diameter 0) (color 0 0 0 0)
(uuid c9831216-e692-4b51-aaf7-beb7fbaaec83)
)
(junction (at 63.5 48.514) (diameter 0) (color 0 0 0 0)
(uuid ccd4193d-dfc7-4115-bb53-990f1362cae2)
)
(junction (at 144.78 87.122) (diameter 0) (color 0 0 0 0)
(uuid cf631b41-e18b-4c30-9e13-6fc1ed0f9867)
)
(junction (at 78.74 48.514) (diameter 0) (color 0 0 0 0)
(uuid d02f43ba-1e73-4fc1-a8d8-201fd34a6dfd)
)
(junction (at 144.78 58.674) (diameter 0) (color 0 0 0 0)
(uuid d39dc88b-3fb6-4e97-a467-913691ad655c)
)
(junction (at 114.3 72.898) (diameter 0) (color 0 0 0 0)
(uuid d4089db5-8154-41dc-b78a-0231fa3e88d9)
)
(junction (at 83.82 58.674) (diameter 0) (color 0 0 0 0)
(uuid d7e1bf00-ad21-4b22-a8a2-b4f4186184d8)
)
(junction (at 170.18 48.514) (diameter 0) (color 0 0 0 0)
(uuid dcabb761-568c-46d6-ac74-d5467b5425da)
)
(junction (at 38.1 101.346) (diameter 0) (color 0 0 0 0)
(uuid de0b703d-2f10-4380-a970-2e42af4bfceb)
)
(junction (at 170.18 62.738) (diameter 0) (color 0 0 0 0)
(uuid deac9a1b-b6af-424e-a54d-6f3583748c97)
)
(junction (at 175.26 58.674) (diameter 0) (color 0 0 0 0)
(uuid e36a3594-fbe3-429d-8a6a-bbef4700de83)
)
(junction (at 33.02 34.29) (diameter 0) (color 0 0 0 0)
(uuid eaf8ebc8-8bd3-4f12-8601-cfef162466f6)
)
(junction (at 63.5 34.29) (diameter 0) (color 0 0 0 0)
(uuid ec52fa65-7121-4ebb-8558-bc5cf2006d9d)
)
(junction (at 205.74 72.898) (diameter 0) (color 0 0 0 0)
(uuid eda678c5-e39e-4058-bc0b-03963344b4a4)
)
(junction (at 83.82 72.898) (diameter 0) (color 0 0 0 0)
(uuid efca12bd-fc67-4889-8e58-554fc27e950d)
)
(junction (at 185.42 48.514) (diameter 0) (color 0 0 0 0)
(uuid f6022f23-6199-4991-a636-5861f1fb4e72)
)
(junction (at 236.22 72.898) (diameter 0) (color 0 0 0 0)
(uuid fa86bbc9-24d3-4719-87ce-133c375af57d)
)
(junction (at 215.9 34.29) (diameter 0) (color 0 0 0 0)
(uuid fab6b442-14ba-4d91-8e2b-028231f701d0)
)
(junction (at 154.94 62.738) (diameter 0) (color 0 0 0 0)
(uuid fbd2aa2a-aca4-4e9e-9063-1ef1ebb82893)
)
(wire (pts (xy 220.98 44.45) (xy 236.22 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02ba4958-ea3a-46d6-94b3-0a3f9f8a42dd)
)
(wire (pts (xy 99.06 44.45) (xy 114.3 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a8976aa-da23-45ec-8dfe-c89274260ec3)
)
(wire (pts (xy 200.66 48.514) (xy 200.66 62.738))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b11a57b-f7f4-4ae6-9d74-50dee00f56fd)
)
(wire (pts (xy 220.98 87.122) (xy 236.22 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11789975-58a4-470d-9891-a9d571087ad2)
)
(wire (pts (xy 205.74 101.346) (xy 220.98 101.346))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11dec71b-218b-489d-bc26-dd62aad55a9e)
)
(wire (pts (xy 93.98 48.514) (xy 93.98 62.738))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 128ae763-071e-4fe3-ae0f-a49baef925a3)
)
(wire (pts (xy 246.38 30.226) (xy 246.38 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 128c0501-69a9-472c-a524-cc744abbf085)
)
(wire (pts (xy 160.02 44.45) (xy 175.26 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1388ce1d-daae-4742-90a6-88420c47db54)
)
(wire (pts (xy 114.3 72.898) (xy 129.54 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15a44be3-3f4e-4802-8ca1-0c33e54b3e2b)
)
(wire (pts (xy 99.06 72.898) (xy 114.3 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1862586d-f85b-4a77-a656-0722959a9edc)
)
(wire (pts (xy 38.1 101.346) (xy 53.34 101.346))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c56b6ed-1f1a-450b-b51f-f4d1eaf623cd)
)
(wire (pts (xy 175.26 58.674) (xy 190.5 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c9865e0-efab-4f2f-827c-2176e7f94102)
)
(wire (pts (xy 160.02 58.674) (xy 175.26 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d997141-641f-4426-914b-35a6f901b169)
)
(wire (pts (xy 33.02 76.962) (xy 33.02 91.186))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e66d071-e91b-4f6d-af70-69279736ae14)
)
(wire (pts (xy 246.38 76.962) (xy 246.38 91.186))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e80e398-ae91-4f97-a924-b21d6f9e0032)
)
(wire (pts (xy 190.5 72.898) (xy 205.74 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f681b51-e314-4cf4-a6d3-92016c435cc2)
)
(wire (pts (xy 236.22 44.45) (xy 251.46 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20184c09-2fe2-4c29-b8a6-f6f0cffcab7a)
)
(wire (pts (xy 170.18 48.514) (xy 170.18 62.738))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21f76a81-a07d-41e1-a7f2-68762ae78862)
)
(wire (pts (xy 124.46 62.738) (xy 124.46 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23126952-6847-405f-a671-3f8c18084afb)
)
(wire (pts (xy 185.42 30.226) (xy 185.42 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29334dd7-bafe-4b83-840b-958f4ced560c)
)
(wire (pts (xy 78.74 30.226) (xy 78.74 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a488a9c-2f19-490a-a369-15d5350aa3de)
)
(wire (pts (xy 236.22 101.346) (xy 251.46 101.346))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a7cdf62-4d35-432f-8e7d-a30156a08fda)
)
(wire (pts (xy 190.5 58.674) (xy 205.74 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b1d8fa9-3dba-444b-81ee-d1805892be56)
)
(wire (pts (xy 246.38 48.514) (xy 246.38 62.738))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2bc464a1-93b4-444b-a9a5-30b3851d4823)
)
(wire (pts (xy 215.9 48.514) (xy 215.9 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f0bb1c0-178c-4cd3-8c39-9c7e5f406bef)
)
(wire (pts (xy 160.02 87.122) (xy 175.26 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30dec655-24e7-4e22-976f-59a769a7c6ce)
)
(wire (pts (xy 160.02 72.898) (xy 175.26 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 319bad4f-4e35-4f04-b1ad-89ff96b0234e)
)
(wire (pts (xy 190.5 44.45) (xy 205.74 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34894fd0-1d87-471d-b5af-38b74e11f930)
)
(wire (pts (xy 27.686 101.346) (xy 38.1 101.346))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3640e13c-849d-4f6c-a6d9-710bbb064f6a)
)
(wire (pts (xy 205.74 58.674) (xy 220.98 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37c84155-1370-4732-bc82-e767affa846e)
)
(wire (pts (xy 190.5 87.122) (xy 220.98 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3991b50c-2d51-423b-80d7-3e2c3758bc5a)
)
(wire (pts (xy 63.5 34.29) (xy 63.5 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a03b647-1a31-4012-9b1d-f7fd5e78c65d)
)
(wire (pts (xy 154.94 34.29) (xy 154.94 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b51053c-024b-4e6c-bb1d-c91b25399e24)
)
(wire (pts (xy 144.78 58.674) (xy 160.02 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c7ff237-777c-492f-bdd8-e04b8497ca56)
)
(wire (pts (xy 154.94 62.738) (xy 154.94 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d77da4c-5d1a-4685-bae0-e9fed805987e)
)
(wire (pts (xy 236.22 72.898) (xy 251.46 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e0000ac-4166-42aa-800c-0b16b3b30c6b)
)
(wire (pts (xy 129.54 87.122) (xy 144.78 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f66fc5a-04fd-4bba-897f-beb85a43f3c4)
)
(wire (pts (xy 68.58 101.346) (xy 114.3 101.346))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f745ff2-2ac6-43d9-99c2-64614b92f47e)
)
(wire (pts (xy 27.94 58.674) (xy 38.1 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 453417de-454a-4bf1-bfe1-02b982c9ddbf)
)
(wire (pts (xy 48.26 48.514) (xy 48.26 62.738))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45b2d5d9-23f0-4a6d-9414-998d1ba14c4c)
)
(wire (pts (xy 33.274 48.514) (xy 33.02 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b33e8c2-6926-4def-ab0d-8e234fcd71d2)
)
(wire (pts (xy 200.66 30.226) (xy 200.66 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4bb9fc5c-ada6-4701-9a51-d2adfd5bb2ef)
)
(wire (pts (xy 154.94 48.514) (xy 154.94 62.738))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50275845-6410-426c-8a83-9dde439d7322)
)
(wire (pts (xy 53.34 87.122) (xy 68.58 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 506f009b-682f-477c-82be-71f520e2bc37)
)
(wire (pts (xy 53.34 101.346) (xy 68.58 101.346))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 52d7b1f2-fcaf-437e-a171-6c8685f5f6ac)
)
(wire (pts (xy 78.74 48.514) (xy 78.74 62.738))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5387ba37-8315-4122-8b12-3c8e7232d291)
)
(wire (pts (xy 109.22 30.226) (xy 109.22 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53b5b300-9e69-41a9-901e-d76a1aba94c7)
)
(wire (pts (xy 236.22 58.674) (xy 251.46 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54cb79e6-351d-40eb-bb7d-f5dcd8c56341)
)
(wire (pts (xy 205.74 44.45) (xy 220.98 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 565a26e1-48ca-4551-b772-1357ef208b45)
)
(wire (pts (xy 48.26 30.226) (xy 48.26 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57c64f3a-7161-4c16-b27c-5069ca38b11a)
)
(wire (pts (xy 93.98 62.738) (xy 93.98 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a1e1301-e8b3-43b2-9196-463c500211bf)
)
(wire (pts (xy 124.46 48.514) (xy 124.46 62.738))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5b27da05-a472-4bc5-9764-873c756a7058)
)
(wire (pts (xy 83.82 72.898) (xy 99.06 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ec86fb0-d032-40bd-8a99-9dcce110d011)
)
(wire (pts (xy 139.7 30.226) (xy 139.7 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5f1f5ad9-7a0b-4286-ba52-f5b9866d7352)
)
(wire (pts (xy 109.22 34.29) (xy 109.22 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5f803bae-c8ef-478b-9b71-380010a9ac54)
)
(wire (pts (xy 114.3 58.674) (xy 129.54 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61f81a95-1886-4684-b1dc-d9536f84d96b)
)
(wire (pts (xy 68.58 44.45) (xy 83.82 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 624cbc60-0046-43b1-a840-d4d25e874a3f)
)
(wire (pts (xy 53.34 44.45) (xy 68.58 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 659c7028-f3ea-43b2-8882-15716ac3c6cb)
)
(wire (pts (xy 124.46 30.226) (xy 124.46 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 65d75a15-f45b-4f44-8a81-543defef2a2d)
)
(wire (pts (xy 63.5 76.962) (xy 63.5 91.186))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a701e99-7000-4db0-bda2-38f2f28f10db)
)
(wire (pts (xy 114.3 101.346) (xy 190.5 101.346))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 701347b5-6313-43ed-a8bc-cc2a29c32735)
)
(wire (pts (xy 109.22 48.514) (xy 109.22 62.738))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 720ca8e0-c03a-4462-865f-31a13d69927f)
)
(wire (pts (xy 38.354 53.594) (xy 38.1 53.594))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72c1eb02-b643-4ae8-8d09-4b6b97f11606)
)
(wire (pts (xy 144.78 87.122) (xy 160.02 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 73165db3-62b0-4dea-8ab6-feb402bf463b)
)
(wire (pts (xy 53.34 72.898) (xy 68.58 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 73adad04-fc03-41c8-b63e-5fbf553096b6)
)
(wire (pts (xy 231.14 30.226) (xy 231.14 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 76bca6a8-c688-43d7-9f4a-a52b830e2acb)
)
(wire (pts (xy 175.26 87.122) (xy 190.5 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 76d16e94-988b-4802-8508-8d1dff4a027a)
)
(wire (pts (xy 129.54 44.45) (xy 144.78 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 777a5868-a3a5-4948-ad54-95b753bb8575)
)
(wire (pts (xy 231.14 34.29) (xy 231.14 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 789bf5ca-1272-4482-8222-becacde863a1)
)
(wire (pts (xy 68.58 72.898) (xy 83.82 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b5f549d-1629-4484-a17b-07a43bf5d445)
)
(wire (pts (xy 200.66 62.738) (xy 200.66 91.186))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f235eec-ca73-49a5-921a-4b813bbf3135)
)
(wire (pts (xy 139.7 34.29) (xy 139.7 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8005ab03-2b7f-4fe2-9c97-695c358ba2d7)
)
(wire (pts (xy 27.94 44.45) (xy 38.1 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 80e17fb6-4fd4-4aa5-93b8-140a00b6d786)
)
(wire (pts (xy 215.9 34.29) (xy 215.9 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 80e748d3-5f6c-4419-8b3f-08ca68c49b53)
)
(wire (pts (xy 109.22 76.962) (xy 109.22 91.186))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82dbc72c-a2bc-45c7-8e99-30bbe8a34fe0)
)
(wire (pts (xy 93.98 34.29) (xy 93.98 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 843460e9-77b9-46ac-9e05-7b79595ef051)
)
(wire (pts (xy 53.34 58.674) (xy 68.58 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8752a23d-1f96-42a2-bc5f-30fe3ade828d)
)
(wire (pts (xy 246.38 34.29) (xy 246.38 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 876b4514-b4d2-4804-ae6c-ffcee88315be)
)
(wire (pts (xy 33.02 48.514) (xy 33.02 62.738))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c484722-4425-4d1a-a383-58e43f601963)
)
(wire (pts (xy 83.82 44.45) (xy 99.06 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e4bdc16-c910-4fbc-8518-9acd8195fd95)
)
(wire (pts (xy 99.06 58.674) (xy 114.3 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 91a00c0e-3143-400f-941f-9727d41488a4)
)
(wire (pts (xy 33.02 30.226) (xy 33.02 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 91a870a4-8b43-4c6d-9c0b-00d6d919cfc0)
)
(wire (pts (xy 38.1 58.674) (xy 53.34 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92b22a9c-0f3f-489d-9e9d-059d9d3ca81f)
)
(wire (pts (xy 200.66 34.29) (xy 200.66 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93943b6a-91f6-4c17-b36d-1d9a983d26cb)
)
(wire (pts (xy 170.18 30.226) (xy 170.18 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93a007d1-11ca-4e4b-b35d-502143f2090c)
)
(wire (pts (xy 144.78 72.898) (xy 160.02 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9798e906-73f7-46c8-b5d0-0c850a4167ed)
)
(wire (pts (xy 236.22 87.122) (xy 251.46 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 990c056e-79f0-424a-97dd-485957cac5c8)
)
(wire (pts (xy 231.14 76.962) (xy 231.14 91.186))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b0df06e-ae2a-458a-a8b6-fcf3ec1080ad)
)
(wire (pts (xy 83.82 87.122) (xy 99.06 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b18fc75-955d-435c-a0e3-e778764194e5)
)
(wire (pts (xy 231.14 62.738) (xy 231.14 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c6fcb38-8dd3-4f65-bf1f-6cf13a251a82)
)
(wire (pts (xy 175.26 72.898) (xy 190.5 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9de5a416-5699-4d66-a7dd-ad3ba57f7cb2)
)
(wire (pts (xy 68.58 87.122) (xy 83.82 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9dfd7895-ddd7-43ab-baf3-c300cc60de03)
)
(wire (pts (xy 109.22 62.738) (xy 109.22 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e7bf6a6-f33d-4c14-92a8-22b314063321)
)
(wire (pts (xy 68.58 58.674) (xy 83.82 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9edc300d-32e5-4be0-9593-4d14afd6edc4)
)
(wire (pts (xy 99.06 87.122) (xy 114.3 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aafc008d-7c2c-4887-9c0e-2153473d8ddc)
)
(wire (pts (xy 129.54 58.674) (xy 144.78 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b0594502-94da-47f4-a0b3-5efa08dbd1a3)
)
(wire (pts (xy 27.94 87.122) (xy 38.1 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b2dd7213-9a39-451e-b837-331ad541a406)
)
(wire (pts (xy 48.26 34.29) (xy 48.26 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b5d9a8ae-8c3f-4fe4-8cd2-51d95af91232)
)
(wire (pts (xy 129.54 72.898) (xy 144.78 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b73337f5-be16-4d7b-84be-8cc80109e532)
)
(wire (pts (xy 175.26 44.45) (xy 190.5 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7d76980-59e7-4fc1-a421-580a4e46558e)
)
(wire (pts (xy 78.74 34.29) (xy 78.74 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bc9b89af-7571-4bdc-98f4-32cd27f201e7)
)
(wire (pts (xy 185.42 62.738) (xy 185.42 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bd5b6899-aa6f-4754-a059-65d7fdfc61f9)
)
(wire (pts (xy 220.98 58.674) (xy 236.22 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid be78f6c8-cb45-4f20-bab1-0e052f3bfffe)
)
(wire (pts (xy 63.5 30.226) (xy 63.5 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1ed48d8-23fa-4f85-9548-d2f7bb913d7a)
)
(wire (pts (xy 139.7 62.738) (xy 139.7 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c24b5e02-8fb3-410e-8da7-f6e335e668e6)
)
(wire (pts (xy 185.42 34.29) (xy 185.42 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ca7462fc-e64d-466d-8107-454f7ae278dc)
)
(wire (pts (xy 63.5 48.514) (xy 63.5 62.738))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ca94b48a-02e5-4e9c-8466-1d5b4ffbb12e)
)
(wire (pts (xy 170.18 62.738) (xy 170.18 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d1ae65ff-7b8f-4bf2-904e-79a9c30415bf)
)
(wire (pts (xy 48.26 62.738) (xy 48.26 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d36f83db-2e6a-45de-8b59-8aa75dec8fcc)
)
(wire (pts (xy 114.3 87.122) (xy 129.54 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d527c22c-04bc-49d8-b93a-55df30cb1a45)
)
(wire (pts (xy 48.26 76.962) (xy 48.26 91.186))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d724f1f4-a881-4cd0-8607-57564150535e)
)
(wire (pts (xy 27.94 72.898) (xy 38.1 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d79a694e-45ec-4a0c-bac2-1bf6496c193a)
)
(wire (pts (xy 33.02 62.738) (xy 33.02 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d7f05b9d-0d1f-4e6c-a4ed-e6171dcafed3)
)
(wire (pts (xy 231.14 48.514) (xy 231.14 62.738))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d9cdcb9a-d45e-489c-8b2d-c75e638f50e8)
)
(wire (pts (xy 63.5 62.738) (xy 63.5 76.962))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d9d62b1a-8d2f-4df5-a6d7-513b1bf26e43)
)
(wire (pts (xy 170.18 34.29) (xy 170.18 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dad152d6-ac5b-4f42-b385-06c107cf6b43)
)
(wire (pts (xy 124.46 34.29) (xy 124.46 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dad3ecf9-2551-46f4-9b34-c657144d8157)
)
(wire (pts (xy 190.5 101.346) (xy 205.74 101.346))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dc540d1a-2f81-4a19-a576-1abbe3ec6c7b)
)
(wire (pts (xy 38.1 44.45) (xy 53.34 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd557bb6-cebf-4f4d-a33b-c1c35d2c3f5a)
)
(wire (pts (xy 185.42 48.514) (xy 185.42 62.738))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e136a869-3cb1-4624-8a30-af59cd4ad99f)
)
(wire (pts (xy 38.1 87.122) (xy 53.34 87.122))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e289f7d7-b7a2-4e69-ac41-ddb8a426f9ea)
)
(wire (pts (xy 144.78 44.45) (xy 160.02 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5c6bbce-1911-4714-a714-28ca2719b63d)
)
(wire (pts (xy 38.1 72.898) (xy 53.34 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e971d14d-cee7-4a4d-a057-a318366389ba)
)
(wire (pts (xy 205.74 72.898) (xy 236.22 72.898))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e97887f2-b55d-447b-ab32-e0cbbcb2f140)
)
(wire (pts (xy 185.42 76.962) (xy 185.42 91.186))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ecf8cfa2-0f55-4073-a043-c8d5ffb01a4f)
)
(wire (pts (xy 83.82 58.674) (xy 99.06 58.674))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f3469fd9-0674-4ee4-98b6-4c4ce02d5e99)
)
(wire (pts (xy 154.94 30.226) (xy 154.94 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f35b7219-c58a-4246-b248-c93682602b2a)
)
(wire (pts (xy 93.98 30.226) (xy 93.98 34.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f4657cba-5b70-4757-9f00-858664744947)
)
(wire (pts (xy 33.02 34.29) (xy 33.02 48.514))
(stroke (width 0) (type default) (color 0 0 0 0))