-
Notifications
You must be signed in to change notification settings - Fork 7
/
A600KB.kicad_pcb
3663 lines (3575 loc) · 328 KB
/
A600KB.kicad_pcb
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_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A3")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(pcbplotparams
(layerselection 0x00011c0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer false)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference false)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "fab/New/")
)
)
(net 0 "")
(net 1 "Net-(J1-Pad1)")
(net 2 "/2")
(net 3 "/3")
(net 4 "/4")
(net 5 "/5")
(net 6 "/6")
(net 7 "/7")
(net 8 "/8")
(net 9 "/9")
(net 10 "/10")
(net 11 "/11")
(net 12 "/12")
(net 13 "/13")
(net 14 "/14")
(net 15 "/15")
(net 16 "/16")
(net 17 "/17")
(net 18 "/18")
(net 19 "/19")
(net 20 "/20")
(net 21 "/21")
(net 22 "/22")
(net 23 "/23")
(net 24 "/24")
(net 25 "/25")
(net 26 "/26")
(net 27 "/27")
(net 28 "/28")
(net 29 "/29")
(net 30 "/30")
(net 31 "unconnected-(J1-Pad31)")
(net 32 "unconnected-(J1-Pad32)")
(footprint "MX_Only:MXOnly-1.25U-NoLED" (layer "F.Cu")
(tedit 5BD3C68C) (tstamp 00000000-0000-0000-0000-00005dd0a8dc)
(at 57.023 50.038)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005daffa4f")
(attr through_hole)
(fp_text reference "MX1" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506)
)
(fp_text value "ESC" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6)
)
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 127679a9-3981-4934-815e-896a4e3ff56e))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 48ab88d7-7084-4d02-b109-3ad55a30bb11))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 716e31c5-485f-40b5-88e3-a75900da9811))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 8174b4de-74b1-48db-ab8e-c8432251095b))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp b1086f75-01ba-4188-8d36-75a9e2828ca9))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp f71da641-16e6-4257-80c3-0b9d804fee4f))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 0f22151c-f260-4674-b486-4710a2c42a55))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp c41b3c8b-634e-435a-b582-96b83bbd4032))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 1 "Net-(J1-Pad1)") (pinfunction "COL") (pintype "passive") (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 15 "/15") (pinfunction "ROW") (pintype "passive") (tstamp ce83728b-bebd-48c2-8734-b6a50d837931))
)
(footprint "MX_Only:MXOnly-1.25U-NoLED" (layer "F.Cu")
(tedit 5BD3C68C) (tstamp 00000000-0000-0000-0000-00005dd0a8f1)
(at 90.043 50.038)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db00c4e")
(attr through_hole)
(fp_text reference "MX2" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5)
)
(fp_text value "F1" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 29e78086-2175-405e-9ba3-c48766d2f50c)
)
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 94a873dc-af67-4ef9-8159-1f7c93eeb3d7))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 1 "Net-(J1-Pad1)") (pinfunction "COL") (pintype "passive") (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 17 "/17") (pinfunction "ROW") (pintype "passive") (tstamp bdc7face-9f7c-4701-80bb-4cc144448db1))
)
(footprint "MX_Only:MXOnly-1.25U-NoLED" (layer "F.Cu")
(tedit 5BD3C68C) (tstamp 00000000-0000-0000-0000-00005dd0a906)
(at 113.792 50.038)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db01381")
(attr through_hole)
(fp_text reference "MX3" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78)
)
(fp_text value "F2" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6)
)
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 2d6db888-4e40-41c8-b701-07170fc894bc))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5528bcad-2950-4673-90eb-c37e6952c475))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 66043bca-a260-4915-9fce-8a51d324c687))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 7bbf981c-a063-4e30-8911-e4228e1c0743))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 852dabbf-de45-4470-8176-59d37a754407))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp b5352a33-563a-4ffe-a231-2e68fb54afa3))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 1 "Net-(J1-Pad1)") (pinfunction "COL") (pintype "passive") (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 18 "/18") (pinfunction "ROW") (pintype "passive") (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
)
(footprint "MX_Only:MXOnly-1.25U-NoLED" (layer "F.Cu")
(tedit 5BD3C68C) (tstamp 00000000-0000-0000-0000-00005dd0a91b)
(at 137.541 50.038)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db019a3")
(attr through_hole)
(fp_text reference "MX4" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8da933a9-35f8-42e6-8504-d1bab7264306)
)
(fp_text value "F3" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8)
)
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 1 "Net-(J1-Pad1)") (pinfunction "COL") (pintype "passive") (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 19 "/19") (pinfunction "ROW") (pintype "passive") (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
)
(footprint "MX_Only:MXOnly-1.25U-NoLED" (layer "F.Cu")
(tedit 5BD3C68C) (tstamp 00000000-0000-0000-0000-00005dd0a930)
(at 161.29 50.038)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db01f1c")
(attr through_hole)
(fp_text reference "MX5" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e)
)
(fp_text value "F4" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c)
)
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp a15a7506-eae4-4933-84da-9ad754258706))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp c43663ee-9a0d-4f27-a292-89ba89964065))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp d3c11c8f-a73d-4211-934b-a6da255728ad))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 1f3003e6-dce5-420f-906b-3f1e92b67249))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 8ca3e20d-bcc7-4c5e-9deb-562dfed9fecb))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 1 "Net-(J1-Pad1)") (pinfunction "COL") (pintype "passive") (tstamp 03caada9-9e22-4e2d-9035-b15433dfbb17))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 20 "/20") (pinfunction "ROW") (pintype "passive") (tstamp 639c0e59-e95c-4114-bccd-2e7277505454))
)
(footprint "MX_Only:MXOnly-1.25U-NoLED" (layer "F.Cu")
(tedit 5BD3C68C) (tstamp 00000000-0000-0000-0000-00005dd0a945)
(at 185.039 50.038)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db027eb")
(attr through_hole)
(fp_text reference "MX6" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df32840e-2912-4088-b54c-9a85f64c0265)
)
(fp_text value "F5" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c332fa55-4168-4f55-88a5-f82c7c21040b)
)
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 0755aee5-bc01-4cb5-b830-583289df50a3))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 4a21e717-d46d-4d9e-8b98-af4ecb02d3ec))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 4fb21471-41be-4be8-9687-66030f97befc))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 68877d35-b796-44db-9124-b8e744e7412e))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 7599133e-c681-4202-85d9-c20dac196c64))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp dde51ae5-b215-445e-92bb-4a12ec410531))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp ec31c074-17b2-48e1-ab01-071acad3fa04))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 1 "Net-(J1-Pad1)") (pinfunction "COL") (pintype "passive") (tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 21 "/21") (pinfunction "ROW") (pintype "passive") (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
)
(footprint "MX_Only:MXOnly-1.25U-NoLED" (layer "F.Cu")
(tedit 5BD3C68C) (tstamp 00000000-0000-0000-0000-00005dd0a95a)
(at 218.821 50.038)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db02fec")
(attr through_hole)
(fp_text reference "MX7" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d)
)
(fp_text value "F6" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955)
)
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 770ad51a-7219-4633-b24a-bd20feb0a6c5))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp b7199d9b-bebb-4100-9ad3-c2bd31e21d65))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp db36f6e3-e72a-487f-bda9-88cc84536f62))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp f3628265-0155-43e2-a467-c40ff783e265))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 182b2d54-931d-49d6-9f39-60a752623e36))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 1 "Net-(J1-Pad1)") (pinfunction "COL") (pintype "passive") (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 23 "/23") (pinfunction "ROW") (pintype "passive") (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa))
)
(footprint "MX_Only:MXOnly-1.25U-NoLED" (layer "F.Cu")
(tedit 5BD3C68C) (tstamp 00000000-0000-0000-0000-00005dd0a96f)
(at 242.57 50.038)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db03f7a")
(attr through_hole)
(fp_text reference "MX8" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd065eaf-e495-4837-bdb3-129934de1fc7)
)
(fp_text value "F7" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167)
)
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 14769dc5-8525-4984-8b15-a734ee247efa))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 1 "Net-(J1-Pad1)") (pinfunction "COL") (pintype "passive") (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 25 "/25") (pinfunction "ROW") (pintype "passive") (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
)
(footprint "MX_Only:MXOnly-1.25U-NoLED" (layer "F.Cu")
(tedit 5BD3C68C) (tstamp 00000000-0000-0000-0000-00005dd0a984)
(at 266.319 50.038)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db04a08")
(attr through_hole)
(fp_text reference "MX9" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d)
)
(fp_text value "F8" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14c51520-6d91-4098-a59a-5121f2a898f7)
)
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 097edb1b-8998-4e70-b670-bba125982348))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 2d67a417-188f-4014-9282-000265d80009))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 87d7448e-e139-4209-ae0b-372f805267da))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 1 "Net-(J1-Pad1)") (pinfunction "COL") (pintype "passive") (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 26 "/26") (pinfunction "ROW") (pintype "passive") (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
)
(footprint "MX_Only:MXOnly-1.25U-NoLED" (layer "F.Cu")
(tedit 5BD3C68C) (tstamp 00000000-0000-0000-0000-00005dd0a999)
(at 290.195 50.038)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db05135")
(attr through_hole)
(fp_text reference "MX10" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb)
)
(fp_text value "F9" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151)
)
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 101ef598-601d-400e-9ef6-d655fbb1dbfa))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 15fe8f3d-6077-4e0e-81d0-8ec3f4538981))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 35a9f71f-ba35-47f6-814e-4106ac36c51e))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5b34a16c-5a14-4291-8242-ea6d6ac54372))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 6781326c-6e0d-4753-8f28-0f5c687e01f9))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 7f52d787-caa3-4a92-b1b2-19d554dc29a4))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 814763c2-92e5-4a2c-941c-9bbd073f6e87))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp c094494a-f6f7-43fc-a007-4951484ddf3a))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp c701ee8e-1214-4781-a973-17bef7b6e3eb))
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp c8029a4c-945d-42ca-871a-dd73ff50a1a3))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp e40e8cef-4fb0-4fc3-be09-3875b2cc8469))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 82be7aae-5d06-4178-8c3e-98760c41b054))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp e65b62be-e01b-4688-a999-1d1be370c4ae))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 1 "Net-(J1-Pad1)") (pinfunction "COL") (pintype "passive") (tstamp e1535036-5d36-405f-bb86-3819621c4f23))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 27 "/27") (pinfunction "ROW") (pintype "passive") (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110))
)
(footprint "MX_Only:MXOnly-1.25U-NoLED" (layer "F.Cu")
(tedit 5BD3C68C) (tstamp 00000000-0000-0000-0000-00005dd0a9ae)
(at 314.071 50.038)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db05726")
(attr through_hole)
(fp_text reference "MX11" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9193c41e-d425-447d-b95c-6986d66ea01c)
)
(fp_text value "F10" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a)
)
(fp_line (start 11.90625 -9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459))
(fp_line (start -11.90625 9.525) (end 11.90625 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 3fd54105-4b7e-4004-9801-76ec66108a22))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 6fd4442e-30b3-428b-9306-61418a63d311))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 8d0c1d66-35ef-4a53-a28f-436a11b54f42))
(fp_line (start -11.90625 -9.525) (end 11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490))
(fp_line (start -11.90625 9.525) (end -11.90625 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 1 "Net-(J1-Pad1)") (pinfunction "COL") (pintype "passive") (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 28 "/28") (pinfunction "ROW") (pintype "passive") (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af))
)
(footprint "MX_Only:MXOnly-1.5U-NoLED" (layer "F.Cu")
(tedit 5BD3C5FF) (tstamp 00000000-0000-0000-0000-00005dd0a9c3)
(at 59.055 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db434d3")
(attr through_hole)
(fp_text reference "MX12" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4632212f-13ce-4392-bc68-ccb9ba333770)
)
(fp_text value "TILDE" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb16d05e-318b-4e51-867b-70d791d75bea)
)
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c))
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 262f1ea9-0133-4b43-be36-456207ea857c))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9))
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49))
(fp_line (start -14.2875 9.525) (end 14.2875 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp a5e521b9-814e-4853-a5ac-f158785c6269))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp ec5c2062-3a41-4636-8803-069e60a1641a))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 81a15393-727e-448b-a777-b18773023d89))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp a4f86a46-3bc8-4daa-9125-a63f297eb114))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp 22999e73-da32-43a5-9163-4b3a41614f25))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 15 "/15") (pinfunction "ROW") (pintype "passive") (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4))
)
(footprint "MX_Only:MXOnly-1U-NoLED" (layer "F.Cu")
(tedit 5BD3C6C7) (tstamp 00000000-0000-0000-0000-00005dd0a9d8)
(at 82.931 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db45e18")
(attr through_hole)
(fp_text reference "MX13" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 592f25e6-a01b-47fd-8172-3da01117d00a)
)
(fp_text value "1" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb614b23-9af3-4aec-bed8-c1374e001510)
)
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 2846428d-39de-4eae-8ce2-64955d56c493))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 59ec3156-036e-4049-89db-91a9dd07095f))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 16 "/16") (pinfunction "ROW") (pintype "passive") (tstamp eee16674-2d21-45b6-ab5e-d669125df26c))
)
(footprint "MX_Only:MXOnly-1U-NoLED" (layer "F.Cu")
(tedit 5BD3C6C7) (tstamp 00000000-0000-0000-0000-00005dd0a9ed)
(at 101.981 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db48762")
(attr through_hole)
(fp_text reference "MX14" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313)
)
(fp_text value "2" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583)
)
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 17 "/17") (pinfunction "ROW") (pintype "passive") (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35))
)
(footprint "MX_Only:MXOnly-1U-NoLED" (layer "F.Cu")
(tedit 5BD3C6C7) (tstamp 00000000-0000-0000-0000-00005dd0aa02)
(at 121.031 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db4b279")
(attr through_hole)
(fp_text reference "MX15" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354)
)
(fp_text value "3" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 998b7fa5-31a5-472e-9572-49d5226d6098)
)
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 0cc45b5b-96b3-4284-9cae-a3a9e324a916))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 109caac1-5036-4f23-9a66-f569d871501b))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 6b7c1048-12b6-46b2-b762-fa3ad30472dd))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 7c04618d-9115-4179-b234-a8faf854ea92))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp f1447ad6-651c-45be-a2d6-33bddf672c2c))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp f6c644f4-3036-41a6-9e14-2c08c079c6cd))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 4a850cb6-bb24-4274-a902-e49f34f0a0e3))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 700e8b73-5976-423f-a3f3-ab3d9f3e9760))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp e5203297-b913-4288-a576-12a92185cb52))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp 1f8b2c0c-b042-4e2e-80f6-4959a27b238f))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 18 "/18") (pinfunction "ROW") (pintype "passive") (tstamp b4300db7-1220-431a-b7c3-2edbdf8fa6fc))
)
(footprint "MX_Only:MXOnly-1U-NoLED" (layer "F.Cu")
(tedit 5BD3C6C7) (tstamp 00000000-0000-0000-0000-00005dd0aa17)
(at 140.081 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db4dfd3")
(attr through_hole)
(fp_text reference "MX16" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c04386e0-b49e-4fff-b380-675af13a62cb)
)
(fp_text value "4" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5)
)
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 0ae82096-0994-4fb0-9a2a-d4ac4804abac))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 0f324b67-75ef-407f-8dbc-3c1fc5c2abba))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 1c68b844-c861-46b7-b734-0242168a4220))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 4107d40a-e5df-4255-aacc-13f9928e090c))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 4b03e854-02fe-44cc-bece-f8268b7cae54))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 8195a7cf-4576-44dd-9e0e-ee048fdb93dd))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp b5071759-a4d7-4769-be02-251f23cd4454))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp cada57e2-1fa7-4b9d-a2a0-2218773d5c50))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp d2d7bea6-0c22-495f-8666-323b30e03150))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp e0f06b5c-de63-4833-a591-ca9e19217a35))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp e7bb7815-0d52-4bb8-b29a-8cf960bd2905))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 9f80220c-1612-4589-b9ca-a5579617bdb8))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp d21cc5e4-177a-4e1d-a8d5-060ed33e5b8e))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp fef37e8b-0ff0-4da2-8a57-acaf19551d1a))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp 224768bc-6009-43ba-aa4a-70cbaa15b5a3))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 19 "/19") (pinfunction "ROW") (pintype "passive") (tstamp 752417ee-7d0b-4ac8-a22c-26669881a2ab))
)
(footprint "MX_Only:MXOnly-1U-NoLED" (layer "F.Cu")
(tedit 5BD3C6C7) (tstamp 00000000-0000-0000-0000-00005dd0aa2c)
(at 159.131 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db50e94")
(attr through_hole)
(fp_text reference "MX17" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 34d03349-6d78-4165-a683-2d8b76f2bae8)
)
(fp_text value "5" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb4b1afc-c46e-451d-8dad-36b7dec82f26)
)
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 026ac84e-b8b2-4dd2-b675-8323c24fd778))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 0bcafe80-ffba-4f1e-ae51-95a595b006db))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 26801cfb-b53b-4a6a-a2f4-5f4986565765))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 34cdc1c9-c9e2-44c4-9677-c1c7d7efd83d))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 37b6c6d6-3e12-4736-912a-ea6e2bf06721))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 86dc7a78-7d51-4111-9eea-8a8f7977eb16))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp aa79024d-ca7e-4c24-b127-7df08bbd0c75))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp c49d23ab-146d-4089-864f-2d22b5b414b9))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp c7af8405-da2e-4a34-b9b8-518f342f8995))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp da25bf79-0abb-4fac-a221-ca5c574dfc29))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp e32ee344-1030-4498-9cac-bfbf7540faf4))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp f78e02cd-9600-4173-be8d-67e530b5d19f))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 71989e06-8659-4605-b2da-4f729cc41263))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 9a0b74a5-4879-4b51-8e8e-6d85a0107422))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp f66398f1-1ae7-4d4d-939f-958c174c6bce))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp 088f77ba-fca9-42b3-876e-a6937267f957))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 20 "/20") (pinfunction "ROW") (pintype "passive") (tstamp 6f80f798-dc24-438f-a1eb-4ee2936267c8))
)
(footprint "MX_Only:MXOnly-1U-NoLED" (layer "F.Cu")
(tedit 5BD3C6C7) (tstamp 00000000-0000-0000-0000-00005dd0aa41)
(at 178.181 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db53fb4")
(attr through_hole)
(fp_text reference "MX18" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8fc062a7-114d-48eb-a8f8-71128838f380)
)
(fp_text value "6" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f411f68-04bd-4175-a406-bcaa4cf6601e)
)
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 00e38d63-5436-49db-81f5-697421f168fc))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 155b0b7c-70b4-4a26-a550-bac13cab0aa4))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 1fa508ef-df83-4c99-846b-9acf535b3ad9))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 38a501e2-0ee8-439d-bd02-e9e90e7503e9))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 399fc36a-ed5d-44b5-82f7-c6f83d9acc14))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 61fe4c73-be59-4519-98f1-a634322a841d))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 699feae1-8cdd-4d2b-947f-f24849c73cdb))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 70e4263f-d95a-4431-b3f3-cfc800c82056))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp c0c2eb8e-f6d1-4506-8e6b-4f995ad74c1f))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp e5864fe6-2a71-47f0-90ce-38c3f8901580))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp f9c81c26-f253-4227-a69f-53e64841cfbe))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp fbe8ebfc-2a8e-4eb8-85c5-38ddeaa5dd00))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp b6cd701f-4223-4e72-a305-466869ccb250))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp d88958ac-68cd-4955-a63f-0eaa329dec86))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp e7e08b48-3d04-49da-8349-6de530a20c67))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp af347946-e3da-4427-87ab-77b747929f50))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 21 "/21") (pinfunction "ROW") (pintype "passive") (tstamp 9bac9ad3-a7b9-47f0-87c7-d8630653df68))
)
(footprint "MX_Only:MXOnly-1U-NoLED" (layer "F.Cu")
(tedit 5BD3C6C7) (tstamp 00000000-0000-0000-0000-00005dd0aa56)
(at 197.231 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db57563")
(attr through_hole)
(fp_text reference "MX19" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8fcec304-c6b1-4655-8326-beacd0476953)
)
(fp_text value "7" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 411d4270-c66c-4318-b7fb-1470d34862b8)
)
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 009b5465-0a65-4237-93e7-eb65321eeb18))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 00f3ea8b-8a54-4e56-84ff-d98f6c00496c))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 0520f61d-4522-4301-a3fa-8ed0bf060f69))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 221bef83-3ea7-4d3f-adeb-53a8a07c6273))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 4ba06b66-7669-4c70-b585-f5d4c9c33527))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 60ff6322-62e2-4602-9bc0-7a0f0a5ecfbf))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 9186fd02-f30d-4e17-aa38-378ab73e3908))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp aa130053-a451-4f12-97f7-3d4d891a5f83))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp bc0dbc57-3ae8-4ce5-a05c-2d6003bba475))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp c8b92953-cd23-44e6-85ce-083fb8c3f20f))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp e7369115-d491-4ef3-be3d-f5298992c3e8))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 477892a1-722e-4cda-bb6c-fcdb8ba5f93e))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 479331ff-c540-41f4-84e6-b48d65171e59))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp cc15f583-a41b-43af-ba94-a75455506a96))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp b09666f9-12f1-4ee9-8877-2292c94258ca))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 22 "/22") (pinfunction "ROW") (pintype "passive") (tstamp 4d586a18-26c5-441e-a9ff-8125ee516126))
)
(footprint "MX_Only:MXOnly-1U-NoLED" (layer "F.Cu")
(tedit 5BD3C6C7) (tstamp 00000000-0000-0000-0000-00005dd0aa6b)
(at 216.281 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db5a5f5")
(attr through_hole)
(fp_text reference "MX20" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a24ce0e2-fdd3-4e6a-b754-5dee9713dd27)
)
(fp_text value "8" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3f43d730-2a73-49fe-9672-32428e7f5b49)
)
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 16121028-bdf5-49c0-aae7-e28fe5bfa771))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 4db55cb8-197b-4402-871f-ce582b65664b))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 6bd115d6-07e0-45db-8f2e-3cbb0429104f))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 9031bb33-c6aa-4758-bf5c-3274ed3ebab7))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 9186dae5-6dc3-4744-9f90-e697559c6ac8))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 97fe2a5c-4eee-4c7a-9c43-47749b396494))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 9aedbb9e-8340-4899-b813-05b23382a36b))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp d0a0deb1-4f0f-4ede-b730-2c6d67cb9618))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp e97b5984-9f0f-43a4-9b8a-838eef4cceb2))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp f1a9fb80-4cc4-410f-9616-e19c969dcab5))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp fa918b6d-f6cf-4471-be3b-4ff713f55a2e))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp fea7c5d1-76d6-41a0-b5e3-29889dbb8ce0))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp ae77c3c8-1144-468e-ad5b-a0b4090735bd))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp ce72ea62-9343-4a4f-81bf-8ac601f5d005))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp fb30f9bb-6a0b-4d8a-82b0-266eab794bc6))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp c3c499b1-9227-4e4b-9982-f9f1aa6203b9))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 23 "/23") (pinfunction "ROW") (pintype "passive") (tstamp 2454fd1b-3484-4838-8b7e-d26357238fe1))
)
(footprint "MX_Only:MXOnly-1U-NoLED" (layer "F.Cu")
(tedit 5BD3C6C7) (tstamp 00000000-0000-0000-0000-00005dd0aa80)
(at 235.331 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db6ceed")
(attr through_hole)
(fp_text reference "MX21" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1171ce37-6ad7-4662-bb68-5592c945ebf3)
)
(fp_text value "9" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4c9471f-7503-4339-928c-d1abae1eede6)
)
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 180245d9-4a3f-4d1b-adcc-b4eafac722e0))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 1fbb0219-551e-409b-a61b-76e8cebdfb9d))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 28e37b45-f843-47c2-85c9-ca19f5430ece))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 43707e99-bdd7-4b02-9974-540ed6c2b0aa))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 54212c01-b363-47b8-a145-45c40df316f4))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 79770cd5-32d7-429a-8248-0d9e6212231a))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 7bfba61b-6752-4a45-9ee6-5984dcb15041))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 99332785-d9f1-4363-9377-26ddc18e6d2c))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 99dfa524-0366-4808-b4e8-328fc38e8656))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp e17e6c0e-7e5b-43f0-ad48-0a2760b45b04))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp e4e20505-1208-4100-a4aa-676f50844c06))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp f8f3a9fc-1e34-4573-a767-508104e8d242))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 98914cc3-56fe-40bb-820a-3d157225c145))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 9dcdc92b-2219-4a4a-8954-45f02cc3ab25))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp dae72997-44fc-4275-b36f-cd70bf46cfba))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp 3c5e5ea9-793d-46e3-86bc-5884c4490dc7))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 24 "/24") (pinfunction "ROW") (pintype "passive") (tstamp 88610282-a92d-4c3d-917a-ea95d59e0759))
)
(footprint "MX_Only:MXOnly-1U-NoLED" (layer "F.Cu")
(tedit 5BD3C6C7) (tstamp 00000000-0000-0000-0000-00005dd0aa95)
(at 254.381 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db5dbf1")
(attr through_hole)
(fp_text reference "MX22" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d4fecdd-be4a-47e9-9085-2268d5852d8f)
)
(fp_text value "0" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8458d41c-5d62-455d-b6e1-9f718c0faac9)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 0fd35a3e-b394-4aae-875a-fac843f9cbb7))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 4185c36c-c66e-4dbd-be5d-841e551f4885))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 71c6e723-673c-45a9-a0e4-9742220c52a3))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 8de2d84c-ff45-4d4f-bc49-c166f6ae6b91))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 935057d5-6882-4c15-9a35-54677912ba12))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp a8b4bc7e-da32-4fb8-b71a-d7b47c6f741f))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp b4833916-7a3e-4498-86fb-ec6d13262ffe))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp c088f712-1abe-4cac-9a8b-d564931395aa))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp cc48dd41-7768-48d3-b096-2c4cc2126c9d))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp e091e263-c616-48ef-a460-465c70218987))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp ea6fde00-59dc-4a79-a647-7e38199fae0e))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp f73b5500-6337-4860-a114-6e307f65ec9f))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 30317bf0-88bb-49e7-bf8b-9f3883982225))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp eab9c52c-3aa0-43a7-bc7f-7e234ff1e9f4))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp f959907b-1cef-4760-b043-4260a660a2ae))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp 3e915099-a18e-49f4-89bb-abe64c2dade5))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 25 "/25") (pinfunction "ROW") (pintype "passive") (tstamp d3d57924-54a6-421d-a3a0-a044fc909e88))
)
(footprint "MX_Only:MXOnly-1U-NoLED" (layer "F.Cu")
(tedit 5BD3C6C7) (tstamp 00000000-0000-0000-0000-00005dd0aaaa)
(at 273.431 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db60ea3")
(attr through_hole)
(fp_text reference "MX23" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f9ae101-c652-4998-a503-17aedf3d5746)
)
(fp_text value "-" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c30b9b4-3014-4f50-9329-27a539b67e01)
)
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 0a1a4d88-972a-46ce-b25e-6cb796bd41f7))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 29bb7297-26fb-4776-9266-2355d022bab0))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 36d783e7-096f-4c97-9672-7e08c083b87b))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 4c843bdb-6c9e-40dd-85e2-0567846e18ba))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 6ffdf05e-e119-49f9-85e9-13e4901df42a))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 72b36951-3ec7-4569-9c88-cf9b4afe1cae))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 9a2d648d-863a-4b7b-80f9-d537185c212b))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp bdf40d30-88ff-4479-bad1-69529464b61b))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp c4cab9c5-d6e5-4660-b910-603a51b56783))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp c9b9e62d-dede-4d1a-9a05-275614f8bdb2))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp cb6062da-8dcd-4826-92fd-4071e9e97213))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp eb8d02e9-145c-465d-b6a8-bae84d47a94b))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 30c33e3e-fb78-498d-bffe-76273d527004))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 57276367-9ce4-4738-88d7-6e8cb94c966c))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp e5217a0c-7f55-4c30-adda-7f8d95709d1b))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp 5b0a5a46-7b51-4262-a80e-d33dd1806615))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 26 "/26") (pinfunction "ROW") (pintype "passive") (tstamp c3b3d7f4-943f-4cff-b180-87ef3e1bcbff))
)
(footprint "MX_Only:MXOnly-1U-NoLED" (layer "F.Cu")
(tedit 5BD3C6C7) (tstamp 00000000-0000-0000-0000-00005dd0aabf)
(at 292.608 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db64608")
(attr through_hole)
(fp_text reference "MX24" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f8bd6470-fafd-47f2-8ed5-9449988187ce)
)
(fp_text value "=" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 22bb6c80-05a9-4d89-98b0-f4c23fe6c1ce)
)
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp 011ee658-718d-416a-85fd-961729cd1ee5))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 593b8647-0095-46cc-ba23-3cf2a86edb5e))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 60aa0ce8-9d0e-48ca-bbf9-866403979e9b))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 72508b1f-1505-46cb-9d37-2081c5a12aca))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 7a74c4b1-6243-4a12-85a2-bc41d346e7aa))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp 7d76d925-f900-42af-a03f-bb32d2381b09))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 802c2dc3-ca9f-491e-9d66-7893e89ac34c))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 8cd050d6-228c-4da0-9533-b4f8d14cfb34))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp bde95c06-433a-4c03-bc48-e3abcdb4e054))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp ed8a7f02-cf05-41d0-97b4-4388ef205e73))
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp eed466bf-cd88-4860-9abf-41a594ca08bd))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp f1e619ac-5067-41df-8384-776ec70a6093))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 18c61c95-8af1-4986-b67e-c7af9c15ab6b))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 2e90e294-82e1-45da-9bf1-b91dfe0dc8f6))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 7e1217ba-8a3d-4079-8d7b-b45f90cfbf53))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp a5be2cb8-c68d-4180-8412-69a6b4c5b1d4))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 27 "/27") (pinfunction "ROW") (pintype "passive") (tstamp 4e27930e-1827-4788-aa6b-487321d46602))
)
(footprint "MX_Only:MXOnly-1U-NoLED" (layer "F.Cu")
(tedit 5BD3C6C7) (tstamp 00000000-0000-0000-0000-00005dd0aad4)
(at 311.658 78.994)
(property "Sheetfile" "A600KB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005db67c50")
(attr through_hole)
(fp_text reference "MX25" (at 0 3.175) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b287f145-851e-45cc-b200-e62677b551d5)
)
(fp_text value "\\" (at 0 -7.9375) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d1eca865-05c5-48a4-96cf-ed5f8a640e25)
)
(fp_line (start 7 -7) (end 7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 2878a73c-5447-4cd9-8194-14f52ab9459c))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 3b686d17-1000-4762-ba31-589d599a3edf))
(fp_line (start 5 7) (end 7 7) (layer "Dwgs.User") (width 0.15) (tstamp 44646447-0a8e-4aec-a74e-22bf765d0f33))
(fp_line (start -5 -7) (end -7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 5701b80f-f006-4814-81c9-0c7f006088a9))
(fp_line (start -7 7) (end -5 7) (layer "Dwgs.User") (width 0.15) (tstamp 63c56ea4-91a3-4172-b9de-a4388cc8f894))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp 66bc2bca-dab7-4947-a0ff-403cdaf9fb89))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.15) (tstamp 9286cf02-1563-41d2-9931-c192c33bab31))
(fp_line (start 5 -7) (end 7 -7) (layer "Dwgs.User") (width 0.15) (tstamp 955cc99e-a129-42cf-abc7-aa99813fdb5f))
(fp_line (start -7 -7) (end -7 -5) (layer "Dwgs.User") (width 0.15) (tstamp 9b6bb172-1ac4-440a-ac75-c1917d9d59c7))
(fp_line (start -7 5) (end -7 7) (layer "Dwgs.User") (width 0.15) (tstamp c25449d6-d734-4953-b762-98f82a830248))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.15) (tstamp cebb9021-66d3-4116-98d4-5e6f3c1552be))
(fp_line (start 7 7) (end 7 5) (layer "Dwgs.User") (width 0.15) (tstamp d7e4abd8-69f5-4706-b12e-898194e5bf56))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 008da5b9-6f95-4113-b7d0-d93ac62efd33))
(pad "" np_thru_hole circle locked (at 5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 04cf2f2c-74bf-400d-b4f6-201720df00ed))
(pad "" np_thru_hole circle locked (at -5.08 0 48.0996) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 1bdd5841-68b7-42e2-9447-cbdb608d8a08))
(pad "1" thru_hole circle locked (at -3.81 -2.54) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 2 "/2") (pinfunction "COL") (pintype "passive") (tstamp aeb03be9-98f0-43f6-9432-1bb35aa04bab))
(pad "2" thru_hole circle locked (at 2.54 -5.08) (size 2.25 2.25) (drill 1.47) (layers *.Cu "B.Mask")
(net 28 "/28") (pinfunction "ROW") (pintype "passive") (tstamp 5d3d7893-1d11-4f1d-9052-85cf0e07d281))