forked from coseyfannitutti/mysterium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mysterium-pcb.net
2187 lines (2187 loc) · 79.4 KB
/
mysterium-pcb.net
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
(export (version D)
(design
(source C:\Users\bryan\OneDrive\github\mysterium\mysterium-pcb.sch)
(date "10/14/2019 1:19:43 AM")
(tool "Eeschema (5.1.4)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source mysterium-pcb.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref R1)
(value 5.1k)
(footprint cftkb:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D059885))
(comp (ref R2)
(value 5.1k)
(footprint cftkb:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D059DB7))
(comp (ref USB1)
(value USB_C_GCT_USB4085)
(footprint cftkb:USB_C_GCT_USB4085)
(libsource (lib Type-C) (part USB_C_GCT_USB4085) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D127DE0))
(comp (ref R3)
(value 75R)
(footprint cftkb:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1C25EC))
(comp (ref R4)
(value 75R)
(footprint cftkb:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1C27D1))
(comp (ref Y1)
(value Crystal)
(footprint cftkb:Crystal_HC49-4H_Vertical)
(datasheet ~)
(libsource (lib Device) (part Crystal) (description "Two pin crystal"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1F9BED))
(comp (ref C2)
(value 22p)
(footprint cftkb:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D22BD08))
(comp (ref C1)
(value 22p)
(footprint cftkb:C_Disc_D3.0mm_W1.6mm_P2.50mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D22BE46))
(comp (ref D95)
(value 3.6V)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Zener_Small) (description "Zener diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D184B7B))
(comp (ref D96)
(value 3.6V)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Zener_Small) (description "Zener diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D184D75))
(comp (ref R5)
(value 1.5k)
(footprint cftkb:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2B8CD8))
(comp (ref F1)
(value 500mA)
(footprint cftkb:polyfuse_5.1mm)
(datasheet ~)
(libsource (lib Device) (part Polyfuse_Small) (description "Resettable fuse, polymeric positive temperature coefficient, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D2F73B7))
(comp (ref C3)
(value 4.7u)
(footprint cftkb:CP_Radial_D4.0mm_P1.50mm)
(datasheet ~)
(libsource (lib Device) (part CP1_Small) (description "Polarized capacitor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D175B8C))
(comp (ref C4)
(value 0.1u)
(footprint cftkb:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D176D89))
(comp (ref C5)
(value 0.1u)
(footprint cftkb:C_Disc_D4.3mm_W1.9mm_P5.00mm)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D176ED3))
(comp (ref RESET1)
(value RESET)
(footprint cftkb:SW_PUSH_6mm)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D18D9C7))
(comp (ref LED1)
(value POWER)
(footprint cftkb:LED_D3.0mm)
(datasheet ~)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1AD596))
(comp (ref R6)
(value 1.5K)
(footprint cftkb:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1ADA68))
(comp (ref R7)
(value 10k)
(footprint cftkb:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D19ED3B))
(comp (ref BOOT1)
(value BOOT)
(footprint cftkb:SW_PUSH_6mm)
(libsource (lib keyboard_parts) (part SW_PUSH) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D1B3FAF))
(comp (ref J1)
(value AVR-ISP-6)
(footprint cftkb:AVR_ICSP_3x2)
(datasheet " ~")
(libsource (lib Connector) (part AVR-ISP-6) (description "Atmel 6-pin ISP connector"))
(sheetpath (names /) (tstamps /))
(tstamp 5D525B77))
(comp (ref U1)
(value ATmega32A-PU)
(footprint cftkb:DIP-40_W15.24mm)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8155-8-bit-microcontroller-avr-atmega32a_datasheet.pdf)
(libsource (lib MCU_Microchip_ATmega) (part ATmega32A-PU) (description "16MHz, 32kB Flash, 2kB SRAM, 1kB EEPROM, JTAG, DIP-40"))
(sheetpath (names /) (tstamps /))
(tstamp 5D1828C7))
(comp (ref SW0)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B8E9A))
(comp (ref D0)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9BD1FB))
(comp (ref D16)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9CDE6F))
(comp (ref SW16)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9CDE80))
(comp (ref D33)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9CFC89))
(comp (ref SW33)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.50u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9CFC9A))
(comp (ref D50)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D1715))
(comp (ref SW50)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.75u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D1726))
(comp (ref D64)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D3731))
(comp (ref SW64)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_2.25u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D3742))
(comp (ref D77)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D69AC))
(comp (ref SW77)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.50u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D69BD))
(comp (ref SW65)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D962534))
(comp (ref SW52)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D962545))
(comp (ref SW79)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.25u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D962556))
(comp (ref SW17)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D962567))
(comp (ref SW34)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D962578))
(comp (ref D34)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D962589))
(comp (ref D79)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9625AB))
(comp (ref D52)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9625CD))
(comp (ref D17)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9625DE))
(comp (ref D65)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9625EF))
(comp (ref SW66)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D96D1C9))
(comp (ref SW53)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D96D1DA))
(comp (ref SW81)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.50u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D96D1EB))
(comp (ref SW18)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D96D1FC))
(comp (ref SW35)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D96D20D))
(comp (ref D35)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D96D21E))
(comp (ref D1)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D96D22F))
(comp (ref D81)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D96D240))
(comp (ref SW1)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D96D251))
(comp (ref D53)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D96D262))
(comp (ref D18)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D96D273))
(comp (ref D66)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D96D284))
(comp (ref SW54)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D978FCD))
(comp (ref SW36)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D978FDE))
(comp (ref SW2)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D978FEF))
(comp (ref SW19)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D979000))
(comp (ref D19)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D979011))
(comp (ref D67)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D979022))
(comp (ref D36)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D979033))
(comp (ref SW67)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D979044))
(comp (ref D2)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D979055))
(comp (ref D54)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D979066))
(comp (ref SW55)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D985C85))
(comp (ref SW37)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D985C96))
(comp (ref SW3)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D985CA7))
(comp (ref SW20)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D985CB8))
(comp (ref D20)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D985CC9))
(comp (ref D68)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D985CDA))
(comp (ref D37)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D985CEB))
(comp (ref SW68)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D985CFC))
(comp (ref D3)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D985D0D))
(comp (ref D55)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D985D1E))
(comp (ref SW56)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D990A64))
(comp (ref SW38)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D990A75))
(comp (ref SW4)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D990A86))
(comp (ref SW21)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D990A97))
(comp (ref D21)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D990AA8))
(comp (ref D69)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D990AB9))
(comp (ref D38)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D990ACA))
(comp (ref SW69)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D990ADB))
(comp (ref D4)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D990AEC))
(comp (ref D56)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D990AFD))
(comp (ref SW22)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D99E254))
(comp (ref SW70)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D99E265))
(comp (ref D5)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D99E276))
(comp (ref SW39)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D99E287))
(comp (ref D70)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D99E298))
(comp (ref SW5)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D99E2A9))
(comp (ref D83)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D99E2BA))
(comp (ref D39)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D99E2CB))
(comp (ref D22)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D99E2DC))
(comp (ref SW83)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D99E2ED))
(comp (ref D57)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D99E2FE))
(comp (ref SW57)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D99E30F))
(comp (ref SW40)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6BD6))
(comp (ref SW58)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6BE7))
(comp (ref D85)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6BF8))
(comp (ref SW7)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6C09))
(comp (ref SW24)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6C1A))
(comp (ref SW42)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6C2B))
(comp (ref D42)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6C3C))
(comp (ref SW41)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6C4D))
(comp (ref D6)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6C5E))
(comp (ref D72)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6C6F))
(comp (ref SW6)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6C80))
(comp (ref SW23)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6C91))
(comp (ref D23)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6CA2))
(comp (ref D40)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6CB3))
(comp (ref SW59)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6CC4))
(comp (ref D41)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6CD5))
(comp (ref D7)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6CE6))
(comp (ref SW71)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6CF7))
(comp (ref D71)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6D08))
(comp (ref SW25)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6D19))
(comp (ref SW72)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6D2A))
(comp (ref D59)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6D3B))
(comp (ref SW73)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6D4C))
(comp (ref D58)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6D5D))
(comp (ref D8)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6D6E))
(comp (ref D24)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6D7F))
(comp (ref D73)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6D90))
(comp (ref SW8)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6DA1))
(comp (ref D60)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6DB2))
(comp (ref SW85)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.25u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6DC3))
(comp (ref D25)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6DD4))
(comp (ref SW60)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9B6DE5))
(comp (ref SW26)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D0D3A))
(comp (ref SW43)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D0D4B))
(comp (ref D43)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D0D6D))
(comp (ref SW74)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D0D7E))
(comp (ref D86)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D0D8F))
(comp (ref D61)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D0DA0))
(comp (ref SW86)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.50u_PCBNOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D0DB1))
(comp (ref D26)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D0DD3))
(comp (ref D74)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D0DE4))
(comp (ref SW61)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5D9D0DF5))
(comp (ref SW9)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DFA567A))
(comp (ref SW27)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DAC576D))
(comp (ref SW44)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DACAF0B))
(comp (ref SW62)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DAD121D))
(comp (ref D44)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DAD8CDF))
(comp (ref D62)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DADD4F5))
(comp (ref D27)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DAE09B3))
(comp (ref D9)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DAE42F9))
(comp (ref SW10)
(value KEYSW)
(footprint cftkb:SW_Cherry_MX1A_1.00u_PCB-NOSCREEN)
(libsource (lib keyboard_parts) (part KEYSW) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DAF3578))
(comp (ref D28)
(value D_Small)
(footprint cftkb:D_DO-35_SOD27_P5.08mm_Horizontal)
(datasheet ~)
(libsource (lib Device) (part D_Small) (description "Diode, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DAF3589))