-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwitch ETHERNET-PC1123O.kicad_pcb
17299 lines (17150 loc) · 944 KB
/
Switch ETHERNET-PC1123O.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.62684)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(1 "In1.Cu" power "GND")
(2 "In2.Cu" power "Power")
(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
(stackup
(layer "F.SilkS" (type "Top Silk Screen") (color "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Purple") (thickness 0.02032))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "prepreg") (color "FR4 natural") (thickness 0.2104) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In1.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 2" (type "core") (color "FR4 natural") (thickness 1.065) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "In2.Cu" (type "copper") (thickness 0.0152))
(layer "dielectric 3" (type "prepreg") (color "FR4 natural") (thickness 0.2104) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Purple") (thickness 0.02032))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "Net-(U1-XTALI)")
(net 3 "Net-(U1-XTALO)")
(net 4 "Net-(U1-MDIREF)")
(net 5 "Net-(R2-Pad2)")
(net 6 "Net-(TR1-0CT4)")
(net 7 "Net-(TR1-0CT3)")
(net 8 "P0MDID_P")
(net 9 "P0MDID_N")
(net 10 "+1V1")
(net 11 "VDC")
(net 12 "unconnected-(U1-RTT1-Pad39)")
(net 13 "Net-(TR1-0CT2)")
(net 14 "Net-(TR1-0CT1)")
(net 15 "Net-(TR1-1CT1)")
(net 16 "Net-(TR1-1CT2)")
(net 17 "Net-(TR1-1CT3)")
(net 18 "Net-(TR1-1CT4)")
(net 19 "Earth")
(net 20 "HV_CHASIS")
(net 21 "Net-(TR2-0CT1)")
(net 22 "Net-(TR2-0CT2)")
(net 23 "Net-(TR2-0CT3)")
(net 24 "Net-(TR2-0CT4)")
(net 25 "Net-(TR2-1CT1)")
(net 26 "Net-(TR2-1CT2)")
(net 27 "Net-(TR2-1CT3)")
(net 28 "Net-(TR2-1CT4)")
(net 29 "Net-(TR3-TCT1)")
(net 30 "unconnected-(U1-NC-Pad76)")
(net 31 "SCK")
(net 32 "SDA")
(net 33 "Net-(TR3-TCT2)")
(net 34 "Net-(TR3-TCT3)")
(net 35 "Net-(TR3-TCT4)")
(net 36 "/SW1")
(net 37 "Net-(U2-VBST)")
(net 38 "VCC")
(net 39 "/SW2")
(net 40 "Net-(U3-VBST)")
(net 41 "Net-(D1-K)")
(net 42 "Net-(D2-K)")
(net 43 "Rx_UART")
(net 44 "Net-(D3-K)")
(net 45 "Tx_UART")
(net 46 "Net-(D4-A)")
(net 47 "EP0MDIA_P")
(net 48 "EP0MDIA_N")
(net 49 "EP0MDIB_P")
(net 50 "EP0MDIB_N")
(net 51 "EP0MDIC_P")
(net 52 "EP0MDIC_N")
(net 53 "EP0MDID_P")
(net 54 "EP0MDID_N")
(net 55 "Net-(J2-Pad9)")
(net 56 "P0LED0")
(net 57 "Net-(J2-Pad11)")
(net 58 "P0LED1")
(net 59 "EP1MDIA_P")
(net 60 "EP1MDIA_N")
(net 61 "EP1MDIB_P")
(net 62 "EP1MDIB_N")
(net 63 "EP1MDIC_P")
(net 64 "EP1MDIC_N")
(net 65 "EP1MDID_P")
(net 66 "EP1MDID_N")
(net 67 "Net-(J3-Pad9)")
(net 68 "P1LED0")
(net 69 "Net-(J3-Pad11)")
(net 70 "P1LED1")
(net 71 "EP2MDIA_P")
(net 72 "EP2MDIA_N")
(net 73 "EP2MDIB_P")
(net 74 "EP2MDIB_N")
(net 75 "EP2MDIC_P")
(net 76 "EP2MDIC_N")
(net 77 "EP2MDID_P")
(net 78 "EP2MDID_N")
(net 79 "Net-(J4-Pad9)")
(net 80 "P2LED0")
(net 81 "Net-(J4-Pad11)")
(net 82 "P2LED1")
(net 83 "EP3MDIA_P")
(net 84 "EP3MDIA_N")
(net 85 "EP3MDIB_P")
(net 86 "EP3MDIB_N")
(net 87 "EP3MDIC_P")
(net 88 "EP3MDIC_N")
(net 89 "EP3MDID_P")
(net 90 "EP3MDID_N")
(net 91 "Net-(J5-Pad9)")
(net 92 "P3LED0")
(net 93 "Net-(J5-Pad11)")
(net 94 "P3LED1")
(net 95 "EP4MDIA_P")
(net 96 "EP4MDIA_N")
(net 97 "EP4MDIB_P")
(net 98 "EP4MDIB_N")
(net 99 "EP4MDIC_P")
(net 100 "EP4MDIC_N")
(net 101 "EP4MDID_P")
(net 102 "EP4MDID_N")
(net 103 "Net-(J6-Pad9)")
(net 104 "P4LED0")
(net 105 "Net-(J6-Pad11)")
(net 106 "P4LED1")
(net 107 "SPIF_CLK")
(net 108 "SPIF_D0")
(net 109 "SPIF_D1")
(net 110 "SPIF_CS")
(net 111 "Net-(TR1-0CTT4)")
(net 112 "Net-(TR1-0CTT3)")
(net 113 "Net-(TR1-0CTT2)")
(net 114 "Net-(TR1-0CTT1)")
(net 115 "Net-(TR1-1CTT4)")
(net 116 "Net-(TR1-1CTT3)")
(net 117 "Net-(TR1-1CTT2)")
(net 118 "Net-(TR1-1CTT1)")
(net 119 "Net-(TR2-1CTT4)")
(net 120 "Net-(TR2-0CTT4)")
(net 121 "Net-(TR2-0CTT3)")
(net 122 "Net-(TR2-1CTT3)")
(net 123 "Net-(TR2-0CTT2)")
(net 124 "Net-(TR2-1CTT2)")
(net 125 "Net-(TR2-0CTT1)")
(net 126 "Net-(TR2-1CTT1)")
(net 127 "Net-(TR3-MCT4)")
(net 128 "Net-(TR3-MCT3)")
(net 129 "Net-(TR3-MCT2)")
(net 130 "Net-(TR3-MCT1)")
(net 131 "VFB2")
(net 132 "Net-(R36-Pad1)")
(net 133 "EN")
(net 134 "DIS_8051")
(net 135 "P0MDIA_P")
(net 136 "P0MDIA_N")
(net 137 "P0MDIB_P")
(net 138 "P0MDIB_N")
(net 139 "P0MDIC_P")
(net 140 "P0MDIC_N")
(net 141 "P1MDIA_P")
(net 142 "P1MDIA_N")
(net 143 "P1MDIB_P")
(net 144 "P1MDIB_N")
(net 145 "P1MDIC_P")
(net 146 "P1MDIC_N")
(net 147 "P1MDID_P")
(net 148 "P1MDID_N")
(net 149 "P2MDIA_P")
(net 150 "P2MDIA_N")
(net 151 "P2MDIB_P")
(net 152 "P2MDIB_N")
(net 153 "P2MDIC_P")
(net 154 "P2MDIC_N")
(net 155 "P2MDID_P")
(net 156 "P2MDID_N")
(net 157 "P3MDIA_P")
(net 158 "P3MDIA_N")
(net 159 "P3MDIB_P")
(net 160 "P3MDIB_N")
(net 161 "P3MDIC_P")
(net 162 "P3MDIC_N")
(net 163 "P3MDID_P")
(net 164 "P3MDID_N")
(net 165 "P4MDIA_P")
(net 166 "P4MDIA_N")
(net 167 "P4MDIB_P")
(net 168 "P4MDIB_N")
(net 169 "P4MDIC_P")
(net 170 "P4MDIC_N")
(net 171 "P4MDID_P")
(net 172 "P4MDID_N")
(net 173 "VFB1")
(net 174 "Net-(U1-~{RESET})")
(net 175 "Net-(D5-K)")
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 0252a77c-70b5-44b1-8823-9559989be08e)
(at 221.283044 64.74 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "Switch ETHERNET.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/d0830860-b9c0-4591-bacc-202bc0d645f9")
(attr smd)
(fp_text reference "C6" (at 0 -1.16 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4fec6d2-a34a-42c3-8b8f-42c2c055a577)
)
(fp_text value "100nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ce26b441-900a-4978-9538-c2542b528dcb)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 46930fed-79cc-4f66-a853-70a016356b50)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2d090fc-f630-4b7f-9a96-82e6fd035adf))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0759c110-804d-4f31-9345-a1cd397e6ac3))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e31d208-e967-4bb8-afe2-c7315393e54a))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cf451eb9-a599-4b13-a31e-f67284dc66a8))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 113c349c-1d13-4316-af35-1cc880883f9e))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 34b37ae0-3aea-4822-954d-a72e19205556))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7c2228c-525d-4989-acf1-06a46666429f))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 634f8702-f952-4d99-bece-d63c644770d2))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44db8bcf-b386-4a29-980f-9f438c312bd6))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c385ee3-1720-4222-88c8-cbe2a17eee03))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 07535efa-cac2-45d9-b917-4359caf14f59))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "Net-(TR1-0CT2)") (pintype "passive") (tstamp a7794669-9700-411b-ae8f-e4c15688e23f))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 03116a18-8fcf-4e25-bf40-2ddb6add48a1)
(at 184.083 92.834)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "Switch ETHERNET.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/f9c5b55f-8ea6-4c0a-b987-aaec7831186d")
(attr smd)
(fp_text reference "C29" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06a52314-9ee5-4450-b3cf-bbbbb5628f2c)
)
(fp_text value "22uF" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7aed8bcd-47ed-4583-a64a-1a074397ad3e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 6981b7a2-a798-42b0-b290-5c269bdc8dfb)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9ae21b23-f905-46f8-b7e3-06684bf3d87c))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34c41d19-db71-4cc2-91ed-c15a8e881ed9))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9755e538-9b27-484f-87e0-8ae0e052d485))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81927cba-d5aa-473c-8fbc-00b28188a603))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5fb81f0a-74a5-4963-b450-64bbcef75179))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b95ee608-b14f-4817-a1b7-076530929cee))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8df56fbc-d6ef-428b-820b-b3afe3dbefa5))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4a843c69-c71f-47dd-bb99-b1458eab8660))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c3f73a64-4ce6-468e-9c03-870527e5e408))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ad177f9b-9fca-4bb1-a436-7392d1b66ba8))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "+1V1") (pintype "passive") (tstamp 5907e9d2-851f-4821-8eea-b65b2ae1999c))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 409f7589-5676-4b61-86dc-a41b9163288a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 038fa398-874c-4450-b2f5-b64a5d5cbf3b)
(at 184.271092 64.74 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "Switch ETHERNET.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/561ebf45-7307-44f5-86d4-69703d995fee")
(attr smd)
(fp_text reference "C15" (at 0 -1.16 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2aaf04fd-b01a-42e0-85e5-763f22982ae3)
)
(fp_text value "100nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3cf27db-9b06-43c5-ae8e-2b715e899d8d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 824dd0de-ba68-4a92-a1f0-8bdd97213a0e)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1bcc2ea6-893c-4fbe-8410-f448ce1c999b))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7b31fec-1a19-4f28-b731-13b9e59ad488))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ffe4ee03-236e-4c26-8581-7d0e96ab16f3))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 42f2646c-9adf-4813-9d17-2f41042acc0d))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f5e36bad-ae5f-49fc-b6ec-397b55791c03))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 70215c7e-7527-4fba-8468-c9e01263667e))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 85130c45-d5e3-49ce-83c3-680c0cd9a48d))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b7b7ca0b-b7bf-4fb1-a832-96ec432d6fed))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8f85c53-5af3-410e-b530-23ba2ba82e29))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c943214e-51c2-4fed-94f3-608052622762))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp acae7fc2-c115-4e07-94d2-46f8d9cc3400))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Net-(TR2-0CT3)") (pintype "passive") (tstamp ad68f039-c918-46dd-bd0a-ea5bb213f806))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tstamp 06377bc5-1773-4f0d-859f-d3cd438f4fc7)
(at 177.3705 87.122)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "Switch ETHERNET.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "-4.4A Id, -40V Vds, P-Channel MOSFET, SOT-23")
(property "ki_keywords" "P-Channel MOSFET")
(path "/b409f744-3bd1-4d66-9cf9-55552f46e364")
(attr smd)
(fp_text reference "Q1" (at 0 -2.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc24d1d5-98fd-4258-88f8-396aeae64d10)
)
(fp_text value "SI2301-ZE" (at 0 2.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6b726a85-a883-41b6-898b-0b28a23836a9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.32 0.32) (thickness 0.05)))
(tstamp 94e03d62-36ab-4213-b313-770e26c3b5de)
)
(fp_line (start 0 -1.56) (end -1.675 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f6b9089-b271-48dc-b094-a84c90246d98))
(fp_line (start 0 -1.56) (end 0.65 -1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9821378b-168e-47bf-8b4f-de63ddb0d3d8))
(fp_line (start 0 1.56) (end -0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d92124d6-6734-4cbb-8ca1-a6e322d47286))
(fp_line (start 0 1.56) (end 0.65 1.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fad5f672-e0f0-477d-bee9-2b5a19c61761))
(fp_line (start -1.92 -1.7) (end -1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9da2273-fffd-49b8-ba10-ca0468f356e2))
(fp_line (start -1.92 1.7) (end 1.92 1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03c5b3a3-018c-4896-a70f-815cc132bf8a))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a02c1299-6c3f-43f1-b43c-90a542bc8c10))
(fp_line (start 1.92 1.7) (end 1.92 -1.7)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aa345919-6cd5-4ed8-b8c0-9ebc1c5b18ca))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55a2197d-9511-44cf-bb73-e90dfb94a025))
(fp_line (start -0.65 1.45) (end -0.65 -1.125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4677c42a-d0e8-4431-803d-b1823fe8dc36))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7983c2cf-9755-427a-ad76-cd1ed982ea86))
(fp_line (start 0.65 -1.45) (end 0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 62025162-d133-4784-8a74-b4aa76c85232))
(fp_line (start 0.65 1.45) (end -0.65 1.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 06ea8971-1ed2-429a-a6d3-6e05b4f1c3d3))
(pad "1" smd roundrect (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 46 "Net-(D4-A)") (pinfunction "G") (pintype "input") (tstamp 37f042e5-9d23-47c1-b077-808e1e84e0ed))
(pad "2" smd roundrect (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 38 "VCC") (pinfunction "S") (pintype "passive") (tstamp 25afa278-c821-4aaa-8991-fd5a6041d861))
(pad "3" smd roundrect (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "VDC") (pinfunction "D") (pintype "passive") (tstamp c9e5e074-8d16-49c8-a7e3-557ec943d406))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0201_0603Metric" (layer "F.Cu")
(tstamp 063e83f1-2fb5-4385-94c1-9427dc09e362)
(at 221.30117 46.518983 90)
(descr "Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Switch ETHERNET.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/3398ff2f-c834-4b0d-a100-ea168f26aa82")
(attr smd)
(fp_text reference "R6" (at 0 -1.05 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55ac053d-27f6-46be-ae54-51f6a22d0690)
)
(fp_text value "75R" (at 0 1.05 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e230f9b8-36b7-4c90-b2f6-0b7544461519)
)
(fp_text user "${REFERENCE}" (at 0 -0.68 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 6683f3d0-25e0-4468-9759-a8b2e81266d8)
)
(fp_line (start -0.7 -0.35) (end 0.7 -0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0511c33a-41b7-4661-847e-bb62086c1b71))
(fp_line (start -0.7 0.35) (end -0.7 -0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 744ba143-da62-4bec-b107-78d0a5b865ee))
(fp_line (start 0.7 -0.35) (end 0.7 0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d87d077-4595-46d1-8a10-deaab401ce22))
(fp_line (start 0.7 0.35) (end -0.7 0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57a85547-c2d3-47a9-9084-25083230be92))
(fp_line (start -0.3 -0.15) (end 0.3 -0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa4c30f7-6e9b-471a-aa83-4eae2b6bdc6a))
(fp_line (start -0.3 0.15) (end -0.3 -0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1f8d33ae-75d2-4b34-85f4-92be83a1f087))
(fp_line (start 0.3 -0.15) (end 0.3 0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1fce6a86-b4b4-483b-a704-5d0e3b18a7d9))
(fp_line (start 0.3 0.15) (end -0.3 0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6356fd4a-4d1c-4870-a10a-9510975f8b15))
(pad "" smd roundrect (at -0.345 0 90) (size 0.318 0.36) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 51e95b3e-3bbf-4d7e-8f67-2170f79a90ac))
(pad "" smd roundrect (at 0.345 0 90) (size 0.318 0.36) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp a20e7a9a-0875-479a-b221-84b1c54bbe92))
(pad "1" smd roundrect (at -0.32 0 90) (size 0.46 0.4) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 113 "Net-(TR1-0CTT2)") (pintype "passive") (tstamp da9c1d65-35f1-4236-9dab-1373bfcbeed0))
(pad "2" smd roundrect (at 0.32 0 90) (size 0.46 0.4) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 20 "HV_CHASIS") (pintype "passive") (tstamp 7dd23b9f-c029-4b01-87b1-ea6c28847123))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0201_0603Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 085547a7-40e4-4310-a5f7-6512f37ba3b5)
(at 192.828 96.634 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Switch ETHERNET.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/0581ec9d-7dbc-49fb-819a-b366dde27be6")
(attr smd)
(fp_text reference "R34" (at 0.25 -2.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 14bd5e7f-ecf7-4be7-90e0-de1a09f58d25)
)
(fp_text value "10K" (at 0 1.43 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7afecd33-2c4f-4501-be2f-416585e3aaa0)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 9f1a1651-0384-41eb-9d21-5f686ba193e5)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3535c99e-cafc-469f-bce4-4238b866bc87))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff91504b-7fba-4f68-bf86-3299886f90de))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b93df2db-872f-4f16-8efa-10ceb0f5c001))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e7d0305c-5b0f-43a6-a8f3-c6edf78e748b))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f876d21-5330-491a-a0d7-2dcdb9be4e79))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e8a54d3f-8c8c-46e9-a2ac-d3e1f8b51fac))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3668e1e9-f978-42b6-a12e-c0db6ae7b03d))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12250d74-1152-4264-8bcf-2a915fb115e4))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4643a091-5966-4fc6-b597-1dabc98a50a7))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0594e15-7b80-4644-bb87-ad4450fd792f))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 173 "VFB1") (pintype "passive") (tstamp 2ec7ab95-75ab-4ee4-ac69-0e82f9022cf5))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp f0547f77-949b-418a-acc1-add0ee47136d))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu")
(tstamp 0c4ad333-28cb-4ce2-9876-602b106b7b3e)
(at 173.215 76.386)
(descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "Switch ETHERNET.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode, small symbol")
(property "ki_keywords" "LED diode light-emitting-diode")
(path "/79b3e899-b1b2-4a46-9b56-be02c7e5ce14")
(attr smd)
(fp_text reference "D2" (at 0 -1.43) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 682a683b-9747-43ab-b8f8-86ff04911967)
)
(fp_text value "Blue_L" (at 4.254 0.976) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 884dea22-586c-41bd-9fca-da5cbc577971)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ba41c5d8-dc91-4e69-9064-ca00ab5e0f6c)
)
(fp_line (start -0.14058 -0.51) (end 0.14058 -0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c30b8f8-f63c-40cb-a3ed-953b75a359a2))
(fp_line (start -0.14058 0.51) (end 0.14058 0.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce190d6d-40e7-43e0-a54c-0c5b1db1cc5d))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 17714d09-352d-4721-8184-5120e53e7fb0))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7802c26e-22f4-4a55-8746-1f76bc8dc071))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a517fe6f-7d7b-42ff-a2d8-ebd5bc858ac1))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8beec6ef-b1f5-425a-905e-afd20f62cecc))
(fp_line (start -0.8 -0.4) (end 0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eac11e9b-7033-4958-b2ab-6dad390350a8))
(fp_line (start -0.8 0.4) (end -0.8 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e9fa4592-73c7-4442-b341-0c1f002a83a0))
(fp_line (start 0.8 -0.4) (end 0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff6ebeb8-f3bf-46c6-a6a1-dc2d09db0cf9))
(fp_line (start 0.8 0.4) (end -0.8 0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d8ca72e-175e-4bf3-9df8-20f8312aa7f8))
(pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 42 "Net-(D2-K)") (pinfunction "K") (pintype "passive") (tstamp 27ff3d05-d3fd-4acf-acd7-1b6a08cfa9cc))
(pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 43 "Rx_UART") (pinfunction "A") (pintype "passive") (tstamp a8a2bd77-7978-4f07-9266-2aa77b758801))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tstamp 0deae8b3-06fc-4520-83bf-6fd1a4f34471)
(at 161.49 95.255 -90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Switch ETHERNET.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/441f6351-7e74-44b1-8c81-36e355c005c4")
(attr smd)
(fp_text reference "R43" (at 0.975 -4.05 -180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19b8b65d-8720-476b-a5a4-c20302578922)
)
(fp_text value "10K" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 818e4704-d04d-4458-bae8-4e025fd4eeae)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7c06c4a0-e72e-48cb-8401-af371d0ae371)
)
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f6906b4-5651-4ec2-b693-a392711f00db))
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1aa9dd3c-1ed9-4c5c-bf1c-487237ff8de8))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2051343e-6572-4d6e-887b-ce7b8d52171e))
(fp_line (start -1.48 0.73) (end -1.48 -0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a6cdddf-0812-4c60-9ff3-65653ad0d25d))
(fp_line (start 1.48 -0.73) (end 1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a81abc3a-c19e-4402-907e-efaf8f5ad454))
(fp_line (start 1.48 0.73) (end -1.48 0.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4766a72b-822a-4b7a-a752-fe692545ae00))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 72f97166-9b7c-4b01-9535-52506b1c2088))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 639769bf-08b1-4342-acab-3f919c856b96))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 88b9d06e-3872-45f4-a652-effb6ffd0401))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a5f8b734-9ed1-454f-a41e-80b31ce0badd))
(pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 131 "VFB2") (pintype "passive") (tstamp edb3611c-70fe-48c9-8771-98b79941752d))
(pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 50d00d2e-a723-457d-b3d4-58014c8c515c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 0fc1f227-2e23-4486-8708-9992091b485f)
(at 153.67 77.47 180)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "Switch ETHERNET.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/8fc40256-2210-4c38-b115-ecfd7003e1f8")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 72d0263d-0886-4d8e-99fc-b751c47092d8)
)
(fp_text value "Conn_01x04" (at 0 9.95 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f1009bf6-efdd-4a06-9ce3-cdf6bf403d18)
)
(fp_text user "${REFERENCE}" (at 0 3.81 270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba57370a-71a9-49ad-8006-b0d5c1f9bf74)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 184b7372-d453-4019-b50b-a7f52fd9bb98))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72993731-70ec-434e-baf0-4c2053473ed3))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be7a9d8f-a428-4df2-a961-c460ab961430))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4baf8434-a3d9-44ed-afbe-d9864696faf1))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7bc86f94-2572-48d1-ac1c-9c50c645de49))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dce8444e-3ec3-4062-90f7-b8c8f0c86822))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e015eb7-630f-4619-bee9-671bb63c156b))
(fp_line (start -1.8 9.4) (end 1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df0f36ad-eb37-44cf-bfb3-b665b564196e))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d87fb6d-b43c-4587-800c-26fb855a4a77))
(fp_line (start 1.8 9.4) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5ecc5000-ac46-4b39-be76-b7bc4b301c12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b6942dac-973d-4ebd-b600-7761ae1d6a55))
(fp_line (start -1.27 8.89) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0ae699e-793d-441b-a5c2-f2a3743c439a))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9597c36-6304-4cf4-a142-c2e37d03c26a))
(fp_line (start 1.27 -1.27) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7509d681-9f5e-4545-95aa-4714eaa0204f))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dde3b90b-7e86-4d88-9fa1-209276ab201f))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "+1V1") (pinfunction "Pin_1") (pintype "passive") (tstamp 07007d46-9bae-44e2-a734-3df82d13dd75))
(pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 45 "Tx_UART") (pinfunction "Pin_2") (pintype "passive") (tstamp ab08f26d-a327-4918-82f2-009d5f2886e7))
(pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 43 "Rx_UART") (pinfunction "Pin_3") (pintype "passive") (tstamp a9b957a2-c974-4f7d-b402-1e8c22902da3))
(pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp fe2e8bec-bdfd-4eae-9abc-775e96eda06c))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0201_0603Metric" (layer "F.Cu")
(tstamp 12cfa2a0-34f7-45e1-a322-fec0cfbadf90)
(at 224.292568 46.540321 90)
(descr "Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Sheetfile" "Switch ETHERNET.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/e2ce263f-a30e-41cf-b067-f64351678877")
(attr smd)
(fp_text reference "R5" (at 0 -1.05 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f352bc31-1c83-42fc-b30e-844052f5ae96)
)
(fp_text value "75R" (at 0 1.05 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 72785545-1fbb-4155-ba80-c250d8e8f01c)
)
(fp_text user "${REFERENCE}" (at 0 -0.68 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp a7b3a623-2a4a-418e-bcdb-ebc3d9d3b9e3)
)
(fp_line (start -0.7 -0.35) (end 0.7 -0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 701329de-bb46-4850-85b4-6ba47eb392e2))
(fp_line (start -0.7 0.35) (end -0.7 -0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb37ca93-5378-410e-868e-67416f34eb9b))
(fp_line (start 0.7 -0.35) (end 0.7 0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1d1eeca0-1c9b-4d47-9835-32a1965403cf))
(fp_line (start 0.7 0.35) (end -0.7 0.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb6468b4-de5e-4854-b3f1-be5c66f83f16))
(fp_line (start -0.3 -0.15) (end 0.3 -0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c64b81f6-4cd4-45c1-999c-c736ccfdaaea))
(fp_line (start -0.3 0.15) (end -0.3 -0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e6c2a057-dbd4-42df-9a93-d3380004131a))
(fp_line (start 0.3 -0.15) (end 0.3 0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60773263-9095-4d4b-bf6c-065205ee76f8))
(fp_line (start 0.3 0.15) (end -0.3 0.15)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f219e08-ce08-4d08-8098-c45f18d33fc0))
(pad "" smd roundrect (at -0.345 0 90) (size 0.318 0.36) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 44ed93f4-1411-4b5a-a4e9-5fd7b5ef013e))
(pad "" smd roundrect (at 0.345 0 90) (size 0.318 0.36) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 7c963733-fe68-40c7-9eb7-7c18ad00990e))
(pad "1" smd roundrect (at -0.32 0 90) (size 0.46 0.4) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 112 "Net-(TR1-0CTT3)") (pintype "passive") (tstamp aef221da-dac0-4cf4-b5b4-ccec44a88ae5))
(pad "2" smd roundrect (at 0.32 0 90) (size 0.46 0.4) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 20 "HV_CHASIS") (pintype "passive") (tstamp 21549842-f223-499f-9eeb-2d00970243a2))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0201_0603Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 14af32a9-91fc-4cf9-85bf-6ce54f6b590a)
(at 162.18 65.91 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "Switch ETHERNET.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/0bbed692-c1e8-4494-9ae6-77a149ed1aeb")
(attr smd)
(fp_text reference "C23" (at 0 -1.16 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bcc96083-03b2-4034-9efe-e4fd67adef75)
)
(fp_text value "100nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 07e991c8-ae0a-4d0c-bf78-a375e5a7bf4d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 06784a2b-5eb6-48f7-b8cc-08fb6b5348ba)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d1bd07c-80cc-4382-b1d1-88a814dfe8f7))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd2bb39a-a3ae-4c98-a488-ee23192cc293))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1d1e70e6-3878-42d4-9def-b7502071b7e8))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 75286327-4a10-4c92-9f9a-ac85ba698d90))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4c4599fe-165b-47ba-8673-064d7b84665b))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e588800-8518-4a18-91fe-5d68ad33336d))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bc4b7928-f3fe-4d2f-910e-0bd1d407003b))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 029589a2-2e2c-42e8-9052-7915f6dd115c))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a7b5d94-d2a7-4ff6-a191-970f0de6d339))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f47764c5-7c1a-4e31-ac0b-a3800b2b2e36))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp 1cc385a5-2b31-4a95-8cdf-218a8fb329cf))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "Net-(TR3-TCT3)") (pintype "passive") (tstamp c4799b08-1003-4221-9260-cac7bc8763cc))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0402_1005Metric" (layer "F.Cu")
(tstamp 162ddab8-6f73-408d-af42-dc40194a5ca1)
(at 230.283044 64.74 90)
(descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "capacitor")
(property "Sheetfile" "Switch ETHERNET.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/74139790-e528-4011-a0b2-2f3fccf471f5")
(attr smd)
(fp_text reference "C8" (at 0 -1.16 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86fdf5df-934f-4405-843b-aaddc8536817)
)
(fp_text value "100nF" (at 0 1.16 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b14785d-4f40-4cbf-b1cc-fdd158f9669d)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.25 0.25) (thickness 0.04)))
(tstamp 8b307879-e06e-47ec-8ee3-012a81f35f14)
)
(fp_line (start -0.107836 -0.36) (end 0.107836 -0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f271deb4-d27c-46e1-b50c-75d01b735bef))
(fp_line (start -0.107836 0.36) (end 0.107836 0.36)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6da05637-1628-4639-a141-a39433ac193d))
(fp_line (start -0.91 -0.46) (end 0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a7d5886c-04ec-4ee3-9c2d-e97b530b0f78))
(fp_line (start -0.91 0.46) (end -0.91 -0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e2fd4866-6c5c-4eed-a26a-4beda27b2465))
(fp_line (start 0.91 -0.46) (end 0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2f88efbd-7966-4701-84ea-9182103be459))
(fp_line (start 0.91 0.46) (end -0.91 0.46)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 997a4d67-d725-4e00-b735-cc05165677fc))
(fp_line (start -0.5 -0.25) (end 0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0c1febbc-852b-49b8-9160-3d2e93dac107))
(fp_line (start -0.5 0.25) (end -0.5 -0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ec012ff-0905-4035-b381-83284291a740))
(fp_line (start 0.5 -0.25) (end 0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00bb9081-bea6-4f3c-8ea8-c6db503c2109))
(fp_line (start 0.5 0.25) (end -0.5 0.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e658d42d-74f4-4e6a-940c-d2fcb373fd7b))
(pad "1" smd roundrect (at -0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pintype "passive") (tstamp d7d2c4a6-b8e5-489f-8899-3b1d8421a8e1))
(pad "2" smd roundrect (at 0.48 0 90) (size 0.56 0.62) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "Net-(TR1-1CT1)") (pintype "passive") (tstamp dc5cfdc2-a36c-43f2-9ba8-d8f9c2b6b208))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "H4801G:H4801G" (layer "F.Cu")
(tstamp 16b91f29-a554-4b5d-9536-05a95795ad46)
(at 176.29 63.26 90)
(property "Sheetfile" "Switch ETHERNET.kicad_sch")
(property "Sheetname" "")
(path "/a8cac61a-9809-4381-aa4d-536d9e5f0728")
(attr smd)
(fp_text reference "TR2" (at 0 -0.5 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.1)))
(tstamp 908fa0f0-6a22-43eb-bcf5-d47b969115f1)
)
(fp_text value "350uH" (at -6 3.465 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e7475aff-b032-457f-90e7-ff0f333e1a4b)
)
(fp_text user "." (at -1 2 90 unlocked) (layer "F.SilkS")
(effects (font (size 2 2) (thickness 0.4) bold) (justify left bottom))
(tstamp abf9a5d6-c11a-4f4a-8687-4e2274d588cb)
)
(fp_text user "${REFERENCE}" (at -33.514069 10.415296 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 41a8b958-ac43-499b-9519-6906429101e3)
)
(fp_text user "${REFERENCE}" (at -30.895069 -57.052704 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cfd12b72-825d-403b-b85b-46af4a9625bb)
)
(fp_line (start -2.38 7.48) (end -2.38 7.13)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7903ba03-3de4-4c3e-8292-4a637523c8a6))
(fp_rect (start 15.94 27.45) (end -0.06 -0.47)
(stroke (width 0.1) (type default)) (fill none) (layer "F.SilkS") (tstamp b8ebb0b8-de0c-4061-8eaf-a6415826bacb))
(fp_line (start 0 -0.4) (end 0 27)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a510d965-0eb2-4828-896e-ab7d0fa9e141))
(fp_line (start 0 -0.4) (end 15.9 -0.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a14e07af-5569-47ad-91f0-de9a7bfbc71e))
(fp_line (start 15.9 -0.4) (end 15.9 27.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 56e343c3-7e13-4934-a2c9-7930cf257fed))
(fp_line (start 15.9 27.4) (end 0 27.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e1f0d9c-023e-4333-b4e0-136f5359a498))
(pad "1" smd roundrect (at 1 2 90) (size 1.9 0.63) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "Net-(TR2-0CT1)") (pinfunction "0CT1") (pintype "passive") (tstamp d8998c05-1b2c-482d-9a30-2d2df6e0fe97))
(pad "2" smd roundrect (at 1 3 90) (size 1.9 0.63) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 164 "P3MDID_N") (pinfunction "0A+") (pintype "passive") (tstamp f03a77d1-a1eb-4afd-91d2-a39ccc5ae37d))
(pad "3" smd roundrect (at 1 4 90) (size 1.9 0.63) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 163 "P3MDID_P") (pinfunction "0A-") (pintype "passive") (tstamp 63a46014-ed0a-4c6a-b3f7-ff48465a3602))
(pad "4" smd roundrect (at 1 5 90) (size 1.9 0.63) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "Net-(TR2-0CT2)") (pinfunction "0CT2") (pintype "passive") (tstamp ebe46710-9fd0-406d-9c42-594da100b208))
(pad "5" smd roundrect (at 1 6 90) (size 1.9 0.63) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 162 "P3MDIC_N") (pinfunction "0B+") (pintype "passive") (tstamp 1528aed6-fc94-4173-bba4-9bdda4a42b7f))
(pad "6" smd roundrect (at 1 7 90) (size 1.9 0.63) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 161 "P3MDIC_P") (pinfunction "0B-") (pintype "passive") (tstamp e1bd1723-8b7a-4d9a-b6fa-31615eadcc47))
(pad "7" smd roundrect (at 1 8 90) (size 1.9 0.63) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "Net-(TR2-0CT3)") (pinfunction "0CT3") (pintype "passive") (tstamp 088e3f71-cfa8-4b80-b5f8-e09526bad06c))
(pad "8" smd roundrect (at 1 9 90) (size 1.9 0.63) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 160 "P3MDIB_N") (pinfunction "0C+") (pintype "passive") (tstamp c9b337a3-f1f7-4890-a327-b553dbf26cb3))
(pad "9" smd roundrect (at 1 10 90) (size 1.9 0.63) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 159 "P3MDIB_P") (pinfunction "0C-") (pintype "passive") (tstamp da5c1a75-f49f-4c7f-821d-56de6d1474be))
(pad "10" smd roundrect (at 1 11 90) (size 1.9 0.63) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "Net-(TR2-0CT4)") (pinfunction "0CT4") (pintype "passive") (tstamp 5e055408-847b-48b1-bdbe-218bc7361f74))
(pad "11" smd roundrect (at 1 12 90) (size 1.9 0.63) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 158 "P3MDIA_N") (pinfunction "0D+") (pintype "passive") (tstamp 79795b4b-3923-47ad-ba4b-c9d3a66ff412))