-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonboardws28xx.kicad_sch
4828 lines (4755 loc) · 177 KB
/
onboardws28xx.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20230121) (generator eeschema)
(uuid 70f3ce96-3312-4408-b4d5-110164da98ca)
(paper "A4")
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "plan44:WS2816" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 5.08 5.715 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
)
(property "Value" "WS2816B" (at 1.27 -5.715 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "" (at 1.27 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "" (at 2.54 -9.525 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "ki_keywords" "RGB LED addressable" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "16bit RGB LED with integrated controller" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED*WS2812*PLCC*5.0x5.0mm*P1.6mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "WS2816_0_0"
(text "RGB" (at 2.286 -4.191 0)
(effects (font (size 0.762 0.762)))
)
)
(symbol "WS2816_0_1"
(polyline
(pts
(xy 1.27 -3.556)
(xy 1.778 -3.556)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 1.778 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 4.699 -3.556)
(xy 2.667 -3.556)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -2.54)
(xy 1.27 -3.556)
(xy 1.27 -3.048)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -1.524)
(xy 1.27 -2.54)
(xy 1.27 -2.032)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.683 -1.016)
(xy 3.683 -3.556)
(xy 3.683 -4.064)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 4.699 -1.524)
(xy 2.667 -1.524)
(xy 3.683 -3.556)
(xy 4.699 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 5.08 5.08) (end -5.08 -5.08)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "WS2816_1_1"
(pin input line (at -7.62 0 0) (length 2.54)
(name "BI" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "DI" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 2.54 180) (length 2.54)
(name "DO" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "BO" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 137.795 49.53) (diameter 0) (color 0 0 0 0)
(uuid 00214fc3-cbc0-4e72-ac13-f8e23323101f)
)
(junction (at 120.65 132.715) (diameter 0) (color 0 0 0 0)
(uuid 00cf588e-ce4f-4fb1-9fd4-1575209547ea)
)
(junction (at 154.94 78.105) (diameter 0) (color 0 0 0 0)
(uuid 04beebb9-9270-4e81-adc7-86b121591c04)
)
(junction (at 47.625 75.565) (diameter 0) (color 0 0 0 0)
(uuid 04cc5741-d0ee-4737-a6d3-a102cf5f0b46)
)
(junction (at 40.005 46.99) (diameter 0) (color 0 0 0 0)
(uuid 05b3a252-291d-4549-b2b7-d0c4d3c21f60)
)
(junction (at 189.23 46.99) (diameter 0) (color 0 0 0 0)
(uuid 0bdc35ae-e234-49c0-890c-193ccc760d51)
)
(junction (at 172.085 132.715) (diameter 0) (color 0 0 0 0)
(uuid 0e7a9db0-6c05-49f3-b8f3-36c5ee934fa9)
)
(junction (at 120.65 78.105) (diameter 0) (color 0 0 0 0)
(uuid 0f1927e5-1d68-40a9-a65f-e6a635e7e53e)
)
(junction (at 86.36 75.565) (diameter 0) (color 0 0 0 0)
(uuid 12b202a4-bd15-4d0b-913a-0e45cc634a6b)
)
(junction (at 240.665 106.68) (diameter 0) (color 0 0 0 0)
(uuid 168569fc-44ec-4bd5-be7c-f35833749f81)
)
(junction (at 154.94 49.53) (diameter 0) (color 0 0 0 0)
(uuid 18f18b6f-e991-422a-8e8e-90d975dcefd3)
)
(junction (at 240.665 132.715) (diameter 0) (color 0 0 0 0)
(uuid 1aa796e5-fa83-4d61-ab9d-93aa49f53c0f)
)
(junction (at 189.23 78.105) (diameter 0) (color 0 0 0 0)
(uuid 1cfc39c8-a13e-4230-824a-46c3a1d1330e)
)
(junction (at 206.375 161.29) (diameter 0) (color 0 0 0 0)
(uuid 1dbe85dd-b3de-453d-8eb2-e7b643dfcf56)
)
(junction (at 240.665 161.29) (diameter 0) (color 0 0 0 0)
(uuid 1ee304c2-c265-4bcc-b9e4-646a45de624d)
)
(junction (at 172.085 135.255) (diameter 0) (color 0 0 0 0)
(uuid 20fcc044-16ff-46f2-9be2-8754f5ac1ddd)
)
(junction (at 47.625 161.29) (diameter 0) (color 0 0 0 0)
(uuid 2369ea37-b71f-42ca-bd9f-2d4d1545ea54)
)
(junction (at 47.625 104.14) (diameter 0) (color 0 0 0 0)
(uuid 239e3a33-ad68-49cf-8be0-2ae9f290db7e)
)
(junction (at 40.005 104.14) (diameter 0) (color 0 0 0 0)
(uuid 24fe1028-d841-4ddd-91a9-922c7fc60fb0)
)
(junction (at 103.505 161.29) (diameter 0) (color 0 0 0 0)
(uuid 25ae14ae-cc1c-47ca-bd37-34ade21d1cc2)
)
(junction (at 206.375 20.955) (diameter 0) (color 0 0 0 0)
(uuid 2620ca66-f1b7-4188-bc1c-0f8d97806e8a)
)
(junction (at 57.15 46.99) (diameter 0) (color 0 0 0 0)
(uuid 26462213-6e58-453c-b86c-86e34772f65e)
)
(junction (at 69.215 78.105) (diameter 0) (color 0 0 0 0)
(uuid 2a0ed9b3-caff-44b3-83a9-1981bc1f5fa3)
)
(junction (at 69.215 106.68) (diameter 0) (color 0 0 0 0)
(uuid 2b88ced9-8d4a-4b15-bf72-f6ea7aeda7a8)
)
(junction (at 120.65 104.14) (diameter 0) (color 0 0 0 0)
(uuid 2e2d9b9b-a07d-4e63-a8cd-0af09c230bd6)
)
(junction (at 69.215 104.14) (diameter 0) (color 0 0 0 0)
(uuid 31268c9b-e238-4bea-beca-393b9611be37)
)
(junction (at 47.625 106.68) (diameter 0) (color 0 0 0 0)
(uuid 33196412-1c58-408a-9c71-b785e257aa50)
)
(junction (at 137.795 75.565) (diameter 0) (color 0 0 0 0)
(uuid 34f2d175-52d6-4087-bcd9-a5250dc7770e)
)
(junction (at 86.36 135.255) (diameter 0) (color 0 0 0 0)
(uuid 36d10efd-804e-4d42-ac64-dea3534496a1)
)
(junction (at 86.36 46.99) (diameter 0) (color 0 0 0 0)
(uuid 38b57522-5486-4667-b3ea-b98271e3033c)
)
(junction (at 103.505 20.955) (diameter 0) (color 0 0 0 0)
(uuid 396049f5-6e8c-46d1-8cb7-143301ae814d)
)
(junction (at 206.375 132.715) (diameter 0) (color 0 0 0 0)
(uuid 3aecb192-fcb6-4367-84ab-73de5ea10299)
)
(junction (at 172.085 106.68) (diameter 0) (color 0 0 0 0)
(uuid 3be304e6-5e64-400d-b4ca-33c5e13525fc)
)
(junction (at 223.52 46.99) (diameter 0) (color 0 0 0 0)
(uuid 3d9e240f-48b7-4b10-ac42-ff8dfb8347db)
)
(junction (at 69.215 132.715) (diameter 0) (color 0 0 0 0)
(uuid 42229bba-0547-4842-abfd-3f51d04d97a0)
)
(junction (at 41.91 20.955) (diameter 0) (color 0 0 0 0)
(uuid 431121db-7579-4ea2-8eac-f314775bdfce)
)
(junction (at 206.375 106.68) (diameter 0) (color 0 0 0 0)
(uuid 43da6494-9673-44d9-9611-44a537d14ed5)
)
(junction (at 137.795 106.68) (diameter 0) (color 0 0 0 0)
(uuid 4498e4c5-d855-4a92-b458-c77b0d90991a)
)
(junction (at 206.375 135.255) (diameter 0) (color 0 0 0 0)
(uuid 44e084ca-6a71-4dd5-92e1-03232235888a)
)
(junction (at 223.52 104.14) (diameter 0) (color 0 0 0 0)
(uuid 45407b76-ed68-4e0b-9cfd-da3664b95ad5)
)
(junction (at 40.005 75.565) (diameter 0) (color 0 0 0 0)
(uuid 45bbfb70-d125-499b-ad22-ae3575e0785f)
)
(junction (at 103.505 78.105) (diameter 0) (color 0 0 0 0)
(uuid 45e74bc0-0eed-4987-848b-abcaf35ce93a)
)
(junction (at 189.23 20.955) (diameter 0) (color 0 0 0 0)
(uuid 48b8fab9-1b0a-42b2-b609-d72111df3483)
)
(junction (at 103.505 135.255) (diameter 0) (color 0 0 0 0)
(uuid 493c1333-5dfa-42eb-b401-5615568af2bd)
)
(junction (at 206.375 78.105) (diameter 0) (color 0 0 0 0)
(uuid 4e302973-7c14-4cba-bb23-51f2aab35042)
)
(junction (at 189.23 106.68) (diameter 0) (color 0 0 0 0)
(uuid 4ef49fcb-5735-4744-93e4-7c0b59178970)
)
(junction (at 240.665 46.99) (diameter 0) (color 0 0 0 0)
(uuid 51029060-2590-4038-98a0-e766251f524c)
)
(junction (at 103.505 106.68) (diameter 0) (color 0 0 0 0)
(uuid 521c1416-301c-4abd-8546-0c7d01324db8)
)
(junction (at 41.91 49.53) (diameter 0) (color 0 0 0 0)
(uuid 532e0284-24e4-49a7-8dde-95fe8218de0f)
)
(junction (at 120.65 161.29) (diameter 0) (color 0 0 0 0)
(uuid 53b1d36d-aeae-49c9-b45b-fde4466c3cc3)
)
(junction (at 120.65 49.53) (diameter 0) (color 0 0 0 0)
(uuid 57a494ff-880a-4612-b1f9-b57631578964)
)
(junction (at 172.085 104.14) (diameter 0) (color 0 0 0 0)
(uuid 5a4d9aff-d4e9-4144-9877-143a5342025a)
)
(junction (at 172.085 78.105) (diameter 0) (color 0 0 0 0)
(uuid 5bbf31cd-d21d-423c-91ef-9ca2de8f1cd5)
)
(junction (at 103.505 104.14) (diameter 0) (color 0 0 0 0)
(uuid 5c4230b8-cb9f-4cf1-94d5-75421c4b8c4f)
)
(junction (at 240.665 78.105) (diameter 0) (color 0 0 0 0)
(uuid 5dd87fb7-692a-480f-b904-8149ed754b76)
)
(junction (at 154.94 75.565) (diameter 0) (color 0 0 0 0)
(uuid 5f71b15d-d27d-4909-9d54-95f4d0bd5037)
)
(junction (at 172.085 49.53) (diameter 0) (color 0 0 0 0)
(uuid 5f9f7665-e58e-4ba1-b4e5-f844e9be7504)
)
(junction (at 69.215 75.565) (diameter 0) (color 0 0 0 0)
(uuid 602850f2-cc23-4311-9c93-88a8f9eb437e)
)
(junction (at 206.375 104.14) (diameter 0) (color 0 0 0 0)
(uuid 61464f70-d17c-4c48-b159-2a1e0890c89d)
)
(junction (at 172.085 161.29) (diameter 0) (color 0 0 0 0)
(uuid 63201cf0-aace-48cf-9619-5b323d539462)
)
(junction (at 120.65 106.68) (diameter 0) (color 0 0 0 0)
(uuid 638e4b99-e0f4-416b-829b-52135935f195)
)
(junction (at 223.52 78.105) (diameter 0) (color 0 0 0 0)
(uuid 65edca50-a201-4596-a73c-0a4fac680acd)
)
(junction (at 154.94 106.68) (diameter 0) (color 0 0 0 0)
(uuid 6623505e-8430-49ee-ad26-0d3692308a3f)
)
(junction (at 189.23 161.29) (diameter 0) (color 0 0 0 0)
(uuid 665bd7aa-e798-498b-a0c5-b608dd9f05d2)
)
(junction (at 223.52 106.68) (diameter 0) (color 0 0 0 0)
(uuid 68ce9fdd-3e1d-4870-b48e-76290134d496)
)
(junction (at 69.215 46.99) (diameter 0) (color 0 0 0 0)
(uuid 69341baa-30dd-4d04-a6c7-c92fb4491e28)
)
(junction (at 189.23 135.255) (diameter 0) (color 0 0 0 0)
(uuid 6ac5fb19-b680-4b23-b046-b06287ce627b)
)
(junction (at 69.215 135.255) (diameter 0) (color 0 0 0 0)
(uuid 6bb0c442-a694-45e8-a884-99d438c9b489)
)
(junction (at 189.23 75.565) (diameter 0) (color 0 0 0 0)
(uuid 6bbf76fc-b938-4bf8-9b12-42013d6dfee0)
)
(junction (at 137.795 104.14) (diameter 0) (color 0 0 0 0)
(uuid 6c13a633-8b3c-4297-8f67-0300cb52bab7)
)
(junction (at 223.52 20.955) (diameter 0) (color 0 0 0 0)
(uuid 70b6cb87-32d0-4aae-ad50-1fac82a4ea79)
)
(junction (at 120.65 20.955) (diameter 0) (color 0 0 0 0)
(uuid 71f3e8ce-632b-4779-8649-ed9221d7ddde)
)
(junction (at 154.94 135.255) (diameter 0) (color 0 0 0 0)
(uuid 78a6a99f-65e9-47f0-860e-7beb7988145d)
)
(junction (at 103.505 75.565) (diameter 0) (color 0 0 0 0)
(uuid 7b1677de-da8e-4d4c-92bf-f4a3f15ed282)
)
(junction (at 137.795 161.29) (diameter 0) (color 0 0 0 0)
(uuid 7c1e9fa4-e987-4287-9d51-3540851625fd)
)
(junction (at 240.665 135.255) (diameter 0) (color 0 0 0 0)
(uuid 7d437123-85cb-4388-aa8a-9209f8e344cd)
)
(junction (at 47.625 46.99) (diameter 0) (color 0 0 0 0)
(uuid 7fc822db-ad78-4219-a53b-64c6247dd1f7)
)
(junction (at 120.65 75.565) (diameter 0) (color 0 0 0 0)
(uuid 80038b3c-556d-432e-85b1-65346d0d30e3)
)
(junction (at 240.665 49.53) (diameter 0) (color 0 0 0 0)
(uuid 80561002-e90d-4f46-8934-d8b8a59fbed2)
)
(junction (at 86.36 104.14) (diameter 0) (color 0 0 0 0)
(uuid 85369f54-46e1-4563-be69-55d77fb69fe1)
)
(junction (at 137.795 135.255) (diameter 0) (color 0 0 0 0)
(uuid 85cd241b-00b2-4ce8-8125-9e0b4540f1c6)
)
(junction (at 47.625 20.955) (diameter 0) (color 0 0 0 0)
(uuid 85e3716e-7488-47b6-9a42-f395a1358262)
)
(junction (at 223.52 132.715) (diameter 0) (color 0 0 0 0)
(uuid 892fad60-4120-465f-bca0-66f240ce2901)
)
(junction (at 172.085 46.99) (diameter 0) (color 0 0 0 0)
(uuid 8c03c77a-0f42-4757-a770-c8e33942b33a)
)
(junction (at 103.505 46.99) (diameter 0) (color 0 0 0 0)
(uuid 8c06e298-9120-48c1-a437-ed159af5d62e)
)
(junction (at 86.36 78.105) (diameter 0) (color 0 0 0 0)
(uuid 8dab467e-699c-4737-9164-acdc10cbab30)
)
(junction (at 206.375 46.99) (diameter 0) (color 0 0 0 0)
(uuid 96d9d4c2-cf6c-47e1-9e8b-1760b9eb1bce)
)
(junction (at 172.085 20.955) (diameter 0) (color 0 0 0 0)
(uuid 9785aa88-98bc-4dc9-9227-36b2999eff7b)
)
(junction (at 47.625 132.715) (diameter 0) (color 0 0 0 0)
(uuid 994c0753-4e52-4b2a-b373-75cfe2fda7f3)
)
(junction (at 41.91 106.68) (diameter 0) (color 0 0 0 0)
(uuid 9b6a5ef2-310b-4907-9a72-18b55ecc0bce)
)
(junction (at 206.375 75.565) (diameter 0) (color 0 0 0 0)
(uuid 9cf2a82c-9edd-4bd6-8d9b-50b19401f111)
)
(junction (at 86.36 49.53) (diameter 0) (color 0 0 0 0)
(uuid 9d1aa17f-7b59-4996-83ab-54b131aa0936)
)
(junction (at 189.23 132.715) (diameter 0) (color 0 0 0 0)
(uuid a0e8a933-bdbb-4896-852e-1dd0533efcb1)
)
(junction (at 223.52 161.29) (diameter 0) (color 0 0 0 0)
(uuid a20537ba-b0ed-4e05-b226-f89e9fe13971)
)
(junction (at 206.375 49.53) (diameter 0) (color 0 0 0 0)
(uuid a362d625-c633-4835-bd29-5911d9441438)
)
(junction (at 137.795 46.99) (diameter 0) (color 0 0 0 0)
(uuid a5b1a5da-4382-44d5-88d3-ed6db1f3b3eb)
)
(junction (at 86.36 132.715) (diameter 0) (color 0 0 0 0)
(uuid ab7bcc73-7ee2-46bf-920f-b6b7acfc27f1)
)
(junction (at 172.085 75.565) (diameter 0) (color 0 0 0 0)
(uuid afafe2d5-a41a-47f5-bbba-8ae13b4b35cc)
)
(junction (at 154.94 46.99) (diameter 0) (color 0 0 0 0)
(uuid b01458ae-61a5-4f5a-b77d-8ac7ada64d14)
)
(junction (at 120.65 135.255) (diameter 0) (color 0 0 0 0)
(uuid b6a7e665-6b3c-4923-b3fa-9003ffd826df)
)
(junction (at 223.52 75.565) (diameter 0) (color 0 0 0 0)
(uuid b6acf8f3-eac4-43bf-aa6e-44143eae088a)
)
(junction (at 41.91 78.105) (diameter 0) (color 0 0 0 0)
(uuid b912e3a2-1ee8-4798-8555-83c5bd1ea858)
)
(junction (at 47.625 135.255) (diameter 0) (color 0 0 0 0)
(uuid bae1cbc0-63d3-4d9d-ae1c-9a93aff7eb65)
)
(junction (at 189.23 49.53) (diameter 0) (color 0 0 0 0)
(uuid be948835-a5eb-4110-b8c9-17e42e9c13e6)
)
(junction (at 223.52 135.255) (diameter 0) (color 0 0 0 0)
(uuid c00d2004-923f-4405-927c-4c9b1882a82b)
)
(junction (at 154.94 132.715) (diameter 0) (color 0 0 0 0)
(uuid c0bcf0d8-8dc2-4831-9b44-342b6e7ab138)
)
(junction (at 86.36 20.955) (diameter 0) (color 0 0 0 0)
(uuid c21aa8b5-d7f9-41e8-8629-c408062901a5)
)
(junction (at 137.795 20.955) (diameter 0) (color 0 0 0 0)
(uuid c2831f63-bba1-4dd6-aadd-f7f62954b05c)
)
(junction (at 103.505 132.715) (diameter 0) (color 0 0 0 0)
(uuid c3931fc2-c22a-4105-8ea9-60284118759e)
)
(junction (at 69.215 161.29) (diameter 0) (color 0 0 0 0)
(uuid c75902e7-b8cc-4235-88bb-a0014d2d2c88)
)
(junction (at 137.795 132.715) (diameter 0) (color 0 0 0 0)
(uuid d0939d7b-cc27-4ab1-9b0a-43850f01fc45)
)
(junction (at 120.65 46.99) (diameter 0) (color 0 0 0 0)
(uuid d994d697-bca0-4be0-8e13-464fed2966eb)
)
(junction (at 69.215 49.53) (diameter 0) (color 0 0 0 0)
(uuid da042f23-29e8-402d-921d-0a50e8bb044c)
)
(junction (at 154.94 20.955) (diameter 0) (color 0 0 0 0)
(uuid e14c4a98-bf48-403b-aba6-9c8030a356c6)
)
(junction (at 223.52 49.53) (diameter 0) (color 0 0 0 0)
(uuid e1b65e5f-4e52-4a6a-9e79-05cfc1c62742)
)
(junction (at 103.505 49.53) (diameter 0) (color 0 0 0 0)
(uuid e2c455f6-ea50-4d42-bcb3-4388c4b1e984)
)
(junction (at 240.665 75.565) (diameter 0) (color 0 0 0 0)
(uuid e31ff2e4-9be7-4d9e-83ed-22e555969756)
)
(junction (at 47.625 78.105) (diameter 0) (color 0 0 0 0)
(uuid e36ed86e-13b1-4bf9-90ee-da4d4f1ff4b1)
)
(junction (at 240.665 20.955) (diameter 0) (color 0 0 0 0)
(uuid e8157794-58b3-4cbb-b291-f3c7a1717eaa)
)
(junction (at 86.36 161.29) (diameter 0) (color 0 0 0 0)
(uuid eb9a71c2-e982-47e5-912f-96d57ea6fcce)
)
(junction (at 240.665 104.14) (diameter 0) (color 0 0 0 0)
(uuid ecafd64a-47fc-4c8c-9e28-a029484417f2)
)
(junction (at 86.36 106.68) (diameter 0) (color 0 0 0 0)
(uuid ecccffa1-256a-4d7f-a452-9f89fee66db4)
)
(junction (at 47.625 49.53) (diameter 0) (color 0 0 0 0)
(uuid f46b74cf-a1cd-4499-8c6b-d3d20901163f)
)
(junction (at 137.795 78.105) (diameter 0) (color 0 0 0 0)
(uuid f59b2e8a-e047-4db4-9917-08d9f201be2f)
)
(junction (at 189.23 104.14) (diameter 0) (color 0 0 0 0)
(uuid f78b4288-0bbc-4f43-9447-f56752353e10)
)
(junction (at 154.94 161.29) (diameter 0) (color 0 0 0 0)
(uuid f9f961f4-251e-4fd4-937a-bd6f29760405)
)
(junction (at 154.94 104.14) (diameter 0) (color 0 0 0 0)
(uuid fc97a29d-e3cc-48b0-b6f1-fffa37c422a1)
)
(junction (at 69.215 20.955) (diameter 0) (color 0 0 0 0)
(uuid fd2452f6-b836-4ad4-876d-79a032803508)
)
(junction (at 40.005 132.715) (diameter 0) (color 0 0 0 0)
(uuid ff9dc07e-a6b6-49d4-9d8f-321a9e1b5ef2)
)
(no_connect (at 265.43 147.955) (uuid 024df024-357e-4b53-8a85-0b536b478deb))
(no_connect (at 265.43 150.495) (uuid 51ede82b-dad2-4230-bad6-37be880ab439))
(wire (pts (xy 265.43 33.655) (xy 275.59 33.655))
(stroke (width 0) (type default))
(uuid 006917f0-41e4-4261-8453-6b5fa656139f)
)
(wire (pts (xy 154.94 20.955) (xy 154.94 28.575))
(stroke (width 0) (type default))
(uuid 01d0214a-7f67-4ff5-a11f-55bed1a43813)
)
(wire (pts (xy 154.94 46.99) (xy 172.085 46.99))
(stroke (width 0) (type default))
(uuid 01dd9266-6263-4f15-97a5-087c598d8630)
)
(wire (pts (xy 164.465 119.38) (xy 162.56 119.38))
(stroke (width 0) (type default))
(uuid 02728042-e322-42ae-8528-f44e3968a7c0)
)
(wire (pts (xy 120.65 132.715) (xy 103.505 132.715))
(stroke (width 0) (type default))
(uuid 030b2514-b7ca-4410-ab03-af821fd9ee98)
)
(wire (pts (xy 47.625 49.53) (xy 47.625 64.77))
(stroke (width 0) (type default))
(uuid 031ce60c-7c18-403d-a5df-743f2805f5d7)
)
(wire (pts (xy 265.43 36.195) (xy 273.685 36.195))
(stroke (width 0) (type default))
(uuid 0418be14-628d-460d-adc7-e667ea0dc03c)
)
(wire (pts (xy 223.52 46.99) (xy 240.665 46.99))
(stroke (width 0) (type default))
(uuid 04a92fc7-66d0-41a0-8819-a8fb810a1057)
)
(wire (pts (xy 248.285 64.77) (xy 250.19 64.77))
(stroke (width 0) (type default))
(uuid 04ed89ca-fc99-44ac-87b2-b45b87b79a1b)
)
(wire (pts (xy 120.65 75.565) (xy 120.65 72.39))
(stroke (width 0) (type default))
(uuid 05669afd-b86a-4f66-8c49-669274cfe1fc)
)
(wire (pts (xy 147.32 150.495) (xy 145.415 150.495))
(stroke (width 0) (type default))
(uuid 06aa7fad-f022-4a3d-8223-4250ebee25bb)
)
(wire (pts (xy 120.65 161.29) (xy 137.795 161.29))
(stroke (width 0) (type default))
(uuid 07303887-baec-4b9a-938f-7742499e2afe)
)
(wire (pts (xy 223.52 104.14) (xy 223.52 100.965))
(stroke (width 0) (type default))
(uuid 0851ceae-8c75-4ca2-bde7-b8e543a9884d)
)
(wire (pts (xy 76.835 121.92) (xy 78.74 121.92))
(stroke (width 0) (type default))
(uuid 089e1362-35f6-444c-be7d-a7142dd61fa6)
)
(wire (pts (xy 40.005 46.99) (xy 34.925 46.99))
(stroke (width 0) (type default))
(uuid 09539f8c-184b-4f8a-939b-5a8c962b3864)
)
(wire (pts (xy 179.705 147.955) (xy 181.61 147.955))
(stroke (width 0) (type default))
(uuid 0a1669ba-4c52-43a7-ac56-4b8ea16bd20e)
)
(wire (pts (xy 172.085 75.565) (xy 172.085 72.39))
(stroke (width 0) (type default))
(uuid 0c8ed11e-6d8e-425d-b1e7-2f1f8faa7e86)
)
(wire (pts (xy 257.81 49.53) (xy 240.665 49.53))
(stroke (width 0) (type default))
(uuid 0cc4766c-b7ba-42a8-8267-b277e3f9953e)
)
(wire (pts (xy 181.61 119.38) (xy 179.705 119.38))
(stroke (width 0) (type default))
(uuid 0cea316f-4067-4fa9-9bae-454b40fa24a9)
)
(wire (pts (xy 130.175 150.495) (xy 128.27 150.495))
(stroke (width 0) (type default))
(uuid 0df8c4be-d39b-40e9-8bfa-677e5bccdb40)
)
(wire (pts (xy 154.94 161.29) (xy 154.94 158.115))
(stroke (width 0) (type default))
(uuid 0e091cc9-9f67-4788-93ec-eb6ba99de2b6)
)
(wire (pts (xy 215.9 62.23) (xy 213.995 62.23))
(stroke (width 0) (type default))
(uuid 0edb17af-0157-48f2-adb2-d31fae1e25b3)
)
(wire (pts (xy 86.36 161.29) (xy 103.505 161.29))
(stroke (width 0) (type default))
(uuid 124c1e24-a8c3-4980-9087-eabfc8d7b29e)
)
(wire (pts (xy 103.505 161.29) (xy 103.505 158.115))
(stroke (width 0) (type default))
(uuid 12616a2e-c567-4b8e-a5e3-ff5031c5abf8)
)
(wire (pts (xy 103.505 135.255) (xy 103.505 142.875))
(stroke (width 0) (type default))
(uuid 127134b0-7ce8-45e4-8376-2e9380b864bf)
)
(wire (pts (xy 223.52 75.565) (xy 223.52 72.39))
(stroke (width 0) (type default))
(uuid 12beaf38-73b1-4630-9103-ccba51911a21)
)
(wire (pts (xy 69.215 106.68) (xy 69.215 114.3))
(stroke (width 0) (type default))
(uuid 13b1527f-c6ba-47b8-bf20-0a336d4391f3)
)
(wire (pts (xy 223.52 78.105) (xy 240.665 78.105))
(stroke (width 0) (type default))
(uuid 14d84b80-a1e6-415c-9c16-4e881c0dc92f)
)
(wire (pts (xy 103.505 78.105) (xy 103.505 85.725))
(stroke (width 0) (type default))
(uuid 161e9f35-3423-4d3d-8b91-83d763495f50)
)
(wire (pts (xy 120.65 161.29) (xy 120.65 158.115))
(stroke (width 0) (type default))
(uuid 16cd3eae-e69c-4605-a64a-88514276b805)
)
(wire (pts (xy 213.995 121.92) (xy 215.9 121.92))
(stroke (width 0) (type default))
(uuid 16e8e257-85ea-43e4-90fd-20714c6831bb)
)
(wire (pts (xy 47.625 104.14) (xy 69.215 104.14))
(stroke (width 0) (type default))
(uuid 17060bec-9756-4c33-958f-00a34a0db2ab)
)
(wire (pts (xy 213.995 90.805) (xy 215.9 90.805))
(stroke (width 0) (type default))
(uuid 1736ebf3-ca60-4c2e-81a4-df3d3177772f)
)
(wire (pts (xy 55.245 150.495) (xy 61.595 150.495))
(stroke (width 0) (type default))
(uuid 17de80d7-1c6f-451c-8f01-8c6a7603fb1c)
)
(wire (pts (xy 172.085 20.955) (xy 172.085 28.575))
(stroke (width 0) (type default))
(uuid 184f7517-3a32-4ff4-93ac-445879608bcc)
)
(wire (pts (xy 137.795 135.255) (xy 154.94 135.255))
(stroke (width 0) (type default))
(uuid 18a6c6c4-802a-49d6-ace4-f57b535f827b)
)
(wire (pts (xy 130.175 62.23) (xy 128.27 62.23))
(stroke (width 0) (type default))
(uuid 18d0e88f-654e-49dc-9b2a-f03636be9f6b)
)
(wire (pts (xy 240.665 104.14) (xy 257.81 104.14))
(stroke (width 0) (type default))
(uuid 1a07c90b-bf52-484c-b771-2eb43cbe6d68)
)
(wire (pts (xy 240.665 132.715) (xy 223.52 132.715))
(stroke (width 0) (type default))
(uuid 1b09e26d-f7d3-4627-8f7d-046630b74c9d)
)
(wire (pts (xy 198.755 93.345) (xy 196.85 93.345))
(stroke (width 0) (type default))
(uuid 1b19e91b-0fb0-4cac-b85f-ab8e64a3af3f)
)
(wire (pts (xy 120.65 46.99) (xy 137.795 46.99))
(stroke (width 0) (type default))
(uuid 1b71140a-0141-46b3-bcae-96ede439baea)
)
(wire (pts (xy 223.52 161.29) (xy 240.665 161.29))
(stroke (width 0) (type default))
(uuid 1c3c55af-b9b7-4783-95f9-c2da66a6fbc1)
)
(wire (pts (xy 240.665 75.565) (xy 240.665 72.39))
(stroke (width 0) (type default))
(uuid 1d48e6b5-d0f8-4691-b931-d7927719d1c4)
)
(wire (pts (xy 120.65 46.99) (xy 120.65 43.815))
(stroke (width 0) (type default))
(uuid 1dda131e-117b-434e-8133-966fc19793f1)
)
(wire (pts (xy 61.595 62.23) (xy 57.15 62.23))
(stroke (width 0) (type default))
(uuid 1f1374ac-9146-4a0b-8516-db847fc30b02)
)
(wire (pts (xy 240.665 132.715) (xy 240.665 129.54))
(stroke (width 0) (type default))
(uuid 1f1a957e-ab8d-4f8a-b13c-433b88b9798e)
)
(wire (pts (xy 111.125 64.77) (xy 113.03 64.77))
(stroke (width 0) (type default))
(uuid 1f4f59dc-8df1-4aa6-8474-65514e2ce327)
)
(wire (pts (xy 120.65 20.955) (xy 120.65 28.575))
(stroke (width 0) (type default))
(uuid 201fd47e-21f1-417f-bc20-8390543bfc48)
)
(wire (pts (xy 69.215 46.99) (xy 86.36 46.99))
(stroke (width 0) (type default))
(uuid 205e443b-6d66-4986-97af-b7b59be3423f)
)
(wire (pts (xy 137.795 132.715) (xy 137.795 129.54))
(stroke (width 0) (type default))
(uuid 2196f30f-3531-4e4c-8d36-2a897cae718b)
)
(wire (pts (xy 120.65 106.68) (xy 120.65 114.3))
(stroke (width 0) (type default))
(uuid 219f9bf5-7312-4a40-b82d-fff5c5330c79)
)
(wire (pts (xy 154.94 135.255) (xy 154.94 142.875))
(stroke (width 0) (type default))
(uuid 2498e767-f8e8-4cb3-90a9-489b687b6159)
)
(wire (pts (xy 206.375 20.955) (xy 206.375 28.575))
(stroke (width 0) (type default))
(uuid 252a44f2-40b5-481c-83b0-82d176865be2)
)
(wire (pts (xy 172.085 46.99) (xy 172.085 43.815))
(stroke (width 0) (type default))
(uuid 25acd12b-57e6-4cb3-94a5-7daf1a4e6d0c)
)
(wire (pts (xy 154.94 75.565) (xy 137.795 75.565))
(stroke (width 0) (type default))
(uuid 25b76e3d-99b1-487e-8f67-074817a829ba)
)
(wire (pts (xy 181.61 62.23) (xy 179.705 62.23))
(stroke (width 0) (type default))
(uuid 25db0bca-e4ee-4c34-807f-fef845d8e329)
)
(wire (pts (xy 120.65 135.255) (xy 137.795 135.255))
(stroke (width 0) (type default))
(uuid 263ceb18-7924-489b-8b66-6379d2b11e62)
)
(wire (pts (xy 257.81 49.53) (xy 257.81 57.15))
(stroke (width 0) (type default))
(uuid 264ee13f-3fc9-4685-9d49-0b7fdfe15a54)
)
(wire (pts (xy 128.27 64.77) (xy 130.175 64.77))
(stroke (width 0) (type default))
(uuid 26ce9d33-cb16-45c8-a375-98c905194cce)
)
(wire (pts (xy 55.245 121.92) (xy 55.245 150.495))
(stroke (width 0) (type default))
(uuid 275d94ae-4072-4076-8f8c-86cc8546a91e)
)
(wire (pts (xy 189.23 75.565) (xy 172.085 75.565))
(stroke (width 0) (type default))
(uuid 276fe665-15e0-46a1-bab6-1feb4d2e3e9a)
)
(wire (pts (xy 47.625 78.105) (xy 47.625 93.345))
(stroke (width 0) (type default))
(uuid 27c59fb0-fcb8-4e86-9e1c-d6d27da4eb1b)
)
(wire (pts (xy 103.505 161.29) (xy 120.65 161.29))
(stroke (width 0) (type default))
(uuid 27cfa48f-e30f-4997-a147-060a6c47bf49)
)
(wire (pts (xy 172.085 132.715) (xy 172.085 129.54))
(stroke (width 0) (type default))
(uuid 2804b3b6-30e1-4bbe-833b-66c593381711)
)
(wire (pts (xy 69.215 49.53) (xy 69.215 57.15))
(stroke (width 0) (type default))
(uuid 284d6ede-986a-446c-967a-2da5e5e3f109)
)
(wire (pts (xy 273.685 36.195) (xy 273.685 64.77))
(stroke (width 0) (type default))
(uuid 285f5179-089e-481c-b0f1-be8572ba736d)
)
(wire (pts (xy 223.52 20.955) (xy 223.52 28.575))
(stroke (width 0) (type default))
(uuid 287c5f5a-6263-48e9-b791-58e9fce9b40b)
)
(wire (pts (xy 69.215 135.255) (xy 47.625 135.255))
(stroke (width 0) (type default))
(uuid 28d11306-111b-432e-85b5-d6a4a563ff35)
)
(wire (pts (xy 265.43 93.345) (xy 273.685 93.345))
(stroke (width 0) (type default))
(uuid 2a2b333c-b47c-4ded-be3c-89488212855c)
)
(wire (pts (xy 257.81 46.99) (xy 257.81 43.815))
(stroke (width 0) (type default))
(uuid 2a8ca180-ec84-41c3-aac8-915d8266e55f)
)
(wire (pts (xy 172.085 135.255) (xy 172.085 142.875))
(stroke (width 0) (type default))
(uuid 2bdd1ab7-15e2-462c-b2ab-8971224be447)
)
(wire (pts (xy 233.045 93.345) (xy 231.14 93.345))
(stroke (width 0) (type default))
(uuid 2c0c638a-e9cf-4075-a0c8-7266cb938d2f)
)
(wire (pts (xy 61.595 36.195) (xy 57.15 36.195))
(stroke (width 0) (type default))
(uuid 2c905b19-3860-42ba-9c7b-63ec52f5fc30)
)
(wire (pts (xy 137.795 161.29) (xy 154.94 161.29))
(stroke (width 0) (type default))
(uuid 2ccab17c-4191-48b2-848a-0b0f8531f6b8)
)
(wire (pts (xy 250.19 62.23) (xy 248.285 62.23))
(stroke (width 0) (type default))
(uuid 2dc3aaea-b3d4-41e4-9cd5-7ef381890d73)
)
(wire (pts (xy 47.625 20.955) (xy 47.625 36.195))
(stroke (width 0) (type default))
(uuid 2e3d7368-fdcd-46b7-9f6f-8380df3a9a9f)
)
(wire (pts (xy 154.94 49.53) (xy 154.94 57.15))
(stroke (width 0) (type default))
(uuid 2eb03636-1727-437d-8a0f-b57d1fafd769)
)
(wire (pts (xy 206.375 75.565) (xy 206.375 72.39))
(stroke (width 0) (type default))
(uuid 2f6ea747-1b69-4b57-829c-0d75831671a3)
)
(wire (pts (xy 69.215 78.105) (xy 47.625 78.105))
(stroke (width 0) (type default))
(uuid 305ae23d-07ed-4b6a-8726-69bcaa8247a5)
)
(wire (pts (xy 223.52 132.715) (xy 206.375 132.715))
(stroke (width 0) (type default))
(uuid 30ac0274-052c-4b5a-9c81-3e7d5735f38f)
)
(wire (pts (xy 47.625 20.955) (xy 69.215 20.955))
(stroke (width 0) (type default))
(uuid 30aed19c-8472-4965-9551-c7a964d458d1)
)
(wire (pts (xy 240.665 106.68) (xy 223.52 106.68))
(stroke (width 0) (type default))
(uuid 30fa10c0-b173-4568-b9c2-ed9274dce990)
)
(wire (pts (xy 137.795 106.68) (xy 137.795 114.3))
(stroke (width 0) (type default))
(uuid 315357b3-dfe3-4779-b0fa-f880724c5e12)
)
(wire (pts (xy 172.085 49.53) (xy 172.085 57.15))
(stroke (width 0) (type default))
(uuid 328b83e7-b894-4175-83f9-9a1e8e1d2fdd)
)
(wire (pts (xy 273.685 64.77) (xy 265.43 64.77))
(stroke (width 0) (type default))
(uuid 32db0cfe-aab3-486b-a337-035683c68ece)
)
(wire (pts (xy 233.045 62.23) (xy 231.14 62.23))
(stroke (width 0) (type default))
(uuid 33702b8c-0521-491d-bed2-e27c8d1da443)
)
(wire (pts (xy 40.005 132.715) (xy 40.005 161.29))
(stroke (width 0) (type default))
(uuid 33e4b8a6-d99d-4491-8313-d58effb4f4e1)
)
(wire (pts (xy 137.795 78.105) (xy 154.94 78.105))
(stroke (width 0) (type default))
(uuid 33e8bbdc-dfa1-44dd-aab1-d484edeeb0ba)
)
(wire (pts (xy 162.56 64.77) (xy 164.465 64.77))
(stroke (width 0) (type default))
(uuid 3521b258-c622-46ab-9c44-a26fc663316b)
)
(wire (pts (xy 103.505 78.105) (xy 120.65 78.105))
(stroke (width 0) (type default))
(uuid 35862ad3-6508-4a7c-8837-dc57c4e0dc1b)
)
(wire (pts (xy 120.65 78.105) (xy 120.65 85.725))
(stroke (width 0) (type default))
(uuid 35cefaed-01c0-463a-9653-d56b0ce7eef6)
)
(wire (pts (xy 162.56 121.92) (xy 164.465 121.92))
(stroke (width 0) (type default))
(uuid 35eede3b-9a9b-4b08-b66b-01b810bfd1ed)
)
(wire (pts (xy 250.19 36.195) (xy 248.285 36.195))
(stroke (width 0) (type default))
(uuid 3652cd86-14ca-40f7-82ca-67b67237b7ba)
)
(wire (pts (xy 248.285 33.655) (xy 250.19 33.655))
(stroke (width 0) (type default))
(uuid 3692edbc-f36a-45e4-a732-d47331f375bd)
)
(wire (pts (xy 78.74 36.195) (xy 76.835 36.195))
(stroke (width 0) (type default))
(uuid 37a3a226-c5ff-46ae-874c-ac0e7dac52d4)
)
(wire (pts (xy 137.795 132.715) (xy 120.65 132.715))
(stroke (width 0) (type default))
(uuid 382c3db1-7838-4e86-a5ee-c5b929a793bd)
)
(wire (pts (xy 206.375 106.68) (xy 189.23 106.68))
(stroke (width 0) (type default))
(uuid 39e45899-ae4f-4910-8c50-37fd89e4b0d1)
)