-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpower-board.kicad_sch
1785 lines (1767 loc) · 69.7 KB
/
power-board.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 701d05ac-a5c7-4a4e-809d-cfc88eda68ff)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_01x04_Female" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04_Female" (id 1) (at 0 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x04_Female_1_1"
(arc (start 0 -4.572) (mid -0.508 -5.08) (end 0 -5.588)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -2.032) (mid -0.508 -2.54) (end 0 -3.048)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -5.08)
(xy -0.508 -5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -2.54)
(xy -0.508 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy -0.508 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.54)
(xy -0.508 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0.508) (mid -0.508 0) (end 0 -0.508)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 3.048) (mid -0.508 2.54) (end 0 2.032)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_02x08_Odd_Even" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 1.27 10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_02x08_Odd_Even" (id 1) (at 1.27 -12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, double row, 02x08, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_02x08_Odd_Even_1_1"
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 8.89) (end 3.81 -11.43)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(rectangle (start 3.81 -10.033) (end 2.54 -10.287)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -7.493) (end 2.54 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -4.953) (end 2.54 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 -2.413) (end 2.54 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 0.127) (end 2.54 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 2.667) (end 2.54 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 5.207) (end 2.54 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 3.81 7.747) (end 2.54 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -2.54 180) (length 3.81)
(name "Pin_10" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -5.08 180) (length 3.81)
(name "Pin_12" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -7.62 180) (length 3.81)
(name "Pin_14" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 -10.16 180) (length 3.81)
(name "Pin_16" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 7.62 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 5.08 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 2.54 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_9" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+12V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+12V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+12V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+12V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+12V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+12V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:-12V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "-12V" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"-12V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "-12V_0_0"
(pin power_in line (at 0 0 90) (length 0) hide
(name "-12V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "-12V_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy 0.762 1.27)
(xy 0 2.54)
(xy -0.762 1.27)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 167.64 75.565) (diameter 0) (color 0 0 0 0)
(uuid 005fe5d8-0f7e-4602-a600-53ef12b55bfb)
)
(junction (at 217.17 78.105) (diameter 0) (color 0 0 0 0)
(uuid 03eca130-822b-4449-983e-c8cb946e5d18)
)
(junction (at 220.345 71.755) (diameter 0) (color 0 0 0 0)
(uuid 075e6458-f598-4c58-b802-609b0d3f8fe1)
)
(junction (at 148.59 64.135) (diameter 0) (color 0 0 0 0)
(uuid 077563de-e6a9-4f93-9a6f-a1e91bfc3842)
)
(junction (at 198.755 71.755) (diameter 0) (color 0 0 0 0)
(uuid 08c9da86-d7ef-4dfa-8406-2dfd24819aac)
)
(junction (at 147.32 71.12) (diameter 0) (color 0 0 0 0)
(uuid 1602997b-7139-479b-b5cc-19834729ab08)
)
(junction (at 184.785 78.105) (diameter 0) (color 0 0 0 0)
(uuid 170a90f8-98d0-4831-94e6-700fd0c255c2)
)
(junction (at 181.61 71.755) (diameter 0) (color 0 0 0 0)
(uuid 192f6460-0e2d-4c7e-8bc3-1f87ff54e95b)
)
(junction (at 168.91 84.455) (diameter 0) (color 0 0 0 0)
(uuid 196dc517-33e5-440b-87ce-14c7810eabca)
)
(junction (at 164.465 71.755) (diameter 0) (color 0 0 0 0)
(uuid 19d1191a-9c4c-49dc-aeb8-7347a884b956)
)
(junction (at 167.64 78.105) (diameter 0) (color 0 0 0 0)
(uuid 1cd50622-d827-4ce2-8e91-5a671d39b19b)
)
(junction (at 150.495 64.135) (diameter 0) (color 0 0 0 0)
(uuid 2125ad1b-9457-46fb-9169-2be8b34a9079)
)
(junction (at 147.32 69.215) (diameter 0) (color 0 0 0 0)
(uuid 21d8b43a-6500-472d-bb37-9c57df2d7b46)
)
(junction (at 168.91 81.915) (diameter 0) (color 0 0 0 0)
(uuid 2389b490-acd4-4834-b69e-53190918cce9)
)
(junction (at 181.61 84.455) (diameter 0) (color 0 0 0 0)
(uuid 2526a3e2-b08b-4654-93f1-5550e060498c)
)
(junction (at 220.345 81.915) (diameter 0) (color 0 0 0 0)
(uuid 25b7e898-f689-4512-8521-9fccb0e3ac02)
)
(junction (at 133.35 75.565) (diameter 0) (color 0 0 0 0)
(uuid 2883ec13-06d7-4749-8431-a63d24e155f1)
)
(junction (at 200.025 75.565) (diameter 0) (color 0 0 0 0)
(uuid 2b401d1f-59ef-4eec-81a3-a673fc87be89)
)
(junction (at 203.2 71.12) (diameter 0) (color 0 0 0 0)
(uuid 2d92bd1c-da66-4233-a6fe-63d0a055ca9a)
)
(junction (at 181.61 69.215) (diameter 0) (color 0 0 0 0)
(uuid 2f564897-e1ed-4e2a-b329-80b3180a266e)
)
(junction (at 215.9 71.755) (diameter 0) (color 0 0 0 0)
(uuid 3055f570-8330-4cbc-b61b-7fb8323538b8)
)
(junction (at 203.2 69.215) (diameter 0) (color 0 0 0 0)
(uuid 35ab7f4d-de08-4b7f-83a9-316212672dc2)
)
(junction (at 134.62 71.755) (diameter 0) (color 0 0 0 0)
(uuid 3bb34c3d-709c-4483-8279-ff9818901712)
)
(junction (at 150.495 78.105) (diameter 0) (color 0 0 0 0)
(uuid 3e261eb6-9671-4e49-97b7-ac37ca863327)
)
(junction (at 164.465 71.12) (diameter 0) (color 0 0 0 0)
(uuid 3eba9fcb-5327-4099-bf74-ef5747de7b15)
)
(junction (at 181.61 71.12) (diameter 0) (color 0 0 0 0)
(uuid 43738351-ba89-42e9-b602-ed9019e44940)
)
(junction (at 133.35 64.135) (diameter 0) (color 0 0 0 0)
(uuid 479ebd15-073d-4114-93b8-bd7549da1da1)
)
(junction (at 233.045 71.755) (diameter 0) (color 0 0 0 0)
(uuid 48f2235e-4731-4e23-b8d6-2937e52b3677)
)
(junction (at 219.075 78.105) (diameter 0) (color 0 0 0 0)
(uuid 4bb8a319-b453-4e54-bf16-3c492e12d865)
)
(junction (at 128.27 69.85) (diameter 0) (color 0 0 0 0)
(uuid 4bbc3d78-65b0-42f7-b04a-39ae2232dc83)
)
(junction (at 148.59 75.565) (diameter 0) (color 0 0 0 0)
(uuid 55012d6c-8b47-450d-9b60-a6aa13504349)
)
(junction (at 203.2 84.455) (diameter 0) (color 0 0 0 0)
(uuid 55ec4694-c74a-4ff0-b134-75fa39b826bf)
)
(junction (at 164.465 69.215) (diameter 0) (color 0 0 0 0)
(uuid 57182250-1e59-4693-a822-8b529ea745a4)
)
(junction (at 186.055 71.755) (diameter 0) (color 0 0 0 0)
(uuid 571f1735-3452-4a62-9117-daa1c69cb023)
)
(junction (at 123.19 64.135) (diameter 0) (color 0 0 0 0)
(uuid 57c8350e-f1f3-4529-9e37-eda3cb98e01b)
)
(junction (at 215.9 69.215) (diameter 0) (color 0 0 0 0)
(uuid 5fb5e08d-ee19-49eb-850f-5e20ba387920)
)
(junction (at 200.025 64.135) (diameter 0) (color 0 0 0 0)
(uuid 5fbf5843-27cb-4d00-8889-08e1115c8b65)
)
(junction (at 151.765 81.915) (diameter 0) (color 0 0 0 0)
(uuid 60432631-e9d8-410e-9fb1-39c844978f59)
)
(junction (at 201.93 64.135) (diameter 0) (color 0 0 0 0)
(uuid 61a17840-4bfe-4bf5-90df-cb690ad10c3d)
)
(junction (at 151.765 69.215) (diameter 0) (color 0 0 0 0)
(uuid 6385f89f-19cc-4693-893a-31d752366e6d)
)
(junction (at 182.88 78.105) (diameter 0) (color 0 0 0 0)
(uuid 6402132d-aeba-470d-9922-5ab725718fc5)
)
(junction (at 164.465 84.455) (diameter 0) (color 0 0 0 0)
(uuid 65cecf43-84c1-41d2-9a91-5c99680e3fb5)
)
(junction (at 186.055 81.915) (diameter 0) (color 0 0 0 0)
(uuid 688da525-6dbe-45f2-ab61-a0ae1144a558)
)
(junction (at 165.735 75.565) (diameter 0) (color 0 0 0 0)
(uuid 6eb47e8d-d5c9-4708-a368-83624e52baa0)
)
(junction (at 151.765 71.12) (diameter 0) (color 0 0 0 0)
(uuid 706f0e12-789f-4260-93b0-446dbd6c381f)
)
(junction (at 184.785 75.565) (diameter 0) (color 0 0 0 0)
(uuid 76af1909-4675-4185-9c10-c7ec32420601)
)
(junction (at 164.465 81.915) (diameter 0) (color 0 0 0 0)
(uuid 7894eef7-1ee1-4d13-998e-f998b05948eb)
)
(junction (at 134.62 69.215) (diameter 0) (color 0 0 0 0)
(uuid 7909dfdb-a2e8-4e28-ad0d-8d40d990ef40)
)
(junction (at 165.735 78.105) (diameter 0) (color 0 0 0 0)
(uuid 7b184402-94ca-42fd-a818-b295b04b5a60)
)
(junction (at 215.9 84.455) (diameter 0) (color 0 0 0 0)
(uuid 7b3e4cd3-7e76-40b0-9ea8-9c60766d93f1)
)
(junction (at 148.59 78.105) (diameter 0) (color 0 0 0 0)
(uuid 83baa3c2-cae1-4c22-8056-ebcc6bc8f3fa)
)
(junction (at 168.91 71.12) (diameter 0) (color 0 0 0 0)
(uuid 844fd257-c7c8-493f-b8b9-1bccab94e4d9)
)
(junction (at 233.045 69.215) (diameter 0) (color 0 0 0 0)
(uuid 84cada03-d733-41e5-bddb-e90103743a05)
)
(junction (at 203.2 81.915) (diameter 0) (color 0 0 0 0)
(uuid 957bebfe-e4e8-423f-bef7-038d6137dd45)
)
(junction (at 215.9 81.915) (diameter 0) (color 0 0 0 0)
(uuid 9856608b-ae27-4e64-aac9-6db737b41f85)
)
(junction (at 147.32 84.455) (diameter 0) (color 0 0 0 0)
(uuid 991af71f-722a-434d-9b8b-78d6e12d9b70)
)
(junction (at 168.91 69.215) (diameter 0) (color 0 0 0 0)
(uuid 9a63f2b1-95a5-4e05-843d-97adc4856b9b)
)
(junction (at 198.755 81.915) (diameter 0) (color 0 0 0 0)
(uuid 9cc0c62b-9d2f-4b83-993c-3a671dc9c73e)
)
(junction (at 198.755 69.215) (diameter 0) (color 0 0 0 0)
(uuid 9d730862-9131-4345-8fd9-410bde9cb3d8)
)
(junction (at 147.32 71.755) (diameter 0) (color 0 0 0 0)
(uuid a3ac3c6f-d114-4021-9930-ff9e21231bc6)
)
(junction (at 219.075 64.135) (diameter 0) (color 0 0 0 0)
(uuid a9e6d316-9b19-414d-966c-e71c15385a75)
)
(junction (at 182.88 75.565) (diameter 0) (color 0 0 0 0)
(uuid aa822aae-d6d7-4d3b-b855-86f62c496217)
)
(junction (at 201.93 78.105) (diameter 0) (color 0 0 0 0)
(uuid ac4e8667-0c1e-4fa4-81f3-0223532bace0)
)
(junction (at 217.17 75.565) (diameter 0) (color 0 0 0 0)
(uuid acc1e170-f7d0-4f7e-a02d-46f37f6b99f6)
)
(junction (at 215.9 71.12) (diameter 0) (color 0 0 0 0)
(uuid add37a86-97cb-4f8e-82f5-88a9a9c324ad)
)
(junction (at 168.91 71.755) (diameter 0) (color 0 0 0 0)
(uuid ae987e2b-784f-4211-a6fb-0d250e695b52)
)
(junction (at 220.345 69.215) (diameter 0) (color 0 0 0 0)
(uuid af2e188c-d4e6-429c-ac22-b23c03f85a8a)
)
(junction (at 220.345 71.12) (diameter 0) (color 0 0 0 0)
(uuid b098bca3-2411-4938-86f9-6f846a489de6)
)
(junction (at 220.345 84.455) (diameter 0) (color 0 0 0 0)
(uuid b1dc9288-6085-4062-a78c-f093876a773d)
)
(junction (at 201.93 75.565) (diameter 0) (color 0 0 0 0)
(uuid b665b81f-e221-4904-b04b-1485de127fd9)
)
(junction (at 125.73 71.755) (diameter 0) (color 0 0 0 0)
(uuid b7ff7eb3-ce46-453e-9861-e0ebb59e5761)
)
(junction (at 198.755 84.455) (diameter 0) (color 0 0 0 0)
(uuid be39f156-ca8d-43e8-8a1a-3171ce6a0393)
)
(junction (at 203.2 71.755) (diameter 0) (color 0 0 0 0)
(uuid be5f4682-d920-4e1b-a056-6c5f547c98ec)
)
(junction (at 150.495 75.565) (diameter 0) (color 0 0 0 0)
(uuid c060fcb2-6778-4528-9bb8-9b63c2e66b8c)
)
(junction (at 182.88 64.135) (diameter 0) (color 0 0 0 0)
(uuid c0a3c4b4-9a47-458b-843b-aa3855be7572)
)
(junction (at 186.055 69.215) (diameter 0) (color 0 0 0 0)
(uuid c5724001-33dd-45cb-bd69-5a5a3c0e9d24)
)
(junction (at 198.755 71.12) (diameter 0) (color 0 0 0 0)
(uuid ca9715be-5efd-4c75-86a9-50ff5e86b6e6)
)
(junction (at 130.81 74.295) (diameter 0) (color 0 0 0 0)
(uuid cad49c3b-927c-453a-bcaa-24f62ad19830)
)
(junction (at 151.765 84.455) (diameter 0) (color 0 0 0 0)
(uuid cf10b9f6-fc84-4303-b0bc-5f69a077136f)
)
(junction (at 167.64 64.135) (diameter 0) (color 0 0 0 0)
(uuid d00b2b19-148b-48f4-9e7a-693d1dd74409)
)
(junction (at 219.075 75.565) (diameter 0) (color 0 0 0 0)
(uuid d6fbcb3b-d9d4-4ac6-af28-e4d4548451e4)
)
(junction (at 186.055 84.455) (diameter 0) (color 0 0 0 0)
(uuid d7b8cda9-31d7-44cc-be43-58ba4e009e8d)
)
(junction (at 147.32 81.915) (diameter 0) (color 0 0 0 0)
(uuid db8b42a4-2eb9-4fba-b127-5b1049a9ac45)
)
(junction (at 217.17 64.135) (diameter 0) (color 0 0 0 0)
(uuid dbd28951-a152-40f5-8ef3-a69ae6cbdb46)
)
(junction (at 200.025 78.105) (diameter 0) (color 0 0 0 0)
(uuid ddfdfa35-9bd7-4935-907b-3569cb2516b1)
)
(junction (at 151.765 71.755) (diameter 0) (color 0 0 0 0)
(uuid deb2136e-8fb0-47cf-8f87-9c2f6252e803)
)
(junction (at 165.735 64.135) (diameter 0) (color 0 0 0 0)
(uuid df77f919-f53f-48bd-8949-2b1907f933a7)
)
(junction (at 186.055 71.12) (diameter 0) (color 0 0 0 0)
(uuid e162c9cc-197f-4408-b290-24ff16a30f52)
)
(junction (at 184.785 64.135) (diameter 0) (color 0 0 0 0)
(uuid e294dbc0-f83c-4ba2-8a6a-761f19f5aa51)
)
(junction (at 133.35 78.105) (diameter 0) (color 0 0 0 0)
(uuid e3e24801-c42d-40d8-ba4f-f2500f29e1bc)
)
(junction (at 181.61 81.915) (diameter 0) (color 0 0 0 0)
(uuid edb165d0-8328-47fe-96c5-d2318bcd1e09)
)
(wire (pts (xy 150.495 76.835) (xy 150.495 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01fc1af1-8a30-4ade-a80f-d446cc98a89d)
)
(wire (pts (xy 200.025 75.565) (xy 201.93 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03526d0f-84fb-4810-9a4f-0b2f45437e9a)
)
(wire (pts (xy 198.755 71.12) (xy 203.2 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05fd7915-d13f-43cb-84b4-8890626d90b2)
)
(wire (pts (xy 181.61 81.915) (xy 186.055 81.915))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06cd4f74-3b79-4e0c-ac0e-d14e2f880808)
)
(wire (pts (xy 164.465 71.12) (xy 164.465 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06dcf766-9a57-447b-a266-1254a8c3ed65)
)
(wire (pts (xy 200.025 78.105) (xy 200.025 79.375))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 075dfe2d-6243-4852-8fa1-921d91bbe16c)
)
(wire (pts (xy 234.315 66.675) (xy 233.045 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0781239e-227b-48d1-b236-57c55506a84a)
)
(wire (pts (xy 234.315 76.835) (xy 233.045 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08c70815-d4d6-4f1f-ae94-718e065b4b7f)
)
(wire (pts (xy 200.025 64.135) (xy 200.025 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09eb8888-c3c4-444d-abef-36fb61c45f49)
)
(wire (pts (xy 217.17 64.135) (xy 219.075 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a3d3e90-d0cc-421f-9012-4f479972b872)
)
(wire (pts (xy 167.64 75.565) (xy 182.88 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a7edc3d-eff9-4fe6-ad94-5c62aea17820)
)
(wire (pts (xy 134.62 84.455) (xy 147.32 84.455))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0afa1e70-1796-4f8f-bfb1-d996e613e598)
)
(wire (pts (xy 168.91 67.945) (xy 181.61 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b131387-9aec-4770-80e4-f458eece3a33)
)
(wire (pts (xy 150.495 79.375) (xy 150.495 78.105))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b980b6a-63d6-49ac-9b74-d959e613885d)
)
(wire (pts (xy 133.35 75.565) (xy 148.59 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cbd47d8-44aa-420a-8afd-c51118f9737a)
)
(wire (pts (xy 181.61 71.12) (xy 181.61 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e85de24-4195-419f-9138-4e0d2c1e7a86)
)
(wire (pts (xy 220.345 67.945) (xy 233.045 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10b7bc20-51dd-4ac4-ba31-ccecccb26798)
)
(wire (pts (xy 200.025 66.675) (xy 198.755 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14564631-32f7-4930-a0a0-ffa56b83c9e5)
)
(wire (pts (xy 186.055 71.12) (xy 186.055 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1461558e-e2b2-4bea-97af-a34fa7a281ff)
)
(wire (pts (xy 148.59 76.835) (xy 147.32 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16b9743e-2520-480c-84ae-a68beb595225)
)
(wire (pts (xy 164.465 71.12) (xy 168.91 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17c1dd69-ae03-4de7-bac3-7b4cea73e941)
)
(wire (pts (xy 167.64 76.835) (xy 167.64 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 188d2978-aeea-432c-8413-cc7567552a9b)
)
(wire (pts (xy 217.17 64.135) (xy 217.17 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1bc8a6ee-f6ae-4e23-8bb3-dbe9565bba6c)
)
(wire (pts (xy 233.045 67.945) (xy 233.045 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c1c0bec-256f-4c2f-bfd0-08168beff63b)
)
(wire (pts (xy 165.735 75.565) (xy 165.735 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c4d3a42-167c-42e6-b775-e4d428c08b81)
)
(wire (pts (xy 148.59 78.105) (xy 148.59 79.375))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e278636-9608-4710-8026-a83355f1690a)
)
(wire (pts (xy 134.62 76.835) (xy 133.35 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e2795fb-05fe-4c4b-9939-f3fcda4bdd14)
)
(wire (pts (xy 165.735 76.835) (xy 164.465 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f2e3a5f-1502-4740-8539-04be02771e05)
)
(wire (pts (xy 233.045 69.215) (xy 233.045 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f2ec45a-6811-418f-99e3-921da3328502)
)
(wire (pts (xy 186.055 66.675) (xy 184.785 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 204a477a-5d08-4c7a-83ca-e3ffbd866605)
)
(wire (pts (xy 215.9 79.375) (xy 217.17 79.375))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2051ef75-0e27-4674-8288-90f08c0f6e1f)
)
(wire (pts (xy 184.785 66.675) (xy 184.785 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20642963-1903-495c-9e01-2f3d895333b5)
)
(wire (pts (xy 167.64 64.135) (xy 182.88 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 207d3731-bf02-40dc-b99b-771ee13e445e)
)
(wire (pts (xy 150.495 78.105) (xy 165.735 78.105))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 219cc1fc-76f3-4e28-b3cd-e46ee1d67ccf)
)
(wire (pts (xy 182.88 75.565) (xy 182.88 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23a5cb0d-afb4-4540-90cd-44ffdeed822e)
)
(wire (pts (xy 128.27 75.565) (xy 128.27 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2576a099-4115-4e69-94e8-0086570ae415)
)
(wire (pts (xy 215.9 69.215) (xy 215.9 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25f2cf3b-1c17-4b04-a200-c31a353b1963)
)
(wire (pts (xy 164.465 71.755) (xy 164.465 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 272770cf-7e43-4add-bb4d-861721bcb962)
)
(wire (pts (xy 186.055 67.945) (xy 198.755 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 27875a29-8aae-4f74-8bad-edb119e74ce1)
)
(wire (pts (xy 219.075 64.135) (xy 234.315 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b14cbea-e405-4674-852d-68fa00b3ba44)
)
(wire (pts (xy 186.055 84.455) (xy 198.755 84.455))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2dea3c86-42cd-4182-be24-17f1d78e4461)
)
(wire (pts (xy 186.055 79.375) (xy 184.785 79.375))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f0c209f-d683-4010-92eb-4f889b35540a)
)
(wire (pts (xy 148.59 78.105) (xy 150.495 78.105))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3158d0e3-ff66-46da-945e-27bd2b65cdb9)
)
(wire (pts (xy 215.9 71.755) (xy 215.9 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32a82da6-0b96-45ce-9b66-6e11c9e916ea)
)
(wire (pts (xy 168.91 79.375) (xy 167.64 79.375))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 350e87c8-4554-445a-bae0-e9fd1d977f08)
)
(wire (pts (xy 201.93 64.135) (xy 217.17 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36c3fd97-ffc7-4493-8d2a-4e2bc5db29b6)
)
(wire (pts (xy 234.315 64.135) (xy 234.315 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3720732a-6cb6-4cec-b133-fd3b87874885)
)
(wire (pts (xy 182.88 66.675) (xy 181.61 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37db68c9-9423-46e1-8df5-45d329d18a61)
)
(wire (pts (xy 151.765 76.835) (xy 150.495 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3930b76c-3f45-4d0e-943e-d071d5402a2f)
)
(wire (pts (xy 181.61 71.755) (xy 181.61 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39beb3c0-f6b4-4183-9d57-a6b9e3b7afcb)
)
(wire (pts (xy 203.2 66.675) (xy 201.93 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39f0b730-70b7-44b1-855c-f840f8797623)
)
(wire (pts (xy 215.9 67.945) (xy 215.9 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3aa5b542-bc7b-455e-bdd2-78515afbbc19)
)
(wire (pts (xy 168.91 69.215) (xy 168.91 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3ba061b5-55b9-42d0-b05b-2dcb4b68267d)
)
(wire (pts (xy 165.735 78.105) (xy 165.735 79.375))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3ff1a6d0-113d-4d8d-a672-acc201054137)
)
(wire (pts (xy 147.32 71.755) (xy 147.32 74.295))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41b23273-6566-4008-9516-c0a40aa3d35c)
)
(wire (pts (xy 164.465 67.945) (xy 164.465 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46b9c005-eaf6-47ce-b4b1-9be66702b64c)
)
(wire (pts (xy 148.59 64.135) (xy 150.495 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46be7e5b-1e11-47e3-aafd-1419307765ea)
)
(wire (pts (xy 220.345 71.12) (xy 220.345 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46e6f873-d532-48d5-8b7a-baa2a2627ca3)
)
(wire (pts (xy 151.765 71.12) (xy 151.765 71.755))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48ba4a0b-362b-483b-9df3-02cc520aa69f)
)
(wire (pts (xy 219.075 78.105) (xy 234.315 78.105))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a5e61fc-d928-4210-bb3e-9a3d068a5f38)
)
(wire (pts (xy 184.785 78.105) (xy 200.025 78.105))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4af8467c-0312-455e-b5f7-7a7b8fb305b6)
)
(wire (pts (xy 165.735 66.675) (xy 164.465 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4bc442a3-09f8-4659-af29-926ddf7d5b00)
)
(wire (pts (xy 181.61 84.455) (xy 186.055 84.455))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4c0bde31-b5ae-4619-8594-f39b60e56720)
)
(wire (pts (xy 147.32 71.12) (xy 151.765 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e033b76-a2bd-4774-80dc-dc841ad7a90c)
)
(wire (pts (xy 184.785 64.135) (xy 200.025 64.135))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 509a0818-fc3a-46d7-824f-358728ddcc1c)
)
(wire (pts (xy 198.755 81.915) (xy 203.2 81.915))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50d94b22-38de-4492-86c3-1544f77f2a42)
)
(wire (pts (xy 234.315 78.105) (xy 234.315 79.375))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 526c8979-6425-434c-9a48-8067402d5804)
)
(wire (pts (xy 217.17 75.565) (xy 219.075 75.565))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 533fa22c-dc01-42cf-aa45-8b1c277c7029)
)
(wire (pts (xy 198.755 84.455) (xy 203.2 84.455))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5583372d-98ca-43f3-aafb-1a7f6c20683e)
)
(wire (pts (xy 167.64 78.105) (xy 182.88 78.105))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55905f72-5f71-4d45-9289-53e460b9c5ce)
)
(wire (pts (xy 168.91 76.835) (xy 167.64 76.835))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 560f57b8-aafa-44a5-b9b0-26cb734c7c27)
)
(wire (pts (xy 151.765 69.215) (xy 151.765 67.945))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57427ddc-6036-4b2b-a564-2200dd5881ae)