summaryrefslogtreecommitdiff
path: root/kicad/dragonfly.kicad_pcb-bak
blob: 4575b077ae4f2a61e041f41ccd3bbb378226aa13 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
(kicad_pcb (version 20171130) (host pcbnew 5.99.0+really5.1.10+dfsg1-1+b1)

  (general
    (thickness 1.6)
    (drawings 216)
    (tracks 27)
    (zones 0)
    (modules 21)
    (nets 7)
  )

  (page USLetter)
  (title_block
    (title "2021 Ornament")
    (date 2021-10-24)
    (rev A)
    (company "Blaise Thompson")
  )

  (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 hide)
    (49 F.Fab user hide)
  )

  (setup
    (last_trace_width 0.35)
    (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)
    (aux_axis_origin 0 0)
    (visible_elements FFFBFF7F)
    (pcbplotparams
      (layerselection 0x010fc_ffffffff)
      (usegerberextensions false)
      (usegerberattributes true)
      (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 false)
      (plotvalue false)
      (plotinvisibletext false)
      (padsonsilk false)
      (subtractmaskfromsilk false)
      (outputformat 1)
      (mirror false)
      (drillshape 0)
      (scaleselection 1)
      (outputdirectory "../gerber/"))
  )

  (net 0 "")
  (net 1 GND)
  (net 2 "Net-(BT1-Pad1)")
  (net 3 ANODE)
  (net 4 "Net-(L1-Pad4)")
  (net 5 "Net-(L1-Pad1)")
  (net 6 "Net-(Q1-Pad1)")

  (net_class Default "This is the default net class."
    (clearance 0.2)
    (trace_width 0.35)
    (via_dia 0.8)
    (via_drill 0.4)
    (uvia_dia 0.3)
    (uvia_drill 0.1)
    (add_net ANODE)
    (add_net GND)
    (add_net "Net-(BT1-Pad1)")
    (add_net "Net-(L1-Pad1)")
    (add_net "Net-(L1-Pad4)")
    (add_net "Net-(Q1-Pad1)")
  )

  (module footprints:AA_PCB-Clip (layer B.Cu) (tedit 59F13352) (tstamp 6176DF5C)
    (at 127 76.2 270)
    (path /6175B4FF)
    (fp_text reference BT1 (at 17.272 0 270) (layer B.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value BK-92 (at 17.272 3.81 270) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start 30.48 -5.842) (end 30.48 5.842) (layer B.SilkS) (width 0.15))
    (fp_line (start 4.064 5.842) (end 4.064 -5.842) (layer B.SilkS) (width 0.15))
    (fp_line (start 4.064 5.842) (end 30.48 5.842) (layer B.SilkS) (width 0.15))
    (fp_line (start 30.48 -5.842) (end 4.064 -5.842) (layer B.SilkS) (width 0.15))
    (fp_line (start 2.54 -2.794) (end 4.064 -2.794) (layer B.SilkS) (width 0.15))
    (fp_line (start 2.54 2.794) (end 2.54 -2.794) (layer B.SilkS) (width 0.15))
    (fp_line (start 4.064 2.794) (end 2.54 2.794) (layer B.SilkS) (width 0.15))
    (fp_line (start 43.3832 -6.35) (end 43.3832 6.35) (layer B.Fab) (width 0.15))
    (fp_line (start -9.8552 -6.35) (end -9.8552 6.35) (layer B.Fab) (width 0.15))
    (fp_line (start -9.8552 6.35) (end 43.3832 6.35) (layer B.Fab) (width 0.15))
    (fp_line (start -9.8552 -6.35) (end 43.3832 -6.35) (layer B.Fab) (width 0.15))
    (fp_line (start 0 -4.8) (end 0 4.8) (layer B.Fab) (width 0.15))
    (fp_line (start -9.55 -4.8) (end 0 -4.8) (layer B.Fab) (width 0.15))
    (fp_line (start -9.55 4.8) (end -9.55 -4.8) (layer B.Fab) (width 0.15))
    (fp_line (start 0 4.8) (end -9.55 4.8) (layer B.Fab) (width 0.15))
    (fp_line (start 33.5 -4.8) (end 33.5 4.8) (layer B.Fab) (width 0.15))
    (fp_line (start 43.05 -4.8) (end 33.5 -4.8) (layer B.Fab) (width 0.15))
    (fp_line (start 43.05 4.8) (end 43.05 -4.8) (layer B.Fab) (width 0.15))
    (fp_line (start 33.5 4.8) (end 43.05 4.8) (layer B.Fab) (width 0.15))
    (fp_text user + (at 3.302 0 270) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text user - (at 28.448 0 270) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (pad 2 thru_hole circle (at 41.148 0 270) (size 2.794 2.794) (drill 1.778) (layers *.Cu *.Mask B.SilkS)
      (net 1 GND))
    (pad 2 thru_hole circle (at 33.528 0 270) (size 2.794 2.794) (drill 1.778) (layers *.Cu *.Mask B.SilkS)
      (net 1 GND))
    (pad 1 thru_hole circle (at 0 0 270) (size 2.794 2.794) (drill 1.778) (layers *.Cu *.Mask B.SilkS)
      (net 2 "Net-(BT1-Pad1)"))
    (pad 1 thru_hole circle (at -7.62 0 270) (size 2.794 2.794) (drill 1.778) (layers *.Cu *.Mask B.SilkS)
      (net 2 "Net-(BT1-Pad1)"))
  )

  (module LED_THT:LED_D5.0mm (layer F.Cu) (tedit 5995936A) (tstamp 6176DFA5)
    (at 125.73 139.065)
    (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 /6176057D)
    (fp_text reference D4 (at 1.27 -3.96) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value LED (at 1.27 3.96) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (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))
    (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))
    (pad 2 thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
      (net 3 ANODE))
    (pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
      (net 1 GND))
    (model ${KISYS3DMOD}/LED_THT.3dshapes/LED_D5.0mm.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Button_Switch_SMD:SW_DPDT_CK_JS202011JCQN (layer F.Cu) (tedit 5E695155) (tstamp 6176E059)
    (at 127 83.185 180)
    (descr "Sub-miniature slide switch, vertical, SMT J bend https://dznh3ojzb2azq.cloudfront.net/products/Slide/JS/documents/datasheet.pdf")
    (tags "switch DPDT SMT")
    (path /617A9B96)
    (attr smd)
    (fp_text reference SW1 (at 0 -3.05) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value JS202011JCQN (at 0 3.15) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 4.75 2.25) (end -4.75 2.25) (layer F.CrtYd) (width 0.05))
    (fp_line (start -4.75 -2.25) (end 4.75 -2.25) (layer F.CrtYd) (width 0.05))
    (fp_line (start -4.75 -2.25) (end -4.75 2.25) (layer F.CrtYd) (width 0.05))
    (fp_line (start 4.75 -2.25) (end 4.75 2.25) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.25 -0.75) (end -0.25 0.75) (layer F.Fab) (width 0.1))
    (fp_line (start -1.75 -0.75) (end -1.75 0.75) (layer F.Fab) (width 0.1))
    (fp_line (start 1.75 0.75) (end -1.75 0.75) (layer F.Fab) (width 0.1))
    (fp_line (start 1.75 -0.75) (end 1.75 0.75) (layer F.Fab) (width 0.1))
    (fp_line (start -1.75 -0.75) (end 1.75 -0.75) (layer F.Fab) (width 0.1))
    (fp_line (start 1.74 1.91) (end 0.76 1.91) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.76 1.91) (end -1.74 1.91) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.74 -1.91) (end 0.76 -1.91) (layer F.SilkS) (width 0.12))
    (fp_line (start 4.61 1.91) (end 3.26 1.91) (layer F.SilkS) (width 0.12))
    (fp_line (start 4.61 -1.91) (end 3.26 -1.91) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.76 -1.91) (end -1.74 -1.91) (layer F.SilkS) (width 0.12))
    (fp_line (start -4.61 1.91) (end -3.26 1.91) (layer F.SilkS) (width 0.12))
    (fp_line (start -4.61 -1.91) (end -4.61 1.91) (layer F.SilkS) (width 0.12))
    (fp_line (start -3.26 -1.91) (end -4.61 -1.91) (layer F.SilkS) (width 0.12))
    (fp_line (start 4.61 -1.91) (end 4.61 1.91) (layer F.SilkS) (width 0.12))
    (fp_line (start -4.5 1.8) (end -4.5 -1.8) (layer F.Fab) (width 0.1))
    (fp_line (start 4.5 1.8) (end -4.5 1.8) (layer F.Fab) (width 0.1))
    (fp_line (start 4.5 -1.8) (end 4.5 1.8) (layer F.Fab) (width 0.1))
    (fp_line (start -4.5 -1.8) (end 4.5 -1.8) (layer F.Fab) (width 0.1))
    (fp_text user %R (at 0 -3.05) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (pad 3 smd rect (at 2.5 -1.2 180) (size 1 1.6) (layers F.Cu F.Paste F.Mask)
      (net 5 "Net-(L1-Pad1)"))
    (pad 2 smd rect (at 0 -1.2 180) (size 1 1.6) (layers F.Cu F.Paste F.Mask)
      (net 2 "Net-(BT1-Pad1)"))
    (pad 1 smd rect (at -2.5 -1.2 180) (size 1 1.6) (layers F.Cu F.Paste F.Mask))
    (pad 6 smd rect (at 2.5 1.2 180) (size 1 1.6) (layers F.Cu F.Paste F.Mask)
      (net 5 "Net-(L1-Pad1)"))
    (pad 5 smd rect (at 0 1.2 180) (size 1 1.6) (layers F.Cu F.Paste F.Mask)
      (net 2 "Net-(BT1-Pad1)"))
    (pad 4 smd rect (at -2.5 1.2 180) (size 1 1.6) (layers F.Cu F.Paste F.Mask))
    (model ${KISYS3DMOD}/Button_Switch_SMD.3dshapes/SW_DPDT_CK_JS202011JCQN.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 6176E037)
    (at 127 63.5)
    (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
    (tags "resistor handsolder")
    (path /6175E276)
    (attr smd)
    (fp_text reference R1 (at 0 -1.82) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value R_US (at 0 1.82) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.6 0.8) (end -1.6 0.8) (layer F.Fab) (width 0.1))
    (fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer F.Fab) (width 0.1))
    (fp_text user %R (at 0 0) (layer F.Fab)
      (effects (font (size 0.8 0.8) (thickness 0.12)))
    )
    (pad 2 smd roundrect (at 1.55 0) (size 1.3 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.192308)
      (net 6 "Net-(Q1-Pad1)"))
    (pad 1 smd roundrect (at -1.55 0) (size 1.3 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.192308)
      (net 4 "Net-(L1-Pad4)"))
    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Package_TO_SOT_SMD:SOT-23 (layer F.Cu) (tedit 5A02FF57) (tstamp 6176E026)
    (at 133.35 69.85)
    (descr "SOT-23, Standard")
    (tags SOT-23)
    (path /6175DCB4)
    (attr smd)
    (fp_text reference Q1 (at 0 -2.5) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value BC817 (at 0 2.5) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 0.76 1.58) (end -0.7 1.58) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.76 -1.58) (end -1.4 -1.58) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.7 1.75) (end -1.7 -1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.7 1.75) (end -1.7 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.7 -1.75) (end 1.7 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.7 -1.75) (end 1.7 -1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 0.76 -1.58) (end 0.76 -0.65) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.76 1.58) (end 0.76 0.65) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.7 1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
    (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer F.Fab) (width 0.1))
    (fp_line (start -0.7 -0.95) (end -0.15 -1.52) (layer F.Fab) (width 0.1))
    (fp_line (start -0.15 -1.52) (end 0.7 -1.52) (layer F.Fab) (width 0.1))
    (fp_line (start -0.7 -0.95) (end -0.7 1.5) (layer F.Fab) (width 0.1))
    (fp_text user %R (at 0 0 90) (layer F.Fab)
      (effects (font (size 0.5 0.5) (thickness 0.075)))
    )
    (pad 3 smd rect (at 1 0) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
      (net 3 ANODE))
    (pad 2 smd rect (at -1 0.95) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
      (net 1 GND))
    (pad 1 smd rect (at -1 -0.95) (size 0.9 0.8) (layers F.Cu F.Paste F.Mask)
      (net 6 "Net-(Q1-Pad1)"))
    (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module footprints:SRF4532-510Y (layer F.Cu) (tedit 583C8E6D) (tstamp 6176E011)
    (at 120.65 69.85 270)
    (path /6175B9CB)
    (fp_text reference L1 (at 0 2.6 90) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value SRF4532-510Y (at 0 -2.7 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -2.25 1.6) (end -2.25 -1.6) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.25 1.6) (end -2.25 1.6) (layer F.SilkS) (width 0.15))
    (fp_line (start 2.25 -1.6) (end 2.25 1.6) (layer F.SilkS) (width 0.15))
    (fp_line (start -2.25 -1.6) (end 2.25 -1.6) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.2 1) (end 1.4 1) (layer F.SilkS) (width 0.15))
    (fp_line (start -1.2 1) (end -1.4 1) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.2 -1) (end 1.4 -1) (layer F.SilkS) (width 0.15))
    (fp_line (start -1.2 -1) (end -1.4 -1) (layer F.SilkS) (width 0.15))
    (fp_circle (center -1.2 1.3) (end -1.2 1.2) (layer F.SilkS) (width 0.15))
    (fp_circle (center -1.2 -1.3) (end -1.1 -1.3) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.4 -0.2) (end -1.4 -0.2) (layer F.SilkS) (width 0.15))
    (fp_line (start -1.4 0.2) (end 1.4 0.2) (layer F.SilkS) (width 0.15))
    (fp_arc (start -0.8 1) (end -0.8 0.6) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start 0 1) (end 0 0.6) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start 0 1) (end -0.4 1) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start -0.8 1) (end -1.2 1) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start 0.8 1) (end 0.4 1) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start 0.8 1) (end 0.8 0.6) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start -0.8 -1) (end -0.8 -0.6) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start -0.8 -1) (end -0.4 -1) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start 0 -1) (end 0 -0.6) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start 0 -1) (end 0.4 -1) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start 0.8 -1) (end 0.8 -0.6) (angle 90) (layer F.SilkS) (width 0.15))
    (fp_arc (start 0.8 -1) (end 1.2 -1) (angle 90) (layer F.SilkS) (width 0.15))
    (pad 4 smd rect (at -2.05 -1.125 270) (size 1.1 1.35) (layers F.Cu F.Paste F.Mask)
      (net 4 "Net-(L1-Pad4)"))
    (pad 3 smd rect (at 2.05 -1.125 270) (size 1.1 1.35) (layers F.Cu F.Paste F.Mask)
      (net 5 "Net-(L1-Pad1)"))
    (pad 2 smd rect (at 2.05 1.125 270) (size 1.1 1.35) (layers F.Cu F.Paste F.Mask)
      (net 3 ANODE))
    (pad 1 smd rect (at -2.05 1.125 270) (size 1.1 1.35) (layers F.Cu F.Paste F.Mask)
      (net 5 "Net-(L1-Pad1)"))
  )

  (module LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5F68FEF1) (tstamp 6176DFF1)
    (at 179.705 84.455 270)
    (descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "LED handsolder")
    (path /61761EAE)
    (attr smd)
    (fp_text reference D8 (at 0 -1.82 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value LED (at 0 1.82 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.46 1.135) (end 1.6 1.135) (layer F.SilkS) (width 0.12))
    (fp_line (start -2.46 -1.135) (end -2.46 1.135) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.6 -1.135) (end -2.46 -1.135) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer F.Fab) (width 0.1))
    (fp_text user %R (at 0 0 90) (layer F.Fab)
      (effects (font (size 0.8 0.8) (thickness 0.12)))
    )
    (pad 2 smd roundrect (at 1.4875 0 270) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439)
      (net 3 ANODE))
    (pad 1 smd roundrect (at -1.4875 0 270) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439)
      (net 1 GND))
    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5F68FEF1) (tstamp 6176DFDE)
    (at 74.295 84.455 90)
    (descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "LED handsolder")
    (path /61761A8D)
    (attr smd)
    (fp_text reference D7 (at 0 -1.82 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value LED (at 0 1.82 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.46 1.135) (end 1.6 1.135) (layer F.SilkS) (width 0.12))
    (fp_line (start -2.46 -1.135) (end -2.46 1.135) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.6 -1.135) (end -2.46 -1.135) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer F.Fab) (width 0.1))
    (fp_text user %R (at 0 0 90) (layer F.Fab)
      (effects (font (size 0.8 0.8) (thickness 0.12)))
    )
    (pad 2 smd roundrect (at 1.4875 0 90) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439)
      (net 3 ANODE))
    (pad 1 smd roundrect (at -1.4875 0 90) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439)
      (net 1 GND))
    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5F68FEF1) (tstamp 6176DFCB)
    (at 177.8 59.055 270)
    (descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "LED handsolder")
    (path /617616FA)
    (attr smd)
    (fp_text reference D6 (at 0 -1.82 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value LED (at 0 1.82 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.46 1.135) (end 1.6 1.135) (layer F.SilkS) (width 0.12))
    (fp_line (start -2.46 -1.135) (end -2.46 1.135) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.6 -1.135) (end -2.46 -1.135) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer F.Fab) (width 0.1))
    (fp_text user %R (at 0 0 90) (layer F.Fab)
      (effects (font (size 0.8 0.8) (thickness 0.12)))
    )
    (pad 2 smd roundrect (at 1.4875 0 270) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439)
      (net 3 ANODE))
    (pad 1 smd roundrect (at -1.4875 0 270) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439)
      (net 1 GND))
    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder (layer F.Cu) (tedit 5F68FEF1) (tstamp 6176DFB8)
    (at 76.2 59.055 90)
    (descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
    (tags "LED handsolder")
    (path /617608BB)
    (attr smd)
    (fp_text reference D5 (at 0 -1.82 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value LED (at 0 1.82 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start 2.45 1.12) (end -2.45 1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.46 1.135) (end 1.6 1.135) (layer F.SilkS) (width 0.12))
    (fp_line (start -2.46 -1.135) (end -2.46 1.135) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.6 -1.135) (end -2.46 -1.135) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer F.Fab) (width 0.1))
    (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer F.Fab) (width 0.1))
    (fp_text user %R (at 0 0 90) (layer F.Fab)
      (effects (font (size 0.8 0.8) (thickness 0.12)))
    )
    (pad 2 smd roundrect (at 1.4875 0 90) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439)
      (net 3 ANODE))
    (pad 1 smd roundrect (at -1.4875 0 90) (size 1.425 1.75) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.175439)
      (net 1 GND))
    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module LED_THT:LED_D5.0mm (layer F.Cu) (tedit 5995936A) (tstamp 6176DF92)
    (at 125.73 126.365)
    (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 /617601B8)
    (fp_text reference D3 (at 1.27 -3.96) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value LED (at 1.27 3.96) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (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))
    (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))
    (pad 2 thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
      (net 3 ANODE))
    (pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
      (net 1 GND))
    (model ${KISYS3DMOD}/LED_THT.3dshapes/LED_D5.0mm.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module LED_THT:LED_D5.0mm (layer F.Cu) (tedit 5995936A) (tstamp 6176DF80)
    (at 125.73 113.665)
    (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 /6175FEC5)
    (fp_text reference D2 (at 1.27 -3.96) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value LED (at 1.27 3.96) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (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))
    (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))
    (pad 2 thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
      (net 3 ANODE))
    (pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
      (net 1 GND))
    (model ${KISYS3DMOD}/LED_THT.3dshapes/LED_D5.0mm.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module LED_THT:LED_D5.0mm (layer F.Cu) (tedit 5995936A) (tstamp 6176DF6E)
    (at 125.73 100.965)
    (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 /6175FB65)
    (fp_text reference D1 (at 1.27 -3.96) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value LED (at 1.27 3.96) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (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))
    (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))
    (pad 2 thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
      (net 3 ANODE))
    (pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
      (net 1 GND))
    (model ${KISYS3DMOD}/LED_THT.3dshapes/LED_D5.0mm.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module MountingHole:MountingHole_2.2mm_M2 locked (layer F.Cu) (tedit 56D1B4CB) (tstamp 6176F019)
    (at 122.555 54.61)
    (descr "Mounting Hole 2.2mm, no annular, M2")
    (tags "mounting hole 2.2mm no annular m2")
    (attr virtual)
    (fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
    (fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
    (fp_text user %R (at 0.3 0) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (pad 1 np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask))
  )

  (module MountingHole:MountingHole_2.2mm_M2 locked (layer F.Cu) (tedit 56D1B4CB) (tstamp 6175CD5C)
    (at 131.572 54.61)
    (descr "Mounting Hole 2.2mm, no annular, M2")
    (tags "mounting hole 2.2mm no annular m2")
    (attr virtual)
    (fp_text reference REF** (at 0 -3.2) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value MountingHole_2.2mm_M2 (at 0 3.2) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 0 0) (end 2.45 0) (layer F.CrtYd) (width 0.05))
    (fp_circle (center 0 0) (end 2.2 0) (layer Cmts.User) (width 0.15))
    (fp_text user %R (at 0.3 0) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (pad 1 np_thru_hole circle (at 0 0) (size 2.2 2.2) (drill 2.2) (layers *.Cu *.Mask))
  )

  (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical locked (layer B.Cu) (tedit 59FED5CC) (tstamp 616E6B23)
    (at 114.3 85.09 135)
    (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x02 2.54mm single row")
    (fp_text reference REF** (at 0 2.33 315) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value PinHeader_1x02_P2.54mm_Vertical (at 0 -4.87 315) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
    (fp_line (start 1.27 1.27) (end 1.27 -3.81) (layer B.Fab) (width 0.1))
    (fp_line (start 1.27 -3.81) (end -1.27 -3.81) (layer B.Fab) (width 0.1))
    (fp_line (start -1.27 -3.81) (end -1.27 0.635) (layer B.Fab) (width 0.1))
    (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
    (fp_line (start -1.33 -3.87) (end 1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.27) (end -1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start 1.33 -1.27) (end 1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.8 1.8) (end -1.8 -4.35) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.8 -4.35) (end 1.8 -4.35) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 -4.35) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
    (fp_text user %R (at 0 -1.270001 225) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (pad 2 thru_hole oval (at 0 -2.54 135) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
    (pad 1 thru_hole rect (at 0 0 135) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
    (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical locked (layer B.Cu) (tedit 59FED5CC) (tstamp 616E6A73)
    (at 113.03 73.66 90)
    (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x02 2.54mm single row")
    (fp_text reference REF** (at 0 2.33 270) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value PinHeader_1x02_P2.54mm_Vertical (at 0 -4.87 270) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
    (fp_line (start 1.27 1.27) (end 1.27 -3.81) (layer B.Fab) (width 0.1))
    (fp_line (start 1.27 -3.81) (end -1.27 -3.81) (layer B.Fab) (width 0.1))
    (fp_line (start -1.27 -3.81) (end -1.27 0.635) (layer B.Fab) (width 0.1))
    (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
    (fp_line (start -1.33 -3.87) (end 1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.27) (end -1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start 1.33 -1.27) (end 1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.8 1.8) (end -1.8 -4.35) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.8 -4.35) (end 1.8 -4.35) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 -4.35) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
    (fp_text user %R (at 0 -1.27) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (pad 2 thru_hole oval (at 0 -2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
    (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
    (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical locked (layer B.Cu) (tedit 59FED5CC) (tstamp 616E6769)
    (at 116.84 63.5 65)
    (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x02 2.54mm single row")
    (fp_text reference REF** (at 0 2.33 245) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value PinHeader_1x02_P2.54mm_Vertical (at 0 -4.87 245) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
    (fp_line (start 1.27 1.27) (end 1.27 -3.81) (layer B.Fab) (width 0.1))
    (fp_line (start 1.27 -3.81) (end -1.27 -3.81) (layer B.Fab) (width 0.1))
    (fp_line (start -1.27 -3.81) (end -1.27 0.635) (layer B.Fab) (width 0.1))
    (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
    (fp_line (start -1.33 -3.87) (end 1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.27) (end -1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start 1.33 -1.27) (end 1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.8 1.8) (end -1.8 -4.35) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.8 -4.35) (end 1.8 -4.35) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 -4.35) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
    (fp_text user %R (at 0 -1.270001 335) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (pad 1 thru_hole rect (at 0 0 65) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
    (pad 2 thru_hole oval (at 0 -2.54 65) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
    (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical locked (layer B.Cu) (tedit 59FED5CC) (tstamp 616E6198)
    (at 139.7 85.09 225)
    (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x02 2.54mm single row")
    (fp_text reference REF** (at 0 2.33 225) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value PinHeader_1x02_P2.54mm_Vertical (at 0 -4.87 225) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
    (fp_line (start 1.27 1.27) (end 1.27 -3.81) (layer B.Fab) (width 0.1))
    (fp_line (start 1.27 -3.81) (end -1.27 -3.81) (layer B.Fab) (width 0.1))
    (fp_line (start -1.27 -3.81) (end -1.27 0.635) (layer B.Fab) (width 0.1))
    (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
    (fp_line (start -1.33 -3.87) (end 1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.27) (end -1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start 1.33 -1.27) (end 1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.8 1.8) (end -1.8 -4.35) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.8 -4.35) (end 1.8 -4.35) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 -4.35) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
    (fp_text user %R (at 0 -1.270001 315) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (pad 1 thru_hole rect (at 0 0 225) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
    (pad 2 thru_hole oval (at 0 -2.54 225) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
    (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical locked (layer B.Cu) (tedit 59FED5CC) (tstamp 616E6198)
    (at 140.97 73.66 270)
    (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x02 2.54mm single row")
    (fp_text reference REF** (at 0 2.33 270) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value PinHeader_1x02_P2.54mm_Vertical (at 0 -4.87 270) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
    (fp_line (start 1.27 1.27) (end 1.27 -3.81) (layer B.Fab) (width 0.1))
    (fp_line (start 1.27 -3.81) (end -1.27 -3.81) (layer B.Fab) (width 0.1))
    (fp_line (start -1.27 -3.81) (end -1.27 0.635) (layer B.Fab) (width 0.1))
    (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
    (fp_line (start -1.33 -3.87) (end 1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.27) (end -1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start 1.33 -1.27) (end 1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.8 1.8) (end -1.8 -4.35) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.8 -4.35) (end 1.8 -4.35) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 -4.35) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
    (fp_text user %R (at 0 -1.27) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
    (pad 2 thru_hole oval (at 0 -2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
    (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical locked (layer B.Cu) (tedit 59FED5CC) (tstamp 616E6196)
    (at 137.16 63.5 295)
    (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x02 2.54mm single row")
    (fp_text reference REF** (at 0 2.33 295) (layer B.SilkS)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_text value PinHeader_1x02_P2.54mm_Vertical (at 0 -4.87 295) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (fp_line (start -0.635 1.27) (end 1.27 1.27) (layer B.Fab) (width 0.1))
    (fp_line (start 1.27 1.27) (end 1.27 -3.81) (layer B.Fab) (width 0.1))
    (fp_line (start 1.27 -3.81) (end -1.27 -3.81) (layer B.Fab) (width 0.1))
    (fp_line (start -1.27 -3.81) (end -1.27 0.635) (layer B.Fab) (width 0.1))
    (fp_line (start -1.27 0.635) (end -0.635 1.27) (layer B.Fab) (width 0.1))
    (fp_line (start -1.33 -3.87) (end 1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.27) (end -1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start 1.33 -1.27) (end 1.33 -3.87) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.27) (end 1.33 -1.27) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 0) (end -1.33 1.33) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.33 1.33) (end 0 1.33) (layer B.SilkS) (width 0.12))
    (fp_line (start -1.8 1.8) (end -1.8 -4.35) (layer B.CrtYd) (width 0.05))
    (fp_line (start -1.8 -4.35) (end 1.8 -4.35) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 -4.35) (end 1.8 1.8) (layer B.CrtYd) (width 0.05))
    (fp_line (start 1.8 1.8) (end -1.8 1.8) (layer B.CrtYd) (width 0.05))
    (fp_text user %R (at 0 -1.270001 205) (layer B.Fab)
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
    )
    (pad 2 thru_hole oval (at 0 -2.54 295) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
    (pad 1 thru_hole rect (at 0 0 295) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
    (model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (gr_arc (start 127 59.69) (end 127.635 59.69) (angle -180) (layer F.SilkS) (width 0.12))
  (gr_arc (start 127 58.42) (end 128.27 58.42) (angle -180) (layer F.SilkS) (width 0.12))
  (gr_arc (start 127 57.15) (end 128.905 57.15) (angle -180) (layer F.SilkS) (width 0.12))
  (gr_poly (pts (xy 135.255 95.25) (xy 118.745 95.25) (xy 118.745 93.98) (xy 135.255 93.98)) (layer F.SilkS) (width 0.1))
  (gr_poly (pts (xy 135.89 107.95) (xy 118.11 107.95) (xy 118.11 106.68) (xy 135.89 106.68)) (layer F.SilkS) (width 0.1))
  (gr_poly (pts (xy 135.89 120.65) (xy 118.11 120.65) (xy 118.11 119.38) (xy 135.89 119.38)) (layer F.SilkS) (width 0.1))
  (gr_poly (pts (xy 135.255 133.35) (xy 118.745 133.35) (xy 118.745 132.08) (xy 135.255 132.08)) (layer F.SilkS) (width 0.1))
  (gr_poly (pts (xy 133.35 146.05) (xy 120.65 146.05) (xy 120.65 144.78) (xy 133.35 144.78)) (layer F.SilkS) (width 0.1))
  (gr_text "MADISON WISCONSIN" (at 158.75 82.55 -10) (layer F.SilkS) (tstamp 616E7239)
    (effects (font (size 2 2) (thickness 0.5) italic))
  )
  (gr_text "BLAISE THOMPSON" (at 158.75 63.5 20) (layer F.SilkS) (tstamp 616E7203)
    (effects (font (size 2 2) (thickness 0.5) italic))
  )
  (gr_text "DECEMBER 2021" (at 95.25 82.55 10) (layer F.SilkS) (tstamp 616E7203)
    (effects (font (size 2 2) (thickness 0.5) italic))
  )
  (gr_text "HAPPY HOLIDAYS" (at 95.25 63.5 -20) (layer F.SilkS)
    (effects (font (size 2 2) (thickness 0.5) italic))
  )
  (gr_line (start 128.83002 53.051507) (end 128.397345 54.015195) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 118.58723 88.250307) (end 116.853486 89.489991) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 169.419503 53.786396) (end 162.486813 54.25934) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 153.604604 72.586852) (end 156.484936 72.0514) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 134.64175 110.098584) (end 134.431399 102.769144) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 176.658373 54.52866) (end 172.860247 53.974174) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 74.341262 89.469225) (end 73.17913 88.80661) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 77.103253 90.191334) (end 75.653334 89.947775) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 157.998516 91.022232) (end 163.725002 91.101873) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 171.260788 76.449614) (end 166.269634 75.367367) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 181.051726 80.45767) (end 178.571297 79.06659) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 129.728468 52.082595) (end 129.211954 52.535118) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 176.127762 77.977186) (end 173.698475 77.12601) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 181.334786 59.62527) (end 181.404626 58.946922) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 133.882731 95.286534) (end 133.541976 91.841394) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 120.240463 86.349746) (end 118.58723 88.250307) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 119.580979 102.769154) (end 120.129648 95.286544) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 132.766504 57.58141) (end 133.59201 57.0007) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 130.807523 146.469304) (end 132.057914 141.670223) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 132.820151 51.879002) (end 132.098186 51.688816) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 133.541976 91.841394) (end 132.188016 83.648444) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 183.606711 83.306153) (end 182.592856 81.97532) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 124.990277 150.646804) (end 124.500863 149.841777) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 128.397345 54.015195) (end 128.28536 54.452285) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 137.158895 89.489981) (end 138.984316 90.208639) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 134.571293 61.80512) (end 131.702843 63.27187) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 75.441052 79.066614) (end 77.884587 77.97721) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 81.152082 53.974198) (end 84.592833 53.78642) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 77.353963 54.528684) (end 81.152082 53.974198) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 131.23777 51.629835) (end 130.397694 51.75911) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 75.653334 89.947775) (end 74.341262 89.469225) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 134.256828 56.190834) (end 134.56329 55.132685) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 116.170952 60.326011) (end 119.441043 61.805144) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 112.828312 59.004144) (end 116.170952 60.326011) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 178.571297 79.06659) (end 176.127762 77.977186) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 178.129449 55.006423) (end 176.658373 54.52866) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 133.771913 86.349736) (end 135.42515 88.250297) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 91.525523 54.259364) (end 103.398423 56.442874) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 84.592833 53.78642) (end 91.525523 54.259364) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 180.726893 61.207784) (end 181.334786 59.62527) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 128.28536 54.452285) (end 128.109514 53.934473) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 172.860247 53.974174) (end 169.419503 53.786396) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 183.299072 86.223639) (end 183.740533 85.334037) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 181.833327 88.010851) (end 182.659306 87.132887) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 129.211954 52.535118) (end 128.83002 53.051507) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 150.613913 56.44285) (end 145.979257 57.643844) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 145.979257 57.643844) (end 141.184003 59.00412) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 182.659306 87.132887) (end 183.299072 86.223639) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 70.10405 83.949445) (end 70.405636 83.306177) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 180.755633 56.78573) (end 180.304804 56.288578) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 80.313874 77.126034) (end 82.75156 76.449638) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 132.057914 141.670223) (end 133.040943 136.826704) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 180.304804 56.288578) (end 179.387167 55.644269) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 161.31305 70.992519) (end 165.854426 69.90681) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 134.437367 53.722248) (end 133.871502 52.60708) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 129.022225 150.646808) (end 129.511639 149.841783) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 147.426116 90.670074) (end 153.510406 90.862546) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 108.033073 57.643868) (end 112.828312 59.004144) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 103.398423 56.442874) (end 108.033073 57.643868) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 130.397694 51.75911) (end 129.728468 52.082595) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 97.684704 90.902649) (end 96.013854 91.022242) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 93.039223 74.222884) (end 97.364107 73.484086) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 125.182297 53.051531) (end 125.614971 54.015219) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 124.800364 52.535142) (end 125.182297 53.051531) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 85.945248 90.886235) (end 81.909773 90.530862) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 120.140813 52.607104) (end 120.60296 52.18894) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 119.574942 53.722272) (end 120.140813 52.607104) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 134.56329 55.132685) (end 134.437367 53.722248) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 130.273103 148.057225) (end 130.807523 146.469304) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 77.884587 77.97721) (end 80.313874 77.126034) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 133.871502 52.60708) (end 133.409359 52.188916) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 127.006253 151.940104) (end 126.233555 151.760365) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 173.698475 77.12601) (end 171.260788 76.449614) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 120.971563 136.826704) (end 119.863543 126.356804) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 70.040753 84.515034) (end 70.10405 83.949445) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 152.567356 72.90722) (end 152.424827 72.846486) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 73.769625 62.118881) (end 73.285443 61.207808) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 74.431093 62.883074) (end 73.769625 62.118881) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 123.204983 146.469284) (end 121.954603 141.670217) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 174.851546 66.44791) (end 175.999315 65.729986) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 125.726956 54.452309) (end 125.902802 53.934497) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 125.614971 54.015219) (end 125.726956 54.452309) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 132.098186 51.688816) (end 131.23777 51.629835) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 127.727778 53.58664) (end 127.00623 53.445685) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 124.500863 149.841777) (end 123.739402 148.057212) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 131.97798 57.952095) (end 132.766504 57.58141) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 70.713281 86.223656) (end 70.271819 85.334059) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 71.353048 87.132898) (end 70.713281 86.223656) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 121.192171 51.879026) (end 121.914139 51.68884) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 120.60296 52.18894) (end 121.192171 51.879026) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 166.269634 75.367367) (end 160.973126 74.22286) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 123.739402 148.057212) (end 123.204983 146.469284) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 122.774556 51.629859) (end 123.614628 51.759134) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 121.914139 51.68884) (end 122.774556 51.629859) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 72.677543 59.625294) (end 72.607701 58.946946) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 73.285443 61.207808) (end 72.677543 59.625294) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 82.75156 76.449638) (end 87.742715 75.367391) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 176.909116 90.19128) (end 178.359029 89.947746) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 131.24082 60.55672) (end 130.82126 58.37669) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 101.418519 72.773024) (end 100.40773 72.586876) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 101.587517 72.84651) (end 101.418519 72.773024) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 76.687398 64.733829) (end 74.431093 62.883074) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 78.013014 65.73001) (end 76.687398 64.733829) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 131.702843 63.27187) (end 131.575387 62.275281) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 183.740533 85.334037) (end 183.971596 84.51501) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 88.157903 69.906834) (end 83.69202 68.250702) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 92.699284 70.992543) (end 88.157903 69.906834) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 179.671096 89.46921) (end 180.833226 88.806602) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 122.034336 57.952119) (end 121.245813 57.581434) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 123.191046 58.376714) (end 122.034336 57.952119) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 119.370624 110.098574) (end 119.580979 102.769154) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 106.586254 90.670084) (end 100.501968 90.862556) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 181.404626 58.946922) (end 181.246125 58.121025) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 70.405636 83.306177) (end 71.419491 81.975344) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 120.420309 57.000724) (end 119.755488 56.190858) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 121.245813 57.581434) (end 120.420309 57.000724) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 120.470414 91.841404) (end 121.824354 83.648454) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 97.527403 72.051424) (end 92.699284 70.992543) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 100.40773 72.586876) (end 97.527403 72.051424) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 156.32767 90.902639) (end 157.998516 91.022232) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 119.449634 117.533954) (end 119.370624 110.098574) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 165.854426 69.90681) (end 170.320308 68.250678) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 170.320308 68.250678) (end 174.851546 66.44791) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 79.160783 66.447934) (end 78.013014 65.73001) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 83.69202 68.250702) (end 79.160783 66.447934) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 135.42515 88.250297) (end 137.158895 89.489981) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 183.908298 83.949421) (end 183.606711 83.306153) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 181.246125 58.121025) (end 180.755633 56.78573) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 172.102599 90.530823) (end 176.909116 90.19128) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 160.973126 74.22286) (end 156.648246 73.484062) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 177.324931 64.733805) (end 179.581236 62.88305) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 133.59201 57.0007) (end 134.256828 56.190834) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 180.833226 88.806602) (end 181.833327 88.010851) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 134.562883 117.533954) (end 134.64175 110.098584) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 119.863543 126.356804) (end 119.449634 117.533954) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 111.057521 90.642301) (end 106.586254 90.670084) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 121.954603 141.670217) (end 120.971563 136.826704) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 179.581236 62.88305) (end 180.242709 62.118857) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 162.486813 54.25934) (end 150.613913 56.44285) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 129.511639 149.841783) (end 130.273103 148.057225) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 113.0998 90.546135) (end 111.057521 90.642301) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 125.564701 151.307799) (end 124.990277 150.646804) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 75.882882 55.006447) (end 77.353963 54.528684) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 74.62516 55.644293) (end 75.882882 55.006447) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 72.960623 80.457694) (end 75.441052 79.066614) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 128.109514 53.934473) (end 127.727778 53.58664) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 131.575387 62.275281) (end 131.24082 60.55672) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 122.309473 63.271894) (end 122.43693 62.275305) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 119.441043 61.805144) (end 122.309473 63.271894) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 138.984316 90.208639) (end 140.91258 90.546125) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 72.7662 58.121049) (end 73.256693 56.785754) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 72.607701 58.946946) (end 72.7662 58.121049) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 100.501968 90.862556) (end 97.684704 90.902649) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 178.359029 89.947746) (end 179.671096 89.46921) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 156.648246 73.484062) (end 152.567356 72.90722) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 126.233555 151.760365) (end 125.564701 151.307799) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 121.824354 83.648454) (end 120.240463 86.349746) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 133.409359 52.188916) (end 132.820151 51.879002) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 137.841374 60.325987) (end 134.571293 61.80512) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 70.271819 85.334059) (end 70.040753 84.515034) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 156.484936 72.0514) (end 161.31305 70.992519) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 132.188016 83.648444) (end 133.771913 86.349736) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 101.444993 72.907244) (end 101.587517 72.84651) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 97.364107 73.484086) (end 101.444993 72.907244) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 168.067128 90.886212) (end 172.102599 90.530823) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 163.725002 91.101873) (end 168.067128 90.886212) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 71.419491 81.975344) (end 72.960623 80.457694) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 73.707523 56.288602) (end 74.62516 55.644293) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 73.256693 56.785754) (end 73.707523 56.288602) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 87.742715 75.367391) (end 93.039223 74.222884) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 133.040943 136.826704) (end 134.148973 126.356804) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 122.771483 60.556744) (end 123.191046 58.376714) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 122.43693 62.275305) (end 122.771483 60.556744) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 119.449016 55.132709) (end 119.574942 53.722272) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 119.755488 56.190858) (end 119.449016 55.132709) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 90.287376 91.101884) (end 85.945248 90.886235) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 124.283852 52.082619) (end 124.800364 52.535142) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 123.614628 51.759134) (end 124.283852 52.082619) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 142.954857 90.642291) (end 147.426116 90.670074) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 182.592856 81.97532) (end 181.051726 80.45767) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 183.971596 84.51501) (end 183.908298 83.949421) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 140.91258 90.546125) (end 142.954857 90.642291) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 81.909773 90.530862) (end 77.103253 90.191334) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 180.242709 62.118857) (end 180.726893 61.207784) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 175.999315 65.729986) (end 177.324931 64.733805) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 134.148973 126.356804) (end 134.562883 117.533954) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 96.013854 91.022242) (end 90.287376 91.101884) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 152.593821 72.773) (end 153.604604 72.586852) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 134.431399 102.769144) (end 133.882731 95.286534) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 179.387167 55.644269) (end 178.129449 55.006423) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 153.510406 90.862546) (end 156.32767 90.902639) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 73.17913 88.80661) (end 72.179028 88.010859) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 115.028066 90.208649) (end 113.0998 90.546135) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 126.284538 53.586664) (end 127.006086 53.445709) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 125.902802 53.934497) (end 126.284538 53.586664) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 120.129648 95.286544) (end 120.470414 91.841404) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 72.179028 88.010859) (end 71.353048 87.132898) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 116.853486 89.489991) (end 115.028066 90.208649) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 152.424827 72.846486) (end 152.593821 72.773) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 141.184003 59.00412) (end 137.841374 60.325987) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 130.82126 58.37669) (end 131.97798 57.952095) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 127.778949 151.760366) (end 128.4478 151.3078) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 127.006253 151.940104) (end 127.778949 151.760366) (layer Edge.Cuts) (width 0.2))
  (gr_line (start 128.4478 151.3078) (end 129.022225 150.646808) (layer Edge.Cuts) (width 0.2))

  (segment (start 127 76.2) (end 127 68.58) (width 0.35) (layer F.Cu) (net 2))
  (segment (start 127 84.385) (end 127 76.2) (width 0.35) (layer F.Cu) (net 2))
  (via (at 76.2 59.055) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 76.2 57.5675) (end 76.2 59.055) (width 0.35) (layer F.Cu) (net 3))
  (via (at 177.8 59.055) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 177.8 60.5425) (end 177.8 59.055) (width 0.35) (layer F.Cu) (net 3))
  (via (at 179.705 84.455) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 179.705 85.9425) (end 179.705 84.455) (width 0.35) (layer F.Cu) (net 3))
  (via (at 74.295 84.455) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 74.295 82.9675) (end 74.295 84.455) (width 0.35) (layer F.Cu) (net 3))
  (via (at 118.745 69.85) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 119.525 70.63) (end 118.745 69.85) (width 0.35) (layer F.Cu) (net 3))
  (segment (start 119.525 71.9) (end 119.525 70.63) (width 0.35) (layer F.Cu) (net 3))
  (via (at 135.89 69.85) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 134.35 69.85) (end 135.89 69.85) (width 0.35) (layer F.Cu) (net 3))
  (segment (start 125.45 63.5) (end 123.825 63.5) (width 0.35) (layer F.Cu) (net 4))
  (segment (start 121.775 67.8) (end 121.775 65.55) (width 0.35) (layer F.Cu) (net 4))
  (segment (start 121.775 65.55) (end 123.825 63.5) (width 0.35) (layer F.Cu) (net 4))
  (segment (start 119.525 67.8) (end 119.525 68.725) (width 0.35) (layer F.Cu) (net 5))
  (segment (start 119.525 68.725) (end 120.015 69.215) (width 0.35) (layer F.Cu) (net 5))
  (segment (start 121.775 71.9) (end 121.775 70.975) (width 0.35) (layer F.Cu) (net 5))
  (segment (start 121.775 70.975) (end 120.015 69.215) (width 0.35) (layer F.Cu) (net 5))
  (segment (start 124.5 74.625) (end 121.775 71.9) (width 0.35) (layer F.Cu) (net 5))
  (segment (start 124.5 84.385) (end 124.5 74.625) (width 0.35) (layer F.Cu) (net 5))
  (segment (start 132.35 65.675) (end 132.35 68.9) (width 0.35) (layer F.Cu) (net 6))
  (segment (start 130.175 63.5) (end 132.35 65.675) (width 0.35) (layer F.Cu) (net 6))
  (segment (start 128.55 63.5) (end 130.175 63.5) (width 0.35) (layer F.Cu) (net 6))

  (zone (net 1) (net_name GND) (layer F.Cu) (tstamp 0) (hatch edge 0.508)
    (connect_pads (clearance 0.508))
    (min_thickness 0.254)
    (fill (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
    (polygon
      (pts
        (xy 185.42 152.4) (xy 68.58 152.4) (xy 68.58 50.8) (xy 185.42 50.8)
      )
    )
  )
  (zone (net 3) (net_name ANODE) (layer B.Cu) (tstamp 0) (hatch edge 0.508)
    (connect_pads (clearance 0.508))
    (min_thickness 0.254)
    (fill (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
    (polygon
      (pts
        (xy 185.42 152.4) (xy 68.58 152.4) (xy 68.58 50.8) (xy 185.42 50.8)
      )
    )
  )
)