-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfreshboard.kicad_pcb
4295 lines (4275 loc) · 202 KB
/
freshboard.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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.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)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "output/")
)
)
(net 0 "")
(net 1 "row0")
(net 2 "Net-(SW1-Pad2)")
(net 3 "Net-(SW2-Pad2)")
(net 4 "Net-(SW3-Pad2)")
(net 5 "Net-(SW4-Pad2)")
(net 6 "Net-(SW5-Pad2)")
(net 7 "Net-(SW6-Pad2)")
(net 8 "unconnected-(RZ1-Pad2)")
(net 9 "unconnected-(RZ1-Pad3)")
(net 10 "unconnected-(RZ1-Pad4)")
(net 11 "unconnected-(RZ1-Pad5)")
(net 12 "unconnected-(RZ1-Pad6)")
(net 13 "unconnected-(RZ1-Pad7)")
(net 14 "unconnected-(RZ1-Pad8)")
(net 15 "unconnected-(RZ1-Pad9)")
(net 16 "unconnected-(RZ1-Pad10)")
(net 17 "col5")
(net 18 "col4")
(net 19 "col3")
(net 20 "col2")
(net 21 "col1")
(net 22 "col0")
(net 23 "unconnected-(RZ1-Pad18)")
(net 24 "unconnected-(RZ1-Pad19)")
(net 25 "unconnected-(RZ1-Pad20)")
(net 26 "unconnected-(RZ1-Pad21)")
(net 27 "GND")
(net 28 "unconnected-(RZ1-Pad1)")
(net 29 "unconnected-(RZ1-Pad22)")
(footprint "Diode_SMD:D_SOD-123" (layer "F.Cu")
(tedit 58645DC7) (tstamp 0916f39f-525b-447a-a062-5d2b2710cc4d)
(at 115.57 99.06 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "freshboard.kicad_sch")
(property "Sheetname" "")
(path "/62a2ab7d-64d8-43c6-886e-2599bd5c161a")
(attr smd)
(fp_text reference "D2" (at 0 -2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 494d6c83-37e5-4923-a27d-4498908bb10e)
)
(fp_text value "1N4148W" (at 0 2.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b227e0b-e2df-4074-acc3-3a770f1b72b8)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c04b629b-7066-48f8-8208-8b0376533abf)
)
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp 702ceb9b-4681-4091-8e63-085113da4ee2))
(fp_line (start -2.25 -1) (end -2.25 1) (layer "F.SilkS") (width 0.12) (tstamp aa8e5ccf-f16a-4072-8f02-efc9c23a7bc2))
(fp_line (start -2.25 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp c6452cfd-cfad-4ba5-8ad2-9bcb8c294202))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 300390b9-51cf-4e8c-add6-b0fa4aac6ca4))
(fp_line (start 2.35 -1.15) (end 2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 412b8494-847e-4b63-8176-6c9c05b3e748))
(fp_line (start -2.35 -1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 467b2516-b6a0-496f-abe6-87b0b081a403))
(fp_line (start 2.35 1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp fe16353a-379d-4254-991d-6d6519aa3437))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 07890e97-9bf8-4a64-922e-f190d53805db))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 283adc2f-8359-49eb-9ad3-31efd14d7a6e))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp 37c6314f-80fb-4a92-8a9e-aa864d808791))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp 4da0142b-b699-4408-adeb-1b540f98d6f0))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 641c5a61-5690-4149-84a9-59cc1408587c))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 6bf26542-7154-4a98-a6b0-1e7266568061))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 6dd8f89a-161b-4bb4-b34d-12d453ec4d74))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 8165dc29-22c0-410f-a478-24507f49bfde))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp b33d7612-095d-443e-86d2-beff65c8f12f))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp b62f3600-7677-4b31-adc4-865ac9b2e9ab))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp db7c55bb-4eae-4cfe-9158-8dbbd17f79e6))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "row0") (pinfunction "K") (pintype "passive") (tstamp 3eb33057-e647-4e5a-ab36-5f3ebc8666d3))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(SW2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 91eacbb7-2e6c-4494-ab10-a641cc44133d))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "marbastlib-mx:SW_MX_HS_1u" (layer "F.Cu")
(tedit 6298CFE2) (tstamp 0e28516c-21e8-4997-b141-7e125455051c)
(at 198.12 93.98)
(descr "Footprint for Cherry MX style switches with Kailh hotswap socket")
(property "Sheetfile" "freshboard.kicad_sch")
(property "Sheetname" "")
(path "/0f6906b5-d5ad-4319-9702-6726474c518b")
(attr smd exclude_from_pos_files exclude_from_bom)
(fp_text reference "SW6" (at -4.25 -1.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 614b9201-e898-4493-91b1-707aa50954ee)
)
(fp_text value "MX_SW_HS" (at 0 -8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3ef87b94-f892-46fc-86dc-a97efee8dbac)
)
(fp_line (start 6.085176 -3.95022) (end 6.085176 -4.75022) (layer "F.SilkS") (width 0.15) (tstamp 09cda355-240a-4e58-9353-b3eba225d0fe))
(fp_line (start -4.364824 -2.70022) (end 0.2 -2.70022) (layer "F.SilkS") (width 0.15) (tstamp 63670683-04d7-44b5-8a6f-d2472e40b85a))
(fp_line (start -4.864824 -6.75022) (end -4.864824 -6.52022) (layer "F.SilkS") (width 0.15) (tstamp 72c62343-b412-4fcc-9073-000669b08b1f))
(fp_line (start 4.085176 -6.75022) (end -1.814824 -6.75022) (layer "F.SilkS") (width 0.15) (tstamp 7c1d4ad5-dc7e-4302-b5cd-fbbdd0a49c15))
(fp_line (start -4.864824 -3.67022) (end -4.864824 -3.20022) (layer "F.SilkS") (width 0.15) (tstamp 91df1a80-621a-42c7-b48a-e343aee80e9a))
(fp_line (start 6.085176 -1.10022) (end 6.085176 -0.86022) (layer "F.SilkS") (width 0.15) (tstamp d05d1062-00ba-4eba-a8db-babce835370f))
(fp_line (start -3.314824 -6.75022) (end -4.864824 -6.75022) (layer "F.SilkS") (width 0.15) (tstamp efefad19-29a1-4836-b41a-94bbe0e1e5e4))
(fp_arc (start -4.364824 -2.70022) (mid -4.718377 -2.846667) (end -4.864824 -3.20022) (layer "F.SilkS") (width 0.15) (tstamp 47154773-f812-4cde-b2aa-26e50e64109a))
(fp_arc (start 4.085176 -6.75022) (mid 5.499392 -6.164435) (end 6.085176 -4.75022) (layer "F.SilkS") (width 0.15) (tstamp d1e347c4-a812-4c41-83ec-e2f2e8ca1d64))
(fp_arc (start 0.2 -2.70022) (mid 1.670693 -2.183637) (end 2.494322 -0.86022) (layer "F.SilkS") (width 0.15) (tstamp d4665ee2-247c-4b29-ab36-cde41a797c5f))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 2af68bdf-c625-4a58-834f-fa4c3e7ccf0f))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp ac1f5c1e-83a1-46b8-ae16-2158a0eccaba))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp b18736e0-f9d7-4feb-a2e1-7b8c841d2c18))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp fb69f496-e114-462c-82fa-a562b96e1f39))
(fp_line (start 7 6.5) (end 7 -6.5) (layer "Eco2.User") (width 0.05) (tstamp 37dea7f2-0655-41c9-ac43-2176da82b190))
(fp_line (start 6.5 -7) (end -6.5 -7) (layer "Eco2.User") (width 0.05) (tstamp a95d31af-aae1-4d83-9feb-01892161b30b))
(fp_line (start -6.5 7) (end 6.5 7) (layer "Eco2.User") (width 0.05) (tstamp e2943af5-81ea-4387-8b82-554e41d5235f))
(fp_line (start -7 -6.5) (end -7 6.5) (layer "Eco2.User") (width 0.05) (tstamp eb1b5ac4-9a11-40eb-bd2e-0dfa22b6b04d))
(fp_arc (start -7 -6.5) (mid -6.853553 -6.853553) (end -6.5 -7) (layer "Eco2.User") (width 0.05) (tstamp 8f04665a-3dae-4cac-bd41-f5466cc3c103))
(fp_arc (start -6.497236 6.998884) (mid -6.850789 6.852437) (end -6.997236 6.498884) (layer "Eco2.User") (width 0.05) (tstamp a3b2cae8-131d-42d9-aca0-bc7339785df0))
(fp_arc (start 6.5 -7) (mid 6.853553 -6.853553) (end 7 -6.5) (layer "Eco2.User") (width 0.05) (tstamp ce96ef62-a3e1-4228-9383-4fbc2548cc17))
(fp_arc (start 7 6.5) (mid 6.853553 6.853553) (end 6.5 7) (layer "Eco2.User") (width 0.05) (tstamp e3875125-eac4-4133-93aa-867b07dfe671))
(fp_line (start -7 7) (end -7 -7) (layer "B.CrtYd") (width 0.05) (tstamp 1093be5c-45d7-4c4c-a6c3-6e511c3f667b))
(fp_line (start 7 7) (end -7 7) (layer "B.CrtYd") (width 0.05) (tstamp 2251f1d3-aafd-4524-8fc1-112420fdf6e9))
(fp_line (start 7 -7) (end 7 7) (layer "B.CrtYd") (width 0.05) (tstamp a1a605be-9a51-439f-80cb-9b116288c270))
(fp_line (start -7 -7) (end 7 -7) (layer "B.CrtYd") (width 0.05) (tstamp c313721a-6052-4c7c-b1fa-aba435049928))
(fp_line (start 8.685176 -1.30022) (end 6.085176 -1.30022) (layer "F.CrtYd") (width 0.05) (tstamp 195b35cd-ee05-4c5a-a2dc-24b42cd147c1))
(fp_line (start 6.085176 -3.75022) (end 8.685176 -3.75022) (layer "F.CrtYd") (width 0.05) (tstamp 26eb22dd-e1b5-47ec-95dc-e7b1d4bc9685))
(fp_line (start 6.085176 -0.86022) (end 2.494322 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp 3483664e-3955-4b7d-bfca-8813a9a64a72))
(fp_line (start -4.864824 -3.87022) (end -4.864824 -2.70022) (layer "F.CrtYd") (width 0.05) (tstamp 5b6027fe-b505-41e7-88b4-1cd92db45243))
(fp_line (start -4.864824 -3.87022) (end -7.414824 -3.87022) (layer "F.CrtYd") (width 0.05) (tstamp 61de72ed-25f3-429c-815f-99d861165f5d))
(fp_line (start 6.085176 -1.30022) (end 6.085176 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp 6aa5fd23-f2b1-4fbe-a5ea-60d8ff941b10))
(fp_line (start -7.414824 -6.32022) (end -4.864824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp 755b0bee-bfb3-4ac6-a2a5-bdc963ab8048))
(fp_line (start -7.414824 -3.87022) (end -7.414824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp 7579c5c0-140f-47a5-87d8-463e2b228cd5))
(fp_line (start 4.085176 -6.75022) (end -4.864824 -6.75022) (layer "F.CrtYd") (width 0.05) (tstamp 91033614-bb38-412b-837e-3bbc5be8c813))
(fp_line (start 6.085176 -3.75022) (end 6.085176 -4.75022) (layer "F.CrtYd") (width 0.05) (tstamp a6d3e577-be9d-4550-ad18-997a0631ac52))
(fp_line (start -4.864824 -6.75022) (end -4.864824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp a83c3c2e-a795-462d-a15c-558226672503))
(fp_line (start -4.864824 -2.70022) (end 0.2 -2.70022) (layer "F.CrtYd") (width 0.05) (tstamp b828eb6f-6ade-4787-8249-a0b91682372f))
(fp_line (start 8.685176 -3.75022) (end 8.685176 -1.30022) (layer "F.CrtYd") (width 0.05) (tstamp d5a5d365-7aa4-45c6-bce2-9f2448ec5cd3))
(fp_arc (start 0.2 -2.70022) (mid 1.670502 -2.183399) (end 2.494322 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp 1e0b52d3-f577-449b-b69c-3208753f4fe0))
(fp_arc (start 4.085176 -6.75022) (mid 5.499392 -6.164435) (end 6.085176 -4.75022) (layer "F.CrtYd") (width 0.05) (tstamp f8acf80c-2848-4dfd-8f15-867c3cf065c8))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 4d62279e-0574-464a-9b60-d0cb6c6e7e2d))
(pad "" np_thru_hole circle (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp dfa03466-1d6b-4804-a088-336901eb51b7))
(pad "" np_thru_hole circle (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp f8d4e954-d918-462e-a71e-5ae378c2ee8f))
(pad "1" smd roundrect (at 7.36 -2.54) (size 2.55 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 17 "col5") (pinfunction "1") (pintype "passive") (tstamp 346789d7-35ee-470b-b401-44e5b2776379))
(pad "1" thru_hole circle (at 3.81 -2.54) (size 3.3 3.3) (drill 3) (layers *.Cu *.Mask)
(net 17 "col5") (pinfunction "1") (pintype "passive") (tstamp d427c78c-e639-4b6b-809c-526b1ceb886a))
(pad "1" smd rect (at 5.635 -2.54 180) (size 1.65 2.5) (layers "F.Cu")
(net 17 "col5") (pinfunction "1") (pintype "passive") (tstamp fdea5ab1-7bce-4a69-b6f7-d48c2030571f))
(pad "2" smd rect (at -4.34 -5.08) (size 1.65 2.5) (layers "F.Cu")
(net 7 "Net-(SW6-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 4e18034a-7034-4b04-ac19-0f627c9ec368))
(pad "2" smd roundrect (at -6.09 -5.08) (size 2.55 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 7 "Net-(SW6-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 56722242-d5cb-4639-92f5-c76e7a61f5f6))
(pad "2" thru_hole circle (at -2.54 -5.08) (size 3.3 3.3) (drill 3) (layers *.Cu *.Mask)
(net 7 "Net-(SW6-Pad2)") (pinfunction "2") (pintype "passive") (tstamp fa64c2df-adc2-45d2-b1bc-c5118c5f1915))
(model "${KIPRJMOD}/marbastlib/3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
(model "${KIPRJMOD}/../marbastlib/3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
(model "${KIPRJMOD}/../3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
)
(footprint "marbastlib-mx:SW_MX_HS_1u" (layer "F.Cu")
(tedit 6298CFE2) (tstamp 24eba10b-12b4-43c1-ab3a-d83c82d2bc1c)
(at 179.07 93.98)
(descr "Footprint for Cherry MX style switches with Kailh hotswap socket")
(property "Sheetfile" "freshboard.kicad_sch")
(property "Sheetname" "")
(path "/0897c211-3584-4b4c-a973-f920b8662acb")
(attr smd exclude_from_pos_files exclude_from_bom)
(fp_text reference "SW5" (at -4.25 -1.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aa442070-13b7-4889-999f-e1d264b12278)
)
(fp_text value "MX_SW_HS" (at 0 -8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9112a0b4-542b-444a-967d-452dc03bad72)
)
(fp_line (start -4.364824 -2.70022) (end 0.2 -2.70022) (layer "F.SilkS") (width 0.15) (tstamp 06a9fb17-2285-417b-b81f-cfdcd475bc5d))
(fp_line (start -4.864824 -3.67022) (end -4.864824 -3.20022) (layer "F.SilkS") (width 0.15) (tstamp 522fef90-1e41-4170-b938-f55215da52e1))
(fp_line (start 6.085176 -3.95022) (end 6.085176 -4.75022) (layer "F.SilkS") (width 0.15) (tstamp 75e0c5b1-f80c-446d-9fdf-80691f9fea9b))
(fp_line (start 6.085176 -1.10022) (end 6.085176 -0.86022) (layer "F.SilkS") (width 0.15) (tstamp 81fc7d5a-440f-4601-b5d4-31e4ec46948c))
(fp_line (start 4.085176 -6.75022) (end -1.814824 -6.75022) (layer "F.SilkS") (width 0.15) (tstamp b41766db-735a-4144-b07a-45c7b061a85f))
(fp_line (start -3.314824 -6.75022) (end -4.864824 -6.75022) (layer "F.SilkS") (width 0.15) (tstamp bf0f6901-b306-4b71-b25a-39b27e1dcade))
(fp_line (start -4.864824 -6.75022) (end -4.864824 -6.52022) (layer "F.SilkS") (width 0.15) (tstamp f6ce1676-0677-40b0-8638-e5166e193259))
(fp_arc (start 0.2 -2.70022) (mid 1.670693 -2.183637) (end 2.494322 -0.86022) (layer "F.SilkS") (width 0.15) (tstamp 31c21331-58ea-4206-8a44-fa3533db8232))
(fp_arc (start 4.085176 -6.75022) (mid 5.499392 -6.164435) (end 6.085176 -4.75022) (layer "F.SilkS") (width 0.15) (tstamp 3750e28b-8a7d-4890-a83a-4161c6f52a4c))
(fp_arc (start -4.364824 -2.70022) (mid -4.718377 -2.846667) (end -4.864824 -3.20022) (layer "F.SilkS") (width 0.15) (tstamp 4ca2a67c-84f1-42c7-baca-8edbd1a156bd))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 4a99ec40-06df-4303-8827-bb4ef81b96bb))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 9b69d19e-9390-4e51-b34c-86e12f403a19))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp b4afd98e-04e5-4a14-8c53-347060e257d1))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp da0c1326-3791-4e43-9cc8-36eef7ad622f))
(fp_line (start 6.5 -7) (end -6.5 -7) (layer "Eco2.User") (width 0.05) (tstamp 5b08f8cd-7139-4fe0-b0bd-a1037c9992c6))
(fp_line (start -7 -6.5) (end -7 6.5) (layer "Eco2.User") (width 0.05) (tstamp 5bec15ce-c121-4278-93c7-f18318e534af))
(fp_line (start -6.5 7) (end 6.5 7) (layer "Eco2.User") (width 0.05) (tstamp 9f7403e3-c13a-4d1d-9165-75fa9f7c66fe))
(fp_line (start 7 6.5) (end 7 -6.5) (layer "Eco2.User") (width 0.05) (tstamp de380776-b58f-407e-9bc4-6a766c712227))
(fp_arc (start -6.497236 6.998884) (mid -6.850789 6.852437) (end -6.997236 6.498884) (layer "Eco2.User") (width 0.05) (tstamp 104fe1c6-94b6-40f5-9db2-c7cb6aded4ef))
(fp_arc (start -7 -6.5) (mid -6.853553 -6.853553) (end -6.5 -7) (layer "Eco2.User") (width 0.05) (tstamp 39a1b730-c8fd-4b47-8534-da4bdef1e2b6))
(fp_arc (start 7 6.5) (mid 6.853553 6.853553) (end 6.5 7) (layer "Eco2.User") (width 0.05) (tstamp d099ce17-8576-4f07-8aac-073a6010cdac))
(fp_arc (start 6.5 -7) (mid 6.853553 -6.853553) (end 7 -6.5) (layer "Eco2.User") (width 0.05) (tstamp ead2a755-8265-4f8a-bf3f-06ad0bd6b609))
(fp_line (start -7 7) (end -7 -7) (layer "B.CrtYd") (width 0.05) (tstamp 097b9fe6-b3c6-4ccf-b0e3-e7f904d122c4))
(fp_line (start 7 -7) (end 7 7) (layer "B.CrtYd") (width 0.05) (tstamp 1d64cd87-5eae-45b8-ad68-ee154e0d1d2d))
(fp_line (start 7 7) (end -7 7) (layer "B.CrtYd") (width 0.05) (tstamp 9faa086e-1cd5-4790-901c-cec4722562da))
(fp_line (start -7 -7) (end 7 -7) (layer "B.CrtYd") (width 0.05) (tstamp b219cc05-80e3-4874-be2a-72394c6836e8))
(fp_line (start 6.085176 -3.75022) (end 8.685176 -3.75022) (layer "F.CrtYd") (width 0.05) (tstamp 02ba358d-5a96-45d8-9b0e-bf042105458c))
(fp_line (start 6.085176 -1.30022) (end 6.085176 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp 39fefe1b-e49e-4974-a0d8-5d29ec52b4ac))
(fp_line (start -4.864824 -6.75022) (end -4.864824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp 498e9308-28e2-4878-9acc-5cec441a3399))
(fp_line (start 8.685176 -3.75022) (end 8.685176 -1.30022) (layer "F.CrtYd") (width 0.05) (tstamp 5ca48e9f-bc22-4a93-a3c8-8ca61a30e34b))
(fp_line (start -4.864824 -3.87022) (end -4.864824 -2.70022) (layer "F.CrtYd") (width 0.05) (tstamp 61428e0a-55fa-4870-aab1-9044f2991a48))
(fp_line (start -4.864824 -2.70022) (end 0.2 -2.70022) (layer "F.CrtYd") (width 0.05) (tstamp 653a853d-9181-4a92-9dae-8dbe75e954c2))
(fp_line (start 4.085176 -6.75022) (end -4.864824 -6.75022) (layer "F.CrtYd") (width 0.05) (tstamp 74a1bf82-f373-437a-84ec-a2043640333d))
(fp_line (start -4.864824 -3.87022) (end -7.414824 -3.87022) (layer "F.CrtYd") (width 0.05) (tstamp 7784aa2e-9b7e-4b11-9a87-08722f743540))
(fp_line (start -7.414824 -6.32022) (end -4.864824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp 7ec58057-6418-45bb-8a10-68a9f1e55e26))
(fp_line (start 6.085176 -3.75022) (end 6.085176 -4.75022) (layer "F.CrtYd") (width 0.05) (tstamp 95ee080b-d816-4084-8a78-bbdfd4f8e34e))
(fp_line (start 8.685176 -1.30022) (end 6.085176 -1.30022) (layer "F.CrtYd") (width 0.05) (tstamp c001af41-3b76-473c-98aa-4d6eb9d7017f))
(fp_line (start 6.085176 -0.86022) (end 2.494322 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp db46e384-52be-408f-b196-926aba26dfc6))
(fp_line (start -7.414824 -3.87022) (end -7.414824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp de42f58e-dc59-4ad8-9962-32a69ce8d718))
(fp_arc (start 0.2 -2.70022) (mid 1.670502 -2.183399) (end 2.494322 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp 22025fc1-93e4-4ebb-b954-6056600cca95))
(fp_arc (start 4.085176 -6.75022) (mid 5.499392 -6.164435) (end 6.085176 -4.75022) (layer "F.CrtYd") (width 0.05) (tstamp e49a0cf2-8fd3-412c-8cc3-1944bc6943d4))
(pad "" np_thru_hole circle (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp a7ad8e37-0714-4f46-a94f-36247c9c43b9))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp df7f16d0-cf7f-46d4-a617-b74a637b57a1))
(pad "" np_thru_hole circle (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp f97204f5-adb4-4e3b-9025-f44ac9f7c851))
(pad "1" thru_hole circle (at 3.81 -2.54) (size 3.3 3.3) (drill 3) (layers *.Cu *.Mask)
(net 18 "col4") (pinfunction "1") (pintype "passive") (tstamp 1d0d90cf-f102-450e-9e44-6c9e9eda2ca1))
(pad "1" smd rect (at 5.635 -2.54 180) (size 1.65 2.5) (layers "F.Cu")
(net 18 "col4") (pinfunction "1") (pintype "passive") (tstamp 8809e62b-1e36-498a-8cc7-869a46ac047c))
(pad "1" smd roundrect (at 7.36 -2.54) (size 2.55 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 18 "col4") (pinfunction "1") (pintype "passive") (tstamp be009488-9af8-46a7-9709-3e88a27c914c))
(pad "2" thru_hole circle (at -2.54 -5.08) (size 3.3 3.3) (drill 3) (layers *.Cu *.Mask)
(net 6 "Net-(SW5-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 14b501a3-4809-42c0-a84c-bce7267ba609))
(pad "2" smd roundrect (at -6.09 -5.08) (size 2.55 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 6 "Net-(SW5-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 4a4ea388-f7bd-47b0-8808-8e1fe572fed7))
(pad "2" smd rect (at -4.34 -5.08) (size 1.65 2.5) (layers "F.Cu")
(net 6 "Net-(SW5-Pad2)") (pinfunction "2") (pintype "passive") (tstamp e77e8f5a-060f-49a8-b1ed-00578c15ff30))
(model "${KIPRJMOD}/marbastlib/3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
(model "${KIPRJMOD}/../marbastlib/3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
(model "${KIPRJMOD}/../3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "F.Cu")
(tedit 58645DC7) (tstamp 3b66112e-5a40-425c-bad1-734e5a373492)
(at 134.62 99.06 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "freshboard.kicad_sch")
(property "Sheetname" "")
(path "/e4ab2f07-4c48-477b-bea5-03c44e518380")
(attr smd)
(fp_text reference "D3" (at 0 -2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1c9304ae-9a24-4ae7-959e-6b46983bcb24)
)
(fp_text value "1N4148W" (at 0 2.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f919acce-52ad-4cc0-ae24-dc1619c90463)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a0cfadc-3ca3-44b6-9357-6012b56ae3ea)
)
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp ca05e29c-0325-4a7d-abff-763a2358a9e3))
(fp_line (start -2.25 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp d6f427c1-dd85-46ba-bb60-c599cd9d573b))
(fp_line (start -2.25 -1) (end -2.25 1) (layer "F.SilkS") (width 0.12) (tstamp dcb18e12-c3ae-40cd-a850-9b416ce4ed2f))
(fp_line (start 2.35 -1.15) (end 2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 0a1db2fa-72e6-4b8e-a66f-48abc0627979))
(fp_line (start -2.35 -1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 0dd93ca9-17de-4454-8b7a-501a36402757))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 9e8a2f95-e534-4555-92ab-1d87cf21bb03))
(fp_line (start 2.35 1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp d5481baa-acce-4919-bd59-c028c602a2b0))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 18131d31-33fc-45d2-b8b4-18f66e09fc96))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 3540119a-085a-4b21-8942-e58792ebfd87))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 3c4e622a-cdb9-4554-a8bf-2368cc95473d))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp 4ec265b1-a380-4359-9cb9-4200b9449816))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 6bba79fe-c3df-44a8-a3cc-248f6a38d4ad))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 9aef6a02-7e13-42a5-bec4-a31158b542d0))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp a4ce1a9a-b32c-44af-8e48-b991dc15697b))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp aafe0ecb-b0a0-4eff-a0bd-50591b462add))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp b1933253-3a97-4b71-9c7e-737b875be5c0))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp d100ec8d-f342-49eb-9c91-d28a7bb30b8b))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp e86f1bb4-3809-4a00-ae6a-3e548a4256a0))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "row0") (pinfunction "K") (pintype "passive") (tstamp 8732cdc9-e8a4-4f99-9be5-5caf8fd747c0))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "Net-(SW3-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 89b835e1-87e8-4746-8540-c7f87b0fe405))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "F.Cu")
(tedit 58645DC7) (tstamp 3bc7654e-fa4b-445a-b8db-0e9b22338acb)
(at 191.77 99.06 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "freshboard.kicad_sch")
(property "Sheetname" "")
(path "/acf8eff1-dad6-4e85-9bca-a455dd614fa4")
(attr smd)
(fp_text reference "D6" (at 0 -2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 26087322-3179-4e09-80a0-8d466b3bf6ab)
)
(fp_text value "1N4148W" (at 0 2.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a5a3ea14-b2c0-42a6-89bf-9ab9f4f60029)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f52d2be5-c71a-407f-8857-28c7f59c441b)
)
(fp_line (start -2.25 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp 7f187df2-95ab-471d-b5c1-a9a71a9695e5))
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp e5a86c8e-580e-4a5d-a430-3526568f0e52))
(fp_line (start -2.25 -1) (end -2.25 1) (layer "F.SilkS") (width 0.12) (tstamp ed728244-a37b-4db6-a211-ffe707a09409))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 207f6e12-0d8a-4e7f-a4c3-3474b3c719e2))
(fp_line (start 2.35 1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 77c89feb-2c79-41ed-8c4b-7a3c48a06c50))
(fp_line (start 2.35 -1.15) (end 2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 9a22ce53-ddf2-46b9-a067-745fc518c407))
(fp_line (start -2.35 -1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp f00e157d-dbef-40de-a462-24c2dcc699ed))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0212ca9c-aaeb-4a19-9219-2ac7111e6ec9))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 3c578620-d1d6-40fd-9b21-5b13bb63f980))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 4629be2b-365b-4d45-9876-4870a6479ee2))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 5e2eae7f-be16-4233-9b1f-9c0952b2fbef))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 7829b3f0-9ad6-43d4-894f-8459ce23ae72))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 82990812-c862-4381-a9a5-9e027a4cb25e))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 945a89e3-1b04-4c39-8e4b-2030b402b2a2))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp 99011a77-ab18-4899-bddc-7d4e710ac89c))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp ba36e666-1309-404a-b822-fcebc24cb9a7))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp d77b5f74-721f-4246-a619-5189e8e1395b))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp ef45d313-ca49-4b90-aa71-658bbc9c4830))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "row0") (pinfunction "K") (pintype "passive") (tstamp 066f121e-0551-4aab-a562-f0e11076d7ed))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "Net-(SW6-Pad2)") (pinfunction "A") (pintype "passive") (tstamp aad18005-da34-41c0-b19c-98753ba3eef3))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "F.Cu")
(tedit 58645DC7) (tstamp 43edbf95-dca8-40d8-a2e4-141cc1d6ca49)
(at 172.72 99.06 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "freshboard.kicad_sch")
(property "Sheetname" "")
(path "/ae1eafd0-ecad-4cff-b759-df101d790868")
(attr smd)
(fp_text reference "D5" (at 0 -2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0fbc348c-4a2f-4a19-ac0e-a2318e3b86d0)
)
(fp_text value "1N4148W" (at 0 2.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38716710-0b20-4119-8c19-bb89e326064d)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92a3e948-f0d0-458d-bbb7-22796f0ee9ca)
)
(fp_line (start -2.25 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp 58f4142c-0bdc-4f46-af79-fc7647eb804a))
(fp_line (start -2.25 -1) (end -2.25 1) (layer "F.SilkS") (width 0.12) (tstamp c2d06a30-cdaf-45a3-836d-b9ba14ff92b6))
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp f1d19dd8-0e98-42ac-9566-668da7f2cf93))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 0750016d-a535-486c-8b93-e1bc68a92de5))
(fp_line (start -2.35 -1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 7b8898f0-fac6-47f3-817f-77ca6568b734))
(fp_line (start 2.35 -1.15) (end 2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp cc914e4b-ce09-4c00-9fc6-8f288a56b5eb))
(fp_line (start 2.35 1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp dc78b3ff-071b-4da1-9d3e-1d5c77a9e3b8))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp 01dad016-b6ec-40b6-b29b-6eecdfa0a294))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp 0cb1d91b-0c24-425f-82a2-0877ba302f84))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 3210c149-dbd3-4681-9527-8b4aaffd4959))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 4e0e46e2-e4ea-4b27-82a5-300ba36455a3))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 62005e1a-4930-4ae6-9f9a-2ff293cbecc2))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 6f2f2ae9-bf2b-4f2d-b18c-7a357d79d1bb))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 754a515e-bc81-4c31-ba59-fe38d1daa632))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 862d5e99-5798-4265-83e6-4a465b7ba85b))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp 93e9c268-1a09-43ad-8c47-fb63add36b00))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp ea4c0f9b-e61e-4818-bdc0-b3897485a64a))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp ee4c7b88-f87b-4120-aafe-af2d6e5dc310))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "row0") (pinfunction "K") (pintype "passive") (tstamp 7bf7d0d6-a201-4152-9cf5-8d0c873994dd))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "Net-(SW5-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 0fa6e8de-c990-41c8-9465-b99d913a91f4))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "F.Cu")
(tedit 58645DC7) (tstamp 60f4c50a-cd3c-4d8a-8266-68693ace4427)
(at 153.67 99.06 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "freshboard.kicad_sch")
(property "Sheetname" "")
(path "/92e67c30-b9bf-45e4-8272-a313f6c1acae")
(attr smd)
(fp_text reference "D4" (at 0 1 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 269b7260-90db-477a-a285-c05def2aaa5e)
)
(fp_text value "1N4148W" (at 0 2.1 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 612d3495-d651-4462-9020-0b74247f8929)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 39622d20-f85a-48fa-8734-98f01cf33197)
)
(fp_line (start -2.25 -1) (end -2.25 1) (layer "F.SilkS") (width 0.12) (tstamp 1b3b338b-38cf-4e3e-9707-aec8ef9b8b54))
(fp_line (start -2.25 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp 4a13648f-6a6d-4aae-8e58-bf29e814dcc2))
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp 6af31e48-16af-4533-a822-6f3c737d75f9))
(fp_line (start 2.35 1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 1f8b40e0-2268-4a80-815f-e24e7c7a2da8))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp 505b05d4-5c68-46f8-bd02-1c557121c3fa))
(fp_line (start -2.35 -1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp a829d9b2-f788-4d71-a2f7-dceaabfe6ffd))
(fp_line (start 2.35 -1.15) (end 2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp e40f34ed-6f59-4907-a2bd-365642757e14))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp 0452ec78-56f8-4cff-be3e-b7e17808ef7f))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp 3cd3a7db-f147-471e-bc6f-86e2dc0ccaf8))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp 3ea90262-4a56-4ed4-96b1-4b62575fc0c5))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer "F.Fab") (width 0.1) (tstamp 5860f964-0afa-4987-a3ee-a72afbffece0))
(fp_line (start 1.4 0.9) (end -1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 5ed99b98-d30e-4786-8ace-7f84d37586be))
(fp_line (start -1.4 0.9) (end -1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp 75ae57c3-4bff-42c4-b3a8-599b31ccd564))
(fp_line (start 1.4 -0.9) (end 1.4 0.9) (layer "F.Fab") (width 0.1) (tstamp 9ace20b5-d035-4aca-8608-6f1b67213ac3))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 9f38752d-7c2d-4f25-98a8-6d27f90d37cb))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer "F.Fab") (width 0.1) (tstamp c38e2701-1521-4797-98f4-2ca9b32a1b25))
(fp_line (start -1.4 -0.9) (end 1.4 -0.9) (layer "F.Fab") (width 0.1) (tstamp ca0fa385-6c69-46eb-bb7c-a976b785fc79))
(fp_line (start -0.75 0) (end -0.35 0) (layer "F.Fab") (width 0.1) (tstamp e50dbd52-749a-4d30-a043-80630101a713))
(pad "1" smd rect (at -1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "row0") (pinfunction "K") (pintype "passive") (tstamp 979eb020-5e71-43fb-9531-c6b201d6e50e))
(pad "2" smd rect (at 1.65 0 90) (size 0.9 1.2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(SW4-Pad2)") (pinfunction "A") (pintype "passive") (tstamp eb8fef87-7d2b-4b75-b47e-39f02108a4c7))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-123.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "marbastlib-mx:SW_MX_HS_1u" (layer "F.Cu")
(tedit 6298CFE2) (tstamp 641e10d7-c65e-49f1-a1d0-669ce45604e3)
(at 102.87 93.98)
(descr "Footprint for Cherry MX style switches with Kailh hotswap socket")
(property "Sheetfile" "freshboard.kicad_sch")
(property "Sheetname" "")
(path "/62a93585-821d-4176-9af7-a2afe8bf3dc4")
(attr smd exclude_from_pos_files exclude_from_bom)
(fp_text reference "SW1" (at -4.25 -1.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2cc58abf-062e-461a-a5d2-63394b1cc063)
)
(fp_text value "MX_SW_HS" (at 0 -8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 90b398a0-606d-49a9-ab08-cedd7d2be202)
)
(fp_line (start -4.864824 -6.75022) (end -4.864824 -6.52022) (layer "F.SilkS") (width 0.15) (tstamp 479e8b35-cd0c-4c18-aa97-18f3c99f5e92))
(fp_line (start -4.864824 -3.67022) (end -4.864824 -3.20022) (layer "F.SilkS") (width 0.15) (tstamp 6af4efe2-4782-4f1a-8832-c36f3fdf84d8))
(fp_line (start 6.085176 -1.10022) (end 6.085176 -0.86022) (layer "F.SilkS") (width 0.15) (tstamp 806b6b12-ee82-4084-a73a-b0ff3f262960))
(fp_line (start -4.364824 -2.70022) (end 0.2 -2.70022) (layer "F.SilkS") (width 0.15) (tstamp 9758ab75-f3b9-4f2d-a1a5-303def702c76))
(fp_line (start 4.085176 -6.75022) (end -1.814824 -6.75022) (layer "F.SilkS") (width 0.15) (tstamp ae725462-90e3-46ec-becc-260dcf116b5e))
(fp_line (start -3.314824 -6.75022) (end -4.864824 -6.75022) (layer "F.SilkS") (width 0.15) (tstamp cd26300f-d70c-45d9-af9e-469755b1cdbe))
(fp_line (start 6.085176 -3.95022) (end 6.085176 -4.75022) (layer "F.SilkS") (width 0.15) (tstamp e97419f5-76e7-4c7e-8f57-99cd53fbfaff))
(fp_arc (start -4.364824 -2.70022) (mid -4.718377 -2.846667) (end -4.864824 -3.20022) (layer "F.SilkS") (width 0.15) (tstamp 01dd65e2-18c2-45bb-9f24-b361cbe0c298))
(fp_arc (start 0.2 -2.70022) (mid 1.670693 -2.183637) (end 2.494322 -0.86022) (layer "F.SilkS") (width 0.15) (tstamp c63d1d35-7900-4b1a-83bb-e7de82c48108))
(fp_arc (start 4.085176 -6.75022) (mid 5.499392 -6.164435) (end 6.085176 -4.75022) (layer "F.SilkS") (width 0.15) (tstamp f2597fad-cd16-4583-a895-7bee0492d85e))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 2eaaf2bd-68d4-4acb-80bd-4f5ecab875aa))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 584bfe12-535f-4be2-a71e-994bb711215d))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 68ba5325-a7f8-4fe7-887a-ad83677c88ad))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 6d00267b-0270-41e2-a7ad-c3bbdb96531c))
(fp_line (start 7 6.5) (end 7 -6.5) (layer "Eco2.User") (width 0.05) (tstamp 35e056f5-e636-4631-9959-687bfdfc6a7b))
(fp_line (start -7 -6.5) (end -7 6.5) (layer "Eco2.User") (width 0.05) (tstamp 81a5d1f3-34b9-43ff-afd9-c836aaf62925))
(fp_line (start 6.5 -7) (end -6.5 -7) (layer "Eco2.User") (width 0.05) (tstamp e69de466-10d5-4602-9506-b80f465f844f))
(fp_line (start -6.5 7) (end 6.5 7) (layer "Eco2.User") (width 0.05) (tstamp ff1fe8ba-6346-4d21-bc99-7a0fa86b827d))
(fp_arc (start 7 6.5) (mid 6.853553 6.853553) (end 6.5 7) (layer "Eco2.User") (width 0.05) (tstamp 0226203b-909a-4ab1-a7a4-5cac8ba1db45))
(fp_arc (start -6.497236 6.998884) (mid -6.850789 6.852437) (end -6.997236 6.498884) (layer "Eco2.User") (width 0.05) (tstamp a1ea7736-26a6-4ba7-9f31-90d5aabdb637))
(fp_arc (start -7 -6.5) (mid -6.853553 -6.853553) (end -6.5 -7) (layer "Eco2.User") (width 0.05) (tstamp a553bdc1-05f2-4aef-a598-0e69d88c2404))
(fp_arc (start 6.5 -7) (mid 6.853553 -6.853553) (end 7 -6.5) (layer "Eco2.User") (width 0.05) (tstamp c4b4973c-7d32-40d0-8478-55fee9255b04))
(fp_line (start -7 -7) (end 7 -7) (layer "B.CrtYd") (width 0.05) (tstamp 4340b616-a821-480f-9192-722da3fcb74b))
(fp_line (start 7 7) (end -7 7) (layer "B.CrtYd") (width 0.05) (tstamp b26752d0-2bac-4447-a75e-8909da4b2609))
(fp_line (start 7 -7) (end 7 7) (layer "B.CrtYd") (width 0.05) (tstamp bd1727af-52c9-4a9d-b18c-d39e3cab891f))
(fp_line (start -7 7) (end -7 -7) (layer "B.CrtYd") (width 0.05) (tstamp ed890c31-f4ed-4aa4-a258-b813d4de8399))
(fp_line (start -7.414824 -6.32022) (end -4.864824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp 12b56044-dc51-41f4-99fc-e628c1e7398c))
(fp_line (start 4.085176 -6.75022) (end -4.864824 -6.75022) (layer "F.CrtYd") (width 0.05) (tstamp 3016fe3b-2297-4cd3-82a9-ac5b61ca2bad))
(fp_line (start -4.864824 -3.87022) (end -4.864824 -2.70022) (layer "F.CrtYd") (width 0.05) (tstamp 327b07bd-e915-4ac5-9f50-9255ed3cbcab))
(fp_line (start 6.085176 -1.30022) (end 6.085176 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp 3d8c27af-42d8-47b4-956b-d14b9e9e1556))
(fp_line (start 6.085176 -0.86022) (end 2.494322 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp 59930bc9-624e-4218-bafc-8901c3bc6d3a))
(fp_line (start 6.085176 -3.75022) (end 6.085176 -4.75022) (layer "F.CrtYd") (width 0.05) (tstamp 692ea795-3b17-4f73-873a-f1d9a93b3348))
(fp_line (start -4.864824 -6.75022) (end -4.864824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp 8c72df89-8a3b-43eb-bb89-af85b807223e))
(fp_line (start 8.685176 -1.30022) (end 6.085176 -1.30022) (layer "F.CrtYd") (width 0.05) (tstamp 949631ac-e9f3-4b42-85f9-5be29f80480d))
(fp_line (start 6.085176 -3.75022) (end 8.685176 -3.75022) (layer "F.CrtYd") (width 0.05) (tstamp 9e4f324e-ed82-4178-96cf-392519b12989))
(fp_line (start -4.864824 -2.70022) (end 0.2 -2.70022) (layer "F.CrtYd") (width 0.05) (tstamp ce2ce5eb-406f-4cf0-b51e-d6db9debfc69))
(fp_line (start -7.414824 -3.87022) (end -7.414824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp d15532e7-bfc8-43b2-98c1-261fefea5643))
(fp_line (start 8.685176 -3.75022) (end 8.685176 -1.30022) (layer "F.CrtYd") (width 0.05) (tstamp d239c6d1-b927-42b4-b34d-acce8efb6cd2))
(fp_line (start -4.864824 -3.87022) (end -7.414824 -3.87022) (layer "F.CrtYd") (width 0.05) (tstamp e21cedaf-b220-41bf-b81b-819c8434065f))
(fp_arc (start 0.2 -2.70022) (mid 1.670502 -2.183399) (end 2.494322 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp 43c3a6ca-3295-4641-a732-d562c9fecea9))
(fp_arc (start 4.085176 -6.75022) (mid 5.499392 -6.164435) (end 6.085176 -4.75022) (layer "F.CrtYd") (width 0.05) (tstamp 719bfd71-6de8-43a3-8521-0aa6f947b989))
(pad "" np_thru_hole circle (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp a450d1b5-3d9c-483a-9b3b-91fa98cf6a5c))
(pad "" np_thru_hole circle (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp b8feb548-2abc-4a20-b9bf-c569379364dd))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp c8e34988-db54-48e2-a1c3-1e20050a5403))
(pad "1" smd roundrect (at 7.36 -2.54) (size 2.55 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 22 "col0") (pinfunction "1") (pintype "passive") (tstamp 44c08572-8289-48b7-9868-15636bf7f37a))
(pad "1" thru_hole circle (at 3.81 -2.54) (size 3.3 3.3) (drill 3) (layers *.Cu *.Mask)
(net 22 "col0") (pinfunction "1") (pintype "passive") (tstamp 85adb4cf-f8b2-4cb5-a783-05fdbaa95e83))
(pad "1" smd rect (at 5.635 -2.54 180) (size 1.65 2.5) (layers "F.Cu")
(net 22 "col0") (pinfunction "1") (pintype "passive") (tstamp f38a2940-c5ad-48f0-9835-5a0d3472a80d))
(pad "2" smd rect (at -4.34 -5.08) (size 1.65 2.5) (layers "F.Cu")
(net 2 "Net-(SW1-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 411f68c5-45de-4494-8687-5c02d9ed9e74))
(pad "2" thru_hole circle (at -2.54 -5.08) (size 3.3 3.3) (drill 3) (layers *.Cu *.Mask)
(net 2 "Net-(SW1-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 4ddfe08b-9151-4d3d-8b25-5b40120377c5))
(pad "2" smd roundrect (at -6.09 -5.08) (size 2.55 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 2 "Net-(SW1-Pad2)") (pinfunction "2") (pintype "passive") (tstamp a886a087-d8f5-4f48-807b-6bdbbe9bf956))
(model "${KIPRJMOD}/marbastlib/3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
(model "${KIPRJMOD}/../marbastlib/3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
(model "${KIPRJMOD}/../3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
)
(footprint "RP2040-Zero:RP2040-Zero" (layer "F.Cu")
(tedit 61F3691B) (tstamp 745e3c49-2d71-4f79-b438-e23739b19861)
(at 91.365 104.14 90)
(property "Sheetfile" "freshboard.kicad_sch")
(property "Sheetname" "")
(path "/db959f89-1234-46e6-9282-057f57eb7920")
(attr through_hole exclude_from_pos_files exclude_from_bom)
(fp_text reference "RZ1" (at 9 -14.5 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2304fe9e-8ab4-4d74-a43b-7ca3e934e844)
)
(fp_text value "RP2040-Zero" (at 9 -12.5 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d264592-9c3a-4849-b6b8-b450f8cece7a)
)
(fp_text user "${REFERENCE}" (at 9 -10.5 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a3a9de6-c435-4d15-892f-51dae11ba4db)
)
(fp_line (start 1.16 -0.95) (end 19.16 -0.95) (layer "F.SilkS") (width 0.12) (tstamp 27d2ef6a-a8c2-4645-944a-bd11e192908a))
(fp_line (start 1.16 -24.45) (end 1.16 -0.95) (layer "F.SilkS") (width 0.12) (tstamp 3504c034-3536-4500-a084-fd81f92385ba))
(fp_line (start 19.16 -24.45) (end 1.16 -24.45) (layer "F.SilkS") (width 0.12) (tstamp a56dd517-0f5a-4fcf-8daa-20a1b3748d0e))
(fp_line (start 19.16 -0.95) (end 19.16 -24.45) (layer "F.SilkS") (width 0.12) (tstamp e3a5d005-b915-4de7-a6fb-d6ecb1bac342))
(fp_line (start 19.16 -24.45) (end 19.16 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 1e843c38-d264-4828-9686-a3a282e60baa))
(fp_line (start 1.16 -24.45) (end 19.16 -24.45) (layer "F.CrtYd") (width 0.05) (tstamp 4bacf7a5-a453-47da-a199-b359974a0707))
(fp_line (start 19.16 -0.95) (end 1.16 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 7ce59cb8-23dd-43de-8554-af1e4ef6865e))
(fp_line (start 1.16 -0.95) (end 1.16 -24.45) (layer "F.CrtYd") (width 0.05) (tstamp f71c5817-6e6c-4398-be15-0c1aacd1d0b9))
(fp_line (start 14.46 -25.45) (end 14.46 -24.45) (layer "F.Fab") (width 0.1) (tstamp 2deb184b-84de-4f42-8ce1-fb9c113f9e29))
(fp_line (start 5.83 -25.45) (end 14.46 -25.45) (layer "F.Fab") (width 0.1) (tstamp a063351f-1254-4e82-ad9f-8a6078885117))
(fp_line (start 5.83 -25.45) (end 5.83 -24.45) (layer "F.Fab") (width 0.1) (tstamp a7a4c280-89be-4246-b929-152bfe6016b1))
(pad "1" thru_hole roundrect (at 17.78 -22.86 90) (size 2.6 1.6) (drill 0.8 (offset 0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 28 "unconnected-(RZ1-Pad1)") (pinfunction "GP0") (pintype "bidirectional") (tstamp 9959d468-5d1c-44d8-b6d3-59574c9df4ab))
(pad "2" thru_hole roundrect (at 17.78 -20.32 90) (size 2.6 1.6) (drill 0.8 (offset 0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 8 "unconnected-(RZ1-Pad2)") (pinfunction "GP1") (pintype "bidirectional") (tstamp a2198aed-5551-4292-bee6-ce517647193f))
(pad "3" thru_hole roundrect (at 17.78 -17.78 90) (size 2.6 1.6) (drill 0.8 (offset 0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 9 "unconnected-(RZ1-Pad3)") (pinfunction "GP2") (pintype "bidirectional") (tstamp 501e5d0f-8f09-47da-9df8-fab1012e06f2))
(pad "4" thru_hole roundrect (at 17.78 -15.24 90) (size 2.6 1.6) (drill 0.8 (offset 0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 10 "unconnected-(RZ1-Pad4)") (pinfunction "GP3") (pintype "bidirectional") (tstamp cd067ffb-db6d-4250-81f0-4984eb184c7a))
(pad "5" thru_hole roundrect (at 17.78 -12.7 90) (size 2.6 1.6) (drill 0.8 (offset 0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 11 "unconnected-(RZ1-Pad5)") (pinfunction "GP4") (pintype "bidirectional") (tstamp a7a33373-e63f-4e31-a8f5-e1f43bc8862a))
(pad "6" thru_hole roundrect (at 17.78 -10.16 90) (size 2.6 1.6002) (drill 0.8 (offset 0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 12 "unconnected-(RZ1-Pad6)") (pinfunction "GP5") (pintype "bidirectional") (tstamp b73522dc-1833-4ca7-8b6e-bed3e3b705fd))
(pad "7" thru_hole roundrect (at 17.78 -7.62 90) (size 2.6 1.6002) (drill 0.8 (offset 0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 13 "unconnected-(RZ1-Pad7)") (pinfunction "GP6") (pintype "bidirectional") (tstamp 832e2610-9e2e-4392-be3c-6e19492fc1fb))
(pad "8" thru_hole roundrect (at 17.78 -5.08 90) (size 2.6 1.6002) (drill 0.8 (offset 0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 14 "unconnected-(RZ1-Pad8)") (pinfunction "GP7") (pintype "bidirectional") (tstamp 38dd6376-b457-4f5f-9ffc-b7b52c0bcaf6))
(pad "9" thru_hole roundrect (at 17.78 -2.54 90) (size 2.6 1.6002) (drill 0.8 (offset 0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 15 "unconnected-(RZ1-Pad9)") (pinfunction "GP8") (pintype "bidirectional") (tstamp cef2e77f-20dc-4abb-be97-6a312440475e))
(pad "10" thru_hole roundrect (at 15.24 -2.33 90) (size 1.6 2.6) (drill 0.8 (offset 0 0.6)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 16 "unconnected-(RZ1-Pad10)") (pinfunction "GP9") (pintype "bidirectional") (tstamp 2226db9d-2945-414f-bd33-e346e825c91e))
(pad "11" thru_hole roundrect (at 12.7 -2.33 90) (size 1.5748 2.6) (drill 0.8 (offset 0 0.6)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 17 "col5") (pinfunction "GP10") (pintype "bidirectional") (tstamp 7733ed38-5d76-48b7-9ded-d7dfcdd717f3))
(pad "12" thru_hole roundrect (at 10.16 -2.33 90) (size 1.5748 2.6) (drill 0.8 (offset 0 0.6)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 18 "col4") (pinfunction "GP11") (pintype "bidirectional") (tstamp 1ff7af33-17fe-435c-8369-a74eef5c732c))
(pad "13" thru_hole roundrect (at 7.62 -2.33 90) (size 1.5748 2.6) (drill 0.8 (offset 0 0.6)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 19 "col3") (pinfunction "GP12") (pintype "bidirectional") (tstamp fe7fa7ce-080c-444c-ad48-ff45a6bd7203))
(pad "14" thru_hole roundrect (at 5.08 -2.33 90) (size 1.5748 2.6) (drill 0.8 (offset 0 0.6)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 20 "col2") (pinfunction "GP13") (pintype "bidirectional") (tstamp a2749489-9bba-40b5-ae03-5d46ba727103))
(pad "15" thru_hole roundrect (at 2.54 -2.54 90) (size 2.6 1.6002) (drill 0.8 (offset -0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 21 "col1") (pinfunction "GP14") (pintype "bidirectional") (tstamp eacc3de7-1de6-4fc5-ac63-377653b2d6f2))
(pad "16" thru_hole roundrect (at 2.54 -5.08 90) (size 2.6 1.6002) (drill 0.8 (offset -0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 22 "col0") (pinfunction "GP15") (pintype "bidirectional") (tstamp 2db430bb-8cb8-45a9-ad33-c5c1620524c2))
(pad "17" thru_hole roundrect (at 2.54 -7.62 90) (size 2.6 1.6002) (drill 0.8 (offset -0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 1 "row0") (pinfunction "GP26") (pintype "bidirectional") (tstamp 667cca3b-8c34-4e77-8360-a0b8b3495d0b))
(pad "18" thru_hole roundrect (at 2.54 -10.16 90) (size 2.6 1.6002) (drill 0.8 (offset -0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 23 "unconnected-(RZ1-Pad18)") (pinfunction "GP27") (pintype "bidirectional") (tstamp 580e19f3-7f7b-4a95-92ff-79b10dd51c1f))
(pad "19" thru_hole roundrect (at 2.54 -22.86 90) (size 2.6 1.6002) (drill 0.8 (offset -0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 24 "unconnected-(RZ1-Pad19)") (pinfunction "GP28") (pintype "bidirectional") (tstamp d887db36-cc04-4c25-9305-0bfedadf18de))
(pad "20" thru_hole roundrect (at 2.54 -20.32 90) (size 2.6 1.6002) (drill 0.8 (offset -0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 25 "unconnected-(RZ1-Pad20)") (pinfunction "GP29") (pintype "bidirectional") (tstamp 9fb9d4a2-5b6c-4a8f-9c1c-20d2786a37ca))
(pad "21" thru_hole roundrect (at 2.54 -17.78 90) (size 2.6 1.6002) (drill 0.8 (offset -0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 26 "unconnected-(RZ1-Pad21)") (pinfunction "3V3") (pintype "power_in") (tstamp 7f9828ae-4aaf-4bc2-86cf-b31b6cd47a01))
(pad "22" thru_hole roundrect (at 2.54 -12.7 90) (size 2.6 1.6002) (drill 0.8 (offset -0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 29 "unconnected-(RZ1-Pad22)") (pinfunction "5V") (pintype "power_in") (tstamp b149c28c-9981-4ef3-a112-89569b26f9c8))
(pad "23" thru_hole roundrect (at 2.54 -15.24 90) (size 2.6 1.6002) (drill 0.8 (offset -0.6 0)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 27 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9909079d-152f-461e-9db7-2aa740d4b79b))
)
(footprint "marbastlib-mx:SW_MX_HS_1u" (layer "F.Cu")
(tedit 6298CFE2) (tstamp abacd178-ac56-40d2-b8ff-b9d4fda8626f)
(at 160.02 93.98)
(descr "Footprint for Cherry MX style switches with Kailh hotswap socket")
(property "Sheetfile" "freshboard.kicad_sch")
(property "Sheetname" "")
(path "/8607d56e-5e29-475c-81a5-e56c52218135")
(attr smd exclude_from_pos_files exclude_from_bom)
(fp_text reference "SW4" (at -4.25 -1.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8fd8c975-a61b-4512-8774-26f7d730e0e0)
)
(fp_text value "MX_SW_HS" (at 0 -8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 166c2a7b-2cef-4db6-b045-95fa5628b40a)
)
(fp_line (start -4.864824 -3.67022) (end -4.864824 -3.20022) (layer "F.SilkS") (width 0.15) (tstamp 4d444302-5c23-42a1-bd16-21b042f56f70))
(fp_line (start 6.085176 -3.95022) (end 6.085176 -4.75022) (layer "F.SilkS") (width 0.15) (tstamp 5691d7be-04d7-461d-8453-d385f9ab60d6))
(fp_line (start 4.085176 -6.75022) (end -1.814824 -6.75022) (layer "F.SilkS") (width 0.15) (tstamp 63b4df0e-bef8-41bb-980a-86627d8a7ca9))
(fp_line (start 6.085176 -1.10022) (end 6.085176 -0.86022) (layer "F.SilkS") (width 0.15) (tstamp a7392ab7-e6e9-47f0-88c8-ece477c764a4))
(fp_line (start -3.314824 -6.75022) (end -4.864824 -6.75022) (layer "F.SilkS") (width 0.15) (tstamp ae9e0b52-8198-40a0-bc04-01605bf9a89d))
(fp_line (start -4.864824 -6.75022) (end -4.864824 -6.52022) (layer "F.SilkS") (width 0.15) (tstamp e02a9e7f-9f5e-4914-8668-8f25c495a0fd))
(fp_line (start -4.364824 -2.70022) (end 0.2 -2.70022) (layer "F.SilkS") (width 0.15) (tstamp f51d3546-f9dc-4663-96ad-b7a278199510))
(fp_arc (start 0.2 -2.70022) (mid 1.670693 -2.183637) (end 2.494322 -0.86022) (layer "F.SilkS") (width 0.15) (tstamp 1c49a2fd-a5d4-4bd0-be87-f5954da4ffa1))
(fp_arc (start -4.364824 -2.70022) (mid -4.718377 -2.846667) (end -4.864824 -3.20022) (layer "F.SilkS") (width 0.15) (tstamp 34da0365-ce33-4a01-98a0-23eb07826348))
(fp_arc (start 4.085176 -6.75022) (mid 5.499392 -6.164435) (end 6.085176 -4.75022) (layer "F.SilkS") (width 0.15) (tstamp aaacd517-15bf-4680-b52c-e1283767045e))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 69ce50d3-2139-4b14-b8db-b7f6f181d2bd))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp afb22586-ddbd-48b6-b2b0-f75ac665e3be))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp cab48413-d26f-427c-bb7f-927abdd306b6))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp cbd7912f-f3b1-4e45-affa-37447bd547c6))
(fp_line (start -7 -6.5) (end -7 6.5) (layer "Eco2.User") (width 0.05) (tstamp 3e6a4bf6-6f0b-44d7-83bb-5e6426d641d6))
(fp_line (start 6.5 -7) (end -6.5 -7) (layer "Eco2.User") (width 0.05) (tstamp 5b1ba40e-6db1-42db-be8d-03c982c68108))
(fp_line (start 7 6.5) (end 7 -6.5) (layer "Eco2.User") (width 0.05) (tstamp 66847df0-a1ef-46ba-ab74-4aa0f7ff9e42))
(fp_line (start -6.5 7) (end 6.5 7) (layer "Eco2.User") (width 0.05) (tstamp ca2e70cd-dee9-42a9-bfa2-affcaa42ee7f))
(fp_arc (start -6.497236 6.998884) (mid -6.850789 6.852437) (end -6.997236 6.498884) (layer "Eco2.User") (width 0.05) (tstamp 256f1e1b-c533-45fe-99f8-979a33fcdc55))
(fp_arc (start -7 -6.5) (mid -6.853553 -6.853553) (end -6.5 -7) (layer "Eco2.User") (width 0.05) (tstamp a7a051df-58db-48c7-b31f-c9665eded146))
(fp_arc (start 6.5 -7) (mid 6.853553 -6.853553) (end 7 -6.5) (layer "Eco2.User") (width 0.05) (tstamp c208556f-5427-4fe0-9916-1116fe036013))
(fp_arc (start 7 6.5) (mid 6.853553 6.853553) (end 6.5 7) (layer "Eco2.User") (width 0.05) (tstamp f87e10db-b89a-4e6f-ab49-98b861f0856c))
(fp_line (start -7 -7) (end 7 -7) (layer "B.CrtYd") (width 0.05) (tstamp 990632f3-cc1f-4059-b8e7-1e05918ca4d5))
(fp_line (start 7 7) (end -7 7) (layer "B.CrtYd") (width 0.05) (tstamp a0c38796-1bad-48d3-a971-affbb6facd2c))
(fp_line (start -7 7) (end -7 -7) (layer "B.CrtYd") (width 0.05) (tstamp b2428257-6226-4fc2-b984-7f6553d2f7cd))
(fp_line (start 7 -7) (end 7 7) (layer "B.CrtYd") (width 0.05) (tstamp d4be7165-877e-4dae-889d-85dc16e86f0c))
(fp_line (start 8.685176 -1.30022) (end 6.085176 -1.30022) (layer "F.CrtYd") (width 0.05) (tstamp 10f85e96-59ee-4fbd-a38c-6ab50a1bc814))
(fp_line (start 6.085176 -3.75022) (end 8.685176 -3.75022) (layer "F.CrtYd") (width 0.05) (tstamp 34b744fa-0848-4a50-859b-6e482250e65d))
(fp_line (start 6.085176 -0.86022) (end 2.494322 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp 487b1293-0c02-4de2-b595-2ec7d1e4c769))
(fp_line (start -4.864824 -6.75022) (end -4.864824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp 66eb5537-2ed7-460e-9985-268700dbaac6))
(fp_line (start -7.414824 -3.87022) (end -7.414824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp b19e36d3-8a17-49f9-8818-f5edd77bd7a6))
(fp_line (start -7.414824 -6.32022) (end -4.864824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp b2fc73d2-d015-4f0c-99ca-6b31313b65dd))
(fp_line (start -4.864824 -2.70022) (end 0.2 -2.70022) (layer "F.CrtYd") (width 0.05) (tstamp bab2a4e1-ae88-44a1-a808-bec83112ea8f))
(fp_line (start 6.085176 -3.75022) (end 6.085176 -4.75022) (layer "F.CrtYd") (width 0.05) (tstamp bb058d23-72f3-4dd4-bac9-12f855c77c0b))
(fp_line (start 8.685176 -3.75022) (end 8.685176 -1.30022) (layer "F.CrtYd") (width 0.05) (tstamp bf64b47d-d121-4017-98a4-a3baaf2f4f76))
(fp_line (start 4.085176 -6.75022) (end -4.864824 -6.75022) (layer "F.CrtYd") (width 0.05) (tstamp ca3147d8-b770-4180-a572-bc040d918e1c))
(fp_line (start -4.864824 -3.87022) (end -4.864824 -2.70022) (layer "F.CrtYd") (width 0.05) (tstamp cd29f7aa-abc5-48b8-b644-468ed55ceb60))
(fp_line (start 6.085176 -1.30022) (end 6.085176 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp da3ff783-d52b-43c3-b6f0-e8b715109125))
(fp_line (start -4.864824 -3.87022) (end -7.414824 -3.87022) (layer "F.CrtYd") (width 0.05) (tstamp fab187f4-a94c-4bee-a7cf-8e41e11d0035))
(fp_arc (start 0.2 -2.70022) (mid 1.670502 -2.183399) (end 2.494322 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp bbca1566-fe15-4ea4-861f-a0cccc673928))
(fp_arc (start 4.085176 -6.75022) (mid 5.499392 -6.164435) (end 6.085176 -4.75022) (layer "F.CrtYd") (width 0.05) (tstamp fddf151a-e21f-4488-9894-aac3dd404e5e))
(pad "" np_thru_hole circle (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 771cff24-f04a-4254-948b-3c7594f676b7))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp e5192dd0-309c-4191-a8b3-bbb5f3dacd19))
(pad "" np_thru_hole circle (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp fde8a201-d53a-490f-98ff-7999935a7a04))
(pad "1" smd roundrect (at 7.36 -2.54) (size 2.55 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 19 "col3") (pinfunction "1") (pintype "passive") (tstamp 1e06f76d-5b81-4f52-a2c3-49bfeaffc0fc))
(pad "1" thru_hole circle (at 3.81 -2.54) (size 3.3 3.3) (drill 3) (layers *.Cu *.Mask)
(net 19 "col3") (pinfunction "1") (pintype "passive") (tstamp 8244d4d5-0008-4885-8d89-155288008ffa))
(pad "1" smd rect (at 5.635 -2.54 180) (size 1.65 2.5) (layers "F.Cu")
(net 19 "col3") (pinfunction "1") (pintype "passive") (tstamp bdb8ee58-1abb-4648-ab1c-9362319bfee6))
(pad "2" thru_hole circle (at -2.54 -5.08) (size 3.3 3.3) (drill 3) (layers *.Cu *.Mask)
(net 5 "Net-(SW4-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 28fa4d12-a108-44f1-a8a2-119f7b84b1ab))
(pad "2" smd rect (at -4.34 -5.08) (size 1.65 2.5) (layers "F.Cu")
(net 5 "Net-(SW4-Pad2)") (pinfunction "2") (pintype "passive") (tstamp b0968fd8-b464-4c7a-b13c-9600e0c11e19))
(pad "2" smd roundrect (at -6.09 -5.08) (size 2.55 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 5 "Net-(SW4-Pad2)") (pinfunction "2") (pintype "passive") (tstamp b84202dc-7d1a-4461-b174-0330b4a7f7ae))
(model "${KIPRJMOD}/marbastlib/3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
(model "${KIPRJMOD}/../marbastlib/3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
(model "${KIPRJMOD}/../3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
)
(footprint "marbastlib-mx:SW_MX_HS_1u" (layer "F.Cu")
(tedit 6298CFE2) (tstamp c3394bc9-b2d1-4a44-a9eb-91fef6bfe017)
(at 121.92 93.98)
(descr "Footprint for Cherry MX style switches with Kailh hotswap socket")
(property "Sheetfile" "freshboard.kicad_sch")
(property "Sheetname" "")
(path "/2759db90-289b-4040-ad6a-8ff1f48dc450")
(attr smd exclude_from_pos_files exclude_from_bom)
(fp_text reference "SW2" (at -4.25 -1.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e2c6bdc5-beec-4e8e-882a-0dace28f09fe)
)
(fp_text value "MX_SW_HS" (at 0 -8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b06ecff8-0523-4dd0-8324-835298c3de09)
)
(fp_line (start -4.864824 -6.75022) (end -4.864824 -6.52022) (layer "F.SilkS") (width 0.15) (tstamp 22c00fd8-8a32-43d1-bfed-450312bb110b))
(fp_line (start -4.864824 -3.67022) (end -4.864824 -3.20022) (layer "F.SilkS") (width 0.15) (tstamp 456b4053-52b7-4b29-b783-d13058d3f743))
(fp_line (start 6.085176 -1.10022) (end 6.085176 -0.86022) (layer "F.SilkS") (width 0.15) (tstamp 578b1c71-b8f1-4563-8f66-6950c3b6ce96))
(fp_line (start -3.314824 -6.75022) (end -4.864824 -6.75022) (layer "F.SilkS") (width 0.15) (tstamp 8e969e72-cbe1-4e85-8703-ef45b3f1e5c2))
(fp_line (start 6.085176 -3.95022) (end 6.085176 -4.75022) (layer "F.SilkS") (width 0.15) (tstamp 90f0ed25-9d5d-4f70-9ae7-3710e23c062b))
(fp_line (start 4.085176 -6.75022) (end -1.814824 -6.75022) (layer "F.SilkS") (width 0.15) (tstamp 93bf71a8-b19c-402c-87ae-19200ab27e7a))
(fp_line (start -4.364824 -2.70022) (end 0.2 -2.70022) (layer "F.SilkS") (width 0.15) (tstamp c763d4ea-0339-477a-95fe-b46b96ee41d2))
(fp_arc (start -4.364824 -2.70022) (mid -4.718377 -2.846667) (end -4.864824 -3.20022) (layer "F.SilkS") (width 0.15) (tstamp 3a67ec4b-790d-4e74-b06d-e51873d9778b))
(fp_arc (start 0.2 -2.70022) (mid 1.670693 -2.183637) (end 2.494322 -0.86022) (layer "F.SilkS") (width 0.15) (tstamp a9459dac-ee35-4b78-a3d6-5fc5197de46e))
(fp_arc (start 4.085176 -6.75022) (mid 5.499392 -6.164435) (end 6.085176 -4.75022) (layer "F.SilkS") (width 0.15) (tstamp c8383e1d-7438-4d9a-9f59-9108ac7ea5f5))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 57d45633-48f2-45af-a86a-d192e771251a))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 6994a1d6-f37f-42be-9af1-0d1420294e27))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 867bdd41-7e8c-4100-9572-a2e5292ee100))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 925d9313-30d4-4d67-beed-aaf606736472))
(fp_line (start -6.5 7) (end 6.5 7) (layer "Eco2.User") (width 0.05) (tstamp 380bba92-9980-432e-9b80-42fc50227787))
(fp_line (start 7 6.5) (end 7 -6.5) (layer "Eco2.User") (width 0.05) (tstamp 86cfa0cf-79a9-437e-8759-fe9f207cf7f0))
(fp_line (start 6.5 -7) (end -6.5 -7) (layer "Eco2.User") (width 0.05) (tstamp ba4dcac3-936f-4c49-85d4-760ac61ce0c4))
(fp_line (start -7 -6.5) (end -7 6.5) (layer "Eco2.User") (width 0.05) (tstamp dbc0c68e-5483-40d2-b9ab-6fde7d02dc0b))
(fp_arc (start 6.5 -7) (mid 6.853553 -6.853553) (end 7 -6.5) (layer "Eco2.User") (width 0.05) (tstamp 123a4fd6-229e-45d2-943c-ab52524de661))
(fp_arc (start -6.497236 6.998884) (mid -6.850789 6.852437) (end -6.997236 6.498884) (layer "Eco2.User") (width 0.05) (tstamp 167f0162-f7c5-46b4-bb6e-98e33af8265d))
(fp_arc (start 7 6.5) (mid 6.853553 6.853553) (end 6.5 7) (layer "Eco2.User") (width 0.05) (tstamp 3f2dbd8c-0937-406f-9c83-a5fb2a48adf1))
(fp_arc (start -7 -6.5) (mid -6.853553 -6.853553) (end -6.5 -7) (layer "Eco2.User") (width 0.05) (tstamp f2118da6-7603-491a-97c5-912a89676d39))
(fp_line (start -7 -7) (end 7 -7) (layer "B.CrtYd") (width 0.05) (tstamp 3943bdc0-5cb6-4305-985e-8c5563c407a8))
(fp_line (start -7 7) (end -7 -7) (layer "B.CrtYd") (width 0.05) (tstamp c0b337a5-5386-417f-8ea0-ab419b27c00d))
(fp_line (start 7 -7) (end 7 7) (layer "B.CrtYd") (width 0.05) (tstamp c3981d14-a407-47d5-84ad-50800d64d558))
(fp_line (start 7 7) (end -7 7) (layer "B.CrtYd") (width 0.05) (tstamp c4d50040-8389-4d2d-a1bb-74c4acd25608))
(fp_line (start 8.685176 -3.75022) (end 8.685176 -1.30022) (layer "F.CrtYd") (width 0.05) (tstamp 0752c8a5-e53f-46a6-b507-8ff5368a0547))
(fp_line (start -4.864824 -6.75022) (end -4.864824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp 4084001b-02f0-4514-9e28-595b5c1d3c3b))
(fp_line (start -4.864824 -3.87022) (end -4.864824 -2.70022) (layer "F.CrtYd") (width 0.05) (tstamp 4d648ed3-1abd-423c-a2f2-dc5b3f82395b))
(fp_line (start -4.864824 -2.70022) (end 0.2 -2.70022) (layer "F.CrtYd") (width 0.05) (tstamp 53e08890-4516-4095-afa7-f60e1e0ff46e))
(fp_line (start 6.085176 -3.75022) (end 6.085176 -4.75022) (layer "F.CrtYd") (width 0.05) (tstamp 7eb66361-8789-4d91-b5ad-4bf725034531))
(fp_line (start -7.414824 -6.32022) (end -4.864824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp 96c774b6-6246-4c63-b8d6-50127616fdef))
(fp_line (start -4.864824 -3.87022) (end -7.414824 -3.87022) (layer "F.CrtYd") (width 0.05) (tstamp a1865e4d-ff7b-48f6-8972-d5a6b5c38dcc))
(fp_line (start 4.085176 -6.75022) (end -4.864824 -6.75022) (layer "F.CrtYd") (width 0.05) (tstamp afa234ab-f8f0-4f61-96a4-2f47c0b2836d))
(fp_line (start 6.085176 -1.30022) (end 6.085176 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp d0b5bae4-d2d2-4d6d-81ed-60e55fbab386))
(fp_line (start 6.085176 -3.75022) (end 8.685176 -3.75022) (layer "F.CrtYd") (width 0.05) (tstamp d1da1a5b-544f-4223-bc5e-9579d23c78d4))
(fp_line (start -7.414824 -3.87022) (end -7.414824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp dcde867f-5f28-4901-b13a-e245eda7c7e5))
(fp_line (start 6.085176 -0.86022) (end 2.494322 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp ea89adf8-7d57-47a5-ae51-824c885b3e47))
(fp_line (start 8.685176 -1.30022) (end 6.085176 -1.30022) (layer "F.CrtYd") (width 0.05) (tstamp f874a227-07d9-41e5-a9bc-171f785d587b))
(fp_arc (start 4.085176 -6.75022) (mid 5.499392 -6.164435) (end 6.085176 -4.75022) (layer "F.CrtYd") (width 0.05) (tstamp 2ebbeb0c-b679-4861-bf56-c7a32c3ea2e1))
(fp_arc (start 0.2 -2.70022) (mid 1.670502 -2.183399) (end 2.494322 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp 6d8b566b-4c1d-45ff-8b46-e80cf64084a4))
(pad "" np_thru_hole circle (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 87d025df-48c3-4262-9393-157f11522936))
(pad "" np_thru_hole circle (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp bf900c9a-3eef-4e67-a894-220a311431be))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp eeebed61-4beb-40f5-93c3-ba88e9508775))
(pad "1" smd rect (at 5.635 -2.54 180) (size 1.65 2.5) (layers "F.Cu")
(net 21 "col1") (pinfunction "1") (pintype "passive") (tstamp 7c823f30-f679-4a1a-92b2-7b39c6504797))
(pad "1" thru_hole circle (at 3.81 -2.54) (size 3.3 3.3) (drill 3) (layers *.Cu *.Mask)
(net 21 "col1") (pinfunction "1") (pintype "passive") (tstamp addcdba3-2f8b-4e56-8d35-2c4767c493d2))
(pad "1" smd roundrect (at 7.36 -2.54) (size 2.55 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 21 "col1") (pinfunction "1") (pintype "passive") (tstamp d07f7462-09c6-403c-ba90-6c5ce8074bad))
(pad "2" thru_hole circle (at -2.54 -5.08) (size 3.3 3.3) (drill 3) (layers *.Cu *.Mask)
(net 3 "Net-(SW2-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 8ee79bdd-0738-4ff1-b28a-8ce07d3ed9a1))
(pad "2" smd roundrect (at -6.09 -5.08) (size 2.55 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 3 "Net-(SW2-Pad2)") (pinfunction "2") (pintype "passive") (tstamp bd5b3932-8919-486c-943e-738cdfd81f4a))
(pad "2" smd rect (at -4.34 -5.08) (size 1.65 2.5) (layers "F.Cu")
(net 3 "Net-(SW2-Pad2)") (pinfunction "2") (pintype "passive") (tstamp ce6840bd-1969-4aa0-ba37-5d09972f1b3f))
(model "${KIPRJMOD}/marbastlib/3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
(model "${KIPRJMOD}/../marbastlib/3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
(model "${KIPRJMOD}/../3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
)
(footprint "marbastlib-mx:SW_MX_HS_1u" (layer "F.Cu")
(tedit 6298CFE2) (tstamp c4545070-a6bc-4f23-b151-170be606e6c0)
(at 140.97 93.98)
(descr "Footprint for Cherry MX style switches with Kailh hotswap socket")
(property "Sheetfile" "freshboard.kicad_sch")
(property "Sheetname" "")
(path "/d75769f7-4918-45ae-9838-6595b67a33d7")
(attr smd exclude_from_pos_files exclude_from_bom)
(fp_text reference "SW3" (at -4.25 -1.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42cce892-09a0-44b8-835d-9dc0c2b18af4)
)
(fp_text value "MX_SW_HS" (at 0 -8) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 205281a2-9786-46b1-a066-184c78a604cd)
)
(fp_line (start 4.085176 -6.75022) (end -1.814824 -6.75022) (layer "F.SilkS") (width 0.15) (tstamp 38bd3de8-4229-4e64-972b-23002ea31bb4))
(fp_line (start -4.864824 -3.67022) (end -4.864824 -3.20022) (layer "F.SilkS") (width 0.15) (tstamp 66f95a3b-32d8-4f49-a2ec-fe442863bae7))
(fp_line (start -4.864824 -6.75022) (end -4.864824 -6.52022) (layer "F.SilkS") (width 0.15) (tstamp 7feb5580-f1ab-4d51-addd-91f6fa52f2c9))
(fp_line (start 6.085176 -3.95022) (end 6.085176 -4.75022) (layer "F.SilkS") (width 0.15) (tstamp 82ed9dd2-8a5f-44ae-b6d7-cfaf8d431970))
(fp_line (start -4.364824 -2.70022) (end 0.2 -2.70022) (layer "F.SilkS") (width 0.15) (tstamp c61ea574-2cf1-4e0c-8a7a-80e329a69fed))
(fp_line (start -3.314824 -6.75022) (end -4.864824 -6.75022) (layer "F.SilkS") (width 0.15) (tstamp dcf5134e-972f-4caa-b513-fa20d43da0d4))
(fp_line (start 6.085176 -1.10022) (end 6.085176 -0.86022) (layer "F.SilkS") (width 0.15) (tstamp dd4ea0a0-0d22-4240-a11d-8390b8e5aed2))
(fp_arc (start -4.364824 -2.70022) (mid -4.718377 -2.846667) (end -4.864824 -3.20022) (layer "F.SilkS") (width 0.15) (tstamp 2acb4b49-69b8-4da5-8862-094b8ffeebdb))
(fp_arc (start 0.2 -2.70022) (mid 1.670693 -2.183637) (end 2.494322 -0.86022) (layer "F.SilkS") (width 0.15) (tstamp 49f4a66f-9748-47b4-b198-3d072d6a8a9a))
(fp_arc (start 4.085176 -6.75022) (mid 5.499392 -6.164435) (end 6.085176 -4.75022) (layer "F.SilkS") (width 0.15) (tstamp 4b01a159-6a8c-4fee-80e7-c7934eda46b1))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 1c4a3331-b29f-4a63-997f-80db3e403389))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.12) (tstamp 6c299cce-0961-4eba-8d43-51f0a12d82e7))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp 9c4844ca-89e2-4567-bdd3-ae5afd9bd15d))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.12) (tstamp d6657781-9b1f-40a3-a00b-426bf610fd24))
(fp_line (start 6.5 -7) (end -6.5 -7) (layer "Eco2.User") (width 0.05) (tstamp 5983c27c-9ab5-4c50-9c4b-920da906e8b8))
(fp_line (start -6.5 7) (end 6.5 7) (layer "Eco2.User") (width 0.05) (tstamp 5d8ac4d0-8e8c-4fab-bb77-78decc53136d))
(fp_line (start 7 6.5) (end 7 -6.5) (layer "Eco2.User") (width 0.05) (tstamp 7adada35-9747-4e6f-b012-6101fbc0a911))
(fp_line (start -7 -6.5) (end -7 6.5) (layer "Eco2.User") (width 0.05) (tstamp c12de0f8-a421-4788-99f5-1c3de660c14d))
(fp_arc (start -7 -6.5) (mid -6.853553 -6.853553) (end -6.5 -7) (layer "Eco2.User") (width 0.05) (tstamp 1f7a4974-4aed-4c0b-8f98-cd2845c92f47))
(fp_arc (start 6.5 -7) (mid 6.853553 -6.853553) (end 7 -6.5) (layer "Eco2.User") (width 0.05) (tstamp 30ef5bda-cbe0-4acb-b973-21d10508212b))
(fp_arc (start 7 6.5) (mid 6.853553 6.853553) (end 6.5 7) (layer "Eco2.User") (width 0.05) (tstamp 39984051-c79d-4358-97cd-e65d77dfbbdd))
(fp_arc (start -6.497236 6.998884) (mid -6.850789 6.852437) (end -6.997236 6.498884) (layer "Eco2.User") (width 0.05) (tstamp fca4af19-0d62-4a22-911e-d7de5915e6bd))
(fp_line (start 7 -7) (end 7 7) (layer "B.CrtYd") (width 0.05) (tstamp 614e4122-bbc9-4dde-badc-8cbc3117cce0))
(fp_line (start -7 -7) (end 7 -7) (layer "B.CrtYd") (width 0.05) (tstamp 6e58c739-ecd3-4c88-96ee-ee291605d98e))
(fp_line (start -7 7) (end -7 -7) (layer "B.CrtYd") (width 0.05) (tstamp 84b05a56-2350-4e62-a148-69e1089f8e76))
(fp_line (start 7 7) (end -7 7) (layer "B.CrtYd") (width 0.05) (tstamp df39ba7c-f809-4d48-b817-7bbdd8dbe836))
(fp_line (start -4.864824 -3.87022) (end -7.414824 -3.87022) (layer "F.CrtYd") (width 0.05) (tstamp 20bd9add-15aa-4dd4-bcf6-1b745ac617ce))
(fp_line (start 6.085176 -0.86022) (end 2.494322 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp 33cd2be7-2a74-41ea-8865-e1c7e1d1dfac))
(fp_line (start 6.085176 -1.30022) (end 6.085176 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp 4311686e-4616-4f2a-8593-257b21cceb1c))
(fp_line (start 8.685176 -1.30022) (end 6.085176 -1.30022) (layer "F.CrtYd") (width 0.05) (tstamp 5b9e1365-950c-45a4-ab1c-566a983dfe1c))
(fp_line (start -4.864824 -3.87022) (end -4.864824 -2.70022) (layer "F.CrtYd") (width 0.05) (tstamp 6653a3d7-eb4d-4e51-85e7-e1583059a234))
(fp_line (start 6.085176 -3.75022) (end 8.685176 -3.75022) (layer "F.CrtYd") (width 0.05) (tstamp 8bc31287-bd43-4795-83ba-6e55744b53b7))
(fp_line (start -4.864824 -6.75022) (end -4.864824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp a324c488-9799-4458-94ba-facc8ead0daa))
(fp_line (start 6.085176 -3.75022) (end 6.085176 -4.75022) (layer "F.CrtYd") (width 0.05) (tstamp bc1b5078-d11c-4368-8bd7-7b6aed889449))
(fp_line (start 4.085176 -6.75022) (end -4.864824 -6.75022) (layer "F.CrtYd") (width 0.05) (tstamp da13d9f9-9f5d-4037-92aa-820dff730a52))
(fp_line (start -4.864824 -2.70022) (end 0.2 -2.70022) (layer "F.CrtYd") (width 0.05) (tstamp ea280c29-253c-4e93-8684-27f68d54bc7e))
(fp_line (start -7.414824 -3.87022) (end -7.414824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp eb2e39d6-8ab1-41f0-a2c9-88fb8bc03ffe))
(fp_line (start -7.414824 -6.32022) (end -4.864824 -6.32022) (layer "F.CrtYd") (width 0.05) (tstamp ecf295d7-86d2-413d-8f06-c56e189ea4d0))
(fp_line (start 8.685176 -3.75022) (end 8.685176 -1.30022) (layer "F.CrtYd") (width 0.05) (tstamp fccd1365-3e9b-4031-885b-0dedd614ef99))
(fp_arc (start 4.085176 -6.75022) (mid 5.499392 -6.164435) (end 6.085176 -4.75022) (layer "F.CrtYd") (width 0.05) (tstamp 0c72cc19-8248-4488-bb45-c1660cb5b1fd))
(fp_arc (start 0.2 -2.70022) (mid 1.670502 -2.183399) (end 2.494322 -0.86022) (layer "F.CrtYd") (width 0.05) (tstamp 7c14f179-cef2-4eba-9760-fc6a363bcbb3))
(pad "" np_thru_hole circle (at -5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp 2b8c5476-3870-4449-9c69-a7a443e7e96f))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 6cccd14f-1423-446d-9583-6708026207b5))
(pad "" np_thru_hole circle (at 5.08 0) (size 1.75 1.75) (drill 1.75) (layers *.Cu *.Mask) (tstamp cd6037cb-54a7-41b5-a9d0-104055495e07))
(pad "1" smd rect (at 5.635 -2.54 180) (size 1.65 2.5) (layers "F.Cu")
(net 20 "col2") (pinfunction "1") (pintype "passive") (tstamp 0a97456e-723f-43ba-a1dd-3da0a45a7683))
(pad "1" thru_hole circle (at 3.81 -2.54) (size 3.3 3.3) (drill 3) (layers *.Cu *.Mask)
(net 20 "col2") (pinfunction "1") (pintype "passive") (tstamp 47f9728f-d592-4d60-bcd2-2cf41a9c74c1))
(pad "1" smd roundrect (at 7.36 -2.54) (size 2.55 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 20 "col2") (pinfunction "1") (pintype "passive") (tstamp 4cc469b4-20d2-4b42-8dd6-f499cf00b71d))
(pad "2" smd rect (at -4.34 -5.08) (size 1.65 2.5) (layers "F.Cu")
(net 4 "Net-(SW3-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 1621af51-2f7a-47ee-856c-aad10b6f720e))
(pad "2" thru_hole circle (at -2.54 -5.08) (size 3.3 3.3) (drill 3) (layers *.Cu *.Mask)
(net 4 "Net-(SW3-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 372d44e0-d7d2-4804-aaf0-43955831dfd7))
(pad "2" smd roundrect (at -6.09 -5.08) (size 2.55 2.5) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 4 "Net-(SW3-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 7bf508b4-e21e-4fdc-9f38-49c86c79b96e))
(model "${KIPRJMOD}/marbastlib/3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
(model "${KIPRJMOD}/../marbastlib/3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
(model "${KIPRJMOD}/../3d/HS_Kailh_MX.step"
(offset (xyz -4.82 6.74 1.82))
(scale (xyz 1 1 1))
(rotate (xyz 180 0 0))
)
)
(footprint "Diode_SMD:D_SOD-123" (layer "F.Cu")
(tedit 58645DC7) (tstamp ff93decb-2dcb-4637-8872-be5f45c6bb99)
(at 96.52 99.06 90)
(descr "SOD-123")
(tags "SOD-123")
(property "Sheetfile" "freshboard.kicad_sch")
(property "Sheetname" "")
(path "/670e47dc-fb62-4774-ad49-20dce3e2c837")
(attr smd)
(fp_text reference "D1" (at 0 -2 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d12beaf2-d922-4c33-8d01-20152cad8c88)
)
(fp_text value "1N4148W" (at 0 2.1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60f341cb-91d8-44ac-98bf-f66cf31d3b0b)
)
(fp_text user "${REFERENCE}" (at 0 -2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 480cd941-06f8-47b9-8e31-0e1bc976cc5f)
)
(fp_line (start -2.25 -1) (end 1.65 -1) (layer "F.SilkS") (width 0.12) (tstamp 2c304b85-7f70-47ff-b3a5-d81be833dd09))
(fp_line (start -2.25 -1) (end -2.25 1) (layer "F.SilkS") (width 0.12) (tstamp 48074fc6-31c1-44c8-b440-aedf6ce1d9df))
(fp_line (start -2.25 1) (end 1.65 1) (layer "F.SilkS") (width 0.12) (tstamp 64e22b8a-a3a1-421b-af1f-569986eba5ea))
(fp_line (start -2.35 -1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 36b21d49-edc4-4198-976d-334271219974))
(fp_line (start 2.35 1.15) (end -2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 4c559ee6-9320-4093-ad72-3d2a0e27c16b))
(fp_line (start 2.35 -1.15) (end 2.35 1.15) (layer "F.CrtYd") (width 0.05) (tstamp 681a55db-d03f-47fd-aac2-6239b3f4d2c0))
(fp_line (start -2.35 -1.15) (end 2.35 -1.15) (layer "F.CrtYd") (width 0.05) (tstamp a32cca7b-8f67-40b1-adfd-5eb648aaed25))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer "F.Fab") (width 0.1) (tstamp 15378c3e-6104-47ac-94f6-52b1b5412783))
(fp_line (start 0.25 0) (end 0.75 0) (layer "F.Fab") (width 0.1) (tstamp 18747853-79a4-4638-a750-ca62ffe4b297))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer "F.Fab") (width 0.1) (tstamp 2e093072-cecf-46ee-af71-bf6dcd7928f0))