-
Notifications
You must be signed in to change notification settings - Fork 0
/
Switch_Matrix.kicad_sch
1929 lines (1863 loc) · 75.9 KB
/
Switch_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 02618ac2-686a-4301-8113-0c45a5563e35)
(paper "USLetter")
(title_block
(title "Conejo nRF52840 Keyboard - Switch Matrix")
(company "Kurtis Lew")
)
(lib_symbols
(symbol "Device:D_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at -1.27 2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Small" (id 1) (at -3.81 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 90)
(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" "Diode, small symbol" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Small_0_1"
(polyline
(pts
(xy -0.762 -1.016)
(xy -0.762 1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.762 0)
(xy 0.762 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "D_Small_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push" (id 1) (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 5.08 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, generic, two pins" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_0_1"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy -2.54 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "1" (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 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 107.95 66.675) (diameter 0) (color 0 0 0 0)
(uuid 029020f5-a875-487f-85ab-d1aefe279395)
)
(junction (at 158.75 85.725) (diameter 0) (color 0 0 0 0)
(uuid 05955351-db81-426a-b686-07353e697720)
)
(junction (at 133.35 28.575) (diameter 0) (color 0 0 0 0)
(uuid 08815865-d637-4f6d-bf4c-7119de1f939b)
)
(junction (at 31.75 28.575) (diameter 0) (color 0 0 0 0)
(uuid 0a8cc303-0314-40fb-91b5-780cccde5d4d)
)
(junction (at 95.25 38.1) (diameter 0) (color 0 0 0 0)
(uuid 0b6d1d3f-bb3b-426e-bc94-46a2a68b74d0)
)
(junction (at 82.55 28.575) (diameter 0) (color 0 0 0 0)
(uuid 122991c9-adfb-465f-9220-41940905a16b)
)
(junction (at 133.35 66.675) (diameter 0) (color 0 0 0 0)
(uuid 12b94938-de92-4669-89bc-8d99a92d3465)
)
(junction (at 107.95 28.575) (diameter 0) (color 0 0 0 0)
(uuid 1bc64024-04e4-4a06-bc12-c7a96feae0ec)
)
(junction (at 57.15 28.575) (diameter 0) (color 0 0 0 0)
(uuid 20a31a0f-9dea-4468-8b1c-bd46b3168972)
)
(junction (at 107.95 47.625) (diameter 0) (color 0 0 0 0)
(uuid 23b3c1e8-952a-44b2-b75a-fbb801e9b93f)
)
(junction (at 120.65 38.1) (diameter 0) (color 0 0 0 0)
(uuid 2f495513-d8fc-49ea-9a39-de904f98cabd)
)
(junction (at 69.85 57.15) (diameter 0) (color 0 0 0 0)
(uuid 2ff9749b-5165-4e77-98f2-e5a4614ef5d7)
)
(junction (at 107.95 85.725) (diameter 0) (color 0 0 0 0)
(uuid 33ca9269-95c9-4311-8ecc-4669e277edea)
)
(junction (at 120.65 95.25) (diameter 0) (color 0 0 0 0)
(uuid 36d0be81-375a-46e3-8db7-f5a5ff398612)
)
(junction (at 31.75 47.625) (diameter 0) (color 0 0 0 0)
(uuid 3b615b7a-8ed9-448d-bb4b-d77fbc62aa22)
)
(junction (at 158.75 66.675) (diameter 0) (color 0 0 0 0)
(uuid 3b668b50-ac1b-492d-8c98-a5047183e6fb)
)
(junction (at 57.15 47.625) (diameter 0) (color 0 0 0 0)
(uuid 3c727f28-bad2-4b16-aad9-60a5aa5a5ab8)
)
(junction (at 158.75 47.625) (diameter 0) (color 0 0 0 0)
(uuid 41bd2930-1864-41a1-8733-10459f468ffc)
)
(junction (at 120.65 114.3) (diameter 0) (color 0 0 0 0)
(uuid 5e6ac1aa-70a1-42c8-b12a-2fffe7c96528)
)
(junction (at 95.25 76.2) (diameter 0) (color 0 0 0 0)
(uuid 621b5057-6201-4dd4-93f6-63a56bb897b7)
)
(junction (at 146.05 114.3) (diameter 0) (color 0 0 0 0)
(uuid 6250846e-5a3f-4ead-813c-4617e678dcce)
)
(junction (at 95.25 57.15) (diameter 0) (color 0 0 0 0)
(uuid 69f60c76-60f8-4146-924d-98ea024f5cc3)
)
(junction (at 158.75 28.575) (diameter 0) (color 0 0 0 0)
(uuid 6b077477-6d42-4914-9075-db921f4b6ea6)
)
(junction (at 69.85 95.25) (diameter 0) (color 0 0 0 0)
(uuid 6d547dfb-b95c-4c41-9d8a-8b70eb037155)
)
(junction (at 146.05 57.15) (diameter 0) (color 0 0 0 0)
(uuid 71887fe2-e4bc-4129-ac1a-16315199e086)
)
(junction (at 120.65 76.2) (diameter 0) (color 0 0 0 0)
(uuid 793a8cd1-1af6-4e54-8870-86371443c86c)
)
(junction (at 44.45 76.2) (diameter 0) (color 0 0 0 0)
(uuid 7b65a9c8-d596-491d-ba8f-dfaf7ba623c6)
)
(junction (at 120.65 57.15) (diameter 0) (color 0 0 0 0)
(uuid 7df63606-ca66-4e53-9d57-62707229f82c)
)
(junction (at 69.85 38.1) (diameter 0) (color 0 0 0 0)
(uuid 8267f314-7766-4a93-8dd9-9002a5e10578)
)
(junction (at 133.35 85.725) (diameter 0) (color 0 0 0 0)
(uuid 9e5cc3c5-e76f-420f-aac0-e25798f46913)
)
(junction (at 44.45 38.1) (diameter 0) (color 0 0 0 0)
(uuid 9fa3b99b-52b5-474a-868d-ada2ce1d09c6)
)
(junction (at 82.55 66.675) (diameter 0) (color 0 0 0 0)
(uuid a02d0cdb-d9f6-43f8-8e5c-a6b9b64067e6)
)
(junction (at 44.45 57.15) (diameter 0) (color 0 0 0 0)
(uuid a51cc71a-86fd-4856-988e-38c23e4ad6e9)
)
(junction (at 95.25 95.25) (diameter 0) (color 0 0 0 0)
(uuid aa511a1f-3412-40bb-905d-32b2469f201d)
)
(junction (at 69.85 76.2) (diameter 0) (color 0 0 0 0)
(uuid b5b2a41c-608d-49cc-a7ae-397c334b8d6e)
)
(junction (at 57.15 66.675) (diameter 0) (color 0 0 0 0)
(uuid bd57e7a1-515f-451f-a946-918fafbbcd6b)
)
(junction (at 31.75 66.675) (diameter 0) (color 0 0 0 0)
(uuid c3dc3a68-2e9c-4809-8f93-d42349dc87ee)
)
(junction (at 146.05 95.25) (diameter 0) (color 0 0 0 0)
(uuid c5b26322-790e-4f7d-ae7b-20b6b786b293)
)
(junction (at 146.05 76.2) (diameter 0) (color 0 0 0 0)
(uuid d24427d6-4283-4a93-991b-705c1365134c)
)
(junction (at 82.55 47.625) (diameter 0) (color 0 0 0 0)
(uuid d63581a7-46d8-41e6-a98e-99aa47bf17c5)
)
(junction (at 44.45 95.25) (diameter 0) (color 0 0 0 0)
(uuid e6bfd3c0-bae3-47c6-bf10-3b42feeef1bc)
)
(junction (at 146.05 38.1) (diameter 0) (color 0 0 0 0)
(uuid f97ca73e-8f94-485c-9567-ea1feb00a17c)
)
(junction (at 133.35 47.625) (diameter 0) (color 0 0 0 0)
(uuid fcc57828-d518-4ddc-9dd6-d046651f5364)
)
(wire (pts (xy 171.45 66.675) (xy 171.45 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0851eba7-6f5d-46df-a990-9b82f3595ecd)
)
(wire (pts (xy 95.25 38.1) (xy 120.65 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ae97f1f-8085-416b-bb2e-3096c97cd170)
)
(wire (pts (xy 120.65 93.345) (xy 120.65 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b111726-87f6-4fbe-80e5-65f22d08cb4e)
)
(wire (pts (xy 95.25 93.345) (xy 95.25 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b7e5651-275f-4633-9f3d-75b8ef69e274)
)
(wire (pts (xy 158.75 66.675) (xy 160.02 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cf949bf-0849-474e-a99e-f14c49e0ce3f)
)
(wire (pts (xy 133.35 104.14) (xy 134.62 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ffad8a1-abe7-45ce-8b47-06eac26bb641)
)
(wire (pts (xy 44.45 47.625) (xy 44.45 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10334751-2ff1-4566-bbcf-7876349364b1)
)
(wire (pts (xy 81.28 28.575) (xy 82.55 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10773a65-ab85-430f-a974-2a7df507f6c3)
)
(wire (pts (xy 158.75 47.625) (xy 160.02 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 12450db8-335d-4a26-9472-3c8139a7f6bf)
)
(wire (pts (xy 171.45 28.575) (xy 170.18 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 14f06a7d-ac78-4907-9c78-b5c7e405269b)
)
(wire (pts (xy 120.65 66.675) (xy 120.65 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1559a6ff-5f41-434a-9b24-cdcee84ca7cb)
)
(polyline (pts (xy 184.15 19.05) (xy 184.15 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16916529-fe32-4c1d-8f24-5e88bd554dda)
)
(wire (pts (xy 44.45 66.675) (xy 43.18 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16df5f8e-2629-475e-bc4e-ac69a580fa1e)
)
(wire (pts (xy 146.05 74.295) (xy 146.05 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17006193-e9fc-4dde-9a86-919ebed5385c)
)
(wire (pts (xy 133.35 47.625) (xy 133.35 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17e27692-d4e8-40bf-a2ba-f47ce9924d20)
)
(wire (pts (xy 31.75 66.675) (xy 31.75 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19acb630-439e-4dad-ab26-3a1c77e6baa3)
)
(wire (pts (xy 120.65 57.15) (xy 146.05 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a03b37b-b664-40ca-9798-e0127b1cf0b4)
)
(wire (pts (xy 107.95 28.575) (xy 107.95 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b1f3469-d7e3-471a-9000-ea6f10f7e2e6)
)
(wire (pts (xy 171.45 85.725) (xy 170.18 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c4f5cd8-8943-48a8-8b6a-d99f5920cb1e)
)
(wire (pts (xy 58.42 47.625) (xy 57.15 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1ccd9200-b768-4335-bd36-c3721204cc53)
)
(wire (pts (xy 133.35 85.725) (xy 133.35 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e1ef884-10fe-4bbb-9436-4866f55201e3)
)
(wire (pts (xy 44.45 47.625) (xy 43.18 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e5b66fa-0153-4378-97f6-d55e24d020f6)
)
(wire (pts (xy 171.45 47.625) (xy 170.18 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1f1c17b0-3479-4d07-bc11-7c44d9813aa9)
)
(wire (pts (xy 146.05 76.2) (xy 171.45 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1fc97ee6-6add-41ad-94f2-9aa1baabaa71)
)
(polyline (pts (xy 184.15 120.65) (xy 12.7 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 249bf3bc-befa-43b5-bed1-dbf0c44d1170)
)
(wire (pts (xy 31.75 28.575) (xy 31.75 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 252b1009-ee3e-4f00-bea8-bef52ee5603b)
)
(wire (pts (xy 107.95 85.725) (xy 107.95 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25fa8847-51d1-4164-a31a-362bdfafd883)
)
(wire (pts (xy 171.45 28.575) (xy 171.45 31.115))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2984d1e1-548d-4154-bb82-b9d9e8379253)
)
(wire (pts (xy 133.35 66.675) (xy 134.62 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2ee43296-2c09-4714-99cc-e3ca85e61569)
)
(wire (pts (xy 171.45 36.195) (xy 171.45 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30cb4a5f-3437-4073-b41b-0d9cef09118c)
)
(wire (pts (xy 69.85 47.625) (xy 69.85 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30cfdc8b-d75b-478e-916a-733fd201bac5)
)
(wire (pts (xy 146.05 95.25) (xy 171.45 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33b2ca77-af64-4077-9025-98ca95f9d590)
)
(wire (pts (xy 120.65 47.625) (xy 119.38 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33cd7ee5-1723-4251-b361-eb20bc036f6b)
)
(wire (pts (xy 69.85 36.195) (xy 69.85 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 342e7366-bc8f-4438-b0d4-6413181a7825)
)
(wire (pts (xy 25.4 76.2) (xy 44.45 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34fecba2-3d07-4598-a2cf-d5407fee7dc4)
)
(wire (pts (xy 158.75 66.675) (xy 158.75 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35fc3ea5-efd0-4c29-a52b-62e5cfca47a2)
)
(wire (pts (xy 95.25 28.575) (xy 95.25 31.115))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36609827-92b6-4771-8ab2-102f05216045)
)
(wire (pts (xy 120.65 95.25) (xy 146.05 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a2a66f3-13c3-48cf-a36e-78c7bae6537f)
)
(wire (pts (xy 44.45 93.345) (xy 44.45 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3ac02f99-3e24-475f-bd61-195e3f369827)
)
(wire (pts (xy 120.65 28.575) (xy 119.38 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3aefe234-c236-4c95-b391-3baf70d7c08a)
)
(wire (pts (xy 95.25 28.575) (xy 93.98 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b13c8dc-dfc9-472d-8da4-874db26278fe)
)
(wire (pts (xy 57.15 66.675) (xy 57.15 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c25ec45-a72a-4d7a-9a26-9e110fd8e124)
)
(wire (pts (xy 146.05 114.3) (xy 171.45 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3efcd9e5-d18d-4560-9333-c94563dda031)
)
(wire (pts (xy 120.65 74.295) (xy 120.65 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43c89d98-fc4d-4a02-b50b-21768df3b1c2)
)
(wire (pts (xy 146.05 57.15) (xy 171.45 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4529cecc-8a91-4b69-814c-30c262a6eebf)
)
(wire (pts (xy 69.85 95.25) (xy 95.25 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45790fdb-7879-43ff-a89e-5f9458aca3e6)
)
(wire (pts (xy 82.55 47.625) (xy 83.82 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 46473e80-981e-492b-a575-34c42d5b6c18)
)
(polyline (pts (xy 12.7 19.05) (xy 184.15 19.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 484a0197-38b3-41a8-9107-d8b05509a0a0)
)
(wire (pts (xy 106.68 28.575) (xy 107.95 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4ac12624-7b22-4933-88c1-49629ef6e97a)
)
(wire (pts (xy 95.25 74.295) (xy 95.25 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4b883a04-867f-4bce-b9b9-9ce822062f9e)
)
(wire (pts (xy 44.45 74.295) (xy 44.45 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d76744a-8162-4158-9162-b97d67540861)
)
(wire (pts (xy 146.05 93.345) (xy 146.05 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5461007f-db6d-4bc6-8303-8289485c9d59)
)
(wire (pts (xy 57.15 28.575) (xy 57.15 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55bdc736-592c-486f-ac62-50b92fa78852)
)
(wire (pts (xy 44.45 28.575) (xy 44.45 31.115))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57b828cf-7a2b-4ea3-af43-3297654367cf)
)
(wire (pts (xy 120.65 66.675) (xy 119.38 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 581aced3-0445-495b-b368-b3c27bb35b0f)
)
(wire (pts (xy 69.85 47.625) (xy 68.58 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 59f4bcad-baa7-4697-83a7-09fa73bbe7b7)
)
(wire (pts (xy 146.05 47.625) (xy 144.78 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bafe68a-2d43-4944-86a4-632f68989716)
)
(wire (pts (xy 146.05 55.88) (xy 146.05 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bbc025b-7432-467d-a4ed-db4cc35bc968)
)
(wire (pts (xy 44.45 85.725) (xy 44.45 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bd9f50c-b956-44f8-80bc-8de5b8508e13)
)
(wire (pts (xy 133.35 85.725) (xy 134.62 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ec24645-1cf2-40c9-bf4f-3868ece84f2c)
)
(wire (pts (xy 44.45 76.2) (xy 69.85 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 62d5c044-efca-4f05-b052-286611d93753)
)
(wire (pts (xy 146.05 111.76) (xy 146.05 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 62e0bf4b-ca0d-4879-a3c9-fee4a229738d)
)
(wire (pts (xy 44.45 38.1) (xy 69.85 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 64956c67-80e0-428f-bcee-522b8925166e)
)
(wire (pts (xy 120.65 76.2) (xy 146.05 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 652222e0-a0d7-4166-9287-f4a9454e482f)
)
(wire (pts (xy 25.4 114.3) (xy 120.65 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66b959f0-ea07-43f1-a67d-ae489809effb)
)
(wire (pts (xy 157.48 28.575) (xy 158.75 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67b8083a-16aa-4b9a-adee-924e52ab9cef)
)
(wire (pts (xy 33.02 66.675) (xy 31.75 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67cf2c39-885c-4692-8b14-0674f894b528)
)
(wire (pts (xy 58.42 28.575) (xy 57.15 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68f4211a-4904-4b09-aaae-2a548e650c61)
)
(wire (pts (xy 31.75 85.725) (xy 33.02 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a171b4d-0a3b-4e23-841e-afa628cef383)
)
(wire (pts (xy 95.25 85.725) (xy 95.25 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6b48c201-eb3a-4e4d-a6e6-8475c75de64f)
)
(wire (pts (xy 69.85 66.675) (xy 68.58 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c435d61-d1bd-4bf7-b1bf-d0b563bcaa93)
)
(wire (pts (xy 95.25 36.195) (xy 95.25 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d24fc74-6a10-489f-a671-adb6807f33d0)
)
(wire (pts (xy 95.25 95.25) (xy 120.65 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 70c813c0-023f-46e6-ade5-5394d127e9ed)
)
(wire (pts (xy 95.25 57.15) (xy 120.65 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 737c9b07-906c-42be-a25d-6d5de899a12b)
)
(wire (pts (xy 25.4 57.15) (xy 44.45 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 762eba48-8c61-442d-88c3-38ec4a09c93d)
)
(wire (pts (xy 158.75 47.625) (xy 158.75 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 795bd2f3-5913-4821-87e6-6a15fdb67437)
)
(wire (pts (xy 171.45 85.725) (xy 171.45 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c7a2155-a014-4392-b546-5b93e09f1cd8)
)
(wire (pts (xy 107.95 28.575) (xy 109.22 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7c83f245-6804-41ae-a781-615ae48aa6aa)
)
(wire (pts (xy 146.05 28.575) (xy 146.05 31.115))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7de35126-8b35-471f-bf14-14b9e141d8a0)
)
(wire (pts (xy 44.45 55.88) (xy 44.45 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7e585090-d40f-4b56-9d88-c9f0bb247f3a)
)
(wire (pts (xy 69.85 76.2) (xy 95.25 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81468e75-6ccd-4ad0-be84-2bf9067c0aff)
)
(wire (pts (xy 120.65 28.575) (xy 120.65 31.115))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 820c6759-2f6b-45cb-92d9-86254976dee4)
)
(wire (pts (xy 146.05 66.675) (xy 146.05 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8418563a-5599-4db2-bc26-549a569102d1)
)
(wire (pts (xy 33.02 28.575) (xy 31.75 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8488646f-c428-4315-87a9-913eb71a796d)
)
(wire (pts (xy 171.45 104.14) (xy 171.45 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 89a8deca-5ff4-4cb1-99f8-a80e77062ebe)
)
(wire (pts (xy 146.05 36.195) (xy 146.05 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 89dc4b42-a212-4bb7-aec5-f00a59cb0c22)
)
(wire (pts (xy 158.75 104.14) (xy 160.02 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8b0f492d-b5b1-479c-a527-b2b1305e295f)
)
(wire (pts (xy 133.35 47.625) (xy 134.62 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ce463fc-fc5d-4572-8c74-9a5b4f0dabbb)
)
(polyline (pts (xy 12.7 120.65) (xy 12.7 19.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f52ed3b-62af-474e-8d9a-4d7bc846c37d)
)
(wire (pts (xy 95.25 66.675) (xy 93.98 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90d75819-17b6-48e8-a53b-0e8935abdf35)
)
(wire (pts (xy 95.25 55.88) (xy 95.25 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93992862-e945-4067-ae64-5a42480ea1c1)
)
(wire (pts (xy 55.88 28.575) (xy 57.15 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93cbacbb-92dd-4323-b1c8-1d3476e7e294)
)
(wire (pts (xy 82.55 66.675) (xy 83.82 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 93cc478b-4ba4-47c0-8bcb-8c20753f71d8)
)
(wire (pts (xy 82.55 66.675) (xy 82.55 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94b875c7-e8fc-40f5-9721-83d63fbb7117)
)
(wire (pts (xy 146.05 85.725) (xy 144.78 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 951375c7-0472-4b0f-9179-849776d1d2bc)
)
(wire (pts (xy 120.65 55.88) (xy 120.65 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96283888-44d7-4625-bfe8-b51e100000d6)
)
(wire (pts (xy 95.25 47.625) (xy 93.98 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 96445a7f-f252-4836-a22c-b1d4a8ef9584)
)
(wire (pts (xy 82.55 85.725) (xy 83.82 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 972dc248-5192-48db-a823-cb4c4da4a062)
)
(wire (pts (xy 58.42 66.675) (xy 57.15 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 978dbee8-d4a1-4a8b-b9b4-ff26be0596cd)
)
(wire (pts (xy 44.45 66.675) (xy 44.45 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 97952d0f-75ee-4746-a500-fbc5299ed1a0)
)
(wire (pts (xy 146.05 47.625) (xy 146.05 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 996bde8f-1c8c-4d65-b1bf-ce26320bff7e)
)
(wire (pts (xy 120.65 111.76) (xy 120.65 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b1d6797-add7-449b-9ff6-e9a61a67bc72)
)
(wire (pts (xy 95.25 85.725) (xy 93.98 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c5d3106-1960-4f58-95af-fae24d307cc2)
)
(wire (pts (xy 171.45 47.625) (xy 171.45 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9f406535-a983-48fb-833b-0e8fed835cfe)
)
(wire (pts (xy 107.95 47.625) (xy 109.22 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a0f397c1-52f6-426b-afa7-275b8dca86a0)
)
(wire (pts (xy 68.58 85.725) (xy 69.85 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a15a40ea-e9ad-4244-833b-1029e6e9625a)
)
(wire (pts (xy 107.95 47.625) (xy 107.95 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1e3d427-b2b9-4e6f-a43e-22e69951ef06)
)
(wire (pts (xy 69.85 28.575) (xy 69.85 31.115))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a20cbb47-a224-44d5-a27f-14a97bafb644)
)
(wire (pts (xy 107.95 66.675) (xy 109.22 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a361cc5c-c6b6-4eaa-a9d1-e489f4570643)
)
(wire (pts (xy 44.45 95.25) (xy 69.85 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a48b37f7-7d83-42d3-be73-69e710962cdd)
)
(wire (pts (xy 95.25 66.675) (xy 95.25 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a94c802b-1e7e-4379-8c09-c3a3287ed3cf)
)
(wire (pts (xy 158.75 85.725) (xy 160.02 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa1ea77c-76aa-4f58-858a-f009255b4fe0)
)
(wire (pts (xy 33.02 47.625) (xy 31.75 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aac47a61-284d-42a0-947f-ae37b171df7b)
)
(wire (pts (xy 146.05 38.1) (xy 171.45 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid abb7cf01-d7cf-436b-8585-aa2ddb0d5886)
)
(wire (pts (xy 44.45 36.195) (xy 44.45 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ae30c4aa-1e29-402f-99a7-eae514c04ec7)
)
(wire (pts (xy 95.25 76.2) (xy 120.65 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid afcd1870-01e6-45ca-9610-abf5c679986a)
)
(wire (pts (xy 69.85 85.725) (xy 69.85 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b020a969-67b4-4e64-9ee6-2bff3b3a6352)
)
(wire (pts (xy 158.75 28.575) (xy 158.75 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b1fcd919-a82a-4bf6-9dd8-f3020bda281c)
)
(wire (pts (xy 120.65 104.14) (xy 120.65 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b4dfbac8-541a-462a-a397-0cbe23f30d94)
)
(wire (pts (xy 146.05 104.14) (xy 144.78 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b6ed3efa-f4a4-41c9-a592-f6aa354971fe)
)
(wire (pts (xy 120.65 38.1) (xy 146.05 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b898ea22-d870-4c94-8271-a636da610eca)
)
(wire (pts (xy 120.65 104.14) (xy 119.38 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b9662da7-17be-4c6d-bfdd-11a7608769c8)
)
(wire (pts (xy 171.45 93.345) (xy 171.45 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bae9cd9c-2dc7-4e90-98ea-40e119530072)
)
(wire (pts (xy 171.45 104.14) (xy 170.18 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bc7a3d85-a3a5-401b-8d39-0e2b67992431)
)
(wire (pts (xy 25.4 28.575) (xy 31.75 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bd51975c-1c18-40c7-9342-600ce95fbdab)
)
(wire (pts (xy 44.45 57.15) (xy 69.85 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid be9844f6-a6de-47fb-8b62-6f5ef06fc237)
)
(wire (pts (xy 120.65 36.195) (xy 120.65 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bf14b9fe-98e0-4568-9be5-ed7ea84daddf)
)
(wire (pts (xy 133.35 28.575) (xy 133.35 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bfff5a74-3813-42ae-9298-d8219daa94ed)
)
(wire (pts (xy 146.05 28.575) (xy 144.78 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c12dc970-0df3-42ca-9793-9a82b6bb9d7f)
)
(wire (pts (xy 107.95 66.675) (xy 107.95 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c1ef0a4c-b59e-4bb0-9fde-0b35908f57d5)
)
(wire (pts (xy 146.05 104.14) (xy 146.05 106.68))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c211f7c4-471e-4f0d-86ad-a71e67727852)
)
(wire (pts (xy 57.15 47.625) (xy 57.15 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7086f76-7f2c-4dc4-b66a-983eb672bc16)
)
(wire (pts (xy 171.45 74.295) (xy 171.45 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c874b682-4274-4fa7-91cd-2866dc5679b9)
)
(wire (pts (xy 120.65 47.625) (xy 120.65 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c895a4d1-a3e2-47d2-a8fc-e1b5c4f3e3d9)
)
(wire (pts (xy 107.95 85.725) (xy 109.22 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c8ff7c00-4fee-4de2-b9bf-c4de81dddb73)
)
(wire (pts (xy 69.85 57.15) (xy 95.25 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c99de5c2-65b1-4501-b7f3-cba5f9ea11c1)
)
(wire (pts (xy 69.85 93.345) (xy 69.85 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c9ab6fce-4271-4a17-aac4-182b2cba9e1b)
)
(wire (pts (xy 69.85 38.1) (xy 95.25 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ca552943-e577-4af7-b97a-65d66b2f658d)
)
(wire (pts (xy 158.75 85.725) (xy 158.75 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ccde804f-80f4-49fa-adc1-9ca37822a061)
)
(wire (pts (xy 44.45 85.725) (xy 43.18 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cd7a659b-5f11-48e5-9dda-84233a5274fa)
)
(wire (pts (xy 120.65 85.725) (xy 120.65 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ce1e696c-bb91-4ab5-8d5e-1fd78829da7c)
)
(wire (pts (xy 133.35 28.575) (xy 134.62 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d0f96b94-1ea5-4367-b365-2707c7458fa0)
)
(wire (pts (xy 120.65 85.725) (xy 119.38 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d1a44e52-1bc2-406f-a006-1e559acad79f)
)
(wire (pts (xy 171.45 66.675) (xy 170.18 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d3a14d46-d158-4101-82e6-eb23519ef439)
)
(wire (pts (xy 57.15 85.725) (xy 58.42 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d5d93e95-2e78-47f3-8a63-fad12ec2797a)
)
(wire (pts (xy 82.55 47.625) (xy 82.55 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d685ad24-cdf4-472d-a120-be9e9be8a18f)
)
(wire (pts (xy 146.05 85.725) (xy 146.05 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d778f45d-b136-4ece-94a9-596eaa9dfa04)
)
(wire (pts (xy 171.45 55.88) (xy 171.45 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d8b8133a-9ee6-4bd6-acce-b801c258f0a3)
)
(wire (pts (xy 107.95 104.14) (xy 109.22 104.14))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d91f2c04-5411-480f-bbe1-c461afaf33cb)
)
(wire (pts (xy 69.85 74.295) (xy 69.85 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d9b5a36f-00f8-4cbb-9b93-c769795fabc6)
)
(wire (pts (xy 82.55 28.575) (xy 83.82 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid da9134a1-483b-4149-a4c4-af957e44e547)
)
(wire (pts (xy 132.08 28.575) (xy 133.35 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dcf6b4bd-f6d5-4064-b48a-23fd6be7d9d0)
)
(wire (pts (xy 120.65 114.3) (xy 146.05 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dddfc2f0-e2fb-45b4-8ffd-b4720ff813d1)
)
(wire (pts (xy 25.4 38.1) (xy 44.45 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid de9f245d-147f-41e0-afbc-8f51b2275fb2)
)
(wire (pts (xy 69.85 28.575) (xy 68.58 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dfa4ea03-2b56-4e10-8d5e-7648bf74b81e)
)
(wire (pts (xy 133.35 66.675) (xy 133.35 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e5d807b5-71b5-431b-9a27-f5256bbbc783)
)
(wire (pts (xy 146.05 66.675) (xy 144.78 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e67e58ff-c2ed-4156-ae5e-9bf2803a3e1f)
)
(wire (pts (xy 158.75 28.575) (xy 160.02 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ec41e73c-896c-4024-b78e-573cac90f9b6)
)
(wire (pts (xy 171.45 111.76) (xy 171.45 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ee19f550-cf6a-4a06-b5af-d4de04ab2707)
)
(wire (pts (xy 31.75 47.625) (xy 31.75 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f533d576-708e-4aaf-970b-e6c85fd7d8d1)
)
(wire (pts (xy 95.25 47.625) (xy 95.25 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f5c7ff2e-c999-47c8-be9b-6c32c2af8946)
)
(wire (pts (xy 82.55 28.575) (xy 82.55 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f8e1ec71-c4dc-4c44-8763-5bcdc8f70b0a)
)
(wire (pts (xy 69.85 55.88) (xy 69.85 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f989a89b-4a23-47bb-964a-93e3eadc8c25)
)
(wire (pts (xy 69.85 66.675) (xy 69.85 69.215))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f9b2eb58-da17-45f2-bd92-9395ac59d0af)
)
(wire (pts (xy 44.45 28.575) (xy 43.18 28.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fc602c92-a395-45ae-80dc-d8f99b4a3913)
)
(wire (pts (xy 25.4 95.25) (xy 44.45 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ffc7bb21-41c1-4e6a-bc2f-bfbc1f52c559)
)
(text "Switch Matrix\n" (at 13.335 17.78 0)
(effects (font (size 2.54 2.54) italic) (justify left bottom))
(uuid 136ed157-e5f8-4d76-995c-02edfcbf6fec)
)
(global_label "ROW1" (shape output) (at 25.4 38.1 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0afe5e4a-e6e5-463e-90c9-90d50a7d8522)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 17.7255 38.0206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW4" (shape output) (at 25.4 95.25 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 13799e5b-023e-4fb3-b027-4561a7d09e34)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 17.7255 95.1706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL5" (shape input) (at 132.08 28.575 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 42d036fa-9b1c-479e-a695-695c7aa0444a)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 124.8288 28.4956 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW2" (shape output) (at 25.4 57.15 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 49526580-0340-4d08-8eac-f390f3379168)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 17.7255 57.0706 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW5" (shape output) (at 25.4 114.3 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4d5192d6-07da-4729-bac9-852b61891890)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 17.7255 114.2206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "ROW3" (shape output) (at 25.4 76.2 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 5b3a2a3c-f527-49c6-b716-dc6e11aec10b)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 17.7255 76.1206 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL3" (shape input) (at 81.28 28.575 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 63166360-3a0f-47be-8535-828c6f79b6e4)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 74.0288 28.4956 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL6" (shape input) (at 157.48 28.575 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a231b371-54d8-41d2-84d1-8ca8861e86ff)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 150.2288 28.4956 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL2" (shape input) (at 55.88 28.575 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid a41ae822-6f36-4d2d-8ab1-02a310e3a5c4)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 48.6288 28.4956 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "COL4" (shape input) (at 106.68 28.575 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid c1d41137-20dd-4798-b45a-4646807e31e8)
(property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 99.4288 28.4956 0)