-
Notifications
You must be signed in to change notification settings - Fork 1
/
dram-tester.kicad_pcb
2497 lines (2480 loc) · 248 KB
/
dram-tester.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 20171130) (host pcbnew 5.1.6-c6e7f7d~87~ubuntu18.04.1)
(general
(thickness 1.6)
(drawings 4)
(tracks 1075)
(zones 0)
(modules 9)
(nets 23)
)
(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.25)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(via_size 0.8)
(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)
(edge_width 0.05)
(segment_width 0.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.12)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.05)
(aux_axis_origin 0 0)
(visible_elements FFFFF77F)
(pcbplotparams
(layerselection 0x010f0_ffffffff)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk true)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/"))
)
(net 0 "")
(net 1 "Net-(A1-Pad15)")
(net 2 "Net-(A1-Pad14)")
(net 3 "Net-(A1-Pad13)")
(net 4 "Net-(A1-Pad12)")
(net 5 "Net-(A1-Pad19)")
(net 6 "Net-(A1-Pad11)")
(net 7 "Net-(A1-Pad20)")
(net 8 "Net-(A1-Pad10)")
(net 9 "Net-(A1-Pad21)")
(net 10 "Net-(A1-Pad9)")
(net 11 "Net-(A1-Pad22)")
(net 12 "Net-(A1-Pad8)")
(net 13 "Net-(A1-Pad23)")
(net 14 "Net-(A1-Pad7)")
(net 15 "Net-(A1-Pad24)")
(net 16 "Net-(A1-Pad6)")
(net 17 "Net-(A1-Pad5)")
(net 18 "Net-(A1-Pad27)")
(net 19 "Net-(A1-Pad28)")
(net 20 "Net-(A1-Pad29)")
(net 21 "Net-(D1-Pad2)")
(net 22 "Net-(D2-Pad2)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.8)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net "Net-(A1-Pad10)")
(add_net "Net-(A1-Pad11)")
(add_net "Net-(A1-Pad12)")
(add_net "Net-(A1-Pad13)")
(add_net "Net-(A1-Pad14)")
(add_net "Net-(A1-Pad15)")
(add_net "Net-(A1-Pad19)")
(add_net "Net-(A1-Pad20)")
(add_net "Net-(A1-Pad21)")
(add_net "Net-(A1-Pad22)")
(add_net "Net-(A1-Pad23)")
(add_net "Net-(A1-Pad24)")
(add_net "Net-(A1-Pad27)")
(add_net "Net-(A1-Pad28)")
(add_net "Net-(A1-Pad29)")
(add_net "Net-(A1-Pad5)")
(add_net "Net-(A1-Pad6)")
(add_net "Net-(A1-Pad7)")
(add_net "Net-(A1-Pad8)")
(add_net "Net-(A1-Pad9)")
(add_net "Net-(D1-Pad2)")
(add_net "Net-(D2-Pad2)")
)
(module Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm (layer F.Cu) (tedit 59650532) (tstamp 5F3DAA00)
(at 154.94 82.55 270)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path /5F44E223)
(fp_text reference JP1 (at 0 -2.33 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value on=4164,off=41256 (at -3.55 0.44) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 1.27) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "Net-(A1-Pad13)"))
(pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "Net-(A1-Pad29)"))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module LEDs:LED_D5.0mm (layer F.Cu) (tedit 5995936A) (tstamp 5F3DA991)
(at 152.4 59.69)
(descr "LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf")
(tags "LED diameter 5.0mm 2 pins")
(path /5F43D47D)
(fp_text reference D2 (at 1.27 -3.96) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Good (at 1.27 3.96) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 1.25 0) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.2)))
)
(fp_arc (start 1.27 0) (end -1.29 1.54483) (angle -148.9) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end -1.29 -1.54483) (angle 148.9) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end -1.23 -1.469694) (angle 299.1) (layer F.Fab) (width 0.1))
(fp_line (start 4.5 -3.25) (end -1.95 -3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.5 3.25) (end 4.5 -3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 3.25) (end 4.5 3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 -3.25) (end -1.95 3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.29 -1.545) (end -1.29 1.545) (layer F.SilkS) (width 0.12))
(fp_line (start -1.23 -1.469694) (end -1.23 1.469694) (layer F.Fab) (width 0.1))
(fp_circle (center 1.27 0) (end 3.77 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 1.27 0) (end 3.77 0) (layer F.Fab) (width 0.1))
(pad 2 thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 22 "Net-(D2-Pad2)"))
(pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "Net-(A1-Pad15)"))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D5.0mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Buttons_Switches_THT:SW_PUSH_6mm (layer F.Cu) (tedit 5923F252) (tstamp 5F3DB1F0)
(at 171.45 39.37)
(descr https://www.omron.com/ecb/products/pdf/en-b3f.pdf)
(tags "tact sw push 6mm")
(path /5F4559B5)
(fp_text reference SW1 (at 3.25 -2) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Reset (at 3.75 6.7) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.25 2.25) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 3.25 2.25) (end 1.25 2.5) (layer F.Fab) (width 0.1))
(fp_line (start 6.75 3) (end 6.75 1.5) (layer F.SilkS) (width 0.12))
(fp_line (start 5.5 -1) (end 1 -1) (layer F.SilkS) (width 0.12))
(fp_line (start -0.25 1.5) (end -0.25 3) (layer F.SilkS) (width 0.12))
(fp_line (start 1 5.5) (end 5.5 5.5) (layer F.SilkS) (width 0.12))
(fp_line (start 8 -1.25) (end 8 5.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.75 6) (end -1.25 6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 5.75) (end -1.5 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 6) (end -1.25 6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 5.75) (end -1.5 6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8 -1.5) (end 8 -1.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.75 -1.5) (end 8 -1.5) (layer F.CrtYd) (width 0.05))
(fp_line (start 8 6) (end 8 5.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.75 6) (end 8 6) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75) (layer F.Fab) (width 0.1))
(fp_line (start 0.25 5.25) (end 0.25 -0.75) (layer F.Fab) (width 0.1))
(fp_line (start 6.25 5.25) (end 0.25 5.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.25 -0.75) (end 6.25 5.25) (layer F.Fab) (width 0.1))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75) (layer F.Fab) (width 0.1))
(pad 1 thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 20 "Net-(A1-Pad29)"))
(pad 2 thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 19 "Net-(A1-Pad28)"))
(pad 1 thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 20 "Net-(A1-Pad29)"))
(pad 2 thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers *.Cu *.Mask)
(net 19 "Net-(A1-Pad28)"))
(model ${KISYS3DMOD}/Buttons_Switches_THT.3dshapes/SW_PUSH_6mm.wrl
(offset (xyz 0.1269999980926514 0 0))
(scale (xyz 0.3937 0.3937 0.3937))
(rotate (xyz 0 0 0))
)
)
(module LEDs:LED_D5.0mm (layer F.Cu) (tedit 5995936A) (tstamp 5F3DA98E)
(at 152.4 69.85)
(descr "LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf")
(tags "LED diameter 5.0mm 2 pins")
(path /5F43C806)
(fp_text reference D1 (at 1.27 -3.96) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Bad (at 1.27 3.96) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 1.25 0) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.2)))
)
(fp_arc (start 1.27 0) (end -1.29 1.54483) (angle -148.9) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end -1.29 -1.54483) (angle 148.9) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end -1.23 -1.469694) (angle 299.1) (layer F.Fab) (width 0.1))
(fp_line (start 4.5 -3.25) (end -1.95 -3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.5 3.25) (end 4.5 -3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 3.25) (end 4.5 3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 -3.25) (end -1.95 3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.29 -1.545) (end -1.29 1.545) (layer F.SilkS) (width 0.12))
(fp_line (start -1.23 -1.469694) (end -1.23 1.469694) (layer F.Fab) (width 0.1))
(fp_circle (center 1.27 0) (end 3.77 0) (layer F.SilkS) (width 0.12))
(fp_circle (center 1.27 0) (end 3.77 0) (layer F.Fab) (width 0.1))
(pad 2 thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 21 "Net-(D1-Pad2)"))
(pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 2 "Net-(A1-Pad14)"))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D5.0mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5F3DA0AA)
(at 149.86 39.37)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5F4204DE)
(fp_text reference R3 (at 0 -2.54) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 470 (at 7.62 -2.54) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 22 "Net-(D2-Pad2)"))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "Net-(A1-Pad27)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5F3DA0A7)
(at 149.86 44.45)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5F41FD67)
(fp_text reference R2 (at 0 -2.54) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 470 (at 7.62 -2.54) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(D1-Pad2)"))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "Net-(A1-Pad27)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal (layer F.Cu) (tedit 5874F706) (tstamp 5F3DA0A4)
(at 149.86 49.53)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5F41F515)
(fp_text reference R1 (at 0 -2.54) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1K (at 7.62 -2.54) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 8.7 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 8.7 1.6) (end 8.7 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 8.7 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 7.02 1.31) (end 7.02 0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 1.31) (end 7.02 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 0.98) (end 0.6 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.02 -1.31) (end 7.02 -0.98) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 -1.31) (end 7.02 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.6 -0.98) (end 0.6 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 7.62 0) (end 6.96 0) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 0.66 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer F.Fab) (width 0.1))
(pad 2 thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(A1-Pad13)"))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "Net-(A1-Pad27)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module arduino:DIP_Socket-16_W4.3_W5.08_W7.62_W10.16_W10.9_3M_216-3340-00-0602J (layer F.Cu) (tedit 5C461E8A) (tstamp 5F3D5243)
(at 167.64 59.69)
(descr "3M 16-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf")
(tags "THT DIP DIL ZIF 7.62mm 300mil Socket")
(path /5F3DB3B1)
(fp_text reference J1 (at 3.81 -11.56) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value "Zif Socket" (at 3.81 25.74) (layer F.SilkS)
(effects (font (size 0.6 0.6) (thickness 0.09)))
)
(fp_text user Zif (at 3.81 7.09) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center -3.2 -6.35) (end -0.65 -6.35) (layer F.SilkS) (width 0.12))
(fp_circle (center -3.2 -6.35) (end -2.3 -6.35) (layer F.SilkS) (width 0.12))
(fp_line (start -5.5 -23.36) (end 0.1 -23.36) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.1 -23.36) (end 0.1 -11.06) (layer F.CrtYd) (width 0.05))
(fp_line (start 0.1 -11.06) (end 11.91 -11.06) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.91 -11.06) (end 11.91 25.24) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.91 25.24) (end -4.29 25.24) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.29 25.24) (end -4.29 -3.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.29 -3.4) (end -5.5 -3.4) (layer F.CrtYd) (width 0.05))
(fp_line (start -5.5 -3.4) (end -5.5 -23.36) (layer F.CrtYd) (width 0.05))
(fp_line (start -5 -21.46) (end -3.7 -22.86) (layer F.Fab) (width 0.1))
(fp_line (start -3.7 -22.86) (end -1.7 -22.86) (layer F.Fab) (width 0.1))
(fp_line (start -1.7 -22.86) (end -0.4 -21.46) (layer F.Fab) (width 0.1))
(fp_line (start -0.4 -21.46) (end -5 -21.46) (layer F.Fab) (width 0.1))
(fp_line (start -5 -21.46) (end -5 -17.86) (layer F.Fab) (width 0.1))
(fp_line (start -5 -17.86) (end -0.4 -17.86) (layer F.Fab) (width 0.1))
(fp_line (start -0.4 -17.86) (end -0.4 -21.46) (layer F.Fab) (width 0.1))
(fp_line (start -5 -17.86) (end -3.5 -15.86) (layer F.Fab) (width 0.1))
(fp_line (start -0.4 -17.86) (end -1.9 -15.86) (layer F.Fab) (width 0.1))
(fp_line (start -3.5 -9.75) (end -3.5 -15.86) (layer F.Fab) (width 0.1))
(fp_line (start -3.5 -15.86) (end -1.9 -15.86) (layer F.Fab) (width 0.1))
(fp_line (start -1.9 -15.86) (end -1.9 -10.56) (layer F.Fab) (width 0.1))
(fp_line (start 11.41 24.74) (end -3.79 24.74) (layer F.Fab) (width 0.1))
(fp_line (start -3.79 24.74) (end -3.79 -9.4) (layer F.Fab) (width 0.1))
(fp_line (start -3.79 -9.4) (end -2.85 -10.56) (layer F.Fab) (width 0.1))
(fp_line (start -2.85 -10.56) (end 11.41 -10.56) (layer F.Fab) (width 0.1))
(fp_line (start 11.41 -10.56) (end 11.41 24.74) (layer F.Fab) (width 0.1))
(fp_line (start -3.89 -3.9) (end -3.89 24.84) (layer F.SilkS) (width 0.12))
(fp_line (start -3.89 24.84) (end 11.51 24.84) (layer F.SilkS) (width 0.12))
(fp_line (start 11.51 24.84) (end 11.51 -10.66) (layer F.SilkS) (width 0.12))
(fp_line (start 11.51 -10.66) (end -3.89 -10.66) (layer F.SilkS) (width 0.12))
(fp_line (start -3.89 -10.66) (end -3.89 -8.8) (layer F.SilkS) (width 0.12))
(fp_line (start -1.65 -10.66) (end -1.65 -8.4) (layer F.SilkS) (width 0.12))
(fp_line (start -4.95 1.27) (end -4.95 -1.27) (layer F.SilkS) (width 0.12))
(pad 1 thru_hole rect (at 0 0) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 5 "Net-(A1-Pad19)"))
(pad 16 thru_hole oval (at 7.62 0) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 20 "Net-(A1-Pad29)"))
(pad 2 thru_hole oval (at 0 2.54) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 7 "Net-(A1-Pad20)"))
(pad 15 thru_hole oval (at 7.62 2.54) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(A1-Pad12)"))
(pad 3 thru_hole oval (at 0 5.08) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 9 "Net-(A1-Pad21)"))
(pad 14 thru_hole oval (at 7.62 5.08) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 6 "Net-(A1-Pad11)"))
(pad 4 thru_hole oval (at 0 7.62) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 11 "Net-(A1-Pad22)"))
(pad 13 thru_hole oval (at 7.62 7.62) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 8 "Net-(A1-Pad10)"))
(pad 5 thru_hole oval (at 0 10.16) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 13 "Net-(A1-Pad23)"))
(pad 12 thru_hole oval (at 7.62 10.16) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 10 "Net-(A1-Pad9)"))
(pad 6 thru_hole oval (at 0 12.7) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 15 "Net-(A1-Pad24)"))
(pad 11 thru_hole oval (at 7.62 12.7) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 12 "Net-(A1-Pad8)"))
(pad 7 thru_hole oval (at 0 15.24) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 17 "Net-(A1-Pad5)"))
(pad 10 thru_hole oval (at 7.62 15.24) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 14 "Net-(A1-Pad7)"))
(pad 8 thru_hole oval (at 0 17.78) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 18 "Net-(A1-Pad27)"))
(pad 9 thru_hole oval (at 7.62 17.78) (size 2 1.44) (drill 1) (layers *.Cu *.Mask)
(net 16 "Net-(A1-Pad6)"))
(model ${KISYS3DMOD}/Socket.3dshapes/DIP_Socket-16_W4.3_W5.08_W7.62_W10.16_W10.9_3M_216-3340-00-0602J.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module arduino:arduino_nano (layer F.Cu) (tedit 5998B34A) (tstamp 5F3D3C2A)
(at 137.16 63.5 270)
(path /5F3D7234)
(fp_text reference A1 (at -22.86 0) (layer F.SilkS)
(effects (font (size 1.2 1.2) (thickness 0.15)))
)
(fp_text value "Arduino Nano" (at 0 0) (layer F.SilkS)
(effects (font (size 1.2 1.2) (thickness 0.15)))
)
(fp_line (start 21.59 3.81) (end 21.59 8.89) (layer F.SilkS) (width 0.15))
(fp_line (start 21.59 -8.89) (end 21.59 -3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 23.495 -3.81) (end 23.495 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 23.495 3.81) (end 15.24 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 15.24 3.81) (end 15.24 -3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 15.24 -3.81) (end 23.495 -3.81) (layer F.SilkS) (width 0.15))
(fp_circle (center -20.32 0) (end -19.685 0) (layer F.SilkS) (width 0.15))
(fp_circle (center -20.32 2.54) (end -19.685 2.54) (layer F.SilkS) (width 0.15))
(fp_circle (center -17.78 2.54) (end -17.145 2.54) (layer F.SilkS) (width 0.15))
(fp_circle (center -17.78 0) (end -17.145 0) (layer F.SilkS) (width 0.15))
(fp_circle (center -17.78 -2.54) (end -17.145 -2.54) (layer F.SilkS) (width 0.15))
(fp_circle (center -20.32 -2.54) (end -20.32 -1.905) (layer F.SilkS) (width 0.15))
(fp_circle (center 20.32 7.62) (end 20.955 7.62) (layer F.SilkS) (width 0.15))
(fp_circle (center 20.32 -7.62) (end 20.955 -7.62) (layer F.SilkS) (width 0.15))
(fp_circle (center -20.32 7.62) (end -19.685 7.62) (layer F.SilkS) (width 0.15))
(fp_circle (center -20.32 -7.62) (end -19.685 -7.62) (layer F.SilkS) (width 0.15))
(fp_line (start -19.05 -3.81) (end -19.05 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -19.05 -1.27) (end -21.59 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -16.51 -3.81) (end -21.59 -3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -21.59 3.81) (end -16.51 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -16.51 3.81) (end -16.51 -3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -21.59 -8.89) (end -21.59 8.89) (layer F.SilkS) (width 0.15))
(fp_line (start -21.59 8.89) (end 21.59 8.89) (layer F.SilkS) (width 0.15))
(fp_line (start 21.59 -8.89) (end -21.59 -8.89) (layer F.SilkS) (width 0.15))
(pad 30 thru_hole circle (at -17.78 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS))
(pad 1 thru_hole circle (at -17.78 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS))
(pad 29 thru_hole circle (at -15.24 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 20 "Net-(A1-Pad29)"))
(pad 2 thru_hole circle (at -15.24 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS))
(pad 28 thru_hole circle (at -12.7 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 19 "Net-(A1-Pad28)"))
(pad 3 thru_hole circle (at -12.7 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS))
(pad 27 thru_hole circle (at -10.16 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 18 "Net-(A1-Pad27)"))
(pad 4 thru_hole circle (at -10.16 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS))
(pad 26 thru_hole circle (at -7.62 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS))
(pad 5 thru_hole circle (at -7.62 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 17 "Net-(A1-Pad5)"))
(pad 25 thru_hole circle (at -5.08 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS))
(pad 6 thru_hole circle (at -5.08 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 16 "Net-(A1-Pad6)"))
(pad 24 thru_hole circle (at -2.54 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 15 "Net-(A1-Pad24)"))
(pad 7 thru_hole circle (at -2.54 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 14 "Net-(A1-Pad7)"))
(pad 23 thru_hole circle (at 0 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 13 "Net-(A1-Pad23)"))
(pad 8 thru_hole circle (at 0 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 12 "Net-(A1-Pad8)"))
(pad 22 thru_hole circle (at 2.54 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 11 "Net-(A1-Pad22)"))
(pad 9 thru_hole circle (at 2.54 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 10 "Net-(A1-Pad9)"))
(pad 21 thru_hole circle (at 5.08 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 9 "Net-(A1-Pad21)"))
(pad 10 thru_hole circle (at 5.08 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 8 "Net-(A1-Pad10)"))
(pad 20 thru_hole circle (at 7.62 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 7 "Net-(A1-Pad20)"))
(pad 11 thru_hole circle (at 7.62 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 6 "Net-(A1-Pad11)"))
(pad 19 thru_hole circle (at 10.16 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 5 "Net-(A1-Pad19)"))
(pad 12 thru_hole circle (at 10.16 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 4 "Net-(A1-Pad12)"))
(pad 18 thru_hole circle (at 12.7 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS))
(pad 13 thru_hole circle (at 12.7 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 3 "Net-(A1-Pad13)"))
(pad 17 thru_hole circle (at 15.24 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS))
(pad 14 thru_hole circle (at 15.24 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 2 "Net-(A1-Pad14)"))
(pad 16 thru_hole circle (at 17.78 -7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS))
(pad 15 thru_hole circle (at 17.78 7.62 270) (size 1.5748 1.5748) (drill 0.8) (layers *.Cu *.Mask F.SilkS)
(net 1 "Net-(A1-Pad15)"))
)
(gr_line (start 127 35.56) (end 180.34 35.56) (layer Edge.Cuts) (width 0.05) (tstamp 5F3ECCA2))
(gr_line (start 127 87.63) (end 127 35.56) (layer Edge.Cuts) (width 0.05))
(gr_line (start 180.34 87.63) (end 127 87.63) (layer Edge.Cuts) (width 0.05))
(gr_line (start 180.34 35.56) (end 180.34 87.63) (layer Edge.Cuts) (width 0.05))
(segment (start 149.3774 63.0174) (end 152.4 59.69) (width 0.25) (layer F.Cu) (net 1))
(segment (start 142.353349 67.320206) (end 142.7 67.31) (width 0.25) (layer F.Cu) (net 1))
(segment (start 138.875504 68.720151) (end 139.145807 68.502878) (width 0.25) (layer F.Cu) (net 1))
(segment (start 138.618455 68.952952) (end 138.875504 68.720151) (width 0.25) (layer F.Cu) (net 1))
(segment (start 142.007899 67.350794) (end 142.353349 67.320206) (width 0.25) (layer F.Cu) (net 1))
(segment (start 140.990684 67.563422) (end 141.325384 67.472612) (width 0.25) (layer F.Cu) (net 1))
(segment (start 137.935484 69.736208) (end 138.147628 69.461862) (width 0.25) (layer F.Cu) (net 1))
(segment (start 139.72238 68.117873) (end 140.026654 67.951475) (width 0.25) (layer F.Cu) (net 1))
(segment (start 138.375549 69.200475) (end 138.618455 68.952952) (width 0.25) (layer F.Cu) (net 1))
(segment (start 138.147628 69.461862) (end 138.375549 69.200475) (width 0.25) (layer F.Cu) (net 1))
(segment (start 139.145807 68.502878) (end 139.428425 68.301887) (width 0.25) (layer F.Cu) (net 1))
(segment (start 141.325384 67.472612) (end 141.664848 67.401654) (width 0.25) (layer F.Cu) (net 1))
(segment (start 141.664848 67.401654) (end 142.007899 67.350794) (width 0.25) (layer F.Cu) (net 1))
(segment (start 129.54 81.28) (end 137.935484 69.736208) (width 0.25) (layer F.Cu) (net 1))
(segment (start 139.428425 68.301887) (end 139.72238 68.117873) (width 0.25) (layer F.Cu) (net 1))
(segment (start 140.026654 67.951475) (end 140.340192 67.803268) (width 0.25) (layer F.Cu) (net 1))
(segment (start 140.340192 67.803268) (end 140.661906 67.673768) (width 0.25) (layer F.Cu) (net 1))
(segment (start 140.661906 67.673768) (end 140.990684 67.563422) (width 0.25) (layer F.Cu) (net 1))
(segment (start 146.662644 66.519641) (end 149.3774 63.0174) (width 0.25) (layer F.Cu) (net 1))
(segment (start 146.662644 66.519641) (end 146.588861 66.609423) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 146.588861 66.609423) (end 146.510088 66.694859) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 146.510088 66.694859) (end 146.426578 66.775672) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 146.426578 66.775672) (end 146.338603 66.8516) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 146.338603 66.8516) (end 146.246448 66.922396) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 146.246448 66.922396) (end 146.150411 66.987831) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 146.150411 66.987831) (end 146.050806 67.047692) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 146.050806 67.047692) (end 145.947954 67.101786) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 145.947954 67.101786) (end 145.842189 67.149936) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 145.842189 67.149936) (end 145.733854 67.191986) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 145.733854 67.191986) (end 145.623301 67.227801) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 145.623301 67.227801) (end 145.510888 67.257264) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 145.510888 67.257264) (end 145.396981 67.280279) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 145.396981 67.280279) (end 145.281948 67.296772) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 145.281948 67.296772) (end 145.166162 67.306689) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 145.166162 67.306689) (end 145.05 67.31) (width 0.25) (layer F.Cu) (net 1) (tstamp 3BF))
(segment (start 145.05 67.31) (end 142.7 67.31) (width 0.25) (layer F.Cu) (net 1))
(segment (start 152.1765 80.5864) (end 152.4 80.3629) (width 0.25) (layer F.Cu) (net 2))
(segment (start 152.4 80.3629) (end 152.4 69.85) (width 0.25) (layer F.Cu) (net 2))
(via (at 152.1765 80.5864) (size 0.8) (layers F.Cu B.Cu) (net 2))
(segment (start 135.62 83.82) (end 135.89 83.82) (width 0.25) (layer B.Cu) (net 2))
(segment (start 135.62 83.82) (end 135.50154 83.817091) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 135.50154 83.817091) (end 135.383365 83.808374) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 135.383365 83.808374) (end 135.265761 83.793869) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 135.265761 83.793869) (end 135.14901 83.773611) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 135.14901 83.773611) (end 135.033393 83.747649) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 135.033393 83.747649) (end 134.91919 83.716044) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 134.91919 83.716044) (end 134.806675 83.678874) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 134.806675 83.678874) (end 134.69612 83.636228) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 134.69612 83.636228) (end 134.58779 83.588209) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 134.58779 83.588209) (end 134.481947 83.534932) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 134.481947 83.534932) (end 134.378845 83.476526) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 134.378845 83.476526) (end 134.278734 83.413131) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 134.278734 83.413131) (end 134.181854 83.3449) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 134.181854 83.3449) (end 134.088438 83.271998) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 134.088438 83.271998) (end 133.998712 83.1946) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 133.998712 83.1946) (end 133.912893 83.112893) (width 0.25) (layer B.Cu) (net 2) (tstamp 3BE))
(segment (start 133.912893 83.112893) (end 129.54 78.74) (width 0.25) (layer B.Cu) (net 2))
(segment (start 152.784042 81.193942) (end 152.1765 80.5864) (width 0.25) (layer B.Cu) (net 2))
(segment (start 157.393942 81.193942) (end 152.784042 81.193942) (width 0.25) (layer B.Cu) (net 2))
(segment (start 158.75 82.55) (end 157.393942 81.193942) (width 0.25) (layer B.Cu) (net 2))
(segment (start 135.426292 83.82) (end 158.75 83.82) (width 0.25) (layer B.Cu) (net 2))
(segment (start 158.75 83.82) (end 158.75 82.55) (width 0.25) (layer B.Cu) (net 2))
(segment (start 134.475786 81.135786) (end 129.54 76.2) (width 0.25) (layer B.Cu) (net 3))
(segment (start 134.475786 81.135786) (end 134.647426 81.2992) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 134.647426 81.2992) (end 134.826877 81.453997) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 134.826877 81.453997) (end 135.013708 81.599801) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 135.013708 81.599801) (end 135.207469 81.736262) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 135.207469 81.736262) (end 135.407692 81.863052) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 135.407692 81.863052) (end 135.613894 81.979865) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 135.613894 81.979865) (end 135.825581 82.086418) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 135.825581 82.086418) (end 136.04224 82.182457) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 136.04224 82.182457) (end 136.263351 82.267749) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 136.263351 82.267749) (end 136.488381 82.342089) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 136.488381 82.342089) (end 136.716787 82.405297) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 136.716787 82.405297) (end 136.94802 82.457222) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 136.94802 82.457222) (end 137.181522 82.497739) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 137.181522 82.497739) (end 137.416731 82.526749) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 137.416731 82.526749) (end 137.65308 82.544183) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 137.65308 82.544183) (end 137.89 82.55) (width 0.25) (layer B.Cu) (net 3) (tstamp 3BD))
(segment (start 137.89 82.55) (end 152.4 82.55) (width 0.25) (layer B.Cu) (net 3))
(segment (start 157.073131 63.841264) (end 157.0049 63.938144) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.376044 63.200808) (end 157.338874 63.313323) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.136525 63.741153) (end 157.073131 63.841264) (width 0.25) (layer F.Cu) (net 3))
(segment (start 154.295398 66.688713) (end 154.218 66.778438) (width 0.25) (layer F.Cu) (net 3))
(segment (start 153.901789 67.27779) (end 153.85377 67.38612) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.194932 63.638051) (end 157.136525 63.741153) (width 0.25) (layer F.Cu) (net 3))
(segment (start 154.377106 66.602893) (end 154.295398 66.688713) (width 0.25) (layer F.Cu) (net 3))
(segment (start 153.955066 67.171947) (end 153.901789 67.27779) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.248209 63.532208) (end 157.194932 63.638051) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.296228 63.423879) (end 157.248209 63.532208) (width 0.25) (layer F.Cu) (net 3))
(segment (start 153.672907 68.19154) (end 153.67 68.31) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.338874 63.313323) (end 157.296228 63.423879) (width 0.25) (layer F.Cu) (net 3))
(segment (start 153.681624 68.073365) (end 153.672907 68.19154) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.407648 63.086605) (end 157.376044 63.200808) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.48 62.5) (end 157.477091 62.618459) (width 0.25) (layer F.Cu) (net 3))
(segment (start 154.218 66.778438) (end 154.145098 66.871854) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.468374 62.736634) (end 157.453869 62.854238) (width 0.25) (layer F.Cu) (net 3))
(segment (start 153.716387 67.83901) (end 153.696129 67.955761) (width 0.25) (layer F.Cu) (net 3))
(segment (start 154.145098 66.871854) (end 154.076867 66.968734) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.453869 62.854238) (end 157.433611 62.970989) (width 0.25) (layer F.Cu) (net 3))
(segment (start 153.696129 67.955761) (end 153.681624 68.073365) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.477091 62.618459) (end 157.468374 62.736634) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.48 49.53) (end 157.48 62.5) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.433611 62.970989) (end 157.407648 63.086605) (width 0.25) (layer F.Cu) (net 3))
(segment (start 154.013472 67.068846) (end 153.955066 67.171947) (width 0.25) (layer F.Cu) (net 3))
(segment (start 156.772893 64.207106) (end 154.377106 66.602893) (width 0.25) (layer F.Cu) (net 3))
(segment (start 153.85377 67.38612) (end 153.811124 67.496675) (width 0.25) (layer F.Cu) (net 3))
(segment (start 157.0049 63.938144) (end 156.931998 64.031559) (width 0.25) (layer F.Cu) (net 3))
(segment (start 153.811124 67.496675) (end 153.773954 67.60919) (width 0.25) (layer F.Cu) (net 3))
(segment (start 156.931998 64.031559) (end 156.8546 64.121285) (width 0.25) (layer F.Cu) (net 3))
(segment (start 153.773954 67.60919) (end 153.74235 67.723393) (width 0.25) (layer F.Cu) (net 3))
(segment (start 156.8546 64.121285) (end 156.772893 64.207106) (width 0.25) (layer F.Cu) (net 3))
(segment (start 154.076867 66.968734) (end 154.013472 67.068846) (width 0.25) (layer F.Cu) (net 3))
(segment (start 153.74235 67.723393) (end 153.716387 67.83901) (width 0.25) (layer F.Cu) (net 3))
(segment (start 153.67 79.165902) (end 153.67 68.31) (width 0.25) (layer F.Cu) (net 3))
(segment (start 153.67 79.165902) (end 153.668126 79.288377) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.668126 79.288377) (end 153.662507 79.410738) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.662507 79.410738) (end 153.653148 79.532869) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.653148 79.532869) (end 153.640058 79.654657) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.640058 79.654657) (end 153.62325 79.775988) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.62325 79.775988) (end 153.602737 79.896748) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.602737 79.896748) (end 153.578541 80.016824) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.578541 80.016824) (end 153.550684 80.136104) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.550684 80.136104) (end 153.519191 80.254476) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.519191 80.254476) (end 153.484092 80.371829) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.484092 80.371829) (end 153.445421 80.488054) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.445421 80.488054) (end 153.403212 80.603042) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.403212 80.603042) (end 153.357506 80.716684) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.357506 80.716684) (end 153.308346 80.828876) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.308346 80.828876) (end 153.255777 80.939512) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.255777 80.939512) (end 153.199849 81.048488) (width 0.25) (layer F.Cu) (net 3) (tstamp 3BD))
(segment (start 153.199849 81.048488) (end 152.4 82.55) (width 0.25) (layer F.Cu) (net 3))
(via (at 148.8749 58.42) (size 0.8) (layers F.Cu B.Cu) (net 4))
(segment (start 136.961286 66.238713) (end 129.54 73.66) (width 0.25) (layer F.Cu) (net 4))
(segment (start 136.961286 66.238713) (end 137.132925 66.075297) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 137.132925 66.075297) (end 137.312377 65.920501) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 137.312377 65.920501) (end 137.499208 65.774697) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 137.499208 65.774697) (end 137.692969 65.638236) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 137.692969 65.638236) (end 137.893192 65.511446) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 137.893192 65.511446) (end 138.099394 65.394633) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 138.099394 65.394633) (end 138.311081 65.28808) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 138.311081 65.28808) (end 138.52774 65.192041) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 138.52774 65.192041) (end 138.748851 65.106749) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 138.748851 65.106749) (end 138.973881 65.032409) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 138.973881 65.032409) (end 139.202287 64.969201) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 139.202287 64.969201) (end 139.43352 64.917276) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 139.43352 64.917276) (end 139.667022 64.876759) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 139.667022 64.876759) (end 139.902231 64.847749) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 139.902231 64.847749) (end 140.13858 64.830315) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 140.13858 64.830315) (end 140.3755 64.8245) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 146.309706 64.117393) (end 146.223885 64.1991) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 146.223885 64.1991) (end 146.13416 64.276498) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 146.13416 64.276498) (end 146.040744 64.3494) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 146.040744 64.3494) (end 145.943864 64.417631) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 145.943864 64.417631) (end 145.843753 64.481026) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 145.843753 64.481026) (end 145.740651 64.539432) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 145.740651 64.539432) (end 145.634808 64.592709) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 145.634808 64.592709) (end 145.526479 64.640728) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 145.526479 64.640728) (end 145.415923 64.683374) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 145.415923 64.683374) (end 145.303408 64.720544) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 145.303408 64.720544) (end 145.189205 64.752148) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 145.189205 64.752148) (end 145.073589 64.778111) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 145.073589 64.778111) (end 144.956838 64.798369) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 144.956838 64.798369) (end 144.839234 64.812874) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 144.839234 64.812874) (end 144.721059 64.821591) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 144.721059 64.821591) (end 144.6026 64.8245) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 144.6026 64.8245) (end 140.3755 64.8245) (width 0.25) (layer F.Cu) (net 4))
(segment (start 147.460686 62.966413) (end 146.309706 64.117393) (width 0.25) (layer F.Cu) (net 4))
(segment (start 147.460686 62.966413) (end 147.6241 62.794772) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 147.6241 62.794772) (end 147.778896 62.615321) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 147.778896 62.615321) (end 147.924701 62.42849) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 147.924701 62.42849) (end 148.061162 62.234729) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 148.061162 62.234729) (end 148.187952 62.034507) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 148.187952 62.034507) (end 148.304764 61.828304) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 148.304764 61.828304) (end 148.411318 61.616618) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 148.411318 61.616618) (end 148.507357 61.399958) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 148.507357 61.399958) (end 148.592649 61.178847) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 148.592649 61.178847) (end 148.666989 60.953818) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 148.666989 60.953818) (end 148.730197 60.725411) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 148.730197 60.725411) (end 148.782122 60.494179) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 148.782122 60.494179) (end 148.822639 60.260677) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 148.822639 60.260677) (end 148.851649 60.025468) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 148.851649 60.025468) (end 148.869083 59.789119) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 148.869083 59.789119) (end 148.8749 59.5522) (width 0.25) (layer F.Cu) (net 4) (tstamp 3BC))
(segment (start 148.8749 59.5522) (end 148.8749 58.42) (width 0.25) (layer F.Cu) (net 4))
(segment (start 148.8749 59.4288) (end 148.8749 58.42) (width 0.25) (layer B.Cu) (net 4))
(segment (start 148.88453 59.624834) (end 148.8749 59.4288) (width 0.25) (layer B.Cu) (net 4))
(segment (start 148.913329 59.81898) (end 148.88453 59.624834) (width 0.25) (layer B.Cu) (net 4))
(segment (start 148.961019 60.009369) (end 148.913329 59.81898) (width 0.25) (layer B.Cu) (net 4))
(segment (start 149.02714 60.194166) (end 148.961019 60.009369) (width 0.25) (layer B.Cu) (net 4))
(segment (start 150.8749 61.4288) (end 150.678865 61.419169) (width 0.25) (layer B.Cu) (net 4))
(segment (start 150.109533 61.276559) (end 149.932106 61.192642) (width 0.25) (layer B.Cu) (net 4))
(segment (start 149.932106 61.192642) (end 149.763759 61.091739) (width 0.25) (layer B.Cu) (net 4))
(segment (start 150.678865 61.419169) (end 150.484719 61.39037) (width 0.25) (layer B.Cu) (net 4))
(segment (start 150.484719 61.39037) (end 150.29433 61.34268) (width 0.25) (layer B.Cu) (net 4))
(segment (start 150.29433 61.34268) (end 150.109533 61.276559) (width 0.25) (layer B.Cu) (net 4))
(segment (start 149.21196 60.53994) (end 149.111057 60.371593) (width 0.25) (layer B.Cu) (net 4))
(segment (start 149.111057 60.371593) (end 149.02714 60.194166) (width 0.25) (layer B.Cu) (net 4))
(segment (start 149.763759 61.091739) (end 149.606113 60.97482) (width 0.25) (layer B.Cu) (net 4))
(segment (start 149.606113 60.97482) (end 149.460686 60.843013) (width 0.25) (layer B.Cu) (net 4))
(segment (start 149.460686 60.843013) (end 149.328879 60.697586) (width 0.25) (layer B.Cu) (net 4))
(segment (start 149.328879 60.697586) (end 149.21196 60.53994) (width 0.25) (layer B.Cu) (net 4))
(segment (start 172.381706 59.351706) (end 175.26 62.23) (width 0.25) (layer B.Cu) (net 4))
(segment (start 172.381706 59.351706) (end 172.295885 59.269998) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 172.295885 59.269998) (end 172.20616 59.1926) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 172.20616 59.1926) (end 172.112744 59.119698) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 172.112744 59.119698) (end 172.015864 59.051467) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 172.015864 59.051467) (end 171.915753 58.988072) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 171.915753 58.988072) (end 171.812651 58.929666) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 171.812651 58.929666) (end 171.706808 58.876389) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 171.706808 58.876389) (end 171.598479 58.82837) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 171.598479 58.82837) (end 171.487923 58.785724) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 171.487923 58.785724) (end 171.375408 58.748554) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 171.375408 58.748554) (end 171.261205 58.71695) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 171.261205 58.71695) (end 171.145589 58.690987) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 171.145589 58.690987) (end 171.028838 58.670729) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 171.028838 58.670729) (end 170.911234 58.656224) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 170.911234 58.656224) (end 170.793059 58.647507) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 170.793059 58.647507) (end 170.6746 58.6446) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 160.462893 59.351706) (end 160.548712 59.269998) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 160.548712 59.269998) (end 160.638438 59.1926) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 160.638438 59.1926) (end 160.731854 59.119698) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 160.731854 59.119698) (end 160.828734 59.051467) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 160.828734 59.051467) (end 160.928845 58.988072) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 160.928845 58.988072) (end 161.031947 58.929666) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 161.031947 58.929666) (end 161.13779 58.876389) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 161.13779 58.876389) (end 161.24612 58.82837) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 161.24612 58.82837) (end 161.356675 58.785724) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 161.356675 58.785724) (end 161.46919 58.748554) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 161.46919 58.748554) (end 161.583393 58.71695) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 161.583393 58.71695) (end 161.69901 58.690987) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 161.69901 58.690987) (end 161.815761 58.670729) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 161.815761 58.670729) (end 161.933365 58.656224) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 161.933365 58.656224) (end 162.05154 58.647507) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 162.05154 58.647507) (end 162.17 58.6446) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 162.17 58.6446) (end 170.6746 58.6446) (width 0.25) (layer B.Cu) (net 4))
(segment (start 157.3858 61.4288) (end 150.8749 61.4288) (width 0.25) (layer B.Cu) (net 4))
(segment (start 157.3858 61.4288) (end 157.504259 61.425891) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 157.504259 61.425891) (end 157.622434 61.417174) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 157.622434 61.417174) (end 157.740038 61.402669) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 157.740038 61.402669) (end 157.856789 61.382411) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 157.856789 61.382411) (end 157.972405 61.356448) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 157.972405 61.356448) (end 158.086608 61.324844) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 158.086608 61.324844) (end 158.199123 61.287674) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 158.199123 61.287674) (end 158.309679 61.245028) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 158.309679 61.245028) (end 158.418008 61.197009) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 158.418008 61.197009) (end 158.523851 61.143732) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 158.523851 61.143732) (end 158.626953 61.085325) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 158.626953 61.085325) (end 158.727064 61.021931) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 158.727064 61.021931) (end 158.823944 60.9537) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 158.823944 60.9537) (end 158.917359 60.880798) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 158.917359 60.880798) (end 159.007085 60.8034) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 159.007085 60.8034) (end 159.092906 60.721693) (width 0.25) (layer B.Cu) (net 4) (tstamp 3BC))
(segment (start 159.092906 60.721693) (end 160.462893 59.351706) (width 0.25) (layer B.Cu) (net 4))
(via (at 152.9278 62.4116) (size 0.8) (layers F.Cu B.Cu) (net 5))
(segment (start 149.425793 69.014206) (end 144.78 73.66) (width 0.25) (layer F.Cu) (net 5))
(segment (start 149.425793 69.014206) (end 149.510857 68.926381) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 149.510857 68.926381) (end 149.593077 68.835887) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 149.593077 68.835887) (end 149.672367 68.742816) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 149.672367 68.742816) (end 149.748647 68.647262) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 149.748647 68.647262) (end 149.821839 68.549322) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 149.821839 68.549322) (end 149.891868 68.449097) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 149.891868 68.449097) (end 149.958664 68.346689) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 149.958664 68.346689) (end 150.022158 68.242201) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 150.022158 68.242201) (end 150.082286 68.135741) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 150.082286 68.135741) (end 150.138986 68.027416) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 150.138986 68.027416) (end 150.1922 67.917337) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 150.1922 67.917337) (end 150.241875 67.805616) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 150.241875 67.805616) (end 150.28796 67.692367) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 150.28796 67.692367) (end 150.330407 67.577705) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 150.330407 67.577705) (end 150.369175 67.461746) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 150.369175 67.461746) (end 150.404223 67.344611) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 151.73624 63.974718) (end 152.9278 62.4116) (width 0.25) (layer F.Cu) (net 5))
(segment (start 151.73624 63.974718) (end 151.662519 64.073822) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 151.662519 64.073822) (end 151.591152 64.174634) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 151.591152 64.174634) (end 151.522178 64.277098) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 151.522178 64.277098) (end 151.455633 64.381157) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 151.455633 64.381157) (end 151.391556 64.486752) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 151.391556 64.486752) (end 151.329981 64.593827) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 151.329981 64.593827) (end 151.270943 64.70232) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 151.270943 64.70232) (end 151.214475 64.812173) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 151.214475 64.812173) (end 151.160607 64.923325) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 151.160607 64.923325) (end 151.10937 65.035713) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 151.10937 65.035713) (end 151.060792 65.149276) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 151.060792 65.149276) (end 151.014899 65.263951) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 151.014899 65.263951) (end 150.971718 65.379673) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 150.971718 65.379673) (end 150.931273 65.49638) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 150.931273 65.49638) (end 150.893585 65.614007) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 150.893585 65.614007) (end 150.858676 65.732488) (width 0.25) (layer F.Cu) (net 5) (tstamp 3C3))
(segment (start 150.858676 65.732488) (end 150.404223 67.344611) (width 0.25) (layer F.Cu) (net 5))
(segment (start 161.560177 62.24885) (end 152.9278 62.4116) (width 0.25) (layer B.Cu) (net 5))
(segment (start 161.560177 62.24885) (end 161.683039 62.244823) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 161.683039 62.244823) (end 161.805742 62.237384) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 161.805742 62.237384) (end 161.928191 62.226538) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 161.928191 62.226538) (end 162.050291 62.212292) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 162.050291 62.212292) (end 162.171948 62.194657) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 162.171948 62.194657) (end 162.293068 62.173648) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 162.293068 62.173648) (end 162.413556 62.14928) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 162.413556 62.14928) (end 162.533322 62.121572) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 162.533322 62.121572) (end 162.65227 62.090546) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 162.65227 62.090546) (end 162.77031 62.056226) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 162.77031 62.056226) (end 162.887351 62.018638) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 162.887351 62.018638) (end 163.003302 61.977811) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 163.003302 61.977811) (end 163.118073 61.933777) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 163.118073 61.933777) (end 163.231575 61.88657) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 163.231575 61.88657) (end 163.343722 61.836226) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 163.343722 61.836226) (end 163.454427 61.782786) (width 0.25) (layer B.Cu) (net 5) (tstamp 3C3))
(segment (start 163.454427 61.782786) (end 167.64 59.69) (width 0.25) (layer B.Cu) (net 5))
(via (at 146.9863 59.69) (size 0.8) (layers F.Cu B.Cu) (net 6))
(segment (start 142.97 59.69) (end 146.9863 59.69) (width 0.25) (layer F.Cu) (net 6))
(segment (start 142.97 59.69) (end 142.73308 59.695815) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 142.73308 59.695815) (end 142.496731 59.713249) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 142.496731 59.713249) (end 142.261522 59.74226) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 142.261522 59.74226) (end 142.02802 59.782776) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 142.02802 59.782776) (end 141.796787 59.834701) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 141.796787 59.834701) (end 141.568381 59.897909) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 141.568381 59.897909) (end 141.343351 59.972249) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 141.343351 59.972249) (end 141.12224 60.057541) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 141.12224 60.057541) (end 140.905581 60.15358) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 140.905581 60.15358) (end 140.693894 60.260134) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 140.693894 60.260134) (end 140.487692 60.376946) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 140.487692 60.376946) (end 140.287469 60.503736) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 140.287469 60.503736) (end 140.093708 60.640197) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 140.093708 60.640197) (end 139.906877 60.786001) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 139.906877 60.786001) (end 139.727425 60.940797) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 139.727425 60.940797) (end 139.555786 61.104213) (width 0.25) (layer F.Cu) (net 6) (tstamp 3BB))
(segment (start 139.555786 61.104213) (end 129.54 71.12) (width 0.25) (layer F.Cu) (net 6))
(segment (start 147.32 60.96) (end 146.9863 59.69) (width 0.25) (layer B.Cu) (net 6))
(segment (start 172.414363 63.989279) (end 175.26 64.77) (width 0.25) (layer B.Cu) (net 6))
(segment (start 172.414363 63.989279) (end 172.294269 63.957408) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 172.294269 63.957408) (end 172.173658 63.927552) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 172.173658 63.927552) (end 172.052565 63.899718) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 172.052565 63.899718) (end 171.931023 63.873915) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 171.931023 63.873915) (end 171.809067 63.850149) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 171.809067 63.850149) (end 171.686729 63.828428) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 171.686729 63.828428) (end 171.564046 63.808756) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 171.564046 63.808756) (end 171.44105 63.791141) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 171.44105 63.791141) (end 171.317777 63.775587) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 171.317777 63.775587) (end 171.19426 63.762097) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 171.19426 63.762097) (end 171.070536 63.750677) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 171.070536 63.750677) (end 170.946637 63.741328) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 170.946637 63.741328) (end 170.822599 63.734054) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 170.822599 63.734054) (end 170.698457 63.728858) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 170.698457 63.728858) (end 170.574246 63.725739) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 170.574246 63.725739) (end 170.45 63.7247) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 147.982521 62.784737) (end 147.32 60.96) (width 0.25) (layer B.Cu) (net 6))
(segment (start 147.982521 62.784737) (end 148.023607 62.8857) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 148.023607 62.8857) (end 148.072281 62.983232) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 148.072281 62.983232) (end 148.128257 63.076764) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 148.128257 63.076764) (end 148.19121 63.165751) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 148.19121 63.165751) (end 148.260772 63.249672) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 148.260772 63.249672) (end 148.336537 63.328039) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 148.336537 63.328039) (end 148.418063 63.400394) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 148.418063 63.400394) (end 148.504874 63.466315) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 148.504874 63.466315) (end 148.596463 63.525416) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 148.596463 63.525416) (end 148.692297 63.577354) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 148.692297 63.577354) (end 148.791816 63.621825) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 148.791816 63.621825) (end 148.894439 63.65857) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 148.894439 63.65857) (end 148.999568 63.687374) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 148.999568 63.687374) (end 149.106588 63.70807) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 149.106588 63.70807) (end 149.214876 63.720535) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 149.214876 63.720535) (end 149.3238 63.7247) (width 0.25) (layer B.Cu) (net 6) (tstamp 3BB))
(segment (start 149.3238 63.7247) (end 170.45 63.7247) (width 0.25) (layer B.Cu) (net 6))
(via (at 151.0191 62.9976) (size 0.8) (layers F.Cu B.Cu) (net 7))
(segment (start 150.407323 63.933078) (end 151.0191 62.9976) (width 0.25) (layer F.Cu) (net 7))
(segment (start 150.407323 63.933078) (end 150.340124 64.037657) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 150.340124 64.037657) (end 150.274618 64.143304) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 150.274618 64.143304) (end 150.21082 64.249991) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 150.21082 64.249991) (end 150.148746 64.357691) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 150.148746 64.357691) (end 150.088413 64.466376) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 150.088413 64.466376) (end 150.029837 64.576017) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 150.029837 64.576017) (end 149.973031 64.686586) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 149.973031 64.686586) (end 149.918012 64.798055) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 149.918012 64.798055) (end 149.864794 64.910395) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 149.864794 64.910395) (end 149.813389 65.023576) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 149.813389 65.023576) (end 149.763812 65.137569) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 149.763812 65.137569) (end 149.716075 65.252346) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 149.716075 65.252346) (end 149.670191 65.367875) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 149.670191 65.367875) (end 149.626171 65.484128) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 149.626171 65.484128) (end 149.584028 65.601074) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 149.584028 65.601074) (end 149.543772 65.718683) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 147.757949 69.1347) (end 144.78 71.12) (width 0.25) (layer F.Cu) (net 7))
(segment (start 147.757949 69.1347) (end 147.856731 69.065855) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 147.856731 69.065855) (end 147.952586 68.992989) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 147.952586 68.992989) (end 148.04535 68.916226) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.04535 68.916226) (end 148.134864 68.835698) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.134864 68.835698) (end 148.220976 68.75154) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.220976 68.75154) (end 148.303538 68.663898) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.303538 68.663898) (end 148.382409 68.572921) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.382409 68.572921) (end 148.457456 68.478763) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.457456 68.478763) (end 148.528549 68.381587) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.528549 68.381587) (end 148.595569 68.281556) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.595569 68.281556) (end 148.658399 68.178843) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.658399 68.178843) (end 148.716933 68.073623) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.716933 68.073623) (end 148.771072 67.966074) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.771072 67.966074) (end 148.820722 67.856382) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.820722 67.856382) (end 148.865799 67.744732) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.865799 67.744732) (end 148.906227 67.631316) (width 0.25) (layer F.Cu) (net 7) (tstamp 3BB))
(segment (start 148.906227 67.631316) (end 149.543772 65.718683) (width 0.25) (layer F.Cu) (net 7))
(segment (start 151.0191 62.9976) (end 151.1584 63.1369) (width 0.25) (layer B.Cu) (net 7))