-
Notifications
You must be signed in to change notification settings - Fork 18
/
steamvan.net
2549 lines (2549 loc) · 94.6 KB
/
steamvan.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 /home/jmdaly/git/steamvan/steamvan.sch)
(date "Sat 16 Feb 2019 09:39:59 PM EST")
(tool "Eeschema 5.0.2-bee76a0~70~ubuntu16.04.1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source steamvan.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /matrix/) (tstamps /5C226ED8/)
(title_block
(title)
(company)
(rev)
(date)
(source matrix.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /rgb_underglow/) (tstamps /5C6FFEF2/)
(title_block
(title)
(company)
(rev)
(date)
(source rgb_underglow.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U1)
(value STM32F303CBTx)
(footprint Package_QFP:LQFP-48_7x7mm_P0.5mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00058181.pdf)
(libsource (lib MCU_ST_STM32F3) (part STM32F303CBTx) (description "ARM Cortex-M4 MCU, 128KB flash, 32KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48"))
(sheetpath (names /) (tstamps /))
(tstamp 5C2005CE))
(comp (ref Y1)
(value 8MHz)
(footprint Crystal:Crystal_SMD_5032-4Pin_5.0x3.2mm)
(datasheet ~)
(libsource (lib Device) (part Crystal_GND24) (description "Four pin crystal, GND on pins 2 and 4"))
(sheetpath (names /) (tstamps /))
(tstamp 5C200764))
(comp (ref U2)
(value TLV70233_SOT23-5)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet http://www.ti.com/lit/ds/symlink/tlv702.pdf)
(libsource (lib Regulator_Linear) (part TLV70233_SOT23-5) (description "300 mA Low Dropout Voltage Regulator, Fixed Output 3.3V, SOT-23-5"))
(sheetpath (names /) (tstamps /))
(tstamp 5C200B8E))
(comp (ref USB1)
(value HRO-TYPE-C-31-M-12)
(footprint Type-C:HRO-TYPE-C-31-M-12-Assembly)
(libsource (lib Type-C) (part HRO-TYPE-C-31-M-12) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C200E94))
(comp (ref Q1)
(value FMMT493TA)
(footprint digikey-footprints:SOT-23-3)
(datasheet https://www.diodes.com/assets/Datasheets/FMMT493.pdf)
(fields
(field (name Category) "Discrete Semiconductor Products")
(field (name DK_Datasheet_Link) https://www.diodes.com/assets/Datasheets/FMMT493.pdf)
(field (name DK_Detail_Page) /product-detail/en/diodes-incorporated/FMMT493TA/FMMT493CT-ND/92663)
(field (name Description) "TRANS NPN 100V 1A SOT23-3")
(field (name Digi-Key_PN) FMMT493CT-ND)
(field (name Family) "Transistors - Bipolar (BJT) - Single")
(field (name MPN) FMMT493TA)
(field (name Manufacturer) "Diodes Incorporated")
(field (name Status) Active))
(libsource (lib dk_Transistors-Bipolar-BJT-Single) (part FMMT493TA) (description "TRANS NPN 100V 1A SOT23-3"))
(sheetpath (names /) (tstamps /))
(tstamp 5C202166))
(comp (ref C1)
(value 30p)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C202577))
(comp (ref C2)
(value 30p)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C202622))
(comp (ref C10)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C20429C))
(comp (ref C11)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C20458C))
(comp (ref U3)
(value NUF2221W1T2G)
(footprint digikey-footprints:SOT-363)
(datasheet Good)
(fields
(field (name Field4) "SOT-363 ON Semiconductor")
(field (name Field5) NUF2221W1T2G)
(field (name Field6) "0.27 USD")
(field (name Field7) "NUF2221W1T2G Series 8 V USB Upstream Terminator with ESD Protection - SC-88")
(field (name Field8) "ON Semiconductor"))
(libsource (lib NUF2221W1T2G) (part NUF2221W1T2G) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C20726E))
(comp (ref RC1)
(value 470)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C20860C))
(comp (ref C6)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C20B145))
(comp (ref C7)
(value 10n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C20C5FA))
(comp (ref C5)
(value 4.7u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C20E014))
(comp (ref C4)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C20FEA5))
(comp (ref C3)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C211F4D))
(comp (ref C8)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C212084))
(comp (ref F1)
(value 500mA)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part Polyfuse) (description "Resettable fuse, polymeric positive temperature coefficient"))
(sheetpath (names /) (tstamps /))
(tstamp 5C223888))
(comp (ref RC6)
(value 5.1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C2332EB))
(comp (ref RC7)
(value 5.1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C238A64))
(comp (ref J1)
(value Conn_01x05_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x05_Male) (description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5C2401F1))
(comp (ref C9)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5C26F1E3))
(comp (ref SW1)
(value SW_Push)
(footprint Button_Switch_SMD:SW_SPST_TL3342)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /) (tstamps /))
(tstamp 5C28A66B))
(comp (ref RC8)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5C29333F))
(comp (ref K_TAB1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22BCAB))
(comp (ref K_Q1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22CB41))
(comp (ref K_W1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22D062))
(comp (ref K_E1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22D34C))
(comp (ref K_R1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2134DC))
(comp (ref K_T1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2135CD))
(comp (ref K_Y1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C213996))
(comp (ref K_U1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C213D0B))
(comp (ref K_I1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2140A2))
(comp (ref K_O1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C214680))
(comp (ref K_P1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C215D8C))
(comp (ref K_FN1)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MXOnly-1.25U)
(libsource (lib MX_Alps_Hybrids) (part MX-1.25U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2182DE))
(comp (ref K_A1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21875E))
(comp (ref K_S1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C218B15))
(comp (ref K_BACK1)
(value MX-1.75U)
(footprint MX_Alps_Hybrid:MXOnly-1.75U)
(libsource (lib MX_Alps_Hybrids) (part MX-1.75U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C219196))
(comp (ref K_D1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C219692))
(comp (ref K_F1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C219A48))
(comp (ref K_G1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C219B32))
(comp (ref K_H1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C219FA0))
(comp (ref K_J1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21A3EB))
(comp (ref K_K1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21A885))
(comp (ref K_L1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21ACD3))
(comp (ref K_;1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21B1AB))
(comp (ref K_FN2)
(value MX-1.5U)
(footprint MX_Alps_Hybrid:MXOnly-1.5U)
(libsource (lib MX_Alps_Hybrids) (part MX-1.5U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21B7B1))
(comp (ref K_LSHIFT1)
(value MX-1.75U)
(footprint MX_Alps_Hybrid:MXOnly-1.75U)
(libsource (lib MX_Alps_Hybrids) (part MX-1.75U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21BD8F))
(comp (ref K_Z1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21C298))
(comp (ref K_X1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21C733))
(comp (ref K_C1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21CD52))
(comp (ref K_V1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21CEE7))
(comp (ref K_B1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21D4F5))
(comp (ref K_N1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21D9C2))
(comp (ref K_M1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21DEF0))
(comp (ref K_,1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21E3FF))
(comp (ref K_.1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21EA11))
(comp (ref K_/1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21EF2E))
(comp (ref K_FN3)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C21F5D0))
(comp (ref K_LCTL1)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MXOnly-1.25U)
(libsource (lib MX_Alps_Hybrids) (part MX-1.25U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C220096))
(comp (ref K_FN4)
(value MX-1.5U)
(footprint MX_Alps_Hybrid:MXOnly-1.5U)
(libsource (lib MX_Alps_Hybrids) (part MX-1.5U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2205F7))
(comp (ref K_SUPER1)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MXOnly-1.25U)
(libsource (lib MX_Alps_Hybrids) (part MX-1.25U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C220C25))
(comp (ref K_ENTER1)
(value MX-2.25U)
(footprint MX_Alps_Hybrid:MXOnly-2.25U-ReversedStabilizers)
(libsource (lib MX_Alps_Hybrids) (part MX-2.25U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22137B))
(comp (ref K_RIGHT1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1.75U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C221BB4))
(comp (ref K_RALT2)
(value MX-1.5U)
(footprint MX_Alps_Hybrid:MXOnly-1.5U-FLIPPED)
(libsource (lib MX_Alps_Hybrids) (part MX-1.5U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2230C9))
(comp (ref K_SPACE1)
(value MX-2U)
(footprint MX_Alps_Hybrid:MXOnly-2U-ReversedStabilizers)
(libsource (lib MX_Alps_Hybrids) (part MX-2U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C223C71))
(comp (ref K_RALT1)
(value MX-1.25U)
(footprint MX_Alps_Hybrid:MXOnly-1.25U)
(libsource (lib MX_Alps_Hybrids) (part MX-1.25U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2257CA))
(comp (ref K_RSHIFT1)
(value MX-1.5U)
(footprint MX_Alps_Hybrid:MXOnly-1.5U)
(libsource (lib MX_Alps_Hybrids) (part MX-1.5U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22654E))
(comp (ref K_DOWN1)
(value MX-1U)
(footprint MX_Alps_Hybrid:MXOnly-1U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2266A8))
(comp (ref K_LOCK1)
(value MX-1.75U)
(footprint MX_Alps_Hybrid:MXOnly-1.75U)
(libsource (lib MX_Alps_Hybrids) (part MX-1U) (description ""))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C226798))
(comp (ref R1)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22994A))
(comp (ref R2)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22A9A6))
(comp (ref R3)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22B6AD))
(comp (ref R4)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22BD03))
(comp (ref R5)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22C543))
(comp (ref R6)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22CBAF))
(comp (ref R7)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22D669))
(comp (ref R8)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22DF3E))
(comp (ref R9)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22E5E0))
(comp (ref R10)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22EE13))
(comp (ref R11)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22F721))
(comp (ref R12)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C22FF08))
(comp (ref R13)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C230B1E))
(comp (ref R14)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C232397))
(comp (ref R15)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C232ACF))
(comp (ref R16)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2331F7))
(comp (ref R17)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2338B3))
(comp (ref R18)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C234172))
(comp (ref R19)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C234AA8))
(comp (ref R20)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2351DF))
(comp (ref R21)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C235A83))
(comp (ref R22)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C23637A))
(comp (ref R23)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C236C64))
(comp (ref R24)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C237453))
(comp (ref R25)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2380A3))
(comp (ref R26)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C239190))
(comp (ref R27)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2398E0))
(comp (ref R28)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C239FF2))
(comp (ref R29)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C23A92E))
(comp (ref R30)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C23B070))
(comp (ref R31)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C23B9DC))
(comp (ref R32)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C23C64C))
(comp (ref R33)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C23D17A))
(comp (ref R34)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C23DEB6))
(comp (ref R35)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C23E818))
(comp (ref R36)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C23F131))
(comp (ref R37)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C24051B))
(comp (ref R38)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C241F65))
(comp (ref R40)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2426DB))
(comp (ref R41)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C24348B))
(comp (ref R42)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2440AF))
(comp (ref R43)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C244C8E))
(comp (ref R44)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2456B8))
(comp (ref R45)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C2460FE))
(comp (ref R46)
(value 560)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5C246BEC))
(comp (ref D1)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D103864))
(comp (ref D2)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D1534B1))
(comp (ref D3)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D1A4AB1))
(comp (ref D4)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D1A4FB1))
(comp (ref D5)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D1A5403))
(comp (ref D6)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D1A5631))
(comp (ref D7)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D1A5895))
(comp (ref D8)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D1A5CBF))
(comp (ref D9)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D1A5F47))
(comp (ref D10)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D1A6230))
(comp (ref D11)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D1A65DE))
(comp (ref D12)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D1A6770))
(comp (ref D13)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D50D6A6))
(comp (ref D14)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D59DB80))
(comp (ref D15)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D5FF233))
(comp (ref D16)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D662BFF))
(comp (ref D17)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D6C7B80))
(comp (ref D18)
(value D)
(footprint Diode_SMD:D_SOD-123)
(datasheet "http://www.mccsemi.com/up_pdf/1N4148W(SOD123).pdf")
(fields
(field (name "LCSC PN") C83528)
(field (name Product) 1N4148W-TP))
(libsource (lib Device) (part D) (description Diode))
(sheetpath (names /matrix/) (tstamps /5C226ED8/))
(tstamp 5D72DE3D))
(comp (ref D19)
(value D)