-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTL866-FlashROM-Adapter.kicad_pcb
executable file
·14824 lines (14812 loc) · 550 KB
/
TL866-FlashROM-Adapter.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")
(title_block
(title "TL866 FlashROM Programming Adapter")
(date "2024-01-08")
(rev "1.0")
(company "Patrick Dähne CC BY-NC-SA 4.0")
(comment 1 "https://github.com/pdaehne/TL866-FlashROM-Adapter")
)
(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 false)
(usegerberadvancedattributes false)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber-files")
)
)
(net 0 "")
(net 1 "/GND")
(net 2 "/VCC")
(net 3 "/A20")
(net 4 "/A21")
(net 5 "/~{WE}")
(net 6 "/~{RST}")
(net 7 "/~{WP}")
(net 8 "/A9")
(net 9 "/D7")
(net 10 "/D6")
(net 11 "/D5")
(net 12 "/D8")
(net 13 "/D9")
(net 14 "/D10")
(net 15 "/D4")
(net 16 "/D3")
(net 17 "/D2")
(net 18 "/D1")
(net 19 "/D0")
(net 20 "/~{BYTE}")
(net 21 "/~{OE_Flash}")
(net 22 "/~{CE}")
(net 23 "/~{BUSY}")
(net 24 "/A19")
(net 25 "/A18")
(net 26 "/A17")
(net 27 "/A16")
(net 28 "/D15")
(net 29 "/D14")
(net 30 "/D13")
(net 31 "/D12")
(net 32 "/D11")
(net 33 "unconnected-(J3-Pad1)")
(net 34 "unconnected-(J3-Pad2)")
(net 35 "unconnected-(J3-Pad3)")
(net 36 "/A7")
(net 37 "/A6")
(net 38 "/A5")
(net 39 "/A4")
(net 40 "/A3")
(net 41 "/A2")
(net 42 "/A1")
(net 43 "/A0")
(net 44 "/A15")
(net 45 "/A14")
(net 46 "/A13")
(net 47 "/A12")
(net 48 "/A11")
(net 49 "/A10")
(net 50 "/A8")
(net 51 "unconnected-(J3-Pad46)")
(net 52 "unconnected-(J3-Pad47)")
(net 53 "unconnected-(J3-Pad48)")
(net 54 "unconnected-(J4-Pin_3-Pad3)")
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 83fda299-47f6-448e-bf1f-a08100dcc655)
(at 111.76 77.343)
(descr "Through hole straight pin header, 2x03, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x03 2.54mm double row")
(property "Sheetfile" "TL866-FlashROM-Adapter.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/918df3d0-df14-43d5-9e94-d14bca92cc1a")
(attr through_hole)
(fp_text reference "J4" (at 1.27 -2.33) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a02d9a9-ec6a-4c10-a1da-f32943086d5c)
)
(fp_text value "Conn_02x03_Odd_Even" (at 1.27 7.41) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed1fca22-fa11-49a9-91a7-ff0a9103df82)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5fb4e628-69b9-40ff-a053-1992bc432458))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 694c3dec-f584-437c-815d-ec0e504f8cfd))
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 903e8bc4-0e25-423e-926d-b703e459297f))
(fp_line (start -1.33 1.27) (end 1.27 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e657f792-cf77-4c89-81d0-c18c4406049e))
(fp_line (start -1.33 6.41) (end 3.87 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b065066c-57be-4812-acf6-d0723338f1ae))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c678f6f8-f54d-4cf6-9835-59fa91393aff))
(fp_line (start 1.27 1.27) (end 1.27 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ce788e5-e0b6-4ef5-9c11-3aae4587749e))
(fp_line (start 3.87 -1.33) (end 3.87 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e177a64-629d-4b6a-a42e-62b2fde9075e))
(fp_line (start -1.8 -1.8) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f36608ef-227d-40ea-9e09-2f6a8732471c))
(fp_line (start -1.8 6.85) (end 4.35 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8ec44a6-f5cd-4835-a02d-604faea84b9b))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a6d3d53d-81df-4cf6-bf29-3273b0da139e))
(fp_line (start 4.35 6.85) (end 4.35 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 87534896-abc7-4fdb-8909-41f0620ee874))
(fp_line (start -1.27 0) (end 0 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8fa88460-a71a-40bd-a39c-1e1ed64a6ace))
(fp_line (start -1.27 6.35) (end -1.27 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30ca186a-92e7-4670-8628-ebde2b579e97))
(fp_line (start 0 -1.27) (end 3.81 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5ed8e290-b404-45e8-8418-3a39d8960dd1))
(fp_line (start 3.81 -1.27) (end 3.81 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 015a7693-04eb-4e55-b694-6614e6d29ab4))
(fp_line (start 3.81 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00cb68c7-d167-4c31-8411-ad958ae36e24))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "/A18") (pinfunction "Pin_1") (pintype "passive") (tstamp b2c33181-b5d5-4260-964a-4152b1f558fa))
(pad "2" thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "/~{BUSY}") (pinfunction "Pin_2") (pintype "passive") (tstamp 7bf04005-1182-4dc5-b23b-3aa61a3bd72d))
(pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 54 "unconnected-(J4-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive+no_connect") (tstamp 4f2b38b5-d45e-4d89-8918-fb5d9df20bc7))
(pad "4" thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/~{RST}") (pinfunction "Pin_4") (pintype "passive") (tstamp d9674e27-e007-4284-8b40-12e6a3938524))
(pad "5" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "/A19") (pinfunction "Pin_5") (pintype "passive") (tstamp 4e635580-1a06-4242-87ff-652dc1898e5a))
(pad "6" thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/~{WE}") (pinfunction "Pin_6") (pintype "passive") (tstamp 00a33aa6-1265-4d3f-b2fd-97a4a78a05be))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Socket_ZIF:ZIF_48Pin" (layer "F.Cu")
(tstamp e41e65b7-4328-492e-b9b9-46269b094f00)
(at 125.41 86.36)
(descr "3M 40-pin zero insertion force socket, though-hole, row spacing 25.4 mm (1000 mils)")
(tags "THT DIP DIL ZIF 25.4mm 1000mil Socket")
(property "Sheetfile" "TL866-FlashROM-Adapter.kicad_sch")
(property "Sheetname" "")
(path "/ead4ba2c-9532-4816-8328-8165b6f87259")
(attr through_hole)
(fp_text reference "J3" (at 7.62 -11.68) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f1a4524e-abee-4e86-89f4-8998ac294de4)
)
(fp_text value "~" (at 7.62 64.64) (layer "F.Fab") hide
(effects (font (size 0.6 0.6) (thickness 0.09)))
(tstamp 83f0112c-bca1-443e-aa07-5ec8671df91a)
)
(fp_line (start -3.95 -10.5) (end -3.95 65.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3ce4ba8-04f1-4f2b-a9e2-162256b166df))
(fp_line (start -3.95 65.66) (end 19.15 65.66)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c86b1f0a-fabd-42ea-b4bf-1b53b172ca3c))
(fp_line (start -1.645 -1.27) (end 5.455 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51627c07-6acf-4c08-a531-b4d4fb5dcee8))
(fp_line (start -1.645 1.27) (end -1.645 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1323c44d-c7d4-4fcd-9fdc-4c816c4c771e))
(fp_line (start -1.645 1.27) (end 5.455 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5cdbb19c-956d-403d-a0b0-58a0c99163eb))
(fp_line (start -1.645 3.81) (end -1.645 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9cc1fa10-173f-4c6b-860f-bc2a013f4fe9))
(fp_line (start -1.645 3.81) (end 5.455 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8eb2c088-5e0a-4400-98d4-8109ae19fd54))
(fp_line (start -1.645 6.35) (end -1.645 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 475edaab-8f5c-4c20-baaa-e638d3a95c20))
(fp_line (start -1.645 6.35) (end 5.455 6.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc20021b-4885-47a1-a19c-a3de8f8338e6))
(fp_line (start -1.645 8.89) (end -1.645 6.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f0a1dfd-5e0e-4090-a5ac-a2040540022e))
(fp_line (start -1.645 8.89) (end 5.455 8.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77c01647-a81f-43da-a5e4-1015421977c5))
(fp_line (start -1.645 11.43) (end -1.645 8.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5364d51-eb96-4601-9bfe-60f7e6267e5b))
(fp_line (start -1.645 11.43) (end 5.455 11.43)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f0df398-3c85-4b93-a5d1-6d6b4808d8fd))
(fp_line (start -1.645 13.97) (end -1.645 11.43)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e21dfb6-f2c3-46c1-aed7-cd5abf1d80c1))
(fp_line (start -1.645 13.97) (end 5.455 13.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d4505da4-2c56-4551-bee0-707fbc88b5cc))
(fp_line (start -1.645 16.51) (end -1.645 13.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9425aa20-fc2a-453d-9878-888fe8db4c45))
(fp_line (start -1.645 16.51) (end 5.455 16.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3dbb5e1-902d-4181-bfd6-ad3050d809b1))
(fp_line (start -1.645 19.05) (end -1.645 16.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c765946f-ac79-4b06-a5d1-7c739027877c))
(fp_line (start -1.645 19.05) (end 5.455 19.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95889b69-2065-45fb-811d-de9b8bbebdd8))
(fp_line (start -1.645 21.59) (end -1.645 19.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 621290ad-3a3b-4102-a9ea-dfea0800655e))
(fp_line (start -1.645 21.59) (end 5.455 21.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30407a51-3661-440b-8071-26d7552417f4))
(fp_line (start -1.645 24.13) (end -1.645 21.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31390f3f-7d48-4384-aed1-6ab5d4038095))
(fp_line (start -1.645 24.13) (end 5.455 24.13)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c529d08-6035-4b0d-8891-c05176309530))
(fp_line (start -1.645 26.67) (end -1.645 24.13)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eab76a46-9c5f-4574-8838-e77107eac8f4))
(fp_line (start -1.645 26.67) (end 5.455 26.67)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2bf6147a-7b4c-497b-bd8e-6be97ca6f9a2))
(fp_line (start -1.645 29.21) (end -1.645 26.67)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 56094098-51bd-417c-b3f1-eae0d7f725d9))
(fp_line (start -1.645 29.21) (end 5.455 29.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 379e1558-1257-4afa-8b99-49750f8815a3))
(fp_line (start -1.645 31.75) (end -1.645 29.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7e39d57-6106-4988-ab36-7fba01268679))
(fp_line (start -1.645 31.75) (end 5.455 31.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1370fa9f-d019-4924-b4f2-f6b506c4c0d5))
(fp_line (start -1.645 34.29) (end -1.645 31.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e178b5a9-39e0-439a-adf8-d6d006f32e75))
(fp_line (start -1.645 34.29) (end 5.455 34.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bce47bb6-7725-4cf7-96ce-56aaac161bea))
(fp_line (start -1.645 36.83) (end -1.645 34.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 108f3045-35cc-4ca7-b31f-8aba3cb2a12d))
(fp_line (start -1.645 36.83) (end 5.455 36.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 844b2e33-85f8-4b7b-8d37-b2b28d7a9a4c))
(fp_line (start -1.645 39.37) (end -1.645 36.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c34be9a1-4bbd-49a8-8e15-6663de710d06))
(fp_line (start -1.645 39.37) (end 5.455 39.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f0a6d05-b4c2-4345-be98-82991193f67c))
(fp_line (start -1.645 41.91) (end -1.645 39.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3003eb6-c51e-4350-82ca-5511217fcd2c))
(fp_line (start -1.645 41.91) (end 5.455 41.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b21db76c-1dde-48da-af36-e207a8e3cfb9))
(fp_line (start -1.645 44.45) (end -1.645 41.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1be5cbb3-fae8-4204-a7b1-bbfb13dccac0))
(fp_line (start -1.645 44.45) (end 5.455 44.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b9602db-345d-410a-9a42-be42180af0c8))
(fp_line (start -1.645 46.99) (end -1.645 44.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf117c40-2509-4a32-9d1e-c5fb48ee92ec))
(fp_line (start -1.645 46.99) (end 5.455 46.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63aca169-1dcc-4306-8902-7275ecb22eb8))
(fp_line (start -1.645 49.53) (end -1.645 46.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a85784cb-76ea-4fe1-bb45-d614eb578d4f))
(fp_line (start -1.645 49.53) (end 5.455 49.53)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97cce99a-3a46-41b8-8e55-95de73a38608))
(fp_line (start -1.645 52.07) (end -1.645 49.53)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 322d93cf-084a-40e2-b39d-786ce3c712da))
(fp_line (start -1.645 52.07) (end 5.455 52.07)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f1f4606-00e2-479a-8f53-7cde47f9b6f0))
(fp_line (start -1.645 54.61) (end -1.645 52.07)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 845f3deb-5202-4be3-863b-813177bff227))
(fp_line (start -1.645 54.61) (end 5.455 54.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d2b55d3-65a8-4b5b-90c0-d483e5baeccb))
(fp_line (start -1.645 57.15) (end -1.645 54.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92b59052-430a-447c-8819-d519703c4700))
(fp_line (start -1.645 57.15) (end 5.455 57.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7205400-b962-4996-913d-36c9ee6df2ff))
(fp_line (start -1.645 59.69) (end -1.645 57.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c8fb879d-4233-483c-9a7a-aeffe6c77509))
(fp_line (start -1.645 59.69) (end 5.455 59.69)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d00cf98e-2c2b-4d47-a315-de52ec95a453))
(fp_line (start 5.455 -1.27) (end 5.455 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d70792ab-cdc7-4956-9739-0653e3db7b73))
(fp_line (start 5.455 1.27) (end 5.455 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc2ef3e4-d826-445c-ad4d-18d0d4a6e249))
(fp_line (start 5.455 3.81) (end 5.455 6.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a0ed8c8-ef6c-4b0f-9cdc-639abad64a2f))
(fp_line (start 5.455 6.35) (end 5.455 8.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36cd454f-fe34-40a5-8254-a08a9753c23a))
(fp_line (start 5.455 8.89) (end 5.455 11.43)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1f02e34-4606-4f68-8ddd-bba68f86f894))
(fp_line (start 5.455 11.43) (end 5.455 13.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1dd7813-fbf1-4746-8010-0202e9128b98))
(fp_line (start 5.455 13.97) (end 5.455 16.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 85cd45cc-a453-4f6f-ba6e-de6b2eef5efe))
(fp_line (start 5.455 16.51) (end 5.455 19.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f59baf7e-cb36-4410-ba2a-93b770f01ba8))
(fp_line (start 5.455 19.05) (end 5.455 21.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90bfbc20-c049-46b4-8cd3-78cd7663d981))
(fp_line (start 5.455 21.59) (end 5.455 24.13)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d4267dcc-dff0-4e24-b7b0-084885a255a0))
(fp_line (start 5.455 24.13) (end 5.455 26.67)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9bfbeee-5832-4ca5-affd-f2c8e60de6e9))
(fp_line (start 5.455 26.67) (end 5.455 29.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc86a59b-ea13-46ae-9179-5938421007bd))
(fp_line (start 5.455 29.21) (end 5.455 31.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d41d7498-12ab-41f8-b806-1fa9db7af83f))
(fp_line (start 5.455 31.75) (end 5.455 34.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae72878a-ba96-4f8f-8305-aad8d619706a))
(fp_line (start 5.455 34.29) (end 5.455 36.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26c8775a-59c8-411b-a731-ee1de53156f9))
(fp_line (start 5.455 36.83) (end 5.455 39.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1bc3d01f-39b7-44e9-b6da-5963ea6282b8))
(fp_line (start 5.455 39.37) (end 5.455 41.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 80488085-0295-4418-9c76-36a9ecb259aa))
(fp_line (start 5.455 41.91) (end 5.455 44.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d698796-1770-47e3-b3ec-0ec6caddb9bc))
(fp_line (start 5.455 44.45) (end 5.455 46.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9a12717-3ede-413a-9554-6513a39717e5))
(fp_line (start 5.455 46.99) (end 5.455 49.53)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf9e5006-33fb-40e4-81e1-75abb7b7f6b5))
(fp_line (start 5.455 49.53) (end 5.455 52.07)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b3851dc6-0405-4d5c-9839-eb29de7a1f72))
(fp_line (start 5.455 52.07) (end 5.455 54.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa5286d6-39da-4648-8c4f-b57c5184614e))
(fp_line (start 5.455 54.61) (end 5.455 57.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba013086-c7bc-4ed1-98c5-860ed173597b))
(fp_line (start 5.455 57.15) (end 5.455 59.69)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87679a6a-edde-4c2c-83dc-3e05a6e2984b))
(fp_line (start 9.785 -1.27) (end 16.885 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aad671f3-ab61-48fd-a144-a6d12f0e6322))
(fp_line (start 9.785 1.27) (end 9.785 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0303d1e-9545-42e6-9247-db3bf0f1276b))
(fp_line (start 9.785 1.27) (end 16.885 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2f58460-5016-4485-ae25-9b7e52cd89b6))
(fp_line (start 9.785 3.81) (end 9.785 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27e72c25-0a75-4936-9b64-b53c674969f3))
(fp_line (start 9.785 3.81) (end 16.885 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f99e26d0-026e-4b89-ae6e-57b49e18a0b9))
(fp_line (start 9.785 6.35) (end 9.785 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0495fb73-45ba-46f2-8188-690721c8de38))
(fp_line (start 9.785 6.35) (end 16.885 6.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c8ab90c5-399e-44c8-85d3-d7ed13479f35))
(fp_line (start 9.785 8.89) (end 9.785 6.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4561cd80-3344-4829-8811-6f004ef34123))
(fp_line (start 9.785 8.89) (end 16.885 8.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9235469b-8137-415f-8c3a-4482968f6fee))
(fp_line (start 9.785 11.43) (end 9.785 8.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 496869c2-dcbd-44e0-a709-c821de015215))
(fp_line (start 9.785 11.43) (end 16.885 11.43)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66e0ee1c-b82e-468b-9844-4633d5a82ca3))
(fp_line (start 9.785 13.97) (end 9.785 11.43)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c41ae49b-db80-47a8-9d63-983954611628))
(fp_line (start 9.785 13.97) (end 16.885 13.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94890a6c-03a6-4497-b895-52775afcfea7))
(fp_line (start 9.785 16.51) (end 9.785 13.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ebd9fdc8-47b1-49aa-a84a-2e382573d9be))
(fp_line (start 9.785 16.51) (end 16.885 16.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b7330c8-e659-4d29-96a1-4e68d8df5070))
(fp_line (start 9.785 19.05) (end 9.785 16.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 977bc0d7-8976-4f60-9110-bf7419687bf0))
(fp_line (start 9.785 19.05) (end 16.885 19.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e47faaec-d00b-4779-8baa-c91324d18b0c))
(fp_line (start 9.785 21.59) (end 9.785 19.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 751aabf8-f27f-4693-959c-817b885a97b7))
(fp_line (start 9.785 21.59) (end 16.885 21.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae7ceecc-fb3b-470f-b430-d2bd66674ec2))
(fp_line (start 9.785 24.13) (end 9.785 21.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d8c4565-da94-4712-abb2-06fce3ffe3c3))
(fp_line (start 9.785 24.13) (end 16.885 24.13)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac0a1fef-31b2-4e5d-b90c-6095637b0e5c))
(fp_line (start 9.785 26.67) (end 9.785 24.13)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa6a2135-2658-46ff-b44d-36aacfd81b2e))
(fp_line (start 9.785 26.67) (end 16.885 26.67)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c2b65a0-dd97-4321-9c2c-b6a212793264))
(fp_line (start 9.785 29.21) (end 9.785 26.67)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d3a013e-5d24-4872-88e0-1f8d825c7063))
(fp_line (start 9.785 29.21) (end 16.885 29.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6dc02a9a-70ce-47aa-af15-edb52469c385))
(fp_line (start 9.785 31.75) (end 9.785 29.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12a382b0-c952-45a1-97b4-5173efc988bc))
(fp_line (start 9.785 31.75) (end 16.885 31.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5580a3d-ab04-4039-a0af-866fcf8d73da))
(fp_line (start 9.785 34.29) (end 9.785 31.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69fcc43f-9eab-4e54-aba0-bfc7cac7f2b2))
(fp_line (start 9.785 34.29) (end 16.885 34.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61a22c10-68b6-4798-aa9d-e692fe77241a))
(fp_line (start 9.785 36.83) (end 9.785 34.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b584fbda-95b6-4d91-919f-efe9754ca8ac))
(fp_line (start 9.785 36.83) (end 16.885 36.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c39b1520-5b3b-4006-b092-91b63029e87d))
(fp_line (start 9.785 39.37) (end 9.785 36.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8310f05-b881-48b4-b519-36242939df96))
(fp_line (start 9.785 39.37) (end 16.885 39.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d850ad97-08c7-4c92-996b-2940cf953b61))
(fp_line (start 9.785 41.91) (end 9.785 39.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15ae05d9-b832-4b02-91d2-399833759a2d))
(fp_line (start 9.785 41.91) (end 16.885 41.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4b6ebdb-acf4-4269-a73f-f298b13251fa))
(fp_line (start 9.785 44.45) (end 9.785 41.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67b6ff32-39f7-410d-a78a-adc97c1c3690))
(fp_line (start 9.785 44.45) (end 16.885 44.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5193d314-5602-4df0-9db6-3966c00854c9))
(fp_line (start 9.785 46.99) (end 9.785 44.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f50b560-3795-4347-8897-c7085e57cba2))
(fp_line (start 9.785 46.99) (end 16.885 46.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 91b71fdf-67c9-4c6f-b40b-c3bb574117e2))
(fp_line (start 9.785 49.53) (end 9.785 46.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47f3d2bd-726c-432e-9fee-df581204eca2))
(fp_line (start 9.785 49.53) (end 16.885 49.53)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7eded89-b9c3-474c-870f-8cfe1dde3617))
(fp_line (start 9.785 52.07) (end 9.785 49.53)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 725d44ca-fded-42ed-a60c-0972c4a7fbc2))
(fp_line (start 9.785 52.07) (end 16.885 52.07)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 17c6440c-9c11-446a-af11-5329abc41370))
(fp_line (start 9.785 54.61) (end 9.785 52.07)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e895ed19-11da-4138-becd-0cda428b82ba))
(fp_line (start 9.785 54.61) (end 16.885 54.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6d823f9-263f-42ac-8c2e-91a29b0593c5))
(fp_line (start 9.785 57.15) (end 9.785 54.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 682cfc3a-1268-4b07-84a4-bd0040791db5))
(fp_line (start 9.785 57.15) (end 16.885 57.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4f20dc95-ec88-4972-88e2-63f20f29ec71))
(fp_line (start 9.785 59.69) (end 9.785 57.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 013de470-0ab6-4a42-aac7-3fc1450e2fe8))
(fp_line (start 9.785 59.69) (end 16.885 59.69)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48b33b2d-be70-4d78-9bb3-0fb6a48a8e84))
(fp_line (start 16.885 -1.27) (end 16.885 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f74add5-d70f-4d93-8d11-1df2512c77cf))
(fp_line (start 16.885 1.27) (end 16.885 3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c27527c6-7b5b-49d5-b634-57a073738673))
(fp_line (start 16.885 3.81) (end 16.885 6.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb1758a7-39b3-4747-ab38-086efcab5787))
(fp_line (start 16.885 6.35) (end 16.885 8.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f41df877-29fb-4850-8be7-93a1255961a7))
(fp_line (start 16.885 8.89) (end 16.885 11.43)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02af8ed9-3597-4038-ac9a-7ae8052ce058))
(fp_line (start 16.885 11.43) (end 16.885 13.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 007625c6-3244-40a0-869a-3c4f6c97be89))
(fp_line (start 16.885 13.97) (end 16.885 16.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98400826-529b-473f-bb26-05973c46fa97))
(fp_line (start 16.885 16.51) (end 16.885 19.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44ce18b9-13fd-47e2-9297-f05a7ea94828))
(fp_line (start 16.885 19.05) (end 16.885 21.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a321d01-afeb-4611-9352-138ff000c808))
(fp_line (start 16.885 21.59) (end 16.885 24.13)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbad0ce4-29ff-4f58-83fb-b46dc8d6b6b2))
(fp_line (start 16.885 24.13) (end 16.885 26.67)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc2adb15-2a2b-440f-9baa-6b349bb0c21b))
(fp_line (start 16.885 26.67) (end 16.885 29.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2e8e248-b3b5-45ae-afb2-d7fb2204f825))
(fp_line (start 16.885 29.21) (end 16.885 31.75)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e35a27ad-d46f-4d40-9922-aca5930dd458))
(fp_line (start 16.885 31.75) (end 16.885 34.29)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3af7237e-b891-4e81-985c-2f080c5f1fdf))
(fp_line (start 16.885 34.29) (end 16.885 36.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef04ec6a-dab5-49d2-bc9f-3667c2922b08))
(fp_line (start 16.885 36.83) (end 16.885 39.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 52048b1d-d004-45e4-b4aa-108ef71adf29))
(fp_line (start 16.885 39.37) (end 16.885 41.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2f7afeb-a4ea-4d71-bc83-2b0bc98964cc))
(fp_line (start 16.885 41.91) (end 16.885 44.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d18f8d23-6095-4af9-aa27-c9e0a612e262))
(fp_line (start 16.885 44.45) (end 16.885 46.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6423253-4f6b-4314-aeac-600e64c06e27))
(fp_line (start 16.885 46.99) (end 16.885 49.53)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 661f9acf-d082-4856-af99-cf742a58d6f1))
(fp_line (start 16.885 49.53) (end 16.885 52.07)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2eaa1ba6-3dcf-42d8-b179-0000e26f83b1))
(fp_line (start 16.885 52.07) (end 16.885 54.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aac1be01-5232-4a3c-a5ae-4c7093b717f3))
(fp_line (start 16.885 54.61) (end 16.885 57.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af41f332-3cd6-4567-9c3c-31a08402934f))
(fp_line (start 16.885 57.15) (end 16.885 59.69)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bbe98ae1-fbd8-46d7-a630-352062d0c1fd))
(fp_line (start 19.15 -10.5) (end -3.95 -10.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e0b312bb-6b19-4477-b932-351b5f63a261))
(fp_line (start 19.15 65.66) (end 19.15 -10.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6655079-4475-48b6-a8d2-0e5aa2c8f308))
(fp_line (start -4.3 66.06) (end -4.3 -10.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 389dce96-b99e-4002-ba01-4f8e9d0b6844))
(fp_line (start 19.6 -10.9) (end -4.3 -10.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 808987c8-9224-4644-9250-8751b979fb6b))
(fp_line (start 19.6 66.06) (end -4.3 66.06)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7f1b34e2-6c62-4759-867c-6805752f2786))
(fp_line (start 19.6 66.06) (end 19.6 -10.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68ac40d2-5e99-4f5b-b5ef-95f2bb28ee2c))
(fp_line (start -5 -24) (end -0.4 -24)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36c773f7-62b9-4ee3-801f-54a6f1bf88cd))
(fp_line (start -5 -20.4) (end -5 -24)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de78d01e-9654-4059-8040-edb18507d500))
(fp_line (start -5 -20.4) (end -3.5 -18.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f9c62f2e-305a-4327-98df-bc9cde0af9b2))
(fp_line (start -5 -20.4) (end -0.4 -20.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dc1becce-08dc-4aca-9132-7f81ee8dd573))
(fp_line (start -3.85 -9.4) (end -2.85 -10.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c25731eb-6130-42b5-9b3e-b4aecb9146a6))
(fp_line (start -3.85 65.56) (end -3.85 -9.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f02a9a9-3a13-4626-a863-5c1fd1de20a3))
(fp_line (start -3.85 65.56) (end 19.05 65.56)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8cca3667-939c-4a87-ae81-b0d708dfc932))
(fp_line (start -3.7 -25.4) (end -5 -24)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b697ebf1-167a-4d61-8624-e8655756a9d5))
(fp_line (start -3.7 -25.4) (end -1.7 -25.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eda51783-e502-4da5-86c6-1ddbb29c2ced))
(fp_line (start -3.5 -18.4) (end -3.5 -9.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c729f159-cd01-44dc-b3d7-b76140483b65))
(fp_line (start -2.85 -10.4) (end 19.05 -10.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6faa753-b11d-4ab0-8b67-a23de134289b))
(fp_line (start -1.9 -18.4) (end -3.5 -18.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6732de4-92bd-4d12-aa35-1de594b1e71f))
(fp_line (start -1.9 -18.4) (end -1.9 -10.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp beb8d89a-9218-483c-9bb4-6234b3e574be))
(fp_line (start -1.7 -25.4) (end -0.4 -24)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f9b2e508-3402-4c09-b4fb-fb4a275243f9))
(fp_line (start -0.4 -20.4) (end -1.9 -18.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5fa699e3-d729-49ed-a424-dc46b0b27057))
(fp_line (start -0.4 -20.4) (end -0.4 -24)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e849e7a3-8a85-4db3-b171-14d3f3b6e5a1))
(fp_line (start 19.05 65.56) (end 19.05 -10.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 91f5721a-392f-4a8a-aa00-ce95e99b4b5b))
(pad "1" thru_hole rect (at 0 0) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 33 "unconnected-(J3-Pad1)") (pintype "passive+no_connect") (tstamp 7952e9cd-0485-4b2a-a3dd-1cffb4d08fa6))
(pad "2" thru_hole oval (at 0 2.54) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 34 "unconnected-(J3-Pad2)") (pintype "passive+no_connect") (tstamp 6cf2975d-fa9f-4ad2-8609-4d8aa59da116))
(pad "3" thru_hole oval (at 0 5.08) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 35 "unconnected-(J3-Pad3)") (pintype "passive+no_connect") (tstamp 5d866dc2-f02e-4852-930f-38752968f68a))
(pad "4" thru_hole oval (at 0 7.62) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "/A18") (pintype "passive") (tstamp 7f8e7c66-560d-4344-9326-dce973a37915))
(pad "5" thru_hole oval (at 0 10.16) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "/A17") (pintype "passive") (tstamp 2cec217d-c538-4afd-9991-82d82d5da665))
(pad "6" thru_hole oval (at 0 12.7) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 36 "/A7") (pintype "passive") (tstamp 22ed223d-543c-4d31-8a65-9848242a6087))
(pad "7" thru_hole oval (at 0 15.24) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 37 "/A6") (pintype "passive") (tstamp 03ef0996-1dba-46ec-be9f-7049f3f2ea60))
(pad "8" thru_hole oval (at 0 17.78) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 38 "/A5") (pintype "passive") (tstamp 9840d17e-fd4d-4947-9c54-481ecc4d9760))
(pad "9" thru_hole oval (at 0 20.32) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "/A4") (pintype "passive") (tstamp 3a2ad8b1-dc0a-4549-aa55-6c32544d16a7))
(pad "10" thru_hole oval (at 0 22.86) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 40 "/A3") (pintype "passive") (tstamp ec0766eb-ccf6-409b-8e9b-1d7fd9ee1e1d))
(pad "11" thru_hole oval (at 0 25.4) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 41 "/A2") (pintype "passive") (tstamp df1004ff-3c1d-4899-b0ca-78fc0a78a2e0))
(pad "12" thru_hole oval (at 0 27.94) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 42 "/A1") (pintype "passive") (tstamp f72d653c-1af2-4225-857f-e3a85917bacd))
(pad "13" thru_hole oval (at 0 30.48) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 43 "/A0") (pintype "passive") (tstamp df7a49a8-9f5b-41f2-9de9-2ebba1b3a0d5))
(pad "14" thru_hole oval (at 0 33.02) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "/~{CE}") (pintype "passive") (tstamp 81328d1b-4e98-4e2c-a24a-a2cd1d4a6487))
(pad "15" thru_hole oval (at 0 35.56) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "/GND") (pintype "passive") (tstamp 86e3d20c-9be5-449d-b849-f4f7f1a0d368))
(pad "16" thru_hole oval (at 0 38.1) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "/~{OE_Flash}") (pintype "passive") (tstamp 484b98ce-2be9-43b5-8455-5a6ae379d284))
(pad "17" thru_hole oval (at 0 40.64) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "/D0") (pintype "passive") (tstamp 206b7f91-3351-48b3-a56d-ae13126072aa))
(pad "18" thru_hole oval (at 0 43.18) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "/D8") (pintype "passive") (tstamp 5b1d2c75-acd1-40cf-a503-4d5f84c28a04))
(pad "19" thru_hole oval (at 0 45.72) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "/D1") (pintype "passive") (tstamp c2e33e71-e690-48f5-8a8b-89e9674833a7))
(pad "20" thru_hole oval (at 0 48.26) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "/D9") (pintype "passive") (tstamp 41f40fd0-6b1d-4814-944e-d6b4e79e09a1))
(pad "21" thru_hole oval (at 0 50.8) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "/D2") (pintype "passive") (tstamp 395cdfef-566e-4a4a-bccd-1e6cde7bfd84))
(pad "22" thru_hole oval (at 0 53.34) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/D10") (pintype "passive") (tstamp c8bea023-a468-43cd-b802-ef102b9bdc9a))
(pad "23" thru_hole oval (at 0 55.88) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "/D3") (pintype "passive") (tstamp 15744105-aaa0-4e16-9288-099388cf12f4))
(pad "24" thru_hole oval (at 0 58.42) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 32 "/D11") (pintype "passive") (tstamp 972f481c-2a1c-41e5-a92e-1c5018a54ebf))
(pad "25" thru_hole oval (at 15.24 58.42) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "/VCC") (pintype "passive") (tstamp b49ad6e4-203e-4e06-a26d-15ad7881f612))
(pad "26" thru_hole oval (at 15.24 55.88) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "/D4") (pintype "passive") (tstamp 25ca6d87-9502-4f93-a813-9709d18a0951))
(pad "27" thru_hole oval (at 15.24 53.34) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "/D12") (pintype "passive") (tstamp 26e07e61-6d03-432b-ae91-e7d1d440f718))
(pad "28" thru_hole oval (at 15.24 50.8) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/D5") (pintype "passive") (tstamp bd06a1ed-f4c5-4b77-9cec-eb90b71fae59))
(pad "29" thru_hole oval (at 15.24 48.26) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "/D13") (pintype "passive") (tstamp 94c7cbb0-1474-49b9-b738-a09ddf643320))
(pad "30" thru_hole oval (at 15.24 45.72) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/D6") (pintype "passive") (tstamp cf265292-96a1-4125-ba91-5b89d36ef4a9))
(pad "31" thru_hole oval (at 15.24 43.18) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "/D14") (pintype "passive") (tstamp 21e832d5-8c14-4c19-ae39-e0dd982da7c5))
(pad "32" thru_hole oval (at 15.24 40.64) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "/D7") (pintype "passive") (tstamp 8c100e8c-dd60-4ef4-a5bc-1e366dfa8fa8))
(pad "33" thru_hole oval (at 15.24 38.1) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "/D15") (pintype "passive") (tstamp 868d3225-b2d4-4599-af1f-7cffa83bcb88))
(pad "34" thru_hole oval (at 15.24 35.56) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "/GND") (pintype "passive") (tstamp c20da449-e6b8-4c9b-85e5-59dc16d47396))
(pad "35" thru_hole oval (at 15.24 33.02) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "/~{BYTE}") (pintype "passive") (tstamp b13ffde1-8d40-4afd-9db6-9bdd2b6387ea))
(pad "36" thru_hole oval (at 15.24 30.48) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "/A16") (pintype "passive") (tstamp f661646e-9929-4506-b84b-f2c641d53be2))
(pad "37" thru_hole oval (at 15.24 27.94) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 44 "/A15") (pintype "passive") (tstamp 40365747-0d8a-45e3-a5a9-8ee02e056257))
(pad "38" thru_hole oval (at 15.24 25.4) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 45 "/A14") (pintype "passive") (tstamp 2859b978-8516-470f-b30b-7735d77a83f7))
(pad "39" thru_hole oval (at 15.24 22.86) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 46 "/A13") (pintype "passive") (tstamp 6c34afb5-195f-4a61-9dc4-2b21c3b20798))
(pad "40" thru_hole oval (at 15.24 20.32) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 47 "/A12") (pintype "passive") (tstamp 19497382-d10f-4a48-b194-0d6337d2fc9c))
(pad "41" thru_hole oval (at 15.24 17.78) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 48 "/A11") (pintype "passive") (tstamp 79e4e68d-e33a-47ce-982b-072f5bc2c92f))
(pad "42" thru_hole oval (at 15.24 15.24) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 49 "/A10") (pintype "passive") (tstamp 64756851-8c97-42ee-8bec-f6107840cff6))
(pad "43" thru_hole oval (at 15.24 12.7) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/A9") (pintype "passive") (tstamp 305acfbd-54a6-4647-8e99-de275f219b5b))
(pad "44" thru_hole oval (at 15.24 10.16) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 50 "/A8") (pintype "passive") (tstamp 2967d7e6-4eb3-41da-b1aa-4844cf00134a))
(pad "45" thru_hole oval (at 15.24 7.62) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "/A19") (pintype "passive") (tstamp 6dd71ced-3d50-40ac-bebf-a5814dbdec82))
(pad "46" thru_hole oval (at 15.24 5.08) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 51 "unconnected-(J3-Pad46)") (pintype "passive+no_connect") (tstamp 83dd4a2f-c16c-4c72-94c7-8da67386b603))
(pad "47" thru_hole oval (at 15.24 2.54) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 52 "unconnected-(J3-Pad47)") (pintype "passive+no_connect") (tstamp bb9ab16c-28cc-46b5-a65d-acde4d8532b1))
(pad "48" thru_hole oval (at 15.24 0) (size 2 1.44) (drill 1) (layers "*.Cu" "*.Mask")
(net 53 "unconnected-(J3-Pad48)") (pintype "passive+no_connect") (tstamp 15cd8ffb-dc22-48db-a9b7-5315aef888f7))
(model "${KICAD6_3DMODEL_DIR}/Socket.3dshapes/3M_Textool_240-1288-00-0602J_2x20_P2.54mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x12_P2.54mm_Vertical" (layer "B.Cu")
(tstamp 43eac7de-7a40-4411-8b87-801d75c14e71)
(at 111.76 86.36 180)
(descr "Through hole straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x12 2.54mm double row")
(property "Sheetfile" "TL866-FlashROM-Adapter.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, double row, 02x12, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/38cfee7c-63a7-4f9e-b61f-e117b1c943e4")
(attr through_hole)
(fp_text reference "J1" (at -1.27 2.77) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 98fa2791-90ba-43cd-b73f-770290704d41)
)
(fp_text value "Conn_02x12_Odd_Even" (at -1.27 -30.71) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b0954490-dfaa-45f6-a695-79f8cdc9ad59)
)
(fp_line (start -3.87 -29.27) (end 1.33 -29.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 801d3506-993e-42c4-b89e-810093afcdfd))
(fp_line (start -3.87 1.33) (end -3.87 -29.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 507fb0af-1fdf-4d6c-b3b7-47f02f186c4b))
(fp_line (start -3.87 1.33) (end -1.27 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 9e3a64a4-3f1e-4aa1-a2e7-778906b3727d))
(fp_line (start -1.27 -1.27) (end 1.33 -1.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a2c2706a-baf9-48d8-97bc-bbfc5b44a391))
(fp_line (start -1.27 1.33) (end -1.27 -1.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp be3204d2-9ce6-4269-bff7-46ab3a20ba95))
(fp_line (start 0 1.33) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 58e33243-377e-4a25-a883-0cb64176be89))
(fp_line (start 1.33 -1.27) (end 1.33 -29.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 67884678-ae7c-430a-8749-ff3f08a1b74c))
(fp_line (start 1.33 1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1e16a327-d881-4e55-973d-e3d0ee90fc3a))
(fp_line (start -4.34 -29.7) (end -4.34 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp b0e53745-013c-42c3-91dd-76f3d7594b8a))
(fp_line (start -4.34 1.8) (end 1.76 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp a5772957-cad1-4a74-abc6-87b3fdfd2d2d))
(fp_line (start 1.76 -29.7) (end -4.34 -29.7)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp b1aa78cc-19ec-4e04-9437-d4936cbaf297))
(fp_line (start 1.76 1.8) (end 1.76 -29.7)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e24b233e-c92f-497c-8cb7-5e06d6df3516))
(fp_line (start -3.81 -29.21) (end -3.81 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 2b1005a6-f32a-4493-aaa6-236ee8009b20))
(fp_line (start -3.81 1.27) (end 0.27 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp c6868039-3e46-4fab-bdb2-8f01ec49c0b2))
(fp_line (start 0.27 1.27) (end 1.27 0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 83f5c370-2879-4eba-af05-a8b8370d0d72))
(fp_line (start 1.27 -29.21) (end -3.81 -29.21)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 450ad9f1-dd2f-4dc5-9b08-ea54444899c3))
(fp_line (start 1.27 0.27) (end 1.27 -29.21)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 1c2e7364-e463-444f-9336-b51e02911bed))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 44 "/A15") (pinfunction "Pin_1") (pintype "passive") (tstamp 16888b6f-0cd8-4128-a876-4ec9af5d0759))
(pad "2" thru_hole oval (at -2.54 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 45 "/A14") (pinfunction "Pin_2") (pintype "passive") (tstamp 21b1d4ae-99d1-4cbf-9fd6-dce11fc0444d))
(pad "3" thru_hole oval (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 46 "/A13") (pinfunction "Pin_3") (pintype "passive") (tstamp 3e02a54e-d04c-46a7-8323-677c43611f50))
(pad "4" thru_hole oval (at -2.54 -2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 47 "/A12") (pinfunction "Pin_4") (pintype "passive") (tstamp 3afa6515-3476-4719-a42f-799782314499))
(pad "5" thru_hole oval (at 0 -5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 48 "/A11") (pinfunction "Pin_5") (pintype "passive") (tstamp 3a9d1983-544a-4435-bc75-abc00d7ff180))
(pad "6" thru_hole oval (at -2.54 -5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 49 "/A10") (pinfunction "Pin_6") (pintype "passive") (tstamp 94586270-f423-48a8-8c1c-ffe3b5131cb3))
(pad "7" thru_hole oval (at 0 -7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 8 "/A9") (pinfunction "Pin_7") (pintype "passive") (tstamp 6712c79f-fac9-45ca-bfe1-043d3330f16c))
(pad "8" thru_hole oval (at -2.54 -7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 50 "/A8") (pinfunction "Pin_8") (pintype "passive") (tstamp c0eb9f6e-a961-49dc-abcc-741f92396c89))
(pad "9" thru_hole oval (at 0 -10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "/A19") (pinfunction "Pin_9") (pintype "passive") (tstamp 229264cf-9be6-4274-bac6-4f1527db5c65))
(pad "10" thru_hole oval (at -2.54 -10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "/A20") (pinfunction "Pin_10") (pintype "passive+no_connect") (tstamp b3416aa0-e787-4184-a4dc-80d4542b13ea))
(pad "11" thru_hole oval (at 0 -12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "/~{WE}") (pinfunction "Pin_11") (pintype "passive") (tstamp e81cfadd-d843-4ef6-bcac-ad558132072b))
(pad "12" thru_hole oval (at -2.54 -12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/~{RST}") (pinfunction "Pin_12") (pintype "passive") (tstamp 4de85727-7c22-46f7-9fca-7110c2d4c06d))
(pad "13" thru_hole oval (at 0 -15.24 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "/A21") (pinfunction "Pin_13") (pintype "passive+no_connect") (tstamp 5443e23e-91b8-4bd9-bc9d-a9685b84c28a))
(pad "14" thru_hole oval (at -2.54 -15.24 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "/~{WP}") (pinfunction "Pin_14") (pintype "passive+no_connect") (tstamp b9907682-9447-4a02-a4ca-b52af8a3fb0c))
(pad "15" thru_hole oval (at 0 -17.78 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "/~{BUSY}") (pinfunction "Pin_15") (pintype "passive") (tstamp 1232035e-8337-4e52-80f1-009709ded320))
(pad "16" thru_hole oval (at -2.54 -17.78 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "/A18") (pinfunction "Pin_16") (pintype "passive") (tstamp 59b7850a-0d75-4361-9913-e48b728527c3))
(pad "17" thru_hole oval (at 0 -20.32 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "/A17") (pinfunction "Pin_17") (pintype "passive") (tstamp 6939c3c3-48b1-4f30-a738-83ff0fb08a81))
(pad "18" thru_hole oval (at -2.54 -20.32 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 36 "/A7") (pinfunction "Pin_18") (pintype "passive") (tstamp 4abc7043-68a4-4e1c-ab6f-625b8e8e76c6))
(pad "19" thru_hole oval (at 0 -22.86 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 37 "/A6") (pinfunction "Pin_19") (pintype "passive") (tstamp 81ea7969-970a-4d6e-bb6d-bd2425dd7133))
(pad "20" thru_hole oval (at -2.54 -22.86 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 38 "/A5") (pinfunction "Pin_20") (pintype "passive") (tstamp 032c0e7d-3d06-41be-8294-246618be4a47))
(pad "21" thru_hole oval (at 0 -25.4 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 39 "/A4") (pinfunction "Pin_21") (pintype "passive") (tstamp ec8742c0-b9d9-4ec2-84f1-0de70981ba77))
(pad "22" thru_hole oval (at -2.54 -25.4 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 40 "/A3") (pinfunction "Pin_22") (pintype "passive") (tstamp 5e0ad6a2-b87d-49bc-8480-d3dfc38c47ab))
(pad "23" thru_hole oval (at 0 -27.94 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 41 "/A2") (pinfunction "Pin_23") (pintype "passive") (tstamp 377b020e-2ac1-4767-b805-36d20a81e98d))
(pad "24" thru_hole oval (at -2.54 -27.94 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 42 "/A1") (pinfunction "Pin_24") (pintype "passive") (tstamp c5b31dcd-c7aa-439d-81ee-43468b16da76))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x12_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_2x12_P2.54mm_Vertical" (layer "B.Cu")
(tstamp b0bb21ac-eaa1-4000-91e8-e2d4ce81744b)
(at 151.76 86.36 180)
(descr "Through hole straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 2x12 2.54mm double row")
(property "Sheetfile" "TL866-FlashROM-Adapter.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, double row, 02x12, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/e06216b8-c9f9-47f9-bf78-88197ed1b6cd")
(attr through_hole)
(fp_text reference "J2" (at -1.27 2.77) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 4e8166c6-41aa-435b-9466-aab663a64d75)
)
(fp_text value "Conn_02x12_Odd_Even" (at -1.27 -30.71) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp be7aae53-ce11-4b8d-8f17-5f00400f7be3)
)
(fp_text user "${REFERENCE}" (at -1.27 -13.97 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b477208b-f752-4f5c-afbb-40ffbc01dacc)
)
(fp_line (start -3.87 -29.27) (end 1.33 -29.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c1ab6f9b-d23b-42ac-bfe2-2d26c1e96d23))
(fp_line (start -3.87 1.33) (end -3.87 -29.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 9b0aba48-b43e-44cc-bf41-ddafaaa92573))
(fp_line (start -3.87 1.33) (end -1.27 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 94c9ee7f-bc55-4c10-9c51-084098c08c2a))
(fp_line (start -1.27 -1.27) (end 1.33 -1.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 148a2b3e-edec-4706-bebd-37bbc7f09dd2))
(fp_line (start -1.27 1.33) (end -1.27 -1.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 539e33fb-b348-4d50-9654-63991cabb71d))
(fp_line (start 0 1.33) (end 1.33 1.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp cd62e7e4-ca9e-4d43-b457-1158ecd67947))
(fp_line (start 1.33 -1.27) (end 1.33 -29.27)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0c69720a-bbb8-4851-8f20-1471c20ce440))
(fp_line (start 1.33 1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a31eebf5-4bf7-44c4-963f-f1c18d782644))
(fp_line (start -4.34 -29.7) (end -4.34 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 06cdb9e2-861f-49cf-a902-072b6a80635b))
(fp_line (start -4.34 1.8) (end 1.76 1.8)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ad173a50-3424-494f-848c-48ffff2b6757))
(fp_line (start 1.76 -29.7) (end -4.34 -29.7)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 546a5827-a626-42e9-b536-0c91e411a758))
(fp_line (start 1.76 1.8) (end 1.76 -29.7)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6c5ce3c5-f9e8-4d52-97b9-e743a7c465e7))
(fp_line (start -3.81 -29.21) (end -3.81 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d536c1ca-3886-4bc0-97c6-60891364c379))
(fp_line (start -3.81 1.27) (end 0.27 1.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp d68af3ad-26b2-42c1-bbf2-7a5be98b979e))
(fp_line (start 0.27 1.27) (end 1.27 0.27)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp 77fcc728-0a15-4688-9d95-fc9c8f4f41f5))
(fp_line (start 1.27 -29.21) (end -3.81 -29.21)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp ff5dc1cb-0d31-4978-a318-23798297a39c))
(fp_line (start 1.27 0.27) (end 1.27 -29.21)
(stroke (width 0.1) (type solid)) (layer "B.Fab") (tstamp afa7ec64-14ae-4f87-9b7b-ec3b1b99bd9e))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "/A16") (pinfunction "Pin_1") (pintype "passive") (tstamp 6db0a148-5a09-4834-9ddc-c7a97c130f43))
(pad "2" thru_hole oval (at -2.54 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 20 "/~{BYTE}") (pinfunction "Pin_2") (pintype "passive") (tstamp 477900c2-4c7f-4eca-8536-4dafd3009d0d))
(pad "3" thru_hole oval (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "/GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 9b1a088e-9a82-45f0-bc5d-dde3756721fc))
(pad "4" thru_hole oval (at -2.54 -2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 28 "/D15") (pinfunction "Pin_4") (pintype "passive") (tstamp 249c076a-60aa-4278-a9d6-25217fcb0d24))
(pad "5" thru_hole oval (at 0 -5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "/D7") (pinfunction "Pin_5") (pintype "passive") (tstamp 8e72a82a-89e6-4d63-ae77-6c3df48b3312))
(pad "6" thru_hole oval (at -2.54 -5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "/D14") (pinfunction "Pin_6") (pintype "passive") (tstamp 25d26458-b790-4955-8fef-702f619570e1))
(pad "7" thru_hole oval (at 0 -7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/D6") (pinfunction "Pin_7") (pintype "passive") (tstamp d16b649e-1d36-4000-991a-ab0224edb05b))
(pad "8" thru_hole oval (at -2.54 -7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "/D13") (pinfunction "Pin_8") (pintype "passive") (tstamp b247e2d1-bdb2-4cd5-9206-d89581e10260))
(pad "9" thru_hole oval (at 0 -10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/D5") (pinfunction "Pin_9") (pintype "passive") (tstamp b53aaf09-10aa-406e-826b-4efb1334ea68))
(pad "10" thru_hole oval (at -2.54 -10.16 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "/D12") (pinfunction "Pin_10") (pintype "passive") (tstamp cc47c363-5d8b-45ba-ae8d-bc6b24ca8dc2))
(pad "11" thru_hole oval (at 0 -12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 15 "/D4") (pinfunction "Pin_11") (pintype "passive") (tstamp 2e2c5d00-25b6-4b8c-9c8e-57aab60463aa))
(pad "12" thru_hole oval (at -2.54 -12.7 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "/VCC") (pinfunction "Pin_12") (pintype "passive") (tstamp bc106201-7211-4c46-8667-604910e46810))
(pad "13" thru_hole oval (at 0 -15.24 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 32 "/D11") (pinfunction "Pin_13") (pintype "passive") (tstamp 4f8025a0-9d27-495f-be23-b2b6e3f22312))
(pad "14" thru_hole oval (at -2.54 -15.24 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "/D3") (pinfunction "Pin_14") (pintype "passive") (tstamp 4b741ed7-7b8c-4709-907d-52558984af22))
(pad "15" thru_hole oval (at 0 -17.78 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/D10") (pinfunction "Pin_15") (pintype "passive") (tstamp ed45549f-3ec4-4578-b4fa-33654f1e6e8a))
(pad "16" thru_hole oval (at -2.54 -17.78 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "/D2") (pinfunction "Pin_16") (pintype "passive") (tstamp e03e7bb1-43b9-4649-9355-e4c3f84e7aac))
(pad "17" thru_hole oval (at 0 -20.32 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 13 "/D9") (pinfunction "Pin_17") (pintype "passive") (tstamp 437292e1-9bf1-43ef-b90e-5ce153d991a0))
(pad "18" thru_hole oval (at -2.54 -20.32 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 18 "/D1") (pinfunction "Pin_18") (pintype "passive") (tstamp 03e2bc80-f821-45ba-8fed-4b4aca54f66d))
(pad "19" thru_hole oval (at 0 -22.86 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "/D8") (pinfunction "Pin_19") (pintype "passive") (tstamp af37404b-78f6-4491-8a1a-e4e8016df23c))
(pad "20" thru_hole oval (at -2.54 -22.86 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "/D0") (pinfunction "Pin_20") (pintype "passive") (tstamp 234abdbb-a523-4cda-bc71-63a133ce1b67))
(pad "21" thru_hole oval (at 0 -25.4 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 21 "/~{OE_Flash}") (pinfunction "Pin_21") (pintype "passive") (tstamp a887cb25-99bb-4972-85ef-d04b4f45ce4b))
(pad "22" thru_hole oval (at -2.54 -25.4 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "/GND") (pinfunction "Pin_22") (pintype "passive") (tstamp c42eae41-9dd5-4408-86df-f505a64a05e2))
(pad "23" thru_hole oval (at 0 -27.94 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 22 "/~{CE}") (pinfunction "Pin_23") (pintype "passive") (tstamp acd80815-79ba-4b61-8140-42a8f040d61b))
(pad "24" thru_hole oval (at -2.54 -27.94 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 43 "/A0") (pinfunction "Pin_24") (pintype "passive") (tstamp bbb7c638-785b-4dd4-9656-48f7a2ab841d))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x12_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 118.3005 76.2) (end 118.3005 83.312)
(stroke (width 0.15) (type default)) (layer "F.SilkS") (tstamp 33794242-9274-4283-ab70-466b88e8a571))
(gr_line (start 116.1415 78.486) (end 120.5865 78.486)
(stroke (width 0.15) (type default)) (layer "F.SilkS") (tstamp 58190dbe-a514-40c5-a4b9-823afdf04038))
(gr_line (start 116.1415 81.026) (end 120.5865 81.026)
(stroke (width 0.15) (type default)) (layer "F.SilkS") (tstamp f1f78aaf-cccb-49ee-b865-04f93d75d856))
(gr_arc (start 119.412 116.697) (mid 120.119106 116.989893) (end 120.412 117.697)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 0b7658bd-3317-44dd-ab50-6434a0c1e675))
(gr_line (start 153.654 116.697) (end 155.702 116.697)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 1171bd98-3644-4ce2-b67d-9fe894a1ba0c))
(gr_line (start 110.363 74.819) (end 144.526 74.819)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 15cb67e1-cbfa-44e9-b4b2-f6547f8bc435))
(gr_arc (start 121.412 153.019) (mid 120.704894 152.726107) (end 120.412 152.019)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 1e2f52b0-fe3f-4224-8f86-d2834eb01d3f))
(gr_line (start 146.526 83.963) (end 155.702 83.963)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 218b57c0-46b6-4a16-88d1-febaceb258ab))
(gr_arc (start 152.654 152.019) (mid 152.361107 152.726106) (end 151.654 153.019)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 23c19836-3957-4723-9e88-3c0624991f12))
(gr_line (start 121.412 153.019) (end 151.654 153.019)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 24c5f375-c046-464d-b1b4-afc36d5c04ff))
(gr_arc (start 152.654 117.697) (mid 152.946893 116.989894) (end 153.654 116.697)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 26667cff-4a25-4e07-82ad-d26e5534c437))
(gr_line (start 152.654 117.697) (end 152.654 152.019)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 357918d4-73cf-4116-9cd4-cf97415e281c))
(gr_line (start 109.363 75.819) (end 109.363 115.697)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 6d3aeed0-991f-4097-a220-d14ad3bd52c2))
(gr_arc (start 155.702 83.963) (mid 156.409106 84.255893) (end 156.702 84.963)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 776ca12c-d7a7-403b-97a6-4844d4d2d5f7))
(gr_line (start 120.412 117.697) (end 120.412 152.019)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 8240a5dc-f4fa-49ac-a49c-b79c33e1f2dd))
(gr_line (start 156.702 84.963) (end 156.702 115.697)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 8535710b-5109-45f6-828e-c046886f7b9a))
(gr_arc (start 110.363 116.697) (mid 109.655894 116.404107) (end 109.363 115.697)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 9c8a9945-e6de-4ff1-8667-5e029147fd52))
(gr_arc (start 156.702 115.697) (mid 156.409107 116.404106) (end 155.702 116.697)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 9e9c0664-dae4-40bd-a3ec-e7ccda5746db))
(gr_line (start 145.526 75.819) (end 145.526 82.963)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp bb95b9c7-0100-4f38-a923-b446a7558a47))
(gr_arc (start 144.526 74.819) (mid 145.233106 75.111893) (end 145.526 75.819)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp cdf2cf6e-5213-4290-9041-69409a7d2f45))
(gr_arc (start 152.654 151.257) (mid 152.654 151.257) (end 152.654 151.257)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp d2656536-cf32-4a4a-8397-df283065c086))
(gr_arc (start 109.363 75.819) (mid 109.655893 75.111894) (end 110.363 74.819)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp dac8e673-c10e-44b1-bd9e-bc9ea3f4c06c))
(gr_line (start 119.412 116.697) (end 110.363 116.697)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp dc085679-35cb-41bd-b24d-6b71df3a2ec9))
(gr_arc (start 146.526 83.963) (mid 145.818894 83.670107) (end 145.526 82.963)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp eea24a63-700c-4cff-9661-20a834cfcefa))
(gr_text "RDY" (at 118.4275 77.724) (layer "F.SilkS") (tstamp 4649c38a-278f-4f94-9eed-8a51634ed91e)
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify left bottom))
)
(gr_text " A19" (at 118.1735 82.804) (layer "F.SilkS") (tstamp 5681096f-f631-4046-9209-952aa8092397)
(effects (font (size 0.75 0.75) (thickness 0.1) bold) (justify right bottom))
)
(gr_text "NC" (at 118.1735 80.264) (layer "F.SilkS") (tstamp 701354bc-0809-4027-ab68-0bdb43b95b53)
(effects (font (size 0.75 0.75) (thickness 0.1) bold) (justify right bottom))
)
(gr_text "~{WE}" (at 118.4275 82.804) (layer "F.SilkS") (tstamp 790809df-653e-4152-91a4-579216ccfc6f)
(effects (font (size 0.75 0.75) (thickness 0.1) bold) (justify left bottom))
)
(gr_text "A18" (at 118.1735 77.7494) (layer "F.SilkS") (tstamp a6cd301e-5efc-41a9-8233-628bfc5a5c62)
(effects (font (size 0.75 0.75) (thickness 0.1)) (justify right bottom))
)
(gr_text "~{RST}" (at 118.4275 80.264) (layer "F.SilkS") (tstamp dfd77f3f-efdf-4c00-adeb-1920a521bce8)
(effects (font (size 0.75 0.75) (thickness 0.1) bold) (justify left bottom))
)
(gr_text "TL866 FlashROM Programming Adapter Rev 1.0\nDesign by Patrick Dähne\nCC BY-NC-SA 4.0\nhttps://github.com/pdaehne/TL866-FlashROM-Adapter" (at 148.717 152.019 270) (layer "F.SilkS") (tstamp dff41340-5ed4-4a9f-85e2-4c1e3bd9742a)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(via (at 131.699 121.92) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 5183e3af-0d6a-4a81-aaab-4679f8e7ad3b))
(via (at 134.366 121.92) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 91d9c5ea-5cbe-4e6b-920d-7aa71df27009))
(segment (start 150.114 144.145) (end 149.479 144.78) (width 0.4) (layer "F.Cu") (net 2) (tstamp 1cf84d8e-4b0f-4bff-8283-e2f29b6fb3e1))
(segment (start 149.479 144.78) (end 140.65 144.78) (width 0.4) (layer "F.Cu") (net 2) (tstamp 1ea62bf4-12a1-410a-a2bf-07870b7803c4))
(segment (start 154.3 99.06) (end 153.03 100.33) (width 0.4) (layer "F.Cu") (net 2) (tstamp 1f147ea8-0ee9-448a-b83f-eba053a1d9fa))
(segment (start 153.03 100.33) (end 150.749 100.33) (width 0.4) (layer "F.Cu") (net 2) (tstamp 41b4929a-9a22-4b56-b314-dd5a32a18720))
(segment (start 150.114 100.965) (end 150.114 144.145) (width 0.4) (layer "F.Cu") (net 2) (tstamp 4f9a8412-4814-4aa2-8091-262815872093))
(segment (start 150.749 100.33) (end 150.114 100.965) (width 0.4) (layer "F.Cu") (net 2) (tstamp 97e4d850-2aea-4981-be39-320dfc537852))
(segment (start 113.03 97.79) (end 111.76 99.06) (width 0.25) (layer "F.Cu") (net 5) (tstamp 1b25bf48-5514-48f1-a146-a987f0cce980))
(segment (start 116.84 97.028) (end 116.078 97.79) (width 0.25) (layer "F.Cu") (net 5) (tstamp 428a3325-5c02-409a-a41d-5135d84877b7))
(segment (start 114.3 82.423) (end 116.078 82.423) (width 0.25) (layer "F.Cu") (net 5) (tstamp 54693d10-a7c5-48bd-a57d-cee2eb8546e9))
(segment (start 116.078 82.423) (end 116.84 83.185) (width 0.25) (layer "F.Cu") (net 5) (tstamp b721244c-a91a-4958-b482-090d2c5ab509))
(segment (start 116.078 97.79) (end 113.03 97.79) (width 0.25) (layer "F.Cu") (net 5) (tstamp c3d97198-d11d-415c-b700-955a211d1c4d))
(segment (start 116.84 83.185) (end 116.84 97.028) (width 0.25) (layer "F.Cu") (net 5) (tstamp e9c53cac-4ebc-4e66-888c-524f7ec98625))
(segment (start 117.602 98.298) (end 116.84 99.06) (width 0.25) (layer "F.Cu") (net 6) (tstamp 143e1832-7c06-44c2-976f-d9a6ec5085e0))
(segment (start 116.84 99.06) (end 114.3 99.06) (width 0.25) (layer "F.Cu") (net 6) (tstamp 208e5247-8937-461b-abaf-6037d24ad4f2))
(segment (start 116.84 79.883) (end 117.602 80.645) (width 0.25) (layer "F.Cu") (net 6) (tstamp 72031653-39e6-4a90-ae92-9b03796d5d40))
(segment (start 117.602 80.645) (end 117.602 98.298) (width 0.25) (layer "F.Cu") (net 6) (tstamp 8950798f-ac1d-427f-9c46-7987c5973517))
(segment (start 114.3 79.883) (end 116.84 79.883) (width 0.25) (layer "F.Cu") (net 6) (tstamp 98b343f3-3fb7-405d-8561-0b4e01d9c4b0))
(segment (start 140.65 99.06) (end 131.572 99.06) (width 0.25) (layer "F.Cu") (net 8) (tstamp 6410489c-7adc-414d-b468-1994fbab93a1))
(segment (start 130.81 99.822) (end 130.81 105.41) (width 0.25) (layer "F.Cu") (net 8) (tstamp 6bd69b48-9062-46c1-857f-33d3dcb09c5f))
(segment (start 131.572 99.06) (end 130.81 99.822) (width 0.25) (layer "F.Cu") (net 8) (tstamp 9ad77466-c022-4b8d-b009-2ed84a758572))
(via (at 130.81 105.41) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp 5c36d274-4a2d-4989-a3f2-818a0cc20bb5))
(segment (start 116.84 95.25) (end 113.03 95.25) (width 0.25) (layer "B.Cu") (net 8) (tstamp 0d9c76b1-d3ee-4c60-90e9-e2d484d6ca10))
(segment (start 130.81 105.41) (end 118.364 105.41) (width 0.25) (layer "B.Cu") (net 8) (tstamp 7309e1a3-3d1b-4a89-8d05-e36fb657d91d))
(segment (start 117.602 104.648) (end 117.602 96.012) (width 0.25) (layer "B.Cu") (net 8) (tstamp 79267679-0d7d-419a-852b-105567569308))
(segment (start 113.03 95.25) (end 111.76 93.98) (width 0.25) (layer "B.Cu") (net 8) (tstamp 8590e12b-f94d-489f-ab84-1186f42fc640))
(segment (start 117.602 96.012) (end 116.84 95.25) (width 0.25) (layer "B.Cu") (net 8) (tstamp a8d3ad79-a4f6-404a-aac1-9c3d8edde633))
(segment (start 118.364 105.41) (end 117.602 104.648) (width 0.25) (layer "B.Cu") (net 8) (tstamp cbd7a3d9-fa71-41e1-804c-7aa3e9159c7f))
(segment (start 145.669 92.075) (end 145.669 126.365) (width 0.25) (layer "F.Cu") (net 9) (tstamp 075f1bdc-c11d-455b-8a8f-2d3e504bd213))
(segment (start 151.76 91.44) (end 146.304 91.44) (width 0.25) (layer "F.Cu") (net 9) (tstamp 464b996e-5505-4e69-8de0-fb04bd43baeb))
(segment (start 145.034 127) (end 140.65 127) (width 0.25) (layer "F.Cu") (net 9) (tstamp 5b6c5c6e-9c8d-411a-a75d-7a3903aac4e1))
(segment (start 145.669 126.365) (end 145.034 127) (width 0.25) (layer "F.Cu") (net 9) (tstamp 850ae944-d15d-41b8-9bb6-c9f779f6976a))
(segment (start 146.304 91.44) (end 145.669 92.075) (width 0.25) (layer "F.Cu") (net 9) (tstamp fce4e8e9-4ea1-4abf-a906-6b8481914102))
(segment (start 147.574 93.98) (end 146.939 94.615) (width 0.25) (layer "F.Cu") (net 10) (tstamp 82f6d355-db1b-44ac-ab3c-4f0a33c597a7))