-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathFC_Power.kicad_sch-bak
2105 lines (2052 loc) · 81.6 KB
/
FC_Power.kicad_sch-bak
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 4550a909-3508-4ac6-90a4-981b9b45847c)
(paper "A4")
(lib_symbols
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at 0.762 1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "L_Small" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_Small_0_1"
(arc (start 0 -2.032) (mid 0.508 -1.524) (end 0 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 -1.016) (mid 0.508 -0.508) (end 0 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0) (mid 0.508 0.508) (end 0 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 1.016) (mid 0.508 1.524) (end 0 2.032)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "L_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.508)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 0.508)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Small_US" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 0.762 0.508 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "R_Small_US" (id 1) (at 0.762 -1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "r resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor, small US symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Small_US_1_1"
(polyline
(pts
(xy 0 0)
(xy 1.016 -0.381)
(xy 0 -0.762)
(xy -1.016 -1.143)
(xy 0 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.524)
(xy 1.016 1.143)
(xy 0 0.762)
(xy -1.016 0.381)
(xy 0 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at 0 2.54 270) (length 1.016)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 1.016)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Regulator_Linear:ADP7142AUJZ-3.3" (in_bom yes) (on_board yes)
(property "Reference" "U?" (id 0) (at 0 10.922 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TLV70333DBVR-3.3" (id 1) (at 0 8.382 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_TO_SOT_SMD:TSOT-23-5" (id 2) (at 0 -10.16 0)
(effects (font (size 1.27 1.27) italic) hide)
)
(property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/ADP7142.pdf" (id 3) (at 0 -12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "linear regulator ldo fixed positive" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "200mA, Low Noise, CMOS Low Dropout Regulator, Positive, 3.3V Fixed Output, TSOT-23-5" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TSOT?23*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ADP7142AUJZ-3.3_0_1"
(rectangle (start -7.62 5.08) (end 7.62 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "ADP7142AUJZ-3.3_1_1"
(pin power_in line (at -10.16 2.54 0) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "1" (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 "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 0 180) (length 2.54)
(name "NC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 10.16 2.54 180) (length 2.54)
(name "VOUT" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "TPS54335ADRCR:TPS54335ADRCR" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "U?" (id 0) (at 0 23.622 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "TPS54335ADRCR" (id 1) (at 0 19.812 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "DRC0010J" (id 2) (at 0 -1.524 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "ki_locked" "" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_fp_filters" "DRC0010J DRC0010J_NV" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TPS54335ADRCR_1_1"
(rectangle (start -12.7 16.764) (end 12.7 -18.796)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin power_in line (at -17.78 12.7 0) (length 5.08)
(name "VIN" (effects (font (size 1.4986 1.4986))))
(number "1" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at -17.78 -10.16 0) (length 5.08)
(name "RT" (effects (font (size 1.4986 1.4986))))
(number "10" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 17.78 -15.24 180) (length 5.08)
(name "PAD" (effects (font (size 1.4986 1.4986))))
(number "11" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 17.78 5.08 180) (length 5.08)
(name "PH" (effects (font (size 1.4986 1.4986))))
(number "2" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 17.78 -7.62 180) (length 5.08)
(name "GND" (effects (font (size 1.4986 1.4986))))
(number "3" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 17.78 -10.16 180) (length 5.08)
(name "GND" (effects (font (size 1.4986 1.4986))))
(number "4" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 17.78 -12.7 180) (length 5.08)
(name "GND" (effects (font (size 1.4986 1.4986))))
(number "5" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at -17.78 5.08 0) (length 5.08)
(name "VSENSE" (effects (font (size 1.4986 1.4986))))
(number "6" (effects (font (size 1.4986 1.4986))))
)
(pin bidirectional line (at 17.78 -2.54 180) (length 5.08)
(name "COMP" (effects (font (size 1.4986 1.4986))))
(number "7" (effects (font (size 1.4986 1.4986))))
)
(pin input line (at -17.78 -2.54 0) (length 5.08)
(name "EN" (effects (font (size 1.4986 1.4986))))
(number "8" (effects (font (size 1.4986 1.4986))))
)
(pin power_in line (at 17.78 12.7 180) (length 5.08)
(name "BOOT" (effects (font (size 1.4986 1.4986))))
(number "9" (effects (font (size 1.4986 1.4986))))
)
)
)
(symbol "power:+3.3V" (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" "+3.3V" (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 \"+3.3V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_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 "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3V3" (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:+9V" (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" "+9V" (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 \"+9V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+9V_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 "+9V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+9V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+BATT" (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" "+BATT" (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 battery" (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 \"+BATT\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+BATT_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 "+BATT_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+BATT" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(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 108.204 109.982) (diameter 0) (color 0 0 0 0)
(uuid 0335035f-937f-4f54-b5ab-43430a59d5a1)
)
(junction (at 40.64 153.67) (diameter 0) (color 0 0 0 0)
(uuid 04faa6f8-09d5-4a29-a760-46b6402b50f3)
)
(junction (at 115.316 60.198) (diameter 0) (color 0 0 0 0)
(uuid 0608c66e-7e86-4407-b4d4-7aa4ef2676cc)
)
(junction (at 152.4 47.244) (diameter 0) (color 0 0 0 0)
(uuid 1f02e5f8-cc66-47fd-86e2-d29d106bd6e8)
)
(junction (at 116.586 92.456) (diameter 0) (color 0 0 0 0)
(uuid 22d106f7-bc2c-4d08-9952-c1f91860aba1)
)
(junction (at 43.18 60.706) (diameter 0) (color 0 0 0 0)
(uuid 2dc67470-d6ef-4cac-a637-372fb7993bca)
)
(junction (at 108.204 57.15) (diameter 0) (color 0 0 0 0)
(uuid 323eb0cf-b722-4be7-9f07-4c77f3d2cc45)
)
(junction (at 32.766 29.21) (diameter 0) (color 0 0 0 0)
(uuid 35d85a81-d355-4f57-a11b-a3b11233dc01)
)
(junction (at 183.896 36.83) (diameter 0) (color 0 0 0 0)
(uuid 47888364-fb0f-4e15-bd67-35025bbe04ff)
)
(junction (at 53.086 29.21) (diameter 0) (color 0 0 0 0)
(uuid 47f03845-f2c0-4bbc-b22c-a5ba4d41baa1)
)
(junction (at 163.576 36.83) (diameter 0) (color 0 0 0 0)
(uuid 4dd6e0a5-57e4-45d4-93d0-3470f1bc107c)
)
(junction (at 108.204 54.356) (diameter 0) (color 0 0 0 0)
(uuid 52ff0bfe-15a9-4476-b3cc-943e364fbc8a)
)
(junction (at 32.766 84.836) (diameter 0) (color 0 0 0 0)
(uuid 593224e2-a4cd-4d2e-bdbb-a3cf2879ce13)
)
(junction (at 116.586 36.83) (diameter 0) (color 0 0 0 0)
(uuid 5c02a85a-93e6-4b9a-98fc-89ab720e743d)
)
(junction (at 115.316 44.45) (diameter 0) (color 0 0 0 0)
(uuid 6173ed91-5f03-46c6-ae8b-e03895be1d03)
)
(junction (at 152.4 92.456) (diameter 0) (color 0 0 0 0)
(uuid 646cd012-16eb-4397-a568-9ebcbb03be3d)
)
(junction (at 43.18 29.21) (diameter 0) (color 0 0 0 0)
(uuid 69020597-a3ad-4642-bbe2-58087adbeb88)
)
(junction (at 53.086 84.836) (diameter 0) (color 0 0 0 0)
(uuid 6979c537-7ceb-4cf8-a038-42d10b63c927)
)
(junction (at 163.576 92.456) (diameter 0) (color 0 0 0 0)
(uuid 72c51fe7-27e7-48ec-a29b-c9057ea314a8)
)
(junction (at 29.718 153.67) (diameter 0) (color 0 0 0 0)
(uuid 75b699ad-756e-4dd0-a05e-bff12b1b314b)
)
(junction (at 43.18 84.836) (diameter 0) (color 0 0 0 0)
(uuid 7ad5846c-1784-4379-9888-0a10f3595c71)
)
(junction (at 32.766 116.332) (diameter 0) (color 0 0 0 0)
(uuid 7f34e519-4c1e-4ced-bf90-60337fbc6c8f)
)
(junction (at 115.316 115.824) (diameter 0) (color 0 0 0 0)
(uuid 832c1fdc-077b-4d03-ba29-606d793befec)
)
(junction (at 43.18 116.332) (diameter 0) (color 0 0 0 0)
(uuid 832ee9cb-7667-48e2-8399-d0ebc849b7eb)
)
(junction (at 108.204 112.776) (diameter 0) (color 0 0 0 0)
(uuid 84eb791a-4925-49b5-8a2f-f61a6d89e668)
)
(junction (at 53.086 116.332) (diameter 0) (color 0 0 0 0)
(uuid 85182116-7637-490d-9235-0a97e46edd07)
)
(junction (at 152.4 59.436) (diameter 0) (color 0 0 0 0)
(uuid 892b0875-2090-42fd-9a82-7a1d69b328c6)
)
(junction (at 173.736 59.436) (diameter 0) (color 0 0 0 0)
(uuid 91cc4ca0-08b2-4aa6-8a5f-8a0c6cd89295)
)
(junction (at 29.718 165.608) (diameter 0) (color 0 0 0 0)
(uuid 93a6dd29-2c25-43a1-ac50-90ee71059ed3)
)
(junction (at 152.4 101.854) (diameter 0) (color 0 0 0 0)
(uuid 94131b85-508c-4203-a379-fc9db216ccac)
)
(junction (at 71.628 153.67) (diameter 0) (color 0 0 0 0)
(uuid 9ca63a60-ceb0-4c77-857e-0623cffa7f68)
)
(junction (at 108.204 107.696) (diameter 0) (color 0 0 0 0)
(uuid a1397c97-45de-4f97-8da5-da0da98963ac)
)
(junction (at 32.766 60.706) (diameter 0) (color 0 0 0 0)
(uuid a6d9ed90-3cac-4634-8994-adf2b6d20ae2)
)
(junction (at 152.4 115.062) (diameter 0) (color 0 0 0 0)
(uuid a8b8b5c7-6700-49dd-9d01-b0b444c10dfc)
)
(junction (at 71.628 162.052) (diameter 0) (color 0 0 0 0)
(uuid b10a9f8e-4d37-49e3-bac3-1deccafc7947)
)
(junction (at 152.4 36.83) (diameter 0) (color 0 0 0 0)
(uuid c1a12cbe-93eb-4242-b930-ea369c341c6c)
)
(junction (at 115.316 100.076) (diameter 0) (color 0 0 0 0)
(uuid c23477a7-1da7-480a-9244-8c80368fde6d)
)
(junction (at 163.576 115.062) (diameter 0) (color 0 0 0 0)
(uuid cbdcbb3d-c216-49c4-b583-ae8556277080)
)
(junction (at 174.498 92.456) (diameter 0) (color 0 0 0 0)
(uuid d5fad3e6-f369-43f6-9013-6c2248727429)
)
(junction (at 108.204 52.07) (diameter 0) (color 0 0 0 0)
(uuid d6b86dd8-aafa-4787-8f0f-4da788b51b8f)
)
(junction (at 108.204 60.198) (diameter 0) (color 0 0 0 0)
(uuid d94c7b6e-5293-4bfe-b0ff-08b125eceece)
)
(junction (at 53.086 60.706) (diameter 0) (color 0 0 0 0)
(uuid ed7d6aa1-bfe0-4765-825b-aadccf50a082)
)
(junction (at 108.204 115.824) (diameter 0) (color 0 0 0 0)
(uuid f96ee964-95d5-4c6e-b2a8-65f96f318c48)
)
(junction (at 163.576 59.436) (diameter 0) (color 0 0 0 0)
(uuid fa77c33c-ff50-4053-9117-57a0ad1a54a2)
)
(junction (at 173.736 36.83) (diameter 0) (color 0 0 0 0)
(uuid fe78d720-f429-47b6-a995-726ca4e6ac96)
)
(no_connect (at 68.58 44.45) (uuid 333487ba-7e37-4ffa-af10-1cd072da1362))
(no_connect (at 68.58 100.076) (uuid 5c574dd0-3230-486f-89c3-cd0954c563f9))
(wire (pts (xy 108.204 112.776) (xy 108.204 115.824))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02c32e23-6efa-4265-8b8b-dcda708b04d6)
)
(wire (pts (xy 152.4 59.436) (xy 152.4 61.214))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06873386-45c5-4301-aa13-c1cc8bd5b1ba)
)
(wire (pts (xy 43.18 84.836) (xy 53.086 84.836))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07bcee17-4f4c-471d-bd62-035b890c9b18)
)
(wire (pts (xy 115.316 51.308) (xy 115.316 60.198))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08b65516-a8c1-4a4c-a9ae-0f26408b8ef2)
)
(wire (pts (xy 152.4 115.062) (xy 152.4 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08e90216-bb0a-43e5-8937-45b59790a66c)
)
(wire (pts (xy 59.182 109.728) (xy 59.182 107.696))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a62a6de-271a-4c4e-8b2d-c5857dc5d801)
)
(wire (pts (xy 107.95 110.236) (xy 107.95 109.982))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b8b4afd-5fa5-43d0-8494-bf1b0c3702ac)
)
(wire (pts (xy 32.766 96.774) (xy 32.766 116.332))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ce5a691-2685-488c-8d0d-5798e41000bd)
)
(wire (pts (xy 183.896 36.83) (xy 183.896 46.482))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d983ac1-ddf0-486d-86c0-059c763610ed)
)
(wire (pts (xy 130.048 101.346) (xy 130.048 100.076))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0fcb54b8-7938-4657-8700-396c3231017e)
)
(wire (pts (xy 128.016 36.83) (xy 152.4 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 11dffb61-1b47-4b0f-9d08-2bb7907c1ef0)
)
(wire (pts (xy 32.766 116.332) (xy 32.766 117.348))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 147f1950-ab46-4ed2-8a8f-c102bfd9c095)
)
(wire (pts (xy 43.18 40.894) (xy 43.18 60.706))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14e915fc-1dc9-434e-b8d8-ff580b83cbc7)
)
(wire (pts (xy 43.18 29.21) (xy 53.086 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1887648c-57a2-4306-81dd-e06067afb113)
)
(wire (pts (xy 64.516 162.052) (xy 71.628 162.052))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d76a806-b9a9-4fdc-ac8b-5c066bda41f9)
)
(wire (pts (xy 32.766 24.638) (xy 32.766 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f47cb68-2c36-4929-8135-b8fe738e8cf9)
)
(wire (pts (xy 32.766 80.264) (xy 32.766 84.836))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20b4b302-e9c6-4414-b557-9542afc549f9)
)
(wire (pts (xy 130.048 114.554) (xy 130.048 115.824))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2223ca1e-e246-4c14-86a2-0833d5e45ac5)
)
(wire (pts (xy 115.316 106.934) (xy 115.316 115.824))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 277b49e8-f85c-439c-8af4-0d09c59c3a07)
)
(wire (pts (xy 64.516 156.21) (xy 64.516 162.052))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28788894-ba68-465c-8a08-3901de7482b0)
)
(wire (pts (xy 104.14 110.236) (xy 107.95 110.236))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 298dd350-8fbb-4ade-8d7c-a4a79f669b2a)
)
(wire (pts (xy 29.718 153.67) (xy 40.64 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ad119a6-4155-40ca-979d-c79df1ad63e7)
)
(wire (pts (xy 163.576 46.736) (xy 163.576 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e293fe7-75fb-49f9-95d1-09c19d5c5957)
)
(wire (pts (xy 152.4 55.372) (xy 152.4 59.436))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f38839f-5706-4d9f-913b-6e7bbbbf5908)
)
(wire (pts (xy 108.204 60.198) (xy 108.204 61.214))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f9fd023-6a99-4d1f-aee1-19c6659e175e)
)
(wire (pts (xy 183.896 26.67) (xy 183.896 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 325374b9-2d56-4565-9f46-8b1731c139c8)
)
(wire (pts (xy 107.95 54.356) (xy 108.204 54.356))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32e527d1-2280-450a-a94a-0eca5b4f8771)
)
(wire (pts (xy 43.18 116.332) (xy 53.086 116.332))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3990ba51-cbe4-40df-807c-6a22d8fce576)
)
(wire (pts (xy 152.4 47.244) (xy 152.4 50.292))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c7a925f-1296-4c93-b145-378bf828b620)
)
(wire (pts (xy 71.628 147.828) (xy 71.628 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4090ad36-eba3-4184-b899-6508876c15b7)
)
(wire (pts (xy 108.204 54.356) (xy 108.204 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 411e25c6-509e-4a69-8e8a-9bd03173f2fe)
)
(wire (pts (xy 64.008 92.456) (xy 68.58 92.456))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44fbfe97-9e12-409a-b55e-cb654205b1e1)
)
(wire (pts (xy 32.766 29.21) (xy 32.766 36.068))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4594ef78-f30f-4cbb-99db-8f381766e651)
)
(wire (pts (xy 104.14 100.076) (xy 115.316 100.076))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49354161-df47-498c-9616-82ea8129dcc3)
)
(wire (pts (xy 104.14 49.53) (xy 108.204 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49709c29-3704-43d6-b702-bbb1a0ba66f5)
)
(wire (pts (xy 173.736 36.83) (xy 163.576 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49a29876-ac73-4cf3-83e0-c0b5593465b6)
)
(wire (pts (xy 115.316 100.076) (xy 115.316 101.854))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a9c04d6-7f6f-41d5-8a37-bf46385657ab)
)
(wire (pts (xy 130.048 106.426) (xy 130.048 109.474))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f52c4ab-39ff-4ee2-93ec-41bc64baaf54)
)
(wire (pts (xy 152.4 92.456) (xy 152.4 93.726))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4fc5b225-a4e7-49f4-a9aa-6224b34adb97)
)
(wire (pts (xy 32.766 60.706) (xy 43.18 60.706))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5133b2ba-9b4d-40cb-8e70-911de42bd044)
)
(wire (pts (xy 42.672 158.75) (xy 40.64 158.75))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5340e359-ca14-4094-bc40-88d39e61d26f)
)
(wire (pts (xy 53.086 116.332) (xy 59.182 116.332))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 53c3e95e-7dc1-4319-8641-03b4d3796be2)
)
(wire (pts (xy 130.048 60.198) (xy 115.316 60.198))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5788fb81-bb7e-46ab-a262-b83461ad4ade)
)
(wire (pts (xy 116.586 29.21) (xy 116.586 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5801a6af-dbb9-4906-9e5c-84c8b1b93196)
)
(wire (pts (xy 53.086 96.52) (xy 53.086 116.332))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a25d4ea-a4bd-4b67-867f-77d3deda580a)
)
(wire (pts (xy 108.204 105.156) (xy 108.204 107.696))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e03b147-1fdc-4f4c-a58b-57df78ff52c1)
)
(wire (pts (xy 32.766 41.148) (xy 32.766 60.706))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 62fe61d7-5d16-492a-8407-138b3318b8ad)
)
(wire (pts (xy 163.576 107.442) (xy 163.576 115.062))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 65f09f3d-93f5-45b3-b8eb-2d7e90b10404)
)
(wire (pts (xy 62.992 156.21) (xy 64.516 156.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66d80a30-b3cc-46b6-bd46-a2d50c33fb2c)
)
(wire (pts (xy 114.046 84.836) (xy 116.586 84.836))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67db9553-fa7a-47c1-b5b0-81c8eedc44be)
)
(wire (pts (xy 130.048 115.824) (xy 115.316 115.824))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68047792-ee30-44f0-8b50-1c233d35b342)
)
(wire (pts (xy 32.766 29.21) (xy 43.18 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68d0e3a7-ddc1-4a5a-9874-851dd4e122f3)
)
(wire (pts (xy 130.048 50.8) (xy 130.048 53.848))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b88f812-b0ee-49a4-86bf-accea46f7a3e)
)
(wire (pts (xy 71.628 160.02) (xy 71.628 162.052))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d1ad0dc-489f-45a3-b4fa-bd73ec0871a4)
)
(wire (pts (xy 173.736 59.436) (xy 163.576 59.436))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ea84702-59f8-41c6-a2a9-2004e9e74d6c)
)
(wire (pts (xy 43.18 91.44) (xy 43.18 84.836))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ee382b7-efa1-4365-b1c8-7bb7dac43313)
)
(wire (pts (xy 173.736 36.83) (xy 173.736 46.736))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f1671b2-3b09-4f18-bfd0-3ef96753a35d)
)
(wire (pts (xy 32.766 84.836) (xy 43.18 84.836))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 709a9bc8-9b92-4760-8180-1df4e7436b15)
)
(wire (pts (xy 163.576 59.436) (xy 152.4 59.436))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 79365e61-7e7c-4f84-9b07-5e61f9e6aeeb)
)
(wire (pts (xy 173.736 51.816) (xy 173.736 59.436))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7dc65098-bc55-40bc-a675-33b7b8f22969)
)
(wire (pts (xy 104.14 105.156) (xy 108.204 105.156))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e257747-fb39-40cb-b4f3-7596ed499388)
)
(wire (pts (xy 32.766 60.706) (xy 32.766 61.722))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ea590fa-e916-4759-804a-a310c67d9e1d)
)
(wire (pts (xy 53.086 29.21) (xy 68.58 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7efe101d-d70e-4bf5-b6b4-cc6541d01b20)
)
(wire (pts (xy 116.586 36.83) (xy 122.936 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 807d9093-5a63-4713-b17d-62b724b25a1d)
)
(wire (pts (xy 174.498 102.362) (xy 174.498 92.456))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 807dfed5-d21c-4dec-abc4-8bdb26ae5aca)
)
(wire (pts (xy 64.008 38.862) (xy 64.008 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81817b9e-a0dd-4edc-bfe3-172a971363fd)
)
(wire (pts (xy 104.14 92.456) (xy 116.586 92.456))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81c37bc3-c9c9-4b66-bfec-31fddf13526e)
)
(wire (pts (xy 53.086 84.836) (xy 68.58 84.836))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81f76c2e-989e-4180-94c4-727aa73691b5)
)
(wire (pts (xy 40.64 158.75) (xy 40.64 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 824c7c80-57a9-4131-9b7b-17585966bbd5)
)
(wire (pts (xy 53.086 91.44) (xy 53.086 84.836))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 83ca376a-0ffc-4ed3-84ec-d4ea2567f37a)
)
(wire (pts (xy 104.14 29.21) (xy 108.966 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 840d0fb1-b5f1-438c-a5af-50929646ea29)
)
(wire (pts (xy 163.576 51.816) (xy 163.576 59.436))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 85046b93-766a-4eb8-b21b-bdfb8e27736a)
)
(wire (pts (xy 29.718 160.528) (xy 29.718 165.608))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8517f2bb-80d8-480c-9fcc-9505667d7d1f)
)
(wire (pts (xy 43.18 60.706) (xy 53.086 60.706))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8675a069-9bec-4fb3-bccc-642898ce84d8)
)
(wire (pts (xy 108.204 115.824) (xy 108.204 116.84))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87c5e201-e320-4857-a748-d00ffab047c7)
)
(wire (pts (xy 104.14 54.61) (xy 107.95 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a1b8fae-d2b2-438d-aa7e-4d4a8e2eceeb)
)
(wire (pts (xy 115.316 115.824) (xy 108.204 115.824))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8bccae7e-cf71-4c25-9f5f-618d0ac3d731)
)
(wire (pts (xy 108.204 107.696) (xy 108.204 109.982))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8cfbc7a3-d9cc-4625-ad21-bc763e5e31cc)
)
(wire (pts (xy 108.204 109.982) (xy 108.204 112.776))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f1b048e-0c44-4152-825f-8099452fc6e8)
)
(wire (pts (xy 116.586 84.836) (xy 116.586 92.456))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90aeea57-6e7e-4cf2-98e1-65c59384aa34)
)
(wire (pts (xy 128.016 92.456) (xy 152.4 92.456))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92f6b389-d4f3-4f5a-99c0-0680bbf9bc9b)
)
(wire (pts (xy 104.14 57.15) (xy 108.204 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))