-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrc2014-82c55-ide.kicad_pcb
9626 lines (9595 loc) · 491 KB
/
rc2014-82c55-ide.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 "A4")
(title_block
(title "RC2014 82c55 IDE adapter")
(date "2022-10-17")
(rev "3-pre")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(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)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(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 "gerbers/")
)
)
(net 0 "")
(net 1 "VCC")
(net 2 "GND")
(net 3 "/D0")
(net 4 "/D1")
(net 5 "/D2")
(net 6 "/D3")
(net 7 "/D4")
(net 8 "/D5")
(net 9 "/D6")
(net 10 "/D7")
(net 11 "/A1")
(net 12 "/~{DRESET}")
(net 13 "/A4")
(net 14 "/A3")
(net 15 "/A2")
(net 16 "/A5")
(net 17 "/A6")
(net 18 "/A7")
(net 19 "unconnected-(J2-Pad20)")
(net 20 "/A0")
(net 21 "/PA7")
(net 22 "/PB0")
(net 23 "/PA6")
(net 24 "/PB1")
(net 25 "/PA5")
(net 26 "/PB2")
(net 27 "/PA4")
(net 28 "/PB3")
(net 29 "/PA3")
(net 30 "/PB4")
(net 31 "/~{DIOW}")
(net 32 "Net-(RN1-Pad2)")
(net 33 "/PC7")
(net 34 "/PC5")
(net 35 "/PC3")
(net 36 "Net-(D1-Pad1)")
(net 37 "/~{DIOR}")
(net 38 "/PA2")
(net 39 "/PB5")
(net 40 "/PA1")
(net 41 "/PB6")
(net 42 "/PA0")
(net 43 "/PB7")
(net 44 "unconnected-(J2-Pad27)")
(net 45 "unconnected-(J2-Pad31)")
(net 46 "/DA0")
(net 47 "/DA1")
(net 48 "/DA2")
(net 49 "unconnected-(J2-Pad32)")
(net 50 "unconnected-(J2-Pad34)")
(net 51 "/~{DCS0}")
(net 52 "/RESET")
(net 53 "/PC4")
(net 54 "/PC6")
(net 55 "Net-(RN1-Pad4)")
(net 56 "Net-(RN1-Pad5)")
(net 57 "Net-(RN1-Pad6)")
(net 58 "Net-(RN1-Pad7)")
(net 59 "Net-(RN1-Pad8)")
(net 60 "/IDE_VCC")
(net 61 "/PC0")
(net 62 "/DCS1")
(net 63 "/PC1")
(net 64 "/DIOR")
(net 65 "Net-(RN1-Pad3)")
(net 66 "/DMARQ")
(net 67 "/DMACK")
(net 68 "/~{DCS1}")
(net 69 "unconnected-(J3-Pad20)")
(net 70 "unconnected-(J3-Pad27)")
(net 71 "unconnected-(J3-Pad31)")
(net 72 "unconnected-(J3-Pad32)")
(net 73 "unconnected-(J3-Pad34)")
(net 74 "unconnected-(P1-Pad1)")
(net 75 "unconnected-(P1-Pad2)")
(net 76 "unconnected-(P1-Pad3)")
(net 77 "unconnected-(P1-Pad4)")
(net 78 "unconnected-(P1-Pad5)")
(net 79 "unconnected-(P1-Pad6)")
(net 80 "unconnected-(P1-Pad7)")
(net 81 "unconnected-(P1-Pad8)")
(net 82 "/~{RESET}")
(net 83 "unconnected-(P1-Pad21)")
(net 84 "unconnected-(P1-Pad22)")
(net 85 "unconnected-(P1-Pad23)")
(net 86 "/~{WR}")
(net 87 "/~{RD}")
(net 88 "/~{IORQ}")
(net 89 "unconnected-(P1-Pad35)")
(net 90 "unconnected-(P1-Pad36)")
(net 91 "unconnected-(P1-Pad37)")
(net 92 "unconnected-(P1-Pad38)")
(net 93 "unconnected-(P1-Pad39)")
(net 94 "unconnected-(U1-Pad1)")
(net 95 "/~{PIO_CS}")
(net 96 "unconnected-(U1-Pad12)")
(net 97 "unconnected-(U1-Pad23)")
(net 98 "unconnected-(U1-Pad34)")
(net 99 "/~{M1}")
(net 100 "/~{ACT}")
(footprint "rc2014:Pin_Header_Straight_1x39_Pitch2.54mm_NoSilk" (layer "F.Cu")
(tedit 595EACD0) (tstamp 00000000-0000-0000-0000-000058e14d11)
(at 62 163 90)
(descr "Through hole straight pin header, 1x39, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x39 2.54mm single row")
(property "Sheetfile" "File: rc2014-82c55-ide.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000058978fea")
(attr through_hole)
(fp_text reference "P1" (at 2.54 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e294e52b-a14a-457b-8edb-0801ce87db17)
)
(fp_text value "Conn_01x39" (at 0 98.85 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd6fbff2-10bd-4d80-8d35-41ed36884f9a)
)
(fp_text user "${REFERENCE}" (at 0 -2.33 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e603fdc4-2255-413a-b0ea-4d381e398494)
)
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 77cdca39-1723-44e6-8968-323a8b21db1a))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 94113f70-c4b9-4fd0-8b73-5e315273bd7d))
(fp_line (start -1.8 98.3) (end 1.8 98.3) (layer "F.CrtYd") (width 0.05) (tstamp 7f7ae9f9-d4a6-45b2-a2f3-aa526bf28de0))
(fp_line (start -1.8 -1.8) (end -1.8 98.3) (layer "F.CrtYd") (width 0.05) (tstamp 8fb03b84-d6fb-4a43-9adb-98997e0d5d84))
(fp_line (start 1.8 98.3) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e4c3268f-9724-4f29-8e50-15f82c8faef8))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp fe9dcb71-5c21-4922-8a6f-bcd75cb48c10))
(fp_line (start -1.27 -1.27) (end -1.27 97.79) (layer "F.Fab") (width 0.1) (tstamp 0ce80438-d438-4c13-9325-52e2a4f394da))
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6971c624-c657-4b2e-8aef-c805846160b4))
(fp_line (start -1.27 97.79) (end 1.27 97.79) (layer "F.Fab") (width 0.1) (tstamp 86d6ab42-0ea1-4ba2-96be-a2a0821612db))
(fp_line (start 1.27 97.79) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 90ef0f5b-f998-4c95-b874-ec6ba4f609c7))
(pad "1" thru_hole rect locked (at 0 0 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 74 "unconnected-(P1-Pad1)") (pinfunction "Pin_1") (pintype "passive+no_connect") (tstamp 14862c69-eb0b-49a9-ae5f-18129c08fde3))
(pad "2" thru_hole oval locked (at 0 2.54 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 75 "unconnected-(P1-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp 2f7e1e54-4b69-4a4a-b8ee-558deb1b859b))
(pad "3" thru_hole oval locked (at 0 5.08 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 76 "unconnected-(P1-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 7773fab7-8edd-463c-a880-f160d965e8a2))
(pad "4" thru_hole oval locked (at 0 7.62 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 77 "unconnected-(P1-Pad4)") (pinfunction "Pin_4") (pintype "passive+no_connect") (tstamp 403666f1-fcef-4db6-87c0-718298fabf54))
(pad "5" thru_hole oval locked (at 0 10.16 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 78 "unconnected-(P1-Pad5)") (pinfunction "Pin_5") (pintype "passive+no_connect") (tstamp 072ba50c-d817-4adc-a783-b7fc984dac5a))
(pad "6" thru_hole oval locked (at 0 12.7 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 79 "unconnected-(P1-Pad6)") (pinfunction "Pin_6") (pintype "passive+no_connect") (tstamp 5c59fe65-3ee0-44d7-9640-a6933a5e399f))
(pad "7" thru_hole oval locked (at 0 15.24 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 80 "unconnected-(P1-Pad7)") (pinfunction "Pin_7") (pintype "passive+no_connect") (tstamp 5fc4d4fa-2696-4b80-b5ce-89ade7b996cc))
(pad "8" thru_hole oval locked (at 0 17.78 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 81 "unconnected-(P1-Pad8)") (pinfunction "Pin_8") (pintype "passive+no_connect") (tstamp ba945946-cf99-47c2-afb7-c151f299c994))
(pad "9" thru_hole oval locked (at 0 20.32 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 18 "/A7") (pinfunction "Pin_9") (pintype "passive") (tstamp b3b56dc9-b389-4166-a7f0-a7197fc11265))
(pad "10" thru_hole oval locked (at 0 22.86 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 17 "/A6") (pinfunction "Pin_10") (pintype "passive") (tstamp ffa75add-aa49-4c2b-b67a-676b53048228))
(pad "11" thru_hole oval locked (at 0 25.4 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 16 "/A5") (pinfunction "Pin_11") (pintype "passive") (tstamp 28fcff5a-6f5e-48f5-b37a-adcf04e3421a))
(pad "12" thru_hole oval locked (at 0 27.94 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 13 "/A4") (pinfunction "Pin_12") (pintype "passive") (tstamp d04ec46f-8413-4656-aae9-ce068e27389f))
(pad "13" thru_hole oval locked (at 0 30.48 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 14 "/A3") (pinfunction "Pin_13") (pintype "passive") (tstamp b834c19a-1161-498b-a0ca-f5680735ba06))
(pad "14" thru_hole oval locked (at 0 33.02 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 15 "/A2") (pinfunction "Pin_14") (pintype "passive") (tstamp 1a9a7ea6-bc48-4583-abc0-321a37c8fdc9))
(pad "15" thru_hole oval locked (at 0 35.56 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 11 "/A1") (pinfunction "Pin_15") (pintype "passive") (tstamp 297ee24b-e2f2-4177-8ae7-aca2d5557d83))
(pad "16" thru_hole oval locked (at 0 38.1 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 20 "/A0") (pinfunction "Pin_16") (pintype "passive") (tstamp 7f6c6d17-a93f-4644-8a94-0ecd12c086bc))
(pad "17" thru_hole oval locked (at 0 40.64 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_17") (pintype "passive") (tstamp c99e01d7-0fd0-49b3-a4f1-346e37a340c8))
(pad "18" thru_hole oval locked (at 0 43.18 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 1 "VCC") (pinfunction "Pin_18") (pintype "passive") (tstamp d6b8cc52-11e5-4e8c-b3b6-da2f78c188bb))
(pad "19" thru_hole oval locked (at 0 45.72 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 99 "/~{M1}") (pinfunction "Pin_19") (pintype "passive") (tstamp e7f31acb-f901-4e43-8e5c-d1f6a9a25fb0))
(pad "20" thru_hole oval locked (at 0 48.26 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 82 "/~{RESET}") (pinfunction "Pin_20") (pintype "passive") (tstamp 503d056a-944c-4263-9231-2f32e8a0146e))
(pad "21" thru_hole oval locked (at 0 50.8 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 83 "unconnected-(P1-Pad21)") (pinfunction "Pin_21") (pintype "passive+no_connect") (tstamp 61582f78-71e5-4df4-939c-49f719d89ac9))
(pad "22" thru_hole oval locked (at 0 53.34 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 84 "unconnected-(P1-Pad22)") (pinfunction "Pin_22") (pintype "passive+no_connect") (tstamp 10b6c4d4-98cb-422b-a3d4-4bb8d0ab4548))
(pad "23" thru_hole oval locked (at 0 55.88 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 85 "unconnected-(P1-Pad23)") (pinfunction "Pin_23") (pintype "passive+no_connect") (tstamp a3b0f322-3f2c-42c6-b96f-a449e20c7a10))
(pad "24" thru_hole oval locked (at 0 58.42 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 86 "/~{WR}") (pinfunction "Pin_24") (pintype "passive") (tstamp 3c027700-dda9-4058-8331-40277eea40e4))
(pad "25" thru_hole oval locked (at 0 60.96 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 87 "/~{RD}") (pinfunction "Pin_25") (pintype "passive") (tstamp 32495407-6d07-47a4-8377-ac648b0e7242))
(pad "26" thru_hole oval locked (at 0 63.5 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 88 "/~{IORQ}") (pinfunction "Pin_26") (pintype "passive") (tstamp a36ef921-2f15-4de6-9309-d05aa2c4ab8c))
(pad "27" thru_hole oval locked (at 0 66.04 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 3 "/D0") (pinfunction "Pin_27") (pintype "passive") (tstamp 9a09d9c1-5be1-4683-85b6-7b2c0fb26d65))
(pad "28" thru_hole oval locked (at 0 68.58 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 4 "/D1") (pinfunction "Pin_28") (pintype "passive") (tstamp 39feffc1-e5c9-4fab-a7a6-ba87c470927b))
(pad "29" thru_hole oval locked (at 0 71.12 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 5 "/D2") (pinfunction "Pin_29") (pintype "passive") (tstamp 2d729e16-d21b-464b-be5a-88c1e0512a6f))
(pad "30" thru_hole oval locked (at 0 73.66 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 6 "/D3") (pinfunction "Pin_30") (pintype "passive") (tstamp d4c8c2a1-c88d-4464-9e8c-0431728b7d1a))
(pad "31" thru_hole oval locked (at 0 76.2 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 7 "/D4") (pinfunction "Pin_31") (pintype "passive") (tstamp d731603b-f7f4-4d08-949a-c7a0d9c83421))
(pad "32" thru_hole oval locked (at 0 78.74 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 8 "/D5") (pinfunction "Pin_32") (pintype "passive") (tstamp 16654c24-b7b0-4610-b617-a26b1fe1d3d8))
(pad "33" thru_hole oval locked (at 0 81.28 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 9 "/D6") (pinfunction "Pin_33") (pintype "passive") (tstamp 3ce55c0b-d211-437a-b731-8c9079936cbc))
(pad "34" thru_hole oval locked (at 0 83.82 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 10 "/D7") (pinfunction "Pin_34") (pintype "passive") (tstamp ecc10d1d-b981-4584-9457-00e190a960dd))
(pad "35" thru_hole oval locked (at 0 86.36 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 89 "unconnected-(P1-Pad35)") (pinfunction "Pin_35") (pintype "passive+no_connect") (tstamp 55fc438d-8c4a-44c4-b620-aa24aeebada9))
(pad "36" thru_hole oval locked (at 0 88.9 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 90 "unconnected-(P1-Pad36)") (pinfunction "Pin_36") (pintype "passive+no_connect") (tstamp 1042593d-65b3-41dc-a367-c064b667a59c))
(pad "37" thru_hole oval locked (at 0 91.44 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 91 "unconnected-(P1-Pad37)") (pinfunction "Pin_37") (pintype "passive+no_connect") (tstamp ff5b2d8e-ec7b-48c2-a6a1-351e7a4ddf5e))
(pad "38" thru_hole oval locked (at 0 93.98 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 92 "unconnected-(P1-Pad38)") (pinfunction "Pin_38") (pintype "passive+no_connect") (tstamp 1904d750-7ef3-4aae-8496-f9ac9591c5fc))
(pad "39" thru_hole oval locked (at 0 96.52 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 93 "unconnected-(P1-Pad39)") (pinfunction "Pin_39") (pintype "passive+no_connect") (tstamp eb76f6ef-2027-4098-8ee8-5eed62a8333f))
(model "${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x39_Pitch2.54mm.wrl"
(offset (xyz 0 -48.25999928 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(footprint "Package_LCC:PLCC-44_THT-Socket" (layer "F.Cu")
(tedit 5A02ECC8) (tstamp 00000000-0000-0000-0000-000059b704a4)
(at 140.97 147.32 -90)
(descr "PLCC, 44 pins, through hole")
(tags "plcc leaded")
(property "Sheetfile" "File: rc2014-82c55-ide.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059b6d304")
(attr through_hole)
(fp_text reference "U1" (at -1.27 6.985) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c7549358-f7d3-4fa4-a0e4-94af08257c01)
)
(fp_text value "82C55A_PLCC" (at -1.27 19.1 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93b02a95-2760-4073-a8e0-7ccfaab44e98)
)
(fp_text user "${REFERENCE}" (at -1.27 6.35 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18c81bf7-9fa3-4071-875b-468deb5fc45b)
)
(fp_line (start -13.12 -4.5) (end -13.12 18.2) (layer "F.SilkS") (width 0.12) (tstamp 0041e11c-acba-40a9-99d9-5a7eaead63dc))
(fp_line (start -13.12 18.2) (end 10.58 18.2) (layer "F.SilkS") (width 0.12) (tstamp 5a5eeee4-adaa-4ef0-94c7-fa7bb9901ad1))
(fp_line (start 10.58 -5.5) (end -0.27 -5.5) (layer "F.SilkS") (width 0.12) (tstamp 67fac13a-1ceb-4c4a-ac44-05d1b2fca7e8))
(fp_line (start -2.27 -5.5) (end -12.12 -5.5) (layer "F.SilkS") (width 0.12) (tstamp 86904322-3766-4ed4-b3ba-dc2055f62382))
(fp_line (start 10.58 18.2) (end 10.58 -5.5) (layer "F.SilkS") (width 0.12) (tstamp b6fb2a27-f306-4cac-ad86-942497cf760b))
(fp_line (start -12.12 -5.5) (end -13.12 -4.5) (layer "F.SilkS") (width 0.12) (tstamp c551a9fb-c8a6-4c69-9edc-001a2b498109))
(fp_line (start -13.52 18.6) (end 10.98 18.6) (layer "F.CrtYd") (width 0.05) (tstamp 67921c8e-07fc-4ae0-bf7e-6384e2e8a4c3))
(fp_line (start 10.98 18.6) (end 10.98 -5.9) (layer "F.CrtYd") (width 0.05) (tstamp 7fed9418-bd03-49cb-be60-1e105b5ddf11))
(fp_line (start -13.52 -5.9) (end -13.52 18.6) (layer "F.CrtYd") (width 0.05) (tstamp 92d6a4ff-6d71-47e6-8bcf-d2f65c72239c))
(fp_line (start 10.98 -5.9) (end -13.52 -5.9) (layer "F.CrtYd") (width 0.05) (tstamp c0f0ae26-e6ab-4534-82b3-1780b6b4ca46))
(fp_line (start 7.94 15.56) (end 7.94 -2.86) (layer "F.Fab") (width 0.1) (tstamp 3d8f59cf-e2fb-4a0e-a288-d2bc70e8c6d2))
(fp_line (start -1.77 -5.4) (end -1.27 -4.4) (layer "F.Fab") (width 0.1) (tstamp 4a9afee2-5c1e-412f-aeec-39f4ddc4381f))
(fp_line (start -13.02 18.1) (end 10.48 18.1) (layer "F.Fab") (width 0.1) (tstamp 4f8cb727-01ab-4568-8766-2602bbf09c6f))
(fp_line (start -10.48 15.56) (end 7.94 15.56) (layer "F.Fab") (width 0.1) (tstamp 796a860d-91bb-4501-a4e3-7ba83170eed0))
(fp_line (start 7.94 -2.86) (end -10.48 -2.86) (layer "F.Fab") (width 0.1) (tstamp 804acd55-fc9f-45e6-8009-6e1edfb42cd2))
(fp_line (start -10.48 -2.86) (end -10.48 15.56) (layer "F.Fab") (width 0.1) (tstamp 9113b43a-0764-4309-a665-6cca60173ab3))
(fp_line (start -13.02 -4.4) (end -13.02 18.1) (layer "F.Fab") (width 0.1) (tstamp 9901b798-3296-4593-ad68-2bb3a1edd654))
(fp_line (start -12.02 -5.4) (end -13.02 -4.4) (layer "F.Fab") (width 0.1) (tstamp d30917ae-edf6-472b-82ee-2c83c7492dc6))
(fp_line (start -1.27 -4.4) (end -0.77 -5.4) (layer "F.Fab") (width 0.1) (tstamp e02a5394-169d-4967-9628-663ed33f4adb))
(fp_line (start 10.48 -5.4) (end -12.02 -5.4) (layer "F.Fab") (width 0.1) (tstamp f0073226-de3f-45b3-93fe-c1ef660d5f1d))
(fp_line (start 10.48 18.1) (end 10.48 -5.4) (layer "F.Fab") (width 0.1) (tstamp f4825fd4-5f4e-4cb3-bccf-a7289aa6769c))
(pad "1" thru_hole rect (at 0 0 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 94 "unconnected-(U1-Pad1)") (pinfunction "NC") (pintype "no_connect") (tstamp b60b6df7-21de-4610-9cc1-a46f518a230c))
(pad "2" thru_hole circle (at -2.54 -2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "/PA3") (pinfunction "PA3") (pintype "bidirectional") (tstamp 7aa656b6-371a-4566-b705-3567bbce83f3))
(pad "3" thru_hole circle (at -2.54 0 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 38 "/PA2") (pinfunction "PA2") (pintype "bidirectional") (tstamp a67a617f-cb30-411d-8301-12ad2f1c3407))
(pad "4" thru_hole circle (at -5.08 -2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 40 "/PA1") (pinfunction "PA1") (pintype "bidirectional") (tstamp 14ffd9e8-1bc8-4d35-885c-f4d4181d86f7))
(pad "5" thru_hole circle (at -5.08 0 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 42 "/PA0") (pinfunction "PA0") (pintype "bidirectional") (tstamp f3321b88-d2c1-492a-ba24-72744288eb77))
(pad "6" thru_hole circle (at -7.62 -2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 87 "/~{RD}") (pinfunction "~{RD}") (pintype "input") (tstamp c31617d1-b312-41b4-a1fb-da221594bc0b))
(pad "7" thru_hole circle (at -10.16 0 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 95 "/~{PIO_CS}") (pinfunction "~{CS}") (pintype "input") (tstamp 2743d003-9b98-47f2-a00d-478794c8267d))
(pad "8" thru_hole circle (at -7.62 0 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 930464c9-5edb-4ac8-9329-fd54641ebe7a))
(pad "9" thru_hole circle (at -10.16 2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "/A1") (pinfunction "A1") (pintype "input") (tstamp 32e74285-8f31-4d1f-9734-2d27a6e52e63))
(pad "10" thru_hole circle (at -7.62 2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "/A0") (pinfunction "A0") (pintype "input") (tstamp 22fa1968-11bd-4df5-8100-95bfb08da4be))
(pad "11" thru_hole circle (at -10.16 5.08 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 33 "/PC7") (pinfunction "PC7") (pintype "bidirectional") (tstamp 5394dc63-f18d-4250-b0fc-fd372230afb3))
(pad "12" thru_hole circle (at -7.62 5.08 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 96 "unconnected-(U1-Pad12)") (pinfunction "NC") (pintype "no_connect") (tstamp df08fcd1-aae9-4ec8-857f-7ddbabd4fd48))
(pad "13" thru_hole circle (at -10.16 7.62 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 54 "/PC6") (pinfunction "PC6") (pintype "bidirectional") (tstamp 175142d2-7260-4b54-aa76-b59f0610698f))
(pad "14" thru_hole circle (at -7.62 7.62 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 34 "/PC5") (pinfunction "PC5") (pintype "bidirectional") (tstamp 84109075-f625-40f1-8778-03619c9c53bf))
(pad "15" thru_hole circle (at -10.16 10.16 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 53 "/PC4") (pinfunction "PC4") (pintype "bidirectional") (tstamp 73d7dbfb-6e85-4702-9d9f-80c820f8838c))
(pad "16" thru_hole circle (at -7.62 10.16 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 61 "/PC0") (pinfunction "PC0") (pintype "bidirectional") (tstamp 7f7a21e8-930b-4b01-84f5-3bbf14a1fbaf))
(pad "17" thru_hole circle (at -10.16 12.7 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 63 "/PC1") (pinfunction "PC1") (pintype "bidirectional") (tstamp ba7767f6-e74b-49c9-9418-f941351ac521))
(pad "18" thru_hole circle (at -7.62 15.24 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 48 "/DA2") (pinfunction "PC2") (pintype "bidirectional") (tstamp c07008bf-7841-4668-a719-694e0cd8f70e))
(pad "19" thru_hole circle (at -7.62 12.7 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 35 "/PC3") (pinfunction "PC3") (pintype "bidirectional") (tstamp 3a6ea6b9-d400-43d3-8bef-7d5f5a35cf07))
(pad "20" thru_hole circle (at -5.08 15.24 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "/PB0") (pinfunction "PB0") (pintype "bidirectional") (tstamp cdaf55a7-01f0-49d5-bf93-7bbb9123fd1a))
(pad "21" thru_hole circle (at -5.08 12.7 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/PB1") (pinfunction "PB1") (pintype "bidirectional") (tstamp 4a4b11b7-f91d-4282-832b-5c89f023a8e6))
(pad "22" thru_hole circle (at -2.54 15.24 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/PB2") (pinfunction "PB2") (pintype "bidirectional") (tstamp 0d624329-6451-4d7a-93a5-65e13cd34541))
(pad "23" thru_hole circle (at -2.54 12.7 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 97 "unconnected-(U1-Pad23)") (pinfunction "NC") (pintype "no_connect") (tstamp 0b0e205b-c014-4477-b65a-8c5271cbaea2))
(pad "24" thru_hole circle (at 0 15.24 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "/PB3") (pinfunction "PB3") (pintype "bidirectional") (tstamp 9b6fd7fc-621f-47ae-92d0-4b062b3cab66))
(pad "25" thru_hole circle (at 0 12.7 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "/PB4") (pinfunction "PB4") (pintype "bidirectional") (tstamp f193282c-9b1a-42c9-b524-d0bb99d78f7b))
(pad "26" thru_hole circle (at 2.54 15.24 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 39 "/PB5") (pinfunction "PB5") (pintype "bidirectional") (tstamp 257a5d0c-16d8-400d-9ebd-6feb5e806562))
(pad "27" thru_hole circle (at 2.54 12.7 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 41 "/PB6") (pinfunction "PB6") (pintype "bidirectional") (tstamp 8a227fdd-2ca0-4836-a692-1d060dc62d7c))
(pad "28" thru_hole circle (at 5.08 15.24 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 43 "/PB7") (pinfunction "PB7") (pintype "bidirectional") (tstamp 41bd67ef-585f-49a4-9c36-49222a727354))
(pad "29" thru_hole circle (at 7.62 12.7 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 5f0d37c7-fda6-403c-a006-64643329db83))
(pad "30" thru_hole circle (at 5.08 12.7 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "/D7") (pinfunction "D7") (pintype "bidirectional") (tstamp 853d2aea-c9bf-4d79-b8f6-75f8d4363899))
(pad "31" thru_hole circle (at 7.62 10.16 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "/D6") (pinfunction "D6") (pintype "bidirectional") (tstamp 175616e0-4ff2-4d92-9a4d-ffebc3c852ab))
(pad "32" thru_hole circle (at 5.08 10.16 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "/D5") (pinfunction "D5") (pintype "bidirectional") (tstamp fe6f89c4-e42c-4e42-baf0-a36f3e1f3a4e))
(pad "33" thru_hole circle (at 7.62 7.62 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "/D4") (pinfunction "D4") (pintype "bidirectional") (tstamp 18af1eaf-ec9f-456d-b793-c6ebdddd3325))
(pad "34" thru_hole circle (at 5.08 7.62 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 98 "unconnected-(U1-Pad34)") (pinfunction "NC") (pintype "no_connect") (tstamp 17336875-4463-42be-82e6-4954da49c7c9))
(pad "35" thru_hole circle (at 7.62 5.08 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "/D3") (pinfunction "D3") (pintype "bidirectional") (tstamp d42a4b54-c6d3-4b8a-801f-4311bad5e064))
(pad "36" thru_hole circle (at 5.08 5.08 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "/D2") (pinfunction "D2") (pintype "bidirectional") (tstamp 95219e94-4904-4ea6-811b-215701f4f39b))
(pad "37" thru_hole circle (at 7.62 2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "/D1") (pinfunction "D1") (pintype "bidirectional") (tstamp 37128b26-1335-47a9-8800-955aff97e3e7))
(pad "38" thru_hole circle (at 5.08 2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "/D0") (pinfunction "D0") (pintype "bidirectional") (tstamp 01bed415-3063-4c02-b869-ff6c3e4ff9e2))
(pad "39" thru_hole circle (at 7.62 0 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 52 "/RESET") (pinfunction "RESET") (pintype "input") (tstamp cf2aced2-5e4b-4120-8569-a0a21b38d58d))
(pad "40" thru_hole circle (at 5.08 -2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 86 "/~{WR}") (pinfunction "~{WR}") (pintype "input") (tstamp 1db4c26b-14b7-4121-8d35-1dfddf0071e7))
(pad "41" thru_hole circle (at 5.08 0 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "/PA7") (pinfunction "PA7") (pintype "bidirectional") (tstamp 8b170f96-fdf8-4c68-8847-24853348d482))
(pad "42" thru_hole circle (at 2.54 -2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "/PA6") (pinfunction "PA6") (pintype "bidirectional") (tstamp 30623d0a-c19f-4e98-801f-88b2464d22b7))
(pad "43" thru_hole circle (at 2.54 0 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/PA5") (pinfunction "PA5") (pintype "bidirectional") (tstamp 1ac23aab-f9a2-4760-b651-6cf78364bd86))
(pad "44" thru_hole circle (at 0 -2.54 270) (size 1.4224 1.4224) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "/PA4") (pinfunction "PA4") (pintype "bidirectional") (tstamp 6c42174e-e729-47b9-b250-953fa641e723))
(model "${KICAD6_3DMODEL_DIR}/Package_LCC.3dshapes/PLCC-44_THT-Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-000059b70717)
(at 153.035 123.825 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "File: rc2014-82c55-ide.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059b6fb18")
(attr through_hole)
(fp_text reference "R1" (at 3.81 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c2b83aa-cad7-429d-bbfb-ff7717fff9d9)
)
(fp_text value "270R" (at 3.81 2.37 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9f99f98-25b0-401c-89e6-8e6114f5662b)
)
(fp_text user "${REFERENCE}" (at 3.81 0 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b6ca4a3-bee5-4e6b-9522-d9757d25bc1b)
)
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp 4891d83b-ebbd-427a-a930-0f0bdcebde22))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8f53dc68-99f9-4e88-8dd7-3e5c97f45722))
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 957e2628-a333-4b49-9f48-65daa7620143))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp ac85815a-02fd-4f20-af18-266e5f2f2281))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp e747b767-47cf-40c1-afb7-64cd9ffedaeb))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp ea458b9d-d560-4a62-8cbc-6da029b724db))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 28a9e09e-06c9-4852-8c25-6a91f014318e))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 644535c1-b832-453d-b259-1e2833f31f56))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp a71c517d-111a-4b91-bce4-6c58e2b2d2a1))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp a7238eed-e098-4a0d-a4c3-4e07726d2985))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 66c158f1-0c54-48b1-b5b3-d8faaa083963))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 67174e06-412e-495b-8da8-1eb242f29096))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp a28e0762-c4c5-42aa-9672-73b14d6eda42))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp d0d50652-8cb3-4861-97e5-eef74182754e))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp dbd7ac9f-2c83-48ed-bcdc-2c9a6284a8d5))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp dce976d4-b519-4c66-a7c7-d9135126f992))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 36 "Net-(D1-Pad1)") (pintype "passive") (tstamp a12324dd-01da-4508-b801-3d4455f83320))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 100 "/~{ACT}") (pintype "passive") (tstamp 96072b87-b18c-443a-b7d4-8ecb1ca51c56))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-20_W7.62mm_Socket_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 00000000-0000-0000-0000-000059b70735)
(at 66.675 156.21 90)
(descr "20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads")
(property "Sheetfile" "File: rc2014-82c55-ide.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059b6e29e")
(attr through_hole)
(fp_text reference "U2" (at -0.635 -3.175 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5352b0fe-31bc-4d3b-8cbd-175477c2cdbb)
)
(fp_text value "74HCT688" (at 3.81 25.19 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da9b9245-baae-4566-9693-8fec82db2079)
)
(fp_text user "${REFERENCE}" (at 3.81 11.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 551ee5a9-5f4e-4edc-8be5-1ab37eef681a)
)
(fp_line (start 9.06 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 128f8f26-9233-4bdc-9f0d-d3d0a977bd9e))
(fp_line (start 6.06 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3b3d99ef-e650-4bbc-b054-e22de0e10f32))
(fp_line (start -1.44 24.25) (end 9.06 24.25) (layer "F.SilkS") (width 0.12) (tstamp 5117e16e-cd52-484d-ab08-9b41b81b8f86))
(fp_line (start -1.44 -1.39) (end -1.44 24.25) (layer "F.SilkS") (width 0.12) (tstamp 6c93b30a-f52f-4798-ae26-fb1e43e25578))
(fp_line (start 2.81 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7fed469c-20b9-4eb3-818e-f4edcdf6a849))
(fp_line (start 9.06 24.25) (end 9.06 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 8efb0b7c-a2a3-444d-9870-6dcf32cfdc8b))
(fp_line (start 6.06 24.19) (end 6.06 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a5cfa35d-33aa-454a-9e15-9d1fbd1ad802))
(fp_line (start 1.56 -1.33) (end 1.56 24.19) (layer "F.SilkS") (width 0.12) (tstamp c86519d0-4538-4388-b972-2afad75eff3c))
(fp_line (start 1.56 24.19) (end 6.06 24.19) (layer "F.SilkS") (width 0.12) (tstamp d990456c-7784-4733-b583-0afa0d7d3cbe))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp bffb8746-a77c-402f-bf64-a743ca53bbc3))
(fp_line (start -1.55 -1.6) (end -1.55 24.45) (layer "F.CrtYd") (width 0.05) (tstamp 17594baa-e454-4257-ac3c-d666443519df))
(fp_line (start 9.15 24.45) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 39ced601-23f8-45aa-b583-992197df5be8))
(fp_line (start -1.55 24.45) (end 9.15 24.45) (layer "F.CrtYd") (width 0.05) (tstamp 848c76a3-8cf7-4bae-91c1-5f3e19de6a22))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp b700e61c-b5e4-4294-adc6-6b99d38337f3))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 0a7c167e-4ba7-44b5-b16d-092cce6482ed))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0f9a43ef-6b43-4c7f-baa8-46a7ab2af289))
(fp_line (start -1.27 24.19) (end 8.89 24.19) (layer "F.Fab") (width 0.1) (tstamp 229d8f7a-2ab5-4584-a5ab-b21885f57b16))
(fp_line (start 0.635 24.13) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 27572412-fdcb-49b4-8a2c-7f718b8da0f9))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8b2fa430-effd-45cb-8234-9daee0c2c9eb))
(fp_line (start 8.89 24.19) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp a990f8eb-efbc-48e7-b0a9-5aca77cb8138))
(fp_line (start 6.985 -1.27) (end 6.985 24.13) (layer "F.Fab") (width 0.1) (tstamp ac3b4671-332c-49d1-a84a-2c8587ac5f84))
(fp_line (start -1.27 -1.33) (end -1.27 24.19) (layer "F.Fab") (width 0.1) (tstamp c57a8e81-4424-4a4d-9eb7-d99922de874d))
(fp_line (start 6.985 24.13) (end 0.635 24.13) (layer "F.Fab") (width 0.1) (tstamp d3dbd24c-5941-401b-b350-4bf82448c28d))
(pad "1" thru_hole rect (at 0 0 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 88 "/~{IORQ}") (pinfunction "G") (pintype "input") (tstamp 2b1a8020-b8e0-480f-974c-7a226012a158))
(pad "2" thru_hole oval (at 0 2.54 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "/A7") (pinfunction "P0") (pintype "input") (tstamp 728014fc-1b32-454e-9c5e-1f19b05df7dd))
(pad "3" thru_hole oval (at 0 5.08 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 59 "Net-(RN1-Pad8)") (pinfunction "R0") (pintype "input") (tstamp 6e3d88e9-6743-4a3e-8c4b-97e4346a475e))
(pad "4" thru_hole oval (at 0 7.62 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "/A6") (pinfunction "P1") (pintype "input") (tstamp 4fb18930-0960-4b25-902d-eacc66e54c29))
(pad "5" thru_hole oval (at 0 10.16 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 58 "Net-(RN1-Pad7)") (pinfunction "R1") (pintype "input") (tstamp 02e821d9-9cc0-4760-aa78-580dc826e733))
(pad "6" thru_hole oval (at 0 12.7 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "/A5") (pinfunction "P2") (pintype "input") (tstamp 6c8a636c-0850-40f2-867d-d1397b1022f8))
(pad "7" thru_hole oval (at 0 15.24 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 57 "Net-(RN1-Pad6)") (pinfunction "R2") (pintype "input") (tstamp d065e41a-f957-43e0-b047-9ff240ce849a))
(pad "8" thru_hole oval (at 0 17.78 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "/A4") (pinfunction "P3") (pintype "input") (tstamp 6429a062-d753-4165-91f8-badf014add71))
(pad "9" thru_hole oval (at 0 20.32 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 56 "Net-(RN1-Pad5)") (pinfunction "R3") (pintype "input") (tstamp 1f2a1231-6605-4f49-8dd1-c1369e582a92))
(pad "10" thru_hole oval (at 0 22.86 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 0e18cd44-f73f-4527-9b6a-201c9a62caea))
(pad "11" thru_hole oval (at 7.62 22.86 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "/A3") (pinfunction "P4") (pintype "input") (tstamp ea966899-4bde-4a56-b6b4-55d56680b0ef))
(pad "12" thru_hole oval (at 7.62 20.32 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 55 "Net-(RN1-Pad4)") (pinfunction "R4") (pintype "input") (tstamp 9688ccbe-ea8a-4297-8bf8-ff9528de589d))
(pad "13" thru_hole oval (at 7.62 17.78 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "/A2") (pinfunction "P5") (pintype "input") (tstamp 9c45ea8d-e059-46d1-8c23-8c2c1a099cb8))
(pad "14" thru_hole oval (at 7.62 15.24 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 65 "Net-(RN1-Pad3)") (pinfunction "R5") (pintype "input") (tstamp 8e4fe51a-8330-4114-9f53-211bbb969d2a))
(pad "15" thru_hole oval (at 7.62 12.7 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 99 "/~{M1}") (pinfunction "P6") (pintype "input") (tstamp dc1fa307-2048-406c-8dc8-14d15b3f93dd))
(pad "16" thru_hole oval (at 7.62 10.16 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "VCC") (pinfunction "R6") (pintype "input") (tstamp 4d7ea13a-55c6-4f05-a3a6-972b641d51a2))
(pad "17" thru_hole oval (at 7.62 7.62 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 32 "Net-(RN1-Pad2)") (pinfunction "P7") (pintype "input") (tstamp 5a58de66-50b7-44ea-b5ae-b4540159cae4))
(pad "18" thru_hole oval (at 7.62 5.08 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 32 "Net-(RN1-Pad2)") (pinfunction "R7") (pintype "input") (tstamp 6cd22ff3-aa24-47c2-9780-3a1881cf6c97))
(pad "19" thru_hole oval (at 7.62 2.54 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 95 "/~{PIO_CS}") (pinfunction "P=R") (pintype "output") (tstamp 142cd938-1b9e-466d-9281-1b7a8cfd96c3))
(pad "20" thru_hole oval (at 7.62 0 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 33e6a799-aeca-4600-8ba8-6993d9d91a5b))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-20_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-14_W7.62mm_Socket_LongPads" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 00000000-0000-0000-0000-000059b70747)
(at 98.425 156.21 90)
(descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads")
(property "Sheetfile" "File: rc2014-82c55-ide.kicad_sch")
(property "Sheetname" "")
(path "/1ccc5f53-065b-44e2-aaf9-75fe664f1207")
(attr through_hole)
(fp_text reference "U3" (at -0.635 -3.175 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2e4baf2-74aa-499f-a4cc-d791fe3828a5)
)
(fp_text value "74HCT04" (at 3.81 17.57 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd24467e-a9a9-4e92-9711-c1629d204f2b)
)
(fp_text user "${REFERENCE}" (at 3.81 7.62 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f01d6bcb-342f-41cd-aadd-aae2a5f930b1)
)
(fp_line (start 6.06 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 154f2b54-f066-494b-a953-3754c0372406))
(fp_line (start 2.81 -1.33) (end 1.56 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 44d365e3-54b3-46cf-80d9-7a86da1ad46d))
(fp_line (start 9.06 16.63) (end 9.06 -1.39) (layer "F.SilkS") (width 0.12) (tstamp 790dad79-4c44-4ae2-98d9-122c46695c80))
(fp_line (start 9.06 -1.39) (end -1.44 -1.39) (layer "F.SilkS") (width 0.12) (tstamp a3410f8d-09d4-4278-bbfc-9566987931d1))
(fp_line (start -1.44 16.63) (end 9.06 16.63) (layer "F.SilkS") (width 0.12) (tstamp b35d9ea5-4fe6-4323-ab67-66c5048822e6))
(fp_line (start 1.56 -1.33) (end 1.56 16.57) (layer "F.SilkS") (width 0.12) (tstamp db6f4da9-b372-4ef1-be92-fcfe9fcee579))
(fp_line (start -1.44 -1.39) (end -1.44 16.63) (layer "F.SilkS") (width 0.12) (tstamp e13b3b36-fc1f-4aaf-a6c0-a3be3c218bff))
(fp_line (start 1.56 16.57) (end 6.06 16.57) (layer "F.SilkS") (width 0.12) (tstamp e2f89e64-965a-4520-a7a7-f1d41f914e10))
(fp_line (start 6.06 16.57) (end 6.06 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f52c5161-b08e-4a65-ae64-5e836fa8dd6c))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 25e972c1-2b15-462c-ad87-5efdd3acc2bb))
(fp_line (start -1.55 16.85) (end 9.15 16.85) (layer "F.CrtYd") (width 0.05) (tstamp 5e019817-20c4-4a31-93fa-eef02935b222))
(fp_line (start -1.55 -1.6) (end -1.55 16.85) (layer "F.CrtYd") (width 0.05) (tstamp a6f3d283-6f88-4498-929e-c25fc5f2bd27))
(fp_line (start 9.15 -1.6) (end -1.55 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp de7c5957-aed1-4ea1-82a9-364372529ab5))
(fp_line (start 9.15 16.85) (end 9.15 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp ed8e07a7-5816-4333-bf23-a0902448b97c))
(fp_line (start 6.985 16.51) (end 0.635 16.51) (layer "F.Fab") (width 0.1) (tstamp 4a74c7cc-f7e0-493b-9907-0203ee939308))
(fp_line (start -1.27 -1.33) (end -1.27 16.57) (layer "F.Fab") (width 0.1) (tstamp 4db9aeaa-2f50-4daf-a2b1-55c119bb3105))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 540e840c-e52a-4097-8c76-4421cc02c6c5))
(fp_line (start 8.89 -1.33) (end -1.27 -1.33) (layer "F.Fab") (width 0.1) (tstamp 84d34e86-2f57-494e-b68b-be117e08befe))
(fp_line (start -1.27 16.57) (end 8.89 16.57) (layer "F.Fab") (width 0.1) (tstamp 93762fe6-cfc2-41e4-82a8-a4d6f1b37eb5))
(fp_line (start 6.985 -1.27) (end 6.985 16.51) (layer "F.Fab") (width 0.1) (tstamp 9deb16c5-4758-43d8-8f26-25f3197578f0))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp abd0c2d5-7300-465e-afc9-02524adf45a7))
(fp_line (start 0.635 16.51) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp bfcd965a-f2a7-4582-b81a-ab07cf160823))
(fp_line (start 8.89 16.57) (end 8.89 -1.33) (layer "F.Fab") (width 0.1) (tstamp e4811a30-09f4-446a-b03f-4f0042325e0d))
(pad "1" thru_hole rect (at 0 0 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 35 "/PC3") (pintype "input") (tstamp a4913530-cc76-480d-a5e2-cfa85ab94744))
(pad "2" thru_hole oval (at 0 2.54 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 51 "/~{DCS0}") (pintype "output") (tstamp 9e83aa52-8f88-4fdf-b71b-3e4ef0f825b5))
(pad "3" thru_hole oval (at 0 5.08 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 82 "/~{RESET}") (pintype "input") (tstamp 09792ccb-2734-4bd5-b439-7c1a5036188f))
(pad "4" thru_hole oval (at 0 7.62 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 52 "/RESET") (pintype "output") (tstamp 9fb704e5-feaf-4ce0-87b4-2b448d9e419b))
(pad "5" thru_hole oval (at 0 10.16 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 34 "/PC5") (pintype "input") (tstamp df137f26-7c57-4fd9-95ea-b1d2b9ab6c23))
(pad "6" thru_hole oval (at 0 12.7 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 31 "/~{DIOW}") (pintype "output") (tstamp 7359caa5-f53f-4157-a347-0da198095072))
(pad "7" thru_hole oval (at 0 15.24 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 0e715efb-d36a-45ea-ab28-bec3d020a40d))
(pad "8" thru_hole oval (at 7.62 15.24 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 68 "/~{DCS1}") (pintype "output") (tstamp 9391a3c6-0b1c-49eb-875f-665245e9270f))
(pad "9" thru_hole oval (at 7.62 12.7 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 62 "/DCS1") (pintype "input") (tstamp 34800036-3afa-4233-9328-a6d544c7145c))
(pad "10" thru_hole oval (at 7.62 10.16 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 37 "/~{DIOR}") (pintype "output") (tstamp e42c1c9b-d5f6-4f45-9af2-8be3e5a5eff8))
(pad "11" thru_hole oval (at 7.62 7.62 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 64 "/DIOR") (pintype "input") (tstamp af9f1b77-bfc0-4501-b406-c9db967c3ece))
(pad "12" thru_hole oval (at 7.62 5.08 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "/~{DRESET}") (pintype "output") (tstamp ebebb267-c5fd-4920-b752-0700d41c329d))
(pad "13" thru_hole oval (at 7.62 2.54 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 33 "/PC7") (pintype "input") (tstamp d8ddeefb-a59a-465b-b5f2-77d193a2a9a7))
(pad "14" thru_hole oval (at 7.62 0 90) (size 2.4 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp e9e85bf3-bffa-4785-a8c2-728742a0f698))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.00mm:PinHeader_2x22_P2.00mm_Vertical" (layer "F.Cu")
(tedit 59FED667) (tstamp 00000000-0000-0000-0000-000059b848b5)
(at 93.345 128.905 90)
(descr "Through hole straight pin header, 2x22, 2.00mm pitch, double rows")
(tags "Through hole pin header THT 2x22 2.00mm double row")
(property "Sheetfile" "File: rc2014-82c55-ide.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059b82261")
(attr through_hole)
(fp_text reference "J3" (at 1 -2.54 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23554272-ba4a-4d68-8cab-b8b203dd56cd)
)
(fp_text value "Conn_02x22_Odd_Even" (at 1 44.06 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7bca45fd-fdc8-42b0-a06b-1e86b09dee78)
)
(fp_text user "${REFERENCE}" (at 1 21 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8020e4b-9522-4178-9291-83eba98449c6)
)
(fp_line (start 3.06 -1.06) (end 3.06 43.06) (layer "F.SilkS") (width 0.12) (tstamp 079e5680-4f6e-48f4-8b56-dd696dd99217))
(fp_line (start 1 1) (end 1 -1.06) (layer "F.SilkS") (width 0.12) (tstamp 1bcf5157-d0bd-419c-b0aa-c950d21aa45c))
(fp_line (start -1.06 -1.06) (end 0 -1.06) (layer "F.SilkS") (width 0.12) (tstamp 23d36005-a4d8-4744-a20b-594ef074ba96))
(fp_line (start -1.06 1) (end 1 1) (layer "F.SilkS") (width 0.12) (tstamp 6bf470bb-0c25-418a-8f61-2ef365930add))
(fp_line (start -1.06 1) (end -1.06 43.06) (layer "F.SilkS") (width 0.12) (tstamp 726b9d0d-80ae-42d2-928a-10c9872908e7))
(fp_line (start -1.06 0) (end -1.06 -1.06) (layer "F.SilkS") (width 0.12) (tstamp d2923b17-dcf6-4025-8f1f-4d16f1b4f333))
(fp_line (start 1 -1.06) (end 3.06 -1.06) (layer "F.SilkS") (width 0.12) (tstamp e0aa7f4f-1d51-47bc-9fd3-9015704fa6b4))
(fp_line (start -1.06 43.06) (end 3.06 43.06) (layer "F.SilkS") (width 0.12) (tstamp e12ca013-5b25-40f2-86f1-fb90e2f636c2))
(fp_line (start -1.5 43.5) (end 3.5 43.5) (layer "F.CrtYd") (width 0.05) (tstamp 220841f0-88d6-4b2c-868d-21f30dcfc746))
(fp_line (start 3.5 43.5) (end 3.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 91c1eca1-f942-4073-a2d8-3ee1857fdfbb))
(fp_line (start 3.5 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d80eecc9-f7fe-4b13-85a0-cecee09d0add))
(fp_line (start -1.5 -1.5) (end -1.5 43.5) (layer "F.CrtYd") (width 0.05) (tstamp e12f74ce-b0e8-4faf-bd97-b76ffdd2b62a))
(fp_line (start -1 0) (end 0 -1) (layer "F.Fab") (width 0.1) (tstamp 2975f30f-6e22-4663-aa8f-27279e547612))
(fp_line (start -1 43) (end -1 0) (layer "F.Fab") (width 0.1) (tstamp 6a262fe9-e2e8-4712-a9d9-a093d2cb0f59))
(fp_line (start 0 -1) (end 3 -1) (layer "F.Fab") (width 0.1) (tstamp 929aa06a-4d42-4a20-a645-0c491b6fe1fa))
(fp_line (start 3 -1) (end 3 43) (layer "F.Fab") (width 0.1) (tstamp b379ba47-de8b-4ced-95e6-e0b4100e84ba))
(fp_line (start 3 43) (end -1 43) (layer "F.Fab") (width 0.1) (tstamp bdc3df5b-23a5-49b3-9f09-a01309bb1548))
(pad "1" thru_hole rect (at 0 0 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "/~{DRESET}") (pinfunction "Pin_1") (pintype "passive") (tstamp b2681a58-75e3-49ec-882f-d46525445641))
(pad "2" thru_hole oval (at 2 0 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 4777519a-e3f8-4d0a-80a2-264968fd8e7d))
(pad "3" thru_hole oval (at 0 2 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "/PA7") (pinfunction "Pin_3") (pintype "passive") (tstamp eadda341-4291-4bf9-ad98-4861a36b8ce4))
(pad "4" thru_hole oval (at 2 2 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "/PB0") (pinfunction "Pin_4") (pintype "passive") (tstamp a69963b0-b859-46d0-b9ce-a1d7258b3a33))
(pad "5" thru_hole oval (at 0 4 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 23 "/PA6") (pinfunction "Pin_5") (pintype "passive") (tstamp e0aea2c6-05e4-46dc-9498-b8b41424accc))
(pad "6" thru_hole oval (at 2 4 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 24 "/PB1") (pinfunction "Pin_6") (pintype "passive") (tstamp 9d8cd688-0a5d-4d77-9627-750e14c84f5a))
(pad "7" thru_hole oval (at 0 6 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 25 "/PA5") (pinfunction "Pin_7") (pintype "passive") (tstamp 9f8ff000-ef0e-4320-92dc-4d6c2bf688cd))
(pad "8" thru_hole oval (at 2 6 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 26 "/PB2") (pinfunction "Pin_8") (pintype "passive") (tstamp 05ed8929-b204-478e-8036-447f979d2d36))
(pad "9" thru_hole oval (at 0 8 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 27 "/PA4") (pinfunction "Pin_9") (pintype "passive") (tstamp d00810b4-c56c-492a-bfce-997cd3227abd))
(pad "10" thru_hole oval (at 2 8 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 28 "/PB3") (pinfunction "Pin_10") (pintype "passive") (tstamp 7a64ff8e-ea65-4f23-96fc-8bcf694a611c))
(pad "11" thru_hole oval (at 0 10 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 29 "/PA3") (pinfunction "Pin_11") (pintype "passive") (tstamp 200a5457-fc85-4607-9fcd-69d42c6472d4))
(pad "12" thru_hole oval (at 2 10 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 30 "/PB4") (pinfunction "Pin_12") (pintype "passive") (tstamp b1b8d2c8-480d-4e6b-9cf3-7bcb393f9cda))
(pad "13" thru_hole oval (at 0 12 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 38 "/PA2") (pinfunction "Pin_13") (pintype "passive") (tstamp f1c0cc9b-2f43-45b5-9446-74cb46f48a0d))
(pad "14" thru_hole oval (at 2 12 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 39 "/PB5") (pinfunction "Pin_14") (pintype "passive") (tstamp 4c63ea3e-ce7a-4382-b53c-e3ad72c3b560))
(pad "15" thru_hole oval (at 0 14 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 40 "/PA1") (pinfunction "Pin_15") (pintype "passive") (tstamp 6e63cd41-320c-4fb8-bb98-39c3ea9e405e))
(pad "16" thru_hole oval (at 2 14 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 41 "/PB6") (pinfunction "Pin_16") (pintype "passive") (tstamp 9e15da78-92f4-46d5-b9ce-dfda5e5a3572))
(pad "17" thru_hole oval (at 0 16 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 42 "/PA0") (pinfunction "Pin_17") (pintype "passive") (tstamp d65d7c7a-b50a-4ea5-ab42-393a88e81f1d))
(pad "18" thru_hole oval (at 2 16 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 43 "/PB7") (pinfunction "Pin_18") (pintype "passive") (tstamp 3fbe7250-30d3-4f3e-a75d-bd1bbaa32b82))
(pad "19" thru_hole oval (at 0 18 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_19") (pintype "passive") (tstamp e05bdda2-8ae3-4e33-877d-bb5d790727c8))
(pad "20" thru_hole oval (at 2 18 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 69 "unconnected-(J3-Pad20)") (pinfunction "Pin_20") (pintype "passive+no_connect") (tstamp 4f491cbf-10ce-4254-a5e5-67ffac701ba8))
(pad "21" thru_hole oval (at 0 20 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 66 "/DMARQ") (pinfunction "Pin_21") (pintype "passive") (tstamp ad5479f1-cf69-46e9-ae4f-d60549d1de09))
(pad "22" thru_hole oval (at 2 20 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_22") (pintype "passive") (tstamp f3fb03b1-4709-4d18-89b2-e94f4e88258f))
(pad "23" thru_hole oval (at 0 22 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 31 "/~{DIOW}") (pinfunction "Pin_23") (pintype "passive") (tstamp 3726f3a0-9e31-43e9-9ad0-af9679208fb4))
(pad "24" thru_hole oval (at 2 22 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_24") (pintype "passive") (tstamp f893a184-5f7e-49ff-8b9a-8767b7e15b6d))
(pad "25" thru_hole oval (at 0 24 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 37 "/~{DIOR}") (pinfunction "Pin_25") (pintype "passive") (tstamp 79cb2564-d3e1-441d-851f-7f64994ae851))
(pad "26" thru_hole oval (at 2 24 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_26") (pintype "passive") (tstamp 5ab83f14-dfbe-461b-873e-00f7d4c030dd))
(pad "27" thru_hole oval (at 0 26 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 70 "unconnected-(J3-Pad27)") (pinfunction "Pin_27") (pintype "passive+no_connect") (tstamp 4e725c7b-b5f5-4a00-85c1-ad8fe3264ab3))
(pad "28" thru_hole oval (at 2 26 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_28") (pintype "passive") (tstamp 094ba6d8-e929-430c-b33b-12282efa8ed6))
(pad "29" thru_hole oval (at 0 28 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 67 "/DMACK") (pinfunction "Pin_29") (pintype "passive") (tstamp 0348d76a-4cb3-465e-b804-b187691aaf61))
(pad "30" thru_hole oval (at 2 28 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_30") (pintype "passive") (tstamp 427b93b1-a32b-4993-8fd5-4e05f6114dd8))
(pad "31" thru_hole oval (at 0 30 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 71 "unconnected-(J3-Pad31)") (pinfunction "Pin_31") (pintype "passive+no_connect") (tstamp 9baa712a-8fc3-4c1d-b332-d1639ca8ae04))
(pad "32" thru_hole oval (at 2 30 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 72 "unconnected-(J3-Pad32)") (pinfunction "Pin_32") (pintype "passive+no_connect") (tstamp 5aaf880f-0955-4bc1-9f59-a7efa74eaef7))
(pad "33" thru_hole oval (at 0 32 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 47 "/DA1") (pinfunction "Pin_33") (pintype "passive") (tstamp 9a4bb32a-f39f-4948-bb41-96da9fdf6a4d))
(pad "34" thru_hole oval (at 2 32 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 73 "unconnected-(J3-Pad34)") (pinfunction "Pin_34") (pintype "passive+no_connect") (tstamp b01591a5-fa41-45db-a43b-2a568eaf3d0f))
(pad "35" thru_hole oval (at 0 34 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 46 "/DA0") (pinfunction "Pin_35") (pintype "passive") (tstamp ac78f17e-0b54-4197-ba4b-3cf543c0eb83))
(pad "36" thru_hole oval (at 2 34 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 48 "/DA2") (pinfunction "Pin_36") (pintype "passive") (tstamp f4e60fd9-7aba-4b45-b9ca-33d35d166d1b))
(pad "37" thru_hole oval (at 0 36 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 51 "/~{DCS0}") (pinfunction "Pin_37") (pintype "passive") (tstamp 9f88578c-9d73-47e2-877c-9a87b24d958c))
(pad "38" thru_hole oval (at 2 36 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 68 "/~{DCS1}") (pinfunction "Pin_38") (pintype "passive") (tstamp 2d793d28-ea6c-4323-8704-f8519ade0595))
(pad "39" thru_hole oval (at 0 38 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 100 "/~{ACT}") (pinfunction "Pin_39") (pintype "passive") (tstamp 105498e1-573b-42c4-bf3d-35963fe6ca08))
(pad "40" thru_hole oval (at 2 38 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_40") (pintype "passive") (tstamp 94cc6e33-6453-4299-900a-1333ae6c9db7))
(pad "41" thru_hole oval (at 0 40 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 60 "/IDE_VCC") (pinfunction "Pin_41") (pintype "passive") (tstamp e04919ee-7b2d-4c30-b871-fe82465bbdf0))
(pad "42" thru_hole oval (at 2 40 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 60 "/IDE_VCC") (pinfunction "Pin_42") (pintype "passive") (tstamp 88a4d7ca-0b90-416e-b93e-712641184969))
(pad "43" thru_hole oval (at 0 42 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_43") (pintype "passive") (tstamp 09426282-1efd-4d6a-a325-8b380ec1f110))
(pad "44" thru_hole oval (at 2 42 90) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (pinfunction "Pin_44") (pintype "passive") (tstamp 68aebd62-04f4-424f-968d-c9229e9fa394))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.00mm.3dshapes/PinHeader_2x22_P2.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_DIP_SPSTx06_Slide_9.78x17.42mm_W7.62mm_P2.54mm" (layer "F.Cu")
(tedit 5A4E1405) (tstamp 00000000-0000-0000-0000-000059c033f1)
(at 80.645 129.54 -90)
(descr "6x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x17.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf)")
(tags "DIP Switch SPST Slide 7.62mm 300mil")
(property "Sheetfile" "File: rc2014-82c55-ide.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000059c0abdd")
(attr through_hole)
(fp_text reference "SW1" (at 3.81 -3.42 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f0ca3e1e-40e3-4a62-bfd3-8f0f417b7682)
)
(fp_text value "SW_DIP_x06" (at 3.81 16.12 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1316856f-15d3-492f-bae4-6ca56447f386)
)
(fp_text user "on" (at 5.365 -1.4975 -90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 1ec56c54-ec7f-4360-b564-657cbf5bfc15)
)
(fp_text user "${REFERENCE}" (at 7.27 6.35) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 8f9fc1d0-48a7-4ac6-9a16-03d2f4836959)
)
(fp_line (start 1.78 -0.515) (end 3.133333 -0.515) (layer "F.SilkS") (width 0.12) (tstamp 00663ecc-05e4-4217-a09a-6bc2307f8016))
(fp_line (start 1.78 -0.035) (end 3.133333 -0.035) (layer "F.SilkS") (width 0.12) (tstamp 04675d95-b583-41d5-a60c-5cef040ab34a))
(fp_line (start 1.78 12.545) (end 3.133333 12.545) (layer "F.SilkS") (width 0.12) (tstamp 06d46954-8fd7-43a5-bdaf-017a4453fb5c))
(fp_line (start 1.78 10.245) (end 3.133333 10.245) (layer "F.SilkS") (width 0.12) (tstamp 0aa50119-b275-46bf-a73d-025fa6b13028))
(fp_line (start 8.76 -2.42) (end 8.76 15.12) (layer "F.SilkS") (width 0.12) (tstamp 0b30508e-d47d-435e-a6c1-2fcf3bb5b55e))
(fp_line (start -1.14 -2.42) (end 8.76 -2.42) (layer "F.SilkS") (width 0.12) (tstamp 0c8a01d3-d4fd-4b41-8220-c70fd393fd8a))
(fp_line (start 1.78 -0.275) (end 3.133333 -0.275) (layer "F.SilkS") (width 0.12) (tstamp 1171a567-feee-4605-8125-7204d8811333))
(fp_line (start 1.78 -0.395) (end 3.133333 -0.395) (layer "F.SilkS") (width 0.12) (tstamp 1ba2709e-0d12-4047-941a-31a42901ea31))
(fp_line (start 1.78 7.225) (end 3.133333 7.225) (layer "F.SilkS") (width 0.12) (tstamp 220cd223-f57c-4924-a8d1-00dcbbd9fd6a))
(fp_line (start 1.78 5.285) (end 3.133333 5.285) (layer "F.SilkS") (width 0.12) (tstamp 22ec15ed-bdda-419e-8926-8a683b23d235))
(fp_line (start 5.84 10.795) (end 5.84 9.525) (layer "F.SilkS") (width 0.12) (tstamp 237a9898-19da-4365-aff7-a109aab56709))
(fp_line (start 3.133333 12.065) (end 3.133333 13.335) (layer "F.SilkS") (width 0.12) (tstamp 289e5dbd-07c4-4c70-90bf-511b60582764))
(fp_line (start 5.84 12.065) (end 1.78 12.065) (layer "F.SilkS") (width 0.12) (tstamp 2b9ffecc-0e6a-4699-a7d6-b613a7308d8c))
(fp_line (start 1.78 9.525) (end 1.78 10.795) (layer "F.SilkS") (width 0.12) (tstamp 2d77a053-8c2f-4b08-94be-1371c7d3369f))
(fp_line (start 1.78 9.885) (end 3.133333 9.885) (layer "F.SilkS") (width 0.12) (tstamp 2f0598c2-488f-4968-812b-62b9a17c3516))
(fp_line (start 3.133333 4.445) (end 3.133333 5.715) (layer "F.SilkS") (width 0.12) (tstamp 2f310d06-a2ff-4e86-95d4-88df1f96e6a9))
(fp_line (start 1.78 12.425) (end 3.133333 12.425) (layer "F.SilkS") (width 0.12) (tstamp 2f984d5a-eeb5-40da-9040-cddbc771461a))
(fp_line (start 5.84 4.445) (end 1.78 4.445) (layer "F.SilkS") (width 0.12) (tstamp 3381bef4-f78d-43ab-9010-c731a10e7482))
(fp_line (start 1.78 4.445) (end 1.78 5.715) (layer "F.SilkS") (width 0.12) (tstamp 3423e621-d439-45cb-9c35-6f8ea0bf2103))
(fp_line (start 1.78 2.505) (end 3.133333 2.505) (layer "F.SilkS") (width 0.12) (tstamp 380481b6-6348-4bb3-a670-29edf806fd31))
(fp_line (start 1.78 8.065) (end 3.133333 8.065) (layer "F.SilkS") (width 0.12) (tstamp 3a261695-8ba2-4441-be59-1d41f8ae7c2f))
(fp_line (start 1.78 5.165) (end 3.133333 5.165) (layer "F.SilkS") (width 0.12) (tstamp 3a355a3b-2dd0-4302-bcf0-e958b99add69))
(fp_line (start 1.78 0.085) (end 3.133333 0.085) (layer "F.SilkS") (width 0.12) (tstamp 3a950e36-f58a-4dcd-8156-73a8c74c6bc2))
(fp_line (start 5.84 13.335) (end 5.84 12.065) (layer "F.SilkS") (width 0.12) (tstamp 3c206e85-7327-479f-9a5c-72b0665e5dbf))
(fp_line (start 1.78 7.585) (end 3.133333 7.585) (layer "F.SilkS") (width 0.12) (tstamp 3c7a4c6f-a990-4304-88b1-0b5e8d0726b7))
(fp_line (start -1.38 -2.66) (end 0.004 -2.66) (layer "F.SilkS") (width 0.12) (tstamp 3cb03a00-d3f7-4781-8bd4-8fc33373b76a))
(fp_line (start 1.78 10.365) (end 3.133333 10.365) (layer "F.SilkS") (width 0.12) (tstamp 3f5a7e5b-50ab-4db1-a82c-df9833118f19))
(fp_line (start 1.78 13.265) (end 3.133333 13.265) (layer "F.SilkS") (width 0.12) (tstamp 401402a7-dc33-460b-baa3-8f303d823222))
(fp_line (start 5.84 6.985) (end 1.78 6.985) (layer "F.SilkS") (width 0.12) (tstamp 41545376-528a-46ad-9936-990652089b1a))
(fp_line (start 1.78 12.665) (end 3.133333 12.665) (layer "F.SilkS") (width 0.12) (tstamp 4c140255-132b-4e08-ae89-cad251e56876))
(fp_line (start 1.78 2.745) (end 3.133333 2.745) (layer "F.SilkS") (width 0.12) (tstamp 5145cca8-3d45-48b5-94fe-47c1e85ecf03))
(fp_line (start 1.78 2.625) (end 3.133333 2.625) (layer "F.SilkS") (width 0.12) (tstamp 524f9e03-ad9e-427a-b6fc-b318cfa6e95b))
(fp_line (start 1.78 12.305) (end 3.133333 12.305) (layer "F.SilkS") (width 0.12) (tstamp 543a42af-2747-4d33-881c-d3a2acde169d))
(fp_line (start 1.78 5.715) (end 5.84 5.715) (layer "F.SilkS") (width 0.12) (tstamp 58f8f98b-34e5-43cf-bad1-3a9a708f9cd7))
(fp_line (start 3.133333 9.525) (end 3.133333 10.795) (layer "F.SilkS") (width 0.12) (tstamp 59ca58ca-422d-46c8-9ffe-7e4ae674c706))
(fp_line (start 1.78 4.805) (end 3.133333 4.805) (layer "F.SilkS") (width 0.12) (tstamp 5ae758ad-8acd-423e-aada-11d788a64aa2))
(fp_line (start 1.78 0.325) (end 3.133333 0.325) (layer "F.SilkS") (width 0.12) (tstamp 5afb8831-7fb2-4474-983a-f26f5ab0d3c7))
(fp_line (start 1.78 7.345) (end 3.133333 7.345) (layer "F.SilkS") (width 0.12) (tstamp 5ef48270-573a-400a-9d56-0e7c9e3d57b8))
(fp_line (start 1.78 5.525) (end 3.133333 5.525) (layer "F.SilkS") (width 0.12) (tstamp 6044eb93-ce75-4800-a2c5-fc714976775e))
(fp_line (start 1.78 2.025) (end 3.133333 2.025) (layer "F.SilkS") (width 0.12) (tstamp 60bef1f9-9e05-4010-8bae-3685de51a119))
(fp_line (start 5.84 -0.635) (end 1.78 -0.635) (layer "F.SilkS") (width 0.12) (tstamp 670b26e0-856e-40e7-939a-2d3cef2ffb0f))
(fp_line (start 1.78 7.105) (end 3.133333 7.105) (layer "F.SilkS") (width 0.12) (tstamp 6826f06d-dd7f-4177-8cea-9a58c0ce58e7))
(fp_line (start 1.78 5.045) (end 3.133333 5.045) (layer "F.SilkS") (width 0.12) (tstamp 6c878229-4769-4b20-b4c2-382bf554333d))
(fp_line (start 1.78 0.205) (end 3.133333 0.205) (layer "F.SilkS") (width 0.12) (tstamp 6f328159-9b77-4a14-be49-bc127491e9f2))
(fp_line (start 1.78 2.145) (end 3.133333 2.145) (layer "F.SilkS") (width 0.12) (tstamp 7283efa0-cfea-4ded-b80c-5a0263cc53f2))
(fp_line (start 1.78 8.255) (end 5.84 8.255) (layer "F.SilkS") (width 0.12) (tstamp 757c597a-7a44-41fd-805e-a4c3c6226be0))
(fp_line (start 1.78 12.905) (end 3.133333 12.905) (layer "F.SilkS") (width 0.12) (tstamp 76ebd28a-4153-4679-b11a-8ee93bc846b7))
(fp_line (start 1.78 8.185) (end 3.133333 8.185) (layer "F.SilkS") (width 0.12) (tstamp 790adcea-bf20-45e9-896b-5211115fc743))
(fp_line (start 1.78 9.765) (end 3.133333 9.765) (layer "F.SilkS") (width 0.12) (tstamp 7d6eaae3-133a-4402-99da-3332d842b8c6))
(fp_line (start 1.78 4.685) (end 3.133333 4.685) (layer "F.SilkS") (width 0.12) (tstamp 7fb50d58-54e8-4c30-a80a-371c1b15d1eb))
(fp_line (start 1.78 0.565) (end 3.133333 0.565) (layer "F.SilkS") (width 0.12) (tstamp 810603fa-95ae-4350-a1f4-4b6f624deaf5))
(fp_line (start 1.78 1.905) (end 1.78 3.175) (layer "F.SilkS") (width 0.12) (tstamp 8325ca6b-0f8d-4a93-89ab-bbd19fff0f29))
(fp_line (start 1.78 -0.155) (end 3.133333 -0.155) (layer "F.SilkS") (width 0.12) (tstamp 85541abb-1a39-483f-93c6-ec480a9ee396))
(fp_line (start 1.78 5.405) (end 3.133333 5.405) (layer "F.SilkS") (width 0.12) (tstamp 8df8887c-0b0b-4c0d-8f83-5a9aab9dff09))
(fp_line (start 1.78 13.145) (end 3.133333 13.145) (layer "F.SilkS") (width 0.12) (tstamp 8fa2ae7d-51b1-42ca-bc9a-6cd60e58dd14))
(fp_line (start 1.78 3.175) (end 5.84 3.175) (layer "F.SilkS") (width 0.12) (tstamp 90cba8c4-6bb7-4062-bca3-8d1eda68a011))
(fp_line (start 1.78 6.985) (end 1.78 8.255) (layer "F.SilkS") (width 0.12) (tstamp 93ce3c61-32fe-4e1e-99d1-ffe35be1a120))
(fp_line (start 1.78 2.385) (end 3.133333 2.385) (layer "F.SilkS") (width 0.12) (tstamp 93dcbc3a-d759-4ff7-a196-dd8e151a94d9))
(fp_line (start -1.14 -2.42) (end -1.14 15.12) (layer "F.SilkS") (width 0.12) (tstamp 97b27063-2ae9-4c3d-8f60-49a508afdaff))
(fp_line (start 1.78 -0.635) (end 1.78 0.635) (layer "F.SilkS") (width 0.12) (tstamp 98028d8b-3103-44d0-8a80-7035a6a0f3ca))
(fp_line (start 5.84 5.715) (end 5.84 4.445) (layer "F.SilkS") (width 0.12) (tstamp 9a5b1e93-c412-45a8-9f57-8617c0a9ea62))
(fp_line (start 1.78 7.705) (end 3.133333 7.705) (layer "F.SilkS") (width 0.12) (tstamp 9aed8fb3-ee32-4ff0-9fac-f9c811e980aa))
(fp_line (start -1.14 15.12) (end 8.76 15.12) (layer "F.SilkS") (width 0.12) (tstamp a461cb4b-a98d-4d22-a754-14656d0b99b8))
(fp_line (start 1.78 2.985) (end 3.133333 2.985) (layer "F.SilkS") (width 0.12) (tstamp a6be6b68-2ea0-49c4-bb86-7763d0b7433a))
(fp_line (start 1.78 3.105) (end 3.133333 3.105) (layer "F.SilkS") (width 0.12) (tstamp add5bf78-c8ad-4b94-9964-5e5b648292de))
(fp_line (start 5.84 3.175) (end 5.84 1.905) (layer "F.SilkS") (width 0.12) (tstamp b3b08188-dff7-47e5-b7b9-6b045da44163))
(fp_line (start 1.78 0.635) (end 5.84 0.635) (layer "F.SilkS") (width 0.12) (tstamp b6c5cff6-cf86-4498-a76d-b9f56c83bf6b))
(fp_line (start 3.133333 -0.635) (end 3.133333 0.635) (layer "F.SilkS") (width 0.12) (tstamp b6dccde8-9933-40e0-9682-ef341c200ea2))
(fp_line (start 1.78 2.865) (end 3.133333 2.865) (layer "F.SilkS") (width 0.12) (tstamp b7ff7bbb-7f2d-4b59-9080-7fa5e3b6993a))
(fp_line (start 1.78 7.825) (end 3.133333 7.825) (layer "F.SilkS") (width 0.12) (tstamp bac1c836-769d-4cf0-ad5d-f1e1b7e4dece))
(fp_line (start 1.78 7.465) (end 3.133333 7.465) (layer "F.SilkS") (width 0.12) (tstamp bb5bd5af-89d5-46f6-bfc1-d483c802f61a))
(fp_line (start 1.78 12.185) (end 3.133333 12.185) (layer "F.SilkS") (width 0.12) (tstamp bce5bfab-52b1-475b-a7b2-dd2df07b116c))
(fp_line (start 1.78 10.005) (end 3.133333 10.005) (layer "F.SilkS") (width 0.12) (tstamp c3484dd7-d093-4c7a-a679-e6d78e18747e))
(fp_line (start 5.84 9.525) (end 1.78 9.525) (layer "F.SilkS") (width 0.12) (tstamp c6001ec9-9d9a-4408-b570-a42cce03ed21))
(fp_line (start 3.133333 6.985) (end 3.133333 8.255) (layer "F.SilkS") (width 0.12) (tstamp cb82939c-a329-456f-8fa7-774d938d645d))
(fp_line (start 1.78 13.335) (end 5.84 13.335) (layer "F.SilkS") (width 0.12) (tstamp ccad3605-e09d-42f5-a676-f4fc7574dd31))
(fp_line (start 1.78 2.265) (end 3.133333 2.265) (layer "F.SilkS") (width 0.12) (tstamp d0b2836c-8e91-40cb-8c54-a5db17fac538))
(fp_line (start -1.38 -2.66) (end -1.38 -1.277) (layer "F.SilkS") (width 0.12) (tstamp d3761a0c-6b20-4b5d-9d11-05d5e72c55dc))
(fp_line (start 5.84 0.635) (end 5.84 -0.635) (layer "F.SilkS") (width 0.12) (tstamp e35240f6-2425-4c31-8b40-83b8185a8239))
(fp_line (start 1.78 10.485) (end 3.133333 10.485) (layer "F.SilkS") (width 0.12) (tstamp e94dccb2-5894-4bb5-828a-5f25b8ecd5f8))
(fp_line (start 1.78 5.645) (end 3.133333 5.645) (layer "F.SilkS") (width 0.12) (tstamp ea7850ca-ed57-4056-badc-b7a3652d1e3a))
(fp_line (start 1.78 10.725) (end 3.133333 10.725) (layer "F.SilkS") (width 0.12) (tstamp ea947136-6406-433c-adbf-d7c75f0c7f66))
(fp_line (start 1.78 12.065) (end 1.78 13.335) (layer "F.SilkS") (width 0.12) (tstamp eb9fafa0-c05f-4a08-9aee-2be865b0f4bb))
(fp_line (start 1.78 10.795) (end 5.84 10.795) (layer "F.SilkS") (width 0.12) (tstamp ebe7d2c1-2b93-4ec2-b17d-948d2b0daed2))
(fp_line (start 3.133333 1.905) (end 3.133333 3.175) (layer "F.SilkS") (width 0.12) (tstamp ec258fdb-f4f2-4e4d-8910-62a5aa4d02ca))
(fp_line (start 5.84 8.255) (end 5.84 6.985) (layer "F.SilkS") (width 0.12) (tstamp ec4277d6-b793-447c-9d7f-4d4da2c79aa7))
(fp_line (start 1.78 9.645) (end 3.133333 9.645) (layer "F.SilkS") (width 0.12) (tstamp ee0f3e84-5a12-4e1d-9f31-7052402f7de0))
(fp_line (start 1.78 10.125) (end 3.133333 10.125) (layer "F.SilkS") (width 0.12) (tstamp f1e8c0e7-ed97-4e76-92a1-3f3ac2fb6c55))
(fp_line (start 1.78 7.945) (end 3.133333 7.945) (layer "F.SilkS") (width 0.12) (tstamp f36e7beb-ff09-4cbf-b63f-0d0ec0d02254))
(fp_line (start 1.78 12.785) (end 3.133333 12.785) (layer "F.SilkS") (width 0.12) (tstamp f4079b09-3d03-4869-90e1-cb10204841d5))
(fp_line (start 5.84 1.905) (end 1.78 1.905) (layer "F.SilkS") (width 0.12) (tstamp f5e545a4-f5b7-411d-8204-4fb55a3d53ff))
(fp_line (start 1.78 4.925) (end 3.133333 4.925) (layer "F.SilkS") (width 0.12) (tstamp f6ce4da0-5cf1-4afb-9717-3a01fd289241))
(fp_line (start 1.78 4.565) (end 3.133333 4.565) (layer "F.SilkS") (width 0.12) (tstamp f9c8802e-4a99-4277-837b-a3c4eead678c))
(fp_line (start 1.78 10.605) (end 3.133333 10.605) (layer "F.SilkS") (width 0.12) (tstamp fb4ab760-b224-4b78-9c49-4aef96ad13fb))
(fp_line (start 1.78 0.445) (end 3.133333 0.445) (layer "F.SilkS") (width 0.12) (tstamp fd0fb955-c52f-4b86-a979-d24012e14d45))
(fp_line (start 1.78 13.025) (end 3.133333 13.025) (layer "F.SilkS") (width 0.12) (tstamp ff3a8ea1-adaa-4e88-8b46-9949381cf30c))
(fp_line (start 8.95 15.4) (end 8.95 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 231b837f-0048-411a-bcc4-34c8b98b18f5))
(fp_line (start 8.95 -2.7) (end -1.35 -2.7) (layer "F.CrtYd") (width 0.05) (tstamp 4c9a40fd-150c-46ee-b7e1-f6fc2297b499))
(fp_line (start -1.35 15.4) (end 8.95 15.4) (layer "F.CrtYd") (width 0.05) (tstamp 73ea0109-9835-4337-ad52-19871e8dab70))
(fp_line (start -1.35 -2.7) (end -1.35 15.4) (layer "F.CrtYd") (width 0.05) (tstamp c0a3b0a8-cb21-403a-9764-8e171194c1d3))
(fp_line (start 1.78 12.865) (end 3.133333 12.865) (layer "F.Fab") (width 0.1) (tstamp 01de1bf4-05f1-479f-a8fa-c9d87afca2ad))
(fp_line (start 1.78 8.185) (end 3.133333 8.185) (layer "F.Fab") (width 0.1) (tstamp 030458f8-4ca8-4f03-b949-970510f57f12))
(fp_line (start -1.08 15.06) (end -1.08 -1.36) (layer "F.Fab") (width 0.1) (tstamp 052baba6-d655-4556-a700-8ec5faa4aefa))
(fp_line (start 1.78 4.945) (end 3.133333 4.945) (layer "F.Fab") (width 0.1) (tstamp 08bcbbc5-f2aa-4bfa-b201-8854572a9f18))
(fp_line (start 1.78 7.385) (end 3.133333 7.385) (layer "F.Fab") (width 0.1) (tstamp 0ba41369-2e26-4520-a723-e481c7d07da2))
(fp_line (start 3.133333 1.905) (end 3.133333 3.175) (layer "F.Fab") (width 0.1) (tstamp 0cfd7562-d801-4398-b7c3-6dc15fc2f0c4))
(fp_line (start 1.78 7.685) (end 3.133333 7.685) (layer "F.Fab") (width 0.1) (tstamp 0d307ee3-061e-49b7-9aeb-7d710491afc9))
(fp_line (start 8.7 15.06) (end -1.08 15.06) (layer "F.Fab") (width 0.1) (tstamp 0fc747ca-4b40-40dc-9b3e-4533d6f0ef34))
(fp_line (start 1.78 2.305) (end 3.133333 2.305) (layer "F.Fab") (width 0.1) (tstamp 10a298e1-281d-4f5b-b86a-5bcad06dda7e))
(fp_line (start 1.78 5.445) (end 3.133333 5.445) (layer "F.Fab") (width 0.1) (tstamp 13ac40eb-0daa-41a6-9fa2-3b327560d8ec))
(fp_line (start 1.78 7.185) (end 3.133333 7.185) (layer "F.Fab") (width 0.1) (tstamp 18fa4d50-2171-4a13-805c-60fbbcc5c739))
(fp_line (start 1.78 12.465) (end 3.133333 12.465) (layer "F.Fab") (width 0.1) (tstamp 1a546555-da48-4221-82ff-146580b37ca4))
(fp_line (start 1.78 4.445) (end 1.78 5.715) (layer "F.Fab") (width 0.1) (tstamp 1c6107b5-54b5-4915-9c5b-8e52160f464f))
(fp_line (start 1.78 2.205) (end 3.133333 2.205) (layer "F.Fab") (width 0.1) (tstamp 1d08f16b-e423-4b03-9cf0-045b4af236df))
(fp_line (start 1.78 1.905) (end 1.78 3.175) (layer "F.Fab") (width 0.1) (tstamp 1d9b083b-64f2-4cf0-bb34-cb3bc5694b91))
(fp_line (start 1.78 7.485) (end 3.133333 7.485) (layer "F.Fab") (width 0.1) (tstamp 1e46fdae-ed18-40ad-82f0-4cd30d178790))
(fp_line (start 1.78 5.545) (end 3.133333 5.545) (layer "F.Fab") (width 0.1) (tstamp 255cab04-75c7-4a5d-af81-7db809d75e17))
(fp_line (start 1.78 -0.435) (end 3.133333 -0.435) (layer "F.Fab") (width 0.1) (tstamp 26fac917-fb5c-4bfd-b477-ea04542b26bb))
(fp_line (start 1.78 12.265) (end 3.133333 12.265) (layer "F.Fab") (width 0.1) (tstamp 2f021c2d-339d-48f2-a267-daa2d0dc55bc))
(fp_line (start 1.78 10.795) (end 5.84 10.795) (layer "F.Fab") (width 0.1) (tstamp 308b542a-5a42-4b91-8eb4-c17a0f0807ef))
(fp_line (start 1.78 10.525) (end 3.133333 10.525) (layer "F.Fab") (width 0.1) (tstamp 318e496e-9ab3-47db-bb24-049f21908d66))
(fp_line (start 1.78 0.165) (end 3.133333 0.165) (layer "F.Fab") (width 0.1) (tstamp 373e258e-e256-42bf-aa20-e149260fecbb))
(fp_line (start 3.133333 12.065) (end 3.133333 13.335) (layer "F.Fab") (width 0.1) (tstamp 3aac1803-9108-480d-abc5-940229148d14))
(fp_line (start 5.84 4.445) (end 1.78 4.445) (layer "F.Fab") (width 0.1) (tstamp 3f9a9344-9ac1-4f78-b381-7b54ba8d9ac5))
(fp_line (start 3.133333 9.525) (end 3.133333 10.795) (layer "F.Fab") (width 0.1) (tstamp 409f1bae-7f78-4f70-b0fb-fb86fb93e1f7))
(fp_line (start 1.78 7.985) (end 3.133333 7.985) (layer "F.Fab") (width 0.1) (tstamp 42e8f3a8-a32a-4582-8369-9eacf27b6b54))
(fp_line (start 1.78 0.265) (end 3.133333 0.265) (layer "F.Fab") (width 0.1) (tstamp 43c2bf1a-17fd-4117-b4d0-ec0e22bd8ce4))
(fp_line (start 1.78 0.365) (end 3.133333 0.365) (layer "F.Fab") (width 0.1) (tstamp 45d6abc9-a321-4677-b4a1-27e0fec29f72))
(fp_line (start 5.84 8.255) (end 5.84 6.985) (layer "F.Fab") (width 0.1) (tstamp 47316726-784a-437d-8177-73e90fe4edf6))
(fp_line (start 1.78 12.765) (end 3.133333 12.765) (layer "F.Fab") (width 0.1) (tstamp 48d74366-572c-4cbf-857f-8da7c6bee56f))
(fp_line (start 1.78 3.105) (end 3.133333 3.105) (layer "F.Fab") (width 0.1) (tstamp 4bec0989-3300-4473-a72e-50eec13a2c04))
(fp_line (start 1.78 12.365) (end 3.133333 12.365) (layer "F.Fab") (width 0.1) (tstamp 4ee0bd71-b5e0-4a7d-8461-cde46819fee7))
(fp_line (start 5.84 9.525) (end 1.78 9.525) (layer "F.Fab") (width 0.1) (tstamp 5148ecbd-0f45-4a5d-878f-616c268b0b3b))
(fp_line (start 1.78 7.785) (end 3.133333 7.785) (layer "F.Fab") (width 0.1) (tstamp 516ab0bb-dbb4-4896-8456-01eb1625b396))
(fp_line (start 1.78 9.925) (end 3.133333 9.925) (layer "F.Fab") (width 0.1) (tstamp 52a72c74-d040-4415-9ee7-167bf7633e62))
(fp_line (start 1.78 7.285) (end 3.133333 7.285) (layer "F.Fab") (width 0.1) (tstamp 52ec7ce5-1676-4938-bcd4-a1ea09b2faf7))
(fp_line (start 3.133333 4.445) (end 3.133333 5.715) (layer "F.Fab") (width 0.1) (tstamp 53561a3b-1b6d-4a7f-9cb4-a179e35e2d6b))
(fp_line (start 1.78 -0.535) (end 3.133333 -0.535) (layer "F.Fab") (width 0.1) (tstamp 58319152-bac4-4428-b8fd-79903efd094d))
(fp_line (start 1.78 4.645) (end 3.133333 4.645) (layer "F.Fab") (width 0.1) (tstamp 58f1af08-8e30-4bb2-b2d5-333842d843e6))
(fp_line (start 1.78 9.825) (end 3.133333 9.825) (layer "F.Fab") (width 0.1) (tstamp 59177481-4df8-4399-a306-4f09f27f63aa))
(fp_line (start 1.78 12.065) (end 1.78 13.335) (layer "F.Fab") (width 0.1) (tstamp 5c058b15-5e9f-496d-aab9-79823756f2ff))
(fp_line (start 1.78 12.665) (end 3.133333 12.665) (layer "F.Fab") (width 0.1) (tstamp 5d758adf-d6fa-467a-ad5d-b36226fd8ceb))
(fp_line (start 5.84 -0.635) (end 1.78 -0.635) (layer "F.Fab") (width 0.1) (tstamp 60fbf94a-7f6e-421f-b4cc-9a611d1421ae))
(fp_line (start 3.133333 -0.635) (end 3.133333 0.635) (layer "F.Fab") (width 0.1) (tstamp 643aec18-e8f3-43cf-b9b7-a7b60c55734a))
(fp_line (start 1.78 7.085) (end 3.133333 7.085) (layer "F.Fab") (width 0.1) (tstamp 662a0074-8732-41ed-aa0b-0c122fdb5803))
(fp_line (start 1.78 10.125) (end 3.133333 10.125) (layer "F.Fab") (width 0.1) (tstamp 66503c93-4a4e-4662-a9b9-0267229b7d8c))
(fp_line (start 1.78 -0.135) (end 3.133333 -0.135) (layer "F.Fab") (width 0.1) (tstamp 69608fe0-0af6-49af-8750-ac3e29a3f4c2))
(fp_line (start 1.78 10.225) (end 3.133333 10.225) (layer "F.Fab") (width 0.1) (tstamp 6dd3a5d4-700c-400f-89a6-19f28edb2046))
(fp_line (start -0.08 -2.36) (end 8.7 -2.36) (layer "F.Fab") (width 0.1) (tstamp 71f70dbe-30e2-426d-8be0-0d1c83702bdf))
(fp_line (start 5.84 12.065) (end 1.78 12.065) (layer "F.Fab") (width 0.1) (tstamp 72f9cb24-73d2-48e3-a4bf-5950dc7edbc7))
(fp_line (start 1.78 13.065) (end 3.133333 13.065) (layer "F.Fab") (width 0.1) (tstamp 7811fda4-197a-41c5-b226-9e8218eecb50))
(fp_line (start 5.84 10.795) (end 5.84 9.525) (layer "F.Fab") (width 0.1) (tstamp 7b01af06-4f25-4987-95e9-617267432ecd))
(fp_line (start 1.78 7.585) (end 3.133333 7.585) (layer "F.Fab") (width 0.1) (tstamp 7b23884d-f67d-48a3-b4cf-f4ac92f4187c))
(fp_line (start 3.133333 6.985) (end 3.133333 8.255) (layer "F.Fab") (width 0.1) (tstamp 7cfe610b-443a-4a6a-984c-36afc8585792))
(fp_line (start 1.78 -0.635) (end 1.78 0.635) (layer "F.Fab") (width 0.1) (tstamp 7d07be01-6805-463a-87bd-99f574108d09))
(fp_line (start 1.78 0.465) (end 3.133333 0.465) (layer "F.Fab") (width 0.1) (tstamp 807961a2-6df8-4535-8c3c-7754b70d30b1))
(fp_line (start 1.78 9.625) (end 3.133333 9.625) (layer "F.Fab") (width 0.1) (tstamp 8732941f-17fb-4763-a7ef-218058fb5c71))
(fp_line (start 1.78 2.605) (end 3.133333 2.605) (layer "F.Fab") (width 0.1) (tstamp 8a2bc833-46eb-4493-a0f4-d4f45d97f66c))
(fp_line (start 1.78 2.105) (end 3.133333 2.105) (layer "F.Fab") (width 0.1) (tstamp 8b92ee1d-d157-4c2a-b64f-3f1862471234))
(fp_line (start 1.78 4.545) (end 3.133333 4.545) (layer "F.Fab") (width 0.1) (tstamp 8ee92c5c-52d7-42c6-b075-cf86f1d9b42e))
(fp_line (start 1.78 0.565) (end 3.133333 0.565) (layer "F.Fab") (width 0.1) (tstamp 927d0975-7e53-43f9-b3bb-c847716dd827))
(fp_line (start 1.78 5.045) (end 3.133333 5.045) (layer "F.Fab") (width 0.1) (tstamp 95d05d21-7b5d-4915-a9bb-d2d38b3e5203))
(fp_line (start 1.78 2.905) (end 3.133333 2.905) (layer "F.Fab") (width 0.1) (tstamp 98713e6e-4c0b-4cc6-9540-17044934dd2e))
(fp_line (start 1.78 13.335) (end 5.84 13.335) (layer "F.Fab") (width 0.1) (tstamp 9a723401-25ad-4526-bf2d-ff46afc9fe36))
(fp_line (start 1.78 2.505) (end 3.133333 2.505) (layer "F.Fab") (width 0.1) (tstamp 9dd6d9c3-b46f-4b65-9d2f-cb64dd40cc61))
(fp_line (start 1.78 5.345) (end 3.133333 5.345) (layer "F.Fab") (width 0.1) (tstamp 9f9d0dab-db0c-41df-93c1-c19761f339a0))
(fp_line (start 1.78 9.525) (end 1.78 10.795) (layer "F.Fab") (width 0.1) (tstamp a238e9e5-03a2-4c40-a9d0-5b0dd2df5ac8))
(fp_line (start 1.78 -0.335) (end 3.133333 -0.335) (layer "F.Fab") (width 0.1) (tstamp a4a258f5-33cd-44ed-b23d-463fa4689494))
(fp_line (start 5.84 5.715) (end 5.84 4.445) (layer "F.Fab") (width 0.1) (tstamp a5b1572b-9326-4a48-8874-f489882ae99e))
(fp_line (start 1.78 5.145) (end 3.133333 5.145) (layer "F.Fab") (width 0.1) (tstamp a80dbad1-faa1-449f-bd0e-6baff5410192))
(fp_line (start 5.84 6.985) (end 1.78 6.985) (layer "F.Fab") (width 0.1) (tstamp a9525cfa-bd77-432b-97e2-06888a9f7805))
(fp_line (start 1.78 -0.235) (end 3.133333 -0.235) (layer "F.Fab") (width 0.1) (tstamp a9bdaaf3-0888-4dd4-96a9-e9074240b0b3))
(fp_line (start 1.78 4.845) (end 3.133333 4.845) (layer "F.Fab") (width 0.1) (tstamp abbcbdea-6c47-4417-a4d7-b4410be30a09))
(fp_line (start -1.08 -1.36) (end -0.08 -2.36) (layer "F.Fab") (width 0.1) (tstamp aebc5191-f7c4-4f96-ab63-b7e303254d6e))
(fp_line (start 1.78 9.725) (end 3.133333 9.725) (layer "F.Fab") (width 0.1) (tstamp b0e1f706-5444-459c-8352-7b7a6e3a2fdb))
(fp_line (start 1.78 10.325) (end 3.133333 10.325) (layer "F.Fab") (width 0.1) (tstamp b3609ab1-c1a0-46ed-b1f2-d5ec99ab7be7))
(fp_line (start 1.78 3.175) (end 5.84 3.175) (layer "F.Fab") (width 0.1) (tstamp b921cb66-66fd-43f1-a747-7f9ed993a1b4))
(fp_line (start 8.7 -2.36) (end 8.7 15.06) (layer "F.Fab") (width 0.1) (tstamp bc447e22-0d60-4102-a90c-52e596b32b11))
(fp_line (start 1.78 -0.035) (end 3.133333 -0.035) (layer "F.Fab") (width 0.1) (tstamp bc74bc8a-164f-4c57-bebf-6c7591fe3365))
(fp_line (start 1.78 5.245) (end 3.133333 5.245) (layer "F.Fab") (width 0.1) (tstamp c4dfbd57-f902-48f2-8f90-6ac7511788f9))
(fp_line (start 5.84 3.175) (end 5.84 1.905) (layer "F.Fab") (width 0.1) (tstamp c5b5aab4-bafe-4b31-bb79-29642156fa57))
(fp_line (start 5.84 1.905) (end 1.78 1.905) (layer "F.Fab") (width 0.1) (tstamp c6feae72-ebeb-46d4-a862-2d3b328749d0))
(fp_line (start 1.78 2.005) (end 3.133333 2.005) (layer "F.Fab") (width 0.1) (tstamp c7147d6b-8c0c-456f-88b9-fe65df24b818))
(fp_line (start 1.78 8.085) (end 3.133333 8.085) (layer "F.Fab") (width 0.1) (tstamp cca6b15f-66c7-416b-8776-e5a58fb719bd))
(fp_line (start 1.78 10.025) (end 3.133333 10.025) (layer "F.Fab") (width 0.1) (tstamp cdf75ff3-9833-41df-962a-c77c71d4dd94))
(fp_line (start 1.78 5.715) (end 5.84 5.715) (layer "F.Fab") (width 0.1) (tstamp cf6ff815-94bc-4492-9ea5-c739db8aeb55))
(fp_line (start 5.84 0.635) (end 5.84 -0.635) (layer "F.Fab") (width 0.1) (tstamp cfac5ff4-feca-4c95-a6bf-02e1c9566ad0))
(fp_line (start 1.78 13.265) (end 3.133333 13.265) (layer "F.Fab") (width 0.1) (tstamp d4bd4c78-d3a1-46e2-8918-1252bd88b6dc))
(fp_line (start 1.78 13.165) (end 3.133333 13.165) (layer "F.Fab") (width 0.1) (tstamp d6bc0e3e-abd9-4df6-a6d4-acd96f927847))
(fp_line (start 1.78 5.645) (end 3.133333 5.645) (layer "F.Fab") (width 0.1) (tstamp db767b88-66ab-4e65-8122-a3a0ab7cf866))
(fp_line (start 1.78 12.565) (end 3.133333 12.565) (layer "F.Fab") (width 0.1) (tstamp dbe0769f-0644-4ad3-af2b-5d0b2c67d675))
(fp_line (start 1.78 10.625) (end 3.133333 10.625) (layer "F.Fab") (width 0.1) (tstamp dc07e70e-2f48-4145-87d2-539e0f8ff3be))
(fp_line (start 5.84 13.335) (end 5.84 12.065) (layer "F.Fab") (width 0.1) (tstamp dd327b48-cc98-482d-b275-a010839d38db))
(fp_line (start 1.78 8.255) (end 5.84 8.255) (layer "F.Fab") (width 0.1) (tstamp dd8e6123-120b-4c13-a465-44d28d3013ea))
(fp_line (start 1.78 2.805) (end 3.133333 2.805) (layer "F.Fab") (width 0.1) (tstamp df068499-20bb-4965-81a3-d9e15dc8e8a3))
(fp_line (start 1.78 7.885) (end 3.133333 7.885) (layer "F.Fab") (width 0.1) (tstamp dfc29658-85fd-42dc-9f36-ddeb1041fc9e))
(fp_line (start 1.78 0.065) (end 3.133333 0.065) (layer "F.Fab") (width 0.1) (tstamp e1781371-176b-40e3-aa1d-2ff041b7f48e))
(fp_line (start 1.78 12.165) (end 3.133333 12.165) (layer "F.Fab") (width 0.1) (tstamp e28ebf86-c8f0-4bf6-baa6-a57ae482057d))
(fp_line (start 1.78 10.725) (end 3.133333 10.725) (layer "F.Fab") (width 0.1) (tstamp ed899aed-3d32-49d3-9bb1-1cd3aac9bbc3))
(fp_line (start 1.78 3.005) (end 3.133333 3.005) (layer "F.Fab") (width 0.1) (tstamp ef3523e1-1944-4a94-ac44-9b4df6bc7d84))
(fp_line (start 1.78 2.705) (end 3.133333 2.705) (layer "F.Fab") (width 0.1) (tstamp ef4842f6-f650-4ba8-bb24-b40cfb06d1eb))
(fp_line (start 1.78 10.425) (end 3.133333 10.425) (layer "F.Fab") (width 0.1) (tstamp ef52e3fc-b66a-475e-86fd-0f7d44d0d17b))