forked from etechlabsrl/fruitcm4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cm4usb.kicad_sch
3055 lines (3012 loc) · 165 KB
/
cm4usb.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 0b5d778f-7f09-4a21-8727-b2ff84656dc0)
(paper "A3")
(title_block
(title "USB 2.0 MUX for USB 2.0 port and USB-on-the-go (OTG)")
(date "2022-01-12")
(rev "4")
(company "Copyright © 2022 Christian Kuhtz")
(comment 2 "CERN-OHL-W v2 or later")
)
(lib_symbols
(symbol "Connector_PicoBlade_Molex:PicoBlade_1x6_533980671_SMT" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "PicoBlade_1x6_533980671_SMT" (id 1) (at 0 -10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Connector_PicoBlade_Molex:MOLEX_533980671" (id 2) (at 0 -20.32 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 "Manufacturer" "Molex" (id 4) (at 0 -15.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "533980771" (id 5) (at 0 -17.78 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Molex Picoblade, shrouded header, 3 sides, 6 position, 1.25mm pitch, SMT" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 8) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PicoBlade_1x6_533980671_SMT_0_0"
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "SHIELD" (effects (font (size 1.27 1.27))))
(number "S" (effects (font (size 1.27 1.27))))
)
)
(symbol "PicoBlade_1x6_533980671_SMT_1_1"
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -1.27 8.89) (end 1.27 -8.89)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(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:R_Small" (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" (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 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_0_1"
(rectangle (start -0.762 1.778) (end 0.762 -1.778)
(stroke (width 0.2032) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_Small_1_1"
(pin passive line (at 0 2.54 270) (length 0.762)
(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.762)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Interface_USB_Microchip:USB3740B-AI2" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -1.905 13.335 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "USB3740B-AI2" (id 1) (at -1.905 11.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Interface_USB_Microchip:Microchip_UQFN-10_1.3x1.8mm_P0.4mm_pin1" (id 2) (at 0 -33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/00001725D.pdf" (id 3) (at 0 -29.845 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Microchip" (id 4) (at 0 -27.305 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "USB3740B-AI2" (id 5) (at 0 -24.765 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "USB 2.0 High Speed Switch MUX ESD" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "USB 2.0 Switch with ESD Protection, UQFN-10 1.3x1.8mm Pitch 0.4 mm" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "UQFN*1.3x1.8mm?P0.4mm* UQFN*1.6x2.1mm?P0.5mm*" (id 8) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "USB3740B-AI2_0_0"
(polyline
(pts
(xy -4.699 0)
(xy -2.921 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -4.699 2.54)
(xy -2.921 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 0)
(xy 2.54 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 5.08)
(xy 2.54 5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 7.62)
(xy 2.54 7.62)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(text "ESD" (at -5.334 1.27 900)
(effects (font (size 0.5 0.5)))
)
(text "ESD" (at 3.175 2.54 900)
(effects (font (size 0.5 0.5)))
)
(text "HS USB" (at -1.016 1.905 0)
(effects (font (size 0.5 0.5)))
)
(text "Switch" (at -1.016 0.635 0)
(effects (font (size 0.5 0.5)))
)
)
(symbol "USB3740B-AI2_0_1"
(rectangle (start -9.525 10.16) (end 9.525 -13.335)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(rectangle (start -5.969 3.81) (end -4.699 -1.27)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center -3.048 -6.858) (radius 0.635)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start -2.921 8.636) (end 0.635 -3.556)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.143 -6.858)
(xy 1.397 -6.858)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.413 -6.858)
(xy -1.778 -6.858)
(xy -0.508 -5.588)
(xy 0.127 -5.588)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -6.858)
(xy -1.143 -6.858)
(xy -0.508 -8.128)
(xy 0.762 -8.128)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.397 -6.223)
(xy 1.397 -7.493)
(xy 2.667 -6.858)
(xy 1.397 -6.223)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center 0.127 -5.588) (radius 0.381)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 1.016 -7.747) (end 0.254 -8.509)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 2.54 8.89) (end 3.81 -3.81)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "USB3740B-AI2_1_1"
(pin bidirectional line (at 12.065 -2.54 180) (length 2.54)
(name "DM_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.065 2.54 0) (length 2.54)
(name "DP" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.065 0 180) (length 2.54)
(name "DP_1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.065 -8.89 180) (length 2.54)
(name "~{OE}" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.065 -11.43 180) (length 2.54)
(name "S" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -12.065 -8.89 0) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.065 7.62 180) (length 2.54)
(name "DP_2" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.065 5.08 180) (length 2.54)
(name "DM_2" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -12.065 -11.43 0) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -12.065 0 0) (length 2.54)
(name "DM" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Power_Protection_Diodes:AP22653FDZ-7" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AP22653FDZ-7" (id 1) (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Power_Protection_Diodes:Diodes_W-DFN2020-6_A1" (id 2) (at 0 -13.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP255x.pdf" (id 3) (at 1.27 -16.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Manufacturer" "Diodes" (id 4) (at 0 -8.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "AP22653FDZ-7" (id 5) (at 0 -11.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Precision adjustable current-limited power switches 2.1A max" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AP22653FDZ-7_0_0"
(pin power_in line (at -7.62 2.54 0) (length 2.54)
(name "IN" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -7.62 0 0) (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 -7.62 -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 output line (at 7.62 -2.54 180) (length 2.54)
(name "~{FAULT}" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 7.62 0 180) (length 2.54)
(name "ILIM" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 7.62 2.54 180) (length 2.54)
(name "OUT" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
(symbol "AP22653FDZ-7_0_1"
(rectangle (start -5.08 5.08) (end 5.08 -5.08)
(stroke (width 0.1) (type default) (color 0 0 0 0))
(fill (type background))
)
)
)
(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))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (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" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 109.22 231.14) (diameter 0) (color 0 0 0 0)
(uuid 092b4c4f-8424-4d41-9096-61dfcbbfdcba)
)
(junction (at 327.66 76.2) (diameter 1.016) (color 0 0 0 0)
(uuid 22127bf3-28e1-4f2a-9132-0b2244d2149e)
)
(junction (at 358.14 76.2) (diameter 1.016) (color 0 0 0 0)
(uuid 233d14ec-e17f-4b70-ace9-a65479e58a33)
)
(junction (at 245.11 231.14) (diameter 0) (color 0 0 0 0)
(uuid 23ca4e51-8e5a-4cc3-9396-411fc5a32732)
)
(junction (at 347.98 92.202) (diameter 0.9144) (color 0 0 0 0)
(uuid 30979a3d-28d7-46ae-b5aa-513ad60b71a4)
)
(junction (at 96.52 125.73) (diameter 0.9144) (color 0 0 0 0)
(uuid 32a4ef1f-e9af-4675-9818-ce73139132c4)
)
(junction (at 134.62 87.63) (diameter 0.9144) (color 0 0 0 0)
(uuid 3a5e9d83-8605-4e38-a4d6-7131b7911750)
)
(junction (at 337.82 92.202) (diameter 0.9144) (color 0 0 0 0)
(uuid 4cbba380-690c-405e-bbfb-a0cd7ef65d0e)
)
(junction (at 85.09 135.89) (diameter 0.9144) (color 0 0 0 0)
(uuid 4f2affaa-42b9-4c27-8fcd-2fdf5dda3dbd)
)
(junction (at 337.82 76.2) (diameter 1.016) (color 0 0 0 0)
(uuid 62ed984b-c070-4de1-bd86-30aeb09fb9cd)
)
(junction (at 267.97 76.2) (diameter 1.016) (color 0 0 0 0)
(uuid 6505825f-43ee-4fb8-b546-c0b2310ed040)
)
(junction (at 279.4 92.202) (diameter 0.9144) (color 0 0 0 0)
(uuid 91a85248-7895-453a-bdbc-36a6edbe91db)
)
(junction (at 149.86 128.27) (diameter 0.9144) (color 0 0 0 0)
(uuid a0400e61-7ec0-4cc7-a41d-d7c451e758fe)
)
(junction (at 347.98 76.2) (diameter 1.016) (color 0 0 0 0)
(uuid a11284ee-2f71-4eb8-b0ee-e01b498d0140)
)
(junction (at 358.14 92.202) (diameter 0.9144) (color 0 0 0 0)
(uuid c1fbee58-f474-4414-9110-64abd03ed7c9)
)
(junction (at 134.62 128.27) (diameter 0.9144) (color 0 0 0 0)
(uuid d427b096-2104-4cac-9d5d-d2195401989e)
)
(junction (at 322.58 92.202) (diameter 0.9144) (color 0 0 0 0)
(uuid de01c5f0-8b67-4f95-a915-b01789f320eb)
)
(junction (at 368.3 92.202) (diameter 0.9144) (color 0 0 0 0)
(uuid e0bbf399-c52b-4993-8f0b-a5400682c686)
)
(junction (at 327.66 92.202) (diameter 0.9144) (color 0 0 0 0)
(uuid e44b0081-5f25-4984-8fb5-ea876fb2fc1c)
)
(junction (at 85.09 125.73) (diameter 0) (color 0 0 0 0)
(uuid e73a2bb1-7470-4912-9bf4-c94f3afcb4a1)
)
(junction (at 149.86 87.63) (diameter 0.9144) (color 0 0 0 0)
(uuid e9febdd1-669e-46f3-983e-2ded7b5fa339)
)
(junction (at 368.3 76.2) (diameter 0.9144) (color 0 0 0 0)
(uuid f574310b-3071-4841-b3bc-44ccc3dd1422)
)
(wire (pts (xy 304.8 78.74) (xy 313.69 78.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 01b2676d-25f3-4e9d-b8aa-3c4ffed66497)
)
(wire (pts (xy 368.3 76.2) (xy 382.27 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0318eb15-912f-4e03-a502-97b52a5ff72d)
)
(wire (pts (xy 106.68 128.27) (xy 106.68 151.13))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 06a0c98a-3755-4cc5-98c6-9fd572255fb6)
)
(wire (pts (xy 358.14 76.2) (xy 358.14 80.01))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 082b4120-a3d9-41b2-a912-eb04f04722da)
)
(wire (pts (xy 212.09 226.06) (xy 229.87 226.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 091ec11d-9fb0-46a7-b907-7998b4019cf1)
)
(wire (pts (xy 39.37 229.87) (xy 54.61 229.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cf20ca1-1835-4497-8a38-48f3919be800)
)
(wire (pts (xy 168.91 279.4) (xy 156.21 279.4))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 11e18e8f-b068-4cb2-9d3f-046569429558)
)
(wire (pts (xy 327.66 85.09) (xy 327.66 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 12111881-4d57-4b0e-9722-0e628f1d591a)
)
(wire (pts (xy 85.09 133.35) (xy 85.09 135.89))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 133d0bdc-38aa-421f-9c89-e18ba82cd5ad)
)
(wire (pts (xy 102.87 87.63) (xy 134.62 87.63))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 18d21a59-333a-45b1-be21-5a4d23c0b0dc)
)
(wire (pts (xy 318.77 78.74) (xy 322.58 78.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1bcfe40b-2850-48eb-b821-1c01fcd939b3)
)
(wire (pts (xy 133.35 109.22) (xy 147.32 109.22))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1f7369e9-1258-4841-8970-e50861b60d31)
)
(wire (pts (xy 149.86 95.25) (xy 149.86 96.52))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 266d50c4-384f-4e75-9a7c-3ab79cadd5b7)
)
(wire (pts (xy 358.14 76.2) (xy 368.3 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2779c4bc-ccab-400b-a189-da7e5bd6ea93)
)
(wire (pts (xy 85.09 125.73) (xy 85.09 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2cee150f-1a8a-4e82-98cd-1a17dc241a4f)
)
(wire (pts (xy 109.22 226.06) (xy 109.22 231.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e711f94-4b86-4450-a925-b54afbfee823)
)
(wire (pts (xy 96.52 125.73) (xy 96.52 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2ea91c33-f21b-4a5e-a2a5-419290cc5034)
)
(wire (pts (xy 176.53 229.87) (xy 191.77 229.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30b223c2-6e46-4200-852a-b4d9191a8ab3)
)
(polyline (pts (xy 281.94 176.53) (xy 281.94 129.54))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid 318851bc-abe4-4cc3-853f-483a5d9c132e)
)
(wire (pts (xy 102.87 116.84) (xy 109.22 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 368dea28-092b-4ae4-9e81-d4827bb0c70e)
)
(wire (pts (xy 133.35 111.76) (xy 147.32 111.76))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3a50fb8b-8a25-48c8-b720-aa0f5908099e)
)
(wire (pts (xy 337.82 76.2) (xy 337.82 80.01))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3b01b92a-309a-4e5e-b570-9a469e2b5218)
)
(wire (pts (xy 176.53 234.95) (xy 191.77 234.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d9420cd-4546-4106-9b7d-c57e0285a0a5)
)
(wire (pts (xy 134.62 128.27) (xy 139.7 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3e11279f-3b3a-4cc2-b5ab-d0dc849ea098)
)
(wire (pts (xy 133.35 128.27) (xy 134.62 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3e11279f-3b3a-4cc2-b5ab-d0dc849ea099)
)
(wire (pts (xy 337.82 85.09) (xy 337.82 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3f9b2754-6c04-4dfa-9c1f-e1b09d49573c)
)
(wire (pts (xy 245.11 226.06) (xy 245.11 231.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47c0903b-97b7-4b85-bd08-aba229050cec)
)
(wire (pts (xy 96.52 125.73) (xy 85.09 125.73))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4ad65a8f-01d9-4ae3-bc26-b6cd0233d4af)
)
(wire (pts (xy 71.755 125.73) (xy 85.09 125.73))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 52e3543c-4147-47d4-9ba9-2e970d8633af)
)
(wire (pts (xy 96.52 135.89) (xy 96.52 133.35))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 539aa4be-1ce1-4474-b276-8b045dedeccf)
)
(polyline (pts (xy 134.62 177.8) (xy 134.62 284.48))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid 553b0c0e-7629-438c-ae0b-c10af6e9d710)
)
(wire (pts (xy 267.97 76.2) (xy 267.97 78.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 56cfb9d3-3f6d-48eb-a666-097c3892f524)
)
(wire (pts (xy 279.4 78.74) (xy 279.4 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5cce07c6-3b8d-4dd0-aea0-02b7c7f06510)
)
(wire (pts (xy 368.3 76.2) (xy 368.3 80.01))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5f93eaf2-bd52-4162-92d2-05d8c6cb9efa)
)
(wire (pts (xy 176.53 232.41) (xy 191.77 232.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66f61a2e-5994-4bdd-a3fd-f4ee17f63e63)
)
(polyline (pts (xy 281.94 129.54) (xy 414.02 129.54))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid 68e449e0-457a-44bc-a6d7-0ca4364eab54)
)
(polyline (pts (xy 406.4 142.24) (xy 406.4 142.24))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid 68e449e0-457a-44bc-a6d7-0ca4364eab55)
)
(wire (pts (xy 176.53 237.49) (xy 191.77 237.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c6c5fae-bc28-4fd2-a2ee-0c9cbdd3017f)
)
(wire (pts (xy 347.98 85.09) (xy 347.98 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 716b59b7-fb7d-4515-a71b-a16cb8c60969)
)
(wire (pts (xy 368.3 94.742) (xy 368.3 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 72018210-448d-475c-8c11-6d65bbcc92ab)
)
(wire (pts (xy 99.06 226.06) (xy 109.22 226.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 73f4e4c7-e3eb-4b53-99b6-5147e784633a)
)
(wire (pts (xy 234.95 226.06) (xy 245.11 226.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 742b4957-5401-4f89-8e5c-fbe7c47389bf)
)
(wire (pts (xy 347.98 76.2) (xy 347.98 80.01))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 756c1678-c9b0-4845-8721-b10478666130)
)
(wire (pts (xy 267.97 83.82) (xy 267.97 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 77781e52-84db-4319-9f88-f7be987db15d)
)
(wire (pts (xy 299.974 85.344) (xy 307.848 85.344))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a0d8655-9520-4358-ac9f-ff39baf61d26)
)
(wire (pts (xy 307.848 85.344) (xy 307.848 81.28))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7a0d8655-9520-4358-ac9f-ff39baf61d27)
)
(wire (pts (xy 149.86 128.27) (xy 149.86 151.13))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7b0023b6-73f4-4c79-bb6d-00f5cc498f08)
)
(wire (pts (xy 149.86 125.73) (xy 149.86 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7b0023b6-73f4-4c79-bb6d-00f5cc498f09)
)
(wire (pts (xy 133.35 125.73) (xy 149.86 125.73))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7b0023b6-73f4-4c79-bb6d-00f5cc498f0a)
)
(wire (pts (xy 102.87 114.3) (xy 109.22 114.3))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7deaba18-5248-4479-9329-fdc520679f32)
)
(wire (pts (xy 191.77 224.79) (xy 176.53 224.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f3faa6e-eb08-4568-8557-3c19a837026f)
)
(wire (pts (xy 176.53 240.03) (xy 191.77 240.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f7288ae-7321-4ca4-88cf-6e1d5869e7b8)
)
(wire (pts (xy 149.86 87.63) (xy 177.8 87.63))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 80b2a415-326a-47a5-9be8-e418d55628b0)
)
(wire (pts (xy 144.78 87.63) (xy 149.86 87.63))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 80b2a415-326a-47a5-9be8-e418d55628b1)
)
(wire (pts (xy 96.52 135.89) (xy 85.09 135.89))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 89634f05-076c-47f0-9530-d64641ba0414)
)
(wire (pts (xy 289.56 78.74) (xy 279.4 78.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8981ef5d-e81a-471a-8608-bacd73775561)
)
(wire (pts (xy 267.97 76.2) (xy 289.56 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 89cafd67-74bf-4bb1-9d52-7dddb2250ae9)
)
(wire (pts (xy 35.56 44.45) (xy 52.07 44.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 91f605c3-3692-49c7-b5c8-87bd5c15b52e)
)
(wire (pts (xy 368.3 85.09) (xy 368.3 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 969d10aa-2fd6-4241-afca-6d61601b5e14)
)
(wire (pts (xy 76.2 226.06) (xy 93.98 226.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 994c5e02-9acb-4698-9328-6aa621a135bf)
)
(wire (pts (xy 39.37 227.33) (xy 54.61 227.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a0e7c925-7f09-4794-9b45-4e68de59daec)
)
(wire (pts (xy 284.734 85.344) (xy 294.894 85.344))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ab29ac2c-13ea-4f4c-a49a-2843eacfd966)
)
(wire (pts (xy 36.83 39.37) (xy 52.07 39.37))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ab61d585-646c-41ad-80eb-81f10d411206)
)
(wire (pts (xy 144.78 128.27) (xy 149.86 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ac9770dd-41fd-47d5-b31b-4c137c8041ea)
)
(wire (pts (xy 347.98 92.202) (xy 358.14 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae648e30-1618-4377-85ce-19adc65070af)
)
(wire (pts (xy 322.58 92.202) (xy 327.66 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae648e30-1618-4377-85ce-19adc65070b0)
)
(wire (pts (xy 337.82 92.202) (xy 347.98 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae648e30-1618-4377-85ce-19adc65070b1)
)
(wire (pts (xy 358.14 92.202) (xy 368.3 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae648e30-1618-4377-85ce-19adc65070b2)
)
(wire (pts (xy 267.97 92.202) (xy 279.4 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae648e30-1618-4377-85ce-19adc65070b3)
)
(wire (pts (xy 279.4 92.202) (xy 322.58 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae648e30-1618-4377-85ce-19adc65070b4)
)
(wire (pts (xy 327.66 92.202) (xy 337.82 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae648e30-1618-4377-85ce-19adc65070b5)
)
(polyline (pts (xy 24.13 176.53) (xy 281.94 176.53))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid ae8abcc9-c7a5-416a-8195-5e24937f9f51)
)
(wire (pts (xy 109.22 231.14) (xy 109.22 237.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af147831-3696-4b56-b874-3d0e3631746b)
)
(wire (pts (xy 134.62 87.63) (xy 134.62 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid afab82cd-cb69-43fa-ad4b-7c2fbde15142)
)
(wire (pts (xy 245.11 231.14) (xy 245.11 237.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c420e4bc-3aa9-4da0-abda-4bdea99707d0)
)
(wire (pts (xy 133.35 119.38) (xy 147.32 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c4d26bac-be8d-485e-848b-c375fd59d6fd)
)
(wire (pts (xy 149.86 96.52) (xy 163.83 96.52))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ca803352-00fb-4dd8-8990-627f48ec4495)
)
(wire (pts (xy 85.09 135.89) (xy 85.09 138.43))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ce4d3120-06ef-475b-82f8-8ab79efb0b7a)
)
(wire (pts (xy 39.37 232.41) (xy 54.61 232.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cebd6211-ed4a-4489-bc8b-2d6d7596d918)
)
(wire (pts (xy 149.86 87.63) (xy 149.86 90.17))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cebf814b-8ad3-4186-9bc5-3f624305c78f)
)
(wire (pts (xy 212.09 231.14) (xy 245.11 231.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf6a436a-86de-41be-9c18-9b5e2cdb119d)
)
(wire (pts (xy 284.734 81.28) (xy 289.56 81.28))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d0d8077b-2098-45e5-9312-0a37787fe83c)
)
(polyline (pts (xy 54.61 34.29) (xy 54.61 48.26))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid d1e9af19-387d-4454-937f-6fd85dc79a9d)
)
(polyline (pts (xy 21.59 34.29) (xy 21.59 48.26))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid d1e9af19-387d-4454-937f-6fd85dc79a9e)
)
(polyline (pts (xy 54.61 48.26) (xy 21.59 48.26))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid d1e9af19-387d-4454-937f-6fd85dc79a9f)
)
(polyline (pts (xy 21.59 34.29) (xy 54.61 34.29))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid d1e9af19-387d-4454-937f-6fd85dc79aa0)
)
(wire (pts (xy 322.58 78.74) (xy 322.58 92.202))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d66cea30-1c91-440f-8956-379970aaf672)
)
(polyline (pts (xy 67.31 160.02) (xy 183.515 160.02))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid db7145cf-5ae3-4ffb-9394-61ad0072e112)
)
(polyline (pts (xy 67.31 55.88) (xy 183.515 55.88))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid db7145cf-5ae3-4ffb-9394-61ad0072e113)
)
(polyline (pts (xy 183.515 160.02) (xy 183.515 55.88))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid db7145cf-5ae3-4ffb-9394-61ad0072e114)
)
(polyline (pts (xy 67.31 55.88) (xy 67.31 160.02))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid db7145cf-5ae3-4ffb-9394-61ad0072e115)
)
(wire (pts (xy 133.35 116.84) (xy 147.32 116.84))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid db8661eb-4e49-49ae-bae8-ae59c6c6d6f6)
)
(wire (pts (xy 176.53 227.33) (xy 191.77 227.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e28050b8-599f-4e35-a480-7737a217257e)
)
(wire (pts (xy 260.35 76.2) (xy 267.97 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e628f828-8d6b-4144-b291-c2279f0c5d2a)
)
(wire (pts (xy 327.66 76.2) (xy 337.82 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e6c0f480-c933-483f-a982-7b87200a212f)
)
(wire (pts (xy 337.82 76.2) (xy 347.98 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e6c0f480-c933-483f-a982-7b87200a2130)
)
(wire (pts (xy 76.2 231.14) (xy 109.22 231.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e81ccbf8-77e1-4deb-a222-ddeb49dab815)
)
(polyline (pts (xy 281.94 176.53) (xy 281.94 281.94))
(stroke (width 0) (type dash) (color 0 0 0 0))
(uuid e92a9f03-7fcf-473d-9dc3-b198f218ac56)