-
Notifications
You must be signed in to change notification settings - Fork 6
/
supervisor-mcu.kicad_sch
5652 lines (5566 loc) · 309 KB
/
supervisor-mcu.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 4166cabd-70ce-448c-a6e8-234ec50cf9b1)
(paper "A3")
(title_block
(title "Kintex 410T devboard")
(date "2024-04-03")
(rev "1.1.2")
)
(lib_symbols
(symbol "K410T-devboard:Net-Tie_2" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (at 21.59 0 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "Net-Tie_2" (at 21.59 -2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Footprint" "K410T-devboard-footprints:NetTie-2_SMD_Pad0.127mm" (at 21.59 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "" (at 21.59 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "" (at 21.59 -8.89 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Manufacturer" "" (at 21.59 -11.43 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Author" "Antmicro" (at 21.59 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 21.59 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "ki_keywords" "net tie short" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Net tie, 2 pins" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Net*Tie*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Net-Tie_2_1_1"
(polyline
(pts
(xy 1.27 0)
(xy 2.54 0)
)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at 0 0 0) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "antmicroB2BConnectors:Socket_Samtec_ERF5_2x20_ERF5-020-05.0-L-DV-K-TR" (in_bom yes) (on_board yes)
(property "Reference" "J" (at 26.67 0 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "Socket_Samtec_ERF5_2x20_ERF5-020-05.0-L-DV-K-TR" (at 26.67 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "antmicro-footprints:Conn_Socket_Samtec_ERF5_2x20_ERF5-020-05.0-L-DV-K-TR" (at 26.67 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://suddendocs.samtec.com/productspecs/erm5-erf5.pdf?_gl=1*1g914su*_ga*MTE0MzExNjY4MC4xNjcyMTQ5NTUz*_ga_3KFNZC07WW*MTY3Mjg0NzY5Ny42LjEuMTY3Mjg0ODE3MS42MC4wLjA." (at 26.67 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "ERF5-020-05.0-L-DV-K-TR" (at 26.67 -2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Manufacturer" "Samtec" (at 26.67 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 26.67 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 26.67 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Pitch" "0.5 mm" (at 26.67 -15.24 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "ki_keywords" "CONNECTOR, B2B, SOCKET" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Board to Board & Mezzanine Connectors 0.50 mm Edge Rate Rugged High Speed Socket" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Socket_Samtec_ERF5_2x20_ERF5-020-05.0-L-DV-K-TR_1_1"
(rectangle (start 2.54 2.54) (end 8.89 -50.8)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start 3.81 1.27) (end 7.62 -49.53)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at 0 0 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -10.16 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -12.7 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -12.7 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -15.24 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -15.24 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -17.78 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -17.78 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -20.32 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -20.32 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -22.86 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 0 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -22.86 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -25.4 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -25.4 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -27.94 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -27.94 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -30.48 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -30.48 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -33.02 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -33.02 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -35.56 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -35.56 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -38.1 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -38.1 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "32" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -40.64 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -40.64 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "34" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -43.18 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -43.18 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "36" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -45.72 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -45.72 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "38" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -48.26 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -2.54 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -48.26 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -5.08 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -7.62 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -7.62 180) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -10.16 0) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "antmicroResistorNetworksArrays:R_4x33R_0201_array" (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 26.67 -3.175 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "R_4x33R_0201_array" (at 26.67 -5.715 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Footprint" "antmicro-footprints:R_Array_4x0201_Panasonic_EXB18V" (at 26.67 -10.795 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "http://industrial.panasonic.com/cdbs/www-data/pdf/AOC0000/AOC0000C14.pdf" (at 26.67 -13.335 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "EXB-18V330JX" (at 26.67 -15.875 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Panasonic" (at 26.67 -18.415 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 26.67 -20.955 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 26.67 -23.495 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "R_4x33R_0201" (at 26.67 -8.255 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "ki_keywords" "0201, SMT, RESISTOR, PASSIVE" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Fixed Network Resistor, 33 ohm, Isolated, 4 Resistors, 0502 [1406 Metric], Flat, ± 5%" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_4x33R_0201_array_0_1"
(polyline
(pts
(xy 2.54 -7.62)
(xy 3.175 -7.62)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -5.08)
(xy 3.175 -5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 3.175 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 3.175 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 6.985 -7.62)
(xy 7.62 -7.62)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 6.985 -5.08)
(xy 7.62 -5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 6.985 -2.54)
(xy 7.62 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 6.985 0)
(xy 7.62 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 2.667 1.27) (end 7.493 -8.89)
(stroke (width 0.254) (type default))
(fill (type background))
)
(rectangle (start 6.985 -6.985) (end 3.175 -8.255)
(stroke (width 0.254) (type default))
(fill (type none))
)
(rectangle (start 6.985 -4.445) (end 3.175 -5.715)
(stroke (width 0.254) (type default))
(fill (type none))
)
(rectangle (start 6.985 -1.905) (end 3.175 -3.175)
(stroke (width 0.254) (type default))
(fill (type none))
)
(rectangle (start 6.985 0.635) (end 3.175 -0.635)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_4x33R_0201_array_1_1"
(pin passive line (at 0 0 0) (length 2.54)
(name "R1.1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 0) (length 2.54)
(name "R2.1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 0) (length 2.54)
(name "R3.1" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -7.62 0) (length 2.54)
(name "R4.1" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -7.62 180) (length 2.54)
(name "R4.2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -5.08 180) (length 2.54)
(name "R3.2" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 -2.54 180) (length 2.54)
(name "R2.2" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 0 180) (length 2.54)
(name "R1.2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "antmicropower:+5V" (power) (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 15.24 -2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Value" "+5V" (at 15.24 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Footprint" "" (at 15.24 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "" (at 15.24 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 15.24 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 15.24 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(symbol "+5V_1_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type background))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type background))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type background))
)
(pin power_in line (at 0 0 90) (length 0)
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "antmicropower:GND" (power) (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 8.89 -2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Value" "GND" (at 8.89 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Footprint" "" (at 8.89 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "" (at 8.89 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 8.89 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 8.89 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(symbol "GND_1_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))
)
(pin power_in line (at 0 0 270) (length 0)
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 147.32 165.1) (diameter 0) (color 0 0 0 0)
(uuid 12a7f2a4-8f7d-48b8-abec-ba71e8d458b3)
)
(junction (at 147.32 160.02) (diameter 0) (color 0 0 0 0)
(uuid 60d85d1e-e57d-43e1-9a1e-79132cd521a3)
)
(junction (at 129.54 121.92) (diameter 0) (color 0 0 0 0)
(uuid 6f0161b8-b7ec-4847-87e6-eb5f313a97ed)
)
(junction (at 68.58 96.52) (diameter 0) (color 0 0 0 0)
(uuid 714fe4b9-516f-4c32-abfe-959487992c47)
)
(junction (at 147.32 157.48) (diameter 0) (color 0 0 0 0)
(uuid 740060df-24ff-4a9c-a071-61838499537a)
)
(junction (at 224.79 96.52) (diameter 0) (color 0 0 0 0)
(uuid 9121e448-7b6f-474b-b890-d15a4d88c6de)
)
(junction (at 129.54 119.38) (diameter 0) (color 0 0 0 0)
(uuid a3d0f721-9b4d-4edb-8b35-92d9cb9a2bda)
)
(junction (at 201.93 96.52) (diameter 0) (color 0 0 0 0)
(uuid b448ec09-f517-4a58-9ec2-5103ae110d40)
)
(junction (at 129.54 124.46) (diameter 0) (color 0 0 0 0)
(uuid d1d8dbeb-d87e-4a5b-a2ff-4ae79b10462d)
)
(junction (at 147.32 162.56) (diameter 0) (color 0 0 0 0)
(uuid d80d0019-f6da-410f-add2-78d03ded1f75)
)
(junction (at 129.54 116.84) (diameter 0) (color 0 0 0 0)
(uuid e1d94a3d-0f14-448f-b20e-bacf34e3462e)
)
(junction (at 64.77 96.52) (diameter 0) (color 0 0 0 0)
(uuid e2331f50-300b-403b-be06-25ead78e124e)
)
(junction (at 280.67 116.84) (diameter 0) (color 0 0 0 0)
(uuid fdc4df1c-1ea5-485f-9677-b184b5fe5170)
)
(no_connect (at 93.98 152.4) (uuid 26107646-e8ba-465c-8e6c-1b78da668490))
(no_connect (at 93.98 127) (uuid 37d9622d-0cd7-4900-b5a6-a302d08b19b7))
(no_connect (at 259.08 116.84) (uuid 44e36435-d97e-4c34-86c4-63b7f885419a))
(no_connect (at 179.07 124.46) (uuid 4b733736-a090-4788-984c-0b320fa35d03))
(no_connect (at 104.14 127) (uuid 8a4d1fd5-3451-472d-99a5-c50e0f066588))
(no_connect (at 248.92 119.38) (uuid a7dec2ff-141b-4163-a054-eddf4f5bfcd8))
(no_connect (at 259.08 119.38) (uuid ce4adfdf-9bb7-4ba7-ab7e-4a6996037951))
(no_connect (at 179.07 114.3) (uuid dcefb289-bd6e-40eb-96a0-52a81d2d0439))
(no_connect (at 168.91 114.3) (uuid f2553797-4bb5-4473-b908-0ac5614bbe97))
(no_connect (at 248.92 116.84) (uuid f314575b-87d1-4597-bc57-ecfd402fd296))
(bus_entry (at 361.95 151.13) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 0411827e-727c-4217-96c4-55a5bb78f15e)
)
(bus_entry (at 201.93 130.81) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 0e289f7c-5ead-4df3-a593-8d30b56361cd)
)
(bus_entry (at 68.58 163.83) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 0fa16d08-64fa-4407-bcb7-a89c73cb8150)
)
(bus_entry (at 68.58 153.67) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 11f634d6-491c-4b0d-937e-8d8c1a38b6d8)
)
(bus_entry (at 361.95 163.83) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 12f58f16-2e00-4b60-a81f-1d411768f124)
)
(bus_entry (at 201.93 115.57) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 140cca3b-476c-4a3b-8bce-1f54918c38e8)
)
(bus_entry (at 68.58 135.89) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 188f58d0-053f-44c0-8e91-472494b07282)
)
(bus_entry (at 68.58 148.59) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 1c4f8ac0-80e4-4b23-8b4e-482a024c2d8b)
)
(bus_entry (at 201.93 140.97) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 1eb603b9-69d9-443b-be4d-6f11acc0e349)
)
(bus_entry (at 361.95 133.35) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 20fe7845-da1a-461a-b5e6-8024342c0816)
)
(bus_entry (at 361.95 120.65) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 24e8f89e-89ea-484b-9830-a30015db5f41)
)
(bus_entry (at 361.95 158.75) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 2568ca3e-0196-40b8-b63e-90f08335ae6e)
)
(bus_entry (at 224.79 158.75) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 2772b2bb-c7e6-4366-8b7a-00a070e6dace)
)
(bus_entry (at 201.93 151.13) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 27dae2eb-f241-4e19-9b82-37c834387648)
)
(bus_entry (at 361.95 148.59) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 291a6440-fa7c-4e3b-88ed-d01b5bc320c2)
)
(bus_entry (at 224.79 146.05) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 2e6a9230-bfaa-4f5b-a84c-83e383e47d47)
)
(bus_entry (at 201.93 120.65) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 30894d19-8914-4db7-960a-fe7e91cff735)
)
(bus_entry (at 201.93 138.43) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 35155263-a5df-4ec5-ace6-b87ab114d6d2)
)
(bus_entry (at 361.95 156.21) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 3944e089-5451-49ec-ab3c-2972c3deaf3a)
)
(bus_entry (at 361.95 135.89) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 3e7c9cb2-79be-4877-8a35-f71956fb9317)
)
(bus_entry (at 224.79 130.81) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 42ff68ad-61a1-4141-b089-a50a3dfbbcd1)
)
(bus_entry (at 68.58 158.75) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 4f30d51b-9200-461c-9f21-7a5fd0e3edb6)
)
(bus_entry (at 68.58 128.27) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 53569713-2267-496f-beeb-da896e67771f)
)
(bus_entry (at 224.79 125.73) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 5ad0be8c-5789-4e81-a246-56c0c6275951)
)
(bus_entry (at 68.58 140.97) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 5b0978a5-3c8e-421e-9a9c-deb3f0cfa1cc)
)
(bus_entry (at 224.79 133.35) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 5e86a4e4-05ea-45b2-9efe-114b5a871360)
)
(bus_entry (at 361.95 138.43) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 600d700b-e311-4536-866b-49d3144cb043)
)
(bus_entry (at 201.93 146.05) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 60fac6a3-256c-418a-ac12-8346411b408f)
)
(bus_entry (at 224.79 163.83) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 61fdd86f-a1e4-4202-96b5-b7da6983a8dc)
)
(bus_entry (at 201.93 143.51) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 63417743-ab36-4327-8ca4-becec207f766)
)
(bus_entry (at 224.79 151.13) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 659cd9af-3672-413f-beb6-733c9087dc59)
)
(bus_entry (at 361.95 123.19) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 65fdc282-d435-492d-8a67-6e7b23d42b8f)
)
(bus_entry (at 224.79 143.51) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 67bb5682-f47e-4ae6-8a09-b522a0b401c5)
)
(bus_entry (at 224.79 138.43) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 687c4d80-3e01-4de9-8549-0b2c8c5c5562)
)
(bus_entry (at 68.58 133.35) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 6bd7beb6-466e-4f5c-b678-3e3d132ea3e0)
)
(bus_entry (at 224.79 156.21) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 6cecd0e4-8f64-4b94-bc42-7849239cd74e)
)
(bus_entry (at 201.93 135.89) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 6fec6ad1-7c69-4f72-9031-d557e5c7353e)
)
(bus_entry (at 361.95 115.57) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 76e751e4-44b1-422a-afb4-f32641cc684d)
)
(bus_entry (at 201.93 148.59) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 831ec7bc-dc34-44c6-8ea8-24dee0ca71a6)
)
(bus_entry (at 34.29 102.87) (size 1.27 -1.27)
(stroke (width 0) (type default))
(uuid 843cdeeb-921f-420a-9e4d-7ca9176fec6e)
)
(bus_entry (at 361.95 153.67) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 85714e36-58b7-44c6-b895-80155cfc3e18)
)
(bus_entry (at 361.95 130.81) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 88e9dc8a-3069-48b1-a06b-64b2de7cc8cc)
)
(bus_entry (at 68.58 138.43) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 8e7094d2-ae5f-48a8-b02c-b085fe0c9640)
)
(bus_entry (at 224.79 128.27) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 9125d078-72b9-46b5-a5ae-cf869abd528c)
)
(bus_entry (at 361.95 143.51) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 970ecf85-263d-460a-80d6-b7f67d8680f7)
)
(bus_entry (at 224.79 161.29) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid 99e3f7ad-43dd-4497-bc83-fb98cc401939)
)
(bus_entry (at 361.95 118.11) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 99fa945a-7bbe-4dfd-8285-74bf8b545a01)
)
(bus_entry (at 64.77 102.87) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 9b2df989-08a1-4396-863e-7aabebc202f4)
)
(bus_entry (at 361.95 125.73) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid 9eadc2bf-1f68-4818-86d1-9ac2f23ed0ec)
)
(bus_entry (at 201.93 125.73) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid a0af2cce-e7ff-4f20-9574-b2f33532f202)
)
(bus_entry (at 68.58 130.81) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid a2dff44e-fce7-4b05-aaab-b7b324d6b409)
)
(bus_entry (at 34.29 105.41) (size 1.27 -1.27)
(stroke (width 0) (type default))
(uuid a48354b3-959f-4b02-92e7-e262768490eb)
)
(bus_entry (at 224.79 123.19) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid a64a1b8e-154b-40c3-8fd9-a05f3a4b1176)
)
(bus_entry (at 361.95 146.05) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid a853c13e-899f-4156-87c8-83ac6f0846a3)
)
(bus_entry (at 361.95 161.29) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid a93a16f6-77b2-4702-bd00-9b482ae8de91)
)
(bus_entry (at 224.79 140.97) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid abd5953c-c5da-4fb1-8a04-636b24e725a0)
)
(bus_entry (at 68.58 146.05) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid b830e483-ac26-4782-8402-ece5605533d5)
)
(bus_entry (at 361.95 140.97) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid b95375a7-3cb8-4819-810d-c9443dbc4a2f)
)
(bus_entry (at 224.79 148.59) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid b9562d42-ca2f-4def-85fb-5df4ffd05a06)
)
(bus_entry (at 68.58 156.21) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid b9728c88-d287-4f0b-b4b6-2cc4bde6694d)
)
(bus_entry (at 224.79 135.89) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid bd1be23f-d779-40fa-b485-47260ca954f3)
)
(bus_entry (at 64.77 100.33) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid c03d2950-f0e9-4302-9c62-e83509e963e6)
)
(bus_entry (at 361.95 128.27) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid c9618483-c219-4d4f-840e-5d184aff21dc)
)
(bus_entry (at 224.79 120.65) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid caa4b5eb-e802-4342-897d-e2e6f48a7016)
)
(bus_entry (at 68.58 143.51) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid cecfdfa4-7b49-4097-a5fe-728948453281)
)
(bus_entry (at 201.93 118.11) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid d7046e0c-386e-4ade-9145-7c8b76936331)
)
(bus_entry (at 68.58 161.29) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid dcf40929-3d23-4d8c-99c7-d66590d4ba8d)
)
(bus_entry (at 201.93 128.27) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid e563cb19-83b8-4f8d-80c4-b917a23ccacf)
)
(bus_entry (at 224.79 153.67) (size 1.27 1.27)
(stroke (width 0) (type default))
(uuid e88e215f-ce1a-4f61-8e96-8a8f47f9941f)
)
(bus_entry (at 201.93 133.35) (size -1.27 1.27)
(stroke (width 0) (type default))
(uuid fd81608b-72a1-4e88-8111-46d8c5d99951)
)
(wire (pts (xy 143.51 139.7) (xy 168.91 139.7))
(stroke (width 0) (type default))
(uuid 00679e1c-266e-4b33-9a68-7a07ecd46b42)
)
(wire (pts (xy 280.67 119.38) (xy 283.21 119.38))
(stroke (width 0) (type default))
(uuid 00b53eeb-3af6-4ade-a0cd-3361cf1e011b)
)
(bus (pts (xy 68.58 161.29) (xy 68.58 163.83))
(stroke (width 0) (type default))
(uuid 010eab8b-1c85-43e1-8399-e68e3f333fa7)
)
(bus (pts (xy 34.29 105.41) (xy 34.29 102.87))
(stroke (width 0) (type default))
(uuid 01322eed-9a1c-40d6-ad6c-b9e2dc06a391)
)
(wire (pts (xy 259.08 132.08) (xy 283.21 132.08))
(stroke (width 0) (type default))
(uuid 01a32718-87c0-4445-a026-b2d152f5be14)
)
(bus (pts (xy 68.58 96.52) (xy 201.93 96.52))
(stroke (width 0) (type default))
(uuid 026d8cd2-8eb6-4184-a205-798efb824d3f)
)
(wire (pts (xy 143.51 152.4) (xy 168.91 152.4))
(stroke (width 0) (type default))
(uuid 0330d851-4e01-4545-b203-3f1440830616)
)
(wire (pts (xy 200.66 142.24) (xy 179.07 142.24))
(stroke (width 0) (type default))
(uuid 0339ea6f-1b0c-49ff-b10a-19e41dab8594)
)
(bus (pts (xy 361.95 138.43) (xy 361.95 135.89))
(stroke (width 0) (type default))
(uuid 039dcf00-cdff-4286-a7e1-cc924e1c9721)
)
(wire (pts (xy 69.85 129.54) (xy 93.98 129.54))
(stroke (width 0) (type default))
(uuid 03a277bc-6607-4dd6-879c-95ef36587233)
)
(wire (pts (xy 226.06 121.92) (xy 248.92 121.92))
(stroke (width 0) (type default))
(uuid 03be2a2b-e545-4374-8261-391bfe632408)
)
(wire (pts (xy 69.85 149.86) (xy 93.98 149.86))
(stroke (width 0) (type default))
(uuid 0434d879-14fd-4ce5-ad9e-61558979b84f)
)
(wire (pts (xy 259.08 139.7) (xy 283.21 139.7))
(stroke (width 0) (type default))
(uuid 06aa4357-8e7d-44b7-9550-b8f678f2fc3f)
)
(wire (pts (xy 69.85 165.1) (xy 93.98 165.1))
(stroke (width 0) (type default))
(uuid 06c3c8c8-c69e-4224-9e6d-a8055ea47c52)
)
(bus (pts (xy 361.95 97.79) (xy 361.95 115.57))
(stroke (width 0) (type default))
(uuid 075740b9-e831-4f7f-8837-214968a832bf)
)
(wire (pts (xy 104.14 142.24) (xy 132.08 142.24))
(stroke (width 0) (type default))
(uuid 0792227d-61ab-4458-ba20-4f91074f940b)
)
(wire (pts (xy 332.74 121.92) (xy 360.68 121.92))
(stroke (width 0) (type default))
(uuid 0960cf23-2ddd-439a-9e9d-9a83240feaa0)
)
(wire (pts (xy 332.74 127) (xy 360.68 127))
(stroke (width 0) (type default))
(uuid 0a9cfd7a-74ee-4b0f-be45-691302da3367)
)
(bus (pts (xy 361.95 120.65) (xy 361.95 118.11))
(stroke (width 0) (type default))
(uuid 0adb8164-9930-489b-9841-9c7add24f51e)
)
(wire (pts (xy 226.06 127) (xy 248.92 127))
(stroke (width 0) (type default))
(uuid 0af6495c-fa20-4e54-9b12-089967be681c)
)
(bus (pts (xy 361.95 118.11) (xy 361.95 115.57))
(stroke (width 0) (type default))
(uuid 0b4428b3-30b7-4f20-8be8-0ae181fc5ebb)
)
(bus (pts (xy 68.58 96.52) (xy 68.58 128.27))
(stroke (width 0) (type default))
(uuid 0bbff141-eef7-4a50-89d3-29ca794dab4d)
)
(wire (pts (xy 35.56 104.14) (xy 43.18 104.14))
(stroke (width 0) (type default))
(uuid 0e5ded1b-0620-4637-86c3-267e05fc671b)
)
(wire (pts (xy 143.51 124.46) (xy 168.91 124.46))
(stroke (width 0) (type default))
(uuid 0ea18d97-2338-44ac-a32e-bebbdc8e5a7b)
)
(bus (pts (xy 361.95 161.29) (xy 361.95 158.75))
(stroke (width 0) (type default))
(uuid 0f694712-ff9c-4b5a-95bd-bb06111db651)
)
(wire (pts (xy 104.14 149.86) (xy 132.08 149.86))
(stroke (width 0) (type default))
(uuid 0f72d182-a7d2-48d7-bc8b-a6978d527f7b)
)
(wire (pts (xy 143.51 149.86) (xy 168.91 149.86))
(stroke (width 0) (type default))
(uuid 0fa5542e-a9a6-4cb9-af2f-9cdf7bc40883)
)
(wire (pts (xy 125.73 116.84) (xy 125.73 118.11))
(stroke (width 0) (type default))
(uuid 108a6e05-0b91-4f0d-b513-8031c3e318df)
)
(bus (pts (xy 68.58 146.05) (xy 68.58 148.59))
(stroke (width 0) (type default))
(uuid 1100cf5f-ed2e-41e2-8167-24bdfe9b5d9c)
)
(bus (pts (xy 68.58 128.27) (xy 68.58 130.81))
(stroke (width 0) (type default))
(uuid 11cde4bc-5ca9-4ca1-99f7-248c7fbcbec7)
)
(bus (pts (xy 64.77 100.33) (xy 64.77 102.87))
(stroke (width 0) (type default))
(uuid 12ad5fcf-399f-417b-8b47-eb0ac94215f7)
)
(bus (pts (xy 224.79 138.43) (xy 224.79 140.97))
(stroke (width 0) (type default))
(uuid 13173eb7-a536-45ba-8c6a-7a32fa06a7e5)
)
(wire (pts (xy 143.51 121.92) (xy 168.91 121.92))
(stroke (width 0) (type default))
(uuid 152a033f-e71b-4835-94c9-135ff39ff4ba)
)
(wire (pts (xy 129.54 119.38) (xy 132.08 119.38))
(stroke (width 0) (type default))
(uuid 16703f57-6639-4a3e-a8d6-86eacd0777cf)
)
(wire (pts (xy 69.85 160.02) (xy 93.98 160.02))
(stroke (width 0) (type default))
(uuid 1724488f-96af-4d75-bd36-903e3bc3d02e)
)
(wire (pts (xy 259.08 160.02) (xy 283.21 160.02))
(stroke (width 0) (type default))
(uuid 18c79ef6-d9a7-4721-8e94-8643cfc639a2)
)