forked from westlicht/performer-hardware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
frontpanel.kicad_pcb
6895 lines (6782 loc) · 608 KB
/
frontpanel.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 4.0.7)
(general
(links 0)
(no_connects 0)
(area 69.511886 24.5476 255.368115 158.2524)
(thickness 1.6)
(drawings 4)
(tracks 0)
(zones 0)
(modules 105)
(nets 1)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user hide)
(33 F.Adhes user hide)
(34 B.Paste user hide)
(35 F.Paste user hide)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user hide)
(39 F.Mask user hide)
(40 Dwgs.User user hide)
(41 Cmts.User user hide)
(42 Eco1.User user hide)
(43 Eco2.User user hide)
(44 Edge.Cuts user)
(45 Margin user hide)
(46 B.CrtYd user hide)
(47 F.CrtYd user hide)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.254)
(user_trace_width 0.254)
(user_trace_width 0.4064)
(trace_clearance 0.1524)
(zone_clearance 0.19)
(zone_45_only no)
(trace_min 0.1524)
(segment_width 0.5)
(edge_width 0.15)
(via_size 0.6858)
(via_drill 0.3302)
(via_min_size 0.6858)
(via_min_drill 0.3302)
(uvia_size 0.762)
(uvia_drill 0.508)
(uvias_allowed no)
(uvia_min_size 0.3)
(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 2.7 2.7)
(pad_drill 2.7)
(pad_to_mask_clearance 0.1)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010a0_00000000)
(usegerberextensions true)
(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 gerbers/))
)
(net 0 "")
(net_class Default "This is the default net class."
(clearance 0.1524)
(trace_width 0.254)
(via_dia 0.6858)
(via_drill 0.3302)
(uvia_dia 0.762)
(uvia_drill 0.508)
)
(net_class Power ""
(clearance 0.1524)
(trace_width 0.4064)
(via_dia 0.6858)
(via_drill 0.3302)
(uvia_dia 0.762)
(uvia_drill 0.1)
)
(module Mounting_Holes:MountingHole_2.2mm_M2_Pad (layer F.Cu) (tedit 5BB92A0F) (tstamp 59EFABC8)
(at 111.125 139.7)
(descr "Mounting Hole 2.2mm, M2")
(tags "mounting hole 2.2mm m2")
(attr virtual)
(fp_text reference REF** (at 0 3.81) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value MountingHole_2.2mm_M2_Pad (at 0 3.2) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
(fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
(pad "" np_thru_hole circle (at 0 0) (size 2.7 2.7) (drill 2.7) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF3763F) (tstamp 59D954D7)
(at 88.9 101.6 90)
(path /59AEA378/59D94E78)
(fp_text reference PLAY (at 0 -6.35 180) (layer F.SilkS) hide
(effects (font (size 1.5 1.5) (thickness 0.25)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37642) (tstamp 59D954DF)
(at 101.6 101.6 90)
(path /59AEA378/59D9559E)
(fp_text reference BPM (at 0 -5.08 180) (layer F.SilkS) hide
(effects (font (size 1.5 1.5) (thickness 0.25)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37645) (tstamp 59D954E7)
(at 88.9 114.3 90)
(path /59AEA378/59D95841)
(fp_text reference PERF (at 0 -6.35 180) (layer F.SilkS) hide
(effects (font (size 1.5 1.5) (thickness 0.25)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37648) (tstamp 59D954EF)
(at 101.6 114.3 90)
(path /59AEA378/59D958A0)
(fp_text reference PATT (at 0 -5.715 180) (layer F.SilkS) hide
(effects (font (size 1.5 1.5) (thickness 0.25)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF3764B) (tstamp 59D954F7)
(at 88.9 127 90)
(path /59AEA378/59D9607B)
(fp_text reference << (at 0 -5.715 180) (layer F.SilkS) hide
(effects (font (size 1.5 1.5) (thickness 0.25)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF3764E) (tstamp 59D954FF)
(at 101.6 127 90)
(path /59AEA378/59D960E3)
(fp_text reference >> (at 0 -5.08 180) (layer F.SilkS) hide
(effects (font (size 1.5 1.5) (thickness 0.25)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37651) (tstamp 59D95507)
(at 88.9 139.7 90)
(path /59AEA378/59D9614B)
(fp_text reference SHIFT (at 0 -6.35 180) (layer F.SilkS) hide
(effects (font (size 1.5 1.5) (thickness 0.25)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37654) (tstamp 59D9550F)
(at 101.6 139.7 90)
(path /59AEA378/59D961B3)
(fp_text reference PAGE (at 0 -6.35 180) (layer F.SilkS) hide
(effects (font (size 1.5 1.5) (thickness 0.25)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37702) (tstamp 59D95517)
(at 120.65 114.3 90)
(path /59AEA378/59D94E72)
(fp_text reference SW317 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37737) (tstamp 59D9551F)
(at 133.35 114.3 90)
(path /59AEA378/59D95598)
(fp_text reference SW318 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF3773A) (tstamp 59D95527)
(at 146.05 114.3 90)
(path /59AEA378/59D9583B)
(fp_text reference SW319 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF3773C) (tstamp 59D9552F)
(at 158.75 114.3 90)
(path /59AEA378/59D9589A)
(fp_text reference SW320 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF3773F) (tstamp 59D95537)
(at 171.45 114.3 90)
(path /59AEA378/59D96075)
(fp_text reference SW321 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37743) (tstamp 59D9553F)
(at 184.15 114.3 90)
(path /59AEA378/59D960DD)
(fp_text reference SW322 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37745) (tstamp 59D95547)
(at 196.85 114.3 90)
(path /59AEA378/59D96145)
(fp_text reference SW323 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37748) (tstamp 59D9554F)
(at 209.55 114.3 90)
(path /59AEA378/59D961AD)
(fp_text reference SW324 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37811) (tstamp 59D95557)
(at 120.65 127 90)
(path /59AEA378/59D94DFD)
(fp_text reference SW325 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37814) (tstamp 59D9555F)
(at 133.35 127 90)
(path /59AEA378/59D95592)
(fp_text reference SW326 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37816) (tstamp 59D95567)
(at 146.05 127 90)
(path /59AEA378/59D95835)
(fp_text reference SW327 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF3781A) (tstamp 59D9556F)
(at 158.75 127 90)
(path /59AEA378/59D95894)
(fp_text reference SW328 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF3781C) (tstamp 59D95577)
(at 171.45 127 90)
(path /59AEA378/59D9606F)
(fp_text reference SW329 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF3781E) (tstamp 59D9557F)
(at 184.15 127 90)
(path /59AEA378/59D960D7)
(fp_text reference SW330 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37821) (tstamp 59D95587)
(at 196.85 127 90)
(path /59AEA378/59D9613F)
(fp_text reference SW331 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37824) (tstamp 59D9558F)
(at 209.55 127 90)
(path /59AEA378/59D961A7)
(fp_text reference SW332 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37827) (tstamp 59D95597)
(at 120.65 139.7 90)
(path /59AEA378/59D94D47)
(fp_text reference SW333 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF3782A) (tstamp 59D9559F)
(at 133.35 139.7 90)
(path /59AEA378/59D9558C)
(fp_text reference SW334 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF3782C) (tstamp 59D955A7)
(at 146.05 139.7 90)
(path /59AEA378/59D9582F)
(fp_text reference SW335 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF3782E) (tstamp 59D955AF)
(at 158.75 139.7 90)
(path /59AEA378/59D9588E)
(fp_text reference SW336 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37831) (tstamp 59D955B7)
(at 171.45 139.7 90)
(path /59AEA378/59D96069)
(fp_text reference SW337 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37835) (tstamp 59D955BF)
(at 184.15 139.7 90)
(path /59AEA378/59D960D1)
(fp_text reference SW338 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37837) (tstamp 59D955C7)
(at 196.85 139.7 90)
(path /59AEA378/59D96139)
(fp_text reference SW339 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:TL1105_1R_FP (layer F.Cu) (tedit 5AF37839) (tstamp 59D955CF)
(at 209.55 139.7 90)
(path /59AEA378/59D961A1)
(fp_text reference SW340 (at 0 4.064 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value TL1105T (at 0 -4.064 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0 90) (size 5.1 5.1) (drill 5.1) (layers *.Cu *.Mask))
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA9508)
(at 209.55 133.35)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB808)
(fp_text reference LED432 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA9501)
(at 196.85 133.35)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB7F0)
(fp_text reference LED431 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA94FA)
(at 184.15 133.35)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB7D8)
(fp_text reference LED430 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA94F3)
(at 171.45 133.35)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB7C0)
(fp_text reference LED429 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA94EC)
(at 158.75 133.35)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB618)
(fp_text reference LED428 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA94E5)
(at 146.05 133.35)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB600)
(fp_text reference LED427 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA94DE)
(at 133.35 133.35)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB4D8)
(fp_text reference LED426 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA94D7)
(at 120.65 133.35)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB41E)
(fp_text reference LED425 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA94D0)
(at 209.55 120.65)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB802)
(fp_text reference LED424 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA94C9)
(at 196.85 120.65)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB7EA)
(fp_text reference LED423 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA94C2)
(at 184.15 120.65)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB7D2)
(fp_text reference LED422 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA94BB)
(at 171.45 120.65)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB7BA)
(fp_text reference LED421 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA94B4)
(at 158.75 120.65)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB612)
(fp_text reference LED420 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA94AD)
(at 146.05 120.65)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB5FA)
(fp_text reference LED419 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA94A6)
(at 133.35 120.65)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB4D2)
(fp_text reference LED418 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA949F)
(at 120.65 120.65)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB418)
(fp_text reference LED417 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA9498)
(at 209.55 107.95)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB7FC)
(fp_text reference LED416 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA9491)
(at 196.85 107.95)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB7E4)
(fp_text reference LED415 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA948A)
(at 184.15 107.95)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB7CC)
(fp_text reference LED414 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA9483)
(at 171.45 107.95)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB7B4)
(fp_text reference LED413 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA947C)
(at 158.75 107.95)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB60C)
(fp_text reference LED412 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA9475)
(at 146.05 107.95)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB5F4)
(fp_text reference LED411 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA946E)
(at 133.35 107.95)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB4CC)
(fp_text reference LED410 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA9467)
(at 120.65 107.95)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB3C2)
(fp_text reference LED409 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA9460)
(at 101.6 133.35)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB7F6)
(fp_text reference LED408 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WP115VEGW (at 0 -3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 3.1 3.1) (drill 3.1) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D3.0mm-3.wrl
(at (xyz -0.081633 0 -0.2))
(scale (xyz 0.312 0.312 0.312))
(rotate (xyz 0 0 0))
)
)
(module w_frontpanel:WP115VEGW_FP (layer F.Cu) (tedit 59F37A70) (tstamp 59DA9459)
(at 88.9 133.35)
(descr WP115VEGW)
(tags LED)
(path /59DA350E/59DAB7DE)
(fp_text reference LED407 (at 0 2.75) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)