-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCDU.kicad_sch
3774 lines (3631 loc) · 152 KB
/
CDU.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 9538e4ed-27e6-4c37-b989-9859dc0d49e8)
(paper "A4")
(title_block
(title "A-10 CDU Switch Matix")
(date "2022-03-27")
)
(lib_symbols
(symbol "Diode:1N4148WS" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1N4148WS" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_SMD:D_SOD-323" (id 2) (at 0 -4.445 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.vishay.com/docs/85751/1n4148ws.pdf" (id 3) (at 0 0 0)
(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" "75V 0.15A Fast switching Diode, SOD-323" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "D*SOD?323*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "1N4148WS_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "1N4148WS_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push" (id 1) (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_0_1"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy -2.54 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 173.99 82.55) (diameter 0) (color 0 0 0 0)
(uuid 0042c3cf-f9ef-4788-b55f-35eedbdc62f9)
)
(junction (at 191.77 46.99) (diameter 0) (color 0 0 0 0)
(uuid 011836eb-1fec-44ca-b8b4-ab7df19b51e8)
)
(junction (at 77.47 107.95) (diameter 0) (color 0 0 0 0)
(uuid 07df39c0-c463-439c-8f56-9af5c9c1cb32)
)
(junction (at 191.77 100.33) (diameter 0) (color 0 0 0 0)
(uuid 091a80d3-03a3-4ad2-831d-fdc9243aefa9)
)
(junction (at 184.15 143.51) (diameter 0) (color 0 0 0 0)
(uuid 0cf33d60-c5f6-4fcc-8cf1-8d670b0c8ad8)
)
(junction (at 102.87 171.45) (diameter 0) (color 0 0 0 0)
(uuid 0d3171bf-6702-4461-bd98-d7b59186e744)
)
(junction (at 85.09 64.77) (diameter 0) (color 0 0 0 0)
(uuid 0e6de39e-3e62-4249-9708-8754fbeef67c)
)
(junction (at 166.37 143.51) (diameter 0) (color 0 0 0 0)
(uuid 140adfea-d673-4a4a-9d04-1089abd74ba4)
)
(junction (at 148.59 125.73) (diameter 0) (color 0 0 0 0)
(uuid 16c49f8b-26d4-4f0d-bdee-2e690c46a1d0)
)
(junction (at 120.65 135.89) (diameter 0) (color 0 0 0 0)
(uuid 173ecd67-728e-434b-bfd2-c4cb79b7bfc2)
)
(junction (at 209.55 82.55) (diameter 0) (color 0 0 0 0)
(uuid 1ca2eefe-562c-49c6-858c-1fa94bacb814)
)
(junction (at 138.43 82.55) (diameter 0) (color 0 0 0 0)
(uuid 1f5dd0e3-6fbc-4a26-b59b-c0daa5372738)
)
(junction (at 191.77 64.77) (diameter 0) (color 0 0 0 0)
(uuid 2128b2f6-554b-4708-93c7-b1211ad386a6)
)
(junction (at 138.43 153.67) (diameter 0) (color 0 0 0 0)
(uuid 21514a48-8eb3-4469-8750-51b87ad3a24e)
)
(junction (at 156.21 153.67) (diameter 0) (color 0 0 0 0)
(uuid 277b909d-5f3c-4e4e-951c-95224ece9949)
)
(junction (at 166.37 125.73) (diameter 0) (color 0 0 0 0)
(uuid 27e2323e-48d0-44d6-8f6d-b36160aea9a8)
)
(junction (at 209.55 135.89) (diameter 0) (color 0 0 0 0)
(uuid 2d57ff71-359b-4122-b83f-b55607d1c07f)
)
(junction (at 173.99 171.45) (diameter 0) (color 0 0 0 0)
(uuid 2e66d7d4-f1b0-420f-a59d-8c44f2a2aa00)
)
(junction (at 219.71 107.95) (diameter 0) (color 0 0 0 0)
(uuid 31deb99d-044e-48b0-8415-3aa6a3994bdd)
)
(junction (at 201.93 54.61) (diameter 0) (color 0 0 0 0)
(uuid 37db8535-9d71-43bf-b41c-d5d9baa4768e)
)
(junction (at 77.47 90.17) (diameter 0) (color 0 0 0 0)
(uuid 3a1a3961-b54d-41a6-bac8-26dfa12fdd11)
)
(junction (at 166.37 54.61) (diameter 0) (color 0 0 0 0)
(uuid 46d929f3-dd9d-4d79-a841-c17c8055cf85)
)
(junction (at 120.65 100.33) (diameter 0) (color 0 0 0 0)
(uuid 492a7168-22d7-4716-886c-45c6abe5ec6f)
)
(junction (at 85.09 118.11) (diameter 0) (color 0 0 0 0)
(uuid 4a4b1a0d-7f75-42e2-b693-6d9e5bfc02f8)
)
(junction (at 173.99 118.11) (diameter 0) (color 0 0 0 0)
(uuid 50ec663d-4ca2-400b-bd66-bc18527a5fb4)
)
(junction (at 113.03 72.39) (diameter 0) (color 0 0 0 0)
(uuid 5f03a0dd-4e09-476a-bb8f-a1b69c47713a)
)
(junction (at 102.87 135.89) (diameter 0) (color 0 0 0 0)
(uuid 6045b7dc-543b-4867-b0c4-97ac2c70138c)
)
(junction (at 219.71 36.83) (diameter 0) (color 0 0 0 0)
(uuid 61100ec1-4424-44b3-ad5f-96be8f7328e0)
)
(junction (at 120.65 118.11) (diameter 0) (color 0 0 0 0)
(uuid 6498dca6-d99d-44ad-befd-16609ff764c2)
)
(junction (at 95.25 72.39) (diameter 0) (color 0 0 0 0)
(uuid 666f036f-0214-4a35-a713-e6cf1e954316)
)
(junction (at 166.37 36.83) (diameter 0) (color 0 0 0 0)
(uuid 670af6d0-4f0e-4256-846b-8b2ce2998296)
)
(junction (at 201.93 143.51) (diameter 0) (color 0 0 0 0)
(uuid 680b2732-c19a-473a-ba1b-de5511bda339)
)
(junction (at 130.81 72.39) (diameter 0) (color 0 0 0 0)
(uuid 689943fe-1325-444a-bcb6-3378f2f09b01)
)
(junction (at 173.99 64.77) (diameter 0) (color 0 0 0 0)
(uuid 6e572804-c18b-4a64-834f-6ed6882df510)
)
(junction (at 173.99 135.89) (diameter 0) (color 0 0 0 0)
(uuid 6e5e8485-da74-4139-9034-9e1e0b23c86b)
)
(junction (at 148.59 72.39) (diameter 0) (color 0 0 0 0)
(uuid 6ed0835f-a8e8-428e-bf40-3c41c9b67080)
)
(junction (at 184.15 72.39) (diameter 0) (color 0 0 0 0)
(uuid 71efbb4e-c900-4411-b984-d03cf20bb68e)
)
(junction (at 138.43 46.99) (diameter 0) (color 0 0 0 0)
(uuid 74844d2d-0443-421a-9bf4-4a9f6f558af9)
)
(junction (at 130.81 54.61) (diameter 0) (color 0 0 0 0)
(uuid 75357842-26ac-4038-80b5-439fae2155fa)
)
(junction (at 184.15 107.95) (diameter 0) (color 0 0 0 0)
(uuid 7848e257-7859-4aa9-b936-506bd6f599af)
)
(junction (at 95.25 54.61) (diameter 0) (color 0 0 0 0)
(uuid 785b5756-9f39-4ee2-9241-beb268ec9a0f)
)
(junction (at 85.09 82.55) (diameter 0) (color 0 0 0 0)
(uuid 793d7a6f-d637-4392-bd93-6d347fb45534)
)
(junction (at 184.15 90.17) (diameter 0) (color 0 0 0 0)
(uuid 7aad0d26-173a-4add-b406-44d1b08f865a)
)
(junction (at 173.99 46.99) (diameter 0) (color 0 0 0 0)
(uuid 7ad4e3a4-4d6a-4450-b421-db5da92c3279)
)
(junction (at 173.99 153.67) (diameter 0) (color 0 0 0 0)
(uuid 7ccb1466-e8d5-4194-a3b4-18c1b9fbba7f)
)
(junction (at 201.93 125.73) (diameter 0) (color 0 0 0 0)
(uuid 7de4982e-9159-4843-9626-c9c720ed5023)
)
(junction (at 77.47 72.39) (diameter 0) (color 0 0 0 0)
(uuid 865e6186-9e40-437d-8525-f4c550379184)
)
(junction (at 184.15 36.83) (diameter 0) (color 0 0 0 0)
(uuid 8dcfff0b-500f-44b1-8830-9ca83148e529)
)
(junction (at 130.81 125.73) (diameter 0) (color 0 0 0 0)
(uuid 8ed79e99-4e7e-441f-9672-f21306deaa3e)
)
(junction (at 219.71 143.51) (diameter 0) (color 0 0 0 0)
(uuid 905a397d-ee95-4dae-b16e-487416908865)
)
(junction (at 138.43 118.11) (diameter 0) (color 0 0 0 0)
(uuid 91401db4-0cf4-460a-87d0-1ba59d1d4e63)
)
(junction (at 130.81 90.17) (diameter 0) (color 0 0 0 0)
(uuid 975e441a-cb1d-4414-9429-3e205b01c8eb)
)
(junction (at 120.65 46.99) (diameter 0) (color 0 0 0 0)
(uuid 978f5011-e991-4efe-97ee-c71d9fa6d4d2)
)
(junction (at 102.87 153.67) (diameter 0) (color 0 0 0 0)
(uuid 97e08aa9-0201-441e-a0e1-caacd904f745)
)
(junction (at 191.77 135.89) (diameter 0) (color 0 0 0 0)
(uuid 9a941bd4-0150-4950-a3d0-9a11638834dc)
)
(junction (at 130.81 36.83) (diameter 0) (color 0 0 0 0)
(uuid 9d026fe9-0d56-42b7-a82c-c6d4c5dc8349)
)
(junction (at 77.47 143.51) (diameter 0) (color 0 0 0 0)
(uuid 9e858c66-f76f-483e-8fdc-49cdeadeb04f)
)
(junction (at 138.43 171.45) (diameter 0) (color 0 0 0 0)
(uuid 9e8c537a-3c04-4b9d-9d11-b85c5a3ab02d)
)
(junction (at 95.25 143.51) (diameter 0) (color 0 0 0 0)
(uuid 9fd19c94-603f-451f-8104-0b3e14fa0e6b)
)
(junction (at 102.87 100.33) (diameter 0) (color 0 0 0 0)
(uuid a1de8549-cac6-4750-8a43-0ca3d900a677)
)
(junction (at 201.93 36.83) (diameter 0) (color 0 0 0 0)
(uuid a2cf3881-945a-4d27-9d22-072d116914ad)
)
(junction (at 113.03 125.73) (diameter 0) (color 0 0 0 0)
(uuid a3564f26-a6d1-409e-9a8f-092b67043cc5)
)
(junction (at 77.47 54.61) (diameter 0) (color 0 0 0 0)
(uuid a3ed7393-551a-4f22-9a53-fca0e277ac86)
)
(junction (at 201.93 72.39) (diameter 0) (color 0 0 0 0)
(uuid a5d3362f-4b47-4fe1-8374-8fb653c7cda1)
)
(junction (at 191.77 171.45) (diameter 0) (color 0 0 0 0)
(uuid a6f22875-842d-4105-8a4a-41aff2c726aa)
)
(junction (at 166.37 107.95) (diameter 0) (color 0 0 0 0)
(uuid a77989e7-b6da-4a5e-a7f6-1d119ba5f11d)
)
(junction (at 148.59 54.61) (diameter 0) (color 0 0 0 0)
(uuid a89543d6-9787-4dcf-8c2c-4d35a8c198f5)
)
(junction (at 209.55 46.99) (diameter 0) (color 0 0 0 0)
(uuid a8c17911-b17b-42d4-9535-86160d0dcc5a)
)
(junction (at 209.55 100.33) (diameter 0) (color 0 0 0 0)
(uuid a98ce396-9e74-4f7a-8e04-ed09d6323923)
)
(junction (at 209.55 153.67) (diameter 0) (color 0 0 0 0)
(uuid a9efab29-2ce3-45e2-b060-7508aa8b8558)
)
(junction (at 113.03 54.61) (diameter 0) (color 0 0 0 0)
(uuid aa22eeea-46be-4e07-aef7-28029402610f)
)
(junction (at 95.25 36.83) (diameter 0) (color 0 0 0 0)
(uuid ad86da33-963d-4980-91a2-7b02242c4b83)
)
(junction (at 156.21 82.55) (diameter 0) (color 0 0 0 0)
(uuid ad8e55c5-0497-44d3-bc76-65c625d3b10b)
)
(junction (at 120.65 153.67) (diameter 0) (color 0 0 0 0)
(uuid adc5cb9b-0bd5-422a-ae21-4778f6102173)
)
(junction (at 102.87 82.55) (diameter 0) (color 0 0 0 0)
(uuid aed1e454-cad9-4851-8282-82b6e4f6b965)
)
(junction (at 209.55 171.45) (diameter 0) (color 0 0 0 0)
(uuid b365af38-0554-44a2-b3ab-d4de6cc05f5d)
)
(junction (at 130.81 107.95) (diameter 0) (color 0 0 0 0)
(uuid b39c715d-7104-4c6a-a5c3-c14d0aebc6e4)
)
(junction (at 156.21 64.77) (diameter 0) (color 0 0 0 0)
(uuid b3be006e-2a14-4f8a-8313-a565b845b685)
)
(junction (at 166.37 90.17) (diameter 0) (color 0 0 0 0)
(uuid b4195d80-c88c-4bf1-bead-e2dfaae11714)
)
(junction (at 102.87 64.77) (diameter 0) (color 0 0 0 0)
(uuid b42fbd8e-3194-45f2-9eb2-3f18b193b5df)
)
(junction (at 201.93 90.17) (diameter 0) (color 0 0 0 0)
(uuid b4e9186c-c4bd-4a92-81f4-7cc1af322d5b)
)
(junction (at 191.77 82.55) (diameter 0) (color 0 0 0 0)
(uuid b4faf627-b8be-427b-b3bc-0f162a5299de)
)
(junction (at 219.71 90.17) (diameter 0) (color 0 0 0 0)
(uuid b5bfc2eb-b364-4e27-862b-bd6514ae0f80)
)
(junction (at 85.09 100.33) (diameter 0) (color 0 0 0 0)
(uuid beb65003-4628-4f7b-b342-b7dca210c9c1)
)
(junction (at 77.47 125.73) (diameter 0) (color 0 0 0 0)
(uuid c2329173-c324-4065-8610-27842f4bed04)
)
(junction (at 85.09 153.67) (diameter 0) (color 0 0 0 0)
(uuid c2c561cf-2c99-4c4b-8677-2c94782767cd)
)
(junction (at 173.99 100.33) (diameter 0) (color 0 0 0 0)
(uuid c3f2bea7-9ebd-4805-95ef-e35de8c79971)
)
(junction (at 113.03 143.51) (diameter 0) (color 0 0 0 0)
(uuid c59edfa6-6728-4c8d-b634-862a416e414d)
)
(junction (at 95.25 107.95) (diameter 0) (color 0 0 0 0)
(uuid c84d729e-a4e3-41a7-9e9b-54f8befa740a)
)
(junction (at 85.09 46.99) (diameter 0) (color 0 0 0 0)
(uuid c8785b10-f631-4ec0-ac58-925ef9c3e42b)
)
(junction (at 113.03 36.83) (diameter 0) (color 0 0 0 0)
(uuid ca69d629-d7ab-4ceb-9fc5-4c611350d24d)
)
(junction (at 138.43 135.89) (diameter 0) (color 0 0 0 0)
(uuid cb4e80a0-5ad3-4c95-a612-717e0182564d)
)
(junction (at 77.47 36.83) (diameter 0) (color 0 0 0 0)
(uuid cd7ec0d8-4d4a-4df2-ac2f-4516831170b7)
)
(junction (at 113.03 90.17) (diameter 0) (color 0 0 0 0)
(uuid d1aa535a-4543-47b7-a061-462a43befa61)
)
(junction (at 138.43 64.77) (diameter 0) (color 0 0 0 0)
(uuid d50f971e-51a1-4ce0-8aa2-59fce7f961fe)
)
(junction (at 95.25 125.73) (diameter 0) (color 0 0 0 0)
(uuid d523370e-eff4-4fe2-bdfe-90f5837bb884)
)
(junction (at 184.15 54.61) (diameter 0) (color 0 0 0 0)
(uuid d67465be-1dee-4ec1-b91d-155afac61b21)
)
(junction (at 219.71 72.39) (diameter 0) (color 0 0 0 0)
(uuid d8764d64-27d3-4990-8844-f3d4209bd024)
)
(junction (at 219.71 125.73) (diameter 0) (color 0 0 0 0)
(uuid d876e933-4727-4ba0-9b6d-365d43332a30)
)
(junction (at 219.71 54.61) (diameter 0) (color 0 0 0 0)
(uuid dee63e6c-0004-4826-aabf-be2479418d1a)
)
(junction (at 156.21 135.89) (diameter 0) (color 0 0 0 0)
(uuid e0b30903-a0bb-491a-8407-444801c6e6e5)
)
(junction (at 85.09 135.89) (diameter 0) (color 0 0 0 0)
(uuid e291a6f2-d51a-4cfd-98e8-fd6d7f89ca75)
)
(junction (at 138.43 100.33) (diameter 0) (color 0 0 0 0)
(uuid e33a1621-d2f0-4b19-a177-d39f5db9dc71)
)
(junction (at 166.37 72.39) (diameter 0) (color 0 0 0 0)
(uuid e5d54481-85ab-424b-8580-251fca356d70)
)
(junction (at 102.87 118.11) (diameter 0) (color 0 0 0 0)
(uuid e5f08f78-f2c4-4eb6-9d61-2ef1d7052590)
)
(junction (at 191.77 153.67) (diameter 0) (color 0 0 0 0)
(uuid e615b8a2-237d-4f56-91c8-55e057d3383d)
)
(junction (at 130.81 143.51) (diameter 0) (color 0 0 0 0)
(uuid e634f046-5dc1-47da-9462-074c6b0d7da3)
)
(junction (at 85.09 171.45) (diameter 0) (color 0 0 0 0)
(uuid e7b69aff-1401-479b-916e-c1ee732c566f)
)
(junction (at 102.87 46.99) (diameter 0) (color 0 0 0 0)
(uuid ee2d0c8d-9b22-467e-a419-71b8c080508d)
)
(junction (at 120.65 171.45) (diameter 0) (color 0 0 0 0)
(uuid eedabaf5-a20e-4cb8-8855-926d6f0502be)
)
(junction (at 209.55 64.77) (diameter 0) (color 0 0 0 0)
(uuid eeea0831-4249-4c3e-8c6f-6e4e173bcbab)
)
(junction (at 120.65 64.77) (diameter 0) (color 0 0 0 0)
(uuid f12bc3e6-4b9d-43bd-90ae-29cf78bdc907)
)
(junction (at 184.15 125.73) (diameter 0) (color 0 0 0 0)
(uuid f472e1ca-ef1b-45e3-a7fe-1494d4aa012f)
)
(junction (at 113.03 107.95) (diameter 0) (color 0 0 0 0)
(uuid f78dd21f-e47a-4647-afd7-10c0b225862d)
)
(junction (at 191.77 118.11) (diameter 0) (color 0 0 0 0)
(uuid fe3ba657-0347-4422-b221-404ac7400598)
)
(junction (at 95.25 90.17) (diameter 0) (color 0 0 0 0)
(uuid fed25331-1d7d-40b6-aa7e-a238d7fb90f9)
)
(junction (at 120.65 82.55) (diameter 0) (color 0 0 0 0)
(uuid ff356661-beb3-46a5-96a7-f6fda409063c)
)
(wire (pts (xy 85.09 118.11) (xy 102.87 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 019f858e-71cc-4d6a-83e6-e3b480d4b505)
)
(wire (pts (xy 130.81 107.95) (xy 130.81 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 029d2b90-5d1b-48ad-9ce2-d10b15aada45)
)
(wire (pts (xy 173.99 64.77) (xy 191.77 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0319a143-485e-4f69-b5b2-9d2999406da0)
)
(wire (pts (xy 85.09 100.33) (xy 102.87 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04e12cf1-f5a1-417a-8670-a36b05b43e35)
)
(wire (pts (xy 85.09 64.77) (xy 102.87 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04f77def-cb4f-40d7-873d-b06e2d57e815)
)
(wire (pts (xy 113.03 36.83) (xy 113.03 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07c7bf30-906b-4c88-923a-ad0f44cd2c15)
)
(wire (pts (xy 173.99 153.67) (xy 191.77 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08b23708-681b-4a0b-96b3-9ba4d6fae173)
)
(wire (pts (xy 184.15 143.51) (xy 184.15 161.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e906a19-5748-45f4-94a3-05898412713a)
)
(wire (pts (xy 201.93 54.61) (xy 201.93 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f84165c-6a50-4120-a272-268eb4b78fbe)
)
(wire (pts (xy 64.77 46.99) (xy 85.09 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f89224d-a785-43a1-b251-2ab73a727caf)
)
(wire (pts (xy 77.47 143.51) (xy 77.47 161.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13195adf-cd24-47e2-9788-ccc2cc1db235)
)
(wire (pts (xy 102.87 171.45) (xy 120.65 171.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 135eac38-896e-48eb-a1d2-0fff98cbedf8)
)
(wire (pts (xy 138.43 118.11) (xy 173.99 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15de38d8-a2b3-4467-8045-68bfb993b87b)
)
(wire (pts (xy 148.59 54.61) (xy 148.59 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16741f71-fef9-4691-b909-ac4f8de1ea3d)
)
(wire (pts (xy 156.21 153.67) (xy 173.99 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1848900f-deb4-47ee-b3cd-ebb590c7a787)
)
(wire (pts (xy 201.93 143.51) (xy 201.93 161.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19077179-5702-4433-bb36-923f3a9dadb9)
)
(wire (pts (xy 209.55 153.67) (xy 227.33 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a09e50a-f1f9-4158-8b6e-8b96faa6690e)
)
(wire (pts (xy 219.71 24.13) (xy 219.71 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a207ce1-6fa3-429b-949b-bcd05f7a3bb6)
)
(wire (pts (xy 166.37 107.95) (xy 166.37 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d2f0992-a52b-46bc-8222-643ef9150a97)
)
(wire (pts (xy 201.93 90.17) (xy 201.93 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e291e49-0b72-4417-84ad-d7bc58744532)
)
(wire (pts (xy 209.55 135.89) (xy 227.33 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1fff4e84-315a-489f-8d2d-0a7c9670292f)
)
(wire (pts (xy 184.15 54.61) (xy 184.15 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2092199d-a4f3-4bc8-9e2c-943a7d08fe5f)
)
(wire (pts (xy 191.77 46.99) (xy 209.55 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 24c3eddf-1ea4-4ab2-91b5-5f92531e5386)
)
(wire (pts (xy 113.03 125.73) (xy 113.03 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25224530-13b1-4f63-b6d2-e368fe17db94)
)
(wire (pts (xy 184.15 107.95) (xy 184.15 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2bdc1089-037a-42b4-9da6-b44c9c50bfcd)
)
(wire (pts (xy 173.99 82.55) (xy 191.77 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2cee0869-34c8-4251-b91b-001ea8f25145)
)
(wire (pts (xy 113.03 54.61) (xy 113.03 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2fd5aa69-7b08-4413-8685-5dae1d79641a)
)
(wire (pts (xy 64.77 171.45) (xy 85.09 171.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2fe7ed2e-983e-4d78-a09b-9ad864cc7cb6)
)
(wire (pts (xy 64.77 135.89) (xy 85.09 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3292d6b9-6698-404b-9b3a-810fd30bd736)
)
(wire (pts (xy 113.03 107.95) (xy 113.03 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3314bdf4-035b-477d-9331-bb2856c32eae)
)
(wire (pts (xy 184.15 90.17) (xy 184.15 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3656fdbf-679b-496a-a037-1e8ce263a95d)
)
(wire (pts (xy 130.81 24.13) (xy 130.81 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 379ee1f4-0b56-47a2-b078-1b637b4cf6d5)
)
(wire (pts (xy 219.71 72.39) (xy 219.71 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3927fae5-f84e-4a9c-a9c5-ed76b0fa7151)
)
(wire (pts (xy 64.77 153.67) (xy 85.09 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b9aa0a8-cee5-47f5-95e1-cfb442f07993)
)
(wire (pts (xy 113.03 143.51) (xy 113.03 161.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f58b348-f740-4c4d-9451-cad4e6c8cd88)
)
(wire (pts (xy 130.81 72.39) (xy 130.81 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4223227a-085a-4a07-bbbd-948fde5a8591)
)
(wire (pts (xy 219.71 36.83) (xy 219.71 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42b83027-4eb5-4bf0-a489-6ef735b7cc64)
)
(wire (pts (xy 138.43 46.99) (xy 173.99 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43a0b6ab-669f-490a-82c5-966df2f0a472)
)
(wire (pts (xy 64.77 118.11) (xy 85.09 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 446fc13d-d421-4f26-915a-446adeeaae47)
)
(wire (pts (xy 201.93 125.73) (xy 201.93 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 447242e7-a14a-4c07-a49e-fdcb30e5a9bd)
)
(wire (pts (xy 191.77 171.45) (xy 209.55 171.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45ded4da-4d3d-4e41-9ef8-9d554537ee3d)
)
(wire (pts (xy 184.15 125.73) (xy 184.15 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47c225f2-220a-42bc-a7bb-9e9181fa1da5)
)
(wire (pts (xy 173.99 46.99) (xy 191.77 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d9c3c62-4be1-4013-ba39-04b71404ad65)
)
(wire (pts (xy 95.25 143.51) (xy 95.25 161.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e45506b-56af-411d-bbb8-326659d0b2d4)
)
(wire (pts (xy 201.93 24.13) (xy 201.93 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e74e1cb-3a99-41f5-b235-bcc0096d693c)
)
(wire (pts (xy 95.25 125.73) (xy 95.25 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 505eaa3a-06d2-41ea-8e35-40db14a1885c)
)
(wire (pts (xy 191.77 135.89) (xy 209.55 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5122e3f1-9592-48da-baa6-6022b16a6840)
)
(wire (pts (xy 130.81 143.51) (xy 130.81 161.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5309f100-d42c-42a3-91bd-abe21730d1b5)
)
(wire (pts (xy 138.43 153.67) (xy 156.21 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53fd4ab5-b619-41df-986e-4f1232a32aef)
)
(wire (pts (xy 130.81 36.83) (xy 130.81 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 59a57815-f377-49a2-9c08-02fe970d66c2)
)
(wire (pts (xy 85.09 171.45) (xy 102.87 171.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5c74af22-db3c-4a72-8ba5-5cb30c5e0b42)
)
(wire (pts (xy 166.37 24.13) (xy 166.37 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cbcf72b-b508-4927-81cf-093efc530ffc)
)
(wire (pts (xy 201.93 36.83) (xy 201.93 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d680c33-2c80-4098-a50d-1d8c5dbef988)
)
(wire (pts (xy 191.77 100.33) (xy 209.55 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 638a151e-44ac-48fd-b560-b51af3f83f4a)
)
(wire (pts (xy 191.77 64.77) (xy 209.55 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 658db509-77d5-4989-a5e6-f5bb8474978f)
)
(wire (pts (xy 156.21 64.77) (xy 173.99 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 65f461f9-9d9d-4225-97bf-bea9583faca6)
)
(wire (pts (xy 77.47 24.13) (xy 77.47 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67d43e24-4b6d-40bb-9fd1-386dcdb48bc6)
)
(wire (pts (xy 166.37 143.51) (xy 166.37 161.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 69d229f4-a06f-4984-929e-a1e3daf1998b)
)
(wire (pts (xy 120.65 82.55) (xy 138.43 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6cb3f7c1-177c-43bc-b10a-13049436fcaa)
)
(wire (pts (xy 102.87 100.33) (xy 120.65 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6cbf0bff-26bc-4eb8-9758-ab314e648345)
)
(wire (pts (xy 138.43 135.89) (xy 156.21 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7190a9a2-5da7-4c35-af00-1d88c388deac)
)
(wire (pts (xy 138.43 82.55) (xy 156.21 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72434eac-8731-4fd2-8abe-854c78ae51dc)
)
(wire (pts (xy 209.55 171.45) (xy 227.33 171.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72befada-e2cc-4bfd-829b-0ba404fd7d8f)
)
(wire (pts (xy 77.47 36.83) (xy 77.47 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7324bea7-bea2-4a16-8bbd-cc3191a410f2)
)
(wire (pts (xy 166.37 125.73) (xy 166.37 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 76280c47-a67b-4239-8799-4044c88ab4a9)
)
(wire (pts (xy 201.93 72.39) (xy 201.93 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 78e4cac5-f6b9-4e33-852b-c2a331be8288)
)
(wire (pts (xy 138.43 171.45) (xy 173.99 171.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79761a7a-a525-4639-8c16-7b690591b32b)
)
(wire (pts (xy 120.65 153.67) (xy 138.43 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7eb33d59-ce78-43de-813a-44f2d8f6b501)
)
(wire (pts (xy 95.25 36.83) (xy 95.25 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f9fa223-d8b9-4d14-a4f0-e2f25119b888)
)
(wire (pts (xy 95.25 72.39) (xy 95.25 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7fec9e00-f4ca-4dfc-b8bd-440c2cfb3d12)
)
(wire (pts (xy 95.25 107.95) (xy 95.25 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83207b32-a269-4389-85bd-86a5d21dbd7d)
)
(wire (pts (xy 95.25 54.61) (xy 95.25 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 88ee55c9-d796-4cef-b8d7-7f33b4ff873c)
)
(wire (pts (xy 120.65 118.11) (xy 138.43 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ad1572b-cb29-4b02-a2cc-8b22d86b4384)
)
(wire (pts (xy 85.09 153.67) (xy 102.87 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ae63116-512b-478a-bee7-58d868bf836b)
)
(wire (pts (xy 148.59 125.73) (xy 148.59 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b844839-8e43-44f5-9f9c-5778557e6766)
)
(wire (pts (xy 64.77 64.77) (xy 85.09 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e3e98dd-fb03-40c0-90d4-3a828c2f7378)
)
(wire (pts (xy 95.25 24.13) (xy 95.25 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8e9bfc46-3988-4810-8c08-d236e8a8de15)
)
(wire (pts (xy 85.09 135.89) (xy 102.87 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f5f73b4-be2a-4087-9af3-25f375ee9420)
)
(wire (pts (xy 130.81 90.17) (xy 130.81 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8fa78bab-9a21-4528-85b4-453788c5f391)
)
(wire (pts (xy 64.77 100.33) (xy 85.09 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90025347-f763-4606-a879-cdf6fb2c0e76)
)
(wire (pts (xy 166.37 36.83) (xy 166.37 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90bb9ace-083f-4169-bcab-1f8d79b9e16e)
)
(wire (pts (xy 173.99 135.89) (xy 191.77 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90f9f031-5d74-4ecd-a3a7-64acaa3ac870)
)
(wire (pts (xy 166.37 54.61) (xy 166.37 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92fbca3d-f59b-4b37-a7c4-fe065449d814)
)
(wire (pts (xy 184.15 24.13) (xy 184.15 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 937e140f-bd62-400a-b79f-0dd19eb99c18)
)
(wire (pts (xy 184.15 36.83) (xy 184.15 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 938220f8-b557-4f56-a76e-f82abaef87da)
)
(wire (pts (xy 102.87 82.55) (xy 120.65 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 944c6cc6-ae43-4d69-a245-a5352cd9d167)
)
(wire (pts (xy 77.47 72.39) (xy 77.47 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94fd064e-7f21-4f9f-9035-d303e946977f)
)
(wire (pts (xy 130.81 125.73) (xy 130.81 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 97121515-ca29-4ff2-afb8-6959682d222f)
)
(wire (pts (xy 120.65 100.33) (xy 138.43 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 99963d42-d644-45ba-b33d-796c0e711503)
)
(wire (pts (xy 138.43 64.77) (xy 156.21 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9ab60788-7198-4f3f-adff-859adcca5dae)
)
(wire (pts (xy 156.21 82.55) (xy 173.99 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b28e5ef-b423-475d-b3be-0b3356803d50)
)
(wire (pts (xy 130.81 54.61) (xy 130.81 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9bacedcb-18a3-4e7b-b18c-7da0ba1b768b)
)
(wire (pts (xy 64.77 82.55) (xy 85.09 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1250d9f-ed2c-4da2-a491-689643fffd9d)
)
(wire (pts (xy 95.25 90.17) (xy 95.25 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a38699f2-f66f-44db-b615-75a09dafe4f2)
)
(wire (pts (xy 77.47 90.17) (xy 77.47 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a4a2be89-9ce3-491a-9ceb-ab7bf6ec4023)
)
(wire (pts (xy 191.77 82.55) (xy 209.55 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a73e0e58-c076-4039-85c7-3540e4ad15fa)
)
(wire (pts (xy 219.71 143.51) (xy 219.71 161.29))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a7d39309-6134-4cc7-9b3a-6efa12b4b595)
)
(wire (pts (xy 184.15 72.39) (xy 184.15 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a8ddb4f4-bb2c-4f3d-a3c1-4507aea6612f)
)
(wire (pts (xy 102.87 46.99) (xy 120.65 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ad728183-e5ac-4c59-ab40-569255e304bf)
)
(wire (pts (xy 120.65 135.89) (xy 138.43 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af1d0f64-87c9-4654-a007-784bdbed71cd)
)
(wire (pts (xy 85.09 82.55) (xy 102.87 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b365a9d6-66fc-4e8f-9d97-95e3533585ac)
)
(wire (pts (xy 148.59 72.39) (xy 148.59 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b44deb66-38ea-4e60-a3ba-04354c7d42b5)
)
(wire (pts (xy 156.21 135.89) (xy 173.99 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b7dfb812-efb0-44d7-84b0-e00fe650a3e1)
)
(wire (pts (xy 166.37 72.39) (xy 166.37 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1547ba7-7e01-476b-8706-c5232ba99a92)
)
(wire (pts (xy 138.43 100.33) (xy 173.99 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c17b8220-f59d-4a6e-be25-678e2bd6c8e2)
)
(wire (pts (xy 102.87 153.67) (xy 120.65 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c8978b0c-7a02-4afa-924d-14aa6f342225)
)
(wire (pts (xy 102.87 118.11) (xy 120.65 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cbe192dc-27a7-4708-ae3b-c60984aade78)
)
(wire (pts (xy 219.71 90.17) (xy 219.71 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cdd70d3a-570a-48b1-aa84-4c1a192dbafd)
)
(wire (pts (xy 77.47 107.95) (xy 77.47 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d46a0c39-8057-420c-a373-44f053fd585d)
)
(wire (pts (xy 209.55 46.99) (xy 227.33 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd9cd583-8ce4-4754-8a6d-059b406b4c22)
)
(wire (pts (xy 209.55 100.33) (xy 227.33 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid de42497c-2e9f-4f61-99ae-b45becd70858)
)
(wire (pts (xy 77.47 54.61) (xy 77.47 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e0f286e0-f87d-463b-b894-41e06a74c38d)
)
(wire (pts (xy 113.03 90.17) (xy 113.03 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e2877d78-792c-49ba-9f47-e37d5e083785)
)
(wire (pts (xy 191.77 118.11) (xy 227.33 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e28a68ea-4aa7-4fa5-bf8e-55871179a825)
)
(wire (pts (xy 209.55 64.77) (xy 227.33 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e2ec81da-4ca9-471d-b263-561900e21f08)
)
(wire (pts (xy 173.99 118.11) (xy 191.77 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e378fb13-c38e-4bb1-a7c6-fd6b18202b40)
)
(wire (pts (xy 102.87 64.77) (xy 120.65 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e877ffdb-ab7f-440b-9cd8-27039436ceb2)
)
(wire (pts (xy 113.03 72.39) (xy 113.03 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea1312f9-3d7b-47e6-bc5c-36dad9a26e8d)
)
(wire (pts (xy 219.71 125.73) (xy 219.71 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ea95d78f-4e43-4071-95cd-655c2cd60c5f)
)
(wire (pts (xy 102.87 135.89) (xy 120.65 135.89))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb1205df-2898-4c42-af18-eb606f4678d2)
)
(wire (pts (xy 219.71 54.61) (xy 219.71 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ed4078c9-880c-4655-a186-4b9c89ae0748)
)
(wire (pts (xy 85.09 46.99) (xy 102.87 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ee3f619f-deb6-4697-a1b0-e2d807a27963)
)
(wire (pts (xy 113.03 24.13) (xy 113.03 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f0f28cd4-ae55-45c9-81b2-c8aef356293f)
)
(wire (pts (xy 191.77 153.67) (xy 209.55 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f487717d-f361-40dd-b725-3b47296a4b24)
)
(wire (pts (xy 120.65 171.45) (xy 138.43 171.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f679bd07-a9da-4d26-b127-7792bb1164b6)
)
(wire (pts (xy 209.55 82.55) (xy 227.33 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f886a2c4-f20a-4770-9d6e-402b79509475)
)
(wire (pts (xy 77.47 125.73) (xy 77.47 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f909e406-b8c9-43ae-b53a-48c130cf1377)
)
(wire (pts (xy 173.99 100.33) (xy 191.77 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f9e563ea-a1b8-4b07-8250-3d0f885c898d)
)
(wire (pts (xy 166.37 90.17) (xy 166.37 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fa60eded-b839-40cd-8e9a-913d6f825f18)
)
(wire (pts (xy 120.65 64.77) (xy 138.43 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fb5f014a-4e62-4126-bd09-183ae5c2a366)