-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsheet_matrix.kicad_sch
2343 lines (2253 loc) · 94.3 KB
/
sheet_matrix.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 b7b4651d-e47a-495e-b617-6fcc8aed919f)
(paper "A4")
(lib_symbols
(symbol "Diode:1N4148WT" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1N4148WT" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_SMD:D_SOD-523" (id 2) (at 0 -4.445 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.diodes.com/assets/Datasheets/ds30396.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "75V 0.15A Fast switching Diode, SOD-523" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "D*SOD?523*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "1N4148WT_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "1N4148WT_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (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 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_Push_45deg" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 3.048 1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push_45deg" (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" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, normally open, two pins, 45° tilted" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_45deg_0_1"
(circle (center -1.1684 1.1684) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.508 2.54)
(xy 2.54 -0.508)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.016 1.016)
(xy 2.032 2.032)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 2.54)
(xy -1.524 1.524)
(xy -1.524 1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.524 -1.524)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 1.143 -1.1938) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -2.54 2.54 0) (length 0)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -2.54 180) (length 0)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 181.61 22.86) (diameter 0) (color 0 0 0 0)
(uuid 06b7f058-b5af-4d92-8f88-00934ac39d56)
)
(junction (at 44.45 40.64) (diameter 0) (color 0 0 0 0)
(uuid 07276a16-ef34-415e-ab51-1c3419cff376)
)
(junction (at 148.59 72.39) (diameter 0) (color 0 0 0 0)
(uuid 09d1201c-a541-4a3f-a657-4e5b075dccae)
)
(junction (at 120.65 72.39) (diameter 0) (color 0 0 0 0)
(uuid 09ec3bf4-7b55-4dbe-9d88-e0769eda1119)
)
(junction (at 153.67 40.64) (diameter 0) (color 0 0 0 0)
(uuid 1356f394-42a6-4692-bf4d-060191fc61ef)
)
(junction (at 134.62 53.34) (diameter 0) (color 0 0 0 0)
(uuid 1709ab02-ff38-4bab-bfec-f515ebc7d69f)
)
(junction (at 153.67 58.42) (diameter 0) (color 0 0 0 0)
(uuid 197e9a67-3607-4306-9990-9dbbb223dbbb)
)
(junction (at 64.77 72.39) (diameter 0) (color 0 0 0 0)
(uuid 20fece3e-7242-4f6f-9cc9-6a47c7ac28d2)
)
(junction (at 156.21 40.64) (diameter 0) (color 0 0 0 0)
(uuid 24649339-598c-4440-a6bc-819b8630ad5f)
)
(junction (at 134.62 71.12) (diameter 0) (color 0 0 0 0)
(uuid 24faaad3-81e5-4e4d-a237-6f71ddffc36c)
)
(junction (at 128.27 40.64) (diameter 0) (color 0 0 0 0)
(uuid 2db1e662-58fe-429a-90cd-6e47d2fa9984)
)
(junction (at 50.8 35.56) (diameter 0) (color 0 0 0 0)
(uuid 2ec7c1b4-5d30-4c82-924c-689a8d541efa)
)
(junction (at 50.8 71.12) (diameter 0) (color 0 0 0 0)
(uuid 311f499e-73ed-42d4-bfb2-4e7c991b6fa7)
)
(junction (at 64.77 54.61) (diameter 0) (color 0 0 0 0)
(uuid 3d56fd84-ef5e-4401-bce0-76abc960f906)
)
(junction (at 100.33 58.42) (diameter 0) (color 0 0 0 0)
(uuid 421bd2ef-e4b9-4f79-88cc-e2b0edfcb8a1)
)
(junction (at 36.83 72.39) (diameter 0) (color 0 0 0 0)
(uuid 48686d4f-be70-4af4-ae0d-22ad42d55fa2)
)
(junction (at 125.73 40.64) (diameter 0) (color 0 0 0 0)
(uuid 4f6b7947-b7a1-4eb0-ba42-776ba6e67a42)
)
(junction (at 36.83 54.61) (diameter 0) (color 0 0 0 0)
(uuid 577395d8-96da-4663-a158-4e6719a9ac32)
)
(junction (at 106.68 71.12) (diameter 0) (color 0 0 0 0)
(uuid 5f9ef2f0-2cf7-4ef8-8391-0f750678169f)
)
(junction (at 153.67 22.86) (diameter 0) (color 0 0 0 0)
(uuid 6005203a-e9b9-4bd4-8dab-288194ac2610)
)
(junction (at 106.68 35.56) (diameter 0) (color 0 0 0 0)
(uuid 608b0e48-e634-44e9-865a-11fdc9258c77)
)
(junction (at 50.8 53.34) (diameter 0) (color 0 0 0 0)
(uuid 612e6aa9-c4dd-4646-96b4-453804136964)
)
(junction (at 97.79 58.42) (diameter 0) (color 0 0 0 0)
(uuid 64295d2c-00eb-4ae4-ac08-141100477ac2)
)
(junction (at 92.71 90.17) (diameter 0) (color 0 0 0 0)
(uuid 6498ba0f-8821-456d-a1fa-2598b07373c5)
)
(junction (at 120.65 36.83) (diameter 0) (color 0 0 0 0)
(uuid 675eb600-a230-41f1-ad99-9ef611b755fa)
)
(junction (at 41.91 58.42) (diameter 0) (color 0 0 0 0)
(uuid 68ad6746-183d-441e-b2d3-a90f1a0386a6)
)
(junction (at 148.59 90.17) (diameter 0) (color 0 0 0 0)
(uuid 6b185f02-baaa-4072-8b57-c67603dbef2d)
)
(junction (at 36.83 90.17) (diameter 0) (color 0 0 0 0)
(uuid 6c6fb278-3251-4d71-852b-ed4b4fd81d72)
)
(junction (at 69.85 58.42) (diameter 0) (color 0 0 0 0)
(uuid 73fd89e9-952f-4522-bec1-c928397ad179)
)
(junction (at 64.77 90.17) (diameter 0) (color 0 0 0 0)
(uuid 740004f7-8cd0-4a0c-aa5c-2d76c0e96f78)
)
(junction (at 128.27 58.42) (diameter 0) (color 0 0 0 0)
(uuid 805762d3-e189-4e45-913f-36add72c1ea4)
)
(junction (at 41.91 22.86) (diameter 0) (color 0 0 0 0)
(uuid 823cb8c8-0837-4147-bdb9-0d65248b489a)
)
(junction (at 41.91 40.64) (diameter 0) (color 0 0 0 0)
(uuid 829d57bf-3f8e-4682-b98d-edc874f52913)
)
(junction (at 156.21 58.42) (diameter 0) (color 0 0 0 0)
(uuid 8aa0b123-c18d-4140-a3a0-e7cb1943405b)
)
(junction (at 72.39 58.42) (diameter 0) (color 0 0 0 0)
(uuid 8d68643e-0461-48ff-88cd-60ae99b18f07)
)
(junction (at 148.59 36.83) (diameter 0) (color 0 0 0 0)
(uuid 99a2e6a1-83bf-4260-a5ff-7894aeb24c48)
)
(junction (at 184.15 40.64) (diameter 0) (color 0 0 0 0)
(uuid 9aa88b88-3ae5-40c6-9dfa-0ebba24f42d9)
)
(junction (at 97.79 22.86) (diameter 0) (color 0 0 0 0)
(uuid 9bd23c02-6d88-41bb-aeac-e247e8e76f2b)
)
(junction (at 92.71 36.83) (diameter 0) (color 0 0 0 0)
(uuid 9e354f81-f671-4b6d-aa93-26b2f75ee73e)
)
(junction (at 181.61 40.64) (diameter 0) (color 0 0 0 0)
(uuid a2d28c25-b6f5-490f-bdb2-944bcdb1bcec)
)
(junction (at 120.65 90.17) (diameter 0) (color 0 0 0 0)
(uuid a5b296e7-27c4-4d0b-99bf-b5578165fd2b)
)
(junction (at 181.61 58.42) (diameter 0) (color 0 0 0 0)
(uuid a63453a9-2aa4-42c5-98d3-91cfb3d6c615)
)
(junction (at 44.45 58.42) (diameter 0) (color 0 0 0 0)
(uuid ac2d4f1d-baf7-421c-81a9-463e4369f460)
)
(junction (at 97.79 40.64) (diameter 0) (color 0 0 0 0)
(uuid ae706af2-4d79-49b3-b80e-730b4bfa4232)
)
(junction (at 134.62 35.56) (diameter 0) (color 0 0 0 0)
(uuid afb21e3c-203f-4b6a-b50c-01a9af4152b5)
)
(junction (at 78.74 35.56) (diameter 0) (color 0 0 0 0)
(uuid c0356505-8e95-4e64-8635-463ae7c4674b)
)
(junction (at 69.85 22.86) (diameter 0) (color 0 0 0 0)
(uuid c6537bd0-857f-462f-b599-3d668bf83aec)
)
(junction (at 72.39 40.64) (diameter 0) (color 0 0 0 0)
(uuid ca218502-ba55-4d9e-b98e-091f36a64a85)
)
(junction (at 184.15 58.42) (diameter 0) (color 0 0 0 0)
(uuid cb90119a-05b0-472e-8f1a-4207369b934c)
)
(junction (at 92.71 54.61) (diameter 0) (color 0 0 0 0)
(uuid d09f6eec-2902-46af-81ea-52f685e13c75)
)
(junction (at 36.83 36.83) (diameter 0) (color 0 0 0 0)
(uuid d37c0885-f6f2-4b1e-9c32-a32760b95d30)
)
(junction (at 106.68 53.34) (diameter 0) (color 0 0 0 0)
(uuid d592026e-701a-44a9-b056-133bee44d0ef)
)
(junction (at 125.73 58.42) (diameter 0) (color 0 0 0 0)
(uuid dcafb13e-ebf0-4e45-a2f3-3215f5851b7b)
)
(junction (at 92.71 72.39) (diameter 0) (color 0 0 0 0)
(uuid dd5c1947-d261-4432-b761-802539495742)
)
(junction (at 78.74 53.34) (diameter 0) (color 0 0 0 0)
(uuid e1393222-dd0e-4f8a-8d09-210a8fc754c3)
)
(junction (at 100.33 40.64) (diameter 0) (color 0 0 0 0)
(uuid e7d820cd-2057-445f-aa32-d6b9ef90eaa4)
)
(junction (at 78.74 71.12) (diameter 0) (color 0 0 0 0)
(uuid efaac067-9f69-4473-94d4-1f898e0a7de2)
)
(junction (at 120.65 54.61) (diameter 0) (color 0 0 0 0)
(uuid f82d4ff9-308c-4e37-9795-d606dae0f41c)
)
(junction (at 148.59 54.61) (diameter 0) (color 0 0 0 0)
(uuid f83f29f6-e62c-4786-b73d-f125f89dbca3)
)
(junction (at 64.77 36.83) (diameter 0) (color 0 0 0 0)
(uuid fa2a6159-ceef-4318-92d1-c8d93cdd807c)
)
(junction (at 125.73 22.86) (diameter 0) (color 0 0 0 0)
(uuid ff16525c-9c71-4b67-ac44-d91ae82e9e34)
)
(junction (at 69.85 40.64) (diameter 0) (color 0 0 0 0)
(uuid ff6566c5-4ec4-497c-b141-a1c26c1e9cad)
)
(wire (pts (xy 44.45 77.47) (xy 44.45 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02e9cf85-274c-4cb8-917a-240312d2fda7)
)
(wire (pts (xy 72.39 40.64) (xy 69.85 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0346b935-b283-426b-983d-cdcc3eee08aa)
)
(wire (pts (xy 36.83 72.39) (xy 64.77 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 038837c9-0cae-4a06-8c56-2fd859dcdc3b)
)
(wire (pts (xy 44.45 22.86) (xy 41.91 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04156790-bd2b-4c15-8b08-9d2c9ca909b8)
)
(wire (pts (xy 181.61 77.47) (xy 184.15 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07a5b9f8-29ca-400a-965f-f2b1f2122ddd)
)
(wire (pts (xy 24.13 36.83) (xy 24.13 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09edb225-3aba-4a7e-af96-627cba751d20)
)
(wire (pts (xy 24.13 73.66) (xy 22.86 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a518507-87f1-4ee2-b4e5-ca9adc1792c0)
)
(wire (pts (xy 44.45 58.42) (xy 44.45 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a7bd0d2-ea59-4164-9631-8f97056e2434)
)
(wire (pts (xy 100.33 40.64) (xy 97.79 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ef295c8-f054-4410-af98-d0dd90b74627)
)
(wire (pts (xy 44.45 40.64) (xy 41.91 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f73dfcb-6335-4c0b-b425-03ffd1b4dab4)
)
(wire (pts (xy 92.71 90.17) (xy 120.65 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13413ae3-8a5a-466c-af48-0c98844e4c86)
)
(wire (pts (xy 55.88 58.42) (xy 69.85 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14078913-cb85-4134-9555-2d0e795f925a)
)
(wire (pts (xy 22.86 53.34) (xy 50.8 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1da40299-e399-4d96-929f-92a73caa2249)
)
(wire (pts (xy 176.53 27.94) (xy 176.53 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1df70e81-82fa-4b49-9f38-d16b0d041154)
)
(wire (pts (xy 134.62 71.12) (xy 162.56 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f65cdb0-b558-411f-af26-73b1048d11b7)
)
(wire (pts (xy 50.8 71.12) (xy 78.74 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f8a5322-a20e-4fb0-8a2a-ca2145170d9d)
)
(wire (pts (xy 69.85 77.47) (xy 72.39 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ff27d9d-5758-46f9-9474-7992c84c7fdc)
)
(wire (pts (xy 22.86 55.88) (xy 24.13 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 210eb6fa-7d7f-4f82-849f-f9e0c1e92b0d)
)
(wire (pts (xy 44.45 40.64) (xy 44.45 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 22bf97cc-d346-42f1-aef3-421d183f2d0a)
)
(wire (pts (xy 24.13 54.61) (xy 24.13 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2454ca1f-449e-48c0-a947-5fdf873172de)
)
(wire (pts (xy 128.27 40.64) (xy 125.73 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25fd1b2c-97e9-4e98-b325-ceecc848cc1a)
)
(wire (pts (xy 64.77 63.5) (xy 64.77 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 267c8f97-6383-457c-a189-4e31384d4c8e)
)
(wire (pts (xy 64.77 90.17) (xy 92.71 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26aee65c-1585-41e3-b996-61d4f3546721)
)
(wire (pts (xy 167.64 22.86) (xy 181.61 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 280e357f-f885-45ce-a70d-45635144e2bd)
)
(wire (pts (xy 41.91 77.47) (xy 44.45 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29783676-56f4-4b9d-ad6b-a5ca4f525e14)
)
(wire (pts (xy 134.62 53.34) (xy 162.56 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ccdcff7-7c6c-4222-b5ae-391d081228c8)
)
(wire (pts (xy 100.33 77.47) (xy 100.33 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d8f93e3-5271-41d3-9902-44dfa2da438b)
)
(wire (pts (xy 181.61 58.42) (xy 184.15 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2dc723a9-73e9-4433-9ebc-32ec4408e662)
)
(wire (pts (xy 139.7 58.42) (xy 153.67 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2efbc7c9-f25c-45ac-b37f-15d29593b849)
)
(wire (pts (xy 78.74 71.12) (xy 106.68 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31de2ff7-9d99-4c35-96b7-6f35d8582115)
)
(wire (pts (xy 156.21 58.42) (xy 156.21 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3243e004-0cd1-44a1-8f46-aaf882958ee2)
)
(wire (pts (xy 92.71 27.94) (xy 92.71 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32dee90e-9527-4b77-9349-a94250e4e4dd)
)
(wire (pts (xy 55.88 40.64) (xy 69.85 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 330a2030-7c91-41b4-80ea-bc66615a2e71)
)
(wire (pts (xy 83.82 58.42) (xy 97.79 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 365ba0b3-8d8d-4a57-9ebf-d459dfc87690)
)
(wire (pts (xy 36.83 27.94) (xy 36.83 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 377980e9-4659-4646-b1b6-2de5e91052f1)
)
(wire (pts (xy 153.67 58.42) (xy 156.21 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38c6f38b-9e2c-4c82-b0e2-e0a591def5ce)
)
(wire (pts (xy 55.88 22.86) (xy 69.85 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3eee85ef-4545-415d-ba12-6cd20713c94b)
)
(wire (pts (xy 100.33 40.64) (xy 100.33 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40506f53-850c-4a5b-8d1d-3cfaab0fa827)
)
(wire (pts (xy 92.71 36.83) (xy 120.65 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44955cfc-060b-4c9e-8818-366004a53dfa)
)
(wire (pts (xy 120.65 54.61) (xy 148.59 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4855b1cd-b172-4cdd-bb00-ea0afcf3fc69)
)
(wire (pts (xy 148.59 27.94) (xy 148.59 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 490c3b12-c8e1-483c-b2cd-2d6382275f75)
)
(wire (pts (xy 148.59 45.72) (xy 148.59 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4a856d24-f147-4b57-94eb-d1c3dc5e3d06)
)
(wire (pts (xy 64.77 72.39) (xy 92.71 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4bae7bd6-d310-4e7a-aac6-8935eba6d502)
)
(wire (pts (xy 176.53 45.72) (xy 176.53 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4dc7a6bb-e70a-41b9-9240-477afc70a45e)
)
(wire (pts (xy 106.68 35.56) (xy 134.62 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e64bafb-ca97-4e57-a8ee-2746913dd51a)
)
(wire (pts (xy 92.71 54.61) (xy 120.65 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f316ad5-e79a-4521-83ed-6314f4fc4eb5)
)
(wire (pts (xy 120.65 45.72) (xy 120.65 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5041ddc9-352c-432c-8aee-cefda84d022c)
)
(wire (pts (xy 27.94 22.86) (xy 41.91 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 517577d0-f1e8-420b-b053-3f7c5c84c0d1)
)
(wire (pts (xy 97.79 77.47) (xy 100.33 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54d365c5-27a3-4361-8262-0eca6a0f963b)
)
(wire (pts (xy 36.83 54.61) (xy 64.77 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58df7dce-2aaf-4c45-840f-9e9d0f876e3d)
)
(wire (pts (xy 27.94 58.42) (xy 41.91 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 65e42e6b-71e9-4644-bdd0-5d1878fdcff6)
)
(wire (pts (xy 83.82 22.86) (xy 97.79 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b77ff86-c1ea-46d5-ae39-032427d0279d)
)
(wire (pts (xy 128.27 22.86) (xy 125.73 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d84d127-592d-42d9-8880-6e878063f017)
)
(wire (pts (xy 120.65 90.17) (xy 148.59 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6e5aab34-3f68-42f1-8241-07d3ce4317f8)
)
(wire (pts (xy 50.8 53.34) (xy 78.74 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6f482e40-657b-4271-94b7-0aa1eaba81e4)
)
(wire (pts (xy 83.82 40.64) (xy 97.79 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7042ebf6-89e0-42c5-b8d4-889c9fc2ab16)
)
(wire (pts (xy 78.74 53.34) (xy 106.68 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7603d8e7-8f50-4737-bfc7-da277cee0978)
)
(wire (pts (xy 167.64 58.42) (xy 181.61 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 766be698-b4b3-4feb-a6d1-0e1f41435433)
)
(wire (pts (xy 120.65 63.5) (xy 120.65 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b9fab5b-249c-4cda-8cfc-adc0059e52e1)
)
(wire (pts (xy 44.45 58.42) (xy 41.91 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7cfe0ec2-6d23-4fa3-8a50-ecc7fc8ef3a1)
)
(wire (pts (xy 125.73 58.42) (xy 128.27 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 82712099-b401-4390-b1c9-5012b6db0183)
)
(wire (pts (xy 111.76 22.86) (xy 125.73 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 858517b7-3c99-4886-9418-c4e0245f1f50)
)
(wire (pts (xy 106.68 53.34) (xy 134.62 53.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87e30526-d136-42a7-9f3c-825ab3e2082f)
)
(wire (pts (xy 27.94 40.64) (xy 41.91 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 896c5bda-62d2-4ef1-87fd-05ef9289492e)
)
(wire (pts (xy 156.21 40.64) (xy 153.67 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a886a46-348c-4577-92be-246086a7be94)
)
(wire (pts (xy 64.77 36.83) (xy 92.71 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8acd0b78-29b3-4c53-8d35-e34733e273db)
)
(wire (pts (xy 111.76 40.64) (xy 125.73 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9064421f-6df5-4ec5-8a4c-8c760d7f763f)
)
(wire (pts (xy 64.77 54.61) (xy 92.71 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94f6ec08-ab33-4b71-b861-35c31c426854)
)
(wire (pts (xy 69.85 58.42) (xy 72.39 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98417ab8-3be0-419e-b0e0-5e207004b467)
)
(wire (pts (xy 92.71 72.39) (xy 120.65 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9d17a1cd-59b6-4289-b8a3-7db766b4daa2)
)
(wire (pts (xy 92.71 63.5) (xy 92.71 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a2818387-bf55-4859-b0f1-abeae41cc1ff)
)
(wire (pts (xy 128.27 77.47) (xy 128.27 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a38c0476-eee8-488d-a905-e62e432adb26)
)
(wire (pts (xy 120.65 27.94) (xy 120.65 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a3ace222-9ec4-40db-a111-c71d5405bed5)
)
(wire (pts (xy 125.73 77.47) (xy 128.27 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a83d7f4b-31ae-4071-8ade-f49dc9c719a0)
)
(wire (pts (xy 148.59 54.61) (xy 176.53 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ae024696-a8b6-4701-be2d-f15267753bbe)
)
(wire (pts (xy 120.65 72.39) (xy 148.59 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ae6a1835-acb1-41c7-9b13-d31aa5dfb50b)
)
(wire (pts (xy 111.76 58.42) (xy 125.73 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b1380791-8aa8-48db-8a8a-fb31a6acca04)
)
(wire (pts (xy 22.86 35.56) (xy 50.8 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b40dc526-c08c-4381-a009-62319680aaf1)
)
(wire (pts (xy 24.13 36.83) (xy 36.83 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b733ff91-69d7-4b63-83a9-8af18ff9733c)
)
(wire (pts (xy 184.15 58.42) (xy 184.15 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b855e5c8-610f-43a9-bcbd-336eea1add61)
)
(wire (pts (xy 176.53 63.5) (xy 176.53 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ba4d2ddd-031b-41f7-bc59-0b24d8e15f8d)
)
(wire (pts (xy 156.21 40.64) (xy 156.21 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ba920355-5b5c-4dd4-86d5-ae9181308540)
)
(wire (pts (xy 134.62 35.56) (xy 162.56 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c139568b-e224-489b-a568-b4913e650229)
)
(wire (pts (xy 24.13 72.39) (xy 36.83 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1a7af66-b678-4b89-937c-bac264446613)
)
(wire (pts (xy 64.77 45.72) (xy 64.77 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c31018ea-5bdd-4a4e-be39-c7757855d511)
)
(wire (pts (xy 167.64 40.64) (xy 181.61 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c564e556-5f71-476f-be2d-7b117d3b4a36)
)
(wire (pts (xy 156.21 77.47) (xy 156.21 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c5ca7b3d-596a-4085-a375-4549d0d668d7)
)
(wire (pts (xy 120.65 36.83) (xy 148.59 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c62da602-99f7-41b7-8214-009d3187e016)
)
(wire (pts (xy 156.21 22.86) (xy 153.67 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c69f6730-23ff-489b-85a3-a5fa6354711e)
)
(wire (pts (xy 148.59 63.5) (xy 148.59 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7010fdd-4b9d-4d4a-874e-fac1bc117974)
)
(wire (pts (xy 22.86 71.12) (xy 50.8 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ca5be940-ad69-4a42-9bdc-12b2768737f5)
)
(wire (pts (xy 72.39 58.42) (xy 72.39 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cb1fda85-44e3-4ca0-bfdb-761b4a2a449f)
)
(wire (pts (xy 153.67 77.47) (xy 156.21 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cedb32f4-f621-4a02-aa18-90f32adfc255)
)
(wire (pts (xy 184.15 77.47) (xy 184.15 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid da848971-eef5-4bc5-a74b-63347a84a62f)
)
(wire (pts (xy 24.13 54.61) (xy 36.83 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid db27b765-43ec-4eba-9950-c6b067434cb4)
)
(wire (pts (xy 148.59 90.17) (xy 176.53 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid db609556-0e98-4f1b-a0a6-be694b2a0153)
)
(wire (pts (xy 139.7 40.64) (xy 153.67 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dcaa8894-7188-4466-badb-1200bce2ce99)
)
(wire (pts (xy 184.15 22.86) (xy 181.61 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd26a331-a45b-44fb-8840-3f9afef0e9a3)
)
(wire (pts (xy 72.39 40.64) (xy 72.39 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dd36010b-0b6e-4da5-b8ce-34c8b60d6ba1)
)
(wire (pts (xy 148.59 36.83) (xy 176.53 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid df75954e-a42b-4426-8619-47f29a6f9d9e)
)
(wire (pts (xy 36.83 45.72) (xy 36.83 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid df80f73d-d947-4fac-b831-863f3343c3db)
)
(wire (pts (xy 72.39 22.86) (xy 69.85 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e12629a2-aacc-48c4-8c84-24e2b14df0b7)
)
(wire (pts (xy 36.83 90.17) (xy 64.77 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e1933036-7c09-4f87-9d6b-2b56ed5ec489)
)
(wire (pts (xy 24.13 72.39) (xy 24.13 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e584f1df-8e99-4c10-b1ad-5c1b609e10da)
)
(wire (pts (xy 139.7 22.86) (xy 153.67 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e63ef2ab-f056-4b1d-9b98-6b84bd49a8e6)
)
(wire (pts (xy 36.83 63.5) (xy 36.83 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e69bca57-b255-49dc-9d9d-05d409d5c2e1)
)
(wire (pts (xy 24.13 38.1) (xy 22.86 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e861d6f2-73a3-48cb-8ad7-8a1acf4daa0f)
)
(wire (pts (xy 128.27 58.42) (xy 128.27 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e92ccf76-eea3-4a79-95b7-bdec5b1d3bea)
)
(wire (pts (xy 184.15 40.64) (xy 181.61 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e970ff79-72de-41ba-8bce-4d8089bc86cb)
)
(wire (pts (xy 106.68 71.12) (xy 134.62 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb4c9cd3-cc91-49a1-baea-28c51914f094)
)
(wire (pts (xy 92.71 45.72) (xy 92.71 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eba6b5dd-391d-420f-9e6b-905d68b39c4d)
)
(wire (pts (xy 100.33 22.86) (xy 97.79 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ece2eddd-37b2-485a-a4e2-20a5a52749df)
)
(wire (pts (xy 97.79 58.42) (xy 100.33 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f0449035-be4a-43bf-af47-add58a617288)
)
(wire (pts (xy 72.39 77.47) (xy 72.39 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f08105e2-74cd-43c4-bed7-3625addb513f)
)
(wire (pts (xy 78.74 35.56) (xy 106.68 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f197415f-d313-4439-9815-203c59b05334)
)
(wire (pts (xy 100.33 58.42) (xy 100.33 40.64))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f1ece07e-3c47-498e-90ab-590b6dcf722d)
)
(wire (pts (xy 22.86 90.17) (xy 36.83 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f43d8929-835c-4f58-9d82-de574d473997)
)
(wire (pts (xy 50.8 35.56) (xy 78.74 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f6197d69-58e0-483a-afef-e47f58bbb231)
)
(wire (pts (xy 148.59 72.39) (xy 176.53 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f77202b8-9d50-4f94-bb20-15fabe097c6a)
)
(wire (pts (xy 36.83 36.83) (xy 64.77 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f7afebd6-d183-4dc7-9adb-49d86c19d98e)
)
(wire (pts (xy 64.77 27.94) (xy 64.77 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f917163b-db61-43d1-8f60-0b35a7735256)
)
(wire (pts (xy 128.27 40.64) (xy 128.27 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f97b6884-c523-4e00-b33c-61b145bba804)
)
(wire (pts (xy 184.15 40.64) (xy 184.15 22.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fd028a5c-461e-46ca-91a2-1a1808baf01f)
)
(global_label "c0" (shape input) (at 44.45 22.86 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 00c48bde-ad14-480d-b7a8-e42b79840d33)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 44.3706 17.9583 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "r2" (shape output) (at 22.86 53.34 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0591027b-0317-4ad0-bc06-7ce74f5540d3)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 18.4512 53.2606 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "r5" (shape output) (at 22.86 73.66 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 10f8dd56-d18d-4773-96bc-60ff4418d880)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 18.4512 73.5806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "c5" (shape input) (at 184.15 22.86 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 11bbc6e3-4435-40e9-bbad-af35cac3989c)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 184.0706 17.9583 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "c2" (shape input) (at 100.33 22.86 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 176103ca-c240-4748-a839-a83cea70cbf9)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 100.2506 17.9583 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "c3" (shape input) (at 128.27 22.86 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3e12ba8b-5589-459f-894d-ca8a71d575db)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 128.1906 17.9583 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "c1" (shape input) (at 72.39 22.86 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 3e8bb18e-91ce-43fa-b1aa-634bc84c197b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 72.3106 17.9583 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "r1" (shape output) (at 22.86 38.1 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4c2cc253-f954-4dc3-a5a4-f6c2c3a534f0)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 18.4512 38.0206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "r0" (shape output) (at 22.86 35.56 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 554d45e5-f920-4099-95a0-0cc7b565f435)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 18.4512 35.4806 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "r6" (shape output) (at 22.86 90.17 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 70b51c48-725c-4a1e-a9e3-7486ad7efba2)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 18.4512 90.0906 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "r4" (shape output) (at 22.86 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 903d40a2-44a2-4e4f-b9a0-f4045cb29bbc)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 18.4512 71.0406 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "r3" (shape output) (at 22.86 55.88 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid b33eee35-02d0-4cee-94bf-8116a575db11)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 18.4512 55.8006 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "c4" (shape input) (at 156.21 22.86 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e700a2ba-24e3-4ae5-b833-7884c54da97e)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 156.1306 17.9583 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(symbol (lib_id "Switch:SW_Push_45deg") (at 95.25 43.18 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 04185402-4936-4f76-82dc-3c02e8543b1f)
(property "Reference" "SW18" (id 0) (at 101.6 43.18 0))
(property "Value" "CPG135001S30" (id 1) (at 101.6 45.72 0))
(property "Footprint" "marbastlib-choc:SW_choc_HS_1u" (id 2) (at 95.25 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 95.25 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid eb7ed17e-c713-4ff0-aa47-f7542567e44d))
(pin "2" (uuid 97628e20-b802-46b4-9ac4-76303897e52d))
)
(symbol (lib_id "Switch:SW_Push_45deg") (at 109.22 43.18 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 0482a858-edf5-4c5f-8d25-50ddfaa1f462)
(property "Reference" "SW19" (id 0) (at 115.57 43.18 0))
(property "Value" "CPG135001S30" (id 1) (at 115.57 45.72 0))
(property "Footprint" "marbastlib-choc:SW_choc_HS_1u" (id 2) (at 109.22 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 109.22 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 052fa317-d7d0-4e20-99e2-ef0f33539415))
(pin "2" (uuid fa549d7e-50d8-4c65-bbd9-14854b649fd4))
)
(symbol (lib_id "Switch:SW_Push_45deg") (at 165.1 25.4 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 056595eb-98a9-42a2-a551-2fe8dba5e24e)
(property "Reference" "SW11" (id 0) (at 171.45 25.4 0))
(property "Value" "CPG135001S30" (id 1) (at 171.45 27.94 0))
(property "Footprint" "marbastlib-choc:SW_choc_HS_1u" (id 2) (at 165.1 25.4 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 165.1 25.4 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6280e7ee-a32d-4222-a02d-c0674f1ec584))
(pin "2" (uuid d8dfef7f-8ea5-4c83-9bc0-00af50f2b262))
)
(symbol (lib_id "Switch:SW_Push_45deg") (at 123.19 43.18 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes)
(uuid 056a7772-a6c4-4a64-a4ee-bbcd4643f8cd)
(property "Reference" "SW20" (id 0) (at 129.54 43.18 0))
(property "Value" "CPG135001S30" (id 1) (at 129.54 45.72 0))
(property "Footprint" "marbastlib-choc:SW_choc_HS_1u" (id 2) (at 123.19 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 123.19 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c54f6d26-eb50-4eaa-addd-292a097f586d))
(pin "2" (uuid 25450501-03cf-47fe-88f2-ff6bcab6caaf))
)
(symbol (lib_id "Diode:1N4148WT") (at 92.71 86.36 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 0c142a0c-bab2-43b1-ae0f-5d42e37bc024)
(property "Reference" "D39" (id 0) (at 95.25 85.0899 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "1N4148WT" (id 1) (at 95.25 87.6299 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Diode_SMD:D_SOD-523" (id 2) (at 97.155 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.diodes.com/assets/Datasheets/ds30396.pdf" (id 3) (at 92.71 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7277a12c-43bd-4136-858c-a5df60af3d28))
(pin "2" (uuid d6643c15-18d2-4b80-be6c-b0aaacbf9fda))
)
(symbol (lib_id "Diode:1N4148WT") (at 106.68 31.75 90) (unit 1)
(in_bom yes) (on_board yes) (fields_autoplaced)
(uuid 10b30d78-7dcd-431b-8bf3-09785feaac03)
(property "Reference" "D7" (id 0) (at 109.22 30.4799 90)
(effects (font (size 1.27 1.27)) (justify right))
)