-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathexpansion-connectors.kicad_sch
3581 lines (3559 loc) · 229 KB
/
expansion-connectors.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 4f2eda3f-28c0-4eef-9b5d-837aba767cfb)
(paper "A3")
(title_block
(title "Scalenode CM4 Baseboard")
(date "2024-03-26")
(rev "1.1.3")
(company "Antmicro")
(comment 1 "www.antmicro.com")
)
(lib_symbols
(symbol "scalenode-cm4-baseboard: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))))
)
)
)
(symbol "scalenode-cm4-baseboard:Hermaphroditic_Samtec_LSHM_2x30_LSHM-130-01-L-RH-A-S-K-TR" (in_bom yes) (on_board yes)
(property "Reference" "J" (at 35.56 -2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "Hermaphroditic_Samtec_LSHM_2x30_LSHM-130-01-L-RH-A-S-K-TR" (at 35.56 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Footprint" "scalenode-cm4-baseboard-footprints:Conn_Hermaphroditic_Samtec_LSHM_2x30_LSHM-130-01-XXX-RH-A-S-K-XX" (at 35.56 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://suddendocs.samtec.com/catalog_english/lshm_dh.pdf" (at 35.56 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Samtec" (at 35.56 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "LSHM-130-01-L-RH-A-S-K-TR" (at 35.56 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 35.56 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 35.56 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(symbol "Hermaphroditic_Samtec_LSHM_2x30_LSHM-130-01-L-RH-A-S-K-TR_1_1"
(rectangle (start 2.54 -81.28) (end 17.78 2.54)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at 0 0 0) (length 2.54)
(name "01" (effects (font (size 1.27 1.27))))
(number "01" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 0 180) (length 2.54)
(name "02" (effects (font (size 1.27 1.27))))
(number "02" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 0) (length 2.54)
(name "03" (effects (font (size 1.27 1.27))))
(number "03" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -2.54 180) (length 2.54)
(name "04" (effects (font (size 1.27 1.27))))
(number "04" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 0) (length 2.54)
(name "05" (effects (font (size 1.27 1.27))))
(number "05" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -5.08 180) (length 2.54)
(name "06" (effects (font (size 1.27 1.27))))
(number "06" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -7.62 0) (length 2.54)
(name "07" (effects (font (size 1.27 1.27))))
(number "07" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -7.62 180) (length 2.54)
(name "08" (effects (font (size 1.27 1.27))))
(number "08" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -10.16 0) (length 2.54)
(name "09" (effects (font (size 1.27 1.27))))
(number "09" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -10.16 180) (length 2.54)
(name "10" (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 "11" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -12.7 180) (length 2.54)
(name "12" (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 "13" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -15.24 180) (length 2.54)
(name "14" (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 "15" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -17.78 180) (length 2.54)
(name "16" (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 "17" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -20.32 180) (length 2.54)
(name "18" (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 "19" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -22.86 180) (length 2.54)
(name "20" (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 "21" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -25.4 180) (length 2.54)
(name "22" (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 "23" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -27.94 180) (length 2.54)
(name "24" (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 "25" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -30.48 180) (length 2.54)
(name "26" (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 "27" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -33.02 180) (length 2.54)
(name "28" (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 "29" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -35.56 180) (length 2.54)
(name "30" (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 "31" (effects (font (size 1.27 1.27))))
(number "31" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -38.1 180) (length 2.54)
(name "32" (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 "33" (effects (font (size 1.27 1.27))))
(number "33" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -40.64 180) (length 2.54)
(name "34" (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 "35" (effects (font (size 1.27 1.27))))
(number "35" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -43.18 180) (length 2.54)
(name "36" (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 "37" (effects (font (size 1.27 1.27))))
(number "37" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -45.72 180) (length 2.54)
(name "38" (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 "39" (effects (font (size 1.27 1.27))))
(number "39" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -48.26 180) (length 2.54)
(name "40" (effects (font (size 1.27 1.27))))
(number "40" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -50.8 0) (length 2.54)
(name "41" (effects (font (size 1.27 1.27))))
(number "41" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -50.8 180) (length 2.54)
(name "42" (effects (font (size 1.27 1.27))))
(number "42" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -53.34 0) (length 2.54)
(name "43" (effects (font (size 1.27 1.27))))
(number "43" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -53.34 180) (length 2.54)
(name "44" (effects (font (size 1.27 1.27))))
(number "44" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -55.88 0) (length 2.54)
(name "45" (effects (font (size 1.27 1.27))))
(number "45" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -55.88 180) (length 2.54)
(name "46" (effects (font (size 1.27 1.27))))
(number "46" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -58.42 0) (length 2.54)
(name "47" (effects (font (size 1.27 1.27))))
(number "47" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -58.42 180) (length 2.54)
(name "48" (effects (font (size 1.27 1.27))))
(number "48" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -60.96 0) (length 2.54)
(name "49" (effects (font (size 1.27 1.27))))
(number "49" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -60.96 180) (length 2.54)
(name "50" (effects (font (size 1.27 1.27))))
(number "50" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -63.5 0) (length 2.54)
(name "51" (effects (font (size 1.27 1.27))))
(number "51" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -63.5 180) (length 2.54)
(name "52" (effects (font (size 1.27 1.27))))
(number "52" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -66.04 0) (length 2.54)
(name "53" (effects (font (size 1.27 1.27))))
(number "53" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -66.04 180) (length 2.54)
(name "54" (effects (font (size 1.27 1.27))))
(number "54" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -68.58 0) (length 2.54)
(name "55" (effects (font (size 1.27 1.27))))
(number "55" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -68.58 180) (length 2.54)
(name "56" (effects (font (size 1.27 1.27))))
(number "56" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -71.12 0) (length 2.54)
(name "57" (effects (font (size 1.27 1.27))))
(number "57" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -71.12 180) (length 2.54)
(name "58" (effects (font (size 1.27 1.27))))
(number "58" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -73.66 0) (length 2.54)
(name "59" (effects (font (size 1.27 1.27))))
(number "59" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -73.66 180) (length 2.54)
(name "60" (effects (font (size 1.27 1.27))))
(number "60" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -78.74 180) (length 2.54)
(name "SHIELD" (effects (font (size 1.27 1.27))))
(number "S1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 20.32 -78.74 180) (length 2.54) hide
(name "SHIELD" (effects (font (size 1.27 1.27))))
(number "S2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "scalenode-cm4-baseboard:MP_Pad4.5mm_Drill2.2mm" (pin_names hide) (in_bom no) (on_board yes)
(property "Reference" "MP" (at 17.78 -2.54 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "MP_Pad4.5mm_Drill2.2mm" (at 17.78 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Footprint" "scalenode-cm4-baseboard-footprints:MP_Pad4.5mm_Drill2.2mm" (at 17.78 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "" (at 16.84 -15.57 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 17.78 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 17.78 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "ki_keywords" "MECHANICAL" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mechanical part" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MP_Pad4.5mm_Drill2.2mm_1_1"
(circle (center 5.08 0) (radius 1.27)
(stroke (width 0.254) (type default))
(fill (type background))
)
(circle (center 5.08 0) (radius 2.54)
(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))))
)
)
)
(symbol "scalenode-cm4-baseboard:MP_Pad6.2mm_Drill2.75mm" (pin_names hide) (in_bom no) (on_board yes)
(property "Reference" "MP" (at 15.24 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "MP_Pad6.2mm_Drill2.75mm" (at 15.24 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Footprint" "scalenode-cm4-baseboard-footprints:MP_Pad6.2mm_Drill2.75mm" (at 15.24 -10.16 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "" (at 16.84 -15.57 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 15.24 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 15.24 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "ki_keywords" "MECHANICAL" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mechanical part" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MP_Pad6.2mm_Drill2.75mm_1_1"
(circle (center 5.08 0) (radius 1.27)
(stroke (width 0.254) (type default))
(fill (type background))
)
(circle (center 5.08 0) (radius 2.54)
(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))))
)
)
)
(symbol "scalenode-cm4-baseboard:R_0R_1206" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 20.32 -5.08 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Value" "R_0R_1206" (at 20.32 -12.7 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Footprint" "scalenode-cm4-baseboard-footprints:R_1206_3216Metric" (at 20.32 -15.24 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Datasheet" "https://www.farnell.com/datasheets/2860635.pdf" (at 20.32 -17.78 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "MPN" "MCMR12X000_PTL" (at 20.32 -20.32 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Manufacturer" "Multicomp Pro" (at 20.32 -22.86 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "License" "Apache-2.0" (at 20.32 -25.4 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Author" "Antmicro" (at 20.32 -27.94 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom) hide)
)
(property "Val" "0R" (at 20.32 -7.62 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "Tolerance" "~" (at 20.32 -10.16 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Current" "2A" (at 20.32 -30.48 0)
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify left bottom))
)
(property "ki_description" "Zero Ohm Resistor, Jumper, 1206 [3216 Metric], Thick Film, 250 mW, 2 A, Surface Mount Device" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0R_1206_0_1"
(rectangle (start 0.635 0.889) (end 4.445 -0.889)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_0R_1206_1_1"
(pin passive line (at 0 0 0) (length 0.635)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 0.635)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 198.12 97.79) (diameter 0) (color 0 0 0 0)
(uuid 07c80a8c-3ec8-44f8-8807-293559374ddb)
)
(junction (at 170.18 95.25) (diameter 0) (color 0 0 0 0)
(uuid 08a2bf99-d395-4542-bf02-5486776d0a24)
)
(junction (at 198.12 118.11) (diameter 0) (color 0 0 0 0)
(uuid 20008a50-06c2-45a5-b916-e29c0b1000a2)
)
(junction (at 170.18 97.79) (diameter 0) (color 0 0 0 0)
(uuid 23492b36-b626-4e86-a77b-acd1d2813e05)
)
(junction (at 198.12 113.03) (diameter 0) (color 0 0 0 0)
(uuid 277994ac-381e-4a9a-bc0e-d5fa9e02e2b1)
)
(junction (at 198.12 115.57) (diameter 0) (color 0 0 0 0)
(uuid 38284c5a-496f-418f-a6bf-030dae8c28f9)
)
(junction (at 198.12 92.71) (diameter 0) (color 0 0 0 0)
(uuid 4c49e8d4-2243-483e-a53a-bd7a4db311f2)
)
(junction (at 170.18 118.11) (diameter 0) (color 0 0 0 0)
(uuid 512421bc-f37c-4c72-914f-c8379eb3e832)
)
(junction (at 198.12 135.89) (diameter 0) (color 0 0 0 0)
(uuid 57068ad0-d9ea-4fef-bd6e-275536190d53)
)
(junction (at 170.18 113.03) (diameter 0) (color 0 0 0 0)
(uuid 77fe530c-d264-4d56-a80f-00e0a681a427)
)
(junction (at 170.18 156.21) (diameter 0) (color 0 0 0 0)
(uuid 7fe33d30-6018-4b32-b875-3ec668439265)
)
(junction (at 170.18 100.33) (diameter 0) (color 0 0 0 0)
(uuid 816acc1c-30b6-428d-a381-6a069594b18c)
)
(junction (at 198.12 128.27) (diameter 0) (color 0 0 0 0)
(uuid 82dafd9a-be92-4a9e-9f6a-7db27666254c)
)
(junction (at 198.12 90.17) (diameter 0) (color 0 0 0 0)
(uuid 897be4f0-0dfd-4632-b05c-73ba0a2fbe5e)
)
(junction (at 198.12 168.91) (diameter 0) (color 0 0 0 0)
(uuid 89ff1351-d274-4519-90e9-873b0de67a98)
)
(junction (at 170.18 163.83) (diameter 0) (color 0 0 0 0)
(uuid 9b2f083d-06e9-4690-bd41-8e11cfe46ff2)
)
(junction (at 170.18 133.35) (diameter 0) (color 0 0 0 0)
(uuid 9c467467-413a-4adc-a333-8923f4d5445f)
)
(junction (at 198.12 120.65) (diameter 0) (color 0 0 0 0)
(uuid 9d11ea31-7804-4b8d-a081-b28523758e5f)
)
(junction (at 198.12 143.51) (diameter 0) (color 0 0 0 0)
(uuid 9e90e75b-3ab9-44a9-adeb-da0737fe4696)
)
(junction (at 170.18 92.71) (diameter 0) (color 0 0 0 0)
(uuid a2d8f8b5-d230-49bb-8c0b-dc65f0f379f1)
)
(junction (at 198.12 95.25) (diameter 0) (color 0 0 0 0)
(uuid a8f40797-f65d-4fd6-9cf7-27aa838adf3c)
)
(junction (at 198.12 158.75) (diameter 0) (color 0 0 0 0)
(uuid a94a1ed7-bb16-4817-b9da-319dde1ffb99)
)
(junction (at 170.18 120.65) (diameter 0) (color 0 0 0 0)
(uuid be9fb1ec-343c-4334-ad6a-01b92fe8a58a)
)
(junction (at 170.18 148.59) (diameter 0) (color 0 0 0 0)
(uuid cdd68214-11ef-49e3-af99-9fb25aa86453)
)
(junction (at 198.12 100.33) (diameter 0) (color 0 0 0 0)
(uuid d127bbff-3a9c-4fcb-a0ab-c9f58292b724)
)
(junction (at 198.12 151.13) (diameter 0) (color 0 0 0 0)
(uuid d2183b64-9afd-4198-a40c-7f59e79310df)
)
(junction (at 170.18 90.17) (diameter 0) (color 0 0 0 0)
(uuid d68c9579-deb2-4f34-a3c2-8667b61bd97a)
)
(junction (at 170.18 140.97) (diameter 0) (color 0 0 0 0)
(uuid d7368003-1ec8-48ba-ac30-a59cb4c069dc)
)
(junction (at 170.18 115.57) (diameter 0) (color 0 0 0 0)
(uuid f596cb44-9612-439b-9bc4-566318d31563)
)
(no_connect (at 175.26 196.85) (uuid 17635c0e-9a85-483c-a640-a7ce8a864a74))
(no_connect (at 135.255 196.215) (uuid 72ee7014-4dc8-484f-b564-a82028e5d72b))
(no_connect (at 213.36 196.85) (uuid 842a6d07-76f0-46b5-86a5-6a74eab28820))
(no_connect (at 193.04 105.41) (uuid 8f34881c-4173-4992-a29a-1d882bd61659))
(no_connect (at 172.72 105.41) (uuid 9f6f00c4-e5a5-4e3c-92d5-1df2df1a37ab))
(no_connect (at 172.72 107.95) (uuid a9b2c177-6e20-490c-a1ae-24898834f8ca))
(no_connect (at 193.04 107.95) (uuid fb6e103e-5f6b-4e77-9690-339d86821ff2))
(wire (pts (xy 257.81 99.06) (xy 264.16 99.06))
(stroke (width 0) (type default))
(uuid 02787a7e-a1ec-4697-ae06-695c6c1bc762)
)
(wire (pts (xy 269.24 104.14) (xy 274.32 104.14))
(stroke (width 0) (type default))
(uuid 03e7aa41-f8d7-465b-abb4-6e36534ffd4f)
)
(wire (pts (xy 198.12 95.25) (xy 198.12 92.71))
(stroke (width 0) (type default))
(uuid 056f0b80-8ba9-4e8a-8a87-019d70631bd8)
)
(wire (pts (xy 172.72 97.79) (xy 170.18 97.79))
(stroke (width 0) (type default))
(uuid 06dacc28-56f5-4f10-ac2b-89eef77ccb85)
)
(wire (pts (xy 198.12 158.75) (xy 198.12 168.91))
(stroke (width 0) (type default))
(uuid 0de302b7-970a-4774-91b7-a8a187ea2037)
)
(wire (pts (xy 198.12 168.91) (xy 193.04 168.91))
(stroke (width 0) (type default))
(uuid 148f7f2e-6808-4716-ad46-50f4975a34d3)
)
(wire (pts (xy 172.72 123.19) (xy 167.64 123.19))
(stroke (width 0) (type default))
(uuid 15f48745-ef79-4c30-94f7-7e638a50ddab)
)
(wire (pts (xy 170.18 92.71) (xy 170.18 95.25))
(stroke (width 0) (type default))
(uuid 188d6a41-dddf-4a43-9e51-3d6326a07335)
)
(wire (pts (xy 193.04 115.57) (xy 198.12 115.57))
(stroke (width 0) (type default))
(uuid 1a10b44b-7c7d-428d-b109-6b9b24cbb42a)
)
(wire (pts (xy 170.18 115.57) (xy 170.18 113.03))
(stroke (width 0) (type default))
(uuid 1ea3c2cf-5675-49c9-89c6-0756f6131f5c)
)
(wire (pts (xy 172.72 151.13) (xy 167.64 151.13))
(stroke (width 0) (type default))
(uuid 1ebb00f4-c16b-425a-a5ea-f3226ab63d78)
)
(wire (pts (xy 170.18 140.97) (xy 170.18 148.59))
(stroke (width 0) (type default))
(uuid 1fabc396-eb10-4abd-b7ba-cb107e4b46a8)
)
(wire (pts (xy 198.12 128.27) (xy 193.04 128.27))
(stroke (width 0) (type default))
(uuid 20fd1c17-9a9d-4c97-8299-52f3a3d6ce1c)
)
(wire (pts (xy 172.72 95.25) (xy 170.18 95.25))
(stroke (width 0) (type default))
(uuid 230d51ac-0a02-4ea9-9f17-e30a652bc897)
)
(wire (pts (xy 167.64 90.17) (xy 170.18 90.17))
(stroke (width 0) (type default))
(uuid 264edf4e-1e4b-40c6-ae70-33a187d2d910)
)
(wire (pts (xy 170.18 118.11) (xy 170.18 115.57))
(stroke (width 0) (type default))
(uuid 27c4ed2d-a310-43b3-b4f3-e5318901001a)
)
(wire (pts (xy 198.12 110.49) (xy 198.12 113.03))
(stroke (width 0) (type default))
(uuid 294e3e98-4a0e-4dfe-afe4-c3dd2626c2d4)
)
(wire (pts (xy 193.04 90.17) (xy 198.12 90.17))
(stroke (width 0) (type default))
(uuid 2a354872-4c9c-4141-8ed4-8a543d04b863)
)
(wire (pts (xy 193.04 130.81) (xy 200.66 130.81))
(stroke (width 0) (type default))
(uuid 2a4886ae-cb33-44e7-b7f2-80c06d67646b)
)
(wire (pts (xy 170.18 97.79) (xy 170.18 100.33))
(stroke (width 0) (type default))
(uuid 2abcff9a-f87c-486f-98f5-d381aaf492c4)
)
(wire (pts (xy 193.04 140.97) (xy 200.66 140.97))
(stroke (width 0) (type default))
(uuid 2f93c75e-6c92-4135-9d3b-88bdf76e4e1d)
)
(wire (pts (xy 198.12 151.13) (xy 198.12 143.51))
(stroke (width 0) (type default))
(uuid 308fdc52-c962-4e4a-b17d-082d2f7d6053)
)
(wire (pts (xy 200.66 148.59) (xy 193.04 148.59))
(stroke (width 0) (type default))
(uuid 3190a775-a82e-4e2f-943d-fa16d9e76186)
)
(wire (pts (xy 198.12 118.11) (xy 198.12 115.57))
(stroke (width 0) (type default))
(uuid 33188ccc-3e2e-4cd2-884b-6715ac7dcd5b)
)
(wire (pts (xy 170.18 92.71) (xy 170.18 90.17))
(stroke (width 0) (type default))
(uuid 38c1e58f-c9ba-4f5b-a0e3-894f628d6b03)
)
(wire (pts (xy 172.72 125.73) (xy 167.64 125.73))
(stroke (width 0) (type default))
(uuid 3d15253c-f241-41e6-a27b-905696ad819c)
)
(wire (pts (xy 198.12 120.65) (xy 198.12 118.11))
(stroke (width 0) (type default))
(uuid 3d2312c0-c38e-4f9d-9e1e-c6b4121b4828)
)
(wire (pts (xy 193.04 113.03) (xy 198.12 113.03))
(stroke (width 0) (type default))
(uuid 3d6c9bff-10f1-4571-b929-64799d8f1ea0)
)
(wire (pts (xy 172.72 138.43) (xy 167.64 138.43))
(stroke (width 0) (type default))
(uuid 4a73eb30-9abf-49f0-8bc2-49f319d3e2ad)
)
(wire (pts (xy 193.04 146.05) (xy 200.66 146.05))
(stroke (width 0) (type default))
(uuid 4eeb9311-6ffd-4a61-8b64-953aa2d0ef84)
)
(wire (pts (xy 193.04 100.33) (xy 198.12 100.33))
(stroke (width 0) (type default))
(uuid 51fad610-2b01-4750-b3d2-ae14503883af)
)
(wire (pts (xy 198.12 135.89) (xy 198.12 128.27))
(stroke (width 0) (type default))
(uuid 54ba7271-124c-43f5-98d6-b2399a2e2c28)
)
(wire (pts (xy 193.04 97.79) (xy 198.12 97.79))
(stroke (width 0) (type default))
(uuid 5534fcfc-8996-421b-9c4c-a0ff3629dbc6)
)
(wire (pts (xy 198.12 168.91) (xy 198.12 173.99))
(stroke (width 0) (type default))
(uuid 561e9731-e125-4b13-ac2a-da6d6457a63f)
)
(wire (pts (xy 172.72 148.59) (xy 170.18 148.59))
(stroke (width 0) (type default))
(uuid 575c9244-8bfe-405e-a014-e28cf80a209f)
)
(wire (pts (xy 198.12 143.51) (xy 198.12 135.89))
(stroke (width 0) (type default))
(uuid 5dc20d0f-a513-4a15-85bd-977e7fa966f7)
)
(wire (pts (xy 172.72 153.67) (xy 167.64 153.67))
(stroke (width 0) (type default))
(uuid 5fa772ff-e5aa-42d9-868b-f9f2c10007d9)
)
(wire (pts (xy 172.72 118.11) (xy 170.18 118.11))
(stroke (width 0) (type default))
(uuid 64827f43-f6ab-4564-9f51-dbb73295ec36)
)
(wire (pts (xy 193.04 120.65) (xy 198.12 120.65))
(stroke (width 0) (type default))
(uuid 6e98cb00-c83f-4352-81be-65dd3d99a404)
)
(wire (pts (xy 170.18 113.03) (xy 170.18 110.49))
(stroke (width 0) (type default))
(uuid 72cf8953-f78f-4003-aa1a-893ead278e4b)
)
(wire (pts (xy 193.04 102.87) (xy 198.12 102.87))
(stroke (width 0) (type default))
(uuid 7475661c-011a-4771-95e5-56953e527d59)
)
(wire (pts (xy 172.72 135.89) (xy 167.64 135.89))
(stroke (width 0) (type default))
(uuid 749b5821-5c7b-48d7-838c-38158bd5948a)
)
(wire (pts (xy 172.72 133.35) (xy 170.18 133.35))
(stroke (width 0) (type default))
(uuid 76b58987-73a5-4e7c-b0c8-9b0e5f0a375f)
)
(wire (pts (xy 200.66 125.73) (xy 193.04 125.73))
(stroke (width 0) (type default))
(uuid 78688131-072c-4427-a4f0-9638bd284a12)
)
(wire (pts (xy 257.81 104.14) (xy 264.16 104.14))
(stroke (width 0) (type default))
(uuid 7abc72f9-d9e9-45f1-b4f4-54bf67eb9618)
)
(wire (pts (xy 170.18 163.83) (xy 170.18 173.99))
(stroke (width 0) (type default))
(uuid 7c29302a-89fc-4266-85ee-ce9af5f5c6ac)
)
(wire (pts (xy 170.18 120.65) (xy 172.72 120.65))
(stroke (width 0) (type default))
(uuid 7f5bef9f-7d68-4d16-8631-fa14ad237908)
)
(wire (pts (xy 198.12 128.27) (xy 198.12 120.65))
(stroke (width 0) (type default))
(uuid 80002289-5dd6-4ada-9021-793bfb9183e0)
)
(wire (pts (xy 193.04 161.29) (xy 200.66 161.29))
(stroke (width 0) (type default))
(uuid 8052fc60-97ac-4fce-a327-a3636c9e86a6)
)
(wire (pts (xy 198.12 113.03) (xy 198.12 115.57))
(stroke (width 0) (type default))
(uuid 81a18492-34b1-4c0d-b138-265a940184ba)
)
(wire (pts (xy 198.12 90.17) (xy 198.12 92.71))
(stroke (width 0) (type default))
(uuid 82534cea-59c3-455c-9380-a63c36cdf351)
)
(wire (pts (xy 198.12 90.17) (xy 200.66 90.17))
(stroke (width 0) (type default))
(uuid 82afc7fd-a1e8-4449-88c0-5b68707d6ad4)
)
(wire (pts (xy 172.72 156.21) (xy 170.18 156.21))
(stroke (width 0) (type default))
(uuid 83790c1e-c498-49a9-a0b8-d75cda072b83)
)
(wire (pts (xy 198.12 102.87) (xy 198.12 100.33))
(stroke (width 0) (type default))
(uuid 83b8a8ee-289d-44e2-a417-ab7294f24f6c)
)
(wire (pts (xy 170.18 102.87) (xy 170.18 100.33))
(stroke (width 0) (type default))
(uuid 83fd0e51-984d-4d79-a8ef-473d0e22fc86)
)
(wire (pts (xy 172.72 102.87) (xy 170.18 102.87))
(stroke (width 0) (type default))
(uuid 8886e174-1e42-4395-8c8c-bce88fe9e29c)
)
(wire (pts (xy 172.72 143.51) (xy 167.64 143.51))
(stroke (width 0) (type default))
(uuid 89ccdc51-a3f0-4efa-b5ba-a52903f88138)
)
(wire (pts (xy 172.72 92.71) (xy 170.18 92.71))
(stroke (width 0) (type default))
(uuid 89d74d9c-54d6-4a08-8050-b7e4d9e42a6f)
)
(wire (pts (xy 269.24 99.06) (xy 274.32 99.06))
(stroke (width 0) (type default))
(uuid 9a6719d9-6eb2-4aff-868c-7602024a4a88)
)
(wire (pts (xy 172.72 163.83) (xy 170.18 163.83))
(stroke (width 0) (type default))
(uuid 9be03c07-d971-4d0e-9ebc-9099c5fc54bd)
)
(wire (pts (xy 172.72 130.81) (xy 167.64 130.81))
(stroke (width 0) (type default))
(uuid 9dc0ca6a-e6d9-4606-b4dd-a7bdb71845ae)
)
(wire (pts (xy 170.18 156.21) (xy 170.18 163.83))
(stroke (width 0) (type default))
(uuid b53153ce-138a-4f8b-8915-8fde105a4205)
)
(wire (pts (xy 172.72 113.03) (xy 170.18 113.03))
(stroke (width 0) (type default))
(uuid b6143e53-7b0b-4cc7-9b88-7ee9eb7c9316)
)
(wire (pts (xy 198.12 151.13) (xy 198.12 158.75))
(stroke (width 0) (type default))
(uuid bbe2000d-d4f8-4db2-b5c1-04b35167ac59)
)
(wire (pts (xy 170.18 120.65) (xy 170.18 133.35))
(stroke (width 0) (type default))
(uuid bc24fe34-d03c-4002-8ebf-adbb851970b3)
)
(wire (pts (xy 193.04 138.43) (xy 200.66 138.43))
(stroke (width 0) (type default))
(uuid bf8ff828-e86d-45f2-aee0-4c8b6e25caf3)
)
(wire (pts (xy 193.04 143.51) (xy 198.12 143.51))
(stroke (width 0) (type default))
(uuid bfa418c9-bca2-4bdf-88e8-209350ea49df)
)
(wire (pts (xy 172.72 158.75) (xy 167.64 158.75))
(stroke (width 0) (type default))
(uuid c50dbdc4-7ef6-422e-99f2-02181f7f3e6a)
)
(wire (pts (xy 172.72 161.29) (xy 167.64 161.29))
(stroke (width 0) (type default))
(uuid c58dfca1-f3d3-4dd3-84f3-51a20c11a26d)
)
(wire (pts (xy 198.12 158.75) (xy 193.04 158.75))
(stroke (width 0) (type default))
(uuid c952d7a3-586d-44ef-8887-25e58cd78a21)
)
(wire (pts (xy 172.72 90.17) (xy 170.18 90.17))
(stroke (width 0) (type default))
(uuid c9c32008-6a32-4977-9211-d7bf70ac858b)
)
(wire (pts (xy 200.66 123.19) (xy 193.04 123.19))
(stroke (width 0) (type default))
(uuid cb023b6c-4c00-4b9c-b25e-f3359eaf9e4b)
)
(wire (pts (xy 170.18 115.57) (xy 172.72 115.57))
(stroke (width 0) (type default))
(uuid cb5cfd8e-0619-49f2-a760-ff0d634cbcc4)
)
(wire (pts (xy 198.12 97.79) (xy 198.12 95.25))
(stroke (width 0) (type default))
(uuid d025e5d9-6167-4191-9cd3-2789be668d1d)
)
(wire (pts (xy 193.04 118.11) (xy 198.12 118.11))
(stroke (width 0) (type default))
(uuid d5de7c39-4b70-48ca-ba77-0cafd17f1816)
)
(wire (pts (xy 170.18 100.33) (xy 172.72 100.33))
(stroke (width 0) (type default))
(uuid db499d63-2718-4417-a2c1-f259dd7890df)
)
(wire (pts (xy 193.04 135.89) (xy 198.12 135.89))
(stroke (width 0) (type default))
(uuid e151da05-9bba-4e6e-be83-92cac2514ee9)
)
(wire (pts (xy 170.18 133.35) (xy 170.18 140.97))
(stroke (width 0) (type default))
(uuid e397d613-93a2-45e5-94b7-04208192b2de)
)
(wire (pts (xy 193.04 156.21) (xy 200.66 156.21))
(stroke (width 0) (type default))
(uuid e3a9089e-b82d-4e4e-8ca6-51c55f8d65ef)
)
(wire (pts (xy 193.04 153.67) (xy 200.66 153.67))
(stroke (width 0) (type default))
(uuid e6352f1e-b523-4f2b-8785-b0219288eb12)
)
(wire (pts (xy 170.18 97.79) (xy 170.18 95.25))
(stroke (width 0) (type default))
(uuid e7bc7b93-3e01-493f-8c92-1d4942e329a1)
)
(wire (pts (xy 198.12 92.71) (xy 193.04 92.71))
(stroke (width 0) (type default))
(uuid e95e2cad-0cf8-4638-a1b1-661b82793400)
)
(wire (pts (xy 170.18 148.59) (xy 170.18 156.21))
(stroke (width 0) (type default))
(uuid eadf2ce9-93ca-431f-8ac8-a8e8a0f0c2b0)
)
(wire (pts (xy 193.04 95.25) (xy 198.12 95.25))
(stroke (width 0) (type default))
(uuid ec963551-4d35-445a-bd68-ab489c3d2c2b)
)
(wire (pts (xy 193.04 163.83) (xy 200.66 163.83))
(stroke (width 0) (type default))
(uuid eccd3fac-7011-4e34-a19a-29213463fecf)
)
(wire (pts (xy 170.18 110.49) (xy 172.72 110.49))
(stroke (width 0) (type default))
(uuid efb92627-5106-499c-ab8d-c68089f15430)
)
(wire (pts (xy 172.72 140.97) (xy 170.18 140.97))
(stroke (width 0) (type default))
(uuid f0f55d62-c368-4ab8-99cb-5cfdd323f59e)
)
(wire (pts (xy 170.18 120.65) (xy 170.18 118.11))
(stroke (width 0) (type default))
(uuid f1a0a6fd-b357-4314-9066-487d9424ad68)
)
(wire (pts (xy 172.72 128.27) (xy 167.64 128.27))
(stroke (width 0) (type default))
(uuid f36dd030-4f06-45b6-a2be-868af0abbe8b)
)
(wire (pts (xy 193.04 110.49) (xy 198.12 110.49))
(stroke (width 0) (type default))
(uuid f3ca4f49-65b0-4f1a-bc93-64f327ce9792)
)
(wire (pts (xy 172.72 146.05) (xy 167.64 146.05))
(stroke (width 0) (type default))
(uuid f64146ea-8d28-41ce-b788-2d4b87fd887f)
)
(wire (pts (xy 193.04 133.35) (xy 200.66 133.35))
(stroke (width 0) (type default))
(uuid fa234356-fe19-48f1-baf0-8f7febc6c3a8)
)
(wire (pts (xy 193.04 151.13) (xy 198.12 151.13))
(stroke (width 0) (type default))
(uuid fc11bf1f-d8ba-42df-9796-dc059fcc1a7c)
)
(wire (pts (xy 198.12 97.79) (xy 198.12 100.33))
(stroke (width 0) (type default))
(uuid ff895594-05d6-4551-a491-497df6da86b0)
)
(image (at 41.402 271.526) (scale 0.4)
(uuid 73264517-1061-46d2-a3b4-f6a2b9c4927b)
(data
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