-
Notifications
You must be signed in to change notification settings - Fork 2
/
EETool.kicad_pcb
1644 lines (1619 loc) · 134 KB
/
EETool.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 4) (host pcbnew "(2015-07-24 BZR 5991)-product")
(general
(links 64)
(no_connects 0)
(area 98.824999 76.853 195.630001 135.0362)
(thickness 1.6)
(drawings 7)
(tracks 277)
(zones 0)
(modules 17)
(nets 41)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.5)
(user_trace_width 0.5)
(user_trace_width 0.6)
(user_trace_width 0.75)
(user_trace_width 1)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.1)
(via_size 0.6)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 4.064 4.064)
(pad_drill 3.048)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010f0_80000001)
(usegerberextensions false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory Gerber/))
)
(net 0 "")
(net 1 GND)
(net 2 VCC)
(net 3 "Net-(C2-Pad1)")
(net 4 "Net-(D1-Pad1)")
(net 5 "Net-(D1-Pad2)")
(net 6 /Z3)
(net 7 /Z1)
(net 8 /Z2)
(net 9 "Net-(JP1-Pad5)")
(net 10 "Net-(P1-Pad2)")
(net 11 "Net-(P1-Pad4)")
(net 12 "Net-(P1-Pad3)")
(net 13 "Net-(R1-Pad1)")
(net 14 "Net-(R2-Pad1)")
(net 15 WE)
(net 16 /Z0)
(net 17 /Z7)
(net 18 "Net-(U1-Pad16)")
(net 19 "Net-(U1-Pad17)")
(net 20 /Y0)
(net 21 /Y1)
(net 22 /Y2)
(net 23 /Y3)
(net 24 /Y5)
(net 25 /Y4)
(net 26 /Y6)
(net 27 /Y7)
(net 28 /Z4)
(net 29 /Z5)
(net 30 /Z6)
(net 31 /Y14)
(net 32 OE)
(net 33 /Y13)
(net 34 /Y12)
(net 35 /Y11)
(net 36 /Y10)
(net 37 /Y9)
(net 38 /Y8)
(net 39 "Net-(U1-Pad42)")
(net 40 "Net-(Y1-Pad1)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net /Y0)
(add_net /Y1)
(add_net /Y10)
(add_net /Y11)
(add_net /Y12)
(add_net /Y13)
(add_net /Y14)
(add_net /Y2)
(add_net /Y3)
(add_net /Y4)
(add_net /Y5)
(add_net /Y6)
(add_net /Y7)
(add_net /Y8)
(add_net /Y9)
(add_net /Z0)
(add_net /Z1)
(add_net /Z2)
(add_net /Z3)
(add_net /Z4)
(add_net /Z5)
(add_net /Z6)
(add_net /Z7)
(add_net GND)
(add_net "Net-(C2-Pad1)")
(add_net "Net-(D1-Pad1)")
(add_net "Net-(D1-Pad2)")
(add_net "Net-(JP1-Pad5)")
(add_net "Net-(P1-Pad2)")
(add_net "Net-(P1-Pad3)")
(add_net "Net-(P1-Pad4)")
(add_net "Net-(R1-Pad1)")
(add_net "Net-(R2-Pad1)")
(add_net "Net-(U1-Pad16)")
(add_net "Net-(U1-Pad17)")
(add_net "Net-(U1-Pad42)")
(add_net "Net-(Y1-Pad1)")
(add_net OE)
(add_net VCC)
(add_net WE)
)
(module Connect:1pin (layer F.Cu) (tedit 55B59981) (tstamp 55B64ACF)
(at 109.5756 81.026)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(fp_text reference REF** (at 0 -3.048) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1pin (at 0 2.794) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.15))
(pad "" thru_hole circle (at 0 0) (size 4.064 4.064) (drill 3.048) (layers *.Cu *.Mask F.SilkS))
)
(module Connect:1pin (layer F.Cu) (tedit 55B59981) (tstamp 55B64ACA)
(at 192.4812 81.026)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(fp_text reference REF** (at 0 -3.048) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1pin (at 0 2.794) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.15))
(pad "" thru_hole circle (at 0 0) (size 4.064 4.064) (drill 3.048) (layers *.Cu *.Mask F.SilkS))
)
(module Connect:1pin (layer F.Cu) (tedit 55B59981) (tstamp 55B64AC5)
(at 192.4812 131.2672)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(fp_text reference REF** (at 0 -3.048) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1pin (at 0 2.794) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.15))
(pad "" thru_hole circle (at 0 0) (size 4.064 4.064) (drill 3.048) (layers *.Cu *.Mask F.SilkS))
)
(module LEDs:LED-5MM (layer F.Cu) (tedit 55B5771F) (tstamp 55B40E79)
(at 136.017 91.821 180)
(descr "LED 5mm round vertical")
(tags "LED 5mm round vertical")
(path /55B401C6)
(fp_text reference D1 (at 1.524 4.064 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value LED (at 5.461 0.127 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.5 -1.55) (end -1.5 1.55) (layer F.CrtYd) (width 0.05))
(fp_arc (start 1.3 0) (end -1.5 1.55) (angle -302) (layer F.CrtYd) (width 0.05))
(fp_arc (start 1.27 0) (end -1.23 -1.5) (angle 297.5) (layer F.SilkS) (width 0.15))
(fp_line (start -1.23 1.5) (end -1.23 -1.5) (layer F.SilkS) (width 0.15))
(fp_circle (center 1.27 0) (end 0.97 -2.5) (layer F.SilkS) (width 0.15))
(fp_text user K (at -1.905 1.905 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole rect (at 0 0 270) (size 2 1.9) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)
(net 4 "Net-(D1-Pad1)"))
(pad 2 thru_hole circle (at 2.54 0 180) (size 1.9 1.9) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)
(net 5 "Net-(D1-Pad2)"))
(model LEDs.3dshapes/LED-5MM.wrl
(at (xyz 0.05 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Pin_Headers:Pin_Header_Straight_2x03 (layer F.Cu) (tedit 55B5708B) (tstamp 55B40E83)
(at 129.54 113.792)
(descr "Through hole pin header")
(tags "pin header")
(path /55B42743)
(fp_text reference JP1 (at 1.143 -4.699) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value PINHD-2X3 (at 1.27 10.033) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.27 1.27) (end -1.27 6.35) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end 0 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.75 -1.75) (end -1.75 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.3 -1.75) (end 4.3 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 4.3 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 6.85) (end 4.3 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 6.35) (end 3.81 6.35) (layer F.SilkS) (width 0.15))
(fp_line (start 3.81 6.35) (end 3.81 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end -1.55 0) (layer F.SilkS) (width 0.15))
(fp_line (start 3.81 -1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 3.81 1.27) (end 3.81 -1.27) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 6 /Z3))
(pad 2 thru_hole oval (at 2.54 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 2 VCC))
(pad 3 thru_hole oval (at 0 2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 7 /Z1))
(pad 4 thru_hole oval (at 2.54 2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 8 /Z2))
(pad 5 thru_hole oval (at 0 5.08) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 9 "Net-(JP1-Pad5)"))
(pad 6 thru_hole oval (at 2.54 5.08) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_2x03.wrl
(at (xyz 0.05 -0.1 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Housings_QFP:TQFP-44_10x10mm_Pitch0.8mm (layer F.Cu) (tedit 55B5709A) (tstamp 55B40ECF)
(at 148.844 104.648)
(descr "44-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1.0 mm Body [TQFP] (see Microchip Packaging Specification 00000049BS.pdf)")
(tags "QFP 0.8")
(path /55B3F47E)
(attr smd)
(fp_text reference U1 (at 0 -7.45) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ATMEGA32U4-A (at 0 7.45) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -6.7 -6.7) (end -6.7 6.7) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.7 -6.7) (end 6.7 6.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -6.7 -6.7) (end 6.7 -6.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -6.7 6.7) (end 6.7 6.7) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.175 -5.175) (end -5.175 -4.5) (layer F.SilkS) (width 0.15))
(fp_line (start 5.175 -5.175) (end 5.175 -4.5) (layer F.SilkS) (width 0.15))
(fp_line (start 5.175 5.175) (end 5.175 4.5) (layer F.SilkS) (width 0.15))
(fp_line (start -5.175 5.175) (end -5.175 4.5) (layer F.SilkS) (width 0.15))
(fp_line (start -5.175 -5.175) (end -4.5 -5.175) (layer F.SilkS) (width 0.15))
(fp_line (start -5.175 5.175) (end -4.5 5.175) (layer F.SilkS) (width 0.15))
(fp_line (start 5.175 5.175) (end 4.5 5.175) (layer F.SilkS) (width 0.15))
(fp_line (start 5.175 -5.175) (end 4.5 -5.175) (layer F.SilkS) (width 0.15))
(fp_line (start -5.175 -4.5) (end -6.45 -4.5) (layer F.SilkS) (width 0.15))
(pad 1 smd rect (at -5.7 -4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 15 WE))
(pad 2 smd rect (at -5.7 -3.2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 3 smd rect (at -5.7 -2.4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 14 "Net-(R2-Pad1)"))
(pad 4 smd rect (at -5.7 -1.6) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 13 "Net-(R1-Pad1)"))
(pad 5 smd rect (at -5.7 -0.8) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 6 smd rect (at -5.7 0) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 3 "Net-(C2-Pad1)"))
(pad 7 smd rect (at -5.7 0.8) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 8 smd rect (at -5.7 1.6) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 16 /Z0))
(pad 9 smd rect (at -5.7 2.4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 7 /Z1))
(pad 10 smd rect (at -5.7 3.2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 8 /Z2))
(pad 11 smd rect (at -5.7 4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 6 /Z3))
(pad 12 smd rect (at -4 5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 17 /Z7))
(pad 13 smd rect (at -3.2 5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 9 "Net-(JP1-Pad5)"))
(pad 14 smd rect (at -2.4 5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 15 smd rect (at -1.6 5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 16 smd rect (at -0.8 5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 18 "Net-(U1-Pad16)"))
(pad 17 smd rect (at 0 5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 19 "Net-(U1-Pad17)"))
(pad 18 smd rect (at 0.8 5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 20 /Y0))
(pad 19 smd rect (at 1.6 5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 21 /Y1))
(pad 20 smd rect (at 2.4 5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 22 /Y2))
(pad 21 smd rect (at 3.2 5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 23 /Y3))
(pad 22 smd rect (at 4 5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 24 /Y5))
(pad 23 smd rect (at 5.7 4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 24 smd rect (at 5.7 3.2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 25 smd rect (at 5.7 2.4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 25 /Y4))
(pad 26 smd rect (at 5.7 1.6) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 26 /Y6))
(pad 27 smd rect (at 5.7 0.8) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 27 /Y7))
(pad 28 smd rect (at 5.7 0) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 28 /Z4))
(pad 29 smd rect (at 5.7 -0.8) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 29 /Z5))
(pad 30 smd rect (at 5.7 -1.6) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 30 /Z6))
(pad 31 smd rect (at 5.7 -2.4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 4 "Net-(D1-Pad1)"))
(pad 32 smd rect (at 5.7 -3.2) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 31 /Y14))
(pad 33 smd rect (at 5.7 -4) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 32 OE))
(pad 34 smd rect (at 4 -5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(pad 35 smd rect (at 3.2 -5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 36 smd rect (at 2.4 -5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 33 /Y13))
(pad 37 smd rect (at 1.6 -5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 34 /Y12))
(pad 38 smd rect (at 0.8 -5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 35 /Y11))
(pad 39 smd rect (at 0 -5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 36 /Y10))
(pad 40 smd rect (at -0.8 -5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 37 /Y9))
(pad 41 smd rect (at -1.6 -5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 38 /Y8))
(pad 42 smd rect (at -2.4 -5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 39 "Net-(U1-Pad42)"))
(pad 43 smd rect (at -3.2 -5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 1 GND))
(pad 44 smd rect (at -4 -5.7 90) (size 1.5 0.55) (layers F.Cu F.Paste F.Mask)
(net 2 VCC))
(model Housings_QFP.3dshapes/TQFP-44_10x10mm_Pitch0.8mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Sockets_DIP:DIP-28__600_ELL (layer F.Cu) (tedit 55B5709F) (tstamp 55B40EEF)
(at 176.784 106.934 270)
(descr "28 pins DIL package, elliptical pads, width 600mil")
(tags DIL)
(path /55AD8276)
(fp_text reference U2 (at 20.447 -0.254 360) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ZIFSOCKET-28-3ZIFFSOCKET-28-3 (at 0.635 3.81 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -19.05 -1.27) (end -19.05 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -19.05 -1.27) (end -17.78 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -17.78 -1.27) (end -17.78 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -17.78 1.27) (end -19.05 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -19.05 -6.35) (end 19.05 -6.35) (layer F.SilkS) (width 0.15))
(fp_line (start 19.05 -6.35) (end 19.05 6.35) (layer F.SilkS) (width 0.15))
(fp_line (start 19.05 6.35) (end -19.05 6.35) (layer F.SilkS) (width 0.15))
(fp_line (start -19.05 6.35) (end -19.05 -6.35) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at -16.51 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 31 /Y14))
(pad 2 thru_hole oval (at -13.97 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 34 /Y12))
(pad 3 thru_hole oval (at -11.43 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 17 /Z7))
(pad 4 thru_hole oval (at -8.89 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 30 /Z6))
(pad 5 thru_hole oval (at -6.35 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 29 /Z5))
(pad 6 thru_hole oval (at -3.81 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 28 /Z4))
(pad 7 thru_hole oval (at -1.27 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 6 /Z3))
(pad 8 thru_hole oval (at 1.27 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 8 /Z2))
(pad 9 thru_hole oval (at 3.81 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 7 /Z1))
(pad 10 thru_hole oval (at 6.35 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 16 /Z0))
(pad 11 thru_hole oval (at 8.89 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 20 /Y0))
(pad 12 thru_hole oval (at 11.43 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 21 /Y1))
(pad 13 thru_hole oval (at 13.97 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 22 /Y2))
(pad 14 thru_hole oval (at 16.51 7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 15 thru_hole oval (at 16.51 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 23 /Y3))
(pad 16 thru_hole oval (at 13.97 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 25 /Y4))
(pad 17 thru_hole oval (at 11.43 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 24 /Y5))
(pad 18 thru_hole oval (at 8.89 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 26 /Y6))
(pad 19 thru_hole oval (at 6.35 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 27 /Y7))
(pad 20 thru_hole oval (at 3.81 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 21 thru_hole oval (at 1.27 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 36 /Y10))
(pad 22 thru_hole oval (at -1.27 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 32 OE))
(pad 23 thru_hole oval (at -3.81 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 35 /Y11))
(pad 24 thru_hole oval (at -6.35 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 37 /Y9))
(pad 25 thru_hole oval (at -8.89 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 38 /Y8))
(pad 26 thru_hole oval (at -11.43 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 33 /Y13))
(pad 27 thru_hole oval (at -13.97 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 15 WE))
(pad 28 thru_hole oval (at -16.51 -7.62 270) (size 1.5748 2.286) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 2 VCC))
(model Sockets_DIP.3dshapes/DIP-28__600_ELL.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_ThroughHole:C_Rect_L18_W5_P15 (layer F.Cu) (tedit 55B57719) (tstamp 55B51C61)
(at 120.904 124.587 90)
(descr "Film Capacitor Length 18mm x Width 5mm, Pitch 5mm")
(tags Capacitor)
(path /55AD80BB)
(fp_text reference C1 (at 7.5 -3.75 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 10uF (at 8.128 -0.127 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -2.75) (end 16.75 -2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.75 -2.75) (end 16.75 2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.75 2.75) (end -1.75 2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 2.75) (end -1.75 -2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -2.5) (end -1.5 -2.5) (layer F.SilkS) (width 0.15))
(fp_line (start 16.5 2.5) (end 16.5 -2.5) (layer F.SilkS) (width 0.15))
(fp_line (start 16.5 -2.5) (end -1.5 -2.5) (layer F.SilkS) (width 0.15))
(fp_line (start -1.5 -2.5) (end -1.5 2.5) (layer F.SilkS) (width 0.15))
(fp_line (start -1.5 2.5) (end 16.5 2.5) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1.2) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 2 thru_hole circle (at 15 0 90) (size 1.7 1.7) (drill 1.2) (layers *.Cu *.Mask F.SilkS)
(net 2 VCC))
)
(module Capacitors_ThroughHole:C_Rect_L18_W5_P15 (layer F.Cu) (tedit 55B57725) (tstamp 55B51C66)
(at 146.558 88.392)
(descr "Film Capacitor Length 18mm x Width 5mm, Pitch 5mm")
(tags Capacitor)
(path /55AD77B0)
(fp_text reference C2 (at 7.5 -3.75) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1uF (at 7.493 0.127) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -2.75) (end 16.75 -2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.75 -2.75) (end 16.75 2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 16.75 2.75) (end -1.75 2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 2.75) (end -1.75 -2.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -2.5) (end -1.5 -2.5) (layer F.SilkS) (width 0.15))
(fp_line (start 16.5 2.5) (end 16.5 -2.5) (layer F.SilkS) (width 0.15))
(fp_line (start 16.5 -2.5) (end -1.5 -2.5) (layer F.SilkS) (width 0.15))
(fp_line (start -1.5 -2.5) (end -1.5 2.5) (layer F.SilkS) (width 0.15))
(fp_line (start -1.5 2.5) (end 16.5 2.5) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1.2) (layers *.Cu *.Mask F.SilkS)
(net 3 "Net-(C2-Pad1)"))
(pad 2 thru_hole circle (at 15 0) (size 1.7 1.7) (drill 1.2) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
)
(module Capacitors_ThroughHole:C_Disc_D3_P2.5 (layer F.Cu) (tedit 55B5973E) (tstamp 55B51C6B)
(at 145.669 116.967)
(descr "Capacitor 3mm Disc, Pitch 2.5mm")
(tags Capacitor)
(path /55B41E24)
(fp_text reference C3 (at -0.381 -2.159) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nF (at -3.429 0.127) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.9 -1.5) (end 3.4 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.4 -1.5) (end 3.4 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.4 1.5) (end -0.9 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.9 1.5) (end -0.9 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.25 -1.25) (end 2.75 -1.25) (layer F.SilkS) (width 0.15))
(fp_line (start 2.75 1.25) (end -0.25 1.25) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 2 VCC))
(pad 2 thru_hole circle (at 2.5 0) (size 1.3 1.3) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(model Capacitors_ThroughHole.3dshapes/C_Disc_D3_P2.5.wrl
(at (xyz 0.0492126 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_ThroughHole:C_Disc_D3_P2.5 (layer F.Cu) (tedit 55B5774C) (tstamp 55B51C70)
(at 175.641 85.725)
(descr "Capacitor 3mm Disc, Pitch 2.5mm")
(tags Capacitor)
(path /55B4203D)
(fp_text reference C4 (at 1.397 -2.413) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100nF (at -3.81 0.635) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.9 -1.5) (end 3.4 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.4 -1.5) (end 3.4 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 3.4 1.5) (end -0.9 1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.9 1.5) (end -0.9 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.25 -1.25) (end 2.75 -1.25) (layer F.SilkS) (width 0.15))
(fp_line (start 2.75 1.25) (end -0.25 1.25) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0) (size 1.3 1.3) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 2 thru_hole circle (at 2.5 0) (size 1.3 1.3) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 2 VCC))
(model Capacitors_ThroughHole.3dshapes/C_Disc_D3_P2.5.wrl
(at (xyz 0.0492126 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:Resistor_Horizontal_RM10mm (layer F.Cu) (tedit 55B57714) (tstamp 55B51C75)
(at 128.397 104.14 180)
(descr "Resistor, Axial, RM 10mm, 1/3W,")
(tags "Resistor, Axial, RM 10mm, 1/3W,")
(path /55AD7892)
(fp_text reference R1 (at 8.509 0.381 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22 (at 0 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.54 -1.27) (end 2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 1.27) (end -2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 0) (end -3.81 0) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 0) (end 3.81 0) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -5.08 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 13 "Net-(R1-Pad1)"))
(pad 2 thru_hole circle (at 5.08 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 12 "Net-(P1-Pad3)"))
(model Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM10mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.4 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:Resistor_Horizontal_RM10mm (layer F.Cu) (tedit 55B5770E) (tstamp 55B51C7A)
(at 128.397 100.965 180)
(descr "Resistor, Axial, RM 10mm, 1/3W,")
(tags "Resistor, Axial, RM 10mm, 1/3W,")
(path /55AD7909)
(fp_text reference R2 (at 8.509 0.381 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 22 (at 0.254 -0.127 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.54 -1.27) (end 2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 1.27) (end -2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 0) (end -3.81 0) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 0) (end 3.81 0) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -5.08 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 14 "Net-(R2-Pad1)"))
(pad 2 thru_hole circle (at 5.08 0 180) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 10 "Net-(P1-Pad2)"))
(model Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM10mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.4 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(module Resistors_ThroughHole:Resistor_Horizontal_RM10mm (layer F.Cu) (tedit 55B57706) (tstamp 55B51C7F)
(at 128.397 97.79)
(descr "Resistor, Axial, RM 10mm, 1/3W,")
(tags "Resistor, Axial, RM 10mm, 1/3W,")
(path /55B4020F)
(fp_text reference R3 (at -8.509 0.127) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 320 (at 0.127 0.127) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.54 -1.27) (end 2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 -1.27) (end 2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 1.27) (end -2.54 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 1.27) (end -2.54 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -2.54 0) (end -3.81 0) (layer F.SilkS) (width 0.15))
(fp_line (start 2.54 0) (end 3.81 0) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -5.08 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 1 GND))
(pad 2 thru_hole circle (at 5.08 0) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.SilkS *.Mask)
(net 5 "Net-(D1-Pad2)"))
(model Resistors_ThroughHole.3dshapes/Resistor_Horizontal_RM10mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.4 0.4 0.4))
(rotate (xyz 0 0 0))
)
)
(module Oscillator-Modules:OSCILLATOR_KXO-200 (layer F.Cu) (tedit 55B59730) (tstamp 55B5953D)
(at 148.336 125.476)
(descr "OSCILLATOR IC KXO-200 Throuhole")
(tags "X-Tal, OSCILLATOR, KXO-200, Throuhole")
(path /55AD9433)
(fp_text reference Y1 (at 12.192 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 16Mhz (at 0 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center -9.398 5.334) (end -9.398 5.588) (layer F.SilkS) (width 0.15))
(fp_line (start -10.39876 -5.40004) (end -10.39876 6.59892) (layer F.SilkS) (width 0.15))
(fp_line (start 9.40054 6.59892) (end -10.39876 6.59892) (layer F.SilkS) (width 0.15))
(fp_line (start 10.39876 -5.6007) (end 10.39876 5.4991) (layer F.SilkS) (width 0.15))
(fp_line (start -9.10082 -6.59892) (end 9.40054 -6.59892) (layer F.SilkS) (width 0.15))
(fp_arc (start 9.40054 -5.6007) (end 9.40054 -6.59892) (angle 90) (layer F.SilkS) (width 0.15))
(fp_arc (start -9.20496 -5.40004) (end -10.40384 -5.40004) (angle 90) (layer F.SilkS) (width 0.15))
(fp_arc (start 9.40054 5.6007) (end 10.39876 5.6007) (angle 90) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at -7.62 3.81) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 40 "Net-(Y1-Pad1)"))
(pad 7 thru_hole circle (at 7.62 3.81) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 8 thru_hole circle (at 7.62 -3.81) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 19 "Net-(U1-Pad17)"))
(pad 14 thru_hole circle (at -7.62 -3.81) (size 1.397 1.397) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 2 VCC))
(model Oscillator-Modules.3dshapes/OSCILLATOR_KXO-200.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connect:1pin (layer F.Cu) (tedit 55B59981) (tstamp 55B59862)
(at 109.6264 131.1656)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(fp_text reference REF** (at 0 -3.048) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1pin (at 0 2.794) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.15))
(pad "" thru_hole circle (at 0 0) (size 4.064 4.064) (drill 3.048) (layers *.Cu *.Mask F.SilkS))
)
(module Footprints:USB_B (layer F.Cu) (tedit 55B59C5D) (tstamp 55B59C70)
(at 114.3 104.14 180)
(descr "USB B connector")
(tags "USB_B USB_DEV")
(path /55B4161B)
(fp_text reference P1 (at 1.524 -7.62 360) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value USB (at 4.699 1.27 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 15.25 8.9) (end -2.3 8.9) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.3 8.9) (end -2.3 -6.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.3 -6.35) (end 15.25 -6.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 15.25 -6.35) (end 15.25 8.9) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.35 7.366) (end 14.986 7.366) (layer Cmts.User) (width 0.15))
(fp_line (start -2.032 7.366) (end 3.048 7.366) (layer Cmts.User) (width 0.15))
(fp_line (start 6.35 -4.826) (end 14.986 -4.826) (layer Cmts.User) (width 0.15))
(fp_line (start -2.032 -4.826) (end 3.048 -4.826) (layer Cmts.User) (width 0.15))
(fp_line (start 14.986 -4.826) (end 14.986 7.366) (layer Cmts.User) (width 0.15))
(fp_line (start -2.032 7.366) (end -2.032 -4.826) (layer Cmts.User) (width 0.15))
(pad 2 thru_hole circle (at 0 2.54 90) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 10 "Net-(P1-Pad2)"))
(pad 1 thru_hole circle (at 0 0 90) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 2 VCC))
(pad 4 thru_hole circle (at 1.99898 0 90) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 11 "Net-(P1-Pad4)"))
(pad 3 thru_hole circle (at 1.99898 2.54 90) (size 1.524 1.524) (drill 0.8128) (layers *.Cu *.Mask F.SilkS)
(net 12 "Net-(P1-Pad3)"))
(pad 5 thru_hole circle (at 4.699 7.26948 90) (size 2.70002 2.70002) (drill 2.30124) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 5 thru_hole circle (at 4.699 -4.72948 90) (size 2.70002 2.70002) (drill 2.30124) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(model Connect.3dshapes/USB_B.wrl
(at (xyz 0.05 -0.185 0.001))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(gr_text "Apple II ROM Dump & Burn Tool\n©2015 Quinn Dunki\nhttp://www.quinndunki.com/blondihacks" (at 114.6556 81.9912) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.25)) (justify left))
)
(gr_text + (at 124.46 109.601) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_text + (at 145.9484 91.948) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(gr_line (start 106.553 134.239) (end 106.553 77.978) (angle 90) (layer Edge.Cuts) (width 0.1))
(gr_line (start 106.553 77.978) (end 195.58 77.978) (angle 90) (layer Edge.Cuts) (width 0.1))
(gr_line (start 195.58 134.239) (end 106.553 134.239) (angle 90) (layer Edge.Cuts) (width 0.1))
(gr_line (start 195.58 134.239) (end 195.58 77.978) (angle 90) (layer Edge.Cuts) (width 0.1))
(segment (start 147.244 110.348) (end 147.244 109.296) (width 0.5) (layer F.Cu) (net 1))
(segment (start 147.892 108.648) (end 154.544 108.648) (width 0.5) (layer F.Cu) (net 1) (tstamp 55B56E35))
(segment (start 147.244 109.296) (end 147.892 108.648) (width 0.5) (layer F.Cu) (net 1) (tstamp 55B56E2E))
(segment (start 147.244 110.348) (end 147.244 114.478) (width 0.5) (layer F.Cu) (net 1))
(via (at 147.574 114.808) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 147.244 114.478) (end 147.574 114.808) (width 0.5) (layer F.Cu) (net 1) (tstamp 55B56E0B))
(segment (start 143.144 103.848) (end 141.135 103.848) (width 0.6) (layer F.Cu) (net 1))
(via (at 141.097 103.886) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 141.135 103.848) (end 141.097 103.886) (width 0.6) (layer F.Cu) (net 1) (tstamp 55B56D3D))
(segment (start 152.044 98.948) (end 152.044 97.053) (width 0.6) (layer F.Cu) (net 1))
(via (at 152.019 97.028) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 152.044 97.053) (end 152.019 97.028) (width 0.6) (layer F.Cu) (net 1) (tstamp 55B56CBD))
(segment (start 145.644 98.948) (end 145.644 96.926) (width 0.6) (layer F.Cu) (net 1))
(via (at 145.669 96.901) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 1))
(segment (start 145.644 96.926) (end 145.669 96.901) (width 0.6) (layer F.Cu) (net 1) (tstamp 55B56CAD))
(segment (start 154.544 107.848) (end 153.314 107.848) (width 0.6) (layer F.Cu) (net 2))
(segment (start 153.314 107.848) (end 152.781 107.315) (width 0.6) (layer F.Cu) (net 2) (tstamp 55B56E98))
(segment (start 146.444 109.093) (end 146.444 107.937) (width 0.6) (layer F.Cu) (net 2))
(segment (start 146.444 107.937) (end 146.939 107.442) (width 0.6) (layer F.Cu) (net 2) (tstamp 55B56E8C))
(segment (start 143.144 105.448) (end 144.869 105.448) (width 0.6) (layer F.Cu) (net 2))
(segment (start 144.869 105.448) (end 145.288 105.029) (width 0.6) (layer F.Cu) (net 2) (tstamp 55B56E84))
(segment (start 152.844 98.948) (end 152.844 100.775) (width 0.6) (layer F.Cu) (net 2))
(segment (start 152.844 100.775) (end 152.146 101.473) (width 0.6) (layer F.Cu) (net 2) (tstamp 55B52877))
(segment (start 144.844 98.948) (end 144.844 100.521) (width 0.6) (layer F.Cu) (net 2))
(segment (start 144.844 100.521) (end 145.771 101.448) (width 0.6) (layer F.Cu) (net 2) (tstamp 55B52874))
(segment (start 143.144 101.448) (end 145.771 101.448) (width 0.6) (layer F.Cu) (net 2))
(segment (start 145.771 101.448) (end 145.796 101.473) (width 0.6) (layer F.Cu) (net 2) (tstamp 55B52871))
(segment (start 146.444 110.348) (end 146.444 109.093) (width 0.6) (layer F.Cu) (net 2))
(segment (start 146.444 109.093) (end 146.444 108.953) (width 0.6) (layer F.Cu) (net 2) (tstamp 55B56E8A))
(segment (start 146.444 110.348) (end 146.444 114.16) (width 0.6) (layer F.Cu) (net 2))
(segment (start 146.444 114.16) (end 146.431 114.173) (width 0.6) (layer F.Cu) (net 2) (tstamp 55B5284F))
(segment (start 146.431 110.361) (end 146.444 110.348) (width 0.5) (layer F.Cu) (net 2) (tstamp 55B51D0F))
(segment (start 120.139 109.598) (end 121.666 109.598) (width 1) (layer F.Cu) (net 2) (tstamp 55B450BC) (status 10))
(segment (start 114.3 104.14) (end 114.554 104.14) (width 1) (layer F.Cu) (net 2))
(segment (start 140.081 104.648) (end 138.684 104.648) (width 0.6) (layer F.Cu) (net 3))
(segment (start 137.668 102.235) (end 137.668 94.361) (width 0.5) (layer F.Cu) (net 3) (tstamp 55B51F24))
(segment (start 137.668 94.361) (end 143.637 88.392) (width 0.5) (layer F.Cu) (net 3) (tstamp 55B51F2B))
(segment (start 146.558 88.392) (end 143.637 88.392) (width 0.5) (layer F.Cu) (net 3) (tstamp 55B51F33))
(segment (start 140.081 104.648) (end 143.144 104.648) (width 0.5) (layer F.Cu) (net 3))
(segment (start 137.668 103.632) (end 137.668 102.235) (width 0.6) (layer F.Cu) (net 3) (tstamp 55B56D32))
(segment (start 138.684 104.648) (end 137.668 103.632) (width 0.6) (layer F.Cu) (net 3) (tstamp 55B56D2E))
(segment (start 156.337 96.901) (end 156.337 96.52) (width 0.5) (layer B.Cu) (net 4))
(segment (start 154.544 102.248) (end 156.324 102.248) (width 0.5) (layer F.Cu) (net 4))
(segment (start 156.337 102.235) (end 156.337 96.901) (width 0.5) (layer B.Cu) (net 4) (tstamp 55B45C96))
(via (at 156.337 102.235) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 4))
(segment (start 156.324 102.248) (end 156.337 102.235) (width 0.5) (layer F.Cu) (net 4) (tstamp 55B45C92))
(segment (start 139.7 95.504) (end 136.017 91.821) (width 0.5) (layer B.Cu) (net 4) (tstamp 55B56EDB))
(segment (start 155.321 95.504) (end 139.7 95.504) (width 0.5) (layer B.Cu) (net 4) (tstamp 55B56ED4))
(segment (start 156.337 96.52) (end 155.321 95.504) (width 0.5) (layer B.Cu) (net 4) (tstamp 55B56ED0))
(segment (start 133.477 91.821) (end 133.477 97.79) (width 0.5) (layer B.Cu) (net 5))
(segment (start 133.477 91.821) (end 133.477 91.955) (width 0.5) (layer B.Cu) (net 5) (status 30))
(segment (start 169.037 106.299) (end 139.192 106.299) (width 0.25) (layer B.Cu) (net 6))
(segment (start 137.668 107.823) (end 137.668 108.712) (width 0.25) (layer B.Cu) (net 6) (tstamp 55B459A8))
(segment (start 139.192 106.299) (end 137.668 107.823) (width 0.25) (layer B.Cu) (net 6) (tstamp 55B45972))
(segment (start 137.732 108.648) (end 143.144 108.648) (width 0.25) (layer F.Cu) (net 6) (tstamp 55B41459))
(via (at 137.668 108.712) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 6))
(segment (start 137.668 108.712) (end 137.732 108.648) (width 0.25) (layer F.Cu) (net 6) (tstamp 55B41458))
(segment (start 131.572 108.712) (end 137.668 108.712) (width 0.25) (layer B.Cu) (net 6) (tstamp 55B41453))
(segment (start 129.54 113.792) (end 129.54 110.744) (width 0.25) (layer B.Cu) (net 6))
(segment (start 129.54 110.744) (end 131.572 108.712) (width 0.25) (layer B.Cu) (net 6) (tstamp 55B4144D))
(segment (start 169.164 110.744) (end 167.386 110.744) (width 0.25) (layer B.Cu) (net 7))
(segment (start 136.525 107.188) (end 139.7 107.188) (width 0.25) (layer F.Cu) (net 7) (tstamp 55B459F6))
(segment (start 136.144 107.569) (end 136.525 107.188) (width 0.25) (layer F.Cu) (net 7) (tstamp 55B459F1))
(segment (start 136.144 110.49) (end 136.144 107.569) (width 0.25) (layer F.Cu) (net 7) (tstamp 55B459ED))
(segment (start 136.906 111.252) (end 136.144 110.49) (width 0.25) (layer F.Cu) (net 7) (tstamp 55B459E7))
(segment (start 141.097 111.252) (end 136.906 111.252) (width 0.25) (layer F.Cu) (net 7) (tstamp 55B459E6))
(via (at 141.097 111.252) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 7))
(segment (start 166.878 111.252) (end 141.097 111.252) (width 0.25) (layer B.Cu) (net 7) (tstamp 55B459D0))
(segment (start 167.386 110.744) (end 166.878 111.252) (width 0.25) (layer B.Cu) (net 7) (tstamp 55B459CC))
(segment (start 129.54 116.332) (end 129.794 116.332) (width 0.25) (layer B.Cu) (net 7))
(segment (start 129.794 116.332) (end 131.064 115.062) (width 0.25) (layer B.Cu) (net 7) (tstamp 55B414C4))
(segment (start 131.064 115.062) (end 134.62 115.062) (width 0.25) (layer B.Cu) (net 7) (tstamp 55B414C6))
(segment (start 134.62 115.062) (end 139.7 109.982) (width 0.25) (layer B.Cu) (net 7) (tstamp 55B414D2))
(segment (start 139.7 109.982) (end 139.7 107.188) (width 0.25) (layer B.Cu) (net 7) (tstamp 55B414D7))
(via (at 139.7 107.188) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 7))
(segment (start 139.7 107.188) (end 139.84 107.048) (width 0.25) (layer F.Cu) (net 7) (tstamp 55B414E1))
(segment (start 139.84 107.048) (end 143.144 107.048) (width 0.25) (layer F.Cu) (net 7) (tstamp 55B414E2))
(segment (start 169.164 108.204) (end 141.478 108.204) (width 0.25) (layer B.Cu) (net 8))
(segment (start 141.478 108.204) (end 140.97 107.696) (width 0.25) (layer B.Cu) (net 8) (tstamp 55B459B6))
(segment (start 140.97 109.982) (end 140.97 107.696) (width 0.25) (layer B.Cu) (net 8))
(segment (start 134.62 116.332) (end 140.97 109.982) (width 0.25) (layer B.Cu) (net 8) (tstamp 55B44E11))
(segment (start 132.08 116.332) (end 134.62 116.332) (width 0.25) (layer B.Cu) (net 8))
(segment (start 141.122 107.848) (end 143.144 107.848) (width 0.25) (layer F.Cu) (net 8) (tstamp 55B4505F))
(segment (start 140.97 107.696) (end 141.122 107.848) (width 0.25) (layer F.Cu) (net 8) (tstamp 55B4505E))
(via (at 140.97 107.696) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 8))
(segment (start 145.644 110.348) (end 145.644 111.277) (width 0.25) (layer F.Cu) (net 9))
(segment (start 131.064 117.602) (end 129.794 118.872) (width 0.25) (layer B.Cu) (net 9) (tstamp 55B44E87))
(segment (start 135.255 117.602) (end 131.064 117.602) (width 0.25) (layer B.Cu) (net 9) (tstamp 55B5280B))
(via (at 135.255 117.602) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 9))
(segment (start 139.319 117.602) (end 135.255 117.602) (width 0.25) (layer F.Cu) (net 9) (tstamp 55B52800))
(segment (start 145.644 111.277) (end 139.319 117.602) (width 0.25) (layer F.Cu) (net 9) (tstamp 55B527F4))
(segment (start 129.54 118.872) (end 129.794 118.872) (width 0.25) (layer B.Cu) (net 9))
(segment (start 114.3 101.6) (end 117.221 101.6) (width 0.25) (layer B.Cu) (net 10))
(segment (start 122.174 101.6) (end 122.682 101.6) (width 0.25) (layer B.Cu) (net 10) (tstamp 55B573BA))
(segment (start 118.872 101.6) (end 122.174 101.6) (width 0.25) (layer B.Cu) (net 10) (tstamp 55B573B7))
(segment (start 118.872 100.5205) (end 118.872 101.6) (width 0.25) (layer B.Cu) (net 10) (tstamp 55B573B6))
(segment (start 117.983 100.5205) (end 118.872 100.5205) (width 0.25) (layer B.Cu) (net 10) (tstamp 55B573B4))
(segment (start 117.983 102.235) (end 117.983 100.5205) (width 0.25) (layer B.Cu) (net 10) (tstamp 55B573B3))
(segment (start 117.221 102.235) (end 117.983 102.235) (width 0.25) (layer B.Cu) (net 10) (tstamp 55B573AE))
(segment (start 117.221 101.6) (end 117.221 102.235) (width 0.25) (layer B.Cu) (net 10) (tstamp 55B573AB))
(segment (start 122.682 101.6) (end 123.317 100.965) (width 0.25) (layer B.Cu) (net 10) (tstamp 55B573BE))
(segment (start 113.03 102.87) (end 122.047 102.87) (width 0.25) (layer B.Cu) (net 12))
(segment (start 112.30102 102.14102) (end 113.03 102.87) (width 0.25) (layer B.Cu) (net 12) (tstamp 55B412C5) (status 10))
(segment (start 122.047 102.87) (end 123.317 104.14) (width 0.25) (layer B.Cu) (net 12) (tstamp 55B51CB2))
(segment (start 112.30102 101.6) (end 112.30102 102.14102) (width 0.25) (layer B.Cu) (net 12) (status 30))
(segment (start 133.477 104.14) (end 134.493 103.124) (width 0.25) (layer B.Cu) (net 13))
(via (at 139.319 103.124) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 13))
(segment (start 139.319 103.124) (end 139.395 103.048) (width 0.25) (layer F.Cu) (net 13) (tstamp 55B413F4))
(segment (start 139.395 103.048) (end 143.144 103.048) (width 0.25) (layer F.Cu) (net 13) (tstamp 55B413F5))
(segment (start 134.493 103.124) (end 139.319 103.124) (width 0.25) (layer B.Cu) (net 13) (tstamp 55B57419))
(segment (start 133.477 100.965) (end 134.62 102.108) (width 0.25) (layer B.Cu) (net 14))
(via (at 139.319 102.108) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 14))
(segment (start 139.319 102.108) (end 139.459 102.248) (width 0.25) (layer F.Cu) (net 14) (tstamp 55B413FB))
(segment (start 139.459 102.248) (end 143.144 102.248) (width 0.25) (layer F.Cu) (net 14) (tstamp 55B413FC))
(segment (start 134.62 102.108) (end 139.319 102.108) (width 0.25) (layer B.Cu) (net 14) (tstamp 55B57420))
(segment (start 142.875 94.234) (end 141.351 94.234) (width 0.25) (layer F.Cu) (net 15))
(segment (start 141.034 100.648) (end 140.335 99.949) (width 0.25) (layer F.Cu) (net 15) (tstamp 55B453B7))
(segment (start 140.335 99.949) (end 140.335 95.25) (width 0.25) (layer F.Cu) (net 15) (tstamp 55B453BC))
(via (at 142.875 94.234) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 15))
(segment (start 142.875 94.234) (end 149.225 94.234) (width 0.25) (layer B.Cu) (net 15) (tstamp 55B453D2))
(segment (start 149.225 94.234) (end 183.134 94.234) (width 0.25) (layer B.Cu) (net 15) (tstamp 55B453D3))
(segment (start 184.404 92.964) (end 183.134 94.234) (width 0.25) (layer B.Cu) (net 15) (tstamp 55B453DC))
(segment (start 141.034 100.648) (end 143.144 100.648) (width 0.25) (layer F.Cu) (net 15))
(segment (start 141.351 94.234) (end 140.335 95.25) (width 0.25) (layer F.Cu) (net 15) (tstamp 55B45416))
(segment (start 169.164 113.284) (end 147.955 113.284) (width 0.25) (layer B.Cu) (net 16))
(segment (start 135.941 106.248) (end 143.144 106.248) (width 0.25) (layer F.Cu) (net 16) (tstamp 55B45A45))
(segment (start 135.255 106.934) (end 135.941 106.248) (width 0.25) (layer F.Cu) (net 16) (tstamp 55B45A40))
(segment (start 135.255 111.125) (end 135.255 106.934) (width 0.25) (layer F.Cu) (net 16) (tstamp 55B45A3C))
(segment (start 136.271 112.141) (end 135.255 111.125) (width 0.25) (layer F.Cu) (net 16) (tstamp 55B45A37))
(segment (start 140.081 112.141) (end 136.271 112.141) (width 0.25) (layer F.Cu) (net 16) (tstamp 55B45A36))
(via (at 140.081 112.141) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 16))
(segment (start 146.812 112.141) (end 140.081 112.141) (width 0.25) (layer B.Cu) (net 16) (tstamp 55B45A19))
(segment (start 147.955 113.284) (end 146.812 112.141) (width 0.25) (layer B.Cu) (net 16) (tstamp 55B45A0B))
(segment (start 144.844 110.348) (end 144.844 107.378) (width 0.25) (layer F.Cu) (net 17))
(segment (start 158.75 104.14) (end 160.655 102.235) (width 0.25) (layer B.Cu) (net 17) (tstamp 55B458E9))
(via (at 160.655 102.235) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 17))
(segment (start 160.655 102.235) (end 167.386 95.504) (width 0.25) (layer F.Cu) (net 17) (tstamp 55B458F5))
(segment (start 167.386 95.504) (end 169.164 95.504) (width 0.25) (layer F.Cu) (net 17) (tstamp 55B458F6))
(segment (start 148.082 104.14) (end 158.496 104.14) (width 0.25) (layer B.Cu) (net 17) (tstamp 55B452C4))
(via (at 148.082 104.14) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 17))
(segment (start 158.496 104.14) (end 158.75 104.14) (width 0.25) (layer B.Cu) (net 17))
(segment (start 144.844 107.378) (end 148.082 104.14) (width 0.25) (layer F.Cu) (net 17) (tstamp 55B56E72))
(segment (start 149.987 116.205) (end 149.987 116.713) (width 0.5) (layer B.Cu) (net 19))
(segment (start 149.987 116.713) (end 155.956 121.666) (width 0.5) (layer B.Cu) (net 19) (tstamp 55B596CE) (status 20))
(segment (start 148.844 110.348) (end 148.844 115.062) (width 0.5) (layer F.Cu) (net 19))
(segment (start 149.987 116.205) (end 150.114 116.332) (width 0.5) (layer B.Cu) (net 19) (tstamp 55B520AB))
(via (at 149.987 116.205) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 19))
(segment (start 148.844 115.062) (end 149.987 116.205) (width 0.5) (layer F.Cu) (net 19) (tstamp 55B52095))
(via (at 161.417 115.697) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 20))
(segment (start 161.417 115.697) (end 161.544 115.824) (width 0.25) (layer B.Cu) (net 20) (tstamp 55B45AA3))
(segment (start 161.544 115.824) (end 169.164 115.824) (width 0.25) (layer B.Cu) (net 20) (tstamp 55B45AA4))
(segment (start 149.644 110.348) (end 149.644 114.211) (width 0.25) (layer F.Cu) (net 20))
(segment (start 151.13 115.697) (end 161.417 115.697) (width 0.25) (layer F.Cu) (net 20) (tstamp 55B45A9D))
(segment (start 149.644 114.211) (end 151.13 115.697) (width 0.25) (layer F.Cu) (net 20) (tstamp 55B45A93))
(segment (start 160.274 114.808) (end 165.1 114.808) (width 0.25) (layer B.Cu) (net 21) (tstamp 55B45ABF))
(via (at 165.1 114.808) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 21))
(via (at 160.274 114.808) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 21))
(segment (start 150.444 110.348) (end 150.444 113.614) (width 0.25) (layer F.Cu) (net 21))
(segment (start 165.1 114.808) (end 168.656 118.364) (width 0.25) (layer F.Cu) (net 21) (tstamp 55B45ACA))
(segment (start 151.638 114.808) (end 160.274 114.808) (width 0.25) (layer F.Cu) (net 21) (tstamp 55B45AB7))
(segment (start 150.444 113.614) (end 151.638 114.808) (width 0.25) (layer F.Cu) (net 21) (tstamp 55B45AB0))
(segment (start 168.656 118.364) (end 169.164 118.364) (width 0.25) (layer F.Cu) (net 21) (tstamp 55B45ACB))
(segment (start 151.244 110.348) (end 151.244 113.017) (width 0.25) (layer F.Cu) (net 22))
(segment (start 164.846 120.904) (end 169.164 120.904) (width 0.25) (layer F.Cu) (net 22) (tstamp 55B45B5C))
(segment (start 163.322 119.38) (end 164.846 120.904) (width 0.25) (layer F.Cu) (net 22) (tstamp 55B45B56))
(segment (start 163.322 114.427) (end 163.322 119.38) (width 0.25) (layer F.Cu) (net 22) (tstamp 55B45B53))
(segment (start 162.814 113.919) (end 163.322 114.427) (width 0.25) (layer F.Cu) (net 22) (tstamp 55B45B50))
(segment (start 152.146 113.919) (end 162.814 113.919) (width 0.25) (layer F.Cu) (net 22) (tstamp 55B45B4A))
(segment (start 151.244 113.017) (end 152.146 113.919) (width 0.25) (layer F.Cu) (net 22) (tstamp 55B45B46))
(segment (start 152.044 110.348) (end 152.044 112.42) (width 0.25) (layer F.Cu) (net 23))
(segment (start 183.261 123.444) (end 184.404 123.444) (width 0.25) (layer B.Cu) (net 23) (tstamp 55B45BB0))
(segment (start 179.959 120.142) (end 183.261 123.444) (width 0.25) (layer B.Cu) (net 23) (tstamp 55B45BAD))
(segment (start 179.959 120.015) (end 179.959 120.142) (width 0.25) (layer B.Cu) (net 23) (tstamp 55B45BAA))
(segment (start 171.958 112.014) (end 179.959 120.015) (width 0.25) (layer B.Cu) (net 23) (tstamp 55B45BA6))
(segment (start 162.687 112.014) (end 171.958 112.014) (width 0.25) (layer B.Cu) (net 23) (tstamp 55B45BA1))
(segment (start 162.306 112.395) (end 162.687 112.014) (width 0.25) (layer B.Cu) (net 23) (tstamp 55B45BA0))
(via (at 162.306 112.395) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 23))
(segment (start 152.069 112.395) (end 162.306 112.395) (width 0.25) (layer F.Cu) (net 23) (tstamp 55B45B8A))
(segment (start 152.044 112.42) (end 152.069 112.395) (width 0.25) (layer F.Cu) (net 23) (tstamp 55B45B7B))
(segment (start 152.844 110.348) (end 160.132 110.348) (width 0.25) (layer F.Cu) (net 24))
(segment (start 182.499 118.364) (end 184.404 118.364) (width 0.25) (layer B.Cu) (net 24) (tstamp 55B45BD7))
(segment (start 173.609 109.474) (end 182.499 118.364) (width 0.25) (layer B.Cu) (net 24) (tstamp 55B45BCC))
(segment (start 161.036 109.474) (end 173.609 109.474) (width 0.25) (layer B.Cu) (net 24) (tstamp 55B45BC9))
(segment (start 160.147 110.363) (end 161.036 109.474) (width 0.25) (layer B.Cu) (net 24) (tstamp 55B45BC8))
(via (at 160.147 110.363) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 24))
(segment (start 160.132 110.348) (end 160.147 110.363) (width 0.25) (layer F.Cu) (net 24) (tstamp 55B45BBF))
(segment (start 164.084 117.602) (end 166.116 119.634) (width 0.25) (layer F.Cu) (net 25) (tstamp 55B452F4))
(segment (start 164.084 112.649) (end 164.084 117.602) (width 0.25) (layer F.Cu) (net 25) (tstamp 55B452F2))
(segment (start 154.544 107.048) (end 158.483 107.048) (width 0.25) (layer F.Cu) (net 25))
(segment (start 179.07 120.904) (end 184.404 120.904) (width 0.25) (layer F.Cu) (net 25) (tstamp 55B452FA))
(segment (start 177.8 119.634) (end 179.07 120.904) (width 0.25) (layer F.Cu) (net 25) (tstamp 55B452F8))
(segment (start 166.116 119.634) (end 177.8 119.634) (width 0.25) (layer F.Cu) (net 25) (tstamp 55B452F6))
(segment (start 158.483 107.048) (end 164.084 112.649) (width 0.25) (layer F.Cu) (net 25) (tstamp 55B452F0))
(segment (start 154.544 106.248) (end 159.588 106.248) (width 0.25) (layer F.Cu) (net 26))
(segment (start 179.07 115.824) (end 184.404 115.824) (width 0.25) (layer F.Cu) (net 26) (tstamp 55B452EC))
(segment (start 177.8 114.554) (end 179.07 115.824) (width 0.25) (layer F.Cu) (net 26) (tstamp 55B452EA))
(segment (start 167.894 114.554) (end 177.8 114.554) (width 0.25) (layer F.Cu) (net 26) (tstamp 55B452E8))
(segment (start 159.588 106.248) (end 167.894 114.554) (width 0.25) (layer F.Cu) (net 26) (tstamp 55B452E6))
(segment (start 154.544 105.448) (end 160.693 105.448) (width 0.25) (layer F.Cu) (net 27))
(segment (start 179.07 113.284) (end 184.404 113.284) (width 0.25) (layer F.Cu) (net 27) (tstamp 55B452E2))
(segment (start 177.8 112.014) (end 179.07 113.284) (width 0.25) (layer F.Cu) (net 27) (tstamp 55B452E0))
(segment (start 167.259 112.014) (end 177.8 112.014) (width 0.25) (layer F.Cu) (net 27) (tstamp 55B452DE))