-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathdvi-sock.kicad_pcb
5227 lines (5204 loc) · 210 KB
/
dvi-sock.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 20210126) (generator pcbnew)
(general
(thickness 1)
)
(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") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 0.91) (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 "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(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 "gerb/")
)
)
(net 0 "")
(net 1 "/PICO_CK-")
(net 2 "/PICO_CK+")
(net 3 "GND")
(net 4 "/PICO_D0-")
(net 5 "/PICO_D0+")
(net 6 "/PICO_D1-")
(net 7 "/PICO_D1+")
(net 8 "/PICO_D2-")
(net 9 "/PICO_D2+")
(net 10 "unconnected-(J3-Pad3)")
(net 11 "unconnected-(J3-Pad1)")
(net 12 "/D2+")
(net 13 "/D2-")
(net 14 "/D1+")
(net 15 "/D1-")
(net 16 "/D0+")
(net 17 "/D0-")
(net 18 "/CK+")
(net 19 "/CK-")
(net 20 "unconnected-(J4-Pad13)")
(net 21 "unconnected-(J4-Pad14)")
(net 22 "unconnected-(J4-Pad15)")
(net 23 "unconnected-(J4-Pad16)")
(net 24 "+5V")
(net 25 "unconnected-(J4-Pad19)")
(footprint "dvi-sock:MH_Pico_M2ish" (layer "F.Cu")
(tedit 6018975D) (tstamp 00353231-a805-458b-b5d1-0b54595b502b)
(at 156.5 94)
(fp_text reference "REF**" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 0.0254 0.0254) (thickness 0.00635)))
(tstamp 666abe5c-e1d8-48f8-bc14-2e1475be1ae5)
)
(fp_text value "MH_Pico_M2ish" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.0254 0.0254) (thickness 0.00635)))
(tstamp dd14abcc-28bc-4c25-adc0-240a1dcd4478)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "B.CrtYd") (width 0.15) (fill none) (tstamp 6424538a-13d1-4ef9-9bd9-26301fde5004))
(fp_circle (center 0 0) (end 1.9 0) (layer "F.CrtYd") (width 0.15) (fill none) (tstamp b10e0e08-9d25-40b7-86b7-11521833d2c8))
(pad "" np_thru_hole circle (at 0 0) (locked) (size 2.1 2.1) (drill 2.1) (layers F&B.Cu *.Mask)
(solder_mask_margin 0.85) (clearance 0.9) (zone_connect 0) (tstamp c3be8eac-2970-478c-a8ad-5b3ef963d4f9))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 07c5918c-5bc3-468e-93d8-cbd8b174aa4b)
(at 156.4 79.8 -45)
(descr "Resistor SMD 0402 (1005 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" "dvi-sock.kicad_sch")
(property "Sheetname" "")
(path "/f36923f3-fefe-45f1-bf70-ccf6f99c1367")
(attr smd)
(fp_text reference "R2" (at 0 -1.17 135) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6be72513-dfc3-453f-a8ba-4ee859d18baf)
)
(fp_text value "270" (at 0 1.17 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3490ff7d-5f43-412b-8f3d-c51d5c7afaa4)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp a8416280-2c16-40dd-8fb9-81dac5420b4a)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 8126a387-40c0-432a-9b4d-fe6387e8818e))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp b32ddbe9-844f-4833-9168-259f9fb919a3))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 15add449-a9b7-411a-94e7-8b871d3210c7))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 3ee55720-4255-4b64-9af8-916ada42ab0b))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 43c7c366-2a80-4f9e-a67e-583cb0453bba))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp c9c6ee02-8f3b-4311-a117-707ef7165a28))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 52b98dc7-073a-4315-b298-5f5c45e897b4))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 89a203ae-b705-4a5d-8dd3-2907ddf210a1))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 978042a8-d377-42da-abb9-4f5c2091f450))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 99235956-5796-4f8a-98c9-4b1d9005f3eb))
(pad "1" smd roundrect (at -0.51 0 315) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/PICO_D2-") (pintype "passive") (tstamp 0ac72e96-7e85-47e3-ba5e-66b9b2e20fa0))
(pad "2" smd roundrect (at 0.51 0 315) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/D2-") (pintype "passive") (tstamp 27b79f2b-2794-49f1-a7d0-813a1ff748e0))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "dvi-sock:PinHeader_1x02_P2.54mm_Vertical_nosilk" (layer "F.Cu")
(tedit 60192533) (tstamp 15025d4c-5434-43a2-8092-7e71025aafb1)
(at 159.9 94.8 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "dvi-sock.kicad_sch")
(property "Sheetname" "")
(path "/75fbad22-fe4b-42cd-9207-f22e60e2566f")
(attr through_hole)
(fp_text reference "J5" (at 0 -2.33 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 19a81d89-760e-42e6-9889-08dd00d08849)
)
(fp_text value "2.54mm_2p_nofit" (at 0 4.87 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7260bde8-89e7-4858-9581-d29a16952c1f)
)
(fp_text user "${REFERENCE}" (at 0 1.27 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0e6bb87f-a6d0-44d7-b0b3-ab420badd8c0)
)
(fp_line (start 1.4 3.9) (end 1.4 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 1b908df7-8c25-4fc7-9c36-a78c6e81b08f))
(fp_line (start 1.4 -1.4) (end -1.4 -1.4) (layer "F.CrtYd") (width 0.05) (tstamp 496c8afd-9400-4077-9a94-312a3ad15fd2))
(fp_line (start -1.4 -1.4) (end -1.4 3.9) (layer "F.CrtYd") (width 0.05) (tstamp a1529c85-3572-4386-9436-f1d3cb4e1036))
(fp_line (start -1.4 3.9) (end 1.4 3.9) (layer "F.CrtYd") (width 0.05) (tstamp dd151183-b3db-4a9f-99f1-0528384095e2))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 392de1d8-c597-4baa-9af3-115b28c3f2b3))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 82f361e7-08fc-4737-bbb3-ec652ef02025))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp d2d810ec-e471-4506-8984-7a3e784ab6e3))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp f8222439-049f-4e98-921c-dae664d62496))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp fb7e2ec6-9425-49a9-a58f-e03655595ac5))
(pad "1" thru_hole rect (at 0 0 90) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "+5V") (pinfunction "Pin_1") (pintype "passive") (tstamp 9041c3f3-4a34-464b-99b7-b0503546fb6f))
(pad "2" thru_hole oval (at 0 2.54 90) (locked) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp fe5f8948-23fc-456b-b66d-65c799d54cc3))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "dvi-sock:MH_Pico_M2ish" (layer "F.Cu")
(tedit 6018975D) (tstamp 15306859-bde8-49a3-ac90-a443cb0bec58)
(at 156.5 76)
(fp_text reference "REF**" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 0.0254 0.0254) (thickness 0.00635)))
(tstamp faa79f1e-8efe-4876-9025-40aa9b3c3326)
)
(fp_text value "MH_Pico_M2ish" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.0254 0.0254) (thickness 0.00635)))
(tstamp 5c1e44c3-98b2-4821-a813-5bd0b54ca0b8)
)
(fp_circle (center 0 0) (end 1.9 0) (layer "B.CrtYd") (width 0.15) (fill none) (tstamp ee4a1ef5-ba81-4f86-8226-0e6cfd3770b2))
(fp_circle (center 0 0) (end 1.9 0) (layer "F.CrtYd") (width 0.15) (fill none) (tstamp 318c8881-cb78-4cf3-8b23-87d1ad3683af))
(pad "" np_thru_hole circle (at 0 0) (locked) (size 2.1 2.1) (drill 2.1) (layers F&B.Cu *.Mask)
(solder_mask_margin 0.85) (clearance 0.9) (zone_connect 0) (tstamp d5d7dd64-5e3b-4a6c-aba2-8c99f2c5182e))
)
(footprint "dvi-sock:castellated_2.54mm_smd_x5" (layer "F.Cu")
(tedit 601937DE) (tstamp 1af41468-af52-425a-9c74-9d0345810ae3)
(at 147.92 93.9)
(property "Sheetfile" "dvi-sock.kicad_sch")
(property "Sheetname" "")
(path "/48557612-ccea-4adc-8c5a-57a8d08b6b1d")
(fp_text reference "J1" (at 0 -1.4 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e3c7b2db-ac20-4adb-8a3c-d1eab00d4436)
)
(fp_text value "Conn_01x05" (at 0 3.9 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f5e5524d-afd4-444e-ba29-276cc6038c7a)
)
(fp_text user "${REFERENCE}" (at 0 5.6 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1896c633-16e2-441b-9fb0-0af7e75a9aae)
)
(pad "1" thru_hole circle (at -5.08 1.6) (size 0.6 0.6) (drill 0.4) (layers *.Cu *.Mask)
(net 5 "/PICO_D0+") (pinfunction "Pin_1") (tstamp 7be55ff4-1f8b-49d2-80ba-2ee71b35f929))
(pad "1" thru_hole roundrect (at -5.08 0) (size 1.524 2.8) (drill 1 (offset 0 0.7)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 5 "/PICO_D0+") (pinfunction "Pin_1") (tstamp 80936c1a-0753-4ce7-a33e-24a050e3992c))
(pad "2" thru_hole roundrect (at -2.54 0) (size 1.524 2.8) (drill 1 (offset 0 0.7)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 4 "/PICO_D0-") (pinfunction "Pin_2") (tstamp 032f35fc-7c01-4199-bebf-740565163f22))
(pad "2" thru_hole circle (at -2.54 1.6) (size 0.6 0.6) (drill 0.4) (layers *.Cu *.Mask)
(net 4 "/PICO_D0-") (pinfunction "Pin_2") (tstamp 27333380-2c8c-4363-93b9-1f69df458e62))
(pad "3" thru_hole circle (at 0 1.6) (size 0.6 0.6) (drill 0.4) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "Pin_3") (tstamp 10cb87eb-8d99-494a-89f8-7ecde7bb703d))
(pad "3" thru_hole roundrect (at 0 0) (size 1.524 2.8) (drill 1 (offset 0 0.7)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "Pin_3") (tstamp 2fdea1fd-cabf-45f0-90f5-3e5dcb803bee))
(pad "4" thru_hole roundrect (at 2.54 0) (size 1.524 2.8) (drill 1 (offset 0 0.7)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 2 "/PICO_CK+") (pinfunction "Pin_4") (tstamp 8d7ca8cf-ebc6-4556-8707-9ef6d3d3d0a4))
(pad "4" thru_hole circle (at 2.54 1.6) (size 0.6 0.6) (drill 0.4) (layers *.Cu *.Mask)
(net 2 "/PICO_CK+") (pinfunction "Pin_4") (tstamp e5561ae7-87ed-457e-aed3-62b33c5423de))
(pad "5" thru_hole circle (at 5.08 1.6) (size 0.6 0.6) (drill 0.4) (layers *.Cu *.Mask)
(net 1 "/PICO_CK-") (pinfunction "Pin_5") (tstamp 27c3d284-fa0f-46a1-a7fa-75e709ca04f8))
(pad "5" thru_hole roundrect (at 5.08 0) (size 1.524 2.8) (drill 1 (offset 0 0.7)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 1 "/PICO_CK-") (pinfunction "Pin_5") (tstamp f9f1dabc-e68a-4d53-ac40-7c56cf77f32e))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 1cc8e514-7c44-4207-8e49-abbb1a83d586)
(at 157.25 87.3 90)
(descr "Resistor SMD 0402 (1005 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" "dvi-sock.kicad_sch")
(property "Sheetname" "")
(path "/db04d5c4-a5d9-4494-a311-f07d70cb2a29")
(attr smd)
(fp_text reference "R8" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c6bb1bcb-d667-4492-bb89-54d513bcfeb9)
)
(fp_text value "270" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 24a1f94b-6e36-4412-afd2-ad75d541ae13)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp b7dc790e-e7a6-4ff5-a5ce-f2879c77b713)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 3338ec01-fde1-4d7d-8fbc-e151327ef247))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 66be5e90-2d41-4f6c-9bb7-96f33e8daa46))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 0a34ecfa-55f3-4c25-9d26-b32822cc4561))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 1bd82006-7971-4dfe-98c5-68c6bf1c71b0))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp db84fcd4-142a-41dd-9249-9dc4f4f7a6a6))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp e02e9efa-f5c2-48de-8bc5-da5967bfcca2))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 322d1878-f94c-4ff2-896c-a2d0dae9f8c6))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 337ce00e-01c0-48a6-b490-2aad7dd5e70b))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 7cdd2498-c2e0-48f4-9312-7a32e046e3a3))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp f7a10f28-022b-4945-b8a2-73c28b6b09c2))
(pad "1" smd roundrect (at -0.51 0 90) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/PICO_CK-") (pintype "passive") (tstamp 80bd2eb4-89a7-4337-a362-184e7b287833))
(pad "2" smd roundrect (at 0.51 0 90) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/CK-") (pintype "passive") (tstamp 124c4dbd-15d5-4ece-9f5e-bfed93a09009))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 2561382a-f4dd-4d2c-a89d-bcb351b39c2d)
(at 156.5 84.5 45)
(descr "Resistor SMD 0402 (1005 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" "dvi-sock.kicad_sch")
(property "Sheetname" "")
(path "/02d694f6-9f05-474a-a67c-7e6cf459f632")
(attr smd)
(fp_text reference "R6" (at 0 -1.17 45) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cacecc80-d3c7-4548-a520-bffacac19856)
)
(fp_text value "270" (at 0 1.17 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a20ba1b7-44e8-4463-b446-d22a836fbf7b)
)
(fp_text user "${REFERENCE}" (at 0 0 45) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 2ad9401c-32a9-4f4c-b2c7-c2b6132c40cc)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 5cba1e6a-4af5-4b32-8ff7-377c6ad30636))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 6c598810-c1c4-4cd0-ad14-e8c7783df25a))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 157fa03a-f041-4dd3-9dd0-1ac77ff1ad4a))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 4ef6f31a-7889-42e8-9bbb-932b6622ae21))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 5e94e2ea-b9a2-424f-b3a3-12bfe78e38b7))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp f86958a6-2ca8-4d24-9b74-572c1175a5d6))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 09111d03-0743-4807-abed-52693c80b3ab))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 561bf8e0-5874-43a0-b71b-723500e77903))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp b3065f66-b9cc-4c26-9842-330573372d0a))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp f144cd47-9ca9-4b82-ae94-b123e0ad93c1))
(pad "1" smd roundrect (at -0.51 0 45) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/PICO_D0-") (pintype "passive") (tstamp 94f40aac-f642-4784-a9d5-b736bb7e3358))
(pad "2" smd roundrect (at 0.51 0 45) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/D0-") (pintype "passive") (tstamp dab2603a-3231-4ad3-a63e-de41795e6bca))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 47f8d363-c801-4725-8519-9c124ecb3b30)
(at 157.1 79.1 -45)
(descr "Resistor SMD 0402 (1005 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" "dvi-sock.kicad_sch")
(property "Sheetname" "")
(path "/29de6259-6b55-484e-9561-d49c4854d930")
(attr smd)
(fp_text reference "R1" (at 0 -1.17 135) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ffed0f6-d13c-4952-9b32-673b2a4c524f)
)
(fp_text value "270" (at 0 1.17 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d7e2e54-5343-478b-8880-772104f6023a)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 94dec6eb-dd0c-46c0-a92e-71c864e263e6)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 444e075a-d752-4de9-a42c-d99427823c26))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp d2e03cb7-fb8c-48c1-b089-ed9858e97c23))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 199e5681-e64f-4197-b2d7-d9789d7cd082))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 55f9be23-a748-4148-9eb0-643c7d6c6545))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 830ec887-b7f1-43bc-9d0b-d8e812f1fe22))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp fd78642b-232c-4be6-86f3-0124788077a0))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 059176c7-2f0d-40d5-bf0e-267056475f4d))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 80f1f638-b54d-4a1a-a803-13aa8a0d0694))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 8feaa65d-e18d-430f-a60e-968b2512b00b))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 9828d54b-ce81-4b29-abbd-ce0dac3717d9))
(pad "1" smd roundrect (at -0.51 0 315) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/PICO_D2+") (pintype "passive") (tstamp 0953df86-204f-4758-bf7b-26ca8ac603b3))
(pad "2" smd roundrect (at 0.51 0 315) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/D2+") (pintype "passive") (tstamp 7fb929fe-dc56-443a-a1cf-54152d3a0682))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 50e7be69-62d3-4de0-aaf9-edac9a643d3e)
(at 156.3 87.3 90)
(descr "Resistor SMD 0402 (1005 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" "dvi-sock.kicad_sch")
(property "Sheetname" "")
(path "/93e32be6-9b16-4b30-a6c8-4afe3fdf8041")
(attr smd)
(fp_text reference "R7" (at 0 -1.17 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bab4e2ac-a51d-4697-a7f6-ff092cbdbddf)
)
(fp_text value "270" (at 0 1.17 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 03f61c12-16a3-402e-a46a-3bb46eb8ccd4)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 35d952ce-79dc-457f-8a12-9b0e1f9a9207)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 6f8a31df-afc8-49da-86bc-ea3c73756c68))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp d7396030-24eb-4ced-9da6-985be31af2f6))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 30c535b4-1bea-4e52-ac79-2ce4719bc34d))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 636070ac-4800-4761-8fc1-3b51260ff06f))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 7a8c8efd-3142-48e8-8ea6-40358bf16f60))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 952c6f71-f00b-4205-9266-f7c022033056))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 2d7883fa-85bc-496f-ae2e-de1b0f8b248f))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 8bc454fa-22a2-4b31-9a19-e75bf0e56689))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp d2acb540-ce88-42dc-ac1e-f1564ab63d34))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp eee6fa3e-52bc-44e5-a347-17b4e320b5f2))
(pad "1" smd roundrect (at -0.51 0 90) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/PICO_CK+") (pintype "passive") (tstamp a5ab5036-45a7-42de-ba64-2ecf5398ad11))
(pad "2" smd roundrect (at 0.51 0 90) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/CK+") (pintype "passive") (tstamp dff038da-9dbd-4566-a485-19866ca25250))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp c6d55da9-afc1-4c1c-9c49-775250ab693f)
(at 156.4 81.15 -45)
(descr "Resistor SMD 0402 (1005 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" "dvi-sock.kicad_sch")
(property "Sheetname" "")
(path "/d54b2e93-60ee-4e02-8fba-4ba63c6c8157")
(attr smd)
(fp_text reference "R3" (at 0 -1.17 135) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f8632661-de39-4ad0-8cb3-529a65de3a64)
)
(fp_text value "270" (at 0 1.17 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5d1eced-df58-46b2-bb0e-34bfccc4dc4d)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp bb8521cd-06ef-49e3-ab71-ef17700b8eaa)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 23dd76d4-a150-4bd5-8419-ab06c8387d15))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp 8bcbe1bc-2d94-4a10-a4eb-e7515faa675e))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 68dc01f9-04cf-4d07-94d0-f2eddf512098))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp ce24cc31-0b76-44ae-8889-073b2d34811d))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp ceb03c0a-174e-473b-8db8-8549e953ac97))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp eba6e02c-5d1b-4aa8-bd93-24ec3cc5a3be))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 1096afb4-2def-4a93-a72f-a9be7d3ae893))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 591ec341-4098-46b7-b7d5-3032d5674694))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 9988923d-23f0-4481-aa29-2884b715acb3))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp ba1fbe39-1c96-4f48-922b-e4e8b31509cc))
(pad "1" smd roundrect (at -0.51 0 315) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/PICO_D1+") (pintype "passive") (tstamp 2e639d0c-398c-4be3-b6ef-bdca482467fa))
(pad "2" smd roundrect (at 0.51 0 315) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/D1+") (pintype "passive") (tstamp 2c1dc6e5-de2f-486f-99b9-8c43344586e4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "dvi-sock:castellated_2.54mm_smd_x5" (layer "F.Cu")
(tedit 601937DE) (tstamp d54c3006-1101-44f2-b160-4946ccf91d80)
(at 147.92 76.1 180)
(property "Sheetfile" "dvi-sock.kicad_sch")
(property "Sheetname" "")
(path "/6204cd4f-6f23-4a40-aa3e-d0d1b71d2dae")
(fp_text reference "J2" (at 0 -1.4 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3f72ddd3-2e39-4b9c-945d-afdb757e5d0a)
)
(fp_text value "Conn_01x05" (at 0 3.9 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1419d87c-e4ec-4f81-a71f-cf93ce6e0077)
)
(fp_text user "${REFERENCE}" (at 0 5.6 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b57b94a2-cb2e-414e-8af2-d460b9122c3f)
)
(pad "1" thru_hole circle (at -5.08 1.6 180) (size 0.6 0.6) (drill 0.4) (layers *.Cu *.Mask)
(net 9 "/PICO_D2+") (pinfunction "Pin_1") (tstamp c5be4ab1-4776-4165-bc1d-3925ec82a0b4))
(pad "1" thru_hole roundrect (at -5.08 0 180) (size 1.524 2.8) (drill 1 (offset 0 0.7)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 9 "/PICO_D2+") (pinfunction "Pin_1") (tstamp c950f8fd-5d33-493a-8e8d-bf23597ec5bf))
(pad "2" thru_hole roundrect (at -2.54 0 180) (size 1.524 2.8) (drill 1 (offset 0 0.7)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 8 "/PICO_D2-") (pinfunction "Pin_2") (tstamp 45a0f8d5-45e1-4187-97c1-c6a11903a3bd))
(pad "2" thru_hole circle (at -2.54 1.6 180) (size 0.6 0.6) (drill 0.4) (layers *.Cu *.Mask)
(net 8 "/PICO_D2-") (pinfunction "Pin_2") (tstamp 681ec53d-9132-4bbe-9832-fac306a765ae))
(pad "3" thru_hole circle (at 0 1.6 180) (size 0.6 0.6) (drill 0.4) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "Pin_3") (tstamp c369f5a6-8c13-4d38-a74e-50ba41fd08f4))
(pad "3" thru_hole roundrect (at 0 0 180) (size 1.524 2.8) (drill 1 (offset 0 0.7)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "Pin_3") (tstamp f1645894-73f8-4e04-a18c-5d404ba5002a))
(pad "4" thru_hole circle (at 2.54 1.6 180) (size 0.6 0.6) (drill 0.4) (layers *.Cu *.Mask)
(net 7 "/PICO_D1+") (pinfunction "Pin_4") (tstamp 0fdc73fa-add8-4bf0-bc21-d6668824807d))
(pad "4" thru_hole roundrect (at 2.54 0 180) (size 1.524 2.8) (drill 1 (offset 0 0.7)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 7 "/PICO_D1+") (pinfunction "Pin_4") (tstamp 9507f2e2-a46e-475e-8f28-f9c28af428ae))
(pad "5" thru_hole roundrect (at 5.08 0 180) (size 1.524 2.8) (drill 1 (offset 0 0.7)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 6 "/PICO_D1-") (pinfunction "Pin_5") (tstamp 3fff8f43-c6dd-413b-ba27-8348cca1fd03))
(pad "5" thru_hole circle (at 5.08 1.6 180) (size 0.6 0.6) (drill 0.4) (layers *.Cu *.Mask)
(net 6 "/PICO_D1-") (pinfunction "Pin_5") (tstamp 6263907d-0681-4b2c-b9c8-00408f5ecd78))
)
(footprint "dvi-sock:castellated_2.54mm_smd_x3" (layer "F.Cu")
(tedit 601937B6) (tstamp ecba7213-7afd-4abe-b0c5-006624c2718a)
(at 152.8 85 90)
(property "Sheetfile" "dvi-sock.kicad_sch")
(property "Sheetname" "")
(path "/39177b7a-4f12-4234-a226-be4653ad45a9")
(fp_text reference "J3" (at -4.7 0.1 90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e71e3809-8778-4f6d-a721-6973c22f8ed3)
)
(fp_text value "Conn_01x03" (at 0 3.9 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9903438c-887b-4927-97ac-e34879dcab99)
)
(fp_text user "${REFERENCE}" (at 0 5.6 90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0a32bb98-c293-4826-8cf2-91a281b3ab75)
)
(pad "1" thru_hole circle (at -2.54 1.6 90) (size 0.6 0.6) (drill 0.4) (layers *.Cu *.Mask)
(net 11 "unconnected-(J3-Pad1)") (pinfunction "Pin_1") (tstamp 546b9b81-c1ff-4ba6-a5a8-86d0c0781be6))
(pad "1" thru_hole roundrect (at -2.54 0 90) (size 1.524 2.8) (drill 1 (offset 0 0.7)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 11 "unconnected-(J3-Pad1)") (pinfunction "Pin_1") (tstamp c01961c3-89d0-4643-90ae-72ba3ec54ff7))
(pad "2" thru_hole circle (at 0 1.6 90) (size 0.6 0.6) (drill 0.4) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "Pin_2") (tstamp 5e76b723-3421-494c-a9e5-928c49ab88c0))
(pad "2" thru_hole roundrect (at 0 0 90) (size 1.524 2.8) (drill 1 (offset 0 0.7)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 3 "GND") (pinfunction "Pin_2") (tstamp 7a8edeb0-ee9c-486c-8930-247fddaf1985))
(pad "3" thru_hole circle (at 2.54 1.6 90) (size 0.6 0.6) (drill 0.4) (layers *.Cu *.Mask)
(net 10 "unconnected-(J3-Pad3)") (pinfunction "Pin_3") (tstamp 3a53f069-a080-4acb-bf72-b961c32b8177))
(pad "3" thru_hole roundrect (at 2.54 0 90) (size 1.524 2.8) (drill 1 (offset 0 0.7)) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 10 "unconnected-(J3-Pad3)") (pinfunction "Pin_3") (tstamp 951bc04e-7f41-4203-977b-bab804104b16))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp f38fd5bd-72e7-47a5-9386-777403f83e9b)
(at 155.8 83.8 45)
(descr "Resistor SMD 0402 (1005 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" "dvi-sock.kicad_sch")
(property "Sheetname" "")
(path "/39540bd0-d1e7-49b6-9aea-f914e3d993b8")
(attr smd)
(fp_text reference "R5" (at 0 -1.17 45) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac306786-e82b-4268-89e6-6cb03e8b14ae)
)
(fp_text value "270" (at 0 1.17 45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85457fe5-6e58-4c52-b2ff-3493465c0779)
)
(fp_text user "${REFERENCE}" (at 0 0 45) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 0b9defb9-70d2-43c6-99f5-715cfc8079ef)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 86fcab16-fffb-41b5-ab84-e1948ce2532c))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp ef39c217-93cf-466c-ba35-0348c0999145))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 1c65f3fa-c51e-49a5-8e08-94b86d431ea3))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 6281b101-8e74-4bb0-9f99-a02e7ecc146a))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp b5636924-e3ca-48cd-9ef6-81f0fc0d1728))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp fe3c4416-444d-42a7-a5ba-15d1079ea50b))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 41cfb624-d7ae-47fb-be46-1cfd580eeb14))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 50261539-5151-4f8a-8462-5ccc2a21aafd))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp c8bb9c91-c327-4e28-81d1-ed0441a811f6))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp ec7aa039-9882-4e7b-b3da-cc00bd2702c8))
(pad "1" smd roundrect (at -0.51 0 45) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/PICO_D0+") (pintype "passive") (tstamp 237951c0-32bb-4941-83cc-8e1f481da89d))
(pad "2" smd roundrect (at 0.51 0 45) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/D0+") (pintype "passive") (tstamp 36a92c62-2d94-4eb5-9d27-1e3acdf1a326))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "dvi-sock:HDMI-SS-53000" (layer "F.Cu")
(tedit 5F2B3614) (tstamp faa5f2d4-5c5c-4cc2-a555-437ceab91243)
(at 159.7 85 -90)
(property "Sheetfile" "dvi-sock.kicad_sch")
(property "Sheetname" "")
(path "/65160572-cd8d-4969-bc3d-d6604ccfa3e2")
(attr smd)
(fp_text reference "J4" (at 8.8 0.3) (layer "F.SilkS") hide
(effects (font (size 0.7 0.7) (thickness 0.1)))
(tstamp 8afe7991-ced9-46c3-89eb-c55290ce1717)
)
(fp_text value "NOT_HDMI_A" (at 0 -2.45 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a7f53491-f53f-4e96-ac64-e02ef0118030)
)
(fp_line (start -7.9 -7.4) (end 7.9 -7.4) (layer "F.SilkS") (width 0.15) (tstamp 1279e278-7188-45a4-8cd2-ad0949436254))
(fp_line (start -7.9 -7.4) (end -7.9 -6.2) (layer "F.SilkS") (width 0.15) (tstamp 198c40e8-aa8b-48e6-aa5b-191a6fbcc410))
(fp_line (start 7.9 -7.4) (end 7.9 -6.2) (layer "F.SilkS") (width 0.15) (tstamp 8d586227-8032-4bcd-ab2a-2cec2b878bdb))
(fp_line (start 7.9 1) (end -7.9 1) (layer "F.CrtYd") (width 0.15) (tstamp 54b0f8d2-86f0-495b-8021-73fa2c78f97c))
(fp_line (start -7.9 -7.4) (end 7.9 -7.4) (layer "F.CrtYd") (width 0.15) (tstamp 83fcde12-ba17-4241-bc13-a5b1259aac94))
(fp_line (start 7.9 -7.4) (end 7.9 1) (layer "F.CrtYd") (width 0.15) (tstamp 98ce3b30-0cda-4288-8589-110f9b1b439a))
(fp_line (start -7.9 1) (end -7.9 -7.4) (layer "F.CrtYd") (width 0.15) (tstamp aada8c0a-705a-46d3-96c5-2af4ddd0a995))
(pad "1" smd rect (at -4.75 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "/D2+") (pinfunction "D2+") (pintype "passive") (tstamp 3e3e9829-c8b8-4f0f-ad95-a140c323ad83))
(pad "2" smd rect (at -4.25 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "D2S") (pintype "power_in") (tstamp 45044472-1b5f-4db9-9a85-95fb453174f2))
(pad "3" smd rect (at -3.75 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "/D2-") (pinfunction "D2-") (pintype "passive") (tstamp 5439b6e2-cbf4-4da0-807e-a10759e8f6ea))
(pad "4" smd rect (at -3.25 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "/D1+") (pinfunction "D1+") (pintype "passive") (tstamp f1fc28b4-8c6b-414b-b74e-b95911abf96a))
(pad "5" smd rect (at -2.75 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "D1S") (pintype "power_in") (tstamp 7e1e0b53-3c85-4f1c-b759-eaa620ffa9fb))
(pad "6" smd rect (at -2.25 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "/D1-") (pinfunction "D1-") (pintype "passive") (tstamp bc9c5cc6-1194-495e-b9b4-4490f96323e7))
(pad "7" smd rect (at -1.75 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 16 "/D0+") (pinfunction "D0+") (pintype "passive") (tstamp 73c0cd4a-73af-41e1-8dc5-1ebb3c29609a))
(pad "8" smd rect (at -1.25 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "D0S") (pintype "power_in") (tstamp 998a1160-8750-4d51-a322-9a0b3c2bbfde))
(pad "9" smd rect (at -0.75 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "/D0-") (pinfunction "D0-") (pintype "passive") (tstamp 6df32474-1f11-417d-9b05-4f0024ff6303))
(pad "10" smd rect (at -0.25 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/CK+") (pinfunction "CK+") (pintype "passive") (tstamp 02d6864d-059b-4adc-b8d0-6178cb8c0378))
(pad "11" smd rect (at 0.25 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "CKS") (pintype "power_in") (tstamp 4d47612c-1e5d-4cd1-92ae-caf1658a721a))
(pad "12" smd rect (at 0.75 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/CK-") (pinfunction "CK-") (pintype "passive") (tstamp 7a894ccb-ec87-496a-8b31-e3142108f57b))
(pad "13" smd rect (at 1.25 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "unconnected-(J4-Pad13)") (pinfunction "CEC") (pintype "bidirectional+no_connect") (tstamp 1868e1b5-7aee-4ce1-833a-6d35dd4ea69f))
(pad "14" smd rect (at 1.75 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "unconnected-(J4-Pad14)") (pinfunction "UTILITY") (pintype "passive+no_connect") (tstamp b895037e-1554-4d1e-8807-f9aa7525116b))
(pad "15" smd rect (at 2.25 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "unconnected-(J4-Pad15)") (pinfunction "SCL") (pintype "passive+no_connect") (tstamp 04d0f4e8-485e-489c-bfeb-a83f6c2c76e2))
(pad "16" smd rect (at 2.75 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "unconnected-(J4-Pad16)") (pinfunction "SDA") (pintype "bidirectional+no_connect") (tstamp 814934ec-1e47-47d7-9b61-a101721f23bd))
(pad "17" smd rect (at 3.25 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9e8ec011-fa86-48e9-8953-d3c6a9002363))
(pad "18" smd rect (at 3.75 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "+5V") (pinfunction "+5V") (pintype "power_in") (tstamp a3390d22-b56d-4490-92ea-203dcbb1e8c8))
(pad "19" smd rect (at 4.25 0.9 270) (locked) (size 0.3 1.9) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "unconnected-(J4-Pad19)") (pinfunction "HPD") (pintype "passive+no_connect") (tstamp a97c24f0-7b42-4e29-b75c-51f513547830))
(pad "SH" thru_hole circle (at -7.85 -4.9 270) (locked) (size 1.9 1.9) (drill 1.3) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "SH") (pintype "passive") (tstamp 31dc366f-f841-488b-b965-9bf6bb5bac59))
(pad "SH" thru_hole circle (at -7.25 0 270) (locked) (size 1.9 1.9) (drill 1.3) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "SH") (pintype "passive") (tstamp 4a93cc6c-45fe-43c1-9582-3517d1ad7dd6))
(pad "SH" thru_hole circle (at 7.25 0 270) (locked) (size 1.9 1.9) (drill 1.3) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "SH") (pintype "passive") (tstamp c2b98fb7-ad37-4e2b-b485-eec9cf3ee79a))
(pad "SH" thru_hole circle (at 7.85 -4.9 270) (locked) (size 1.9 1.9) (drill 1.3) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "SH") (pintype "passive") (tstamp d301ef35-94d1-4d80-a0cd-ff89fd343fef))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp fab9bb38-5a43-4e1c-97fb-1a382eb725dc)
(at 155.7 81.85 -45)
(descr "Resistor SMD 0402 (1005 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" "dvi-sock.kicad_sch")
(property "Sheetname" "")
(path "/3792adb2-2455-447a-9ba6-30df54729acd")
(attr smd)
(fp_text reference "R4" (at 0 -1.17 135) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4de8cac-14a3-4379-a045-ffdc0d25cb84)
)
(fp_text value "270" (at 0 1.17 135) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5816182b-c5a6-4cd5-8496-132a622d8745)
)
(fp_text user "${REFERENCE}" (at 0 0 135) (layer "F.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)))
(tstamp 6a5f7637-2a02-463f-a15e-3c9e87aa9252)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 5ff9c054-fc62-4b74-8c02-83878db3d61b))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "F.SilkS") (width 0.12) (tstamp adc5681e-76a5-495c-862d-f08107a6e41d))
(fp_line (start 0.93 0.47) (end -0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp 19866192-4b50-4bdd-aabd-eb85b494c3af))
(fp_line (start -0.93 0.47) (end -0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp 47c66778-ffaa-44b2-a02c-7704f92e9464))
(fp_line (start 0.93 -0.47) (end 0.93 0.47) (layer "F.CrtYd") (width 0.05) (tstamp e6a7c96c-84db-42c9-b184-f03be5e3ccd1))
(fp_line (start -0.93 -0.47) (end 0.93 -0.47) (layer "F.CrtYd") (width 0.05) (tstamp fc0311ea-d654-4f30-9ee1-9548a719eb8f))
(fp_line (start 0.525 -0.27) (end 0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp 02ff76da-9c38-4ab8-95e2-ce5ee444c8c0))
(fp_line (start -0.525 -0.27) (end 0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp 53ea8357-62e8-43bb-848d-b9d501d5d138))
(fp_line (start 0.525 0.27) (end -0.525 0.27) (layer "F.Fab") (width 0.1) (tstamp bdad9f9c-cf38-48da-945f-2a81e5397883))
(fp_line (start -0.525 0.27) (end -0.525 -0.27) (layer "F.Fab") (width 0.1) (tstamp c4933516-81e3-477a-b20b-7d647ec0d44b))
(pad "1" smd roundrect (at -0.51 0 315) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/PICO_D1-") (pintype "passive") (tstamp 10a5ef8b-10ae-4aae-aafd-4a8e8eb0f2c9))
(pad "2" smd roundrect (at 0.51 0 315) (locked) (size 0.54 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/D1-") (pintype "passive") (tstamp 5d069000-1788-4328-83cd-89e0a8f9fabd))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 149 95.5) (end 149.4 95.5) (layer "F.SilkS") (width 0.12) (tstamp 09e1e5fd-26eb-4aff-b1f0-637db7f27047))
(gr_line (start 154.4 74.5) (end 154.1 74.5) (layer "F.SilkS") (width 0.12) (tstamp 0cb27745-7247-4915-8833-e949d8028d42))
(gr_line (start 151.5 95.5) (end 151.9 95.5) (layer "F.SilkS") (width 0.12) (tstamp 26ec8a17-ee4f-4e38-bff7-e61b31b86762))
(gr_line (start 154.4 81.4) (end 154.4 74.5) (layer "F.SilkS") (width 0.12) (tstamp 4223750d-84c3-4897-b072-6bc59c9ebe43))
(gr_line (start 143.9 95.5) (end 144.3 95.5) (layer "F.SilkS") (width 0.12) (tstamp 63a9a42a-9bca-4ae5-929c-e4bcf682dd3d))
(gr_line (start 163.6 94.8) (end 164.1 94.8) (layer "F.SilkS") (width 0.12) (tstamp 78beb943-be1e-48ec-a9cd-836377979fba))
(gr_line (start 144.3 74.5) (end 143.9 74.5) (layer "F.SilkS") (width 0.12) (tstamp 7bbe7931-b048-4942-ac51-bc71b792a403))
(gr_line (start 154.4 86.1) (end 154.4 86.5) (layer "F.SilkS") (width 0.12) (tstamp 8ec87c4f-185e-493e-9923-4255354a7e22))
(gr_line (start 151.9 74.5) (end 151.5 74.5) (layer "F.SilkS") (width 0.12) (tstamp 96090691-0377-4d5b-b3d1-ea5e1cf18228))
(gr_line (start 154.4 88.6) (end 154.4 95.5) (layer "F.SilkS") (width 0.12) (tstamp a60309b7-c079-4668-b8a3-87f08cb61080))
(gr_line (start 146.9 74.5) (end 146.4 74.5) (layer "F.SilkS") (width 0.12) (tstamp ae4bbbfa-6627-4a67-a0cc-b4f54d6d8f2d))
(gr_line (start 149.4 74.5) (end 149 74.5) (layer "F.SilkS") (width 0.12) (tstamp b259f302-4491-41d3-b546-cc07fb0d3334))
(gr_line (start 158.75 93.75) (end 157.9 92.4) (layer "F.SilkS") (width 0.12) (tstamp b5eb7e31-9b3e-4098-9cdc-a57c215415d6))
(gr_line (start 154.4 83.5) (end 154.4 83.9) (layer "F.SilkS") (width 0.12) (tstamp f1a8c522-ae50-46fb-9151-ed817c11cab0))
(gr_line (start 154.4 95.5) (end 154.1 95.5) (layer "F.SilkS") (width 0.12) (tstamp f2a71667-4a08-4d5f-8bd9-ddbea18f7018))
(gr_line (start 146.4 95.5) (end 146.9 95.5) (layer "F.SilkS") (width 0.12) (tstamp f66d3838-1b7c-443a-8039-44ab0feabad1))
(gr_arc (start 142.25 95.75) (end 142.25 96.25) (angle 90) (layer "Edge.Cuts") (width 0.05) (tstamp 0264531e-2e65-4d6b-8ac7-c9b62fd8d1a6))
(gr_line (start 166.5 96.25) (end 142.25 96.25) (layer "Edge.Cuts") (width 0.05) (tstamp 2e00fa6c-c5d2-4e37-804e-652077e38a41))
(gr_line (start 142.25 73.75) (end 166.5 73.75) (layer "Edge.Cuts") (width 0.05) (tstamp 54d3a90a-c929-468b-a429-be3abbe56109))
(gr_arc (start 166.5 74.25) (end 166.5 73.75) (angle 90) (layer "Edge.Cuts") (width 0.05) (tstamp 71326bee-a277-4f54-8712-61647e3b1271))
(gr_arc (start 166.5 95.75) (end 167 95.75) (angle 90) (layer "Edge.Cuts") (width 0.05) (tstamp 8e22ecc9-2498-4fd5-8283-8d83d998c96c))
(gr_line (start 141.75 95.75) (end 141.75 74.25) (layer "Edge.Cuts") (width 0.05) (tstamp b54e5fbd-55d6-45a3-b4a4-6ddd54cf2cf6))
(gr_line (start 167 74.25) (end 167 95.75) (layer "Edge.Cuts") (width 0.05) (tstamp c842ff4c-2f67-4bbb-a06c-80902fb429db))
(gr_arc (start 142.25 74.25) (end 142.25 73.75) (angle -90) (layer "Edge.Cuts") (width 0.05) (tstamp d3d2a19e-0985-4708-baa4-ea8fb6c2c893))
(gr_text "NOT HDMI\njust sparkling DVI" (at 164.75 85 90) (layer "B.SilkS") (tstamp 3313ad13-8024-48fe-b693-5fc830d4bcc2)
(effects (font (size 1 1) (thickness 0.25)) (justify mirror))
)
(gr_text "GP12: D0+ GP16: D2+\nGP13: D0- GP17: D2-\nGP14: CK+ GP18: D1+\nGP15: CK- GP19: D1-" (at 146.6 85 90) (layer "B.SilkS") (tstamp 67f2def8-097f-4190-a182-c3aa146502dd)
(effects (font (size 1 0.9) (thickness 0.13)) (justify mirror))
)
(gr_text "Rev A" (at 158.65 85.05 90) (layer "B.SilkS") (tstamp dbb55bc0-0d7a-4839-8685-7ecb74e3b206)
(effects (font (size 0.7 0.7) (thickness 0.12)) (justify mirror))
)
(gr_text "Pico DVI Sock" (at 162.58 75.14 180) (layer "F.SilkS") (tstamp 12db8688-31ff-420d-943f-17998fe6e434)
(effects (font (size 0.9 0.8) (thickness 0.12)))
)
(gr_text "GP17" (at 150.368 79.248 90) (layer "F.SilkS") (tstamp 1f546fc3-35e9-481a-8da7-269131c9999e)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(gr_text "+5V" (at 157.55 91.6 180) (layer "F.SilkS") (tstamp 2a9c6ffd-9b1f-42b0-930a-19389fa17e03)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text "GP16" (at 152.908 79.248 90) (layer "F.SilkS") (tstamp 31ae219d-7409-4e9b-8805-dc9216ff27c3)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(gr_text "GP19" (at 142.748 79.248 90) (layer "F.SilkS") (tstamp 3409b7ab-09ae-465a-9108-5dcbcc5ec25e)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(gr_text "JLCJLCJLCJLC" (at 164.7 85 90) (layer "F.SilkS") (tstamp 4a3a54ba-b23b-42b7-b167-b8b4d4efbd72)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "GP15" (at 152.908 90.424 90) (layer "F.SilkS") (tstamp 4dcf50d7-47ce-4bd1-bdb9-7944db120d63)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(gr_text "Surface-mount\nPico Here" (at 148 85 90) (layer "F.SilkS") (tstamp 9a2f1eef-2680-4641-a937-d7640597f6c9)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "GP13" (at 145.288 90.424 90) (layer "F.SilkS") (tstamp 9a5549fd-e045-4905-b8c1-10fb104f1dac)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(gr_text "GP14" (at 150.368 90.424 90) (layer "F.SilkS") (tstamp b99d64c7-48ce-4a69-b42b-40e62315c90a)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(gr_text "GND" (at 165.5 94.75 180) (layer "F.SilkS") (tstamp c89adcfa-347c-4fde-a12c-87499733d023)
(effects (font (size 0.7 0.7) (thickness 0.12)))
)
(gr_text "GP12" (at 142.748 90.424 90) (layer "F.SilkS") (tstamp debc335c-ad96-4af2-826d-830231e3528f)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(gr_text "GP18" (at 145.288 79.248 90) (layer "F.SilkS") (tstamp ecd1db67-493c-4e38-bba5-6902337e194e)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(segment (start 153 93.9) (end 151.92 92.82) (width 0.25) (layer "F.Cu") (net 1) (tstamp 3e9a58dd-ce05-4e71-896d-772b4718a920))
(segment (start 151.92 92.348702) (end 152.378702 91.89) (width 0.25) (layer "F.Cu") (net 1) (tstamp 556d7526-e4ed-47df-bef9-c1aafee9e32c))
(segment (start 151.92 92.82) (end 151.92 92.348702) (width 0.25) (layer "F.Cu") (net 1) (tstamp 6a44d643-9b01-4417-93c3-7d8a334ba126))
(segment (start 155.178702 91.89) (end 156.965 90.103702) (width 0.25) (layer "F.Cu") (net 1) (tstamp b49d1ac8-7739-4a43-8ef6-0b3bd908b288))
(segment (start 156.965 90.103702) (end 156.965 88.095) (width 0.25) (layer "F.Cu") (net 1) (tstamp bdd3dc51-deec-4c38-b385-76312e84fb7e))
(segment (start 153 93.9) (end 153.168702 93.9) (width 0.25) (layer "F.Cu") (net 1) (tstamp c5c5c58a-1a10-45c7-ae29-bd400539cff9))
(segment (start 152.378702 91.89) (end 155.178702 91.89) (width 0.25) (layer "F.Cu") (net 1) (tstamp e4e36757-e4ab-48cc-910b-9539458af6f0))
(segment (start 156.965 88.095) (end 157.25 87.81) (width 0.25) (layer "F.Cu") (net 1) (tstamp fa732bab-d83d-43b5-961e-6856e2964eec))
(segment (start 150.46 93.9) (end 151.54 92.82) (width 0.25) (layer "F.Cu") (net 2) (tstamp 7012aaac-6270-4362-86bd-144aa461cf21))
(segment (start 155.021298 91.51) (end 156.585 89.946298) (width 0.25) (layer "F.Cu") (net 2) (tstamp 896941f9-4506-4629-a9c0-3a15d7a243d3))
(segment (start 151.54 92.191298) (end 152.221298 91.51) (width 0.25) (layer "F.Cu") (net 2) (tstamp a307fb64-00fc-4c00-b385-f402b2329fd5))
(segment (start 156.585 89.946298) (end 156.585 88.095) (width 0.25) (layer "F.Cu") (net 2) (tstamp ca7c4800-4b73-47f8-95cd-6218290d3114))
(segment (start 151.54 92.82) (end 151.54 92.191298) (width 0.25) (layer "F.Cu") (net 2) (tstamp e6e94627-5c62-4d0a-8e75-546ffc95195b))
(segment (start 156.585 88.095) (end 156.3 87.81) (width 0.25) (layer "F.Cu") (net 2) (tstamp ebced68b-6674-4865-b8d4-1369942a67e9))
(segment (start 152.221298 91.51) (end 155.021298 91.51) (width 0.25) (layer "F.Cu") (net 2) (tstamp f3e28a9d-eeda-4ff4-a3fd-67907dc6630b))
(segment (start 154.4 85) (end 154.5 85.1) (width 0.13) (layer "F.Cu") (net 3) (tstamp 08c43252-742b-4ba0-8c70-6bd02357dd84))
(segment (start 154.4 85) (end 154.5 84.9) (width 0.13) (layer "F.Cu") (net 3) (tstamp 4837756f-d389-4a1f-8695-209878b7d527))
(segment (start 147.92 76.1) (end 147.92 77.18) (width 0.13) (layer "F.Cu") (net 3) (tstamp 69ceedf5-9a70-4ee4-ae5b-1e3321ec864c))
(segment (start 147.92 93.9) (end 147.92 92.87) (width 0.13) (layer "F.Cu") (net 3) (tstamp 78b8b5e3-839b-43e4-a66d-e5b41ca1ab72))
(segment (start 154.5 85.1) (end 154.5 86.3) (width 0.2) (layer "F.Cu") (net 3) (tstamp 8bf52c7a-49c8-41f2-b2be-a475652133b6))
(segment (start 154.5 84.9) (end 154.5 83.7) (width 0.2) (layer "F.Cu") (net 3) (tstamp ab50022a-9b6e-4810-bc89-498527e69317))
(via (at 155.35 82.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 160ac8df-b9c9-4c24-9ac4-6856e8844a73))
(via (at 143.26 77.37) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 18b041a7-6a1b-4a7d-980d-289adc200ea1))
(via (at 156.01 89.47) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 2cd2d303-a80e-4a02-b045-d11b954448b5))
(via (at 158.44 79.62) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 2eedef3a-d635-4819-bbfd-d4403feeeddd))
(via (at 154.5 86.3) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 330d310f-0a45-4e7c-bc1a-8b0b8b34ba4e))
(via (at 150.95 92.57) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 3c8343a8-01c2-4c52-9698-f000b0f30d82))
(via (at 160.25 83.75) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 3ee566b1-c925-48ad-8bb8-160f408b6527))
(via (at 157.43 80.52) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 412b8d9c-8702-48a9-9f1f-6adcc0f81e78))
(via (at 157.54 89.75) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 4885c55f-64db-4b60-990c-4d02267876a3))
(via (at 160.25 82.25) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 4ce19425-9233-4ee9-a9a8-8688a82debb6))
(via (at 160.25 80.75) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 56450c84-b269-4bcb-aeb0-919c4a1a9d55))
(via (at 160.25 88.25) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 581e19fa-3834-41f4-b727-dd7873768ed2))
(via (at 157.45 82.25) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 5a62724d-459b-4c61-ad78-add469a40639))
(via (at 154.8 74.25) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 5f3cee1d-21b1-40d2-bef6-3280c6bdf830))
(via (at 152.6 92.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 6d606d9e-e376-4d7d-8302-ac8df23170c6))
(via (at 157.5 83.75) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 79a17b75-c269-46d1-ac1b-66cae8bc186e))
(via (at 154.6 81.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 7b12360e-69f7-49a6-ad37-3ad57c1e571a))
(via (at 143.3 92.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 83bf8f45-cb77-4eb9-8d5e-7a12451a8e1d))
(via (at 142.3 85) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 92962e12-95db-4107-8910-d0e66585397a))
(via (at 154.95 95.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 946a1a32-bf22-4ee2-bced-4455112e6bfb))
(via (at 144.9 92.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 9c525945-ee0b-4b80-8839-30d2ca902d24))
(via (at 152.67 77.28) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp ace9e470-1c36-4550-9193-65c12b0e3937))
(via (at 155.25 79.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp ad7361b2-6a74-4820-a3e1-c17b208bd855))
(via (at 158.2 74.25) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp b2eb1cb1-81ab-4c0a-974e-c24e5378456b))
(via (at 154.5 83.7) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp c2addaac-717b-419b-8106-37745b7b84eb))
(via (at 160.25 85.25) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp c7e5891a-6bae-498a-9ee7-0a36b562e54d))
(via (at 161.82 90.35) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp dcab2f2a-3e99-48d9-924e-dc69bc722bca))
(via (at 157.5 85.3) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp deb9c894-f1ad-46d0-8ec6-fa8731ed0132))
(via (at 154.5 88.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp e029c9c3-8c98-45fa-abc2-063bc5b9849a))
(via (at 160.59 90.34) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp e07d4af2-c277-4d58-8544-8f36f6513907))
(via (at 158.1 95.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp e532f582-9047-4072-afe4-3f8a0cb700ca))
(via (at 144.99 77.35) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp ef898008-da74-4a2a-9dac-cb29e8faa6f9))
(via (at 150.95 77.44) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp fba26c3c-a16d-42a7-a319-a3b3002d55c4))
(segment (start 155.54 89.128702) (end 155.54 85.21) (width 0.25) (layer "F.Cu") (net 4) (tstamp 25f6696a-9540-4d80-b82e-865e1df5cc5b))
(segment (start 154.178702 90.49) (end 155.54 89.128702) (width 0.25) (layer "F.Cu") (net 4) (tstamp 47f97f61-7f3a-4281-a19f-1af5e35ce6af))
(segment (start 155.889376 84.860624) (end 156.139376 84.860624) (width 0.25) (layer "F.Cu") (net 4) (tstamp 8079eb91-dac3-450a-bc24-7f68d08a369a))
(segment (start 144.3 92.068702) (end 145.878702 90.49) (width 0.25) (layer "F.Cu") (net 4) (tstamp a6562e89-c5c9-4b9d-9944-0523241f12d5))
(segment (start 145.878702 90.49) (end 154.178702 90.49) (width 0.25) (layer "F.Cu") (net 4) (tstamp b3e218d1-f2b9-4cdd-88bd-6a0e1ef3ccc9))
(segment (start 145.38 93.9) (end 144.3 92.82) (width 0.25) (layer "F.Cu") (net 4) (tstamp b96959d9-de42-41b3-b655-d017a3aa2ac4))
(segment (start 144.3 92.82) (end 144.3 92.068702) (width 0.25) (layer "F.Cu") (net 4) (tstamp db140006-2bfb-409f-87c6-10e22d953c70))
(segment (start 155.54 85.21) (end 155.889376 84.860624) (width 0.25) (layer "F.Cu") (net 4) (tstamp f0f0173d-15f0-40da-a0af-5e47031e4cf4))
(segment (start 143.92 92.82) (end 143.92 91.911298) (width 0.25) (layer "F.Cu") (net 5) (tstamp 0e6a3c8f-6e1a-48b2-8693-1177662a11d0))
(segment (start 155.5 84.71257) (end 155.5 84.221248) (width 0.25) (layer "F.Cu") (net 5) (tstamp 400305c2-c198-4368-bbea-13b77019bef8))
(segment (start 155.5 84.221248) (end 155.439376 84.160624) (width 0.25) (layer "F.Cu") (net 5) (tstamp 42f732ff-5fc3-4234-9500-2f58ddaa8a32))
(segment (start 155.15998 88.971318) (end 155.15998 85.05259) (width 0.25) (layer "F.Cu") (net 5) (tstamp 4eb5e712-ae0f-4c33-8729-61cf2538296e))
(segment (start 143.92 91.911298) (end 145.721298 90.11) (width 0.25) (layer "F.Cu") (net 5) (tstamp 56f24a73-466c-41b3-bce3-51a5835330ef))
(segment (start 145.721298 90.11) (end 154.021298 90.11) (width 0.25) (layer "F.Cu") (net 5) (tstamp 71cfe815-5267-4856-98be-adffa527af2a))
(segment (start 142.84 93.9) (end 143.92 92.82) (width 0.25) (layer "F.Cu") (net 5) (tstamp a54a341d-9315-4702-8fd9-ff801930eea7))
(segment (start 155.15998 85.05259) (end 155.5 84.71257) (width 0.25) (layer "F.Cu") (net 5) (tstamp f73c3b09-22c6-4d7d-92e2-74499a593797))
(segment (start 154.021298 90.11) (end 155.15998 88.971318) (width 0.25) (layer "F.Cu") (net 5) (tstamp ffac2bb5-a16d-44ed-853d-8dd4d77324d4))
(segment (start 142.84 76.1) (end 143.92 77.18) (width 0.25) (layer "F.Cu") (net 6) (tstamp 38ce751c-4129-4bd5-a7f1-7092a8b655ea))
(segment (start 143.92 77.688702) (end 146.571298 80.34) (width 0.25) (layer "F.Cu") (net 6) (tstamp 77a17113-55f2-46fd-8b84-f78a580ace0b))
(segment (start 154.621299 80.34) (end 155.339376 81.058077) (width 0.25) (layer "F.Cu") (net 6) (tstamp ba733228-0513-45e4-b559-44b805435ae5))
(segment (start 146.571298 80.34) (end 154.621299 80.34) (width 0.25) (layer "F.Cu") (net 6) (tstamp d3f64a29-6551-4139-822e-b03bc0e7e93c))
(segment (start 143.92 77.18) (end 143.92 77.688702) (width 0.25) (layer "F.Cu") (net 6) (tstamp d90927b2-7178-4db2-be8a-3637e79e7ff9))
(segment (start 155.339376 81.058077) (end 155.339376 81.489376) (width 0.25) (layer "F.Cu") (net 6) (tstamp d9dabab0-0fae-4e4e-b2f7-6546897378c8))
(segment (start 155.608077 80.789376) (end 156.039376 80.789376) (width 0.25) (layer "F.Cu") (net 7) (tstamp 2ecbe8bc-e433-43a5-b314-5e49c5d1795b))
(segment (start 154.778701 79.96) (end 155.608077 80.789376) (width 0.25) (layer "F.Cu") (net 7) (tstamp 71fad213-9dcf-413e-924b-6c7ded9914ea))
(segment (start 144.3 77.531298) (end 146.728702 79.96) (width 0.25) (layer "F.Cu") (net 7) (tstamp c2944d4c-c04e-46c9-aa57-9e4dd9dad847))
(segment (start 144.3 77.18) (end 144.3 77.531298) (width 0.25) (layer "F.Cu") (net 7) (tstamp c8aa19e6-2039-4f3a-9cd0-1cedf1998d3a))
(segment (start 146.728702 79.96) (end 154.778701 79.96) (width 0.25) (layer "F.Cu") (net 7) (tstamp c9a374f7-6295-41c5-89ee-fa31f739c7fb))
(segment (start 145.38 76.1) (end 144.3 77.18) (width 0.25) (layer "F.Cu") (net 7) (tstamp cb3705ea-4058-4ca3-b1dd-86048a4b2042))
(segment (start 156.039376 79.008077) (end 156.039376 79.439376) (width 0.25) (layer "F.Cu") (net 8) (tstamp 1cf7faf9-b48d-4f8d-807b-97e2d47946d4))
(segment (start 155.821299 78.79) (end 156.039376 79.008077) (width 0.25) (layer "F.Cu") (net 8) (tstamp 4c669551-bdbf-42fe-b6ab-e881582ed1e3))
(segment (start 151.54 77.18) (end 151.54 77.558702) (width 0.25) (layer "F.Cu") (net 8) (tstamp 68eaf519-fafc-464c-bbe5-64d4acebe545))
(segment (start 150.46 76.1) (end 151.54 77.18) (width 0.25) (layer "F.Cu") (net 8) (tstamp 911aaad1-24b6-4f8e-9967-4231ebd2f655))
(segment (start 151.54 77.558702) (end 152.771298 78.79) (width 0.25) (layer "F.Cu") (net 8) (tstamp 9cd2de42-0010-45f2-8657-af54844a3974))
(segment (start 152.771298 78.79) (end 155.821299 78.79) (width 0.25) (layer "F.Cu") (net 8) (tstamp dfdd01cc-69b1-4181-afd1-ecd26aef7de5))
(segment (start 151.92 77.18) (end 151.92 77.401298) (width 0.25) (layer "F.Cu") (net 9) (tstamp 56af5185-9480-41f5-b629-389775709787))
(segment (start 151.92 77.401298) (end 152.928702 78.41) (width 0.25) (layer "F.Cu") (net 9) (tstamp acd986f7-d9b4-4c82-8aec-6dc5f5325740))
(segment (start 156.308077 78.739376) (end 156.739376 78.739376) (width 0.25) (layer "F.Cu") (net 9) (tstamp c1fdd5bd-700d-460a-9071-f8ac586a701c))
(segment (start 152.928702 78.41) (end 155.978701 78.41) (width 0.25) (layer "F.Cu") (net 9) (tstamp c41c7ef6-eab3-43ab-b891-123fb1fb889a))
(segment (start 153 76.1) (end 151.92 77.18) (width 0.25) (layer "F.Cu") (net 9) (tstamp fce0be21-c2c2-433e-b9f7-9d07f6afd6a9))
(segment (start 155.978701 78.41) (end 156.308077 78.739376) (width 0.25) (layer "F.Cu") (net 9) (tstamp fd6e8210-f74d-4019-8cea-f393ad90779a))
(segment (start 157.460624 79.689207) (end 158.021417 80.25) (width 0.25) (layer "F.Cu") (net 12) (tstamp 1fe04f81-3a8e-4b51-a8e5-82a4180cf7cb))
(segment (start 157.460624 79.460624) (end 157.460624 79.689207) (width 0.25) (layer "F.Cu") (net 12) (tstamp 907fbf2a-3cb2-4e41-a156-19db8cc918f2))
(segment (start 158.021417 80.25) (end 158.8 80.25) (width 0.25) (layer "F.Cu") (net 12) (tstamp e65abf39-0d66-4752-aaf6-ef675572332b))
(segment (start 156.760624 80.160624) (end 156.967959 80.160624) (width 0.25) (layer "F.Cu") (net 13) (tstamp 0765d422-6440-4daa-8b0a-43ced821c21d))
(segment (start 156.874989 80.786406) (end 157.163594 81.075011) (width 0.25) (layer "F.Cu") (net 13) (tstamp 15955521-3650-4ff5-8264-8611559e1187))
(segment (start 157.605011 81.075011) (end 157.78 81.25) (width 0.25) (layer "F.Cu") (net 13) (tstamp 1921b578-1c14-498e-aec4-aba189ba9069))
(segment (start 156.967959 80.160624) (end 156.874989 80.253594) (width 0.25) (layer "F.Cu") (net 13) (tstamp 82b705f8-ad84-4d09-b4b7-b63e2b86f70a))
(segment (start 156.874989 80.253594) (end 156.874989 80.786406) (width 0.25) (layer "F.Cu") (net 13) (tstamp a63cf304-b444-4ff5-a957-3da029f66149))
(segment (start 157.163594 81.075011) (end 157.605011 81.075011) (width 0.25) (layer "F.Cu") (net 13) (tstamp e453cd97-f288-487d-b568-21f576548b1e))
(segment (start 157.78 81.25) (end 158.8 81.25) (width 0.25) (layer "F.Cu") (net 13) (tstamp eec7bb0c-b71b-4a85-9af5-707576d63a06))
(segment (start 156.760624 81.510624) (end 156.944989 81.694989) (width 0.25) (layer "F.Cu") (net 14) (tstamp 0ef8b21e-c394-44b7-b8da-1cb6e1d0474e))
(segment (start 157.716406 81.694989) (end 157.771417 81.75) (width 0.25) (layer "F.Cu") (net 14) (tstamp 208e3997-c4b5-4d3f-b778-c8f063b2cffe))
(segment (start 156.944989 81.694989) (end 157.716406 81.694989) (width 0.25) (layer "F.Cu") (net 14) (tstamp d6508e7c-c0e4-4f29-89f7-d964adea6772))
(segment (start 157.771417 81.75) (end 158.8 81.75) (width 0.25) (layer "F.Cu") (net 14) (tstamp e15d9ed0-31df-4cd7-ac4e-a4f33b7edc32))
(segment (start 157.716406 82.805011) (end 157.771417 82.75) (width 0.25) (layer "F.Cu") (net 15) (tstamp 3ee1fd58-93ce-43ba-b7e2-87f362f4f526))
(segment (start 156.491923 82.210624) (end 157.08631 82.805011) (width 0.25) (layer "F.Cu") (net 15) (tstamp 4d80578b-df4d-4616-887c-06abfc6f26c7))
(segment (start 156.060624 82.210624) (end 156.491923 82.210624) (width 0.25) (layer "F.Cu") (net 15) (tstamp 9731a45b-2cac-4da6-8ee8-d48f3c4ab107))
(segment (start 157.771417 82.75) (end 158.8 82.75) (width 0.25) (layer "F.Cu") (net 15) (tstamp adc81eb6-4d7d-4477-b046-659b4a77d43a))
(segment (start 157.08631 82.805011) (end 157.716406 82.805011) (width 0.25) (layer "F.Cu") (net 15) (tstamp fea080e4-9637-4a94-93ca-7adab4bb308f))
(segment (start 157.760022 83.25) (end 157.705011 83.194989) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2823e08a-f252-4e37-9fa8-f498cb472382))
(segment (start 157.205011 83.194989) (end 156.960624 83.439376) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4bca60a1-561c-4482-8d8f-57c9252a4413))
(segment (start 156.960624 83.439376) (end 156.160624 83.439376) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8ef91e1a-0789-4c1f-ac6a-3da832493acf))
(segment (start 158.8 83.25) (end 157.760022 83.25) (width 0.25) (layer "F.Cu") (net 16) (tstamp bd4234d7-56a2-4842-b073-8e1267b78053))
(segment (start 157.705011 83.194989) (end 157.205011 83.194989) (width 0.25) (layer "F.Cu") (net 16) (tstamp d93aaf61-d956-4501-a6ef-df24663c842e))
(segment (start 157.183594 84.305011) (end 157.394989 84.305011) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5b319d49-4186-456c-bd98-1d762c5aeed9))
(segment (start 157.771417 84.25) (end 158.8 84.25) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6ac4f6a3-37d1-4dbb-a376-b16cfb5af64d))
(segment (start 157.716406 84.305011) (end 157.771417 84.25) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7dab2397-d66c-422d-8b37-ef627466bbda))
(segment (start 156.860624 84.139376) (end 157.017959 84.139376) (width 0.25) (layer "F.Cu") (net 17) (tstamp d575d4a6-434b-424e-bbe7-cf421b2403f6))
(segment (start 157.183594 84.305011) (end 157.716406 84.305011) (width 0.25) (layer "F.Cu") (net 17) (tstamp e406c88b-c9cd-4c65-9031-992711c77228))
(segment (start 157.017959 84.139376) (end 157.183594 84.305011) (width 0.25) (layer "F.Cu") (net 17) (tstamp f5e26f82-29ac-4278-9477-0cce47c020c0))
(segment (start 156.939299 85.039299) (end 156.939299 85.660701) (width 0.25) (layer "F.Cu") (net 18) (tstamp 1b27e1b5-9a26-4912-99b0-5d129af9b25a))
(segment (start 156.3 86.79) (end 156.6 86.49) (width 0.25) (layer "F.Cu") (net 18) (tstamp 91740c80-e77e-4ae4-a9b9-1942ba6be250))
(segment (start 157.233599 84.744999) (end 158.794999 84.744999) (width 0.25) (layer "F.Cu") (net 18) (tstamp bb93d152-0638-4cda-b4cc-461039427b8c))
(segment (start 156.939299 85.660701) (end 156.6 86) (width 0.25) (layer "F.Cu") (net 18) (tstamp df5dbef5-7b6e-4e9d-a95a-3a895a8d51d9))
(segment (start 158.794999 84.744999) (end 158.8 84.75) (width 0.25) (layer "F.Cu") (net 18) (tstamp f2298cf4-6f3d-4da7-9538-1ec7c9d0cd51))
(segment (start 156.939299 85.039299) (end 157.233599 84.744999) (width 0.25) (layer "F.Cu") (net 18) (tstamp fbfb53f0-b750-4136-aecb-09d1944cce97))
(segment (start 156.6 86.49) (end 156.6 86) (width 0.25) (layer "F.Cu") (net 18) (tstamp fcd710f1-af63-4c76-b114-85265298fbb6))
(segment (start 157.25 86.79) (end 157 86.54) (width 0.25) (layer "F.Cu") (net 19) (tstamp 16f78c58-c47e-44c4-b410-61ef2fec8300))
(segment (start 157.871402 85.75) (end 158.8 85.75) (width 0.25) (layer "F.Cu") (net 19) (tstamp 531b4684-81ea-4d36-aa0f-6838edaa05c2))
(segment (start 157.766401 85.855001) (end 157.871402 85.75) (width 0.25) (layer "F.Cu") (net 19) (tstamp 7704062d-090b-48a0-899c-b9ebe98ed604))
(segment (start 157 86.54) (end 157 86.2) (width 0.25) (layer "F.Cu") (net 19) (tstamp 91d2c55c-ec19-4008-b4e1-13db0c8da588))
(segment (start 157 86.2) (end 157.344999 85.855001) (width 0.25) (layer "F.Cu") (net 19) (tstamp db073663-018d-453b-9427-d59776fbea14))
(segment (start 157.344999 85.855001) (end 157.766401 85.855001) (width 0.25) (layer "F.Cu") (net 19) (tstamp ed1297b6-8b91-4c61-b588-c52ac5df24a9))
(segment (start 158.8 88.75) (end 159.90402 88.75) (width 0.3) (layer "F.Cu") (net 24) (tstamp 1f98172b-24ba-4edf-b951-d0df7161b4ba))
(segment (start 159.90402 88.75) (end 161.22 90.06598) (width 0.3) (layer "F.Cu") (net 24) (tstamp 69383d9d-f96f-4e98-9555-7e7008d576a0))
(segment (start 161.22 90.06598) (end 161.22 93.48) (width 0.3) (layer "F.Cu") (net 24) (tstamp c01c158c-c342-4873-b4e2-9052b8c46e2f))
(segment (start 161.22 93.48) (end 159.9 94.8) (width 0.3) (layer "F.Cu") (net 24) (tstamp d1e97632-c698-4b51-9f77-a0cef2f8a1bb))
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 84c8e129-77bf-4b44-a734-23faaac1df0b) (hatch edge 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254)
(keepout (tracks allowed) (vias allowed) (pads allowed ) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 156.7 81)
(xy 155.5 82.2)
(xy 155.3 82)
(xy 156.5 80.8)
)
)
)
(zone (net 0) (net_name "") (layer "F.Cu") (tstamp 885a141c-44fd-4ef5-87cf-0e4dd3f92725) (hatch edge 0.508)
(connect_pads (clearance 0))
(min_thickness 0.254)
(keepout (tracks allowed) (vias allowed) (pads allowed ) (copperpour not_allowed) (footprints allowed))
(fill (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 156.4 83.1)
(xy 156.1 83.1)
(xy 156.1 82.6)
(xy 156.4 82.6)
)
)
)
(zone (net 3) (net_name "GND") (layers F&B.Cu) (tstamp c280d3d8-f7fd-46c6-8655-fcff728d36ea) (hatch edge 0.508)
(connect_pads (clearance 0.15))
(min_thickness 0.15) (filled_areas_thickness no)
(fill yes (thermal_gap 0.2) (thermal_bridge_width 0.2))
(polygon
(pts
(xy 168 97)
(xy 141 97)
(xy 141 73)
(xy 168 73)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 147.073275 73.917313)
(xy 147.098585 73.96115)
(xy 147.089795 74.011)
(xy 147.084417 74.019048)
(xy 147.034461 74.084152)
(xy 147.029654 74.092479)
(xy 146.974822 74.224854)
(xy 146.972334 74.234137)
(xy 146.958317 74.340613)
(xy 146.958 74.345448)
(xy 146.958 75.286952)
(xy 146.961638 75.296948)
(xy 146.966925 75.3)
(xy 148.868952 75.3)
(xy 148.878948 75.296362)
(xy 148.882 75.291075)
(xy 148.882 74.345448)
(xy 148.881683 74.340613)
(xy 148.867666 74.234137)
(xy 148.865178 74.224854)
(xy 148.810346 74.092479)
(xy 148.805539 74.084152)
(xy 148.755583 74.019048)
(xy 148.740361 73.970772)
(xy 148.759733 73.924006)
(xy 148.804633 73.900633)
(xy 148.814291 73.9)
(xy 149.625366 73.9)
(xy 149.672932 73.917313)
(xy 149.698242 73.96115)
(xy 149.689452 74.011)
(xy 149.685686 74.016866)