-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZX Interface 1 ROM 39SF010.kicad_pcb
7319 lines (7298 loc) · 317 KB
/
ZX Interface 1 ROM 39SF010.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 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "ZX Interface 1 ROM Gerbers/")
)
)
(net 0 "")
(net 1 "/VCC")
(net 2 "GND")
(net 3 "/A7")
(net 4 "/A6")
(net 5 "/A5")
(net 6 "/A3")
(net 7 "/A2")
(net 8 "/A1")
(net 9 "/A0")
(net 10 "/D0")
(net 11 "/D1")
(net 12 "/D2")
(net 13 "/D3")
(net 14 "/D4")
(net 15 "/D5")
(net 16 "/D6")
(net 17 "/D7")
(net 18 "/A11")
(net 19 "/A10")
(net 20 "/CS1")
(net 21 "/A12")
(net 22 "/A9")
(net 23 "/A8")
(net 24 "Net-(J1-Pin_1)")
(net 25 "Net-(J1-Pin_2)")
(net 26 "Net-(J1-Pin_3)")
(net 27 "Net-(J1-Pin_4)")
(net 28 "Net-(J1-Pin_5)")
(net 29 "Net-(J1-Pin_6)")
(net 30 "Net-(J1-Pin_7)")
(net 31 "Net-(J1-Pin_8)")
(net 32 "Net-(R2-Pad2)")
(net 33 "/A4")
(footprint "Package_SO:TSOP-I-32_12.4x8mm_P0.5mm" locked (layer "F.Cu")
(tstamp 85960450-d0ae-4612-8ef9-eaaf2526477b)
(at 158.625 118.975 -90)
(descr "TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BA), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "TSOP-I SO")
(property "Sheetfile" "ZX Interface 1 ROM 39SF010.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Silicon Storage Technology (SSF) 128k x 8 Flash ROM")
(property "ki_keywords" "128k flash rom")
(path "/1453af5a-9773-43ec-abb2-cd2271cc4230")
(attr smd)
(fp_text reference "U1" (at 0 -4.95 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 73b214c9-48cf-4d22-b5a6-00164e74cc07)
)
(fp_text value "SST39SF040A TSOP" (at 0 4.95 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ae011cd-14aa-410d-966a-7e88d5d57e74)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ac5a10e-e3df-49b0-9f07-98633d66fc55)
)
(fp_line (start 0 -4.16) (end -7.475 -4.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b99670d5-a51f-4926-bd87-c0f7eec6dbf1))
(fp_line (start 0 -4.16) (end 6.2 -4.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b487517-9196-4e1c-a37d-d4dfbbe0b25d))
(fp_line (start 0 4.16) (end -6.2 4.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61824fb4-a4b9-4601-8fde-c824b7a561ba))
(fp_line (start 0 4.16) (end 6.2 4.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e688ebbf-2ef8-4018-959e-986d68901706))
(fp_line (start -7.72 -4.25) (end -7.72 4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 28c800b3-3571-4043-bb9b-99da3fac7efd))
(fp_line (start -7.72 4.25) (end 7.72 4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c1bf504-6744-4ade-af66-ac09196215b5))
(fp_line (start 7.72 -4.25) (end -7.72 -4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 795881f7-88e1-4156-afc3-55341b319b30))
(fp_line (start 7.72 4.25) (end 7.72 -4.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4813bf8f-edb8-4a36-b4cb-83f3699fae3a))
(fp_line (start -6.2 -3) (end -5.2 -4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93d2079d-d02c-4486-a732-bba6c55bee2b))
(fp_line (start -6.2 4) (end -6.2 -3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5e6c324-ab3e-4c6c-8cd5-51c977ff9603))
(fp_line (start -5.2 -4) (end 6.2 -4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f3a17834-47b2-4171-9ec3-d573e224d5f9))
(fp_line (start 6.2 -4) (end 6.2 4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb83cc31-d656-4472-84b2-1fbe0a89d8a3))
(fp_line (start 6.2 4) (end -6.2 4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c98c595-8f56-4aea-b497-3d415140784a))
(pad "1" smd roundrect locked (at -6.6875 -3.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/A11") (pinfunction "A11") (pintype "input") (tstamp 8b7a7c2f-79d3-4e89-9387-82484e88988d))
(pad "2" smd roundrect locked (at -6.6875 -3.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/A9") (pinfunction "A9") (pintype "input") (tstamp 45afdf9b-8a15-4348-8fe2-42617eefadc8))
(pad "3" smd roundrect locked (at -6.6875 -2.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/A8") (pinfunction "A8") (pintype "input") (tstamp ff53cb70-955c-4434-b5e2-7c4c71151b1f))
(pad "4" smd roundrect locked (at -6.6875 -2.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "Net-(J1-Pin_7)") (pinfunction "A13") (pintype "input") (tstamp 1e02495e-a414-4830-988e-02a8737e9fdd))
(pad "5" smd roundrect locked (at -6.6875 -1.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 29 "Net-(J1-Pin_6)") (pinfunction "A14") (pintype "input") (tstamp 06132dea-db92-4c43-a087-968581a0ec44))
(pad "6" smd roundrect locked (at -6.6875 -1.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "Net-(J1-Pin_3)") (pinfunction "A17") (pintype "input") (tstamp 30fa4907-f81f-420d-b6bb-2a9e28fbb975))
(pad "7" smd roundrect locked (at -6.6875 -0.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "Net-(J1-Pin_1)") (pinfunction "WE") (pintype "input") (tstamp 3776b5d7-1550-4c10-b23b-1fe2c39af048))
(pad "8" smd roundrect locked (at -6.6875 -0.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 9373b2d6-4637-4e0d-bc26-59b4ddefee45))
(pad "9" smd roundrect locked (at -6.6875 0.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "Net-(J1-Pin_2)") (pinfunction "A18") (pintype "input") (tstamp 3ac5676d-2e7f-451d-a4b8-abeb3300bd02))
(pad "10" smd roundrect locked (at -6.6875 0.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "Net-(J1-Pin_4)") (pinfunction "A16") (pintype "input") (tstamp 913a4d21-c64d-4346-a653-f66a18adb3d4))
(pad "11" smd roundrect locked (at -6.6875 1.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 28 "Net-(J1-Pin_5)") (pinfunction "A15") (pintype "input") (tstamp 3029617e-75e0-4095-ad3b-d5c2621d0a70))
(pad "12" smd roundrect locked (at -6.6875 1.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/A12") (pinfunction "A12") (pintype "input") (tstamp 32198663-f0ad-4e91-be88-f05b9d8a6022))
(pad "13" smd roundrect locked (at -6.6875 2.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/A7") (pinfunction "A7") (pintype "input") (tstamp e049b6f9-75a5-4bf6-8d71-df2b68228663))
(pad "14" smd roundrect locked (at -6.6875 2.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/A6") (pinfunction "A6") (pintype "input") (tstamp 2555829f-c859-4d2c-87e6-0c2a63468881))
(pad "15" smd roundrect locked (at -6.6875 3.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/A5") (pinfunction "A5") (pintype "input") (tstamp 793f6178-961c-4eb7-8779-45fd90ae2834))
(pad "16" smd roundrect locked (at -6.6875 3.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "/A4") (pinfunction "A4") (pintype "input") (tstamp 0e0dd33c-4208-4362-8d36-00bab2a983cb))
(pad "17" smd roundrect locked (at 6.6875 3.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/A3") (pinfunction "A3") (pintype "input") (tstamp 58476c6e-c5b0-4c3f-a908-465a3e72efe8))
(pad "18" smd roundrect locked (at 6.6875 3.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/A2") (pinfunction "A2") (pintype "input") (tstamp 5201d56f-fb5f-48de-930a-9f5da3836b7b))
(pad "19" smd roundrect locked (at 6.6875 2.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/A1") (pinfunction "A1") (pintype "input") (tstamp ad12a0bc-7408-4e8a-860f-5ed6afbcf556))
(pad "20" smd roundrect locked (at 6.6875 2.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/A0") (pinfunction "A0") (pintype "input") (tstamp 422239cf-6191-4ee9-b2d9-f67a66a18c44))
(pad "21" smd roundrect locked (at 6.6875 1.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/D0") (pinfunction "DQ0") (pintype "tri_state") (tstamp a9fff976-48aa-40f6-83ee-475ec16db3f5))
(pad "22" smd roundrect locked (at 6.6875 1.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/D1") (pinfunction "DQ1") (pintype "tri_state") (tstamp 8d9549b9-b944-4c1c-bc87-fc7625d54532))
(pad "23" smd roundrect locked (at 6.6875 0.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/D2") (pinfunction "DQ2") (pintype "bidirectional") (tstamp 62fdcf75-bddc-4a4c-8894-0b7d6a15261f))
(pad "24" smd roundrect locked (at 6.6875 0.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 20815b83-0cf3-47fa-8a63-976bd54a1ca7))
(pad "25" smd roundrect locked (at 6.6875 -0.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/D3") (pinfunction "DQ3") (pintype "bidirectional") (tstamp 883ea7b4-2be8-4ab4-a3c7-2db6e2559234))
(pad "26" smd roundrect locked (at 6.6875 -0.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/D4") (pinfunction "DQ4") (pintype "bidirectional") (tstamp 7fdd4a90-d01d-4a73-acac-e351480dfce3))
(pad "27" smd roundrect locked (at 6.6875 -1.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/D5") (pinfunction "DQ5") (pintype "bidirectional") (tstamp 06de3a3f-b0e1-48b5-b0f8-d83f0cbdf6a2))
(pad "28" smd roundrect locked (at 6.6875 -1.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/D6") (pinfunction "DQ6") (pintype "tri_state") (tstamp 88304af5-9d1f-46df-897f-b75ba43e516e))
(pad "29" smd roundrect locked (at 6.6875 -2.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/D7") (pinfunction "DQ7") (pintype "tri_state") (tstamp a62a9ec7-1422-49e9-934f-be8d2d877eb6))
(pad "30" smd roundrect locked (at 6.6875 -2.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "Net-(J1-Pin_8)") (pinfunction "CE") (pintype "input") (tstamp a8d7ac29-27f8-496e-b90c-ef23b1a35e0b))
(pad "31" smd roundrect locked (at 6.6875 -3.25 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/A10") (pinfunction "A10") (pintype "input") (tstamp c9dc49a9-7ee0-42c4-a850-06c80d58520c))
(pad "32" smd roundrect locked (at 6.6875 -3.75 270) (size 1.575 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/CS1") (pinfunction "0E") (pintype "input") (tstamp 9863743a-c63c-4665-96ae-3d0e9700b3f5))
(model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/TSOP-I-32_12.4x8mm_P0.5mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Switch:PinSocket_1x09_P2.54mm_HorizontalR" (layer "F.Cu")
(tstamp bd0c4335-ae92-49e2-a9d8-4ee49a3f06f9)
(at 180.321 107.4134)
(descr "Through hole angled socket strip, 1x09, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated")
(tags "Through hole angled socket strip THT 1x09 2.54mm single row")
(property "Sheetfile" "ZX Interface 1 ROM 39SF010.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x09, script generated")
(property "ki_keywords" "connector")
(path "/6fd8c6f8-f1f2-4076-973d-a7ed50a481e5")
(attr through_hole)
(fp_text reference "J1" (at -8.5916 -3.34325) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 018b779e-4430-4d82-bd0f-11b6452814cf)
)
(fp_text value "Conn_01x09_Pin" (at -4.38 23.09) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0dbee89a-6050-49e4-976d-690b608e4e02)
)
(fp_text user "${REFERENCE}" (at -4.385 10.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 494397dc-5e35-4cb9-909d-48177f4d9b5c)
)
(fp_line (start -11.27 -1.33) (end -11.27 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa31a61b-8af5-4c1a-b63d-5bacae5d16c8))
(fp_line (start -10.16 -1.33) (end -11.27 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a902deb-ecec-47c2-8bc0-6ffe50e36ab3))
(fp_line (start -8.7 -1.33) (end -8.7 21.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 39e08028-9bee-499e-b6af-f0e7a9a08128))
(fp_line (start -8.7 -0.36) (end -9.05 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 790a4694-d19f-4911-b939-f9e0bc026f6f))
(fp_line (start -8.7 0.36) (end -9.05 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 60f61a8e-2b13-43d7-b084-81da221fe4aa))
(fp_line (start -8.7 2.18) (end -9.11 2.18)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02f136f8-2a0c-436b-8ca0-92f725a15807))
(fp_line (start -8.7 2.9) (end -9.11 2.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8089d667-deb3-4927-949c-581f3529bf7a))
(fp_line (start -8.7 4.72) (end -9.11 4.72)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 60a323ee-f2be-40bc-a170-292d5ef4447c))
(fp_line (start -8.7 5.44) (end -9.11 5.44)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f2d9cef-26de-4e96-81c6-1ee840770f6b))
(fp_line (start -8.7 7.26) (end -9.11 7.26)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90f8bac8-b12e-4e40-9260-a22590afb606))
(fp_line (start -8.7 7.98) (end -9.11 7.98)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67cea09a-ff40-4315-be89-95ec0be28703))
(fp_line (start -8.7 9.8) (end -9.11 9.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c9b075cc-ec9f-4e54-b79a-ff9143bffac6))
(fp_line (start -8.7 10.52) (end -9.11 10.52)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75858a44-544e-4a53-8b53-abd12ae06fab))
(fp_line (start -8.7 12.34) (end -9.11 12.34)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 586813e7-6e7d-48de-acb2-45ae8bf3fbf6))
(fp_line (start -8.7 13.06) (end -9.11 13.06)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0269902c-92c6-488d-a6f7-116f7687152d))
(fp_line (start -8.7 14.88) (end -9.11 14.88)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7bd5d96e-890a-4cb0-b0f0-869f0077f77c))
(fp_line (start -8.7 15.6) (end -9.11 15.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e78f6baf-90fb-47ce-864a-4f603b9af31d))
(fp_line (start -8.7 17.42) (end -9.11 17.42)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a80a114-1586-4d6c-9c32-77b78c2a4577))
(fp_line (start -8.7 18.14) (end -9.11 18.14)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp decd7289-ffc8-4d6e-8557-3f17b6b26822))
(fp_line (start -8.7 19.96) (end -9.11 19.96)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e9d0d77-f874-4d4e-aee9-4f450da4c26a))
(fp_line (start -8.7 20.68) (end -9.11 20.68)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51149068-a9af-4fc2-9c9d-92cf68664129))
(fp_line (start -0.07 -1.33) (end -8.7 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87ac5018-2cd3-471c-a2ac-af6dfc41740e))
(fp_line (start -0.07 -1.33) (end -0.07 21.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 54df7edc-3dcf-47c0-a509-d9188d62dc35))
(fp_line (start -0.07 -1.21) (end -8.7 -1.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d078a54c-29aa-4978-ac22-384cd02ecb41))
(fp_line (start -0.07 -1.091905) (end -8.7 -1.091905)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a4b40186-15ce-444d-af3c-8047f1eb25d4))
(fp_line (start -0.07 -0.97381) (end -8.7 -0.97381)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 826a537c-6921-40e4-8123-8a9fc7165577))
(fp_line (start -0.07 -0.855715) (end -8.7 -0.855715)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de7f828f-4ca1-417d-9342-5ebd155e2cba))
(fp_line (start -0.07 -0.73762) (end -8.7 -0.73762)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f725e169-1c29-4f06-a33a-e1068ec13d0e))
(fp_line (start -0.07 -0.619525) (end -8.7 -0.619525)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e78caa37-47fb-4684-8ff1-be7261a0aa5e))
(fp_line (start -0.07 -0.50143) (end -8.7 -0.50143)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 161b4c10-1561-42cd-8c71-91708a4958c1))
(fp_line (start -0.07 -0.383335) (end -8.7 -0.383335)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp beb4067a-97e5-45ad-9fc2-1003f93daa71))
(fp_line (start -0.07 -0.26524) (end -8.7 -0.26524)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e68b0d33-89d0-4a63-b642-6c4a6d19f4b7))
(fp_line (start -0.07 -0.147145) (end -8.7 -0.147145)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a48341c-1907-4f73-909a-af92ef6a1693))
(fp_line (start -0.07 -0.02905) (end -8.7 -0.02905)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 18e5c4d1-3ac6-49fa-b57a-6cda08fac46b))
(fp_line (start -0.07 0.089045) (end -8.7 0.089045)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c71cefb-5821-4e12-bfb7-dd0175d56bed))
(fp_line (start -0.07 0.20714) (end -8.7 0.20714)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 17fb396e-8d6e-463d-942d-c24d78559021))
(fp_line (start -0.07 0.325235) (end -8.7 0.325235)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7fa708b-2c01-44d4-8b1c-db34a4d76bc0))
(fp_line (start -0.07 0.44333) (end -8.7 0.44333)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d7172f3-a9cf-4e14-8e03-1aa4bac4636d))
(fp_line (start -0.07 0.561425) (end -8.7 0.561425)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ca06249-a2a8-431c-a607-56f31b117973))
(fp_line (start -0.07 0.67952) (end -8.7 0.67952)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e683b74-af35-4a05-83d0-8ae8bbe050ab))
(fp_line (start -0.07 0.797615) (end -8.7 0.797615)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a835d92-77c8-49f7-b5ab-70854e5641d9))
(fp_line (start -0.07 0.91571) (end -8.7 0.91571)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61dd37c3-d568-4c48-86eb-67cfb5209e4b))
(fp_line (start -0.07 1.033805) (end -8.7 1.033805)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 82f211c3-b2ef-48c7-ae09-565591df5733))
(fp_line (start -0.07 1.1519) (end -8.7 1.1519)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7ebeeb9-1f05-4e29-bd52-dc23aa533824))
(fp_line (start -0.07 1.27) (end -8.7 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c3886bd-9853-47db-a67c-7e698c999516))
(fp_line (start -0.07 3.81) (end -8.7 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2fd4a9c-606b-4d39-9f9f-e5cce918c81e))
(fp_line (start -0.07 6.35) (end -8.7 6.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ddac77ee-5d46-44b4-8000-dc659a995d8e))
(fp_line (start -0.07 8.89) (end -8.7 8.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd1a7cb3-0c0c-4105-8964-7248aeef687c))
(fp_line (start -0.07 11.43) (end -8.7 11.43)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a412e08-9532-42ee-92ad-c05d7b3ec04e))
(fp_line (start -0.07 13.97) (end -8.7 13.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 46c822cf-30db-4370-aa9d-43593e8ae77e))
(fp_line (start -0.07 16.51) (end -8.7 16.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 602c5a3d-2e64-4594-97f1-1d0c755e694d))
(fp_line (start -0.07 19.05) (end -8.7 19.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa0c49ba-d008-441f-a605-08d8a8e86205))
(fp_line (start -0.07 21.65) (end -8.7 21.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4bbb560-933f-4a97-9b8f-6b293102d7d7))
(fp_line (start -11.91 -1.75) (end 0.39 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 13d9e60c-dfd5-4e9a-9f53-2503d5dc37f0))
(fp_line (start -11.91 22.15) (end -11.91 -1.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 173228d6-cbd2-405c-9e47-207a94725a2f))
(fp_line (start 0.39 -1.75) (end 0.39 22.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 54d042d5-85f3-4783-bd02-b79cb81c2deb))
(fp_line (start 0.39 22.15) (end -11.91 22.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6aa5edd6-f215-4131-a3c0-1dbe76f1fede))
(fp_line (start -10.16 -0.3) (end -8.64 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d50ab702-95b0-4219-a72c-e7dc56e1fef2))
(fp_line (start -10.16 0.3) (end -10.16 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c38e9f4-9ad3-49a6-9d54-3b991c0fa36d))
(fp_line (start -10.16 2.24) (end -8.64 2.24)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53a4eb29-f533-4889-8044-a2cf2b2022af))
(fp_line (start -10.16 2.84) (end -10.16 2.24)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9749c077-818b-401b-9c53-6ca1fceb82f7))
(fp_line (start -10.16 4.78) (end -8.64 4.78)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1bee7e62-8331-4059-8580-a227bb448c30))
(fp_line (start -10.16 5.38) (end -10.16 4.78)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d7420b5-0ab8-4a3e-b2dd-ee990d0e0a23))
(fp_line (start -10.16 7.32) (end -8.64 7.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a87e6ff5-9698-4bd1-b2dd-fdf74d9f76c8))
(fp_line (start -10.16 7.92) (end -10.16 7.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6f88ba2-fbf4-44f8-94cb-755d0d609072))
(fp_line (start -10.16 9.86) (end -8.64 9.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8dcd523c-d142-4320-8d56-2fff0277f675))
(fp_line (start -10.16 10.46) (end -10.16 9.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9048ad08-30ff-4a75-ac83-392012a0ddc1))
(fp_line (start -10.16 12.4) (end -8.64 12.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a96e66e7-213a-4b2f-abd4-e5a54c528abf))
(fp_line (start -10.16 13) (end -10.16 12.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 049abf00-8400-404f-aace-c6b1348e092d))
(fp_line (start -10.16 14.94) (end -8.64 14.94)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eefc936a-c1b2-4dd5-826c-11b6b21c2f0a))
(fp_line (start -10.16 15.54) (end -10.16 14.94)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a66ec91-7da0-4d25-a1b9-d9b0d792157f))
(fp_line (start -10.16 17.48) (end -8.64 17.48)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50c9d8f2-01de-46cd-a0bb-d55954bcfece))
(fp_line (start -10.16 18.08) (end -10.16 17.48)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21e632e7-3c68-413a-a233-f6856e2438e2))
(fp_line (start -10.16 20.02) (end -8.64 20.02)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp da2fc7f3-12cd-4202-9884-3c1b6f2f6b54))
(fp_line (start -10.16 20.62) (end -10.16 20.02)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b78e8aa3-f199-4b4d-9880-417c9c521ad4))
(fp_line (start -8.64 -0.3) (end -8.64 21.59)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c2107d2-7453-42ec-af43-e238720464a1))
(fp_line (start -8.64 0.3) (end -10.16 0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a2e0c520-cc70-4d92-a6e8-e64ca90b7cec))
(fp_line (start -8.64 2.84) (end -10.16 2.84)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e51abc6-950f-4a65-b99b-931f565f06bb))
(fp_line (start -8.64 5.38) (end -10.16 5.38)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3d7992d-cb80-4c16-9130-750cabc1ff69))
(fp_line (start -8.64 7.92) (end -10.16 7.92)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6824d2b-e04e-4fe0-b421-fb7eb001eadc))
(fp_line (start -8.64 10.46) (end -10.16 10.46)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4429d74e-26a2-48d0-917d-03d8393c4c17))
(fp_line (start -8.64 13) (end -10.16 13)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 196e3f31-64cd-455c-99af-b8ac9e0cd15d))
(fp_line (start -8.64 15.54) (end -10.16 15.54)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 113307fd-4da1-400f-a4d5-09b974ae4b3a))
(fp_line (start -8.64 18.08) (end -10.16 18.08)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 140c0012-0317-41cb-ab64-076ddf3817d1))
(fp_line (start -8.64 20.62) (end -10.16 20.62)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8801fc96-8b3c-4e4c-9d64-be35fbc9eb9e))
(fp_line (start -8.64 21.59) (end -0.13 21.59)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 234eb223-c3e2-49a5-b348-080a960325d8))
(fp_line (start -7.67 -1.27) (end -8.64 -0.3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a974757-355a-47c0-9eb6-98cd58503265))
(fp_line (start -0.13 -1.27) (end -7.67 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b3a5806-c931-412e-8499-768d34599424))
(fp_line (start -0.13 21.59) (end -0.13 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b18d7a7-302a-4e72-9b74-7036d99feba2))
(pad "1" thru_hole rect (at -10.16 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "Net-(J1-Pin_1)") (pinfunction "Pin_1") (pintype "passive") (tstamp f72a4a34-496b-405b-b4ee-aa582a44041f))
(pad "2" thru_hole oval (at -10.16 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "Net-(J1-Pin_2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 9bb2091c-5ed0-4251-98ec-d69c834964d5))
(pad "3" thru_hole oval (at -10.16 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "Net-(J1-Pin_3)") (pinfunction "Pin_3") (pintype "passive") (tstamp f75fe689-6c7e-4e32-8d9b-c591e97e99e7))
(pad "4" thru_hole oval (at -10.16 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "Net-(J1-Pin_4)") (pinfunction "Pin_4") (pintype "passive") (tstamp f2e8bb7f-8ac2-4609-a7a6-4c84b43c0fd9))
(pad "5" thru_hole oval (at -10.16 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "Net-(J1-Pin_5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 470459c6-3887-4f1d-bed2-e4af1ddd0884))
(pad "6" thru_hole oval (at -10.16 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "Net-(J1-Pin_6)") (pinfunction "Pin_6") (pintype "passive") (tstamp 09f80e6c-8fa4-4f70-8d37-98347d9f485f))
(pad "7" thru_hole oval (at -10.16 15.24) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "Net-(J1-Pin_7)") (pinfunction "Pin_7") (pintype "passive") (tstamp 6ad6a9b8-0533-4a8d-8dc7-7167ed2babbb))
(pad "8" thru_hole oval (at -10.16 17.78) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "Net-(J1-Pin_8)") (pinfunction "Pin_8") (pintype "passive") (tstamp f0197864-8736-4eeb-93c0-b7725757f861))
(pad "9" thru_hole oval (at -10.16 20.32) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp bf2ed2f1-e079-4b29-a27b-5b6a49b86548))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x09_P2.54mm_Horizontal.wrl"
(offset (xyz -10.5 -20.3 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(footprint "Switch:SW_PCM12SMTR" locked (layer "B.Cu")
(tstamp 0948d6e8-2836-4529-a66b-186a991cc82f)
(at 158.731 131.6101 180)
(property "Sheetfile" "ZX Interface 1 ROM 39SF010.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "PCM12SMTR")
(path "/e678c2d5-94ba-4630-8207-7b6d38a04eb2")
(attr smd)
(fp_text reference "SW1" (at -2.4701 3.451225) (layer "B.SilkS")
(effects (font (size 1.4 1.4) (thickness 0.15)) (justify mirror))
(tstamp b513a3c2-ff74-4fe1-93b4-3da2c3692c5d)
)
(fp_text value "SW_SPDT" (at 5.588 -4.191) (layer "B.Fab") hide
(effects (font (size 1.4 1.4) (thickness 0.15)) (justify mirror))
(tstamp b732f285-3ad5-4ddc-8ba2-b88149ab1c86)
)
(fp_line (start -3.35 -0.3) (end -3.35 0.3)
(stroke (width 0.127) (type solid)) (layer "B.SilkS") (tstamp 90980752-9e10-404d-b295-bea07ae5ff33))
(fp_line (start -2.9 -1.3) (end 2.9 -1.3)
(stroke (width 0.127) (type solid)) (layer "B.SilkS") (tstamp b390ab31-2ea8-41cd-b7fc-fc9044c36efa))
(fp_line (start -1.6 1.3) (end 0.1 1.3)
(stroke (width 0.127) (type solid)) (layer "B.SilkS") (tstamp 10b0b4e4-d402-4701-8028-e6fdf1a98f01))
(fp_line (start 3.35 0.3) (end 3.35 -0.3)
(stroke (width 0.127) (type solid)) (layer "B.SilkS") (tstamp 84e62abc-e404-4e08-9360-b969dff79e7d))
(fp_circle (center -3.2 2.5) (end -3.1 2.5)
(stroke (width 0.25) (type solid)) (fill none) (layer "B.SilkS") (tstamp 12c84706-a777-4d4f-a78f-825a7843bc65))
(fp_line (start -4.4 -1.615) (end -4.4 1.615)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 0af0fc50-cc24-427f-b768-522d2d21e176))
(fp_line (start -4.4 1.615) (end -2.85 1.615)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ace03d99-2e22-48a7-95e3-adcea58de049))
(fp_line (start -2.85 1.615) (end -2.85 2.75)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cca59aa3-b1ae-4fa0-aa33-0b887233352a))
(fp_line (start -2.85 2.75) (end 2.85 2.75)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e80e9b2e-0e53-4194-a6f7-b4a43668efdf))
(fp_line (start -1.75 -3.05) (end -1.75 -1.615)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 09b04bd6-2220-4d6b-947d-027b8edda641))
(fp_line (start -1.75 -1.615) (end -4.4 -1.615)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 680e2961-7016-40fc-827e-20cf4f3ccc56))
(fp_line (start 1.75 -3.05) (end -1.75 -3.05)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 50b0edc1-6af3-484c-8bd9-6bd676762bc9))
(fp_line (start 1.75 -1.615) (end 1.75 -3.05)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6131f358-bcd5-4409-8ae0-95d3183579d4))
(fp_line (start 2.85 1.615) (end 4.4 1.615)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 11f929c7-5388-4a8a-8d1d-c3baa87c6021))
(fp_line (start 2.85 2.75) (end 2.85 1.615)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 9d3104ce-866d-4ea9-beff-8ec38d2feacd))
(fp_line (start 4.4 -1.615) (end 1.75 -1.615)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 9ad8d831-66c8-48a1-a4a3-b0f1a468d16d))
(fp_line (start 4.4 1.615) (end 4.4 -1.615)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 9aabd8de-bc7f-4a0e-880d-d776820cc798))
(fp_line (start -3.35 -1.3) (end -3.35 1.3)
(stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp 5162d250-ddf7-469a-bfce-8ea33b84a35b))
(fp_line (start -3.35 1.3) (end 3.35 1.3)
(stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp 3e10b914-e492-4458-bc7d-af0cf6c92ea2))
(fp_line (start -1.5 -2.8) (end 1.5 -2.8)
(stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp bf3bc5c1-0b43-4c6a-8e27-dc8f2902bb7a))
(fp_line (start -1.5 -1.3) (end -3.35 -1.3)
(stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp 6d15c1f7-dd30-4e11-aa8c-5ca169007540))
(fp_line (start -1.5 -1.3) (end -1.5 -2.8)
(stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp 635c4e7a-4449-4ad5-a0bf-3256429d9bed))
(fp_line (start 1.5 -2.8) (end 1.5 -1.3)
(stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp 17c8ed2a-d610-4be1-8951-a193414227b4))
(fp_line (start 1.5 -1.3) (end -1.5 -1.3)
(stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp d7377eb0-780c-4902-b308-4c1a2690f0d1))
(fp_line (start 3.35 -1.3) (end 1.5 -1.3)
(stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp fef0407b-11af-4604-bb03-7ad96fdfc714))
(fp_line (start 3.35 1.3) (end 3.35 -1.3)
(stroke (width 0.127) (type solid)) (layer "B.Fab") (tstamp 78688fc2-de80-44be-a6f8-28c545d043cf))
(fp_circle (center -3.2 2.5) (end -3.1 2.5)
(stroke (width 0.25) (type solid)) (fill none) (layer "B.Fab") (tstamp e6441229-250c-44cb-a8a5-ec6de0c196ff))
(pad "" np_thru_hole circle locked (at -1.5 0 180) (size 0.9 0.9) (drill 0.9) (layers "*.Cu" "*.Mask") (tstamp e8d4564b-aa32-431a-8a74-8ccb5ee53268))
(pad "" np_thru_hole circle locked (at 1.5 0 180) (size 0.9 0.9) (drill 0.9) (layers "*.Cu" "*.Mask") (tstamp 467d81c7-9a27-49c6-8482-734c9f15f51a))
(pad "1" smd rect locked (at -2.25 1.75 180) (size 0.7 1.5) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "1") (pintype "unspecified") (solder_mask_margin 0.102) (tstamp 173bde6f-32e3-4e82-807a-424e1e6d8451))
(pad "2" smd rect locked (at 0.75 1.75 180) (size 0.7 1.5) (layers "B.Cu" "B.Paste" "B.Mask")
(net 32 "Net-(R2-Pad2)") (pinfunction "2") (pintype "unspecified") (solder_mask_margin 0.102) (tstamp 351ff575-9df9-4283-9626-240ab9331114))
(pad "3" smd rect locked (at 2.25 1.75 180) (size 0.7 1.5) (layers "B.Cu" "B.Paste" "B.Mask")
(net 1 "/VCC") (pinfunction "3") (pintype "unspecified") (solder_mask_margin 0.102) (tstamp 67d8da78-2ed9-4dc7-be82-c7361f9fcf12))
(pad "S1" smd rect locked (at -3.65 0.965 180) (size 1 0.8) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "S1") (pintype "power_in") (solder_mask_margin 0.102) (tstamp 6ee69f29-18a7-4588-a65b-a0f20792a48a))
(pad "S2" smd rect locked (at -3.65 -0.965 180) (size 1 0.8) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "S2") (pintype "power_in") (solder_mask_margin 0.102) (tstamp e5cf20a4-e837-45bd-bf46-1ef0ae9f5d8c))
(pad "S3" smd rect locked (at 3.65 -0.965 180) (size 1 0.8) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "S3") (pintype "power_in") (solder_mask_margin 0.102) (tstamp f1755f20-a751-4719-abe4-760421f158a9))
(pad "S4" smd rect locked (at 3.65 0.965 180) (size 1 0.8) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (pinfunction "S4") (pintype "power_in") (solder_mask_margin 0.102) (tstamp d8d6d04b-4165-4b21-a71e-e1d22c9a666e))
(model "${KIPRJMOD}/SW_PCM12SMTR.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" locked (layer "B.Cu")
(tstamp 35571687-c311-4513-8f5d-80c40738ff59)
(at 155.6576 114.5921 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ZX Interface 1 ROM 39SF010.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/34a8469d-2d8a-497c-b638-d112fc62ae8f")
(attr smd)
(fp_text reference "R5" (at -3.99415 -0.1524) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp eadbf865-5926-43f6-9844-f2f05434b430)
)
(fp_text value "10K" (at 0 -1.82) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a0098e9c-45ff-4946-93b7-e6d768ec16d5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
(tstamp b4923174-6d3f-4378-b75e-9969bc344aa0)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 6a54c4e1-f9a7-4b96-9095-8e6b80742752))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 317c02a7-594e-4753-a550-d3c4773c1755))
(fp_line (start -2.45 -1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 48a404dc-c54c-4c4e-b962-9624f806baf8))
(fp_line (start -2.45 1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c10169ad-1d92-47b5-8716-8244c24177fb))
(fp_line (start 2.45 -1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 558863c8-d149-4c3c-925c-8c357550e88f))
(fp_line (start 2.45 1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp f222218e-f7a8-4654-9cb6-9cc4312fa51c))
(fp_line (start -1.6 -0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6a1da3ed-3a4d-49d6-abe9-60c902c07e9e))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 254b508f-1892-446c-aa2f-d21e42871077))
(fp_line (start 1.6 -0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 5756d6e1-096d-4300-89cd-df2ef35d3d9e))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 764aa5aa-209d-4d83-821c-e41f33adeae0))
(pad "1" smd roundrect locked (at -1.55 0 180) (size 1.3 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923076923)
(net 28 "Net-(J1-Pin_5)") (pintype "passive") (tstamp 84f1f8fc-0a52-436a-8c6f-565dbc6e1594))
(pad "2" smd roundrect locked (at 1.55 0 180) (size 1.3 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923076923)
(net 1 "/VCC") (pintype "passive") (tstamp ca4baefa-85e1-460c-b507-a586e302c2bb))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" locked (layer "B.Cu")
(tstamp 4d6a3f9d-af1e-404d-a74e-249dc67e4784)
(at 155.5401 123.4916 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ZX Interface 1 ROM 39SF010.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/3678601e-d654-4fb6-9ba7-468c2e4686dc")
(attr smd)
(fp_text reference "R6" (at -3.877225 -0.09525) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 2e453d54-0c1a-4a6b-bab3-bc6e0e57083b)
)
(fp_text value "10K" (at 0 -1.82) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp dc750ecf-746c-43b6-9066-0c57d9705086)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
(tstamp 9e349695-3e06-4c54-919f-7a96bd122c5f)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 8fbbed15-ee7b-49ae-8967-4d0594181ec8))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 551e7380-9ef2-4d2c-97a5-888a8d99b3e0))
(fp_line (start -2.45 -1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 043bf5e1-73f8-4540-84c2-a0bf114e2559))
(fp_line (start -2.45 1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 465ab1aa-98a8-40e7-8492-512dc3f55377))
(fp_line (start 2.45 -1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6adfc045-95ae-40f5-a11c-2dbe5f97ef99))
(fp_line (start 2.45 1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 375068c8-982e-4f40-bcd0-acded155fef2))
(fp_line (start -1.6 -0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 455c2f21-986a-48ee-afc0-c9c2eacc5309))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp adaab4d8-644b-4d32-892d-9455308f2315))
(fp_line (start 1.6 -0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 67a10dd2-9a36-47cf-90bb-d180e7d7f36a))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6790663c-5123-4de0-919f-d55e31e8687e))
(pad "1" smd roundrect locked (at -1.55 0 180) (size 1.3 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923076923)
(net 31 "Net-(J1-Pin_8)") (pintype "passive") (tstamp d1fc7f26-fcd1-4cbf-a795-967744a76d93))
(pad "2" smd roundrect locked (at 1.55 0 180) (size 1.3 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923076923)
(net 2 "GND") (pintype "passive") (tstamp ee1c2e16-5791-4db2-aa0f-262ccce715c5))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" locked (layer "B.Cu")
(tstamp 65358371-80f2-495a-9450-b400f1f902b6)
(at 155.5782 105.7211 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ZX Interface 1 ROM 39SF010.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/4277b926-14ae-4da2-a2e2-f258789dd3d1")
(attr smd)
(fp_text reference "R2" (at -3.902675 0.00635) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 02b8302e-deee-4521-9be3-0b4d022f9198)
)
(fp_text value "10K" (at 0 -1.82) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp deb89f74-6bc9-4268-b40e-577646fb1000)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
(tstamp 9daa8f7c-80e5-4937-81bb-84903b772fb9)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp da3af25b-7d61-4dd6-8167-3c22c40c4bf9))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 42de4bac-8505-424a-b7a2-5064718ddef8))
(fp_line (start -2.45 -1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ada0003a-0843-43de-8001-827e9d771184))
(fp_line (start -2.45 1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 76fbe694-b9ee-42ff-b3ff-7181f2032702))
(fp_line (start 2.45 -1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2a25113a-304c-4769-a90f-0e65061f1d86))
(fp_line (start 2.45 1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 68ad3858-82a9-4d5d-89c1-57c2f1db75eb))
(fp_line (start -1.6 -0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp fb317e0a-1c4e-40de-9971-fac716f7f47e))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 59984e98-5b6c-4490-ada6-01d12f4a5614))
(fp_line (start 1.6 -0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp bec6859e-fe4f-4dfe-be08-838422d1903b))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 41c38b6e-f55f-4a3f-8ccf-eede3a251c97))
(pad "1" smd roundrect locked (at -1.55 0 180) (size 1.3 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923076923)
(net 27 "Net-(J1-Pin_4)") (pintype "passive") (tstamp da60b37a-f19c-4879-acb0-1a46942484c1))
(pad "2" smd roundrect locked (at 1.55 0 180) (size 1.3 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923076923)
(net 32 "Net-(R2-Pad2)") (pintype "passive") (tstamp 04449e25-fd67-4021-94c9-00b58f51a8b4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Switch:Pin-Pin Header 2.54mm Round Samtec BBL-112-G-E" locked (layer "B.Cu")
(tstamp 6edf20d1-be17-43d0-b173-744dca3dbf31)
(at 166.0202 104.8734 -90)
(property "MANUFACTURER" "Samtec")
(property "PARTREV" "R")
(property "STANDARD" "Manufacturer Recommendations")
(property "Sheetfile" "ZX Interface 1 ROM 39SF010.kicad_sch")
(property "Sheetname" "")
(path "/6bc7f345-4f71-42e6-88be-0c979811fe93")
(attr through_hole)
(fp_text reference "J4" (at -1.149325 2.95855) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d9e6cf14-91be-4330-aa04-849a23c68367)
)
(fp_text value "BBL-112-G-E" (at 9.058 -3.135 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp eac13cc0-ee52-47fe-8aab-afbdcf49bb20)
)
(fp_line (start -1.372 -1.27) (end -1.372 1.27)
(stroke (width 0.2) (type solid)) (layer "B.SilkS") (tstamp 19bf494b-a92a-4127-8e56-d6c87f97e648))
(fp_line (start 29.312 -1.27) (end -1.372 -1.27)
(stroke (width 0.2) (type solid)) (layer "B.SilkS") (tstamp 624885ec-6982-436c-83a2-ca7da253e853))
(fp_line (start 29.312 1.27) (end -1.372 1.27)
(stroke (width 0.2) (type solid)) (layer "B.SilkS") (tstamp d5343784-4092-4235-aeb0-cd35d3fa9520))
(fp_line (start 29.312 1.27) (end 29.312 -1.27)
(stroke (width 0.2) (type solid)) (layer "B.SilkS") (tstamp 66a21ff7-7d3a-4e2e-92b2-3bc1a7203413))
(fp_circle (center -2.022 0) (end -1.922 0)
(stroke (width 0.2) (type solid)) (fill none) (layer "B.SilkS") (tstamp 2a77c82b-0581-4883-9cea-0dc6d9b52d9e))
(fp_line (start -1.622 -1.52) (end -1.622 1.52)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e80b0361-36c3-4683-97b5-b1345a5b40eb))
(fp_line (start -1.622 1.52) (end 29.562 1.52)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp de88cf0d-22d2-4d4c-927b-42b54a5d1299))
(fp_line (start 29.562 -1.52) (end -1.622 -1.52)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 2d64e85d-7cc1-4ddf-a214-02da16156dd1))
(fp_line (start 29.562 1.52) (end 29.562 -1.52)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp f5358c3d-b18b-45ef-a7cb-956531d80462))
(fp_line (start -1.372 -1.27) (end -1.372 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 578bf13f-273b-4db8-ba94-adf16b60dd08))
(fp_line (start -1.372 1.27) (end 29.312 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d7f63c65-894e-4724-812f-c4d68c1c900e))
(fp_line (start 29.312 -1.27) (end -1.372 -1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 34040db2-21b5-4605-aafd-5acbde264146))
(fp_line (start 29.312 1.27) (end 29.312 -1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 28e78b93-e262-4c24-8a2c-9b47a2b457ff))
(fp_circle (center -2.022 0) (end -1.922 0)
(stroke (width 0.2) (type solid)) (fill none) (layer "B.Fab") (tstamp 35a7952e-80c2-40d6-826c-8bc7de4ab28f))
(pad "01" thru_hole rect locked (at 0 0 270) (size 0.96 0.96) (drill 0.61) (layers "*.Cu" "*.Mask")
(net 1 "/VCC") (pinfunction "01") (pintype "passive") (solder_mask_margin 0.102) (tstamp 7b246682-f379-4802-bb91-d67bf93952ac))
(pad "02" thru_hole circle locked (at 2.54 0 270) (size 0.96 0.96) (drill 0.61) (layers "*.Cu" "*.Mask")
(net 23 "/A8") (pinfunction "02") (pintype "passive") (solder_mask_margin 0.102) (tstamp 0302252a-8ade-4e77-824f-6c48954d296a))
(pad "03" thru_hole circle locked (at 5.08 0 270) (size 0.96 0.96) (drill 0.61) (layers "*.Cu" "*.Mask")
(net 22 "/A9") (pinfunction "03") (pintype "passive") (solder_mask_margin 0.102) (tstamp 9fd03041-07a3-45b3-b784-c91241eeb00d))
(pad "04" thru_hole circle locked (at 7.62 0 270) (size 0.96 0.96) (drill 0.61) (layers "*.Cu" "*.Mask")
(net 21 "/A12") (pinfunction "04") (pintype "passive") (solder_mask_margin 0.102) (tstamp 301fadea-835a-4713-8486-5a83f07c91d1))
(pad "05" thru_hole circle locked (at 10.16 0 270) (size 0.96 0.96) (drill 0.61) (layers "*.Cu" "*.Mask")
(net 20 "/CS1") (pinfunction "05") (pintype "passive") (solder_mask_margin 0.102) (tstamp b285f188-48d0-4844-953f-41b2461d3c6e))
(pad "06" thru_hole circle locked (at 12.7 0 270) (size 0.96 0.96) (drill 0.61) (layers "*.Cu" "*.Mask")
(net 19 "/A10") (pinfunction "06") (pintype "passive") (solder_mask_margin 0.102) (tstamp 3b48a4fe-5f25-411a-84b9-862e37d5d23a))
(pad "07" thru_hole circle locked (at 15.24 0 270) (size 0.96 0.96) (drill 0.61) (layers "*.Cu" "*.Mask")
(net 18 "/A11") (pinfunction "07") (pintype "passive") (solder_mask_margin 0.102) (tstamp 8b7529f7-68b6-45a6-8489-a4cd16a08e86))
(pad "08" thru_hole circle locked (at 17.78 0 270) (size 0.96 0.96) (drill 0.61) (layers "*.Cu" "*.Mask")
(net 17 "/D7") (pinfunction "08") (pintype "passive") (solder_mask_margin 0.102) (tstamp 570fe438-0fc9-4d88-8342-bf9bb9f99397))
(pad "09" thru_hole circle locked (at 20.32 0 270) (size 0.96 0.96) (drill 0.61) (layers "*.Cu" "*.Mask")
(net 16 "/D6") (pinfunction "09") (pintype "passive") (solder_mask_margin 0.102) (tstamp 7e3bab55-e983-48e2-b041-71bb3adfe55b))
(pad "10" thru_hole circle locked (at 22.86 0 270) (size 0.96 0.96) (drill 0.61) (layers "*.Cu" "*.Mask")
(net 15 "/D5") (pinfunction "10") (pintype "passive") (solder_mask_margin 0.102) (tstamp 4a22a6fd-d052-4836-9516-da9505d62f2c))
(pad "11" thru_hole circle locked (at 25.4 0 270) (size 0.96 0.96) (drill 0.61) (layers "*.Cu" "*.Mask")
(net 14 "/D4") (pinfunction "11") (pintype "passive") (solder_mask_margin 0.102) (tstamp 2778f7a3-b6f7-4be1-97b6-3f1ddea4a36c))
(pad "12" thru_hole circle locked (at 27.94 0 270) (size 0.96 0.96) (drill 0.61) (layers "*.Cu" "*.Mask")
(net 13 "/D3") (pinfunction "12") (pintype "passive") (solder_mask_margin 0.102) (tstamp a48ea219-683a-495f-a3b2-bdb9e51dc814))
(model "${KIPRJMOD}/Pin-Pin Header 2.54mm Round Samtec BBL-112-G-E.stp"
(offset (xyz 14 0 1.3))
(scale (xyz 1 1 1))
(rotate (xyz 90 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" locked (layer "B.Cu")
(tstamp 701d74a2-ba09-48d0-885e-79c4b49c8eca)
(at 155.6163 108.6898 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ZX Interface 1 ROM 39SF010.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/80d2e8d5-9318-406f-be7c-9a355150fdc0")
(attr smd)
(fp_text reference "R3" (at -3.902675 -0.19365) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 76d733aa-98d4-4ef0-a273-3e2932886810)
)
(fp_text value "10K" (at 0 -1.82) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 40807012-7de8-45e7-beb4-f8d6496b0f5b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
(tstamp 82fe8a6c-5796-4d9e-abaf-afb7814a3a79)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0684452f-e953-434a-9615-f8507e1a5dac))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 42ac602d-27f4-47ac-80a7-e860ebdef9e8))
(fp_line (start -2.45 -1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c9feedc7-a645-4d9e-ac9b-c665a1a8a8fc))
(fp_line (start -2.45 1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp abaeafd3-f875-4086-aad5-8204aeeeabdb))
(fp_line (start 2.45 -1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 86066c2e-8008-4685-a674-afd86be6cb01))
(fp_line (start 2.45 1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 52e591ee-51b6-4c0f-82da-b803c9811970))
(fp_line (start -1.6 -0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c400c91f-02e7-4c4f-82ae-6db47a49b90a))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1d7cf003-0f8f-40ba-82f7-6dda8b46d70c))
(fp_line (start 1.6 -0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 60ee72d1-6372-40d9-bebb-4ae8bf245a4d))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 6b781e72-98c2-4db7-a30d-f60e039992bc))
(pad "1" smd roundrect locked (at -1.55 0 180) (size 1.3 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923076923)
(net 30 "Net-(J1-Pin_7)") (pintype "passive") (tstamp 066f3c85-530c-498e-a40d-d933675a8063))
(pad "2" smd roundrect locked (at 1.55 0 180) (size 1.3 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923076923)
(net 1 "/VCC") (pintype "passive") (tstamp 2f35a4eb-f036-484f-b22e-fd3d93b4cad2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" locked (layer "B.Cu")
(tstamp 75d6a0e5-c579-4c4c-ab43-856c78e1165f)
(at 155.6163 117.548 180)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ZX Interface 1 ROM 39SF010.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/dcf097e2-5dd7-47d6-ac12-fc46f2a86cd8")
(attr smd)
(fp_text reference "R7" (at -3.94715 0.006375) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6d57a1ca-205c-4733-b0bd-ff6a396a9939)
)
(fp_text value "10K" (at 0 -1.82) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 357cc992-a022-4fcf-a98f-72fae34c92bb)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
(tstamp 756c4df5-8b6b-4047-a882-997bdbad5e90)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 6c4c4a89-a941-4087-b24c-3105d6c49eed))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 297fe504-c052-4a40-ae54-d2ceedb0cb54))
(fp_line (start -2.45 -1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp fef29096-f7e8-430f-a270-f0c312de46c1))
(fp_line (start -2.45 1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 48d69e5f-b65c-49f5-a531-3126366bbc90))
(fp_line (start 2.45 -1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp cf42c3d7-ba13-43bd-9ed5-edd5326c7b61))
(fp_line (start 2.45 1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 574a7017-edfe-4299-9173-00c87dd4713b))
(fp_line (start -1.6 -0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 3b06fb3d-8611-4845-b3ad-ada02890e5fb))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 374faf72-dc80-47b5-bd7d-bbf185392855))
(fp_line (start 1.6 -0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 597e0456-ffc9-4a49-956e-759d06262274))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp bff42c09-2f80-40f8-9ee2-cc39d59e2c54))
(pad "1" smd roundrect locked (at -1.55 0 180) (size 1.3 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923076923)
(net 26 "Net-(J1-Pin_3)") (pintype "passive") (tstamp 5317dcce-de87-4b44-b917-b6b2ac1587be))
(pad "2" smd roundrect locked (at 1.55 0 180) (size 1.3 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923076923)
(net 1 "/VCC") (pintype "passive") (tstamp 8af08eeb-4b78-4a6d-8338-79fe24d71d2e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" locked (layer "B.Cu")
(tstamp 79b1ba2b-cbed-49d5-8209-f1f352dc4121)
(at 162.6676 107.4385 -90)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(property "Sheetfile" "ZX Interface 1 ROM 39SF010.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/3e37eac0-bf9b-461e-a389-8dfa5e3768de")
(attr smd)
(fp_text reference "R1" (at 3.870325 -0.057175 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 287d066c-2d91-468d-8e8b-99e4048c7c5b)
)
(fp_text value "10K" (at 0 -1.82 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 479ab36b-7112-4efe-9df1-db285a36c59c)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify mirror))
(tstamp 7c4688c0-82a8-4ed4-a806-21f9932fd04b)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1c5a575d-2376-43e0-83a9-663bf107e3ad))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 89ed1c33-bfd0-4198-baa4-c5883201313b))
(fp_line (start -2.45 -1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c3375818-8dce-441e-b722-4cc6cd7cfa61))
(fp_line (start -2.45 1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 0099c548-d2f6-45a1-b229-30b1295f77bd))
(fp_line (start 2.45 -1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 62134807-2329-4049-89ed-c1865299387f))
(fp_line (start 2.45 1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7205740a-7e9f-45cc-ab7d-b62b9fbf911f))
(fp_line (start -1.6 -0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 8909f93b-f7cd-4ee8-8689-2680281125e1))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 77d71218-2bd7-4e00-af9a-d8b48c3ec71a))
(fp_line (start 1.6 -0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a32e70e9-6d7b-453e-a43c-372dace2534b))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp a018e391-96b2-40b5-aa89-a73f5f098da8))
(pad "1" smd roundrect locked (at -1.55 0 270) (size 1.3 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923076923)
(net 1 "/VCC") (pintype "passive") (tstamp e0da0f04-8bb9-4b9f-ba07-f61d8a853e83))
(pad "2" smd roundrect locked (at 1.55 0 270) (size 1.3 1.75) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.1923076923)
(net 24 "Net-(J1-Pin_1)") (pintype "passive") (tstamp d561ef52-c83e-4d9e-a3cb-34021745ebd9))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Switch:Pin-Pin Header 2.54mm Round Samtec BBL-112-G-E" locked (layer "B.Cu")
(tstamp 865ae67c-ba45-4bda-95dc-b7bbc19b225b)
(at 150.7802 104.8734 -90)
(property "MANUFACTURER" "Samtec")
(property "PARTREV" "R")
(property "STANDARD" "Manufacturer Recommendations")
(property "Sheetfile" "ZX Interface 1 ROM 39SF010.kicad_sch")
(property "Sheetname" "")
(path "/0dc9d8a9-d366-4c96-9b59-bdb90324a691")
(attr through_hole)
(fp_text reference locked "J3" (at -1.314425 -2.5596) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ed5a2b69-83cd-4d80-b9b9-3076141bd386)
)
(fp_text value "BBL-112-G-E" (at 9.058 -3.135 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a66c2ccf-b892-4947-8659-f21eab6d7d80)
)
(fp_line (start -1.372 -1.27) (end -1.372 1.27)
(stroke (width 0.2) (type solid)) (layer "B.SilkS") (tstamp 91cc6bed-3c0b-4f00-b90e-755e31163901))
(fp_line (start 29.312 -1.27) (end -1.372 -1.27)
(stroke (width 0.2) (type solid)) (layer "B.SilkS") (tstamp b9545fbe-a077-4806-a4b2-e57098476f30))
(fp_line (start 29.312 1.27) (end -1.372 1.27)
(stroke (width 0.2) (type solid)) (layer "B.SilkS") (tstamp 761a1ef5-df2a-4d41-ab8f-e27f90122c73))
(fp_line (start 29.312 1.27) (end 29.312 -1.27)
(stroke (width 0.2) (type solid)) (layer "B.SilkS") (tstamp 5abc65f5-3f33-4fa8-812b-c77af8f42de4))
(fp_circle (center -2.022 0) (end -1.922 0)
(stroke (width 0.2) (type solid)) (fill none) (layer "B.SilkS") (tstamp 370cb955-7919-40c2-bcf2-064494ef5033))
(fp_line (start -1.622 -1.52) (end -1.622 1.52)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 560a6ea0-e3c9-4699-a1e6-5eb9765470a2))
(fp_line (start -1.622 1.52) (end 29.562 1.52)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6e1e962b-e374-40df-8457-4891984bf97f))
(fp_line (start 29.562 -1.52) (end -1.622 -1.52)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp a8fc97b4-9da1-4c7e-a296-50da4910b06c))
(fp_line (start 29.562 1.52) (end 29.562 -1.52)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp bf8ce45c-c13d-4c2a-90aa-efd28caadf5d))
(fp_line (start -1.372 -1.27) (end -1.372 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 0de24bd2-3f55-4684-a39a-9aaf9b13d6ee))
(fp_line (start -1.372 1.27) (end 29.312 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 68599c7d-ec3d-4457-b151-08ea2c6aec83))
(fp_line (start 29.312 -1.27) (end -1.372 -1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1396a047-aaae-4058-862a-f5c89d7aa40e))
(fp_line (start 29.312 1.27) (end 29.312 -1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d1a61447-34da-47a1-a7f3-dc349b92f9b5))
(fp_circle (center -2.022 0) (end -1.922 0)
(stroke (width 0.2) (type solid)) (fill none) (layer "B.Fab") (tstamp 4d396989-b4b5-450d-b15b-200b8176b37a))
(pad "01" thru_hole rect locked (at 0 0 270) (size 0.96 0.96) (drill 0.61) (layers "*.Cu" "*.Mask")
(net 3 "/A7") (pinfunction "01") (pintype "passive") (solder_mask_margin 0.102) (tstamp a75aca28-be87-4bf9-bda8-52b617121867))