-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsamtec_dbg.kicad_pcb
9111 lines (9094 loc) · 337 KB
/
samtec_dbg.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" signal)
(2 "In2.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "Net-(J1-Pad10)")
(net 2 "Net-(J1-Pad9)")
(net 3 "Net-(J1-Pad8)")
(net 4 "Net-(J1-Pad7)")
(net 5 "Net-(J1-Pad6)")
(net 6 "Net-(J1-Pad4)")
(net 7 "Net-(J1-Pad3)")
(net 8 "Net-(J1-Pad2)")
(net 9 "Net-(J1-Pad1)")
(net 10 "GND")
(footprint "Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical_SMD" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-0000617759bc)
(at 110 131 180)
(descr "surface-mounted straight pin header, 2x05, 2.54mm pitch, double rows")
(tags "Surface mounted pin header SMD 2x05 2.54mm double row")
(path "/00000000-0000-0000-0000-00006178146e")
(attr smd)
(fp_text reference "J1" (at 0 -7.41 270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 72da446e-9ed5-43f4-ba41-fc3ffc07edb0)
)
(fp_text value "Conn_02x05_Odd_Even" (at 0 7.41) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7b77677-b5cd-4f34-8c71-f696f2a18a32)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6dc93e03-147d-4a7d-8d5d-e4b51e58f136)
)
(fp_line (start -4.04 -5.84) (end -2.6 -5.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd4349e8-50ae-4889-9567-af2fe0d5e6c6))
(fp_line (start -2.6 -6.41) (end -2.6 -5.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42ff2a9b-fea7-441b-b370-ca81d27fd7e6))
(fp_line (start -2.6 -6.41) (end 2.6 -6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2d00944-32f4-45f1-a4d9-e5ff031067ac))
(fp_line (start -2.6 -4.32) (end -2.6 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a05b0c4-485e-414b-a346-60645deb05d0))
(fp_line (start -2.6 -1.78) (end -2.6 -0.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32459f93-93f1-46f1-b5d9-b2f81316c370))
(fp_line (start -2.6 0.76) (end -2.6 1.78)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eaeee525-208b-4a91-8e2e-497c0c257aab))
(fp_line (start -2.6 3.3) (end -2.6 4.32)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d6ad7f3-a12f-4a10-b448-fd8f6063e65b))
(fp_line (start -2.6 5.84) (end -2.6 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 426bbe43-7ea5-45c5-a5b4-a79c7af0562f))
(fp_line (start -2.6 6.41) (end 2.6 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f7021ef1-67fa-4a75-85f8-34260e00e473))
(fp_line (start 2.6 -6.41) (end 2.6 -5.84)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8013e4b6-2f44-4911-a14b-4aba96eb5565))
(fp_line (start 2.6 -4.32) (end 2.6 -3.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44031bd3-c3ab-4b8e-b2e4-5ec617f1d0d3))
(fp_line (start 2.6 -1.78) (end 2.6 -0.76)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4efbf1f0-ad91-4839-819e-a67290d0166c))
(fp_line (start 2.6 0.76) (end 2.6 1.78)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42919767-26d0-4f64-afd1-3d1f95410742))
(fp_line (start 2.6 3.3) (end 2.6 4.32)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b780ef9-9f06-4055-b1db-6853a2f0849c))
(fp_line (start 2.6 5.84) (end 2.6 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b97fe3a-cd30-4e4e-86ab-ec08b56c37aa))
(fp_line (start -5.9 -6.85) (end -5.9 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c7df8a1-7d51-458e-b135-b0ea57e79c2f))
(fp_line (start -5.9 6.85) (end 5.9 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6b3c27bc-ada9-48f4-a59a-f8fe006b018f))
(fp_line (start 5.9 -6.85) (end -5.9 -6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ecfbcb32-2379-4dd5-b5e6-dd73467acbeb))
(fp_line (start 5.9 6.85) (end 5.9 -6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 080db5d9-6c38-494a-a2a4-bdc1e89b9899))
(fp_line (start -3.6 -5.4) (end -3.6 -4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 449a282a-e461-4e1e-b6a6-0bfdd0d4aa45))
(fp_line (start -3.6 -4.76) (end -2.54 -4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 017474bf-3f46-42d6-bbd7-648c87a3dd0e))
(fp_line (start -3.6 -2.86) (end -3.6 -2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dc499182-37c1-4546-bb9b-54cc14665d3d))
(fp_line (start -3.6 -2.22) (end -2.54 -2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d799244-7516-410f-9bdd-88fd8fe27cb2))
(fp_line (start -3.6 -0.32) (end -3.6 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 10dd603e-90d4-4307-87bc-ebc6a9aa7f78))
(fp_line (start -3.6 0.32) (end -2.54 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a959ad83-e63a-4f39-b6f8-0b1fa9f7506e))
(fp_line (start -3.6 2.22) (end -3.6 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 261c90a9-c5dc-4e72-89a1-30c47de9412d))
(fp_line (start -3.6 2.86) (end -2.54 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ddbecb37-41f7-45cf-9893-4b0fa742fbb8))
(fp_line (start -3.6 4.76) (end -3.6 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9a3b140-a2cb-4c1e-8d3c-b8fa7c798479))
(fp_line (start -3.6 5.4) (end -2.54 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb2e52b6-2bf8-43d9-a2ef-63cd3e04f45a))
(fp_line (start -2.54 -5.4) (end -3.6 -5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a963edc9-5a68-453b-ad3f-92de7f79cef4))
(fp_line (start -2.54 -5.4) (end -1.59 -6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6079a03-2e9c-438e-b1a4-533394e7aa3d))
(fp_line (start -2.54 -2.86) (end -3.6 -2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb2c6a98-ebd0-427e-a15e-0db10718471f))
(fp_line (start -2.54 -0.32) (end -3.6 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a835ea71-b6a2-4b41-8e92-826070ed6e8b))
(fp_line (start -2.54 2.22) (end -3.6 2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e87b77c5-6d01-4d39-8062-5c946cad6a22))
(fp_line (start -2.54 4.76) (end -3.6 4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e3335f2-1c38-4673-bee7-dbbb7eeca86c))
(fp_line (start -2.54 6.35) (end -2.54 -5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33f1cbe9-2927-4176-bce0-f59352aac4c1))
(fp_line (start -1.59 -6.35) (end 2.54 -6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 876c4701-3e5a-4c11-b686-e88f6995c7cd))
(fp_line (start 2.54 -6.35) (end 2.54 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc2b6b79-77c7-4ac5-a267-46d7d7df015e))
(fp_line (start 2.54 -5.4) (end 3.6 -5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8fb0532d-ae33-445a-8e28-f7b0a513a654))
(fp_line (start 2.54 -2.86) (end 3.6 -2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8353d1aa-1d0f-45bb-ab93-861c2f0668c1))
(fp_line (start 2.54 -0.32) (end 3.6 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 112f41f5-a2da-431a-8986-5d90f2a6f574))
(fp_line (start 2.54 2.22) (end 3.6 2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 064844f8-719c-49d0-af14-566a35bc183f))
(fp_line (start 2.54 4.76) (end 3.6 4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 565827ce-cfc2-4e4c-92dd-ea11a13ab444))
(fp_line (start 2.54 6.35) (end -2.54 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f5932f6-3b9a-4b9a-9068-c63419cf51fd))
(fp_line (start 3.6 -5.4) (end 3.6 -4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6180a357-0681-40a7-9ad6-44aa0784fbd6))
(fp_line (start 3.6 -4.76) (end 2.54 -4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 77934fa5-efb5-4ac6-a964-7c0c80f7a0ca))
(fp_line (start 3.6 -2.86) (end 3.6 -2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 758b8a1f-3edf-4168-85da-de9caa56b96d))
(fp_line (start 3.6 -2.22) (end 2.54 -2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e88b6cd8-179a-4f3c-9782-c84bd8d2de85))
(fp_line (start 3.6 -0.32) (end 3.6 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6600dbf-42f2-47f0-a236-e757a6b5985a))
(fp_line (start 3.6 0.32) (end 2.54 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9877579a-00a9-4314-a34e-7382b92e6d58))
(fp_line (start 3.6 2.22) (end 3.6 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4736bad4-1c03-4a33-80ff-1b6066551d78))
(fp_line (start 3.6 2.86) (end 2.54 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc9c660a-9e06-47e9-a663-3dfcfdba2904))
(fp_line (start 3.6 4.76) (end 3.6 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c797c268-71c4-4244-b1eb-5ac3f5ee0b2a))
(fp_line (start 3.6 5.4) (end 2.54 5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b41685c-f267-4184-9347-f2d7e282bea1))
(pad "1" smd rect (at -2.525 -5.08 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(J1-Pad1)") (tstamp bd7d46d5-d9e0-459a-bf03-d02edbcd08d0))
(pad "2" smd rect (at 2.525 -5.08 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(J1-Pad2)") (tstamp 039af0a4-d91b-4e7c-b952-3167df7eede8))
(pad "3" smd rect (at -2.525 -2.54 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(J1-Pad3)") (tstamp e804c4fb-154b-4917-b234-20aac59c1edf))
(pad "4" smd rect (at 2.525 -2.54 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(J1-Pad4)") (tstamp bdf0fb2b-70a2-4c90-a226-81ef10a8e21a))
(pad "5" smd rect (at -2.525 0 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "GND") (tstamp c04e27ca-c5d2-4c17-bc3d-bffd5de607dc))
(pad "6" smd rect (at 2.525 0 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(J1-Pad6)") (tstamp 15e55251-dc49-412c-8d4e-b50088e2a4a3))
(pad "7" smd rect (at -2.525 2.54 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(J1-Pad7)") (tstamp 8f924622-6518-4a73-86ea-a3f7f1b12648))
(pad "8" smd rect (at 2.525 2.54 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(J1-Pad8)") (tstamp 11dda90b-a7c4-416a-8180-a740d23eb938))
(pad "9" smd rect (at -2.525 5.08 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(J1-Pad9)") (tstamp 4ad73a21-4613-4923-bdbf-8beb7731b726))
(pad "10" smd rect (at 2.525 5.08 180) (size 3.15 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(J1-Pad10)") (tstamp 5c67ca77-df7a-48ca-9902-4aece8558db9))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x05_P2.54mm_Vertical_SMD.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "samtec:SAMTEC_TFC-105-02-F-D-A-K" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000061775a17)
(at 110 114.87 90)
(path "/00000000-0000-0000-0000-000061774f3c")
(attr through_hole)
(fp_text reference "J3" (at -5.13 -4.9 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ec1d933-ba6e-4c89-8915-b63b0532b7a0)
)
(fp_text value "TFC-105-02-F-D-A-K" (at 10.11 5.04 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 84db53c5-d432-44eb-bdf1-bf432238b1e9)
)
(fp_line (start -4.765 -2.86) (end -4.765 -1.06366)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp bc0a8b58-bfc7-46a1-bd3c-dede5df25ca8))
(fp_line (start -4.765 -2.86) (end -3.26 -2.86)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 863a0348-9196-4f8f-8fab-3f556117edd2))
(fp_line (start -4.765 1.06366) (end -4.765 2.86)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp a9387320-345f-43b4-b6b6-2671195c5e5e))
(fp_line (start -3.26 2.86) (end -4.765 2.86)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 1e6c0b66-df08-47d8-8c20-514341492f1c))
(fp_line (start 3.26 -2.86) (end 4.765 -2.86)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp eb82b5b1-f0c4-4375-87ac-05712af2896b))
(fp_line (start 3.26 2.86) (end 4.765 2.86)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 5ca2d895-44a7-4fb8-9782-8d2ca7d76ea1))
(fp_line (start 4.765 -1.06366) (end 4.765 -2.86)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp ae930806-11c0-4870-bd49-7c901a5159c7))
(fp_line (start 4.765 2.86) (end 4.765 1.06366)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 9969c817-26b9-4781-9a4e-6145cd3c3969))
(fp_circle (center -5.665 1.715) (end -5.565 1.715)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp f40776ca-1a6b-4645-adcd-8a086c4e979f))
(fp_line (start -5.265 -3.425) (end 5.265 -3.425)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea20b6b2-5840-4960-884b-d85fdc637797))
(fp_line (start -5.265 3.425) (end -5.265 -3.425)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51c0dd9f-5431-462d-a79c-d762a974440b))
(fp_line (start 5.265 -3.425) (end 5.265 3.425)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b63c7921-323e-4a1f-82cf-fbcdb16b553b))
(fp_line (start 5.265 3.425) (end -5.265 3.425)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f909fe9a-59d1-402d-a488-3c76611fa4b2))
(fp_line (start -4.765 -2.86) (end 4.765 -2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ec6cf20-a716-41db-b54a-8c6a2ae323ac))
(fp_line (start -4.765 -2.86) (end 4.765 -2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0af2254-12ff-470d-8466-7c2bf1162c48))
(fp_line (start -4.765 2.86) (end -4.765 -2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71ee7804-312f-4486-aba6-ce9948dc68da))
(fp_line (start -4.765 2.86) (end -4.765 -2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a2cde97-6083-4357-b946-3c64818247cf))
(fp_line (start 4.765 -2.86) (end 4.765 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19e1b6f5-db43-4f50-a6e4-ebf5716edb3b))
(fp_line (start 4.765 -2.86) (end 4.765 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 40b4c0b0-f274-443d-945a-bf4bd5a10f8d))
(fp_line (start 4.765 2.86) (end -4.765 2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac26f3d2-d360-476b-988d-af8db8d72115))
(fp_circle (center -5.665 1.715) (end -5.565 1.715)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp 3d057dc4-48d7-44d0-8408-34bc9780b872))
(pad "" np_thru_hole circle (at -4.13 0 90) (size 1.42 1.42) (drill 1.42) (layers "*.Cu" "*.Mask") (tstamp 98db1b87-e69d-4ffb-8b4a-4cee44e9bd32))
(pad "" np_thru_hole circle (at 4.13 0 90) (size 1.42 1.42) (drill 1.42) (layers "*.Cu" "*.Mask") (tstamp a9fb1917-e14c-461c-b9f2-bc630236382f))
(pad "01" smd rect (at -2.54 1.715 90) (size 0.74 2.92) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(J1-Pad1)") (tstamp e0df7da4-c6fc-4358-906d-40740fc95686))
(pad "02" smd rect (at -2.54 -1.715 90) (size 0.74 2.92) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(J1-Pad2)") (tstamp 478fb10b-7f7f-40ea-8f9f-03f150bb4bd1))
(pad "03" smd rect (at -1.27 1.715 90) (size 0.74 2.92) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(J1-Pad3)") (tstamp b6d82ac6-1d3a-4e2f-8465-aa7904ee9a1d))
(pad "04" smd rect (at -1.27 -1.715 90) (size 0.74 2.92) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(J1-Pad4)") (tstamp 833a4ecd-a0be-4074-9b5d-bdc4c49c3118))
(pad "05" smd rect (at 0 1.715 90) (size 0.74 2.92) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "GND") (tstamp 1c42e68c-6c2a-4d59-887a-fbf799b94e8d))
(pad "06" smd rect (at 0 -1.715 90) (size 0.74 2.92) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(J1-Pad6)") (tstamp 7ce523ee-0a03-441a-81b6-14d9067e133c))
(pad "07" smd rect (at 1.27 1.715 90) (size 0.74 2.92) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(J1-Pad7)") (tstamp e1ac6075-4943-46f7-bbfa-ab394c223303))
(pad "08" smd rect (at 1.27 -1.715 90) (size 0.74 2.92) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(J1-Pad8)") (tstamp ccffeb8f-173a-43d8-a14b-47c8ecfde169))
(pad "09" smd rect (at 2.54 1.715 90) (size 0.74 2.92) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(J1-Pad9)") (tstamp 8e2c2311-7514-4109-ab97-0390ada7f0aa))
(pad "10" smd rect (at 2.54 -1.715 90) (size 0.74 2.92) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(J1-Pad10)") (tstamp 85b0d121-b784-4489-9b65-2445fcb73408))
(model "${KIPRJMOD}/TFC-105-02-F-D-A-K.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 0))
)
)
(footprint "samtec:SAMTEC_SFM-105-02-X-DH-XX" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-000061788809)
(at 110.3 102.3)
(path "/00000000-0000-0000-0000-0000617865f3")
(attr through_hole)
(fp_text reference "J2" (at -4.5 3.4 90) (layer "F.SilkS")
(effects (font (size 0.64 0.64) (thickness 0.15)))
(tstamp 5902b45a-33f3-4bb8-b87e-44cd39ca678b)
)
(fp_text value "SFM-105-02-X-DH-XX" (at 5.36 4.8886) (layer "F.Fab")
(effects (font (size 0.64 0.64) (thickness 0.15)))
(tstamp de663d55-ba6e-4fb1-b213-45509c6d0a9d)
)
(fp_text user "PCB-Edge" (at 6.08 -2.385) (layer "F.Fab")
(effects (font (size 0.48 0.48) (thickness 0.12)))
(tstamp 4d543747-2245-41ff-b530-33314a15e0d6)
)
(fp_circle (center -4.4475 -1.205) (end -3.94 -1.205)
(stroke (width 1.014999) (type solid)) (fill none) (layer "F.Paste") (tstamp 40a97b72-bc72-44c6-83ee-6b4b14d2275d))
(fp_circle (center -4.4475 1.205) (end -3.94 1.205)
(stroke (width 1.014999) (type solid)) (fill none) (layer "F.Paste") (tstamp e35cb68c-301d-4bad-bd13-eb07d81c5a24))
(fp_circle (center 4.4475 -1.205) (end 4.955 -1.205)
(stroke (width 1.014999) (type solid)) (fill none) (layer "F.Paste") (tstamp 81c2709f-4306-4b2c-8bdb-3a92a76341ce))
(fp_circle (center 4.4475 1.205) (end 4.955 1.205)
(stroke (width 1.014999) (type solid)) (fill none) (layer "F.Paste") (tstamp d7245c6b-6562-4dbc-97f8-3861fa690394))
(fp_line (start -4.765 2.545) (end -3.3975 2.545)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 025d878c-ff6b-44d7-832c-53f9c1e32da3))
(fp_line (start 3.3975 2.545) (end 4.7625 2.545)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp cc0d2171-cdea-4ec9-8d5e-fc96289f9175))
(fp_circle (center -2.88 3.055) (end -2.78 3.055)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp fe3b799d-a8ea-417f-93c5-4053bc79fa2b))
(fp_line (start -5.7125 -2.785) (end -5.7125 2.795)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7200e50b-257f-4868-9433-1b0ed7a182f5))
(fp_line (start -5.7125 2.795) (end 5.7125 2.795)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f35ebc1-28b2-4efc-b414-8180328800ce))
(fp_line (start -3.615 -7.485) (end -3.615 -2.785)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e62f6226-133d-4c72-81b8-8db220589fa0))
(fp_line (start -3.615 -2.785) (end -5.7125 -2.785)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 31a65a11-bc50-402d-b700-7f863b4b2a8f))
(fp_line (start 3.615 -7.485) (end -3.615 -7.485)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d09d2425-bf75-4af3-8c83-8f7f0aacd1c2))
(fp_line (start 3.615 -2.785) (end 3.615 -7.485)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5294db68-d63c-4095-a492-f305e3f338df))
(fp_line (start 5.7125 -2.785) (end 3.615 -2.785)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 390ded85-e79e-4a71-972a-732796d5ab32))
(fp_line (start 5.7125 2.795) (end 5.7125 -2.785)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8cccf7c2-9c0c-46d5-877b-251f3870d3e4))
(fp_line (start -7.25 -2.265) (end 6.75 -2.265)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 578b3ce6-e66b-4d01-8eb2-32a06a32ca10))
(fp_line (start -4.765 -2.535) (end -4.765 2.545)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47919800-4b5f-4da6-bc86-bf53a9eda201))
(fp_line (start -4.765 2.545) (end 4.765 2.545)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53cf8ddd-93e6-4fde-9708-f45ad06f1345))
(fp_line (start -3.365 -7.235) (end -3.365 -2.535)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60828f20-1a91-41af-98d4-f4550c42b8a5))
(fp_line (start -3.365 -2.535) (end -4.765 -2.535)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dde131d8-5417-4414-901f-463f3bbbd148))
(fp_line (start 3.365 -7.235) (end -3.365 -7.235)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 840e159c-1ea5-4cb5-9c4e-03057d729d30))
(fp_line (start 3.365 -2.535) (end 3.365 -7.235)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6dba519f-b7bd-4432-acfa-65c27dd8dcf7))
(fp_line (start 4.765 -2.535) (end 3.365 -2.535)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cbe6813f-ed69-4f81-8aa1-1e331b201115))
(fp_line (start 4.765 2.545) (end 4.765 -2.535)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4014f5f4-4d37-4108-9656-0cd4d64b95be))
(fp_circle (center -2.88 3.055) (end -2.78 3.055)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp 4a7c82f6-fac4-48c7-8eb6-e2fa03dce7db))
(pad "01" smd rect (at -2.8575 1.775) (size 0.38 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "Net-(J1-Pad1)") (tstamp 802d3860-015c-4af9-9209-554cd69938d4))
(pad "02" smd rect (at -2.2225 1.775) (size 0.38 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "Net-(J1-Pad2)") (tstamp 194a7e28-6fff-4e46-a7b4-89dbbb1c28a6))
(pad "03" smd rect (at -1.5875 1.775) (size 0.38 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(J1-Pad3)") (tstamp 1f6bfeab-2b1d-4fb2-95cc-2e4db5839e63))
(pad "04" smd rect (at -0.9525 1.775) (size 0.38 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(J1-Pad4)") (tstamp 80c76b3d-b528-4cc9-a9a9-1308c713b3be))
(pad "05" smd rect (at -0.3175 1.775) (size 0.38 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "GND") (tstamp f19de27a-25c2-4653-a379-cb3a5f339380))
(pad "06" smd rect (at 0.3175 1.775) (size 0.38 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(J1-Pad6)") (tstamp ecb7e33f-71f5-4bf4-a3fa-643834ec3b55))
(pad "07" smd rect (at 0.9525 1.775) (size 0.38 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(J1-Pad7)") (tstamp b376ece7-4310-4705-87bc-2d01e48ed63f))
(pad "08" smd rect (at 1.5875 1.775) (size 0.38 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(J1-Pad8)") (tstamp c9e6bbf1-c3ad-40e0-95d0-de39d09204bb))
(pad "09" smd rect (at 2.2225 1.775) (size 0.38 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "Net-(J1-Pad9)") (tstamp 59b1d955-72e9-425a-9717-b09c4514377f))
(pad "10" smd rect (at 2.8575 1.775) (size 0.38 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(J1-Pad10)") (tstamp 7ccabed8-7991-4a6a-bee3-af4cc3af64b3))
(pad "S1" thru_hole circle (at -4.0645 1.125) (size 1.218 1.218) (drill 0.71) (layers "*.Cu" "*.Mask") (tstamp a04233a6-7728-4205-b476-18a3f992e435))
(pad "S2" thru_hole circle (at 4.0645 1.125) (size 1.218 1.218) (drill 0.71) (layers "*.Cu" "*.Mask") (tstamp 3692e934-43cb-4a59-bce0-c765220ad1a5))
(pad "S3" thru_hole circle (at -4.0645 -1.125) (size 1.218 1.218) (drill 0.71) (layers "*.Cu" "*.Mask") (tstamp 0150c9e0-0a1f-44fa-8968-045f28e0d4d9))
(pad "S4" thru_hole circle (at 4.0645 -1.125) (size 1.218 1.218) (drill 0.71) (layers "*.Cu" "*.Mask") (tstamp 18042dda-9c3e-4f13-826f-78e709d9fdbe))
(model "${KIPRJMOD}/SFM-105-02-X-DH-XX.step"
(offset (xyz 0 -2.5 2.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 180 0))
)
)
(footprint "tps:OXIDE_Wordmark" (layer "B.Cu")
(tstamp 00000000-0000-0000-0000-00006178dd95)
(at 116.1 110 90)
(attr through_hole)
(fp_text reference "Ref**" (at 0 0 90) (layer "B.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify mirror))
(tstamp 3a1735ef-62e7-4076-9930-17a59a13a7b3)
)
(fp_text value "Val**" (at 0 0 90) (layer "B.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify mirror))
(tstamp 66816acd-c333-4f3f-8d5f-50ec19dc02c4)
)
(fp_poly
(pts
(xy 0.4445 -4.126451)
(xy 0.788458 -4.132267)
(xy 1.132417 -4.138083)
(xy 1.132417 -4.455583)
(xy 0.248708 -4.461107)
(xy -0.635 -4.466631)
(xy -0.635 -4.1275)
(xy 0.0635 -4.1275)
(xy 0.0635 -2.562329)
(xy -0.53975 -2.550583)
(xy -0.53975 -2.233083)
(xy -0.047625 -2.227401)
(xy 0.4445 -2.22172)
(xy 0.4445 -4.126451)
)
(stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 260c9ebb-c670-4834-ad01-e71b19e2e78f))
(fp_poly
(pts
(xy 0.461052 -1.496864)
(xy 0.455083 -1.74625)
(xy 0.216561 -1.752238)
(xy 0.107024 -1.753809)
(xy 0.033471 -1.751636)
(xy -0.010329 -1.745156)
(xy -0.030606 -1.733803)
(xy -0.03293 -1.729641)
(xy -0.036949 -1.697466)
(xy -0.039086 -1.633332)
(xy -0.039137 -1.547579)
(xy -0.037825 -1.480236)
(xy -0.03175 -1.259417)
(xy 0.217636 -1.253447)
(xy 0.467022 -1.247478)
(xy 0.461052 -1.496864)
)
(stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp bfafd4a2-3eb9-4fe3-b7d7-c38e26047f5d))
(fp_poly
(pts
(xy 3.386667 -4.466167)
(xy 3.026833 -4.466167)
(xy 3.025723 -4.280958)
(xy 3.024809 -4.193153)
(xy 3.022307 -4.141869)
(xy 3.016632 -4.121294)
(xy 3.006198 -4.125615)
(xy 2.989657 -4.148667)
(xy 2.913923 -4.241229)
(xy 2.81436 -4.332869)
(xy 2.707379 -4.409508)
(xy 2.648073 -4.441689)
(xy 2.586272 -4.467532)
(xy 2.526031 -4.484597)
(xy 2.454926 -4.495061)
(xy 2.360532 -4.5011)
(xy 2.296583 -4.503257)
(xy 2.188544 -4.505218)
(xy 2.110537 -4.502959)
(xy 2.050348 -4.494936)
(xy 1.995759 -4.479605)
(xy 1.941622 -4.458411)
(xy 1.769417 -4.366065)
(xy 1.625772 -4.244667)
(xy 1.507305 -4.090976)
(xy 1.449501 -3.987184)
(xy 1.376628 -3.807217)
(xy 1.332 -3.614466)
(xy 1.313492 -3.39892)
(xy 1.312701 -3.342427)
(xy 1.315068 -3.308179)
(xy 1.726857 -3.308179)
(xy 1.737445 -3.513563)
(xy 1.778293 -3.710359)
(xy 1.801156 -3.778709)
(xy 1.863899 -3.900174)
(xy 1.952014 -4.007591)
(xy 2.055875 -4.09112)
(xy 2.151381 -4.136647)
(xy 2.284939 -4.161085)
(xy 2.430516 -4.157493)
(xy 2.57005 -4.127296)
(xy 2.64139 -4.098001)
(xy 2.763556 -4.013489)
(xy 2.866549 -3.896475)
(xy 2.943361 -3.755009)
(xy 2.946097 -3.748179)
(xy 2.965858 -3.692102)
(xy 2.979273 -3.63535)
(xy 2.987529 -3.567793)
(xy 2.99181 -3.4793)
(xy 2.993301 -3.359738)
(xy 2.993346 -3.344333)
(xy 2.992785 -3.222928)
(xy 2.989645 -3.133553)
(xy 2.982691 -3.065927)
(xy 2.970692 -3.009768)
(xy 2.952414 -2.954794)
(xy 2.944055 -2.933302)
(xy 2.871555 -2.797929)
(xy 2.772882 -2.681421)
(xy 2.657228 -2.5941)
(xy 2.628233 -2.578762)
(xy 2.553021 -2.549476)
(xy 2.469946 -2.534348)
(xy 2.370667 -2.530084)
(xy 2.205827 -2.547664)
(xy 2.062966 -2.601205)
(xy 1.943558 -2.689701)
(xy 1.849077 -2.812145)
(xy 1.796725 -2.922302)
(xy 1.746595 -3.106871)
(xy 1.726857 -3.308179)
(xy 1.315068 -3.308179)
(xy 1.328745 -3.110308)
(xy 1.376439 -2.896776)
(xy 1.453815 -2.704978)
(xy 1.558906 -2.538059)
(xy 1.689747 -2.399166)
(xy 1.844369 -2.291446)
(xy 2.014325 -2.219987)
(xy 2.190878 -2.184401)
(xy 2.372311 -2.180516)
(xy 2.54669 -2.207608)
(xy 2.694497 -2.26116)
(xy 2.809611 -2.33033)
(xy 2.90569 -2.411953)
(xy 2.919886 -2.427341)
(xy 3.005667 -2.524793)
(xy 3.005667 -1.227667)
(xy 3.386667 -1.227667)
(xy 3.386667 -4.466167)
)
(stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 7ba42ffa-707e-4ff2-bd43-6d3747680029))
(fp_poly
(pts
(xy 5.195858 -2.191101)
(xy 5.351424 -2.224508)
(xy 5.496818 -2.284052)
(xy 5.52461 -2.298686)
(xy 5.661763 -2.396914)
(xy 5.777677 -2.528698)
(xy 5.870384 -2.689902)
(xy 5.937911 -2.876388)
(xy 5.97829 -3.08402)
(xy 5.989799 -3.275542)
(xy 5.990167 -3.450167)
(xy 4.375577 -3.450167)
(xy 4.387599 -3.566646)
(xy 4.419248 -3.710276)
(xy 4.480202 -3.849328)
(xy 4.562991 -3.967663)
(xy 4.583227 -3.989149)
(xy 4.704753 -4.082705)
(xy 4.842227 -4.141264)
(xy 4.988879 -4.165553)
(xy 5.13794 -4.156296)
(xy 5.282642 -4.11422)
(xy 5.416215 -4.04005)
(xy 5.531889 -3.934511)
(xy 5.57199 -3.883166)
(xy 5.613935 -3.830594)
(xy 5.650636 -3.796349)
(xy 5.667095 -3.788833)
(xy 5.701578 -3.799071)
(xy 5.756696 -3.825462)
(xy 5.821584 -3.861521)
(xy 5.885378 -3.900764)
(xy 5.937211 -3.936707)
(xy 5.966219 -3.962865)
(xy 5.969 -3.969017)
(xy 5.954799 -4.002263)
(xy 5.917016 -4.056215)
(xy 5.862882 -4.122552)
(xy 5.799625 -4.192948)
(xy 5.734477 -4.259082)
(xy 5.674667 -4.312629)
(xy 5.661545 -4.322961)
(xy 5.558467 -4.39322)
(xy 5.456769 -4.442925)
(xy 5.345387 -4.475415)
(xy 5.213256 -4.494026)
(xy 5.069417 -4.50162)
(xy 4.945993 -4.50328)
(xy 4.853446 -4.500062)
(xy 4.780501 -4.490993)
(xy 4.715881 -4.475103)
(xy 4.699 -4.469717)
(xy 4.514781 -4.393684)
(xy 4.362876 -4.296445)
(xy 4.238456 -4.173225)
(xy 4.13669 -4.019245)
(xy 4.053277 -3.831167)
(xy 4.027956 -3.75666)
(xy 4.010247 -3.686977)
(xy 3.998339 -3.610391)
(xy 3.990417 -3.515173)
(xy 3.984671 -3.389598)
(xy 3.98456 -3.386545)
(xy 3.985851 -3.166055)
(xy 3.997281 -3.069961)
(xy 4.3815 -3.069961)
(xy 4.3815 -3.132667)
(xy 5.593896 -3.132667)
(xy 5.581517 -3.028145)
(xy 5.547595 -2.88332)
(xy 5.484744 -2.750843)
(xy 5.398629 -2.638628)
(xy 5.294913 -2.554588)
(xy 5.215802 -2.517081)
(xy 5.092361 -2.491781)
(xy 4.953942 -2.490709)
(xy 4.819655 -2.512989)
(xy 4.745827 -2.5386)
(xy 4.637937 -2.60546)
(xy 4.540475 -2.700911)
(xy 4.46056 -2.814571)
(xy 4.405311 -2.936058)
(xy 4.381845 -3.05499)
(xy 4.3815 -3.069961)
(xy 3.997281 -3.069961)
(xy 4.008364 -2.976795)
(xy 4.054246 -2.812201)
(xy 4.125643 -2.665711)
(xy 4.2247 -2.530763)
(xy 4.285953 -2.46488)
(xy 4.430745 -2.342614)
(xy 4.588767 -2.256049)
(xy 4.765543 -2.203035)
(xy 4.966595 -2.181424)
(xy 5.0165 -2.180669)
(xy 5.195858 -2.191101)
)
(stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp c948dced-574b-4077-b488-a600c3b81256))
(fp_poly
(pts
(xy -1.278401 -2.236675)
(xy -1.232394 -2.274179)
(xy -1.175575 -2.327482)
(xy -1.164476 -2.338604)
(xy -1.049814 -2.454708)
(xy -1.103129 -2.513229)
(xy -1.13245 -2.544928)
(xy -1.186016 -2.602362)
(xy -1.259056 -2.680436)
(xy -1.346803 -2.774056)
(xy -1.444487 -2.878129)
(xy -1.509555 -2.947376)
(xy -1.607632 -3.052641)
(xy -1.69524 -3.148461)
(xy -1.768403 -3.23034)
(xy -1.823143 -3.293779)
(xy -1.855484 -3.334282)
(xy -1.862667 -3.34667)
(xy -1.848708 -3.368232)
(xy -1.809574 -3.415706)
(xy -1.749382 -3.484439)
(xy -1.672247 -3.569779)
(xy -1.582283 -3.667072)
(xy -1.530274 -3.72246)
(xy -1.429905 -3.828826)
(xy -1.334877 -3.929606)
(xy -1.250562 -4.019096)
(xy -1.182332 -4.091593)
(xy -1.135559 -4.141396)
(xy -1.123676 -4.154097)
(xy -1.049471 -4.233611)
(xy -1.164304 -4.349889)
(xy -1.222249 -4.405368)
(xy -1.271173 -4.446457)
(xy -1.301965 -4.465624)
(xy -1.304999 -4.466167)
(xy -1.325712 -4.451257)
(xy -1.371111 -4.409195)
(xy -1.437216 -4.343982)
(xy -1.520047 -4.259616)
(xy -1.615625 -4.160098)
(xy -1.719972 -4.049428)
(xy -1.726133 -4.042833)
(xy -1.829946 -3.931909)
(xy -1.92406 -3.831844)
(xy -2.004703 -3.746609)
(xy -2.068103 -3.680173)
(xy -2.110489 -3.636506)
(xy -2.128089 -3.619581)
(xy -2.1283 -3.6195)
(xy -2.14396 -3.634337)
(xy -2.184679 -3.676202)
(xy -2.246686 -3.741124)
(xy -2.326208 -3.825133)
(xy -2.419474 -3.924259)
(xy -2.522712 -4.03453)
(xy -2.530466 -4.042833)
(xy -2.635144 -4.154006)
(xy -2.731217 -4.25426)
(xy -2.814718 -4.339596)
(xy -2.881679 -4.406016)
(xy -2.928132 -4.449521)
(xy -2.95011 -4.466114)
(xy -2.950551 -4.466167)
(xy -2.9764 -4.452)
(xy -3.022183 -4.414524)
(xy -3.078839 -4.361278)
(xy -3.089661 -4.35043)
(xy -3.20396 -4.234694)
(xy -3.163022 -4.187491)
(xy -3.137532 -4.159344)
(xy -3.087508 -4.105161)
(xy -3.017418 -4.029744)
(xy -2.931732 -3.937892)
(xy -2.834919 -3.834408)
(xy -2.756958 -3.751263)
(xy -2.657313 -3.644485)
(xy -2.568028 -3.54764)
(xy -2.492995 -3.465045)
(xy -2.436104 -3.401014)
(xy -2.401246 -3.359866)
(xy -2.391833 -3.34623)
(xy -2.405771 -3.32722)
(xy -2.445112 -3.281569)
(xy -2.506148 -3.213371)
(xy -2.585174 -3.126721)
(xy -2.678482 -3.025713)
(xy -2.782364 -2.914442)
(xy -2.794 -2.902046)
(xy -2.898788 -2.789951)
(xy -2.993402 -2.687724)
(xy -3.074136 -2.599449)
(xy -3.137284 -2.529214)
(xy -3.17914 -2.481106)
(xy -3.195998 -2.459211)
(xy -3.196167 -2.458586)
(xy -3.181583 -2.43494)
(xy -3.144171 -2.39306)
(xy -3.093436 -2.342035)
(xy -3.038887 -2.290951)
(xy -2.990029 -2.248899)
(xy -2.956371 -2.224965)
(xy -2.9492 -2.2225)
(xy -2.928912 -2.237398)
(xy -2.884166 -2.279297)
(xy -2.819124 -2.343998)
(xy -2.737944 -2.427307)
(xy -2.644786 -2.525027)
(xy -2.566263 -2.608792)
(xy -2.465051 -2.717232)
(xy -2.371404 -2.817005)
(xy -2.289805 -2.90338)
(xy -2.224733 -2.971627)
(xy -2.180673 -3.017015)
(xy -2.164327 -3.033018)
(xy -2.150973 -3.043357)
(xy -2.136607 -3.047203)
(xy -2.117706 -3.041451)
(xy -2.090744 -3.022995)
(xy -2.052198 -2.988731)
(xy -1.998543 -2.935552)
(xy -1.926255 -2.860354)
(xy -1.83181 -2.760032)
(xy -1.725917 -2.646726)
(xy -1.621117 -2.535419)
(xy -1.524885 -2.435029)
(xy -1.441189 -2.349554)
(xy -1.373999 -2.282987)
(xy -1.327284 -2.239325)
(xy -1.305013 -2.222563)
(xy -1.304514 -2.2225)
(xy -1.278401 -2.236675)
)
(stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 7ab19914-e01d-4e02-b365-a0a7edee3e96))
(fp_poly
(pts
(xy -4.675036 -1.295936)
(xy -4.484656 -1.330601)
(xy -4.303736 -1.397947)
(xy -4.138338 -1.497972)
(xy -4.010642 -1.612812)
(xy -3.905713 -1.748637)
(xy -3.813444 -1.911425)
(xy -3.741802 -2.086071)
(xy -3.717102 -2.169583)
(xy -3.679445 -2.36016)
(xy -3.65476 -2.57884)
(xy -3.643045 -2.813861)
(xy -3.644295 -3.053461)
(xy -3.658509 -3.285876)
(xy -3.685684 -3.499345)
(xy -3.717443 -3.65125)
(xy -3.792811 -3.872625)
(xy -3.896265 -4.065046)
(xy -4.026248 -4.226827)
(xy -4.181206 -4.356277)
(xy -4.359582 -4.45171)
(xy -4.497072 -4.497246)
(xy -4.625221 -4.519042)
(xy -4.77358 -4.527006)
(xy -4.923384 -4.521187)
(xy -5.055873 -4.501634)
(xy -5.08 -4.495717)
(xy -5.221341 -4.449057)
(xy -5.342254 -4.387037)
(xy -5.458698 -4.300619)
(xy -5.517536 -4.247963)
(xy -5.645956 -4.100054)
(xy -5.750039 -3.919151)
(xy -5.798739 -3.788478)
(xy -5.380564 -3.788478)
(xy -5.323576 -3.88572)
(xy -5.252501 -3.97668)
(xy -5.155233 -4.061004)
(xy -5.04746 -4.125888)
(xy -5.009813 -4.141765)
(xy -4.954996 -4.154317)
(xy -4.87476 -4.163773)
(xy -4.786007 -4.168172)
(xy -4.781756 -4.168223)
(xy -4.688807 -4.166501)
(xy -4.618593 -4.156304)
(xy -4.551732 -4.133416)
(xy -4.491562 -4.105105)
(xy -4.388118 -4.044131)
(xy -4.307787 -3.972214)
(xy -4.240409 -3.878379)
(xy -4.187276 -3.776484)
(xy -4.147029 -3.679713)
(xy -4.115956 -3.577173)
(xy -4.093113 -3.462092)
(xy -4.077559 -3.327698)
(xy -4.068352 -3.167219)
(xy -4.06455 -2.973884)
(xy -4.064324 -2.89268)
(xy -4.06524 -2.761313)
(xy -4.067605 -2.64363)
(xy -4.071157 -2.546483)
(xy -4.075633 -2.476725)
(xy -4.080768 -2.44121)
(xy -4.081745 -2.438978)
(xy -4.094028 -2.441494)
(xy -4.123059 -2.463443)
(xy -4.170037 -2.506065)
(xy -4.23616 -2.5706)
(xy -4.322628 -2.658287)
(xy -4.430637 -2.770367)
(xy -4.561386 -2.90808)
(xy -4.716075 -3.072664)
(xy -4.8959 -3.265361)
(xy -5.102061 -3.487409)
(xy -5.258427 -3.656364)
(xy -5.380564 -3.788478)
(xy -5.798739 -3.788478)
(xy -5.829916 -3.704824)
(xy -5.885719 -3.456641)
(xy -5.917578 -3.174173)
(xy -5.920965 -3.06725)
(xy -5.504662 -3.06725)
(xy -5.503266 -3.196776)
(xy -5.499525 -3.305294)
(xy -5.493293 -3.384085)
(xy -5.489761 -3.406902)
(xy -5.478905 -3.45141)
(xy -5.465795 -3.459718)
(xy -5.440946 -3.437338)
(xy -5.439691 -3.436006)
(xy -5.417811 -3.412621)
(xy -5.370257 -3.361692)
(xy -5.300223 -3.286644)
(xy -5.210901 -3.190898)
(xy -5.105485 -3.077877)
(xy -4.987167 -2.951004)
(xy -4.859139 -2.813702)
(xy -4.786158 -2.735427)
(xy -4.169124 -2.073604)
(xy -4.204129 -2.005177)
(xy -4.297501 -1.864449)
(xy -4.417059 -1.756702)
(xy -4.469902 -1.724003)
(xy -4.527593 -1.694193)
(xy -4.578296 -1.675714)
(xy -4.635368 -1.665911)
(xy -4.712168 -1.662129)
(xy -4.783667 -1.661642)
(xy -4.886598 -1.663391)
(xy -4.959796 -1.669942)
(xy -5.015772 -1.683349)
(xy -5.067037 -1.705672)
(xy -5.074146 -1.70941)
(xy -5.207306 -1.804256)
(xy -5.316898 -1.933523)
(xy -5.402116 -2.095939)
(xy -5.462155 -2.29023)
(xy -5.471929 -2.337253)
(xy -5.481551 -2.409705)
(xy -5.489701 -2.513469)
(xy -5.496232 -2.639826)
(xy -5.501 -2.780055)
(xy -5.503858 -2.925436)
(xy -5.504662 -3.06725)
(xy -5.920965 -3.06725)
(xy -5.925933 -2.910417)
(xy -5.914068 -2.600423)
(xy -5.878318 -2.324734)
(xy -5.818457 -2.082548)
(xy -5.734256 -1.873062)
(xy -5.625486 -1.695474)
(xy -5.556692 -1.612812)
(xy -5.409932 -1.484077)
(xy -5.242326 -1.388021)
(xy -5.059933 -1.324646)
(xy -4.868816 -1.293951)
(xy -4.675036 -1.295936)
)
(stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp e1a8c024-c4e2-4bf1-9a04-ad22a47fec94))
)
(gr_line (start 103 140) (end 103 100)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 0cc4de6d-85d7-4880-80cd-a929ce533259))
(gr_line (start 117 100) (end 117 140)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp 5c198f20-8dcd-426a-a7ee-ca070b8df6c5))
(gr_line (start 117 140) (end 103 140)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp bf9d88a1-097d-4c1d-9cfc-c2f582a94c9b))
(gr_line (start 103 100) (end 117 100)
(stroke (width 0.05) (type solid)) (layer "Edge.Cuts") (tstamp f6865b20-fb5a-4885-b945-ac9199b762d0))
(gr_text "1- ~{SS\n3-} MISO/SDA\n5- GND\n7- CDONE\n9- NC" (at 109.9 139.5 -90) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00006178dbf3)
(effects (font (size 0.8 0.8) (thickness 0.2)) (justify left mirror))
)
(gr_text "MOSI/SDA -2\nSCLK/SCL -4\nVBus -6\n~{RESET} -8\nNC -10" (at 111.1 122.7 -90) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00006178dc65)
(effects (font (size 0.8 0.8) (thickness 0.2)) (justify right mirror))
)
(dimension (type aligned) (layer "Dwgs.User") (tstamp b4f6c881-3781-4707-8c55-9a250d8d4d7e)
(pts (xy 88 100) (xy 117 100))
(height -5.999999)
(gr_text "29.0000 mm" (at 102.5 92.850001) (layer "Dwgs.User") (tstamp b4f6c881-3781-4707-8c55-9a250d8d4d7e)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (prefix "") (suffix "") (units 2) (units_format 1) (precision 4))
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned)
)
(dimension (type aligned) (layer "F.Fab") (tstamp ab1d0e1d-8bfb-40bd-8175-2d22400f3213)
(pts (xy 119 140) (xy 119 100))
(height 2)
(gr_text "40.0000 mm" (at 119.85 120 90) (layer "F.Fab") (tstamp ab1d0e1d-8bfb-40bd-8175-2d22400f3213)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (prefix "") (suffix "") (units 2) (units_format 1) (precision 4))
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned)
)
(dimension (type aligned) (layer "F.Fab") (tstamp c4a23cee-2596-4350-9d29-4c85f4a8024e)
(pts (xy 103 95) (xy 117 95))
(height 1)
(gr_text "14.0000 mm" (at 110 94.85) (layer "F.Fab") (tstamp c4a23cee-2596-4350-9d29-4c85f4a8024e)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (prefix "") (suffix "") (units 2) (units_format 1) (precision 4))
(style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned)
)
(segment (start 105.08 125.92) (end 105.08 125.92) (width 0.25) (layer "F.Cu") (net 1) (tstamp 00000000-0000-0000-0000-000061789948))
(segment (start 105.5 112.33) (end 105.5 112.33) (width 0.25) (layer "F.Cu") (net 1) (tstamp 00000000-0000-0000-0000-000061789be1))
(segment (start 107.475 125.92) (end 105.08 125.92) (width 0.25) (layer "F.Cu") (net 1) (tstamp 0081b4cc-88cf-44e2-9e01-aab37e24a831))
(segment (start 113.1575 105.818324) (end 109.385791 109.590033) (width 0.33) (layer "F.Cu") (net 1) (tstamp 58a627f9-e8e8-470c-b024-dcd6d0ddbfca))
(segment (start 108.285 112.33) (end 105.525014 112.33) (width 0.33) (layer "F.Cu") (net 1) (tstamp 7cc97538-aef6-4b39-bd23-ec5ba2e91a79))
(segment (start 105.525014 111.764315) (end 105.525014 112.33) (width 0.33) (layer "F.Cu") (net 1) (tstamp 9f27f14c-7e9a-4c4f-a354-d6ee29a1a126))
(segment (start 107.699296 109.590033) (end 105.525014 111.764315) (width 0.33) (layer "F.Cu") (net 1) (tstamp df10e7e7-3bd6-4b0a-8603-f5205d13b3ce))
(segment (start 109.385791 109.590033) (end 107.699296 109.590033) (width 0.33) (layer "F.Cu") (net 1) (tstamp e69f0eca-6e3e-4439-b688-273cd7d341c1))