-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProMicro_expanded_flipped.kicad_mod
2721 lines (2673 loc) · 105 KB
/
ProMicro_expanded_flipped.kicad_mod
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
(footprint "ProMicro_expanded_flipped" (version 20221018) (generator pcbnew)
(layer "F.Cu")
(descr "Solder-jumper reversible Pro Micro footprint (exposed jumpers)")
(tags "promicro ProMicro reversible solder jumper")
(attr through_hole)
(fp_text reference "REF**" (at 16.51 0 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c00016d6-90a9-444a-ab02-189ffd1a0392)
)
(fp_text value "ProMicro" (at -16.51 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f9d57b6-bd43-4bbb-8840-f05121617ca6)
)
(fp_line (start -15.24 6.985) (end -13.97 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 9fc5157d-5f38-4f89-b4c8-fdbe61749190))
(fp_line (start -15.24 8.89) (end -15.24 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 421656b0-6b32-4b81-a3a2-c04976e16154))
(fp_line (start -13.97 -10.16) (end -12.7 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d69289f1-d8c2-4975-bda4-bc385a73646c))
(fp_line (start -13.97 -7.62) (end -13.97 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp e7a43363-0b72-44c7-a1e9-89730506cb9e))
(fp_line (start -13.97 7.62) (end -13.97 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d6c50619-3993-4050-82fc-9dac52fc3467))
(fp_line (start -13.97 10.16) (end -15.24 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 89622699-0e8d-4b8d-add8-2c4044b4f60a))
(fp_line (start -12.7 -8.89) (end -12.7 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp db6911d2-6dd9-4894-8bbb-7a71133d1504))
(fp_line (start -12.7 -6.985) (end -13.97 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 7f4566ca-fd5e-42b9-be68-a8f939aa028a))
(fp_line (start -12.7 6.985) (end -11.43 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 80ac920b-cb48-4ce7-94bd-0ecfb3be0f3c))
(fp_line (start -12.7 8.89) (end -12.7 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 12bfb095-5730-429c-9453-3e89ed812494))
(fp_line (start -11.43 -10.16) (end -10.16 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp fc7dbab0-b032-4c45-9b87-7794e3289088))
(fp_line (start -11.43 -7.62) (end -11.43 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp c347d65d-c19f-48e8-b53a-1925459f0dfd))
(fp_line (start -11.43 7.62) (end -11.43 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp c69a6148-383c-4555-9da8-416f2bd477ff))
(fp_line (start -11.43 10.16) (end -12.7 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 6ba510d7-ee42-4a98-9738-00cf72958177))
(fp_line (start -10.16 -8.89) (end -10.16 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 5b51ffd9-f40c-45ad-b2ed-bd847b0bb769))
(fp_line (start -10.16 -6.985) (end -11.43 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ce84af58-802d-4190-8eec-6978201af530))
(fp_line (start -10.16 6.985) (end -8.89 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 033e8fc3-1013-4af9-80d4-dc676df23742))
(fp_line (start -10.16 8.89) (end -10.16 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f6642595-52d6-43c1-9e07-bb4f9b16782b))
(fp_line (start -8.89 -10.16) (end -7.62 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 71645698-4c76-4622-8050-37b5c81fd70e))
(fp_line (start -8.89 -7.62) (end -8.89 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 38f19b77-7ee1-4ade-bcfc-b5cefe0514f8))
(fp_line (start -8.89 7.62) (end -8.89 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a35cd0c3-4baf-4a6a-9bba-6611a7b96ba0))
(fp_line (start -8.89 10.16) (end -10.16 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 2cf6d7e6-e260-484a-869b-299a4dd46c7c))
(fp_line (start -7.62 -8.89) (end -7.62 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d89b4a51-654a-4aad-b6ef-978690a626ff))
(fp_line (start -7.62 -6.985) (end -8.89 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp dff591e9-0825-40a4-be8a-8095321c5192))
(fp_line (start -7.62 6.985) (end -6.35 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 7e733069-2f3d-4f0d-b158-350df212a1eb))
(fp_line (start -7.62 8.89) (end -7.62 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 373706f2-e0e6-42f2-8e25-45e052e910e8))
(fp_line (start -6.35 -10.16) (end -5.08 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 441fae6d-a2e3-4c42-95a8-95aab121987b))
(fp_line (start -6.35 -7.62) (end -6.35 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp cb6b2eed-18db-4037-b28b-3b625190ca38))
(fp_line (start -6.35 7.62) (end -6.35 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 8f1c7504-f583-4d58-895a-27cac1b1735b))
(fp_line (start -6.35 10.16) (end -7.62 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a5f8ad49-f6ad-412b-9e32-da8f401392c3))
(fp_line (start -5.08 -8.89) (end -5.08 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ca28337a-a4ec-4eab-ab2a-2f5734e1008f))
(fp_line (start -5.08 -6.985) (end -6.35 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ade10667-2839-4533-8d81-c5adab564fd7))
(fp_line (start -5.08 6.985) (end -3.81 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ec6c5740-b44a-4943-bf17-ca8df2770a41))
(fp_line (start -5.08 8.89) (end -5.08 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ae0c4ee9-c651-448e-b517-93da35ef6ad7))
(fp_line (start -3.81 -10.16) (end -2.54 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp def400b4-14a0-409c-9237-06b77b520fcf))
(fp_line (start -3.81 -7.62) (end -3.81 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 2cdff56d-2057-405a-b97f-a458d26c0657))
(fp_line (start -3.81 7.62) (end -3.81 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 9a4329cb-df87-4aec-9eb2-653a153f3c76))
(fp_line (start -3.81 10.16) (end -5.08 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 775a7e43-b836-4d61-bb71-4226d73e0f5c))
(fp_line (start -2.54 -8.89) (end -2.54 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 9111b711-cef0-4d90-ac41-9ecf4435632b))
(fp_line (start -2.54 -6.985) (end -3.81 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f49c3fa1-ddc7-4488-b94d-117123e7158b))
(fp_line (start -2.54 6.985) (end -1.27 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 81b60950-b934-49b9-81f3-da48ede45a7b))
(fp_line (start -2.54 8.89) (end -2.54 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 27c713a9-e47a-4967-b76b-10563df9ea82))
(fp_line (start -1.27 -10.16) (end 0 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 61eb6070-461a-4a8b-9719-91410094740b))
(fp_line (start -1.27 -7.62) (end -1.27 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp dc905d49-a9af-4479-a738-5e3c65140b7c))
(fp_line (start -1.27 7.62) (end -1.27 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 61f22dd5-3f09-4172-901d-4e3afce470b3))
(fp_line (start -1.27 10.16) (end -2.54 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 8455222c-3dbd-466b-b6b8-0504cab2ff5e))
(fp_line (start 0 -8.89) (end 0 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 2f8f5d9e-81f4-428d-a56a-186e773006f2))
(fp_line (start 0 -6.985) (end -1.27 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 6ac0354f-e1b8-46ff-999b-59637cf9bb90))
(fp_line (start 0 6.985) (end 1.27 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 63324d4a-b8b2-488e-aa4a-2abd3448beea))
(fp_line (start 0 8.89) (end 0 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 354eee7a-a8a5-4335-82e5-2d3b78db0079))
(fp_line (start 1.27 -10.16) (end 2.54 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 005d7fcc-4926-4449-aed6-7ae59947431e))
(fp_line (start 1.27 -7.62) (end 1.27 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 6f529f1e-efc2-4dbd-8201-32be9335ad08))
(fp_line (start 1.27 7.62) (end 1.27 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 823994c0-4001-451a-a47f-fb86bd60c3a4))
(fp_line (start 1.27 10.16) (end 0 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp fb9452e1-9fc8-4c1f-8f97-65f7efa76f64))
(fp_line (start 2.54 -8.89) (end 2.54 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 024b3fc3-60dd-492b-8cb7-41c33b3353ca))
(fp_line (start 2.54 -6.985) (end 1.27 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 17ee7616-e209-4cfc-b953-080d336d7c1d))
(fp_line (start 2.54 6.985) (end 3.81 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f40d135c-9a5f-4311-bf92-147ade1044a3))
(fp_line (start 2.54 8.89) (end 2.54 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 3ab0e96a-dc52-41a8-a3e9-9910ca1aa795))
(fp_line (start 3.81 -10.16) (end 5.08 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 7b95088c-1afb-4ef5-9cf6-adeb7db3ff4d))
(fp_line (start 3.81 -7.62) (end 3.81 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 2f6c7256-3448-4ccb-bfef-8da9f4ae2315))
(fp_line (start 3.81 7.62) (end 3.81 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 8d1d5979-6e68-4d54-8f94-0938f735da60))
(fp_line (start 3.81 10.16) (end 2.54 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ed955f2c-84bd-46c8-a562-4d909b8a6987))
(fp_line (start 5.08 -8.89) (end 5.08 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 3409e590-9ad7-454c-af61-624862b3ec75))
(fp_line (start 5.08 -6.985) (end 3.81 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f87db59b-1616-4ee7-a1a4-83579ce021e4))
(fp_line (start 5.08 6.985) (end 6.35 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 06bef124-0e71-4430-bcc4-8e81ff3fb14f))
(fp_line (start 5.08 8.89) (end 5.08 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 0459bbd0-7156-4158-ae1f-bdaa6ae2a42a))
(fp_line (start 6.35 -10.16) (end 7.62 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f2d8f2a6-cc6a-4bdd-9f4e-c1de3a37e3ec))
(fp_line (start 6.35 -7.62) (end 6.35 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 116e49ed-f270-457d-9587-2d136232119f))
(fp_line (start 6.35 7.62) (end 6.35 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 9d0b5d3d-560b-461d-9d75-3b89df2ed76b))
(fp_line (start 6.35 10.16) (end 5.08 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 06f4e46c-ddf3-47aa-a297-2fd1ace7481f))
(fp_line (start 7.62 -8.89) (end 7.62 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 02001260-4bb0-4ef7-b194-e1b607f92372))
(fp_line (start 7.62 -6.985) (end 6.35 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 97e096b2-afce-4ee4-9532-28b2c53e6737))
(fp_line (start 7.62 6.985) (end 8.89 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp c5c022e5-2fe0-4928-bc97-3e02cfbbaf53))
(fp_line (start 7.62 8.89) (end 7.62 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp cc2e4ff6-cc65-4760-82c0-41aa5d521b55))
(fp_line (start 8.89 -10.16) (end 10.16 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 3eb68118-2f30-47e3-b2bc-94d1224fc9fa))
(fp_line (start 8.89 -7.62) (end 8.89 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d638f83d-e5f6-44ec-af77-54a1c51eadf4))
(fp_line (start 8.89 7.62) (end 8.89 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 0baf2770-16d4-465d-96ce-d6ad583ae868))
(fp_line (start 8.89 10.16) (end 7.62 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 689acb68-00c1-4124-97d4-0c9fa77952eb))
(fp_line (start 10.16 -8.89) (end 10.16 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d9efe30b-c13f-44ff-a465-ff4ee8d05e8e))
(fp_line (start 10.16 -6.985) (end 8.89 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 735bed8a-4b55-42bc-83e1-5eb8c4482846))
(fp_line (start 10.16 6.985) (end 11.43 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 95ead2db-9bdc-407b-8bfb-3110222885a4))
(fp_line (start 10.16 8.89) (end 10.16 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ee24bcfd-95cb-4fdd-bd6b-7b2ec53bd02f))
(fp_line (start 11.43 -10.16) (end 12.7 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp b6606b83-8ce4-4aa1-9406-29248b78e0bc))
(fp_line (start 11.43 -7.62) (end 11.43 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 1c62e81c-61d3-4489-917c-df3bad6a6c6a))
(fp_line (start 11.43 7.62) (end 11.43 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 0fda4652-66e3-4673-9cd6-e550936475fd))
(fp_line (start 11.43 10.16) (end 10.16 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp cc30206c-232d-4e47-a78e-de24dba73084))
(fp_line (start 12.7 -8.89) (end 12.7 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 8724c4d3-fb67-4f7c-9559-61fb54824a24))
(fp_line (start 12.7 -6.985) (end 11.43 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 66cd64c6-f4b7-4874-bb69-3fbe662a6541))
(fp_line (start 12.7 6.985) (end 13.97 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 584d0694-776d-45fd-9574-0d55e0b96d8e))
(fp_line (start 12.7 8.89) (end 12.7 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp e45c60ea-5c3d-4a87-be47-7a28338c0542))
(fp_line (start 13.97 -10.16) (end 15.24 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 04637ee0-066d-4a0d-b0cc-b594c92db5f7))
(fp_line (start 13.97 -7.62) (end 13.97 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f068a37d-d109-4de5-8044-8f14e3267646))
(fp_line (start 13.97 7.62) (end 13.97 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 3418082e-11c6-4bda-9a22-7a83ac70cbd6))
(fp_line (start 13.97 10.16) (end 12.7 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 452765bc-142a-4293-b796-5a0adf7e1316))
(fp_line (start 15.24 -8.89) (end 15.24 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 4d0910c0-d174-461e-bc11-cf34a0ea3cee))
(fp_line (start 15.24 -6.985) (end 13.97 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp b05f673f-3527-46d4-81f3-2a52d1075978))
(fp_line (start -15.24 5.715) (end -15.24 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp bc780fa1-947d-4829-91e0-428500ec2cc6))
(fp_line (start -15.24 5.715) (end -14.605 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9b0d1b0f-4459-4146-9ea8-b53bd4ae9c15))
(fp_line (start -14.605 -5.08) (end -14.605 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b3482579-4173-44c3-9f04-8e78cc595972))
(fp_line (start -14.605 -5.08) (end -13.97 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 713926a8-92a4-49f4-8ace-dc6f367a0a55))
(fp_line (start -13.97 -10.16) (end -12.7 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 22612a0e-9b02-4cb6-9c19-bf7ae05f8ee2))
(fp_line (start -13.97 -7.62) (end -13.97 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 134342d8-a104-495c-895d-a5286dc9276d))
(fp_line (start -13.97 7.62) (end -13.97 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 7213e064-07c5-4ddb-b85d-0fb69d9cc025))
(fp_line (start -13.97 10.16) (end -15.24 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9ef2613a-4098-4144-baf8-59ac14e19538))
(fp_line (start -13.335 5.08) (end -13.97 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 81992a4e-636b-4b56-a71d-c2691f482736))
(fp_line (start -13.335 5.08) (end -13.335 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp dd21e866-8a56-4f03-b29b-bfc8f5c1acd6))
(fp_line (start -12.7 -5.715) (end -13.335 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 50af7836-2381-40ea-80a9-64f0bbd5643c))
(fp_line (start -12.7 -5.715) (end -12.7 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 3eb5cf19-ae33-47b5-9d58-8012467a40df))
(fp_line (start -12.7 5.715) (end -12.7 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6b1eeb90-8fe0-497e-8ab2-bccaee78d1eb))
(fp_line (start -12.7 5.715) (end -12.065 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a7f1cc30-f759-4b47-af05-e425b5178d36))
(fp_line (start -12.065 -5.08) (end -12.065 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 27576af7-87e4-4bd8-b4fd-854c230e3182))
(fp_line (start -12.065 -5.08) (end -11.43 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 20452325-4463-4fb8-9dad-e2a475b0e073))
(fp_line (start -11.43 -10.16) (end -10.16 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e4857b88-bba0-434d-9264-07d582eecbf9))
(fp_line (start -11.43 -7.62) (end -11.43 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 92eac0f2-5c8a-4b42-afaa-db0026bbc084))
(fp_line (start -11.43 7.62) (end -11.43 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 70311589-d009-4fc7-8f53-377cf9d736a1))
(fp_line (start -11.43 10.16) (end -12.7 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 64865b6b-ab57-4fb6-9aa1-1cf0a7a42294))
(fp_line (start -10.795 5.08) (end -11.43 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp fee003bd-824b-4a8a-a70c-73c044dec6b0))
(fp_line (start -10.795 5.08) (end -10.795 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 2f3f2b7c-9c85-4b63-b336-ed00d94ef53a))
(fp_line (start -10.16 -5.715) (end -10.795 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 09a785b2-180c-47ac-99ba-d82750025c92))
(fp_line (start -10.16 -5.715) (end -10.16 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6048d8e2-803e-45b9-947a-495ba0058c5c))
(fp_line (start -10.16 5.715) (end -10.16 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 7ba5c91b-83f7-4237-ae9a-f6793d643bec))
(fp_line (start -10.16 5.715) (end -9.525 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 124b2fbd-a38d-45e9-bf67-23292e724068))
(fp_line (start -9.525 -5.08) (end -9.525 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 03a1a789-89bd-4632-a9ca-d79c9075b232))
(fp_line (start -9.525 -5.08) (end -8.89 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp bd138dcd-e759-4513-bd4a-296e8870278f))
(fp_line (start -8.89 -10.16) (end -7.62 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0027b4d9-cd83-43ac-97ea-0b9676da899f))
(fp_line (start -8.89 -7.62) (end -8.89 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4478be19-518c-438c-9f5e-f4c2a0a02b52))
(fp_line (start -8.89 7.62) (end -8.89 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ae6477ba-15fd-40b1-9227-15c118856350))
(fp_line (start -8.89 10.16) (end -10.16 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 130c6969-2fd7-43e1-a766-c45af25729c0))
(fp_line (start -8.255 5.08) (end -8.89 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 944df657-8ef1-4693-b6d7-2cc01484fbfd))
(fp_line (start -8.255 5.08) (end -8.255 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 5f3a7d8e-1129-444e-b0a3-479d684dfd69))
(fp_line (start -7.62 -5.715) (end -8.255 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4113a81e-4bd4-4291-8029-2ea315478306))
(fp_line (start -7.62 -5.715) (end -7.62 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 61d563a8-5dcf-419b-b594-995a987b8cd2))
(fp_line (start -7.62 5.715) (end -7.62 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a039f0d8-714c-4a01-9e89-4b1cacba5522))
(fp_line (start -7.62 5.715) (end -6.985 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ed0d1d21-3208-459e-8825-c513de6bdcb1))
(fp_line (start -6.985 -5.08) (end -6.985 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 2e8285dc-0c59-4108-9b35-a8e18fe201c6))
(fp_line (start -6.985 -5.08) (end -6.35 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp fbf9985c-df95-489a-871d-62b949ebb549))
(fp_line (start -6.35 -10.16) (end -5.08 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f09f89ce-1a85-4592-98c1-69136783366a))
(fp_line (start -6.35 -7.62) (end -6.35 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 641be1a8-f8fc-4236-868f-e951e92a948b))
(fp_line (start -6.35 7.62) (end -6.35 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 16e6707f-82a5-4a38-9543-927f3a5ee623))
(fp_line (start -6.35 10.16) (end -7.62 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b6e6197b-3d1b-49e5-b5f7-becee12a261d))
(fp_line (start -5.715 5.08) (end -6.35 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f345a453-1be5-467f-b835-dcc61742b5aa))
(fp_line (start -5.715 5.08) (end -5.715 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d4ae0163-f077-4006-a711-31686a512991))
(fp_line (start -5.08 -5.715) (end -5.715 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 577e3357-ae22-452a-9f85-0b4d4ce40647))
(fp_line (start -5.08 -5.715) (end -5.08 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 55a2721c-a97c-4476-8014-f5f7e05765e7))
(fp_line (start -5.08 5.715) (end -5.08 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 3e9ba44c-9113-406e-bd20-0e8c790c2006))
(fp_line (start -5.08 5.715) (end -4.445 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 2b244aa2-28d7-469b-84f1-3b16e313ef76))
(fp_line (start -4.445 -5.08) (end -4.445 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e7df7805-e56a-4c7f-ba9f-fafc4ba4bc18))
(fp_line (start -4.445 -5.08) (end -3.81 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a6fbee37-8353-45c3-a12b-80bd4738f033))
(fp_line (start -3.81 -10.16) (end -2.54 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e236b101-6dc8-4f70-ae2d-032b0349ce15))
(fp_line (start -3.81 -7.62) (end -3.81 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c536a444-e100-416d-999e-e53a96098eeb))
(fp_line (start -3.81 7.62) (end -3.81 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e2f17efe-4bc6-4626-a8cc-8d165cb3c25b))
(fp_line (start -3.81 10.16) (end -5.08 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 55d325f0-9579-4524-acb2-aab258fca77a))
(fp_line (start -3.175 5.08) (end -3.81 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e78a3349-9664-4443-b36d-22755ccba664))
(fp_line (start -3.175 5.08) (end -3.175 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ee843d41-c440-45be-8d36-902c16df8b2b))
(fp_line (start -2.54 -5.715) (end -3.175 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 84da3b5d-7ebc-459f-b736-cfb9982308a1))
(fp_line (start -2.54 -5.715) (end -2.54 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 05168eeb-4507-4aea-a5cf-b4a808ae67c1))
(fp_line (start -2.54 5.715) (end -2.54 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 63d9e87f-1c7e-4268-93ef-d50081539914))
(fp_line (start -2.54 5.715) (end -1.905 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 38ad4443-2175-4cd1-bfc5-c1ec6cfabf66))
(fp_line (start -1.905 -5.08) (end -1.905 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9a139a22-93f7-4489-930a-cf899a976580))
(fp_line (start -1.905 -5.08) (end -1.27 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0185b6ba-1a16-48ca-95f7-89b4ef342a35))
(fp_line (start -1.27 -10.16) (end 0 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a49dff1d-55a8-4c02-b234-7e77124f0852))
(fp_line (start -1.27 -7.62) (end -1.27 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a244e903-2fc0-4760-b9b3-3771d79da798))
(fp_line (start -1.27 7.62) (end -1.27 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6448e834-3de9-4c81-b811-d70570e4edd4))
(fp_line (start -1.27 10.16) (end -2.54 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a27cfcfd-c84d-4996-b36c-a057f185d581))
(fp_line (start -0.635 5.08) (end -1.27 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 1d2e5cf8-2a1d-47ac-9193-8bf4fc09660d))
(fp_line (start -0.635 5.08) (end -0.635 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp bfdd7865-0b25-413a-8ccb-7da2cd82ec6b))
(fp_line (start 0 -5.715) (end -0.635 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 328ee8b4-76ad-43ca-846f-8768479c1b29))
(fp_line (start 0 -5.715) (end 0 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d6b875fa-b79f-42f8-b9f8-15596f4841c0))
(fp_line (start 0 5.715) (end 0 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6ec57dec-918a-4da4-88c9-15692e9513d2))
(fp_line (start 0 5.715) (end 0.635 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 66c58caa-a48b-4417-83ee-45d8b99bf04a))
(fp_line (start 0.635 -5.08) (end 0.635 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 90e945f1-8317-47c5-bbf2-e5783a386cfa))
(fp_line (start 0.635 -5.08) (end 1.27 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 531bd7a3-ce6f-41ef-b8ac-22e836081660))
(fp_line (start 1.27 -10.16) (end 2.54 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c200fff1-8e42-4c88-a737-dad5f097250e))
(fp_line (start 1.27 -7.62) (end 1.27 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4746559c-2268-48fd-afab-91dc948ea2b1))
(fp_line (start 1.27 7.62) (end 1.27 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 64ac12fc-90c6-47c6-83ad-88c4d002a507))
(fp_line (start 1.27 10.16) (end 0 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4f622843-b84b-4449-90d6-bf0b1d4a8bf9))
(fp_line (start 1.905 5.08) (end 1.27 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f617acf7-d095-4102-a1a8-2ff8c6a6b68f))
(fp_line (start 1.905 5.08) (end 1.905 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d9eb38e9-90cc-4be9-bb5e-93b5ce8b09c1))
(fp_line (start 2.54 -5.715) (end 1.905 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 455916d7-bf0d-4f9b-9c46-dcd68745039b))
(fp_line (start 2.54 -5.715) (end 2.54 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp fb9e5b7b-b33c-4537-9954-630c56a49914))
(fp_line (start 2.54 5.715) (end 2.54 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp cc5d2a52-8624-48d2-b4b5-186d53d76e2a))
(fp_line (start 2.54 5.715) (end 3.175 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 3b90ee7e-b1dc-4b50-9156-fd3e1b47faa0))
(fp_line (start 3.175 -5.08) (end 3.175 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e873aacf-eb81-4745-af9c-b65c16a99eb1))
(fp_line (start 3.175 -5.08) (end 3.81 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d1c5ab71-5931-43ba-83e8-8f4d0bafa23c))
(fp_line (start 3.81 -10.16) (end 5.08 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ce3abe06-3b6a-4f7f-9dae-c899ea600e62))
(fp_line (start 3.81 -7.62) (end 3.81 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 432a2790-ef67-4626-9fce-2db7d0138451))
(fp_line (start 3.81 7.62) (end 3.81 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0680ea10-63fa-46ea-8570-265d0512c3b5))
(fp_line (start 3.81 10.16) (end 2.54 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ed1cfcc4-bb46-4222-ae78-57c8521fe75f))
(fp_line (start 4.445 5.08) (end 3.81 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 38139d52-a393-4020-b4d0-09d98030a042))
(fp_line (start 4.445 5.08) (end 4.445 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f21c583a-7656-4474-9a2d-1d188b22d237))
(fp_line (start 5.08 -5.715) (end 4.445 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 2c915333-0cb0-44bd-8fad-f0353e559aa9))
(fp_line (start 5.08 -5.715) (end 5.08 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 16d97896-1cd7-46f0-9319-9c1c029e76ca))
(fp_line (start 5.08 5.715) (end 5.08 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 43633b14-c31a-46f4-9ab9-6b8bce20e89b))
(fp_line (start 5.08 5.715) (end 5.715 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0796333e-2b36-4c26-8eab-5958ac8dbbd8))
(fp_line (start 5.715 -5.08) (end 5.715 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 70211d03-96be-429a-9540-7da54dba5d18))
(fp_line (start 5.715 -5.08) (end 6.35 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 44bcd5ef-4f3c-416e-9116-6de0c901d717))
(fp_line (start 6.35 -10.16) (end 7.62 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f1dfa48d-482a-4fc7-8d12-f5340099802d))
(fp_line (start 6.35 -7.62) (end 6.35 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4a848692-6739-4c42-8bea-c2243b2c1de5))
(fp_line (start 6.35 7.62) (end 6.35 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 5491234a-8d3f-4be6-a161-3757c7799c6d))
(fp_line (start 6.35 10.16) (end 5.08 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 828bbd99-92c9-4295-913b-05a10a941950))
(fp_line (start 6.985 5.08) (end 6.35 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f3381eeb-82c1-4cd1-9fed-fbed4ab9daab))
(fp_line (start 6.985 5.08) (end 6.985 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d5f5d466-99fa-4240-91a6-f028155a4976))
(fp_line (start 7.62 -5.715) (end 6.985 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 82e43868-203b-4270-a6e3-b77698a7d750))
(fp_line (start 7.62 -5.715) (end 7.62 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 3db89c20-c9cc-43b2-8897-cc7d4244f0f7))
(fp_line (start 7.62 5.715) (end 7.62 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b9110ca4-b39e-49a9-9008-98f90d461d91))
(fp_line (start 7.62 5.715) (end 8.255 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp af49f97c-c087-4b15-8cbf-4c381b148306))
(fp_line (start 8.255 -5.08) (end 8.255 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a85c116e-9a90-41aa-b998-7557c7fc2b3c))
(fp_line (start 8.255 -5.08) (end 8.89 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 501ce196-4217-4d08-822f-2eae9de4b62f))
(fp_line (start 8.89 -10.16) (end 10.16 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ab5463d5-d161-4e8f-91cc-0d311b88b87b))
(fp_line (start 8.89 -7.62) (end 8.89 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 8cf743c2-e4f5-400d-b88b-034bf2181ce0))
(fp_line (start 8.89 7.62) (end 8.89 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b773a4b2-b9dd-4f91-bc56-9f5a9e23df02))
(fp_line (start 8.89 10.16) (end 7.62 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 1cab4d92-69fd-4a66-b801-dd321c90aa51))
(fp_line (start 9.525 5.08) (end 8.89 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4b838b14-30d2-414a-933b-da0e7c432c42))
(fp_line (start 9.525 5.08) (end 9.525 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 86705c34-7d8b-40b1-b853-effc32371406))
(fp_line (start 10.16 -5.715) (end 9.525 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d6cba626-1e7f-4bea-8768-5e9f3670aad9))
(fp_line (start 10.16 -5.715) (end 10.16 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 54fb2bbe-9a9a-4951-85da-c049c441f2ac))
(fp_line (start 10.16 5.715) (end 10.16 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 81e56e2a-4fd0-4b84-ab06-c3edf819437b))
(fp_line (start 10.16 5.715) (end 10.795 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 23a36405-270f-4571-8957-0e1b5aab4906))
(fp_line (start 10.795 -5.08) (end 10.795 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e2099d20-11da-4c72-b5c1-478dee82f057))
(fp_line (start 10.795 -5.08) (end 11.43 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 13280797-bc2c-4af8-91c7-e3ee33922b64))
(fp_line (start 11.43 -10.16) (end 12.7 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 68fd8186-3e89-4cfa-8884-f17f2cdd0d19))
(fp_line (start 11.43 -7.62) (end 11.43 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp fdcc1ae5-bf38-4722-a45b-8b5845bb51c9))
(fp_line (start 11.43 7.62) (end 11.43 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4fb51a21-868e-4268-98bf-e494653ab7e6))
(fp_line (start 11.43 10.16) (end 10.16 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c23672e3-7964-4e8e-9c0a-1e5643118b90))
(fp_line (start 12.065 5.08) (end 11.43 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4f9d7ff7-054a-4679-8203-aafae4b2405c))
(fp_line (start 12.065 5.08) (end 12.065 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp bfb397e0-cd85-43e7-9c86-3b692c19d49d))
(fp_line (start 12.7 -5.715) (end 12.065 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 773ea093-e53a-4962-9ea1-ec789b9af93c))
(fp_line (start 12.7 -5.715) (end 12.7 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a50a15da-c14e-4f4e-b4b2-5268908cfcaf))
(fp_line (start 12.7 5.715) (end 12.7 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 2d1f742e-da04-469a-bc1a-5e6d07e7d619))
(fp_line (start 12.7 5.715) (end 13.335 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a3711324-e875-4f08-96c3-030f4586acd1))
(fp_line (start 13.335 -5.08) (end 13.335 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d7430fb2-9450-43f5-b0df-0fd1277daf72))
(fp_line (start 13.335 -5.08) (end 13.97 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp edb50f8b-2e84-41d3-ab7b-23d4a4e98fee))
(fp_line (start 13.97 -10.16) (end 15.24 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c08f70db-a3e9-4bfa-8a8a-3306eb08cb85))
(fp_line (start 13.97 -7.62) (end 13.97 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d594ebfa-a063-44d7-9a35-a5ae7b43d676))
(fp_line (start 13.97 10.16) (end 12.7 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ab29a780-3723-486b-8da7-6b30691c5dec))
(fp_line (start 14.605 5.08) (end 13.97 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 8a503193-eb46-4ce4-84b3-bdb55130c57f))
(fp_line (start 14.605 5.08) (end 14.605 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9da4f0b9-c9cb-4429-baa1-69b2938e01b6))
(fp_line (start 15.24 -5.715) (end 14.605 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 1859729c-3a24-4988-ac3b-7819693ecaef))
(fp_line (start 15.24 -5.715) (end 15.24 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 7be69ab1-cf89-4f41-bed0-81ba28e7bcfb))
(fp_line (start -17.78 -8.89) (end 15.24 -8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp d7306f5e-f08e-41f1-b4d7-a6e6b15c4116))
(fp_line (start -17.78 8.89) (end -17.78 -8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp f58fab6d-2fd6-429b-bf05-e215dd097805))
(fp_line (start -17.78 8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp 743eeac3-cb6b-4d28-8ccd-1c848f9d778d))
(fp_line (start 15.24 -8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp dd47bff8-bbbd-444b-aacc-eae37794d277))
(fp_line (start -17.78 -8.89) (end 15.24 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8728f008-efa4-4cbf-a523-1fa63843aed6))
(fp_line (start -17.78 8.89) (end -17.78 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 9d816817-4c80-40e6-8dd6-2f79d7770528))
(fp_line (start -17.78 8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 205a2a75-6c43-4664-a8fa-969af4abbc20))
(fp_line (start 15.24 -8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 545734f3-3323-43bd-94ce-01cb13acc3ab))
(fp_poly
(pts
(xy -14.478 -10.16)
(xy -13.462 -10.16)
(xy -13.462 -9.144)
(xy -14.478 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp adb68624-e032-402c-911a-a1101f4f02d2))
(fp_poly
(pts
(xy -13.462 10.16)
(xy -14.478 10.16)
(xy -14.478 9.144)
(xy -13.462 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp fae2dee7-a4c1-4787-8f52-f3f07fc1b2cc))
(fp_poly
(pts
(xy -11.938 -10.16)
(xy -10.922 -10.16)
(xy -10.922 -9.144)
(xy -11.938 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 47ab79be-3135-41aa-9e96-dba3de710457))
(fp_poly
(pts
(xy -10.922 10.16)
(xy -11.938 10.16)
(xy -11.938 9.144)
(xy -10.922 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 00ac76c9-8617-42ff-8113-efa028189f89))
(fp_poly
(pts
(xy -9.398 -10.16)
(xy -8.382 -10.16)
(xy -8.382 -9.144)
(xy -9.398 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp bb1ef440-2321-481c-9597-9c8fbfc276d4))
(fp_poly
(pts
(xy -8.382 10.16)
(xy -9.398 10.16)
(xy -9.398 9.144)
(xy -8.382 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp c6d3cace-8dbb-44a0-b598-d006331e107a))
(fp_poly
(pts
(xy -6.858 -10.16)
(xy -5.842 -10.16)
(xy -5.842 -9.144)
(xy -6.858 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp d35aac62-b06a-4154-a594-e43d51c555c0))
(fp_poly
(pts
(xy -5.842 10.16)
(xy -6.858 10.16)
(xy -6.858 9.144)
(xy -5.842 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 3083cbe5-e7be-46bd-a15a-6b50aa6e0787))
(fp_poly
(pts
(xy -4.318 -10.16)
(xy -3.302 -10.16)
(xy -3.302 -9.144)
(xy -4.318 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp bf3daea0-6f25-4f13-9c06-feae703392e0))
(fp_poly
(pts
(xy -3.302 10.16)
(xy -4.318 10.16)
(xy -4.318 9.144)
(xy -3.302 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp d4a3fa51-7495-42d3-958d-3150bc8c2e45))
(fp_poly
(pts
(xy -1.778 -10.16)
(xy -0.762 -10.16)
(xy -0.762 -9.144)
(xy -1.778 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 7e90cbee-010b-4c40-90c2-5978973d3b23))
(fp_poly
(pts
(xy -0.762 10.16)
(xy -1.778 10.16)
(xy -1.778 9.144)
(xy -0.762 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 4636bbc5-f0cd-46bc-b19b-f22364f22500))
(fp_poly
(pts
(xy 0.762 -10.16)
(xy 1.778 -10.16)
(xy 1.778 -9.144)
(xy 0.762 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 310ff0bb-b9e7-401e-82d1-0083b8612300))
(fp_poly
(pts
(xy 1.778 10.16)
(xy 0.762 10.16)
(xy 0.762 9.144)
(xy 1.778 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 0429770f-33a4-46d5-b3e0-ec1d27d716b9))
(fp_poly
(pts
(xy 3.302 -10.16)
(xy 4.318 -10.16)
(xy 4.318 -9.144)
(xy 3.302 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 8372aa6e-f311-498f-bf9a-56069dee758d))
(fp_poly
(pts
(xy 4.318 10.16)
(xy 3.302 10.16)
(xy 3.302 9.144)
(xy 4.318 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 6fe25fe8-e633-478b-99d9-8e6ce0a7973e))
(fp_poly
(pts
(xy 5.842 -10.16)
(xy 6.858 -10.16)
(xy 6.858 -9.144)
(xy 5.842 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 8246457f-6e19-4062-85b6-09a1e8e04004))
(fp_poly
(pts
(xy 6.858 10.16)
(xy 5.842 10.16)
(xy 5.842 9.144)
(xy 6.858 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp ca616008-57ee-43a3-becd-0ad9d8021141))
(fp_poly
(pts
(xy 8.382 -10.16)
(xy 9.398 -10.16)
(xy 9.398 -9.144)
(xy 8.382 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 7d65e5d3-2395-483d-a295-1b3ed7125d33))
(fp_poly
(pts
(xy 9.398 10.16)
(xy 8.382 10.16)
(xy 8.382 9.144)
(xy 9.398 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 35f75ec4-f539-4ffc-87f7-9aa9b172c2ca))
(fp_poly
(pts
(xy 10.922 -10.16)
(xy 11.938 -10.16)
(xy 11.938 -9.144)
(xy 10.922 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp e9e74275-b204-4678-be5f-dd492e45f90a))
(fp_poly
(pts
(xy 11.938 10.16)
(xy 10.922 10.16)
(xy 10.922 9.144)
(xy 11.938 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 94a1482d-ebef-4529-b5b5-023f1e421614))
(fp_poly
(pts
(xy 13.462 -10.16)
(xy 14.478 -10.16)
(xy 14.478 -9.144)
(xy 13.462 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 9a8f811c-d72c-4fbe-b0c6-ac16d78a7ef4))
(fp_poly
(pts
(xy 14.478 10.16)
(xy 13.462 10.16)
(xy 13.462 9.144)
(xy 14.478 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 7d62fd14-90d7-4140-9772-c046991c46e4))
(fp_poly
(pts
(xy -14.478 -10.16)
(xy -13.462 -10.16)
(xy -13.462 -9.144)
(xy -14.478 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp ea05f40c-2372-4b33-a3c6-abf28922dccb))
(fp_poly
(pts
(xy -13.462 10.16)
(xy -14.478 10.16)
(xy -14.478 9.144)
(xy -13.462 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 15c9c85b-84b4-48c3-85d2-ce60fba50076))
(fp_poly
(pts
(xy -11.938 -10.16)
(xy -10.922 -10.16)
(xy -10.922 -9.144)
(xy -11.938 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 5832fc29-7adc-43ef-a8da-f4874d6a7c19))
(fp_poly
(pts
(xy -10.922 10.16)
(xy -11.938 10.16)
(xy -11.938 9.144)
(xy -10.922 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp c0557da1-077b-4555-9fe2-3cd4692c4e14))
(fp_poly
(pts
(xy -9.398 -10.16)
(xy -8.382 -10.16)
(xy -8.382 -9.144)
(xy -9.398 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 99428939-ca5a-49be-b336-c84fccf3b9f5))
(fp_poly
(pts
(xy -8.382 10.16)
(xy -9.398 10.16)
(xy -9.398 9.144)
(xy -8.382 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp b05d46f0-d3f0-4d88-8c16-2996cc55b71c))
(fp_poly
(pts
(xy -6.858 -10.16)
(xy -5.842 -10.16)
(xy -5.842 -9.144)
(xy -6.858 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 10702a46-0262-4002-843f-65d1a9a0d9b2))
(fp_poly
(pts
(xy -5.842 10.16)
(xy -6.858 10.16)
(xy -6.858 9.144)
(xy -5.842 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 4e0d8dbf-e7f2-423f-aca0-343cc0ee01a1))
(fp_poly
(pts
(xy -4.318 -10.16)
(xy -3.302 -10.16)
(xy -3.302 -9.144)
(xy -4.318 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp d3e3d2be-1ed1-4335-a582-c10c6401df08))
(fp_poly
(pts
(xy -3.302 10.16)
(xy -4.318 10.16)
(xy -4.318 9.144)
(xy -3.302 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 7477707e-ba7e-4545-b07b-c0428d70de4d))
(fp_poly
(pts
(xy -1.778 -10.16)
(xy -0.762 -10.16)
(xy -0.762 -9.144)
(xy -1.778 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 47be6131-26d5-462d-924e-695f95073246))
(fp_poly
(pts
(xy -0.762 10.16)
(xy -1.778 10.16)
(xy -1.778 9.144)
(xy -0.762 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 7645f46a-cb22-4584-a552-13061540c263))
(fp_poly
(pts
(xy 0.762 -10.16)
(xy 1.778 -10.16)
(xy 1.778 -9.144)
(xy 0.762 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 000ad61d-373a-4140-8b6f-3a80d02c48c5))
(fp_poly
(pts
(xy 1.778 10.16)
(xy 0.762 10.16)
(xy 0.762 9.144)
(xy 1.778 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 8aa7a9d1-edc4-4eb0-8f8b-171e13ec73c7))
(fp_poly
(pts
(xy 3.302 -10.16)
(xy 4.318 -10.16)
(xy 4.318 -9.144)
(xy 3.302 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 6b6debf6-a23f-4b11-8c25-ecb5c442885a))
(fp_poly
(pts
(xy 4.318 10.16)
(xy 3.302 10.16)
(xy 3.302 9.144)
(xy 4.318 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp c2264ace-c1b5-482d-b21f-5f8ee92eb0a5))
(fp_poly
(pts
(xy 5.842 -10.16)
(xy 6.858 -10.16)
(xy 6.858 -9.144)
(xy 5.842 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp b145b6d0-416b-4d1c-8d43-b03e792e3fb8))
(fp_poly
(pts
(xy 6.858 10.16)
(xy 5.842 10.16)
(xy 5.842 9.144)
(xy 6.858 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 98d3d540-9ad7-4a3a-92d8-d0d0d954d3f7))
(fp_poly
(pts
(xy 8.382 -10.16)
(xy 9.398 -10.16)
(xy 9.398 -9.144)
(xy 8.382 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp b068d14f-c913-4c62-aab5-4eac2db7481b))
(fp_poly
(pts
(xy 9.398 10.16)
(xy 8.382 10.16)
(xy 8.382 9.144)
(xy 9.398 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 74c9dc94-fb44-46e3-b56c-6fa97a0b773b))
(fp_poly
(pts
(xy 10.922 -10.16)
(xy 11.938 -10.16)
(xy 11.938 -9.144)
(xy 10.922 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp c54590cd-5273-4f60-9e0e-76f53b87fa43))
(fp_poly
(pts
(xy 11.938 10.16)
(xy 10.922 10.16)
(xy 10.922 9.144)
(xy 11.938 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp b9b91e80-d05c-42a6-85bb-6831e134728b))
(fp_poly
(pts
(xy 13.462 -10.16)
(xy 14.478 -10.16)
(xy 14.478 -9.144)
(xy 13.462 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 8f8297c2-fe6f-4003-9b33-bfc3980678db))
(fp_poly
(pts
(xy 14.478 10.16)
(xy 13.462 10.16)
(xy 13.462 9.144)
(xy 14.478 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp acd17840-8f68-48ce-b3cd-994a84348472))
(pad "" smd custom (at -13.97 -9.398 180) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 -0.4)
(xy -0.6 -0.4)
(xy -0.6 -0.2)
(xy 0 0.4)
(xy 0.6 -0.2)
)
(width 0) (fill yes))
) (tstamp 9b61feb7-dc81-4c44-aca8-8eeb21587fbc))
(pad "" smd custom (at -13.97 -9.398 180) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 -0.4)
(xy -0.6 -0.4)
(xy -0.6 -0.2)
(xy 0 0.4)
(xy 0.6 -0.2)
)
(width 0) (fill yes))
) (tstamp 40d56519-66a2-49a9-99ee-e64ff8caa46b))
(pad "" thru_hole circle (at -13.97 -7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Paste" "*.Mask")
(zone_connect 0) (tstamp 1d953bc4-1f54-4672-ab4b-4b33b091b0fe))
(pad "" smd rect (at -13.97 -7.62) (size 1.6 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(zone_connect 0) (tstamp ac7197e5-be8e-4b80-8975-905da86431a8))
(pad "" thru_hole circle (at -13.97 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 9ef4c8d7-78cc-4944-8f35-e7b8518789b0))
(pad "" smd rect (at -13.97 7.62) (size 1.6 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(zone_connect 0) (tstamp f874b058-488d-4210-b9a3-703e1012363d))
(pad "" smd custom (at -13.97 9.398) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 -0.4)
(xy -0.6 -0.4)
(xy -0.6 -0.2)
(xy 0 0.4)
(xy 0.6 -0.2)
)
(width 0) (fill yes))
) (tstamp 8af48a76-1cc9-4a6e-86cf-ea3c6ee54a95))
(pad "" smd custom (at -13.97 9.398) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 -0.4)
(xy -0.6 -0.4)
(xy -0.6 -0.2)
(xy 0 0.4)
(xy 0.6 -0.2)
)