-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusb test board.kicad_pcb
3601 lines (3584 loc) · 167 KB
/
usb test board.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(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"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (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") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(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 0)
(scaleselection 1)
(outputdirectory "Gerbers/")
)
)
(net 0 "")
(net 1 "Net-(D1-K)")
(net 2 "unconnected-(J5-CC1-PadA5)")
(net 3 "unconnected-(J5-CC2-PadB5)")
(net 4 "GND")
(net 5 "unconnected-(J6-ID-Pad4)")
(net 6 "/5V")
(net 7 "/VCC_5V")
(net 8 "unconnected-(J5-SBU2-PadB8)")
(net 9 "unconnected-(J5-SBU1-PadA8)")
(net 10 "/DN")
(net 11 "/DP")
(footprint "TestPoint:TestPoint_Pad_4.0x4.0mm" (layer "F.Cu")
(tstamp 0d8ab3d5-3c47-4426-b9f5-2b998aefb9c1)
(at 99.833 92.464)
(descr "SMD rectangular pad as test Point, square 4.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "usb test board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/af627698-d836-4997-9df5-3dd2b528a8f6")
(attr exclude_from_pos_files)
(fp_text reference "TP1" (at 0.042 3.511) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d38b98de-c9c0-4126-abb3-d54972c9aa3e)
)
(fp_text value "TestPoint" (at 0 3.1) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1499218-ad2d-445f-a312-5755c154d927)
)
(fp_text user "${REFERENCE}" (at 0.042 3.561) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe196d7f-8a74-42eb-a4cc-38f5bf9b5033)
)
(fp_line (start -2.2 -2.2) (end 2.2 -2.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2cbbebf9-ab94-480d-ac75-9839376ef63d))
(fp_line (start -2.2 2.2) (end -2.2 -2.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1b8efcd-5504-43a6-b686-47615c1d8614))
(fp_line (start 2.2 -2.2) (end 2.2 2.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35248f7a-915c-4544-8802-0f409935eb8c))
(fp_line (start 2.2 2.2) (end -2.2 2.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5b0bd6d-7afb-48f1-be92-99ede3e842eb))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5b6cf205-a871-4e92-afc8-b37831cf9043))
(fp_line (start -2.5 -2.5) (end 2.5 -2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f798245b-a222-4541-a5e9-f44a2535f845))
(fp_line (start 2.5 2.5) (end -2.5 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a57afc20-876d-4e4a-bc7f-a2c37169b823))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7df72b53-96af-4be6-860f-b5e5c22b5a9f))
(pad "1" smd rect (at 0 0) (size 4 4) (layers "F.Cu" "F.Mask")
(net 7 "/VCC_5V") (pinfunction "1") (pintype "passive") (tstamp d16a35c1-4db3-469d-b7e9-48f7102e09ac))
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tstamp 3afda560-37c2-49db-8d30-9aa13a22fab1)
(at 107.418 109.046 90)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "usb test board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor, US symbol")
(property "ki_keywords" "R res resistor")
(path "/d4d6af4a-3af1-4a05-bdd9-ecf82f221a59")
(attr smd)
(fp_text reference "R1" (at 0 1.675 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 08ccc1b5-86a7-49fc-b322-9c40170b794a)
)
(fp_text value "R_US" (at 0 1.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e06f73e3-4c62-411c-b25b-0d792f192511)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 8b356c9f-0fa0-4709-a9b6-ae1821603ae9)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 522e9cb3-c660-42c6-b9f6-abbc163407f1))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48e84c4a-9cc7-48e0-bce0-22b38044e23a))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d17761f-ccc9-489d-82e5-b7dc14ff8666))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a4a716b1-26c4-45f6-bd94-d7e3562c0e3d))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 823c56a7-37d3-4ad6-a10d-754db89820c0))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0a6926b8-f39b-45de-bbeb-a82e2bdd127d))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50e90d2f-e726-4b29-b5c8-fbd497a0300f))
(fp_line (start -1.6 0.8) (end -1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 99c6a3d6-0255-47ba-91a0-49bb0835d3a8))
(fp_line (start 1.6 -0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f2b01ef-9492-4e73-bc4d-6abd6421d6d7))
(fp_line (start 1.6 0.8) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c9f2a034-6163-4334-845a-aa216ccc0b03))
(pad "1" smd roundrect (at -1.55 0 90) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 4 "GND") (pintype "passive") (tstamp 7af340a1-580c-42c7-bc8d-1938346e0a85))
(pad "2" smd roundrect (at 1.55 0 90) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1923076923)
(net 1 "Net-(D1-K)") (pintype "passive") (tstamp 32b78daa-8695-4f05-acf3-63ae4147cc50))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Pin:Pin_D1.0mm_L10.0mm" (layer "F.Cu")
(tstamp 45c54365-fb71-48c5-a641-13251ef22b48)
(at 99.4 92.02)
(descr "solder Pin_ diameter 1.0mm, hole diameter 1.0mm (press fit), length 10.0mm")
(tags "solder Pin_ press fit")
(property "Sheetfile" "usb test board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connectable mounting pin connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/0bbfebaa-9d97-48c4-ae16-5ccfb7e3a4d8")
(attr through_hole)
(fp_text reference "J3" (at 0 2.25) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88dd7376-ff83-4228-97f2-b30f433831b1)
)
(fp_text value "Conn_01x01_MountingPin" (at 0 -2.05) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e597ab2-975e-429e-973d-bf6f757ee3bb)
)
(fp_circle (center 0 0) (end 1.25 0.05)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp ece23764-b6e8-489d-b203-08ee508bf1dd))
(fp_circle (center 0 0) (end 1.5 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp a331e3c0-fbd4-4d15-8262-3aa6a65a15cb))
(fp_circle (center 0 0) (end 0.5 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp 14b55861-adda-4cb1-877a-8d824d5f6c3f))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp 120100de-71df-45be-a5a7-dd69a7ab9dbf))
(pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "/VCC_5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 21e6561f-0625-4811-a947-5a21e057ca37))
(model "${KICAD6_3DMODEL_DIR}/Connector_Pin.3dshapes/Pin_D1.0mm_L10.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_4.0x4.0mm" (layer "F.Cu")
(tstamp 5ef95898-4ee0-4d9d-9ccd-989d88138f15)
(at 99.801 109.031)
(descr "SMD rectangular pad as test Point, square 4.0mm side length")
(tags "test point SMD pad rectangle square")
(property "Sheetfile" "usb test board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "test point")
(property "ki_keywords" "test point tp")
(path "/d55cbdfd-43b6-4b0d-8fb4-f40d666527d2")
(attr exclude_from_pos_files)
(fp_text reference "TP2" (at 0 -2.898) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c0d69c65-4b6c-43ed-9176-cbcc66b684d5)
)
(fp_text value "TestPoint" (at 0 3.1) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad4defde-4a87-47ff-9802-c6b017760d5c)
)
(fp_text user "${REFERENCE}" (at 0 -2.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b79b96ad-b97b-4a35-bfd0-2cb3d902a971)
)
(fp_line (start -2.2 -2.2) (end 2.2 -2.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9401c7e3-51fd-42c0-8285-142c238d2474))
(fp_line (start -2.2 2.2) (end -2.2 -2.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de555442-97b7-4720-a064-a6e9892a774f))
(fp_line (start 2.2 -2.2) (end 2.2 2.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 766fe3c8-5242-4758-8248-05c8698c275d))
(fp_line (start 2.2 2.2) (end -2.2 2.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 974c975b-85ed-4eb3-8b67-768402ef59b5))
(fp_line (start -2.5 -2.5) (end -2.5 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db8e438b-5092-4594-97f7-c0c64a57e177))
(fp_line (start -2.5 -2.5) (end 2.5 -2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c7d0cb59-b2ce-404d-b899-de8bb2c6cbf6))
(fp_line (start 2.5 2.5) (end -2.5 2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 89198d9e-54b7-4b88-af64-8cf241cc534c))
(fp_line (start 2.5 2.5) (end 2.5 -2.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ab3ba07-05fc-452d-b5cb-483afec865c5))
(pad "1" smd rect (at 0 0) (size 4 4) (layers "F.Cu" "F.Mask")
(net 6 "/5V") (pinfunction "1") (pintype "passive") (tstamp cce4d343-4990-4601-9900-d6794766c265))
)
(footprint "Connector_Pin:Pin_D1.0mm_L10.0mm" (layer "F.Cu")
(tstamp 665462f7-a074-4464-b0a5-4fb6ce848dde)
(at 99.35 109.48)
(descr "solder Pin_ diameter 1.0mm, hole diameter 1.0mm (press fit), length 10.0mm")
(tags "solder Pin_ press fit")
(property "Sheetfile" "usb test board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connectable mounting pin connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)")
(property "ki_keywords" "connector")
(path "/76f01d02-856f-4ffd-b324-146492cb0f51")
(attr through_hole)
(fp_text reference "J4" (at 0 2.25) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 48971183-74a5-4a51-a320-497e1f2843c7)
)
(fp_text value "Conn_01x01_MountingPin" (at 0 -2.05) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77cb76b1-ea53-4e35-bc31-ccc54b9a0e0d)
)
(fp_circle (center 0 0) (end 1.25 0.05)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 654000bc-980d-496c-b894-08e27c180c24))
(fp_circle (center 0 0) (end 1.5 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 0d42b0c0-0fcd-4829-893b-4b22541c1de8))
(fp_circle (center 0 0) (end 0.5 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp 343a058e-1e08-4b1a-8a83-65b54f1f0753))
(fp_circle (center 0 0) (end 1 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp 649247ba-eb22-4652-99ec-041efbf815a0))
(pad "1" thru_hole circle (at 0 0) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 48a2ae24-4a1c-4be9-80a9-932e6da88fab))
(model "${KICAD6_3DMODEL_DIR}/Connector_Pin.3dshapes/Pin_D1.0mm_L10.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "UJ2-AH-4-SMT:CUI_UJ2-AH-4-SMT" (layer "F.Cu")
(tstamp 8b39a124-3cd6-4616-bda7-a21a5c3c025c)
(at 114.065 106.373 90)
(property "Availability" "In Stock")
(property "CUI_purchase_URL" "https://www.cuidevices.com/product/interconnect/connectors/usb-connectors/uj2-ah-4-smt?utm_source=snapeda.com&utm_medium=referral&utm_campaign=snapedaBOM")
(property "Check_prices" "https://www.snapeda.com/parts/UJ2-AH-4-SMT-TR/CUI+Devices/view-part/?ref=eda")
(property "Description" "Type A, USB 2.0, 480 Mbps, 30 Vac, 1 A, Right Angle, Surface Mount, 30 µin Plating Thickness, Black Insulator, USB Receptacle")
(property "MANUFACTURER" "CUI INC")
(property "MF" "CUI Devices")
(property "MP" "UJ2-AH-4-SMT-TR")
(property "PART_REV" "1.01")
(property "Package" "None")
(property "Price" "None")
(property "Purchase-URL" "https://www.snapeda.com/api/url_track_click_mouser/?unipart_id=3606547&manufacturer=CUI Devices&part_name=UJ2-AH-4-SMT-TR&search_term=uj2-ah-4-smt-tr")
(property "STANDARD" "MANUFACTURER RECOMMENDATIONS")
(property "Sheetfile" "usb test board.kicad_sch")
(property "Sheetname" "")
(property "SnapEDA_Link" "https://www.snapeda.com/parts/UJ2-AH-4-SMT-TR/CUI+Devices/view-part/?ref=snap")
(path "/4ecffd4b-c62a-4c4a-9050-3cd8b8996c8e")
(attr smd)
(fp_text reference "J2" (at 0.42582 -2.38962 90) (layer "F.SilkS")
(effects (font (size 1.001937 1.001937) (thickness 0.15)))
(tstamp ffbfec7a-fb4f-420b-a6c5-79b999c1bf1f)
)
(fp_text value "USB_A" (at 7.16474 15.12498 90) (layer "F.Fab")
(effects (font (size 1.000661 1.000661) (thickness 0.15)))
(tstamp 18162668-409a-43ba-a6d5-63f12cf0dbea)
)
(fp_line (start -2.75 5.4) (end -2.75 14)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp f8f89d60-292e-4b94-9d37-11be9bc0ee9a))
(fp_line (start -2.75 14) (end 9.75 14)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp 63ddf470-b7bd-4133-b63d-eb8b42c714ec))
(fp_line (start -2.3 0) (end -0.65 0)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp dfa36701-3922-497d-96d9-a6a5665c3b1d))
(fp_line (start 7.65 0) (end 9.3 0)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp ffe4244e-8759-4baa-b778-96e5c3a3993a))
(fp_line (start 9.75 14) (end 9.75 5.4)
(stroke (width 0.127) (type solid)) (layer "F.SilkS") (tstamp b88eaac1-6824-4983-9a74-799d11da0d32))
(fp_circle (center -1 -0.75) (end -0.9 -0.75)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp da64385e-2d61-4713-8379-077237bf74df))
(fp_line (start -5.25 -0.365) (end -0.7 -0.365)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9ffc926e-93a2-49ea-ab2d-06bb3f591dee))
(fp_line (start -5.25 5.275) (end -5.25 -0.365)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9e202e2-1651-4d11-8b50-9f7e966e44ec))
(fp_line (start -3 5.275) (end -5.25 5.275)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8e6c3c48-39fb-4c45-8eb7-312644f93ebe))
(fp_line (start -3 14.25) (end -3 5.275)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a2762283-8525-4810-8c00-f0ae510908d8))
(fp_line (start -0.7 -1.5) (end 7.7 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5a92e4d1-3aa4-44ec-b8bd-3b5cfadfaeef))
(fp_line (start -0.7 -0.365) (end -0.7 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67a84885-181f-4e90-a930-aff0f96a946e))
(fp_line (start 7.7 -1.5) (end 7.7 -0.365)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 175bd968-d57f-46eb-abb3-ce6fe5e6391f))
(fp_line (start 7.7 -0.365) (end 12.25 -0.365)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0711e1d0-a074-4e6d-9fb7-eb8dbc7bbd8c))
(fp_line (start 10 5.275) (end 10 14.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24121a3f-a7ce-439f-b408-bac6cd555dd5))
(fp_line (start 10 14.25) (end -3 14.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e72e7c9b-b189-4697-86ff-4a9dec3ab65a))
(fp_line (start 12.25 -0.365) (end 12.25 5.275)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e15b1845-e34c-45fb-9e94-e9895632c5ae))
(fp_line (start 12.25 5.275) (end 10 5.275)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c980c62-4e04-405b-8b52-dfeca1f4d503))
(fp_line (start -2.75 0) (end 9.75 0)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 46d41cbf-5250-417c-a926-d954277a1848))
(fp_line (start -2.75 14) (end -2.75 0)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 36ec784c-6b6d-4432-a625-637604bd8e7d))
(fp_line (start 9.75 0) (end 9.75 14)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp a96d658f-062d-4e5f-a743-32d24fc87c8a))
(fp_line (start 9.75 14) (end -2.75 14)
(stroke (width 0.127) (type solid)) (layer "F.Fab") (tstamp 04c8057e-d83d-4797-a9b2-19bce45bbab6))
(fp_circle (center 0 -0.75) (end 0.1 -0.75)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp eb635e06-9147-4d3a-8abe-c6529aed9e6a))
(pad "" np_thru_hole circle (at 1 4.08 90) (size 1.3 1.3) (drill 1.3) (layers "*.Cu" "*.Mask") (tstamp 5da6e3b5-83c9-4d8b-ba41-a254faf86c65))
(pad "" np_thru_hole circle (at 6 4.08 90) (size 1.3 1.3) (drill 1.3) (layers "*.Cu" "*.Mask") (tstamp 5ff79587-b89b-4f3c-a700-58749747a710))
(pad "1" smd rect (at 0 0 180) (size 2.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "/5V") (pinfunction "1") (pintype "passive") (solder_mask_margin 0.102) (tstamp 571c5ce1-44fb-4eff-9ba2-56333275cb37))
(pad "2" smd rect (at 2.5 0 180) (size 2.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "/DN") (pinfunction "2") (pintype "passive") (solder_mask_margin 0.102) (tstamp 9733698f-12bd-401a-b8f6-1387d077763c))
(pad "3" smd rect (at 4.5 0 180) (size 2.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/DP") (pinfunction "3") (pintype "passive") (solder_mask_margin 0.102) (tstamp 0bdfae1a-391f-4ce4-8950-cc6e81385d8f))
(pad "4" smd rect (at 7 0 180) (size 2.5 0.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "4") (pintype "passive") (solder_mask_margin 0.102) (tstamp 3d63a4fd-241d-4f34-97ca-25fabf26fc75))
(pad "SH1" smd rect (at -3.75 2.375 180) (size 5.15 2.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "SHIELD") (pintype "passive") (solder_mask_margin 0.102) (tstamp e1b085aa-16c7-4ce9-9051-0ab019bcb833))
(pad "SH2" smd rect (at 10.75 2.375 180) (size 5.15 2.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "SHIELD") (pintype "passive") (solder_mask_margin 0.102) (tstamp 261f3199-d79b-4a66-944f-f62e2a1f6d67))
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 8edf9cb4-8aad-409a-ae15-7f94731bf9a8)
(at 105.299 91.551 90)
(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" "usb test board.kicad_sch")
(property "Sheetname" "")
(property "dnp" "")
(property "ki_description" "Generic connector, single row, 01x04, script generated")
(property "ki_keywords" "connector")
(path "/955423f1-133f-491d-aba7-e627c41554dd")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1dc118e-6fbc-45c8-ab3e-224584d8dba5)
)
(fp_text value "Conn_01x04_Pin" (at 0 9.95 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bdd8f2cd-3e5f-48e7-a4ec-bead38475bf3)
)
(fp_text user "${REFERENCE}" (at 0 3.81 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2174ac19-14d8-435c-a422-87f9c6423c7c)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67aa5b74-fb7b-4a59-9f94-40b8a2e15680))
(fp_line (start -1.33 0) (end -1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74e4a43a-fdfb-4f53-8fd6-e17f560ca28a))
(fp_line (start -1.33 1.27) (end -1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7153a4cf-601e-4f60-bd15-811ddd6018db))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2372ef0-ed63-45d7-83aa-bcffc673e04f))
(fp_line (start -1.33 8.95) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1247e017-b323-4ae4-acd2-bc45b13e6d13))
(fp_line (start 1.33 1.27) (end 1.33 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7507f34f-69a0-49fa-8d2d-4febdd098647))
(fp_line (start -1.8 -1.8) (end -1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8bb82989-c3b4-41b4-bcae-a36e22ef3307))
(fp_line (start -1.8 9.4) (end 1.8 9.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 19ff6b02-2488-46a9-9011-ac4f5bbd20ac))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a90a926b-73c4-4188-b493-55d6715d6283))
(fp_line (start 1.8 9.4) (end 1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8565281a-1528-457a-b54f-87acdc15b788))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4f332db-02b8-4546-a169-4108961f32dc))
(fp_line (start -1.27 8.89) (end -1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a3cca8a-ff1a-4814-b17b-4bf8e4431e50))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 665ed3ef-9ec5-455c-ac4f-fcaa2a86e9e3))
(fp_line (start 1.27 -1.27) (end 1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 529ddca1-e2bf-47e0-b15f-7995182dae9d))
(fp_line (start 1.27 8.89) (end -1.27 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4fececb-6324-4700-9ed3-b28110645709))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 6 "/5V") (pinfunction "Pin_1") (pintype "passive") (tstamp b4d5951e-5b8a-4828-9c74-fe9382cbe25e))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 10 "/DN") (pinfunction "Pin_2") (pintype "passive") (tstamp 2c5753c0-2a36-4153-b991-96ce8d3a6f35))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 11 "/DP") (pinfunction "Pin_3") (pintype "passive") (tstamp d189e477-9012-421b-ae55-eca5f206247c))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp db52999a-3b17-441c-86ab-2daed995955c))
(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 "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (layer "F.Cu")
(tstamp d3ae5ffb-91ce-43a6-bceb-2fb41fc0d070)
(at 104.649 109.079 -90)
(descr "LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "LED handsolder")
(property "Sheetfile" "usb test board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/4b1d9be1-2122-4754-9a6a-77df55e1b96d")
(attr smd)
(fp_text reference "D1" (at 0 1.652 -90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 874a6bd7-0035-4ccb-87bf-efe16aa30f1f)
)
(fp_text value "LED" (at 0 1.82 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2d862905-237d-4af5-99c8-0847d7a488a2)
)
(fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 937b45e2-5927-4a0e-af10-b1417caea255)
)
(fp_line (start -2.46 -1.135) (end -2.46 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d40bf2b-55de-47b5-8d15-e8a77dffbd29))
(fp_line (start -2.46 1.135) (end 1.6 1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd968a63-4d5b-49f4-9aa6-7bcecafedc6f))
(fp_line (start 1.6 -1.135) (end -2.46 -1.135)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f662f4b-f31c-49f3-ad6b-525ae17e9afa))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c392ee6-0f2d-4719-9c90-c6fd55613598))
(fp_line (start -2.45 1.12) (end -2.45 -1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61eb8686-29b2-4191-9c3c-d5f58d74a344))
(fp_line (start 2.45 -1.12) (end 2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1a8de6d-9d85-42d9-911f-5a1224b46171))
(fp_line (start 2.45 1.12) (end -2.45 1.12)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c010e75-0ba8-4d90-91fe-130db94070f0))
(fp_line (start -1.6 -0.4) (end -1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e88e4e12-89a5-4f11-b2a2-15e54db387a7))
(fp_line (start -1.6 0.8) (end 1.6 0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9143c092-e152-45d0-811c-c549da7a1ea2))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 322f963b-3551-4b97-8fdd-d6cb3412a683))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8fa7bfd-a8c0-4293-8cea-7a15973400a2))
(fp_line (start 1.6 0.8) (end 1.6 -0.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff6f6727-fdce-4409-9a3b-33eae7b4b0fb))
(pad "1" smd roundrect (at -1.4875 0 270) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 1 "Net-(D1-K)") (pinfunction "K") (pintype "passive") (tstamp bb66d599-bff0-4876-8c87-e061ec6b421d))
(pad "2" smd roundrect (at 1.4875 0 270) (size 1.425 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1754392982)
(net 6 "/5V") (pinfunction "A") (pintype "passive") (tstamp a9e804a4-e529-4f66-a12d-4590d8fe5e10))
(model "${KICAD6_3DMODEL_DIR}/LED_SMD.3dshapes/LED_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_USB:USB_Micro-B_GCT_USB3076-30-A" (layer "F.Cu")
(tstamp d7d22a9b-048e-436a-a6f5-f03001edb835)
(at 89.002 93.941 -90)
(descr "GCT Micro USB https://gct.co/files/drawings/usb3076.pdf")
(tags "Micro-USB SMD Typ-B GCT")
(property "Sheetfile" "usb test board.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "USB Micro Type B connector")
(property "ki_keywords" "connector USB micro")
(path "/c26b5dcb-9460-4d49-8cdd-2e30b894da97")
(attr smd)
(fp_text reference "J6" (at 0 -3.3 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp baa7043d-d7d0-4355-a296-d485220d5396)
)
(fp_text value "USB_B_Micro" (at 0 5.2 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20818a93-847e-4f74-a8eb-dc39636fd314)
)
(fp_text user "PCB Edge" (at 0 2.65 -90) (layer "Dwgs.User")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 56d2014e-977f-4d80-8cc4-e5df9c850aff)
)
(fp_text user "${REFERENCE}" (at 0 0.85 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 025a9ed9-7d12-4edb-a04d-3c6e6c9dee55)
)
(fp_line (start -3.81 -1.71) (end -3.15 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 41b5b9e8-0990-418f-8014-1b02e60e0575))
(fp_line (start -3.81 0.02) (end -3.81 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d3ecf4f-9e81-4413-baf7-52788900dc02))
(fp_line (start -3.81 2.59) (end -3.81 2.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a13634bb-483f-42d1-91f3-e31cb5539069))
(fp_line (start -1.76 -2.41) (end -1.76 -2.02)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c056d166-ba90-4cd5-a708-30bfa4967a52))
(fp_line (start -1.76 -2.41) (end -1.31 -2.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02de2f4e-f8fb-4ae5-9597-31e5943decdf))
(fp_line (start 3.81 -1.71) (end 3.16 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec793cd6-ee7d-4157-bb83-ce937af4cb18))
(fp_line (start 3.81 0.02) (end 3.81 -1.71)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67c4d734-034e-4f71-b6c2-23fcc816368c))
(fp_line (start 3.81 2.59) (end 3.81 2.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9a199c4-f280-489c-ba02-d41c0df633dd))
(fp_line (start -4.6 -2.65) (end 4.6 -2.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b38c8aeb-ad9e-4c4d-b832-809c56a25fb2))
(fp_line (start -4.6 4.45) (end -4.6 -2.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp edb8be36-86f5-4d28-ba55-35a10501e53b))
(fp_line (start -4.6 4.45) (end 4.6 4.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e78c0d3e-bcb5-437e-acc9-5943e6459cb0))
(fp_line (start 4.6 -2.65) (end 4.6 4.45)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b4d1abf4-aa44-4c76-b308-4ea672b55080))
(fp_line (start -3.7 -1.6) (end 3.7 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 131929a9-5f06-497b-9f3c-0f6ea759ba89))
(fp_line (start -3.7 3.95) (end -3.7 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a2b9a9aa-7158-4acb-ade7-df61b19ed158))
(fp_line (start -3.7 3.95) (end 3.7 3.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dd6c71c4-8b18-42c6-9e56-4315828d4a86))
(fp_line (start -3 2.65) (end 3 2.65)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5991361a-e223-47af-9e63-5363c1d1be6c))
(fp_line (start -1.5 -2.16) (end -1.5 -1.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0b22ef1-8508-44a1-878e-154cfe0449b9))
(fp_line (start -1.5 -2.16) (end -1.1 -2.16)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b1451bd-4ea4-47ca-becb-99e830062cd7))
(fp_line (start -1.3 -1.75) (end -1.5 -1.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e9c6eac-e4e3-4cd5-b92c-8051505704c6))
(fp_line (start -1.1 -2.16) (end -1.1 -1.95)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 99080b18-1555-4034-8b72-b1363d47f058))
(fp_line (start -1.1 -1.95) (end -1.3 -1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9208f753-c5d7-464b-8498-d8ef116e13ac))
(fp_line (start 3.7 3.95) (end 3.7 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0120f22c-529e-44fd-9c4d-b1ef216a1a74))
(pad "1" smd rect (at -1.3 -1.45 270) (size 0.4 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/VCC_5V") (pinfunction "VBUS") (pintype "power_out") (tstamp a3cc5151-83bd-4158-8c19-deeddfe12ef4))
(pad "2" smd rect (at -0.65 -1.45 270) (size 0.4 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "/DN") (pinfunction "D-") (pintype "bidirectional") (tstamp 1e0cad75-87a3-4427-b78b-99eae0affb5a))
(pad "3" smd rect (at 0 -1.45 270) (size 0.4 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/DP") (pinfunction "D+") (pintype "bidirectional") (tstamp edda153e-c93f-41f5-a8d2-e03f88a11278))
(pad "4" smd rect (at 0.65 -1.45 270) (size 0.4 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "unconnected-(J6-ID-Pad4)") (pinfunction "ID") (pintype "passive+no_connect") (tstamp f7d1b2fa-be6c-491c-9b99-60a3f093ff66))
(pad "5" smd rect (at 1.3 -1.45 270) (size 0.4 1.4) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "power_out") (tstamp 0ac3f754-8a82-4f35-8481-fbf5d7f55cc2))
(pad "6" thru_hole oval (at -3.575 1.2 90) (size 1.05 1.9) (drill oval 0.45 1.25) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Shield") (pintype "passive") (tstamp dd05f720-77aa-4179-8f28-3b759d2ce6b3))
(pad "6" smd rect (at -2.32 -1.03 270) (size 1.15 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 85e54ea4-56b9-4363-8d37-80d8bbe92d14))
(pad "6" smd rect (at -1.125 1.2 270) (size 1.75 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 5f0e6f94-bd7a-4b74-8157-86cefe793a92))
(pad "6" smd rect (at 1.125 1.2 270) (size 1.75 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 700a6efa-1db2-4a2c-8e8c-ab5deccac095))
(pad "6" smd rect (at 2.32 -1.03 270) (size 1.15 1.45) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "Shield") (pintype "passive") (tstamp b531c662-60cc-48d4-a907-1acdf7bb5f5c))
(pad "6" thru_hole oval (at 3.575 1.2 270) (size 1.05 1.9) (drill oval 0.45 1.25) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Shield") (pintype "passive") (tstamp f3d59b2a-8b5d-49c5-aa37-08b7a3e03097))
(model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_Micro-B_GCT_USB3076-30-A.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "USB4110GFA:GCT_USB4110GFA" (layer "F.Cu")
(tstamp e059b388-cbf9-4425-be34-ec172e24d48c)
(at 92.6085 105.252 -90)
(property "Availability" "In Stock")
(property "Check_prices" "https://www.snapeda.com/parts/USB4110GFA/Global+Connector+Technology/view-part/?ref=eda")
(property "Description" "\nUSB-C (USB TYPE-C) USB 2.0 Receptacle Connector 24 (16+8 Dummy) Position Surface Mount, Right Angle\n")
(property "DigiKey_Part_Number" "2073-USB4135-GF-ATR-ND")
(property "MANUFACTURER" "GCT")
(property "MAXIMUM_PACKAGE_HEIGHT" "3.25 mm")
(property "MF" "Global Connector Technology")
(property "MP" "USB4110GFA")
(property "PARTREV" "A")
(property "Package" "None")
(property "Price" "None")
(property "STANDARD" "Manufacturer Recommendations")
(property "Sheetfile" "usb test board.kicad_sch")
(property "Sheetname" "")
(property "SnapEDA_Link" "https://www.snapeda.com/parts/USB4110GFA/Global+Connector+Technology/view-part/?ref=snap")
(path "/3b0e5453-30c6-4de0-93d1-d54af561f34c")
(attr smd)
(fp_text reference "J5" (at -1.425 -3.135 -90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e5c7aece-5a94-4507-a9c6-1685a66ccc81)
)
(fp_text value "USB_C_Receptacle_USB2.0" (at 4.29 7.265 -90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5dbd788-c2b7-4013-a7c7-efdf6daf2bd2)
)
(fp_line (start -4.47 0.86) (end -4.47 2.07)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 904760fc-6bde-40cb-8391-4c324dc3046a))
(fp_line (start -4.47 4.79) (end -4.47 6.28)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 0665c75b-f78f-46c2-a452-1c2f73413db8))
(fp_line (start -4.47 6.28) (end 4.47 6.28)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 55c5010e-6acd-4b70-b066-573f977b8799))
(fp_line (start 4.47 0.86) (end 4.47 2.07)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp a8095b03-391d-4053-a20e-edcde438a926))
(fp_line (start 4.47 6.28) (end 4.47 4.79)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 756e2c31-7f2b-47ce-b776-64235bc59c13))
(fp_circle (center -3.78 -2.23) (end -3.68 -2.23)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp 2584dd8b-e1c0-4f39-90da-173d3a7f4222))
(fp_line (start -6.45 -1.9) (end 6.45 -1.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0df72271-3646-4e54-a48e-a406880743ea))
(fp_line (start -6.45 6.53) (end -6.45 -1.9)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7c217c42-32ff-46f4-83f9-ff6f1a6331e2))
(fp_line (start 6.45 -1.9) (end 6.45 6.53)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2b8ab663-9264-4b50-b723-aa36fa3c7585))
(fp_line (start 6.45 6.53) (end -6.45 6.53)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 875f7bd3-9b16-4df9-840d-828770920fd1))
(fp_line (start -4.47 -1.07) (end -4.47 6.28)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e72cb0e3-a32b-48b9-b729-25e0bc153012))
(fp_line (start -4.47 6.28) (end 4.47 6.28)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0044cc32-453b-440a-896c-d9740cf4a37a))
(fp_line (start 4.47 -1.07) (end -4.47 -1.07)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1f8c8be-da72-4e60-899b-91e4600a479d))
(fp_line (start 4.47 6.28) (end 4.47 -1.07)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96c79bab-6f21-4216-914c-d83534c1ef2d))
(fp_circle (center -3.78 -2.23) (end -3.68 -2.23)
(stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp 392bf595-c700-4bb7-bbc6-135e6f8e1745))
(pad "" np_thru_hole circle (at -2.89 0 270) (size 0.65 0.65) (drill 0.65) (layers "*.Cu" "*.Mask") (tstamp 378b031c-3ea6-4dff-b338-22965ebf20f3))
(pad "" np_thru_hole circle (at 2.89 0 270) (size 0.65 0.65) (drill 0.65) (layers "*.Cu" "*.Mask") (tstamp ab6c72b7-d35b-4274-843a-3461b6f2df0d))
(pad "A1/B12" smd rect (at -3.2 -1.075 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (solder_mask_margin 0.102) (tstamp 705ae6a4-ea5f-4636-a9eb-e705b3cb285d))
(pad "A4/B9" smd rect (at -2.4 -1.075 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/VCC_5V") (pinfunction "VBUS") (pintype "power_in") (solder_mask_margin 0.102) (tstamp a90ec616-0f54-4f92-b437-ca5f62ed613c))
(pad "A5" smd rect (at -1.25 -1.075 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "unconnected-(J5-CC1-PadA5)") (pinfunction "CC1") (pintype "bidirectional+no_connect") (solder_mask_margin 0.102) (tstamp 95ec1302-6589-4328-a467-62ecec4bdfe1))
(pad "A6" smd rect (at -0.25 -1.075 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/DP") (pinfunction "DP1") (pintype "bidirectional") (solder_mask_margin 0.102) (tstamp 81afa579-420a-4431-aa33-2969408bc757))
(pad "A7" smd rect (at 0.25 -1.075 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "/DN") (pinfunction "DN1") (pintype "bidirectional") (solder_mask_margin 0.102) (tstamp cfefee8c-9895-4856-beaa-894482dfc448))
(pad "A8" smd rect (at 1.25 -1.075 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "unconnected-(J5-SBU1-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (solder_mask_margin 0.102) (tstamp 07023e54-1828-4120-9fb1-e0d5299b442d))
(pad "B1/A12" smd rect (at 3.2 -1.075 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (solder_mask_margin 0.102) (tstamp a223c873-84dc-4d2a-8287-2852a596cb1d))
(pad "B4/A9" smd rect (at 2.4 -1.075 270) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 7 "/VCC_5V") (pinfunction "VBUS") (pintype "power_in") (solder_mask_margin 0.102) (tstamp 7e245180-7c9d-49c8-82c7-b0139d2fb21b))
(pad "B5" smd rect (at 1.75 -1.075 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "unconnected-(J5-CC2-PadB5)") (pinfunction "CC2") (pintype "bidirectional+no_connect") (solder_mask_margin 0.102) (tstamp 1c7391ca-4f93-48be-8b0b-08049938007d))
(pad "B6" smd rect (at 0.75 -1.075 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "/DP") (pinfunction "DP2") (pintype "bidirectional") (solder_mask_margin 0.102) (tstamp 1be84546-1ad2-4c6e-b24e-d9c5eb6bc7fc))
(pad "B7" smd rect (at -0.75 -1.075 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "/DN") (pinfunction "DN2") (pintype "bidirectional") (solder_mask_margin 0.102) (tstamp 5a8b7f0e-422e-42ae-998a-1431e8a631c3))
(pad "B8" smd rect (at -1.75 -1.075 270) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "unconnected-(J5-SBU2-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (solder_mask_margin 0.102) (tstamp 541d09a9-7389-4894-b91e-2060cd41107c))
(pad "S1" smd rect (at -5.11 -0.5 270) (size 2.18 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (solder_mask_margin 0.102) (tstamp 92be1576-a68b-4a28-bf05-ffd59f6570e1))
(pad "S2" smd rect (at 5.11 -0.5 270) (size 2.18 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (solder_mask_margin 0.102) (tstamp 9e45ff27-d758-41fe-82ca-0a58f048e490))
(pad "S3" smd rect (at -5.11 3.43 270) (size 2.18 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (solder_mask_margin 0.102) (tstamp 6ca40ecc-d24f-4053-965d-23db04addc38))
(pad "S4" smd rect (at 5.11 3.43 270) (size 2.18 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "GND") (pinfunction "GND") (pintype "power_in") (solder_mask_margin 0.102) (tstamp c5966c2e-b334-4bee-8e48-a9d1c1794654))
)
(gr_rect (start 86.222 89.355) (end 123.926 111.962)
(stroke (width 0.1) (type default)) (fill none) (layer "Edge.Cuts") (tstamp 7f34fe6d-9535-4b05-a2dc-c8a8fc443992))
(gr_text "5V\n" (at 104.521 94.234) (layer "F.SilkS") (tstamp 0d98ba70-f42b-4979-92d7-4e5f6e46086e)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify left bottom))
)
(gr_text "Rev. 02" (at 115.824 92.583) (layer "F.SilkS") (tstamp 3ddf4f87-fc68-4617-bc13-3699eb600a6a)
(effects (font (size 1 1) (thickness 0.15)) (justify left bottom))
)
(gr_text "GND" (at 111.633 94.234) (layer "F.SilkS") (tstamp 8a839739-6991-4b31-8683-74817a0a3389)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify left bottom))
)
(gr_text "DN" (at 106.934 94.234) (layer "F.SilkS") (tstamp 96debbf7-d16e-4913-8cc2-4fc6ca128747)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify left bottom))
)
(gr_text "DP" (at 109.601 94.234) (layer "F.SilkS") (tstamp b8db5127-7c5f-4b69-9ef2-27461fdec758)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify left bottom))
)
(segment (start 107.3225 107.5915) (end 107.418 107.496) (width 0.25) (layer "F.Cu") (net 1) (tstamp 266da62a-0535-4e5a-9eda-3935bb31e804))
(segment (start 104.649 107.5915) (end 107.3225 107.5915) (width 0.25) (layer "F.Cu") (net 1) (tstamp ae64fcdd-a6ba-4a6e-99da-d059435ebce2))
(segment (start 90.032 91.621) (end 88.997 91.621) (width 0.25) (layer "F.Cu") (net 4) (tstamp 09c0a3e1-081b-4214-9efd-419b2e0a3386))
(segment (start 93.1085 101.477) (end 93.6835 102.052) (width 0.25) (layer "F.Cu") (net 4) (tstamp 19428942-8b17-46f8-8b43-ecd1b5c6dac8))
(segment (start 90.452 95.241) (end 90.452 95.841) (width 0.25) (layer "F.Cu") (net 4) (tstamp 27034b62-d30b-4d22-b755-19ad1cf56118))
(segment (start 90.032 96.261) (end 88.997 96.261) (width 0.25) (layer "F.Cu") (net 4) (tstamp 4d87a13a-c031-4a61-a548-229461f4519f))
(segment (start 93.1085 109.027) (end 93.6835 108.452) (width 0.25) (layer "F.Cu") (net 4) (tstamp 68556d4c-6796-4ef4-a175-04cbe44dd7f0))
(segment (start 88.997 91.621) (end 87.802 92.816) (width 0.25) (layer "F.Cu") (net 4) (tstamp 7545e77b-534c-4e32-85ce-173dc214c836))
(segment (start 90.452 95.841) (end 90.032 96.261) (width 0.25) (layer "F.Cu") (net 4) (tstamp 78966a3b-a77d-47e5-8fa0-e2598aceb0e7))
(segment (start 93.1085 100.142) (end 93.1085 101.477) (width 0.25) (layer "F.Cu") (net 4) (tstamp 84b77f6c-4416-4573-99e0-0390bbba81c7))
(segment (start 93.1085 110.362) (end 93.1085 109.027) (width 0.25) (layer "F.Cu") (net 4) (tstamp 904102be-cbd9-4b2e-b90f-36e249e008c0))
(segment (start 88.997 96.261) (end 87.802 95.066) (width 0.25) (layer "F.Cu") (net 4) (tstamp b94b30d6-508f-4093-bd5f-547005784f19))
(via (at 104.165 99.196) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 08f4a55e-4143-427d-bf99-3f6abe8f30f0))
(via (at 122.972 92.261) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 0cc41515-6783-4e2e-a556-db3d56080974))
(via (at 105.321 105.071) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 0eef5d5a-aec6-4efc-8c46-dc4868eb31cb))
(via (at 123.044 94.091) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 1883ba5c-5ea7-41f5-8875-fdde70e00468))
(via (at 121.671 111.26) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 19cf17cd-3457-43ad-b1a8-0b27ef9e88fb))
(via (at 117.024 90.166) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 1bd603dc-d1b6-4804-8b5e-af2d433d0e93))
(via (at 122.948 97.992) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 213ef7cd-ef8e-42ea-83ad-278bf24a0cc0))
(via (at 87.189 100.039) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 24f8b6dc-0427-4e5a-892d-c65eeec5c440))
(via (at 93.956 97.221) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 2f5f451c-6838-47e3-ab1b-4bcf0a436ca8))
(via (at 121.984 90.214) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 317ea125-7498-4733-9523-b44fa920cebb))
(via (at 109.8 105.071) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 3f2afb67-b2d1-4121-bf0b-af8d461592ef))
(via (at 98.218 99.123) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 40342c6a-a1f9-4521-8359-0a60b496b9fc))
(via (at 87.285 101.748) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 51c87eaa-7d62-43e9-a113-ad81f8e40e6f))
(via (at 122.972 104.758) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 5250aca1-abc6-46e0-914a-c7407ed1bb3f))
(via (at 102.359 99.172) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 5ad649a1-07f5-41a3-9b00-831c6213c53e))
(via (at 122.996 102.687) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 5bc741f0-f234-4200-902a-d45e0c7c4a14))
(via (at 96.25 109.425) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 643ffa8b-5856-49dc-a3fa-63c69c3495b9))
(via (at 93.739 90.19) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 6664c0a2-1134-4a5a-b333-abc2f12392f1))
(via (at 123.02 100.327) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 6b8df841-0220-4977-a202-0ec204c6320d))
(via (at 119.769 90.19) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 6fb13697-6bc2-4a0d-bfcf-e56cef317447))
(via (at 102.359 96.378) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 75ad8297-5d25-4d15-b2ec-2fc91d5aaffd))
(via (at 95.737 90.262) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 7d803fd4-e22f-4224-9948-998f4a9d6fce))
(via (at 87.261 103.53) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 81a37763-6a7c-4f1d-ab32-1ab22758b613))
(via (at 122.948 110.489) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 91713e57-4d46-4d22-81d3-d548f9590ae6))
(via (at 93.932 95.825) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp 97c00588-1b86-41ea-aa65-25081de78a74))
(via (at 87.189 108.394) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp aa5b2248-d126-4199-8e89-a9c1243c5150))
(via (at 96.243 111.139) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp b75f9c9b-791f-46bf-9cd4-68d817b4f145))
(via (at 110.113 111.236) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp bbcfeb67-573b-4438-999f-bb6bd0e8b299))
(via (at 87.021 111.091) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp bd8ed329-7954-436f-9903-0da6a98c9d9e))
(via (at 100.385 99.148) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp c2b0777d-af6a-48c1-80d2-e482ddbd9fd3))
(via (at 123.02 95.752) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp c780ce62-18d7-4c9d-9a9b-4716459f5cfe))
(via (at 122.924 108.033) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp dd376e20-4c52-484d-b7a3-89e09e22c1e5))
(via (at 114.065 99.373) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp ee18e189-fdcd-48ca-9914-27db1b39ae15))
(via (at 112.04 111.212) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp f14e58bb-828f-434c-9a9e-565dffc4104e))
(via (at 100.65 105.023) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp f5fced6c-3522-47d3-8c48-e80861a5fb36))
(via (at 87.165 106.058) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 4) (tstamp fc04430d-46ca-4876-b9f3-5395c6d8226f))
(segment (start 112.919 91.551) (end 112.919 98.227) (width 0.25) (layer "B.Cu") (net 4) (tstamp 3350c5a9-feca-4727-83b3-5f7617a820de))
(segment (start 112.919 98.227) (end 114.065 99.373) (width 0.25) (layer "B.Cu") (net 4) (tstamp 54e4f0ac-06e9-4736-a748-b48c39c9135e))
(segment (start 103.1135 109.031) (end 104.649 110.5665) (width 0.25) (layer "F.Cu") (net 6) (tstamp 4f916abd-7e7e-43b2-b2d1-6440b972fe68))
(segment (start 102.459 106.373) (end 99.801 109.031) (width 0.25) (layer "F.Cu") (net 6) (tstamp 9375a06e-87ae-4c38-bd79-336a734bdfd0))
(segment (start 114.065 106.373) (end 102.459 106.373) (width 0.25) (layer "F.Cu") (net 6) (tstamp ce23bac8-e88b-43f7-92f0-81ea94f6c88b))
(segment (start 99.801 109.031) (end 103.1135 109.031) (width 0.25) (layer "F.Cu") (net 6) (tstamp f169f0d1-ef02-4d43-b985-0ca26c4af66c))
(via (at 114.065 106.373) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 76ea4c49-7117-463e-9318-16b1bd3b25ea))
(segment (start 105.299 98.489) (end 113.183 106.373) (width 0.25) (layer "B.Cu") (net 6) (tstamp 4134f74e-eda6-4e4b-b66f-eb39caa90ee6))
(segment (start 105.299 91.551) (end 105.299 98.489) (width 0.25) (layer "B.Cu") (net 6) (tstamp 945a424f-798e-4b77-9059-3d0032150278))
(segment (start 113.183 106.373) (end 114.065 106.373) (width 0.25) (layer "B.Cu") (net 6) (tstamp d3ba260b-45d3-4311-9ae2-7d3503b57436))
(segment (start 99.833 92.464) (end 99.656 92.641) (width 0.25) (layer "F.Cu") (net 7) (tstamp 1321fa18-f12b-4008-a720-8c260fba5be8))
(segment (start 99.656 92.641) (end 90.452 92.641) (width 0.25) (layer "F.Cu") (net 7) (tstamp 5d1f5d40-4fe0-4149-97d6-6222a01eba9d))
(segment (start 95.332 102.833) (end 93.7025 102.833) (width 0.25) (layer "F.Cu") (net 7) (tstamp 704d7c81-13eb-42cd-89e8-b0c5c65e3297))
(segment (start 96.25 107.75) (end 96.152 107.652) (width 0.25) (layer "F.Cu") (net 7) (tstamp 7dc08c47-002e-435e-a596-07108fd5a81b))
(segment (start 93.7025 102.833) (end 93.6835 102.852) (width 0.25) (layer "F.Cu") (net 7) (tstamp a8924b8a-951a-48ec-89a4-a2b98bf8d569))
(segment (start 96.152 107.652) (end 93.6835 107.652) (width 0.25) (layer "F.Cu") (net 7) (tstamp af6a1004-7011-403d-beb4-0267cc2ad299))
(via (at 95.332 102.833) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 7) (tstamp 069a12d6-27ae-4e08-ae4c-92a8a876d658))
(via (at 96.25 107.75) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 7) (tstamp d439b9ab-41e2-4880-90cf-e8e0a7288fd4))
(segment (start 96.975 103.6) (end 96.208 102.833) (width 0.25) (layer "B.Cu") (net 7) (tstamp 04847314-57af-4b65-b011-7cfb33557849))
(segment (start 98.9 91.525) (end 99.833 92.458) (width 0.25) (layer "B.Cu") (net 7) (tstamp 0e41e7b5-4cbf-4c03-a7e8-57a1a4038d3f))
(segment (start 96.25 107.75) (end 96.975 107.025) (width 0.25) (layer "B.Cu") (net 7) (tstamp 1f982bb4-2c22-4d19-a420-aec400780628))
(segment (start 99.833 92.458) (end 99.833 96.15) (width 0.25) (layer "B.Cu") (net 7) (tstamp 4493da4e-58e3-488b-ac15-8ceccd5951d1))
(segment (start 95.332 100.651) (end 95.332 102.833) (width 0.25) (layer "B.Cu") (net 7) (tstamp 6463b4dd-17b0-47ad-bdda-1eb9dac73b09))
(segment (start 96.975 107.025) (end 96.975 103.6) (width 0.25) (layer "B.Cu") (net 7) (tstamp 83e91727-90fd-4eb8-8f4d-733ad224c49d))
(segment (start 99.833 96.15) (end 95.332 100.651) (width 0.25) (layer "B.Cu") (net 7) (tstamp b9f2260b-254f-4233-a8dc-65197442aee7))
(segment (start 96.208 102.833) (end 95.332 102.833) (width 0.25) (layer "B.Cu") (net 7) (tstamp ce6aebe5-50c7-4fe8-bf60-86acc99e35f6))
(segment (start 105.71 103.098001) (end 105.974992 103.098001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 0391aa92-076f-4e6e-8470-8cfb6e10be95))
(segment (start 101.16 103.65298) (end 101.16 103.398001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 09477c9b-212e-432d-bb6c-13b5fe551a73))
(segment (start 103.56 103.652955) (end 103.56 103.398001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 0c8e3611-6aa6-4cb9-be9a-1eaabbc33676))
(segment (start 108.549998 102.086155) (end 108.549998 102.472999) (width 0.2) (layer "F.Cu") (net 10) (tstamp 0c929d33-33f7-4382-8259-5acdebfe5dd0))
(segment (start 113.290001 103.098001) (end 114.065 103.873) (width 0.2) (layer "F.Cu") (net 10) (tstamp 0e8d6e57-ecc5-43ec-a457-2144cfdecc00))
(segment (start 93.063826 105.602) (end 94.546975 105.602) (width 0.2) (layer "F.Cu") (net 10) (tstamp 0f7cfe40-bcdc-4810-afb2-72821bf972ba))
(segment (start 90.452 93.291) (end 91.502001 93.291) (width 0.2) (layer "F.Cu") (net 10) (tstamp 150723ce-d0b9-4343-8b9f-ad3db57ecb65))
(segment (start 100.56 103.398001) (end 100.56 103.65298) (width 0.2) (layer "F.Cu") (net 10) (tstamp 1c5ae03d-e40a-48a9-a8ca-f0dcbbf506e5))
(segment (start 91.858508 98.784692) (end 92.2182 98.425) (width 0.2) (layer "F.Cu") (net 10) (tstamp 1de0fc96-f062-4b64-bd63-ff42aeb8ae3b))
(segment (start 91.502001 93.291) (end 91.602001 93.391) (width 0.2) (layer "F.Cu") (net 10) (tstamp 1f9be0f4-8a9f-434d-b148-c076327f47f2))
(segment (start 99.829801 103.098001) (end 100.26 103.098001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 1fb3c153-3f53-4100-a087-3ec0bc4f5ac2))
(segment (start 94.9 104.5) (end 93.103053 104.5) (width 0.2) (layer "F.Cu") (net 10) (tstamp 27c8a6b1-4d63-4f0f-ac0e-58df50e8cdc5))
(segment (start 105.06 103.098001) (end 105.71 103.098001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 2a497f64-7181-4b09-98be-bada5726cbc9))
(segment (start 102.36 103.65298) (end 102.36 103.398001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 36cc33fa-a4af-4910-be85-ad85a1c50705))
(segment (start 92.2182 98.425) (end 95.1568 98.425) (width 0.2) (layer "F.Cu") (net 10) (tstamp 3d42a980-b941-4e2f-b579-38597927c93e))
(segment (start 101.76 103.398001) (end 101.76 103.65298) (width 0.2) (layer "F.Cu") (net 10) (tstamp 3f2ee00c-a60a-4993-add8-9b324eb2bef6))
(segment (start 106.949994 102.086155) (end 106.949994 103.098001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 43d74cf2-ba3b-4ba6-8dd0-464a0c07d94c))
(segment (start 94.602952 105.657977) (end 95.615942 105.657977) (width 0.2) (layer "F.Cu") (net 10) (tstamp 44ec8876-2e17-4cc6-b5e1-e90442603963))
(segment (start 108.199998 103.659845) (end 108.199998 102.472999) (width 0.2) (layer "F.Cu") (net 10) (tstamp 5e97a9fb-1cf8-4ee2-aa6d-accfc787e671))
(segment (start 93.075 96.4182) (end 91.059008 98.434192) (width 0.2) (layer "F.Cu") (net 10) (tstamp 74124614-7bda-47ec-8019-432258b133df))
(segment (start 91.059008 103.597182) (end 93.063826 105.602) (width 0.2) (layer "F.Cu") (net 10) (tstamp 75758619-1e90-4d5b-801c-9726e346bac9))
(segment (start 102.96 103.398001) (end 102.96 103.652955) (width 0.2) (layer "F.Cu") (net 10) (tstamp 8b06e438-c668-4377-8474-6df776774a1f))
(segment (start 95.1568 98.425) (end 99.829801 103.098001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 9a6650fc-ea07-44a4-84d7-8312ee7c422d))
(segment (start 93.075 93.9568) (end 93.075 96.4182) (width 0.2) (layer "F.Cu") (net 10) (tstamp a5812353-bb8a-4c71-a3bf-40e54b19716d))
(segment (start 92.5092 93.391) (end 93.075 93.9568) (width 0.2) (layer "F.Cu") (net 10) (tstamp aca01c7d-182e-4e2c-94dd-51673e9f505b))
(segment (start 104.16 103.398001) (end 104.16 103.65298) (width 0.2) (layer "F.Cu") (net 10) (tstamp b74be7df-163a-4941-8247-687f297d4a7b))
(segment (start 91.059008 98.434192) (end 91.059008 103.597182) (width 0.2) (layer "F.Cu") (net 10) (tstamp b7e02570-83e9-4a9c-a700-bac665529370))
(segment (start 106.599994 102.472999) (end 106.599994 102.086155) (width 0.2) (layer "F.Cu") (net 10) (tstamp b8010d48-6f22-4d29-828f-ec7917d2c422))
(segment (start 109.175 103.098001) (end 113.290001 103.098001) (width 0.2) (layer "F.Cu") (net 10) (tstamp cd7e331f-aff7-4ec7-866c-3fa1d20f76d4))
(segment (start 108.199998 102.472999) (end 108.199998 102.086155) (width 0.2) (layer "F.Cu") (net 10) (tstamp d22ee1a5-6810-4345-8b67-b7eb7bce3cf8))
(segment (start 93.103053 104.5) (end 91.858508 103.255455) (width 0.2) (layer "F.Cu") (net 10) (tstamp d35bca88-c79a-4e25-bc2a-e648daf8bfc5))
(segment (start 91.858508 103.255455) (end 91.858508 98.784692) (width 0.2) (layer "F.Cu") (net 10) (tstamp e0641d9a-0e27-473b-9fe6-eae1e984fdab))
(segment (start 95.4 104.350999) (end 95.049001 104.350999) (width 0.2) (layer "F.Cu") (net 10) (tstamp edb84706-18c3-4d2a-8b89-00e725a7091a))
(segment (start 106.949994 103.098001) (end 106.949994 103.659845) (width 0.2) (layer "F.Cu") (net 10) (tstamp efc91250-d034-409e-9f06-e0b327021f61))
(segment (start 95.049001 104.350999) (end 94.9 104.5) (width 0.2) (layer "F.Cu") (net 10) (tstamp f14e6284-4816-4efc-9491-68c4644d4ed6))
(segment (start 104.76 103.65298) (end 104.76 103.398001) (width 0.2) (layer "F.Cu") (net 10) (tstamp f2a1c9a1-21a8-4dbb-b45f-7c170352b9b4))
(segment (start 91.602001 93.391) (end 92.5092 93.391) (width 0.2) (layer "F.Cu") (net 10) (tstamp f70ea92c-0997-4ca2-b827-7890c7990b26))
(segment (start 94.546975 105.602) (end 94.602952 105.657977) (width 0.2) (layer "F.Cu") (net 10) (tstamp fe32e812-d19b-47f5-a804-fc08cfb59d34))
(via (at 95.615942 105.657977) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 22e8da02-889e-4ec2-88b8-a674482cc6e0))
(via (at 114.065 103.873) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 373b3891-3dc9-4c02-a254-a4f7f4b568d0))
(via (at 95.4 104.350999) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 9e0026f3-eb60-42fa-bdac-870a793abcc0))
(arc (start 103.86 103.098001) (mid 104.072132 103.185869) (end 104.16 103.398001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 061a4503-5c44-4676-9018-ff574e052b75))
(arc (start 103.26 103.952955) (mid 103.472132 103.865087) (end 103.56 103.652955) (width 0.2) (layer "F.Cu") (net 10) (tstamp 0cd016da-193c-4c7a-aa0b-a56490ec03c4))
(arc (start 102.36 103.398001) (mid 102.447868 103.185869) (end 102.66 103.098001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 189d5559-12ee-41ce-ba23-8b4c5e259c2b))
(arc (start 106.774994 101.911155) (mid 106.898738 101.962411) (end 106.949994 102.086155) (width 0.2) (layer "F.Cu") (net 10) (tstamp 20dbe9f7-b6f7-4596-b8ab-5043346bbb6b))
(arc (start 106.949994 103.659845) (mid 107.133053 104.101788) (end 107.574996 104.284847) (width 0.2) (layer "F.Cu") (net 10) (tstamp 2b634224-31ba-4e29-b56a-d7dfc046b7f8))
(arc (start 104.46 103.95298) (mid 104.672132 103.865112) (end 104.76 103.65298) (width 0.2) (layer "F.Cu") (net 10) (tstamp 2c25c4af-df20-4f1c-8f92-8ecbdb5f2ffc))
(arc (start 108.549998 102.472999) (mid 108.733057 102.914942) (end 109.175 103.098001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 32c8afde-9bdd-4123-a811-35bc3a85e4a1))
(arc (start 100.26 103.098001) (mid 100.472132 103.185869) (end 100.56 103.398001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 335037bb-1650-4979-a459-45658473c09c))
(arc (start 106.599994 102.086155) (mid 106.65125 101.962411) (end 106.774994 101.911155) (width 0.2) (layer "F.Cu") (net 10) (tstamp 3d7ac502-56e5-402d-a14e-36146a413003))
(arc (start 102.66 103.098001) (mid 102.872132 103.185869) (end 102.96 103.398001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 434911cb-c47f-492c-b31d-ca7a4944c574))
(arc (start 102.06 103.95298) (mid 102.272132 103.865112) (end 102.36 103.65298) (width 0.2) (layer "F.Cu") (net 10) (tstamp 44d8b1e0-d866-46fa-918b-0e096f039033))
(arc (start 100.56 103.65298) (mid 100.647868 103.865112) (end 100.86 103.95298) (width 0.2) (layer "F.Cu") (net 10) (tstamp 4c92de1d-f68b-4188-8311-87b16dd5bb14))
(arc (start 103.56 103.398001) (mid 103.647868 103.185869) (end 103.86 103.098001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 4f145784-e80f-4985-a3d9-8aa1fe7cfe9d))
(arc (start 101.46 103.098001) (mid 101.672132 103.185869) (end 101.76 103.398001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 599e2200-4380-4fe8-b3b3-b78d67d04409))
(arc (start 101.16 103.398001) (mid 101.247868 103.185869) (end 101.46 103.098001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 5e365896-d10f-4ca9-b7c1-a9cf164a0acd))
(arc (start 104.76 103.398001) (mid 104.847868 103.185869) (end 105.06 103.098001) (width 0.2) (layer "F.Cu") (net 10) (tstamp 63173a63-5fb6-46dc-8d77-e03eb6df3bc0))
(arc (start 101.76 103.65298) (mid 101.847868 103.865112) (end 102.06 103.95298) (width 0.2) (layer "F.Cu") (net 10) (tstamp 67f2de25-7409-4558-96ff-aa02c07cff3b))
(arc (start 108.374998 101.911155) (mid 108.498742 101.962411) (end 108.549998 102.086155) (width 0.2) (layer "F.Cu") (net 10) (tstamp 78227f3f-f12c-4d17-a7ce-fdb492d5bc9e))
(arc (start 102.96 103.652955) (mid 103.047868 103.865087) (end 103.26 103.952955) (width 0.2) (layer "F.Cu") (net 10) (tstamp 81350cb4-1ea6-442e-8625-34ac6d88d1fd))
(arc (start 104.16 103.65298) (mid 104.247868 103.865112) (end 104.46 103.95298) (width 0.2) (layer "F.Cu") (net 10) (tstamp 8423cd02-50c6-4a16-b63c-5b3941a1a0ff))
(arc (start 107.574996 104.284847) (mid 108.016939 104.101788) (end 108.199998 103.659845) (width 0.2) (layer "F.Cu") (net 10) (tstamp bfd8b23b-dad9-4d7f-b60b-43909c888c67))
(arc (start 100.86 103.95298) (mid 101.072132 103.865112) (end 101.16 103.65298) (width 0.2) (layer "F.Cu") (net 10) (tstamp c8e9e288-faee-4dff-8034-272d04de2f01))
(arc (start 108.199998 102.086155) (mid 108.251254 101.962411) (end 108.374998 101.911155) (width 0.2) (layer "F.Cu") (net 10) (tstamp df59e399-3a73-4fe0-b6c0-2b56c8d15fd7))
(arc (start 105.974992 103.098001) (mid 106.416935 102.914942) (end 106.599994 102.472999) (width 0.2) (layer "F.Cu") (net 10) (tstamp e0089cfc-40e8-4deb-81d5-0453c765c22d))
(segment (start 108.426457 99.04) (end 108.583999 99.04) (width 0.2) (layer "B.Cu") (net 10) (tstamp 084afa6a-575a-4d3c-ab8e-971c430bce35))
(segment (start 109.458929 94.67493) (end 109.683931 94.67493) (width 0.2) (layer "B.Cu") (net 10) (tstamp 47f1debb-8c51-448e-8e85-ec187854c6c2))
(segment (start 108.534069 96.325006) (end 108.759071 96.325006) (width 0.2) (layer "B.Cu") (net 10) (tstamp 588ee752-66cc-4a4e-b945-b15434112da5))
(segment (start 111.999801 103.098001) (end 113.290001 103.098001) (width 0.2) (layer "B.Cu") (net 10) (tstamp 720298a6-0386-424f-a295-bb7f0103463d))
(segment (start 109.683931 95.075002) (end 109.458929 95.075002) (width 0.2) (layer "B.Cu") (net 10) (tstamp 7b86c91c-44b3-4279-a7c1-dc8161b51a33))
(segment (start 108.883999 99.34) (end 108.883999 99.982199) (width 0.2) (layer "B.Cu") (net 10) (tstamp 90c70da6-3292-4fb1-bb2e-7f116f8e9f02))
(segment (start 108.426457 97.84) (end 108.583999 97.84) (width 0.2) (layer "B.Cu") (net 10) (tstamp 92b5f2ee-6dde-4090-9fc0-f066ae95f87b))
(segment (start 108.883999 92.595999) (end 108.883999 94.1) (width 0.2) (layer "B.Cu") (net 10) (tstamp 967daa3e-e15c-4a0a-8ee4-9409800c4f7e))
(segment (start 95.4 104.350999) (end 95.615942 104.566941) (width 0.2) (layer "B.Cu") (net 10) (tstamp 9edfc576-374f-452e-9d72-a988f1f86ac7))
(segment (start 108.583999 98.44) (end 108.426457 98.44) (width 0.2) (layer "B.Cu") (net 10) (tstamp a7437bf8-83e1-4280-b21d-5c38c8fb49a0))
(segment (start 113.290001 103.098001) (end 114.065 103.873) (width 0.2) (layer "B.Cu") (net 10) (tstamp a8ad6dea-c6f7-4933-9d96-c95ebb33bc19))
(segment (start 108.883999 96.449934) (end 108.883999 96.94) (width 0.2) (layer "B.Cu") (net 10) (tstamp af3707c3-d1d6-4164-b9a7-fb5aa5e94b97))
(segment (start 107.839 91.551) (end 108.883999 92.595999) (width 0.2) (layer "B.Cu") (net 10) (tstamp b6e84a23-cc24-4eb0-97f0-67ea6bb62b6f))
(segment (start 109.808859 94.799858) (end 109.808859 94.950074) (width 0.2) (layer "B.Cu") (net 10) (tstamp c46bb4be-6f6f-40f9-b988-8b1cda5eae34))
(segment (start 107.959139 95.649932) (end 107.959139 95.750076) (width 0.2) (layer "B.Cu") (net 10) (tstamp db9400ed-6980-488b-a39c-01048ef1459f))
(segment (start 108.583999 97.24) (end 108.426457 97.24) (width 0.2) (layer "B.Cu") (net 10) (tstamp ee423dcc-fa57-4065-a1e8-6a7ea9202bd5))
(segment (start 108.883999 99.982199) (end 111.999801 103.098001) (width 0.2) (layer "B.Cu") (net 10) (tstamp f16dbc27-0818-4ac4-8a2f-a146862efd53))
(segment (start 95.615942 104.566941) (end 95.615942 105.657977) (width 0.2) (layer "B.Cu") (net 10) (tstamp f1906f51-ea3b-4468-bdb8-21d96821b97d))
(segment (start 109.458929 95.075002) (end 108.534069 95.075002) (width 0.2) (layer "B.Cu") (net 10) (tstamp f4346da2-cf0f-4beb-85c5-23e7943afb62))
(arc (start 108.426457 97.24) (mid 108.214325 97.327868) (end 108.126457 97.54) (width 0.2) (layer "B.Cu") (net 10) (tstamp 050d0f95-e7bb-49f6-8ae3-680f54dd25c1))
(arc (start 108.126457 97.54) (mid 108.214325 97.752132) (end 108.426457 97.84) (width 0.2) (layer "B.Cu") (net 10) (tstamp 1ea2fd29-543f-4880-a056-e9d459cdfc22))
(arc (start 108.759071 96.325006) (mid 108.847408 96.361597) (end 108.883999 96.449934) (width 0.2) (layer "B.Cu") (net 10) (tstamp 5728762e-975d-443d-81bc-a4c3474eb7e7))
(arc (start 108.583999 99.04) (mid 108.796131 99.127868) (end 108.883999 99.34) (width 0.2) (layer "B.Cu") (net 10) (tstamp 645b5904-a403-4db2-b04b-4b3f14aa1862))
(arc (start 108.883999 98.14) (mid 108.796131 98.352132) (end 108.583999 98.44) (width 0.2) (layer "B.Cu") (net 10) (tstamp 78adc209-1d4a-470b-ad69-3af48d289350))
(arc (start 107.959139 95.750076) (mid 108.127532 96.156613) (end 108.534069 96.325006) (width 0.2) (layer "B.Cu") (net 10) (tstamp 8a314440-9383-4e46-adc3-5d44dd6bc6fe))
(arc (start 109.683931 94.67493) (mid 109.772268 94.711521) (end 109.808859 94.799858) (width 0.2) (layer "B.Cu") (net 10) (tstamp 975d2859-2844-4b3f-8038-9127e41d5b0d))
(arc (start 108.534069 95.075002) (mid 108.127532 95.243395) (end 107.959139 95.649932) (width 0.2) (layer "B.Cu") (net 10) (tstamp a86ec0ef-93a3-4d57-a5f7-00be540234d7))
(arc (start 108.126457 98.74) (mid 108.214325 98.952132) (end 108.426457 99.04) (width 0.2) (layer "B.Cu") (net 10) (tstamp aa7d11cc-5ed1-4f23-88f2-0b026bd66710))
(arc (start 108.883999 96.94) (mid 108.796131 97.152132) (end 108.583999 97.24) (width 0.2) (layer "B.Cu") (net 10) (tstamp acb45b97-2bc1-422a-b62b-6bea393b3260))
(arc (start 108.426457 98.44) (mid 108.214325 98.527868) (end 108.126457 98.74) (width 0.2) (layer "B.Cu") (net 10) (tstamp ad631235-ea41-46f7-9316-8d2eb628ac9e))
(arc (start 109.808859 94.950074) (mid 109.772268 95.038411) (end 109.683931 95.075002) (width 0.2) (layer "B.Cu") (net 10) (tstamp b1c12e64-59c6-4600-b4a9-59f0089ce79e))
(arc (start 108.883999 94.1) (mid 109.052392 94.506537) (end 109.458929 94.67493) (width 0.2) (layer "B.Cu") (net 10) (tstamp bd8c45b6-bdf6-4857-a77a-2b6753a20d92))
(arc (start 108.583999 97.84) (mid 108.796131 97.927868) (end 108.883999 98.14) (width 0.2) (layer "B.Cu") (net 10) (tstamp f09464a2-5d75-4e6d-9cf6-78cffac56262))
(segment (start 90.609008 98.247792) (end 92.625 96.2318) (width 0.2) (layer "F.Cu") (net 11) (tstamp 0016549e-5218-4df5-906f-8bfc5084b2e7))
(segment (start 113.290001 102.647999) (end 114.065 101.873) (width 0.2) (layer "F.Cu") (net 11) (tstamp 072873ac-683d-47c2-95ec-50906c41880a))
(segment (start 96.300998 105.000499) (end 92.967152 105.000499) (width 0.2) (layer "F.Cu") (net 11) (tstamp 07fdae74-3694-41c1-8110-a52a722ce914))
(segment (start 95.141976 106.480723) (end 94.930723 106.480723) (width 0.2) (layer "F.Cu") (net 11) (tstamp 084f326d-ce0f-4e1e-b080-ce1a558d843d))
(segment (start 101.31 102.24153) (end 101.31 102.347999) (width 0.2) (layer "F.Cu") (net 11) (tstamp 0a016d8d-82c5-41a7-8c1a-efa812eadeb3))
(segment (start 96.3005 105.000001) (end 96.300998 105.000499) (width 0.2) (layer "F.Cu") (net 11) (tstamp 0aea8e1c-6e87-45dd-8abb-0a5c222a2ddb))
(segment (start 102.51 102.241506) (end 102.51 102.347999) (width 0.2) (layer "F.Cu") (net 11) (tstamp 12bde519-9e83-4e89-8387-f2a83a7d7480))
(segment (start 91.502001 93.941) (end 90.452 93.941) (width 0.2) (layer "F.Cu") (net 11) (tstamp 14f3ae6a-a62d-43fd-8d6c-6bfecb13fcf5))
(segment (start 90.609017 103.78356) (end 90.609017 103.152217) (width 0.2) (layer "F.Cu") (net 11) (tstamp 15f78ec9-fd16-405a-b5b0-c2439134fc54))
(segment (start 92.967152 105.000499) (end 91.408508 103.441855) (width 0.2) (layer "F.Cu") (net 11) (tstamp 1e88e112-7d7b-458d-b3a6-34bf871d82dc))
(segment (start 100.71 102.347999) (end 100.71 102.24153) (width 0.2) (layer "F.Cu") (net 11) (tstamp 2c710469-a681-47f9-9443-96e114f47b02))
(segment (start 92.625 94.1432) (end 92.3228 93.841) (width 0.2) (layer "F.Cu") (net 11) (tstamp 32925cd8-1879-43c2-be11-3a8f5f9e0f9a))
(segment (start 99.874773 102.647999) (end 100.41 102.647999) (width 0.2) (layer "F.Cu") (net 11) (tstamp 3585f860-a924-4056-b3d5-7a826affa4fe))
(segment (start 104.098373 102.647999) (end 105.974992 102.647999) (width 0.2) (layer "F.Cu") (net 11) (tstamp 388dc212-59b1-44dd-80e6-023cdcfd93fb))
(segment (start 92.827457 106.002) (end 90.609017 103.78356) (width 0.2) (layer "F.Cu") (net 11) (tstamp 39eeddd3-a72d-4d92-b5bf-d68956b5b159))
(segment (start 102.81 102.647999) (end 104.098373 102.647999) (width 0.2) (layer "F.Cu") (net 11) (tstamp 46c3f97e-4bc1-4cc1-bde1-8af8acc64eab))
(segment (start 94.930723 106.480723) (end 94.452 106.002) (width 0.2) (layer "F.Cu") (net 11) (tstamp 49b27225-7577-4394-aea0-d005977778f7))
(segment (start 109.175 102.647999) (end 113.290001 102.647999) (width 0.2) (layer "F.Cu") (net 11) (tstamp 53676e07-4001-48e9-9989-7d2633612a30))
(segment (start 106.149992 102.472999) (end 106.149992 102.086155) (width 0.2) (layer "F.Cu") (net 11) (tstamp 6b33d848-5ccd-4cc0-9ca7-c90d1d00c05b))
(segment (start 101.91 102.347999) (end 101.91 102.241506) (width 0.2) (layer "F.Cu") (net 11) (tstamp 71aa5abf-b764-4c46-847b-ec32c22ea61b))
(segment (start 92.625 96.2318) (end 92.625 94.1432) (width 0.2) (layer "F.Cu") (net 11) (tstamp 74c61f77-7fe8-4e49-aa43-75f1504a1415))
(segment (start 109 102.086155) (end 109 102.472999) (width 0.2) (layer "F.Cu") (net 11) (tstamp 7b806a30-819a-413f-a277-4088017a9015))
(segment (start 90.609017 103.152217) (end 90.609008 103.152208) (width 0.2) (layer "F.Cu") (net 11) (tstamp 7c04209f-4b1d-4b33-9411-eedfd6e90414))
(segment (start 107.749996 103.659845) (end 107.749996 102.086155) (width 0.2) (layer "F.Cu") (net 11) (tstamp 9651d791-c482-41fa-adcc-40a8eda7ddd0))
(segment (start 95.301774 98.075) (end 99.874773 102.647999) (width 0.2) (layer "F.Cu") (net 11) (tstamp 99452cf0-73c2-496c-b537-70ab64d5134c))
(segment (start 107.399996 102.086155) (end 107.399996 103.659845) (width 0.2) (layer "F.Cu") (net 11) (tstamp 99c9665a-1c38-4ed8-a2b4-a49a77fdffe7))
(segment (start 92.3228 93.841) (end 91.602001 93.841) (width 0.2) (layer "F.Cu") (net 11) (tstamp 9b09bdaa-ba65-4698-9ce3-c23326c398aa))
(segment (start 91.408508 98.598292) (end 91.9318 98.075) (width 0.2) (layer "F.Cu") (net 11) (tstamp 9f8a2f28-fbbb-4acd-a8a3-5b01f027b77e))
(segment (start 91.9318 98.075) (end 95.301774 98.075) (width 0.2) (layer "F.Cu") (net 11) (tstamp af3fc4e5-d572-4d80-9482-1172f9edd93b))
(segment (start 91.408508 103.441855) (end 91.408508 98.598292) (width 0.2) (layer "F.Cu") (net 11) (tstamp b4a7237b-1155-49bc-9b6e-1d9038fd1488))
(segment (start 91.602001 93.841) (end 91.502001 93.941) (width 0.2) (layer "F.Cu") (net 11) (tstamp c4328ed7-a904-41ba-8e25-e89e6e22e989))
(segment (start 94.452 106.002) (end 92.827457 106.002) (width 0.2) (layer "F.Cu") (net 11) (tstamp cc4f8b97-5107-402a-af52-efa486b75ab3))
(segment (start 90.609008 103.152208) (end 90.609008 98.247792) (width 0.2) (layer "F.Cu") (net 11) (tstamp e9ffa60a-8d73-45e4-a90d-99492c5155b5))
(via (at 95.141976 106.480723) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 3d02e5fe-8253-403b-82ca-42faa89a272f))
(via (at 96.3005 105.000001) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 7e2424ae-6725-48a4-a4d7-7def77b92c7a))
(via (at 114.065 101.873) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp dbc35361-4a23-4f1f-9f44-12d331048ccd))
(arc (start 101.01 101.94153) (mid 101.222132 102.029398) (end 101.31 102.24153) (width 0.2) (layer "F.Cu") (net 11) (tstamp 035492db-08dd-4b53-92d8-2f4ec72c047f))
(arc (start 106.774994 101.461153) (mid 107.216937 101.644212) (end 107.399996 102.086155) (width 0.2) (layer "F.Cu") (net 11) (tstamp 0c586f05-545e-4e20-bcfb-5e780125ed83))
(arc (start 101.91 102.241506) (mid 101.997868 102.029374) (end 102.21 101.941506) (width 0.2) (layer "F.Cu") (net 11) (tstamp 0d589cc2-8579-4220-a6e3-ee046690d967))
(arc (start 107.574996 103.834845) (mid 107.69874 103.783589) (end 107.749996 103.659845) (width 0.2) (layer "F.Cu") (net 11) (tstamp 14630bd0-c87a-41d9-a67f-f9cc2550a92f))
(arc (start 100.41 102.647999) (mid 100.622132 102.560131) (end 100.71 102.347999) (width 0.2) (layer "F.Cu") (net 11) (tstamp 31d39f60-c2cb-4db5-ac08-891dfee18357))
(arc (start 106.149992 102.086155) (mid 106.333051 101.644212) (end 106.774994 101.461153) (width 0.2) (layer "F.Cu") (net 11) (tstamp 369f4950-c0f5-40d3-822e-d995cdd90aec))
(arc (start 102.21 101.941506) (mid 102.422132 102.029374) (end 102.51 102.241506) (width 0.2) (layer "F.Cu") (net 11) (tstamp 3e022a30-4273-41bc-845c-1e28a2587da1))
(arc (start 107.399996 103.659845) (mid 107.451252 103.783589) (end 107.574996 103.834845) (width 0.2) (layer "F.Cu") (net 11) (tstamp 430861ef-c9af-448c-a8e8-d9bd170be11b))
(arc (start 101.31 102.347999) (mid 101.397868 102.560131) (end 101.61 102.647999) (width 0.2) (layer "F.Cu") (net 11) (tstamp 532feea4-b45d-4582-b022-76e5d3c28800))
(arc (start 105.974992 102.647999) (mid 106.098736 102.596743) (end 106.149992 102.472999) (width 0.2) (layer "F.Cu") (net 11) (tstamp 535beb5b-6600-4ec3-9829-7b76d05aa125))
(arc (start 109 102.472999) (mid 109.051256 102.596743) (end 109.175 102.647999) (width 0.2) (layer "F.Cu") (net 11) (tstamp 5d2c585f-d40d-4f84-97e1-661b21c9841b))
(arc (start 102.51 102.347999) (mid 102.597868 102.560131) (end 102.81 102.647999) (width 0.2) (layer "F.Cu") (net 11) (tstamp 80d21c72-ad88-4fcf-ade2-6eb0048118bd))
(arc (start 107.749996 102.086155) (mid 107.933055 101.644212) (end 108.374998 101.461153) (width 0.2) (layer "F.Cu") (net 11) (tstamp 852359ab-d397-492c-99fd-1d77d5335e0a))
(arc (start 108.374998 101.461153) (mid 108.816941 101.644212) (end 109 102.086155) (width 0.2) (layer "F.Cu") (net 11) (tstamp a947f3a8-80d9-4f27-9188-2b64a1c1476f))
(arc (start 100.71 102.24153) (mid 100.797868 102.029398) (end 101.01 101.94153) (width 0.2) (layer "F.Cu") (net 11) (tstamp ad128a33-e6bb-43ed-9591-c8a7c03d2ce6))
(arc (start 101.61 102.647999) (mid 101.822132 102.560131) (end 101.91 102.347999) (width 0.2) (layer "F.Cu") (net 11) (tstamp c0dffad2-6f69-4413-ad95-8cbb9e295339))
(segment (start 96.3005 106.1245) (end 96.3005 105.000001) (width 0.2) (layer "B.Cu") (net 11) (tstamp 03c3927f-a3d8-4220-84f3-2c9dca096217))
(segment (start 110.258861 94.799858) (end 110.258861 94.950074) (width 0.2) (layer "B.Cu") (net 11) (tstamp 04108dd2-debf-445a-a6b8-45d7b44e2208))
(segment (start 109.977921 97.74) (end 109.634001 97.74) (width 0.2) (layer "B.Cu") (net 11) (tstamp 0712ac2c-be8d-448f-a476-f2786dd26ea3))
(segment (start 109.977946 98.94) (end 109.634001 98.94) (width 0.2) (layer "B.Cu") (net 11) (tstamp 0c30f700-af7d-4d36-a13b-e4fcc3be2e82))
(segment (start 109.334001 92.595999) (end 109.334001 94.1) (width 0.2) (layer "B.Cu") (net 11) (tstamp 193f4ab8-48d1-4928-b23d-8e00a54c670c))
(segment (start 109.334001 99.24) (end 109.334001 99.795801) (width 0.2) (layer "B.Cu") (net 11) (tstamp 1984a159-be5f-436e-b83c-d5d15bba776b))
(segment (start 109.458929 95.525004) (end 108.534069 95.525004) (width 0.2) (layer "B.Cu") (net 11) (tstamp 22d2c7e8-c723-4a9d-b2fc-f107ab892186))
(segment (start 109.683931 95.525004) (end 109.458929 95.525004) (width 0.2) (layer "B.Cu") (net 11) (tstamp 245b2693-e7ff-4d97-85f5-6cd3389876bf))
(segment (start 110.379 91.551) (end 109.334001 92.595999) (width 0.2) (layer "B.Cu") (net 11) (tstamp 283b1494-b5e2-4c5d-b8f7-8f89016fe493))
(segment (start 108.409141 95.649932) (end 108.409141 95.750076) (width 0.2) (layer "B.Cu") (net 11) (tstamp 318f0214-07df-49da-bd1e-3db83baaaafb))
(segment (start 113.290001 102.647999) (end 114.065 101.873) (width 0.2) (layer "B.Cu") (net 11) (tstamp 88b6469a-9924-45ed-ab2a-ade2f4221618))
(segment (start 109.634001 98.34) (end 109.977946 98.34) (width 0.2) (layer "B.Cu") (net 11) (tstamp 9ae867fd-81ca-4725-af12-82c95cc64a45))
(segment (start 95.141976 106.480723) (end 95.944277 106.480723) (width 0.2) (layer "B.Cu") (net 11) (tstamp babf42e3-326f-4261-9866-63316bf2b15d))
(segment (start 109.634001 97.14) (end 109.977921 97.14) (width 0.2) (layer "B.Cu") (net 11) (tstamp bf4d04fb-68e1-499c-94ca-0763dfada3fd))
(segment (start 109.458929 94.224928) (end 109.683931 94.224928) (width 0.2) (layer "B.Cu") (net 11) (tstamp c486e057-8952-4082-a060-02a6ffdbed0a))
(segment (start 109.334001 96.500006) (end 109.334001 96.84) (width 0.2) (layer "B.Cu") (net 11) (tstamp cf382a70-9113-40cb-8474-a0eb18aee971))
(segment (start 95.944277 106.480723) (end 96.3005 106.1245) (width 0.2) (layer "B.Cu") (net 11) (tstamp dbf27b3d-fe6b-49a6-8e90-b55b8ada0f74))
(segment (start 109.334001 99.795801) (end 112.186199 102.647999) (width 0.2) (layer "B.Cu") (net 11) (tstamp e7e67c9d-3b6a-4f0c-9b29-60430760461c))
(segment (start 108.534069 95.875004) (end 108.759071 95.875004) (width 0.2) (layer "B.Cu") (net 11) (tstamp f511cb24-6d16-4332-84ec-8a169fb0a87c))
(segment (start 109.334001 96.449934) (end 109.334001 96.500006) (width 0.2) (layer "B.Cu") (net 11) (tstamp f76026bf-daa9-489a-9fc7-34b4d4e4f071))
(segment (start 112.186199 102.647999) (end 113.290001 102.647999) (width 0.2) (layer "B.Cu") (net 11) (tstamp fc57d816-91ba-4c31-81fc-34a2876f55a3))
(arc (start 108.409141 95.750076) (mid 108.445732 95.838413) (end 108.534069 95.875004) (width 0.2) (layer "B.Cu") (net 11) (tstamp 03a64a17-6595-482c-ae59-cd4be43e2a5b))
(arc (start 109.977946 98.34) (mid 110.190078 98.427868) (end 110.277946 98.64) (width 0.2) (layer "B.Cu") (net 11) (tstamp 161761cf-29c2-43b0-8335-b8259dc159f2))
(arc (start 109.334001 94.1) (mid 109.370592 94.188337) (end 109.458929 94.224928) (width 0.2) (layer "B.Cu") (net 11) (tstamp 18f1185a-d510-41c7-b9a7-54899a736aa6))
(arc (start 109.634001 98.94) (mid 109.421869 99.027868) (end 109.334001 99.24) (width 0.2) (layer "B.Cu") (net 11) (tstamp 43de1c70-b245-4175-bf4a-3401aa4e4e0f))
(arc (start 108.759071 95.875004) (mid 109.165608 96.043397) (end 109.334001 96.449934) (width 0.2) (layer "B.Cu") (net 11) (tstamp 5456331a-ed86-40e2-a5ce-f2614f17e089))
(arc (start 109.334001 98.04) (mid 109.421869 98.252132) (end 109.634001 98.34) (width 0.2) (layer "B.Cu") (net 11) (tstamp 560fe4ee-e530-4786-9430-0f6b2374816c))
(arc (start 109.334001 96.84) (mid 109.421869 97.052132) (end 109.634001 97.14) (width 0.2) (layer "B.Cu") (net 11) (tstamp 563e2203-be76-4995-bb00-6cc073816f62))
(arc (start 109.634001 97.74) (mid 109.421869 97.827868) (end 109.334001 98.04) (width 0.2) (layer "B.Cu") (net 11) (tstamp 6eec0bf4-ac8a-4b6c-ad46-405dc4188fc2))
(arc (start 108.534069 95.525004) (mid 108.445732 95.561595) (end 108.409141 95.649932) (width 0.2) (layer "B.Cu") (net 11) (tstamp 76e5e84e-8064-4921-a097-5331c5232c0d))
(arc (start 109.977921 97.14) (mid 110.190053 97.227868) (end 110.277921 97.44) (width 0.2) (layer "B.Cu") (net 11) (tstamp 979939ad-6718-4513-b8c5-0ec5e7e38f78))
(arc (start 110.258861 94.950074) (mid 110.090468 95.356611) (end 109.683931 95.525004) (width 0.2) (layer "B.Cu") (net 11) (tstamp ae68dacd-de98-4a1c-a2aa-3a641a263483))