-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmux_board_v3.kicad_pcb
8786 lines (8771 loc) · 373 KB
/
mux_board_v3.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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "Mux Board")
(rev "v01")
(comment 2 "creativecommons.org/licenses/by/4.0")
(comment 3 "License: CC BY 4.0")
(comment 4 "Author: Chark Stanford")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(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)
(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.0508)
(solder_mask_min_width 0.1016)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(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 "./")
)
)
(net 0 "")
(net 1 "/MUX2_SEL0")
(net 2 "/MUX2_SEL1")
(net 3 "/MUX2_SEL2")
(net 4 "/MUX2_SEL3")
(net 5 "+3V3")
(net 6 "/MUX1_EN")
(net 7 "/MUX1_SEL0")
(net 8 "GND")
(net 9 "/MUX1_SEL2")
(net 10 "/MUX1_SEL1")
(net 11 "/MUX2_EN")
(net 12 "/MUX1_SEL3")
(net 13 "/S1")
(net 14 "/S2")
(net 15 "/S3")
(net 16 "/S4")
(net 17 "/S5")
(net 18 "/S6")
(net 19 "/S7")
(net 20 "/S8")
(net 21 "/S9")
(net 22 "/S10")
(net 23 "/S11")
(net 24 "/S12")
(net 25 "/S13")
(net 26 "/S14")
(net 27 "/S15")
(net 28 "/S16")
(net 29 "unconnected-(J2-Pad19)")
(net 30 "unconnected-(J2-Pad17)")
(net 31 "unconnected-(J2-Pad15)")
(net 32 "unconnected-(J2-Pad13)")
(net 33 "/VUSB")
(net 34 "unconnected-(A1-Pad14)")
(net 35 "/VDD")
(net 36 "/MUX1_OUT")
(net 37 "/MUX2_OUT")
(net 38 "unconnected-(U1-Pad13)")
(net 39 "unconnected-(U1-Pad3)")
(net 40 "unconnected-(U1-Pad2)")
(net 41 "unconnected-(U2-Pad13)")
(net 42 "unconnected-(U2-Pad3)")
(net 43 "unconnected-(U2-Pad2)")
(footprint "mux_board_v2:PinHeader_2x10_P2.54mm_Vertical" (layer "F.Cu")
(tedit 62F98913) (tstamp 0bf6bbb2-b66f-4062-bfb9-d31d708ff3d0)
(at 113.538 106.172)
(descr "Through hole straight pin header, 2x10, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x10 2.54mm double row")
(property "Sheetfile" "mux_board_v3.kicad_sch")
(property "Sheetname" "")
(path "/e2114484-ee88-4221-82b0-a645584371ba")
(attr through_hole)
(fp_text reference "J2" (at -0.508 -3.302) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3325de8c-f2c2-4c6c-8acb-8c6d57fbb840)
)
(fp_text value "Conn_02x10_Odd_Even" (at 1.27 25.19) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5964992-9cbc-4489-9e7f-e31e383b5123)
)
(fp_text user "${REFERENCE}" (at 1.27 11.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 326f8b6a-9cc1-48ad-9792-3e4c8fde7153)
)
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp 0575b032-30db-4c9d-9c64-6e88583e71f7))
(fp_line (start -1.33 1.27) (end -1.33 24.19) (layer "F.SilkS") (width 0.12) (tstamp 3f5adcc4-feaf-411d-a5b4-0cefc6c115f1))
(fp_line (start -1.33 24.19) (end 3.87 24.19) (layer "F.SilkS") (width 0.12) (tstamp 47fdbbd7-ce41-4e74-8173-282db6a2b5f6))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 60031a4a-1c45-4b8a-8428-66343d3551b6))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 89aee3e2-346a-4849-8364-4f7b1fde8c85))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 995bea88-2561-42db-9a75-78d9c74f48eb))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 9d8807e3-f82b-4f8a-8f8e-86296401e24c))
(fp_line (start 3.87 -1.33) (end 3.87 24.19) (layer "F.SilkS") (width 0.12) (tstamp af01c317-7284-4268-a701-f371c29f155c))
(fp_line (start -1.8 24.65) (end 4.35 24.65) (layer "F.CrtYd") (width 0.05) (tstamp 0917c52a-b018-484f-872b-565c28a10aab))
(fp_line (start -1.8 -1.8) (end -1.8 24.65) (layer "F.CrtYd") (width 0.05) (tstamp 0ae36fba-7a37-4b2e-933d-9172ab05a66e))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 964fdbdd-d817-46f7-bb5a-b19937f82ab9))
(fp_line (start 4.35 24.65) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d740f583-b66a-4a0b-99db-915a7d058bbf))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 42f46636-9c84-4e87-8dfb-72c05e13d743))
(fp_line (start 3.81 24.13) (end -1.27 24.13) (layer "F.Fab") (width 0.1) (tstamp 94c5169c-6d89-4cf1-acdb-0202793b2ea9))
(fp_line (start 3.81 -1.27) (end 3.81 24.13) (layer "F.Fab") (width 0.1) (tstamp ab895532-8ca9-41d5-91f8-06d737eec62b))
(fp_line (start -1.27 24.13) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp d6c6da7f-994d-4778-8657-e8dbe44cf50f))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp f813ffe1-fc01-4d76-adc2-b56acdf35680))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "/S11") (pinfunction "Pin_1") (pintype "passive") (tstamp e3e0fcc8-c608-43ea-afd3-660516bd7071))
(pad "2" thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp 5b89da72-879f-440b-96c6-c1f1e0879801))
(pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "/S12") (pinfunction "Pin_3") (pintype "passive") (tstamp 95dd0dcc-e6ba-4cb9-9a88-76b380c1434c))
(pad "4" thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 78fa9d0a-b319-40f5-af5c-9b67602adf03))
(pad "5" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "/S13") (pinfunction "Pin_5") (pintype "passive") (tstamp ee12696d-d694-4050-b031-e30123ee1e03))
(pad "6" thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 124be00b-7c4b-44a1-ac37-f5e21129a574))
(pad "7" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 26 "/S14") (pinfunction "Pin_7") (pintype "passive") (tstamp 6ea09f7b-609d-4443-9381-5e4f2070a5e1))
(pad "8" thru_hole oval (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 6818c9e2-fe98-454c-9d7f-8fa04198270f))
(pad "9" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 27 "/S15") (pinfunction "Pin_9") (pintype "passive") (tstamp d14bb82e-e6a8-4a8e-87b7-f7a1d71848bd))
(pad "10" thru_hole oval (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_10") (pintype "passive") (tstamp 6fae7ed1-05dc-466e-a9ab-4f3070f2e873))
(pad "11" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 28 "/S16") (pinfunction "Pin_11") (pintype "passive") (tstamp b031dd01-501b-44f2-83b3-bd1168a039d9))
(pad "12" thru_hole oval (at 2.54 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_12") (pintype "passive") (tstamp 87dc1966-76fd-4297-b410-247b92d3ffb7))
(pad "13" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 32 "unconnected-(J2-Pad13)") (pinfunction "Pin_13") (pintype "passive+no_connect") (tstamp ac509dee-81ae-430c-aa15-110c9ed1b169))
(pad "14" thru_hole oval (at 2.54 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_14") (pintype "passive") (tstamp 40b20146-03e0-4b43-a71c-eccef9a00c98))
(pad "15" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 31 "unconnected-(J2-Pad15)") (pinfunction "Pin_15") (pintype "passive+no_connect") (tstamp bd8bc864-1cb8-4ad9-9e6d-35e1bc437948))
(pad "16" thru_hole oval (at 2.54 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_16") (pintype "passive") (tstamp b4d8bb6a-4f72-4b99-b3a6-eeb2b1a0c6f3))
(pad "17" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 30 "unconnected-(J2-Pad17)") (pinfunction "Pin_17") (pintype "passive+no_connect") (tstamp 8fc3a5f6-af60-48d9-951e-21c0bd122a69))
(pad "18" thru_hole oval (at 2.54 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_18") (pintype "passive") (tstamp 41d4f8af-1867-4d58-b12b-9bef3ec5f44b))
(pad "19" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 29 "unconnected-(J2-Pad19)") (pinfunction "Pin_19") (pintype "passive+no_connect") (tstamp acd231c3-d87a-41aa-a37a-d99be4caff1b))
(pad "20" thru_hole oval (at 2.54 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_20") (pintype "passive") (tstamp eb0d05e7-5fd4-4ff4-b2a1-56d0078fba45))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x10_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "mux_board_v3:Adafruit_QT_PY" (layer "F.Cu")
(tedit 63E5BDAE) (tstamp 41b35f46-518a-406e-807b-f6941622642f)
(at 130.442 121.526 180)
(descr "32-bit microcontroller module with WiFi, https://www.adafruit.com/product/2471")
(tags "ESP8266 WiFi microcontroller")
(property "Sheetfile" "mux_board_v3.kicad_sch")
(property "Sheetname" "")
(path "/a8900778-3774-4df7-b8be-1d4128ff762f")
(attr through_hole)
(fp_text reference "A1" (at 9.7945 -6.236) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b16db6aa-eff9-4560-94eb-8f1df0edf71a)
)
(fp_text value "ADAFRUIT_QT_PY" (at -3.9 3) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a96ea12-e031-49a1-a3a0-24202e6db0ee)
)
(fp_text user "${REFERENCE}" (at -3.96 0.64) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bd8ee00d-ca1d-429c-904e-a26bd6cdb80f)
)
(fp_line (start 5.7 11.39) (end 7.93 11.39) (layer "F.SilkS") (width 0.12) (tstamp 0978854b-7f2d-4e70-81ad-b8366855ab91))
(fp_line (start -12.64 -3.83) (end 7.93 -3.83) (layer "F.SilkS") (width 0.12) (tstamp 1fe1971a-7016-45bb-8345-401820ae3862))
(fp_line (start -12.64 -6.57) (end -12.64 -3.87) (layer "F.SilkS") (width 0.12) (tstamp 36570266-ac30-48fb-a957-d39c502c9460))
(fp_line (start 3.63375 -6.6) (end 3.16625 -6.6) (layer "F.SilkS") (width 0.12) (tstamp 45d618f3-0545-4d5c-a6f7-7ee5fa0492ef))
(fp_line (start 7.93 11.39) (end 7.93 -6.58) (layer "F.SilkS") (width 0.12) (tstamp 48ced388-1009-47c0-9121-927d687fa0e0))
(fp_line (start 1.1 -6.6) (end 0.56625 -6.6) (layer "F.SilkS") (width 0.12) (tstamp 4eab55a2-5545-47a3-b9b3-c4c469a39d25))
(fp_line (start -6.5 -6.6) (end -6.9675 -6.6) (layer "F.SilkS") (width 0.12) (tstamp 520ddf64-73f0-4767-8391-a2c8400d2889))
(fp_line (start 7.93 8.65) (end -12.65 8.65) (layer "F.SilkS") (width 0.12) (tstamp 5886e575-b80c-446f-a435-0b4c9526c94e))
(fp_line (start -1.26625 11.39) (end -1.9 11.39) (layer "F.SilkS") (width 0.12) (tstamp 61a51970-fbbc-4b1e-a7ae-feb21648f6ac))
(fp_line (start -8.96625 11.39) (end -9.5 11.39) (layer "F.SilkS") (width 0.12) (tstamp 6f6fc535-e6ac-4715-a245-11d18639fbe6))
(fp_line (start -11.6 6) (end -11.6 -0.8) (layer "F.SilkS") (width 0.12) (tstamp 743d8da9-eb43-4371-8313-505007abb989))
(fp_line (start -6.36625 11.39) (end -7 11.39) (layer "F.SilkS") (width 0.12) (tstamp 76fc4407-90fd-4aaf-98db-fa3f5f5824d3))
(fp_line (start -11.7 -6.58) (end -12.64 -6.58) (layer "F.SilkS") (width 0.12) (tstamp 7807c7b7-7ef2-4f78-b820-a3d80a6a5558))
(fp_line (start -1.4 -6.6) (end -1.93375 -6.6) (layer "F.SilkS") (width 0.12) (tstamp 82e0154d-bac7-4cee-a21e-0b2c2ee07d0b))
(fp_line (start -12.65 8.64) (end -12.65 11.4) (layer "F.SilkS") (width 0.12) (tstamp 91696539-77c4-4a75-8e58-8ed056557991))
(fp_line (start -8.965 -6.6) (end -9.635 -6.6) (layer "F.SilkS") (width 0.12) (tstamp 973b69bd-3173-4927-bd5c-d73e14d856a7))
(fp_line (start 1.23375 11.39) (end 0.7 11.39) (layer "F.SilkS") (width 0.12) (tstamp 9d453394-41fe-4db3-b0fe-cea1cb3ca116))
(fp_line (start -12.64 -3.82) (end -12.65 8.62) (layer "F.SilkS") (width 0.12) (tstamp ab5fd570-a8ed-41be-bdc9-9bca7f01f72f))
(fp_line (start -11.5 11.39) (end -12.6 11.39) (layer "F.SilkS") (width 0.12) (tstamp b2b23386-d0d5-4278-8953-0c9c0e5e73f7))
(fp_line (start 7.93375 -6.6) (end 5.7 -6.6) (layer "F.SilkS") (width 0.12) (tstamp bb1d3653-b63a-47c0-b6f8-d8d1da193c13))
(fp_line (start -3.9 -6.6) (end -4.535 -6.6) (layer "F.SilkS") (width 0.12) (tstamp cdbebb5e-a816-472c-9169-2f89317f1f2a))
(fp_line (start -12.6 6) (end -11.6 6) (layer "F.SilkS") (width 0.12) (tstamp df154a3d-4d9b-4d06-bc5a-30761ca45e87))
(fp_line (start -3.9 11.39) (end -4.43375 11.39) (layer "F.SilkS") (width 0.12) (tstamp df8ca82e-d7eb-4065-8722-73c6f9311432))
(fp_line (start -12.6 -0.9) (end -11.6 -0.9) (layer "F.SilkS") (width 0.12) (tstamp e8ae8aa2-6c83-4751-87be-af18c04f637b))
(fp_line (start 3.7 11.39) (end 3.16625 11.39) (layer "F.SilkS") (width 0.12) (tstamp f220da3f-d9e9-4b5a-81e2-bb395123fe5f))
(fp_line (start -13.1 -8.9) (end -13.1 13.7) (layer "F.CrtYd") (width 0.05) (tstamp 4ffe5bcf-0c88-4572-bce0-1f107418dadd))
(fp_line (start -13.1 13.7) (end 8.3 13.7) (layer "F.CrtYd") (width 0.05) (tstamp 6f18111c-9199-4bc4-a095-8b2401c5db4d))
(fp_line (start 8.3 13.7) (end 8.3 -8.9) (layer "F.CrtYd") (width 0.05) (tstamp bd512a59-de1d-4b9c-8048-3f49a128aa46))
(fp_line (start 8.3 -8.9) (end -13.1 -8.9) (layer "F.CrtYd") (width 0.05) (tstamp ebea8197-c54e-40e2-8f7c-9c38868b752b))
(pad "1" smd roundrect (at -10.6 -7.2) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 33 "/VUSB") (pinfunction "VUSB") (pintype "power_in") (tstamp 7f280c56-2afd-45c5-b3ee-e6225c105eda))
(pad "1" thru_hole circle (at -10.54 -5.22) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "/VUSB") (pinfunction "VUSB") (pintype "power_in") (tstamp c1344181-1d9e-48c4-b279-ab0e274e51f6))
(pad "2" thru_hole circle (at -8 -5.22) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b0901133-9ac8-4fae-b1c3-23a5c59648f4))
(pad "2" smd roundrect (at -8 -7.2) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c358d6d3-3fc1-4255-889b-dd8456b5bf5d))
(pad "3" smd roundrect (at -5.5 -7.2) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "+3V3") (pinfunction "3V3") (pintype "power_out") (tstamp 4a6f7f58-ffa1-4ce0-84a4-a43028bdaf25))
(pad "3" thru_hole circle (at -5.46 -5.22) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "+3V3") (pinfunction "3V3") (pintype "power_out") (tstamp 76f0ae03-8a81-4e03-82cc-697b8a2d3dc9))
(pad "4" smd roundrect (at -2.9 -7.2) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/MUX1_SEL0") (pinfunction "M0") (pintype "bidirectional") (tstamp 50b3c388-70c2-40f0-bcab-91360d921fbd))
(pad "4" thru_hole circle (at -2.92 -5.22 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 7 "/MUX1_SEL0") (pinfunction "M0") (pintype "bidirectional") (tstamp 56d30706-3bc3-4351-80e6-e342c04c34e6))
(pad "5" smd roundrect (at -0.4 -7.2) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/MUX1_SEL1") (pinfunction "MI") (pintype "bidirectional") (tstamp 6ff6dbdb-8494-4d96-9edf-cb4316c92b89))
(pad "5" thru_hole circle (at -0.38 -5.22) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "/MUX1_SEL1") (pinfunction "MI") (pintype "bidirectional") (tstamp a3299ab5-3dc3-46bd-84ec-03bef122851b))
(pad "6" thru_hole circle (at 2.16 -5.22) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 9 "/MUX1_SEL2") (pinfunction "SCK") (pintype "bidirectional") (tstamp 1c359650-9720-4ff5-b7eb-b9ba37db5887))
(pad "6" smd roundrect (at 2.1 -7.2) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/MUX1_SEL2") (pinfunction "SCK") (pintype "bidirectional") (tstamp 9608f371-5068-4dfe-bc11-cbcdf54d5e25))
(pad "7" smd roundrect (at 4.7 -7.2) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/MUX1_SEL3") (pinfunction "RX") (pintype "bidirectional") (tstamp d9ecd9ae-ef0a-439f-b17a-557e46b82925))
(pad "7" thru_hole circle (at 4.7 -5.22) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 12 "/MUX1_SEL3") (pinfunction "RX") (pintype "bidirectional") (tstamp de88ea3f-d699-4a70-9d06-d3f653a880a1))
(pad "8" smd roundrect (at 4.7 12) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/MUX1_EN") (pinfunction "TX") (pintype "bidirectional") (tstamp c5d90d50-8815-42b3-bdfe-855c387da089))
(pad "8" thru_hole circle (at 4.7 10) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "/MUX1_EN") (pinfunction "TX") (pintype "bidirectional") (tstamp e408af70-9a3d-4b30-a91f-1a69c4a24a80))
(pad "9" thru_hole circle (at 2.16 10) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "/MUX2_SEL0") (pinfunction "SCL") (pintype "bidirectional") (tstamp 63622b85-ffc5-43a3-94fb-f01b29a8acd4))
(pad "9" smd roundrect (at 2.2 12) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/MUX2_SEL0") (pinfunction "SCL") (pintype "bidirectional") (tstamp 66bacf32-932b-40ed-a996-33703e38cc32))
(pad "10" thru_hole circle (at -0.38 10) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "/MUX2_SEL1") (pinfunction "SDA") (pintype "bidirectional") (tstamp 0963774c-b376-4594-a90e-ed8e9692b9ea))
(pad "10" smd roundrect (at -0.3 12) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/MUX2_SEL1") (pinfunction "SDA") (pintype "bidirectional") (tstamp aa662617-353d-45f8-8bab-007a7f6b3467))
(pad "11" smd roundrect (at -2.9 12) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/MUX2_SEL2") (pinfunction "A3") (pintype "bidirectional") (tstamp c7c0e390-c203-4145-83d2-d45b2a38bf27))
(pad "11" thru_hole oval (at -2.92 10) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "/MUX2_SEL2") (pinfunction "A3") (pintype "bidirectional") (tstamp de853116-f19f-4819-861d-91762ab22b12))
(pad "12" smd roundrect (at -5.4 11.9) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/MUX2_SEL3") (pinfunction "A2") (pintype "bidirectional") (tstamp 482345a1-5db6-4976-998d-99689809f8b9))
(pad "12" thru_hole circle (at -5.46 10) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "/MUX2_SEL3") (pinfunction "A2") (pintype "bidirectional") (tstamp 708ae4a5-cc3f-4ad0-be7f-b39e38a69ee8))
(pad "13" smd roundrect (at -8 11.9) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/MUX2_EN") (pinfunction "A1") (pintype "bidirectional") (tstamp 2b94326e-f7bf-4dbf-8a23-87f97d0455b1))
(pad "13" thru_hole circle (at -8 10) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 11 "/MUX2_EN") (pinfunction "A1") (pintype "bidirectional") (tstamp cfa6ece6-c4c2-463e-8243-39f87684a7cc))
(pad "14" thru_hole circle (at -10.54 10) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 34 "unconnected-(A1-Pad14)") (pinfunction "A0") (pintype "bidirectional+no_connect") (tstamp c1819ec4-16c4-4ca2-a3c6-660ab0af6d34))
(pad "14" smd roundrect (at -10.5 11.9) (size 1.7 3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 34 "unconnected-(A1-Pad14)") (pinfunction "A0") (pintype "bidirectional+no_connect") (tstamp e73ce984-61c1-440b-8d6a-e6928e7cdf0d))
(model "${KISYS3DMOD}/Module.3dshapes/Adafruit_HUZZAH_ESP8266_breakout.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "mux_board_v2:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 62F988E5) (tstamp 567659f7-ad8f-4f1f-b39b-4701279f6b86)
(at 138.938 70.612 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" "mux_board_v3.kicad_sch")
(property "Sheetname" "")
(path "/f3f1ec2e-3068-45f7-ba29-1753231c8e9b")
(attr through_hole)
(fp_text reference "J4" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f52deab-fbd1-4237-bd48-b364b82c9220)
)
(fp_text value "Conn_01x02_Male" (at 0 4.87 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94d4ea18-12a7-4775-bea8-c4aa302596a7)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d81d1402-c429-4283-bfcd-5c29562dcb4e)
)
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 32345de2-9ba8-4bb7-9953-31ce8feaf06c))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 40d9530b-9313-4d5c-b8bc-51d30daeb0c1))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 586e3c91-a343-4d50-b017-0ae0da71af9d))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 5aeaf742-32cd-4108-9f64-a97de6c418f4))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 67ea16e1-0c55-4397-8a77-4000de8a246f))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 9555062b-c952-4aa6-b5b8-17e19cd6eb0f))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 496c4f6e-645f-41b4-89d7-8acd53d607ac))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 71be4c6e-79e7-4078-aa44-d0f9f3717533))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 78214d13-8538-48a5-b713-f4ab23f6eae5))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp e9b8d5cb-55a9-40db-99dc-9d24d8c05bf4))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 64aaae49-d67f-487a-a7c9-2c84d32b33a3))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 7a782070-3833-4958-b2b6-05cbb20bd722))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp bbf4a855-c6d7-4b83-a26d-57a7184ce002))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp bdf846a1-1fd2-4c9b-bc96-feaca1fb379c))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp f7d05132-b1fd-4751-9873-c12193cb1fcc))
(pad "1" thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 36 "/MUX1_OUT") (pinfunction "Pin_1") (pintype "passive") (tstamp 98192b3a-7189-486e-a221-1568d87516d2))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 37 "/MUX2_OUT") (pinfunction "Pin_2") (pintype "passive") (tstamp c56e6725-eec3-4d3a-b89d-8f584d36f831))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "mux_board_v2:Analog_Devices-RU-28-0-0-IPC_A" (layer "F.Cu")
(tedit 63328431) (tstamp b3ba0930-2eea-4744-bddd-3e155eaaed29)
(at 129.794 95.25 180)
(property "-3dB bandwith" "21MHz")
(property "Sheetfile" "mux_board_v3.kicad_sch")
(property "Sheetname" "")
(property "automotive" "No")
(property "category" "IC")
(property "ciiva ids" "1216611")
(property "device class L1" "Integrated Circuits (ICs)")
(property "device class L2" "Interface ICs")
(property "device class L3" "Multiplexers")
(property "digikey description" "IC MULTIPLEXER 1 X 16 28TSSOP")
(property "digikey part number" "ADG1606BRUZ-ND")
(property "height" "1.2mm")
(property "ipc land pattern name" "SOP65P640X120-28")
(property "lead free" "Yes")
(property "library id" "9951777a5a1efd18")
(property "manufacturer" "Analog Devices")
(property "max junction temp" "+150°C")
(property "max supply voltage" "16V")
(property "min supply voltage" "3.3V")
(property "mouser description" "Multiplexer Switch ICs 16:1 21MHz 4 Ohm iCMOS Diff")
(property "mouser part number" "584-ADG1606BRUZ")
(property "mux demux ratio" "16:1")
(property "nominal supply current" "300uA")
(property "number of circuits" "16")
(property "obsolete part" "false")
(property "on state resistance" "4.5Ω")
(property "package" "TSSOP28")
(property "release date" "1391089322")
(property "rohs" "Yes")
(property "standoff height" "0.05mm")
(property "temperature range high" "+125°C")
(property "temperature range low" "-40°C")
(path "/00000000-0000-0000-0000-000062f84dd5")
(attr through_hole)
(fp_text reference "U2" (at 0.762 -6.096 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 3adc2e3c-c830-44de-8e7d-88acef0c6f1d)
)
(fp_text value "ADG1606BRUZ" (at 0.508 0 270) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7e56c17a-e250-4674-a335-a07c1d26d709)
)
(fp_line (start -1.497073 4.85) (end -1.497073 -4.85) (layer "F.SilkS") (width 0.15) (tstamp 184880fa-efc0-47e3-bc28-fcd09a24113a))
(fp_line (start 1.497073 4.85) (end -1.497073 4.85) (layer "F.SilkS") (width 0.15) (tstamp 3cbe6e28-cf7c-4cc9-a887-f6050e1a9eb5))
(fp_line (start -1.497073 -4.85) (end 1.497073 -4.85) (layer "F.SilkS") (width 0.15) (tstamp 79ea7338-2596-41cf-bdd1-428363143cd9))
(fp_line (start 1.497073 -4.85) (end 1.497073 4.85) (layer "F.SilkS") (width 0.15) (tstamp a4ed682d-b072-4d7b-a158-66bdda88358b))
(fp_circle (center -4.685354 -4.225) (end -4.560354 -4.225) (layer "F.SilkS") (width 0.25) (fill none) (tstamp bccb0510-9df1-4c15-8035-daedfc13ae5e))
(fp_circle (center -0.747073 -4.1) (end -0.497073 -4.1) (layer "F.SilkS") (width 0.5) (fill none) (tstamp fbe50840-3f2b-4c2e-a821-ca8b29aada40))
(fp_line (start 4.210355 -5.275) (end 4.210355 -5.275) (layer "F.CrtYd") (width 0.15) (tstamp 2b6c7974-dadf-4630-9e18-ab3a2d2e37f4))
(fp_line (start 4.210355 5.275) (end 4.210355 -5.275) (layer "F.CrtYd") (width 0.15) (tstamp 304a6dd7-a837-4272-b1c0-56a40dc6b4ac))
(fp_line (start -4.210355 -5.275) (end -4.210355 5.275) (layer "F.CrtYd") (width 0.15) (tstamp 428d4f49-674a-406f-a9ad-1469996a247c))
(fp_line (start -4.210355 5.275) (end 4.210355 5.275) (layer "F.CrtYd") (width 0.15) (tstamp 4f24340a-3295-4150-b91a-5a66ae9102fb))
(fp_line (start 4.210355 -5.275) (end -4.210355 -5.275) (layer "F.CrtYd") (width 0.15) (tstamp 5bac9925-fccb-46d5-8c26-69648fa4eb44))
(fp_line (start -2.2 4.85) (end -2.2 -4.85) (layer "F.Fab") (width 0.15) (tstamp 76df581b-19b2-42ac-9fe6-3b2b465066c7))
(fp_line (start -2.2 -4.85) (end 2.2 -4.85) (layer "F.Fab") (width 0.15) (tstamp 81f8aed4-9af4-47ab-a8f1-b3dd987b8bd5))
(fp_line (start 2.2 4.85) (end -2.2 4.85) (layer "F.Fab") (width 0.15) (tstamp f87b7e82-5543-4ffc-95db-f0fb06cb979d))
(fp_line (start 2.2 -4.85) (end 2.2 4.85) (layer "F.Fab") (width 0.15) (tstamp f8936c09-ceaa-4810-ab4b-89c1e3587630))
(pad "1" smd rect (at -2.891214 -4.225 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "/VDD") (pinfunction "VDD") (pintype "power_in") (tstamp d6df2dbf-cc46-4c8a-8ff8-9c750b4f232c))
(pad "2" smd roundrect (at -2.891214 -3.575 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 43 "unconnected-(U2-Pad2)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp e53919bb-0701-4251-8160-9de6c98273e8))
(pad "3" smd roundrect (at -2.891214 -2.925 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 42 "unconnected-(U2-Pad3)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp 85869a51-dee7-44bc-88f5-0fb9505e4590))
(pad "4" smd roundrect (at -2.891214 -2.275 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 28 "/S16") (pinfunction "S16") (pintype "passive") (tstamp ffab4097-b7f1-48be-99af-6d3b771e2814))
(pad "5" smd roundrect (at -2.891214 -1.625 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 27 "/S15") (pinfunction "S15") (pintype "passive") (tstamp 73f19f1f-7f25-4400-b169-778fb3cdb971))
(pad "6" smd roundrect (at -2.891214 -0.975 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 26 "/S14") (pinfunction "S14") (pintype "passive") (tstamp eb67c6a7-7cde-454c-9b32-44c70911079f))
(pad "7" smd roundrect (at -2.891214 -0.325 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 25 "/S13") (pinfunction "S13") (pintype "passive") (tstamp 064c6d87-ad11-4a40-bf46-412faed22951))
(pad "8" smd roundrect (at -2.891214 0.325 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 24 "/S12") (pinfunction "S12") (pintype "passive") (tstamp 98dda097-7d36-408e-8ed2-efd525e2ed34))
(pad "9" smd roundrect (at -2.891214 0.975 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 23 "/S11") (pinfunction "S11") (pintype "passive") (tstamp 49f451f3-8725-4518-8619-93498068637a))
(pad "10" smd roundrect (at -2.891214 1.625 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 22 "/S10") (pinfunction "S10") (pintype "passive") (tstamp 680d9c2f-9684-4229-bc57-145857e7aae3))
(pad "11" smd roundrect (at -2.891214 2.275 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 21 "/S9") (pinfunction "S9") (pintype "passive") (tstamp 01ccc412-83ac-4f51-aa4c-3b661b9cc31f))
(pad "12" smd roundrect (at -2.891214 2.925 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 8 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 39ebc0e7-8a31-458e-ac32-21184b87aa70))
(pad "13" smd roundrect (at -2.891214 3.575 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 41 "unconnected-(U2-Pad13)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp 1861bb60-f0af-409f-8bfc-bd57508b6e72))
(pad "14" smd roundrect (at -2.891214 4.225 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 4 "/MUX2_SEL3") (pinfunction "A3") (pintype "input") (tstamp e3cac474-8192-49b4-9c24-8dfdabd42c61))
(pad "15" smd roundrect (at 2.891215 4.225 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 3 "/MUX2_SEL2") (pinfunction "A2") (pintype "input") (tstamp 5c31cc22-ef91-4cb2-806e-a0afc8e57c9f))
(pad "16" smd roundrect (at 2.891215 3.575 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 2 "/MUX2_SEL1") (pinfunction "A1") (pintype "input") (tstamp 5548e0bb-9382-4e2a-83fe-f8f4f5c613e3))
(pad "17" smd roundrect (at 2.891215 2.925 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 1 "/MUX2_SEL0") (pinfunction "A0") (pintype "input") (tstamp 677bc118-6808-4a49-b3f1-068f10ecee31))
(pad "18" smd roundrect (at 2.891215 2.275 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 11 "/MUX2_EN") (pinfunction "EN") (pintype "input") (tstamp 987c85c3-5203-4907-b9ed-589791ecde2e))
(pad "19" smd roundrect (at 2.891215 1.625 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 13 "/S1") (pinfunction "S1") (pintype "passive") (tstamp 9d665c46-7e87-4633-b424-129725306384))
(pad "20" smd roundrect (at 2.891215 0.975 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 14 "/S2") (pinfunction "S2") (pintype "passive") (tstamp 241932b5-3590-4619-bdd4-6de9ce6dc426))
(pad "21" smd roundrect (at 2.891215 0.325 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 15 "/S3") (pinfunction "S3") (pintype "passive") (tstamp cfe354f3-a152-4130-8cf8-3db201a85cc6))
(pad "22" smd roundrect (at 2.891215 -0.325 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 16 "/S4") (pinfunction "S4") (pintype "passive") (tstamp 908c7b6a-0cdc-40f3-b71d-cc6e61fa3ee4))
(pad "23" smd roundrect (at 2.891215 -0.975 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 17 "/S5") (pinfunction "S5") (pintype "passive") (tstamp 1f0a8375-ee31-4829-802f-2f66c7e80095))
(pad "24" smd roundrect (at 2.891215 -1.625 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 18 "/S6") (pinfunction "S6") (pintype "passive") (tstamp 083f32c3-f1b9-47a3-ab83-63fed9648c92))
(pad "25" smd roundrect (at 2.891215 -2.275 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 19 "/S7") (pinfunction "S7") (pintype "passive") (tstamp ba80640d-142d-4e72-95d5-70d0866c1e8a))
(pad "26" smd roundrect (at 2.891215 -2.925 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 20 "/S8") (pinfunction "S8") (pintype "passive") (tstamp 6520a531-76e6-425d-8997-a1a2279f9dc8))
(pad "27" smd roundrect (at 2.891215 -3.575 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 8 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 8a29e9ac-167c-450e-836d-840c410eb487))
(pad "28" smd roundrect (at 2.891215 -4.225 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 37 "/MUX2_OUT") (pinfunction "D") (pintype "passive") (tstamp b8a2def1-1d18-4f23-9342-2810b6cd2735))
)
(footprint "mux_board_v2:Analog_Devices-RU-28-0-0-IPC_A" (layer "F.Cu")
(tedit 63328431) (tstamp ce59992f-5e92-4011-bcab-8d9f978b7540)
(at 129.794 76.454 180)
(property "-3dB bandwith" "21MHz")
(property "Sheetfile" "mux_board_v3.kicad_sch")
(property "Sheetname" "")
(property "automotive" "No")
(property "category" "IC")
(property "ciiva ids" "1216611")
(property "device class L1" "Integrated Circuits (ICs)")
(property "device class L2" "Interface ICs")
(property "device class L3" "Multiplexers")
(property "digikey description" "IC MULTIPLEXER 1 X 16 28TSSOP")
(property "digikey part number" "ADG1606BRUZ-ND")
(property "height" "1.2mm")
(property "ipc land pattern name" "SOP65P640X120-28")
(property "lead free" "Yes")
(property "library id" "9951777a5a1efd18")
(property "manufacturer" "Analog Devices")
(property "max junction temp" "+150°C")
(property "max supply voltage" "16V")
(property "min supply voltage" "3.3V")
(property "mouser description" "Multiplexer Switch ICs 16:1 21MHz 4 Ohm iCMOS Diff")
(property "mouser part number" "584-ADG1606BRUZ")
(property "mux demux ratio" "16:1")
(property "nominal supply current" "300uA")
(property "number of circuits" "16")
(property "obsolete part" "false")
(property "on state resistance" "4.5Ω")
(property "package" "TSSOP28")
(property "release date" "1391089322")
(property "rohs" "Yes")
(property "standoff height" "0.05mm")
(property "temperature range high" "+125°C")
(property "temperature range low" "-40°C")
(path "/00000000-0000-0000-0000-000062f756a4")
(attr through_hole)
(fp_text reference "U1" (at 0.762 -6.096 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left))
(tstamp 05f2bf24-1be4-435e-8918-6c206872227a)
)
(fp_text value "ADG1606BRUZ" (at 0.508 0 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp fc1e20dd-8ba6-4c4d-9b8a-3474246451d6)
)
(fp_line (start 1.497073 4.85) (end -1.497073 4.85) (layer "F.SilkS") (width 0.15) (tstamp 41fd0096-953d-49a5-b7b1-c986c610c29b))
(fp_line (start -1.497073 -4.85) (end 1.497073 -4.85) (layer "F.SilkS") (width 0.15) (tstamp 52b32cdf-33d3-4a71-94ab-55af40e7c7c7))
(fp_line (start -1.497073 4.85) (end -1.497073 -4.85) (layer "F.SilkS") (width 0.15) (tstamp 85ddd4cd-b041-4214-ba37-21af2e95080c))
(fp_line (start 1.497073 -4.85) (end 1.497073 4.85) (layer "F.SilkS") (width 0.15) (tstamp 92c9c7cb-7904-4332-a7d7-65c9606b0b8a))
(fp_circle (center -4.685354 -4.225) (end -4.560354 -4.225) (layer "F.SilkS") (width 0.25) (fill none) (tstamp 85d0cc72-2416-4741-b8a1-212da7024682))
(fp_circle (center -0.747073 -4.1) (end -0.497073 -4.1) (layer "F.SilkS") (width 0.5) (fill none) (tstamp 9b6994e6-c40e-498d-ac9f-887afe9ad4a8))
(fp_line (start 4.210355 -5.275) (end 4.210355 -5.275) (layer "F.CrtYd") (width 0.15) (tstamp 8e30a1e0-3916-490f-a7d0-169d613b5bda))
(fp_line (start 4.210355 5.275) (end 4.210355 -5.275) (layer "F.CrtYd") (width 0.15) (tstamp b082c83c-dc3b-4bb7-84b5-c1603d0912fc))
(fp_line (start -4.210355 5.275) (end 4.210355 5.275) (layer "F.CrtYd") (width 0.15) (tstamp b792fe2a-3fd6-4054-ac4a-abb07d4b4c33))
(fp_line (start -4.210355 -5.275) (end -4.210355 5.275) (layer "F.CrtYd") (width 0.15) (tstamp c2eaf71b-2d04-43b1-a52f-d59a7a480dea))
(fp_line (start 4.210355 -5.275) (end -4.210355 -5.275) (layer "F.CrtYd") (width 0.15) (tstamp f598f132-4b8d-473e-8ac7-b456ddeaaa05))
(fp_line (start 2.2 -4.85) (end 2.2 4.85) (layer "F.Fab") (width 0.15) (tstamp 513e963e-3b72-496c-9391-5fb8c0bcdf5e))
(fp_line (start -2.2 -4.85) (end 2.2 -4.85) (layer "F.Fab") (width 0.15) (tstamp 68ecf53e-9a66-4fbb-a449-1b817ad2b2f1))
(fp_line (start -2.2 4.85) (end -2.2 -4.85) (layer "F.Fab") (width 0.15) (tstamp 721d34af-e65a-4558-ac7a-cc9bbd8fa373))
(fp_line (start 2.2 4.85) (end -2.2 4.85) (layer "F.Fab") (width 0.15) (tstamp ab0e74f5-8dce-4c8e-be3b-9d07b4b56098))
(pad "1" smd rect (at -2.891214 -4.225 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask")
(net 35 "/VDD") (pinfunction "VDD") (pintype "power_in") (tstamp d3d7d791-05a2-400b-b575-898d97367905))
(pad "2" smd roundrect (at -2.891214 -3.575 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 40 "unconnected-(U1-Pad2)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp 41789951-05ce-4881-81bc-960a13406cf5))
(pad "3" smd roundrect (at -2.891214 -2.925 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 39 "unconnected-(U1-Pad3)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp a29b4270-1a19-4529-ae2b-82dca2aa21c1))
(pad "4" smd roundrect (at -2.891214 -2.275 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 28 "/S16") (pinfunction "S16") (pintype "passive") (tstamp 1ce3b4e8-4320-4ed8-94b0-278eb9a87730))
(pad "5" smd roundrect (at -2.891214 -1.625 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 27 "/S15") (pinfunction "S15") (pintype "passive") (tstamp 94b3399d-96fa-41b6-bacf-33b81a802d06))
(pad "6" smd roundrect (at -2.891214 -0.975 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 26 "/S14") (pinfunction "S14") (pintype "passive") (tstamp 61a9403c-5d4d-4c2f-b0aa-f5f5605d02e7))
(pad "7" smd roundrect (at -2.891214 -0.325 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 25 "/S13") (pinfunction "S13") (pintype "passive") (tstamp 7cee7f5b-e381-4a30-8e34-d4b1388f0437))
(pad "8" smd roundrect (at -2.891214 0.325 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 24 "/S12") (pinfunction "S12") (pintype "passive") (tstamp a497087d-8d4e-4174-9411-8f5a385f2dac))
(pad "9" smd roundrect (at -2.891214 0.975 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 23 "/S11") (pinfunction "S11") (pintype "passive") (tstamp ab6937d4-3bf9-43c2-ad1b-6e812a0d2c73))
(pad "10" smd roundrect (at -2.891214 1.625 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 22 "/S10") (pinfunction "S10") (pintype "passive") (tstamp eea7f906-ba8e-4be6-88e6-28768c5aa86e))
(pad "11" smd roundrect (at -2.891214 2.275 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 21 "/S9") (pinfunction "S9") (pintype "passive") (tstamp 6c6367e3-2bd8-4b14-a4c8-35b417e9e259))
(pad "12" smd roundrect (at -2.891214 2.925 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 8 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5299b0fb-f74d-4e79-b7d7-40687e8d5bd3))
(pad "13" smd roundrect (at -2.891214 3.575 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 38 "unconnected-(U1-Pad13)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp 19c3ae37-c6c9-4b6e-8922-ff1148aa181d))
(pad "14" smd roundrect (at -2.891214 4.225 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 12 "/MUX1_SEL3") (pinfunction "A3") (pintype "input") (tstamp 81386521-8f9b-411f-9833-1dd6b271ccd8))
(pad "15" smd roundrect (at 2.891215 4.225 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 9 "/MUX1_SEL2") (pinfunction "A2") (pintype "input") (tstamp e9e5e01c-f4d6-4a09-9021-86688a24622f))
(pad "16" smd roundrect (at 2.891215 3.575 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 10 "/MUX1_SEL1") (pinfunction "A1") (pintype "input") (tstamp 8468016d-0a6a-4ce2-beef-67673f688aec))
(pad "17" smd roundrect (at 2.891215 2.925 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 7 "/MUX1_SEL0") (pinfunction "A0") (pintype "input") (tstamp 52281a8d-9e32-4a02-9b76-7747c697e85b))
(pad "18" smd roundrect (at 2.891215 2.275 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 6 "/MUX1_EN") (pinfunction "EN") (pintype "input") (tstamp 7342b642-c7fc-4002-bfd0-19b422093d13))
(pad "19" smd roundrect (at 2.891215 1.625 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 13 "/S1") (pinfunction "S1") (pintype "passive") (tstamp da67059f-e8a1-4b43-a3d9-1ddaf6e948a0))
(pad "20" smd roundrect (at 2.891215 0.975 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 14 "/S2") (pinfunction "S2") (pintype "passive") (tstamp 2835bcca-4b5b-4404-b3d7-cfbd434919c9))
(pad "21" smd roundrect (at 2.891215 0.325 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 15 "/S3") (pinfunction "S3") (pintype "passive") (tstamp 61263771-a8e1-487c-9d7e-34afacb6d74d))
(pad "22" smd roundrect (at 2.891215 -0.325 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 16 "/S4") (pinfunction "S4") (pintype "passive") (tstamp 7488179b-fabc-4964-915a-5cad2181a652))
(pad "23" smd roundrect (at 2.891215 -0.975 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 17 "/S5") (pinfunction "S5") (pintype "passive") (tstamp a4afacbe-258c-4089-a9a2-cfd535e98560))
(pad "24" smd roundrect (at 2.891215 -1.625 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 18 "/S6") (pinfunction "S6") (pintype "passive") (tstamp 8d7fa8bf-f617-47c9-9946-7d6216f7e8c8))
(pad "25" smd roundrect (at 2.891215 -2.275 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 19 "/S7") (pinfunction "S7") (pintype "passive") (tstamp 33510bdc-9a8a-459b-a53b-229d3c7e48a0))
(pad "26" smd roundrect (at 2.891215 -2.925 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 20 "/S8") (pinfunction "S8") (pintype "passive") (tstamp 66569666-594f-4046-aefd-dc898a9ec9da))
(pad "27" smd roundrect (at 2.891215 -3.575 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 8 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 68c754ab-66cf-4170-934d-8f56f71792e9))
(pad "28" smd roundrect (at 2.891215 -4.225 180) (size 1.788281 0.36) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.5)
(net 36 "/MUX1_OUT") (pinfunction "D") (pintype "passive") (tstamp 1cd00423-271f-4170-9408-812e5f49ae31))
)
(footprint "mux_board_v2:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu")
(tedit 62F988E5) (tstamp e58453f4-e6f6-4dd7-ad57-21d6f27ff944)
(at 139.192 104.14 -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" "mux_board_v3.kicad_sch")
(property "Sheetname" "")
(path "/924b8b0d-9ec9-4f07-b984-e2cb03a5c66d")
(attr through_hole)
(fp_text reference "J3" (at 0 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c7c5c2f1-8395-4f8b-a94c-ac95484918df)
)
(fp_text value "Conn_01x02_Male" (at 0 4.87 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7afb02b-0187-4c38-82cf-3673ebe27769)
)
(fp_text user "${REFERENCE}" (at 0 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9d796f8-6433-4104-9098-2e226717efc2)
)
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 30e68e7a-0af9-44dc-a2d9-0c080e913c30))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6cc5c2e0-234f-424b-8fae-12b776acd992))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 78bd3887-fdc4-4e9a-acd1-e467b76bd693))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 7dc40a91-5f48-48f8-b713-3a14049bfe71))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp b9292852-4810-400f-be14-76e0b93df842))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c31a3650-b98b-4470-b889-e5b389a09676))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 17ff9da3-4a0b-4e6f-b8c9-d48e3f5a7f9e))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 2b5c2297-5758-457d-a7db-0cb44470c725))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 3c7661d0-ecd4-4d8c-8608-9da0708e25b1))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 578ae6c0-5141-4fb3-a151-91926dd02aab))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 416b4b4a-68d1-4dac-8de3-2d72b95dc977))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 61d905c6-3a9e-4103-b419-c7340a7ca7b0))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp a3c33b4d-11fe-4008-a759-b013130f2c29))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp c2a43f3c-2d3d-4631-889e-37b8ef93080f))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp eb935fbc-c792-429e-bd07-71e23daad5de))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 33 "/VUSB") (pinfunction "Pin_1") (pintype "passive") (tstamp 9b1c22ba-11a2-4151-8f91-b50cebea9d8a))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 35 "/VDD") (pinfunction "Pin_2") (pintype "passive") (tstamp fa95317b-b6cf-4ae4-a847-a5870cb6f240))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "mux_board_v2:PinHeader_2x10_P2.54mm_Vertical" (layer "F.Cu")
(tedit 62F98913) (tstamp f33c8f8c-9778-4b3d-9c97-04a7cc162090)
(at 113.543 70.607)
(descr "Through hole straight pin header, 2x10, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x10 2.54mm double row")
(property "Sheetfile" "mux_board_v3.kicad_sch")
(property "Sheetname" "")
(path "/bcc2a6ea-aeee-44f8-8a4c-5420be51dfe7")
(attr through_hole)
(fp_text reference "J1" (at -0.259 25.659) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 018b5e17-7d18-4af1-a754-058b978d232a)
)
(fp_text value "Conn_02x10_Odd_Even" (at 1.27 25.19) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1fbed9e5-7de0-4ce9-9c55-ad7572e12e59)
)
(fp_text user "${REFERENCE}" (at 1.27 11.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 301bb7bb-5f67-4a12-9750-89181d549b6f)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 116dfe6d-587c-4dd5-a481-7afc3b428ec0))
(fp_line (start -1.33 24.19) (end 3.87 24.19) (layer "F.SilkS") (width 0.12) (tstamp 12ffd6aa-0f30-4629-a970-b081b41f4267))
(fp_line (start 3.87 -1.33) (end 3.87 24.19) (layer "F.SilkS") (width 0.12) (tstamp 25ced3de-676b-4ac0-9053-fc67b3d03691))
(fp_line (start 1.27 1.27) (end 1.27 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 667a6064-da95-4136-b19f-3d95581483e8))
(fp_line (start -1.33 1.27) (end -1.33 24.19) (layer "F.SilkS") (width 0.12) (tstamp 82867bf4-f706-48dc-ab65-fa19c1c7efd9))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c201b801-be57-43f1-9ad1-189ee6e7bc11))
(fp_line (start -1.33 1.27) (end 1.27 1.27) (layer "F.SilkS") (width 0.12) (tstamp cffb2abb-c1d3-43d1-a481-0af242966521))
(fp_line (start 1.27 -1.33) (end 3.87 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d336bb33-8551-45e1-9a37-39a5964e22ad))
(fp_line (start 4.35 24.65) (end 4.35 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5f85bdb1-2477-4ea7-869b-7afce790089a))
(fp_line (start -1.8 -1.8) (end -1.8 24.65) (layer "F.CrtYd") (width 0.05) (tstamp 5fad088f-700d-41c8-bda5-ccc0b75d242c))
(fp_line (start 4.35 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 8d3e64b6-85e4-4ce6-ae1f-d581c8024a55))
(fp_line (start -1.8 24.65) (end 4.35 24.65) (layer "F.CrtYd") (width 0.05) (tstamp cd687d4b-472a-4b2d-85ce-917f03a73835))
(fp_line (start 3.81 24.13) (end -1.27 24.13) (layer "F.Fab") (width 0.1) (tstamp 76d440ef-8f0d-40b6-b0df-3a427d495130))
(fp_line (start -1.27 0) (end 0 -1.27) (layer "F.Fab") (width 0.1) (tstamp 807597f0-84e3-4986-b753-f7ef40d3ce6c))
(fp_line (start 0 -1.27) (end 3.81 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8a20f871-8c79-48d3-a971-845a2909f02c))
(fp_line (start 3.81 -1.27) (end 3.81 24.13) (layer "F.Fab") (width 0.1) (tstamp c4072de7-7788-4b8e-92e5-7d9511abf0d3))
(fp_line (start -1.27 24.13) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp c8d28666-39c6-4167-a487-6dcf647fff2f))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 13 "/S1") (pinfunction "Pin_1") (pintype "passive") (tstamp b0fdb2a4-7e46-4a1f-9f2a-035d360381c3))
(pad "2" thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp abde1f94-4b9f-41c8-8845-102227af8dfc))
(pad "3" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "/S2") (pinfunction "Pin_3") (pintype "passive") (tstamp 845b399e-676e-463f-8468-615daa2923c9))
(pad "4" thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp a4257c70-fa6d-495c-99eb-48dc07d98831))
(pad "5" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 15 "/S3") (pinfunction "Pin_5") (pintype "passive") (tstamp 43706053-4f4e-461f-b054-7f5de6dc0258))
(pad "6" thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp bd08beb9-5319-4ea5-bcca-5d8f756c28f7))
(pad "7" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 16 "/S4") (pinfunction "Pin_7") (pintype "passive") (tstamp 3e36d46d-8471-4871-8ec9-6da665345d8a))
(pad "8" thru_hole oval (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 9bf6eaf0-8b37-4e51-b5e7-a2be99b52b96))
(pad "9" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 17 "/S5") (pinfunction "Pin_9") (pintype "passive") (tstamp b3179e89-cad8-48ce-93ab-34954f0b69ac))
(pad "10" thru_hole oval (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_10") (pintype "passive") (tstamp ca2dd9ba-0ecd-4f8d-808e-d875ef4c56c9))
(pad "11" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 18 "/S6") (pinfunction "Pin_11") (pintype "passive") (tstamp 9907ec5f-30b6-4f70-8109-7a4eb7e28e38))
(pad "12" thru_hole oval (at 2.54 12.7) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_12") (pintype "passive") (tstamp a3919a37-6c0b-458e-808f-5709bfa0fd57))
(pad "13" thru_hole oval (at 0 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "/S7") (pinfunction "Pin_13") (pintype "passive") (tstamp 200427ad-2832-4dbb-9227-2f456bd31af2))
(pad "14" thru_hole oval (at 2.54 15.24) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_14") (pintype "passive") (tstamp 15818e07-2620-497d-920e-c0f3fa45c878))
(pad "15" thru_hole oval (at 0 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "/S8") (pinfunction "Pin_15") (pintype "passive") (tstamp e0d78f56-637c-46d4-adb7-54ec9ed9a717))
(pad "16" thru_hole oval (at 2.54 17.78) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_16") (pintype "passive") (tstamp 064d2ceb-ed0a-4fc8-8669-798ae2c1911a))
(pad "17" thru_hole oval (at 0 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 21 "/S9") (pinfunction "Pin_17") (pintype "passive") (tstamp aec4a5f8-dea7-422c-a852-5566f47c7f4d))
(pad "18" thru_hole oval (at 2.54 20.32) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_18") (pintype "passive") (tstamp 635d3d46-da80-4ae0-a469-28a4a14fe2cd))
(pad "19" thru_hole oval (at 0 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "/S10") (pinfunction "Pin_19") (pintype "passive") (tstamp 69ed7c81-a952-4378-8357-76c9747c83f3))
(pad "20" thru_hole oval (at 2.54 22.86) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 8 "GND") (pinfunction "Pin_20") (pintype "passive") (tstamp 73c6a740-f6f1-4f8a-b454-3005d2b89391))
(model "${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x10_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_line (start 144 131.064) (end 111.506 131.064) (layer "F.Cu") (width 0.2) (tstamp 07e4677a-e3dd-454d-96d6-fb3effce7aea))
(gr_line (start 111.506 131.064) (end 111.506 68.326) (layer "F.Cu") (width 0.2) (tstamp 1d2d30db-b500-450a-b39e-6551efbcdc39))
(gr_line (start 144 68.326) (end 144 131.064) (layer "F.Cu") (width 0.2) (tstamp 2e4e1dff-c942-4f09-b364-1d2433e03e58))
(gr_line (start 111.506 68.326) (end 144 68.326) (layer "F.Cu") (width 0.2) (tstamp 34f428af-53a8-4c74-abd7-c14369388bcb))
(gr_line (start 144.272 68.072) (end 144.272 131.318) (layer "Edge.Cuts") (width 0.1) (tstamp 6050ade4-d8f2-4a7b-93e2-d062e93e9edb))
(gr_line (start 111.252 131.318) (end 111.252 68.072) (layer "Edge.Cuts") (width 0.1) (tstamp 6620ece5-b552-42e3-b4a7-a863bb396ec1))
(gr_line (start 144.272 131.318) (end 111.252 131.318) (layer "Edge.Cuts") (width 0.1) (tstamp 791f08b2-190f-425b-84e1-3aec99a46611))
(gr_line (start 111.252 68.072) (end 144.272 68.072) (layer "Edge.Cuts") (width 0.1) (tstamp a15b1a81-421d-431c-975d-5ca2fb5503b1))
(gr_text "MUX2" (at 141.478 74.168 -270) (layer "F.SilkS") (tstamp 00fa1827-b327-4d39-ba83-b2b7e86d2e39)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S5" (at 119.126 80.772) (layer "F.SilkS") (tstamp 0b33913f-a269-4423-a72a-0abda16c39c2)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S1" (at 119.126 70.612) (layer "F.SilkS") (tstamp 132b904b-190f-4fc0-bdd0-5989e8faca3d)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S4" (at 119.126 78.232) (layer "F.SilkS") (tstamp 1a8c2edb-643d-45f7-954a-37012deecad6)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "MUX1" (at 138.938 74.168 -270) (layer "F.SilkS") (tstamp 1df6ea85-5512-488a-8d38-8a3bd9609bf7)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S7" (at 119.126 85.852) (layer "F.SilkS") (tstamp 3ac1abcb-9583-4500-9e28-494984200c88)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S16" (at 119.888 118.872) (layer "F.SilkS") (tstamp 459de49d-10ae-4551-8823-933b364a72f6)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S14" (at 119.634 113.792) (layer "F.SilkS") (tstamp 4f930dfd-6588-4f58-b051-d4a6d08fe249)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S13" (at 119.634 111.252) (layer "F.SilkS") (tstamp 672fb6d5-6755-4489-b552-fd5e657c97a6)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "GND" (at 116.078 103.124 -270) (layer "F.SilkS") (tstamp 68db9397-0a5f-44ed-adc6-f2d20a7e80bf)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S12" (at 119.634 108.712) (layer "F.SilkS") (tstamp 69d6a600-8481-47e9-a8fb-347bae2d38c5)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S3" (at 119.126 75.692) (layer "F.SilkS") (tstamp 6e62f78e-9864-4284-ae90-734d52a6c659)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S11" (at 119.634 105.918) (layer "F.SilkS") (tstamp 85b76497-6bec-4b09-9747-196f5fb543c6)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "VDD" (at 133.604 104.14) (layer "F.SilkS") (tstamp 8eef7ede-2db8-45e4-8bab-50e28bd12e2a)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S9" (at 119.126 90.932) (layer "F.SilkS") (tstamp 92b379be-c191-4668-aa96-11e6aa202a62)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S6" (at 119.126 83.312) (layer "F.SilkS") (tstamp 98edc00a-4ce6-465a-a759-8e7fdc26aa07)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S8" (at 119.126 88.392) (layer "F.SilkS") (tstamp a092bd9d-5530-44fc-a2c6-9b7e46ddcf64)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "VUSB" (at 139.7 102.108) (layer "F.SilkS") (tstamp a75e1fc4-b0b2-4541-b909-3f9471d3921e)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S2" (at 119.126 73.152) (layer "F.SilkS") (tstamp aa751c2f-9d19-4bd3-b50b-9f17029b55bc)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S15" (at 119.634 116.332) (layer "F.SilkS") (tstamp ad6e4ddd-ffa7-485a-bb22-da8a60d620df)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "GND" (at 116.078 97.028 -270) (layer "F.SilkS") (tstamp d39f834c-0cc2-455e-8ed3-80e7888cc6fe)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "S10" (at 119.634 93.726) (layer "F.SilkS") (tstamp fb9e267b-4f3c-4eac-b4e3-ff4d261b8e65)
(effects (font (size 1 1) (thickness 0.15)))
)
(segment (start 126.902785 92.325) (end 129.023708 92.325) (width 0.254) (layer "F.Cu") (net 1) (tstamp 53f75b05-31bc-428b-a224-48164e7cbdb8))
(segment (start 129.023708 92.325) (end 129.0315 92.317208) (width 0.254) (layer "F.Cu") (net 1) (tstamp cbfe97ad-7d2a-41e0-8c68-07dcb9c00079))
(segment (start 128.242 107.051731) (end 128.242 109.526) (width 0.254) (layer "F.Cu") (net 1) (tstamp e3fb424b-5803-48e6-9137-52eb688d9632))
(segment (start 129.629231 105.6645) (end 128.242 107.051731) (width 0.254) (layer "F.Cu") (net 1) (tstamp e855c393-5090-4f87-98c0-b32b00e72d1a))
(via (at 129.629231 105.6645) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 1) (tstamp b45775bc-507d-433e-8fe0-c4d373030700))
(via (at 129.0315 92.317208) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 1) (tstamp f3a8be3f-2f8c-4046-afa8-4ca437ebf4b3))
(segment (start 129.0315 105.066769) (end 129.629231 105.6645) (width 0.254) (layer "B.Cu") (net 1) (tstamp 36874f75-3228-4d2d-a0a6-8ee3629313e1))
(segment (start 129.0315 92.317208) (end 129.0315 105.066769) (width 0.254) (layer "B.Cu") (net 1) (tstamp a0c6d3ff-4b7c-4bfe-bb82-55a7f8ca3f69))
(segment (start 128.091212 91.675) (end 128.304371 91.461841) (width 0.254) (layer "F.Cu") (net 2) (tstamp 0b22d341-e426-4925-b6bf-260f6cba3f9a))
(segment (start 126.902785 91.675) (end 128.091212 91.675) (width 0.254) (layer "F.Cu") (net 2) (tstamp be99cce3-302d-4b0b-bc46-6669a13ee7e7))
(segment (start 130.81 106.426) (end 130.81 109.458) (width 0.254) (layer "F.Cu") (net 2) (tstamp ce00c6bd-207a-4f70-b676-585239934730))
(segment (start 130.81 109.458) (end 130.742 109.526) (width 0.254) (layer "F.Cu") (net 2) (tstamp e08be033-b7a3-452d-bb3b-298d679f504a))
(via (at 128.304371 91.461841) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 2) (tstamp 9249e391-33ff-4180-89c6-a2f2a684177b))
(via (at 130.81 106.426) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 2) (tstamp c9679e60-61b2-47a6-9cdc-cb2394af0aeb))
(segment (start 128.27 91.496212) (end 128.27 105.918) (width 0.254) (layer "B.Cu") (net 2) (tstamp 45d2ac6f-de2d-4c25-af96-5c5465125ec8))
(segment (start 128.27 105.918) (end 128.778 106.426) (width 0.254) (layer "B.Cu") (net 2) (tstamp 5510f6e7-f4ed-4242-a139-6e53bb7ba2ff))
(segment (start 128.778 106.426) (end 130.81 106.426) (width 0.254) (layer "B.Cu") (net 2) (tstamp e99dc042-57a0-46cd-9247-589d3fbd1f2c))
(segment (start 128.304371 91.461841) (end 128.27 91.496212) (width 0.254) (layer "B.Cu") (net 2) (tstamp fc5724c6-6b0f-4eb2-8cdb-525623719d1b))
(segment (start 126.902785 91.025) (end 126.902785 90.267215) (width 0.254) (layer "F.Cu") (net 3) (tstamp 0305343b-e959-4dcf-b6b9-a43da1118ac1))
(segment (start 133.35 109.518) (end 133.342 109.526) (width 0.254) (layer "F.Cu") (net 3) (tstamp 1aabf682-03f7-4c20-8c72-3d1ef26ab97d))
(segment (start 133.35 107.188) (end 133.35 109.518) (width 0.254) (layer "F.Cu") (net 3) (tstamp 1e6c5626-af4a-42e5-83bb-05d3b44d956d))
(segment (start 126.902785 90.267215) (end 127 90.17) (width 0.254) (layer "F.Cu") (net 3) (tstamp 6dcf8ac6-0cf1-400e-878f-dbc6fa43e72d))
(via (at 133.35 107.188) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 3) (tstamp 1d8d6e75-95b6-4f46-b52c-a114cb72a134))
(via (at 127 90.17) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 3) (tstamp fb42eca2-ecb0-4dc3-8627-8ef994f3f899))
(segment (start 127 90.17) (end 127 106.172) (width 0.254) (layer "B.Cu") (net 3) (tstamp 3d9e47ab-8dc5-4459-ad82-014afd252383))
(segment (start 128.016 107.188) (end 133.35 107.188) (width 0.254) (layer "B.Cu") (net 3) (tstamp 3fe84131-770e-4553-8349-5dc487a7d9da))
(segment (start 127 106.172) (end 128.016 107.188) (width 0.254) (layer "B.Cu") (net 3) (tstamp e055ab92-7099-4a2d-86cd-216d27165b05))
(segment (start 134.713 91.025) (end 132.685214 91.025) (width 0.254) (layer "F.Cu") (net 4) (tstamp 02c57aea-4db8-4408-a152-17e3254ef7d6))
(segment (start 139.192 95.504) (end 134.713 91.025) (width 0.254) (layer "F.Cu") (net 4) (tstamp 244dad6d-5a5d-4907-8a5b-6e8606fff7e2))
(segment (start 135.842 109.626) (end 135.842 107.902) (width 0.254) (layer "F.Cu") (net 4) (tstamp 4a30f4d9-ddd7-4cd2-8ccf-6cabaab7110a))
(segment (start 139.192 97.79) (end 139.192 95.504) (width 0.254) (layer "F.Cu") (net 4) (tstamp 4c388189-3642-490c-8e76-994f45883cc2))
(segment (start 133.604 103.378) (end 139.192 97.79) (width 0.254) (layer "F.Cu") (net 4) (tstamp 72c068fc-ea11-423e-8c44-356063e0acce))
(segment (start 135.842 107.902) (end 133.604 105.664) (width 0.254) (layer "F.Cu") (net 4) (tstamp 9cd63591-fa70-4b76-9a6d-51554fed1b0c))
(segment (start 133.604 105.664) (end 133.604 103.378) (width 0.254) (layer "F.Cu") (net 4) (tstamp b0a87981-f4b1-4a61-b260-764be0151ebb))
(segment (start 126.045951 74.179) (end 126.902785 74.179) (width 0.254) (layer "F.Cu") (net 6) (tstamp 43248e2a-2aa0-4d7c-a0dd-6ab1467bf821))
(segment (start 125.742 107.938) (end 126.492 107.188) (width 0.254) (layer "F.Cu") (net 6) (tstamp 541128c1-8c92-4a66-8366-073198fee168))
(segment (start 125.73 74.168) (end 126.034951 74.168) (width 0.254) (layer "F.Cu") (net 6) (tstamp 56480088-4d65-4bdb-9c7d-2b4fd4e1f09b))
(segment (start 125.742 109.526) (end 125.742 107.938) (width 0.254) (layer "F.Cu") (net 6) (tstamp 6156df78-87e0-48ef-b335-96d5cf8b0364))
(segment (start 123.19 68.834) (end 122.936 69.088) (width 0.254) (layer "F.Cu") (net 6) (tstamp 6e354bbf-8ec4-4d7c-b75b-ca97e35dc48c))
(segment (start 126.034951 74.168) (end 126.045951 74.179) (width 0.254) (layer "F.Cu") (net 6) (tstamp 751c9129-2300-4311-abd8-6d40c82fe718))
(segment (start 142.748 68.834) (end 123.19 68.834) (width 0.254) (layer "F.Cu") (net 6) (tstamp 88893c55-d30c-415f-b6eb-cbd2071df48c))
(segment (start 122.936 71.374) (end 125.73 74.168) (width 0.254) (layer "F.Cu") (net 6) (tstamp b88649e1-ff0e-4b93-8723-9ee73ce703a3))
(segment (start 122.936 69.088) (end 122.936 71.374) (width 0.254) (layer "F.Cu") (net 6) (tstamp f56a1543-d9cc-46d3-b326-ba27239adf63))
(segment (start 143.51948 69.60548) (end 142.748 68.834) (width 0.254) (layer "F.Cu") (net 6) (tstamp fe453552-ca10-4120-b869-bbb26635d4f7))
(via (at 143.2655 69.469) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 6) (tstamp 42f27be9-896b-44e9-aeeb-806d2f7bd7a0))
(via (at 126.492 107.188) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 6) (tstamp 7a7629c6-bbdd-41e6-b7de-1ef0758c4c60))
(segment (start 127.508 108.204) (end 142.24 108.204) (width 0.254) (layer "B.Cu") (net 6) (tstamp 5a99484d-5c4b-4224-b00d-5abe473ed9cb))
(segment (start 126.492 107.188) (end 127.508 108.204) (width 0.254) (layer "B.Cu") (net 6) (tstamp 673e55af-832c-4f78-a04a-6cee7e89a4de))
(segment (start 143.51 69.7135) (end 143.2655 69.469) (width 0.254) (layer "B.Cu") (net 6) (tstamp 702c10b2-471c-4445-9591-b47f2a26d0fa))
(segment (start 142.24 108.204) (end 143.51 106.934) (width 0.254) (layer "B.Cu") (net 6) (tstamp b9e8be9a-c046-453a-a00f-f37e3b9b4b04))
(segment (start 143.51 106.934) (end 143.51 69.7135) (width 0.254) (layer "B.Cu") (net 6) (tstamp d5bbb26d-0a8b-4630-b122-85fbdaee8f54))
(segment (start 143.51948 79.00348) (end 143.51948 110.98852) (width 0.254) (layer "F.Cu") (net 7) (tstamp 14864764-7a03-4526-9859-b48d384b7339))
(segment (start 143.51948 110.98852) (end 143.51 110.998) (width 0.254) (layer "F.Cu") (net 7) (tstamp 26872908-494a-4ba1-96a2-d91b069681d4))
(segment (start 137.16 72.644) (end 143.51948 79.00348) (width 0.254) (layer "F.Cu") (net 7) (tstamp 297c0741-d3a0-4ca6-8ffa-14fb6f0c0f5f))
(segment (start 136.906 69.342) (end 137.16 69.596) (width 0.254) (layer "F.Cu") (net 7) (tstamp 5ab3df63-9140-40ce-a591-1b089ae399c4))
(segment (start 134.62 124.968) (end 133.342 126.246) (width 0.254) (layer "F.Cu") (net 7) (tstamp 7377ec04-450b-4e84-85c3-70f31fcbc23d))
(segment (start 133.342 126.246) (end 133.342 128.726) (width 0.254) (layer "F.Cu") (net 7) (tstamp 7d2779ab-9300-4674-895b-ab060061bc15))
(segment (start 143.51 110.998) (end 143.51 123.19) (width 0.254) (layer "F.Cu") (net 7) (tstamp 85085c20-d5e2-49a6-827e-3440d84beaf8))
(segment (start 137.16 69.596) (end 137.16 72.644) (width 0.254) (layer "F.Cu") (net 7) (tstamp a2b7c75c-3e48-4b51-9204-ff827f13057c))
(segment (start 126.045951 73.529) (end 123.698 71.181049) (width 0.254) (layer "F.Cu") (net 7) (tstamp b14feaab-d8d3-4de6-83a9-bca76da61b7e))
(segment (start 141.732 124.968) (end 134.62 124.968) (width 0.254) (layer "F.Cu") (net 7) (tstamp c186e325-3ab7-4092-919e-e623d6080cea))
(segment (start 143.51 123.19) (end 141.732 124.968) (width 0.254) (layer "F.Cu") (net 7) (tstamp c3a72537-244a-41d1-8f87-2a4f111587ae))
(segment (start 126.902785 73.529) (end 126.045951 73.529) (width 0.254) (layer "F.Cu") (net 7) (tstamp c40904a5-a7f1-4b4d-ad48-b6924984c383))
(segment (start 123.698 69.342) (end 136.906 69.342) (width 0.254) (layer "F.Cu") (net 7) (tstamp cceddecc-f028-4501-bef5-5be265fd8e98))
(segment (start 123.698 71.181049) (end 123.698 69.342) (width 0.254) (layer "F.Cu") (net 7) (tstamp e64fd6cc-de5e-4f5a-a36d-3b2b61e8c23f))
(segment (start 131.695 92.325) (end 132.685214 92.325) (width 0.254) (layer "F.Cu") (net 8) (tstamp 0631b77d-404d-4531-af6f-4c44ccb14a46))
(segment (start 138.43 128.524) (end 138.43 129.286) (width 1) (layer "F.Cu") (net 8) (tstamp 1398ba5b-cfd6-4fa2-a26c-88c067928575))
(segment (start 140.208 82.296) (end 133.35 89.154) (width 0.254) (layer "F.Cu") (net 8) (tstamp 24957871-7c15-4531-9a99-f96e6ebca0af))
(segment (start 116.078 106.172) (end 116.078 104.145) (width 1) (layer "F.Cu") (net 8) (tstamp 4014870e-9221-4c70-abbe-31d4e6264865))
(segment (start 130.556 72.898) (end 131.187 73.529) (width 0.254) (layer "F.Cu") (net 8) (tstamp 438bd43d-22e5-4570-965f-181e769703d4))
(segment (start 126.902785 98.825) (end 125.25244 98.825) (width 0.254) (layer "F.Cu") (net 8) (tstamp 762b709b-41d3-47a7-a93c-f5f5069fce4a))
(segment (start 131.187 73.529) (end 132.685214 73.529) (width 0.254) (layer "F.Cu") (net 8) (tstamp 831bc991-45be-49b7-9a67-d2dfa8b7fc7b))
(segment (start 116.078 104.145) (end 116.083 104.14) (width 0.254) (layer "F.Cu") (net 8) (tstamp 93715133-6565-4323-a05d-b4abc30011ea))
(segment (start 125.24672 98.83072) (end 125.01744 99.06) (width 0.254) (layer "F.Cu") (net 8) (tstamp 9c5d07c8-98c2-455c-9e22-932f7f38b1f9))
(segment (start 131.318 91.948) (end 131.695 92.325) (width 0.254) (layer "F.Cu") (net 8) (tstamp b6979a24-d7cc-45a8-83be-ce60cc9b2521))
(segment (start 125.25244 98.825) (end 125.24672 98.83072) (width 0.254) (layer "F.Cu") (net 8) (tstamp bca946fd-bfb1-4a6d-ac45-76b2c4b8cc6f))
(segment (start 131.318 89.154) (end 131.318 91.948) (width 0.254) (layer "F.Cu") (net 8) (tstamp c7186cd9-6696-4d3e-a576-62a96e92a872))
(segment (start 132.685214 73.529) (end 133.981 73.529) (width 0.254) (layer "F.Cu") (net 8) (tstamp cfb928de-1e8e-45e7-8e8d-cc0c5380f4e8))
(segment (start 125.01744 99.06) (end 123.444 99.06) (width 0.254) (layer "F.Cu") (net 8) (tstamp d3feb200-b17c-49e7-ade6-0592f3e65daf))
(segment (start 125.5875 80.029) (end 126.902785 80.029) (width 0.254) (layer "F.Cu") (net 8) (tstamp e356f818-0cdc-4843-8ea3-ffe069850f9f))
(segment (start 140.208 79.756) (end 140.208 82.296) (width 0.254) (layer "F.Cu") (net 8) (tstamp e4dabbb7-d694-4f6c-98e3-3232baeae87c))
(segment (start 125.476 80.1405) (end 125.5875 80.029) (width 0.254) (layer "F.Cu") (net 8) (tstamp ef6e065c-13eb-42fc-adf6-6fd8b9c707c8))
(segment (start 133.981 73.529) (end 140.208 79.756) (width 0.254) (layer "F.Cu") (net 8) (tstamp f6921110-041c-46c2-b6eb-a407fb1aa69a))
(segment (start 133.35 89.154) (end 131.318 89.154) (width 0.254) (layer "F.Cu") (net 8) (tstamp f8a8ed7b-2a26-4c9b-8fb3-76d05a6319ea))
(via (at 130.556 72.898) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 8) (tstamp 0a9d6f41-ee3a-4f31-a7f3-049b7c339b40))
(via (at 125.476 80.1405) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 8) (tstamp 0bb60c0a-5d18-4271-a450-1bc20245f52f))
(via (at 140.97 120.142) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 1f594200-2047-4a08-ac37-86ede7da86cd))
(via (at 120.396 124.714) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 247340bd-cebc-4dd5-aca4-8f0b69de9f6d))
(via (at 120.904 69.596) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 28080727-78d7-4c33-a566-9cd66d818e73))
(via (at 120.396 122.174) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 30584b8d-c4cc-488e-8b52-7716a5ef2450))
(via (at 117.348 102.87) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 32c11fcc-0a77-4a47-ac56-b86a56b2cb6f))
(via (at 121.158 73.152) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 4280cd58-c145-48ac-b716-2c916320028a))
(via (at 126.238 70.358) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 4d10f603-e406-4c93-8862-aac8f1d98067))
(via (at 116.083 104.14) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 8) (tstamp 5f3668bc-1bb0-4e3d-8801-8ca51c4cdb5b))
(via (at 128.778 85.09) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 66b19a0b-d07c-43ff-9bd5-abe61a163306))
(via (at 131.572 82.55) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 69831a6f-9383-47b4-acbe-5e34df769c40))
(via (at 138.43 128.524) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 8) (tstamp 6bcedb3d-06c1-4765-b19b-6894e0619388))
(via (at 139.192 101.092) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 6d132433-a1c4-48cf-a5d0-7501450a0751))
(via (at 125.222 116.586) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 73852f96-067b-482b-9ff3-fd8a0f12db69))
(via (at 117.348 97.028) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 8e2705c9-318d-4614-b0d8-7cc5e04db19d))
(via (at 138.43 115.57) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 945e6f7c-020c-4836-a1c5-a6f2420083ee))
(via (at 137.668 121.666) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp 98432bf4-ceb0-461c-b8af-aa4cd85d5724))
(via (at 117.602 69.088) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 8) (tstamp a17e9c00-e8ad-4557-88a2-da1c11f52bef))
(via (at 116.083 96.012) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 8) (tstamp bb11bebf-1ed7-49e8-bb84-5808301e55d8))
(via (at 123.444 99.06) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 8) (tstamp d4d1acb0-9c60-4480-9523-0d9ed8b1f14e))
(via (at 132.842 84.836) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp d9f9cd76-2103-4a02-8698-c124fe624175))
(via (at 131.826 115.062) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp dcbb47ae-b6b4-4629-81d5-cbfbc6622528))
(via (at 133.604 119.634) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp e6afcdd3-ddae-4a78-909e-bd793b740929))
(via (at 140.208 89.662) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp e6cf9cb6-9e42-4403-8f93-a566a497c1c3))
(via (at 140.97 115.316) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp e848811a-cbcb-4269-b196-42f4edd97cc8))
(via (at 118.872 99.568) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp f2a5759c-536c-4f84-a767-75fb3abb33b3))
(via (at 132.842 87.63) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp f80106b8-6b0a-4814-a919-195e29399e2b))
(via (at 114.3 99.568) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (free) (net 8) (tstamp faa76306-d416-4116-a8be-218683f07d99))
(segment (start 116.078 106.172) (end 116.078 108.712) (width 1) (layer "B.Cu") (net 8) (tstamp 0cca9c34-12d1-4313-a31c-85d4d2814875))
(segment (start 116.083 88.387) (end 116.083 90.927) (width 1) (layer "B.Cu") (net 8) (tstamp 26c0d163-2f60-4940-985d-6db8f738c004))
(segment (start 116.078 126.492) (end 116.078 129.032) (width 1) (layer "B.Cu") (net 8) (tstamp 2910c328-8481-4e9b-a66f-ac4b61a75311))
(segment (start 116.083 78.227) (end 116.083 80.767) (width 1) (layer "B.Cu") (net 8) (tstamp 2b47ea22-0cdd-402b-9f12-e29d9ab17dd9))
(segment (start 138.43 128.524) (end 137.922 129.032) (width 1) (layer "B.Cu") (net 8) (tstamp 311ccd6f-0111-4a2d-9809-7a27abb999f6))
(segment (start 116.083 83.307) (end 116.083 85.847) (width 1) (layer "B.Cu") (net 8) (tstamp 36982d8b-4769-4fba-b51f-fb8c46627447))
(segment (start 116.078 116.332) (end 116.078 118.872) (width 1) (layer "B.Cu") (net 8) (tstamp 3a116b74-b8c3-4954-9671-7826f9c8816e))
(segment (start 116.083 73.147) (end 116.083 75.687) (width 1) (layer "B.Cu") (net 8) (tstamp 44559f25-6eab-4bf6-ad3a-43479ed12f75))
(segment (start 116.078 118.872) (end 116.078 121.412) (width 1) (layer "B.Cu") (net 8) (tstamp 45437a61-f7a2-4039-ac20-621e015e570e))
(segment (start 116.083 90.927) (end 116.083 93.467) (width 1) (layer "B.Cu") (net 8) (tstamp 45bea791-c22b-4d76-ac97-f0f46732ca60))
(segment (start 116.083 85.847) (end 116.083 88.387) (width 1) (layer "B.Cu") (net 8) (tstamp 4ee46cf6-88d1-4b63-bb31-096f484d80e8))
(segment (start 116.078 108.712) (end 116.078 111.252) (width 1) (layer "B.Cu") (net 8) (tstamp 51789069-60e3-4b3c-a459-287e093f04d9))
(segment (start 116.078 123.952) (end 116.078 126.492) (width 1) (layer "B.Cu") (net 8) (tstamp 789dc954-72d2-44f6-95e6-7df324aa56e1))
(segment (start 116.078 111.252) (end 116.078 113.792) (width 1) (layer "B.Cu") (net 8) (tstamp 8150ead2-965e-4bc7-a20e-fe20b83cb959))
(segment (start 116.078 113.792) (end 116.078 116.332) (width 1) (layer "B.Cu") (net 8) (tstamp 81e6fccf-e04f-40d6-b230-313cd7c890b3))
(segment (start 116.083 70.607) (end 116.083 73.147) (width 1) (layer "B.Cu") (net 8) (tstamp 88b4caf2-c87b-417a-9519-ec06b716aaa2))
(segment (start 116.083 75.687) (end 116.083 78.227) (width 1) (layer "B.Cu") (net 8) (tstamp c1c3a9f5-5691-4a58-8ace-2e27255d9d4b))
(segment (start 116.083 80.767) (end 116.083 83.307) (width 1) (layer "B.Cu") (net 8) (tstamp c93a7c4d-7a58-48d7-94a8-6af1efc4ea86))
(segment (start 116.083 70.607) (end 117.602 69.088) (width 1) (layer "B.Cu") (net 8) (tstamp d7095fe0-f5d0-4325-9ed4-a1fe9cb8f28c))
(segment (start 137.922 129.032) (end 116.078 129.032) (width 1) (layer "B.Cu") (net 8) (tstamp dfd601fc-4c7d-4c0d-8e82-cf4cd5c25e42))
(segment (start 116.083 93.467) (end 116.083 96.012) (width 1) (layer "B.Cu") (net 8) (tstamp e72e8268-04dd-42a0-abca-41e4e8afe870))
(segment (start 116.078 121.412) (end 116.078 123.952) (width 1) (layer "B.Cu") (net 8) (tstamp f629e0b5-f1c9-472f-b41b-cdd542acfeb1))
(segment (start 143.002 79.203741) (end 143.002 122.682) (width 0.254) (layer "F.Cu") (net 9) (tstamp 267e1bc8-cd91-4ba6-bd30-378495d3930d))
(segment (start 129.54 124.206) (end 128.342 125.404) (width 0.254) (layer "F.Cu") (net 9) (tstamp 47b2f244-ea9c-4749-bca5-e9b80a27bf66))
(segment (start 143.002 122.682) (end 141.478 124.206) (width 0.254) (layer "F.Cu") (net 9) (tstamp 4af176cb-addc-446f-8e86-37067fa913eb))
(segment (start 136.398 72.599741) (end 143.002 79.203741) (width 0.254) (layer "F.Cu") (net 9) (tstamp 6b2b702d-056c-4b9c-854d-3de338cc060b))
(segment (start 141.478 124.206) (end 129.54 124.206) (width 0.254) (layer "F.Cu") (net 9) (tstamp 6f089e59-f9d4-417e-911f-0bba1a02b04b))
(segment (start 136.144 69.85) (end 136.398 70.104) (width 0.254) (layer "F.Cu") (net 9) (tstamp 78254756-c4b6-4c43-b6d0-fc7996f52912))
(segment (start 126.902785 72.229) (end 126.907 72.229) (width 0.254) (layer "F.Cu") (net 9) (tstamp 7b14f5f0-da52-4bb0-b4c4-6abd43e53d12))
(segment (start 126.907 72.229) (end 129.286 69.85) (width 0.254) (layer "F.Cu") (net 9) (tstamp 87e02834-c0fc-4347-94d5-51ac86424b29))
(segment (start 129.286 69.85) (end 136.144 69.85) (width 0.254) (layer "F.Cu") (net 9) (tstamp 9575ba7d-075a-4b09-8a52-274accb25f6d))
(segment (start 136.398 70.104) (end 136.398 72.599741) (width 0.254) (layer "F.Cu") (net 9) (tstamp 9eaeb494-f6f6-4fcb-8638-d0bf023244a4))
(segment (start 128.342 125.404) (end 128.342 128.726) (width 0.254) (layer "F.Cu") (net 9) (tstamp fcea01ef-5488-4fef-b499-146922297c4b))
(segment (start 130.842 126.46) (end 130.842 128.726) (width 0.254) (layer "F.Cu") (net 10) (tstamp 04bfd809-cd53-4a21-bbca-275c9c4b00f6))
(segment (start 135.382 70.358) (end 135.636 70.612) (width 0.254) (layer "F.Cu") (net 10) (tstamp 3edda500-3dc8-4767-aa08-af9ccbf01a67))
(segment (start 142.494 121.92) (end 140.9695 123.4445) (width 0.254) (layer "F.Cu") (net 10) (tstamp 439d08ed-6635-4270-86b8-4aa41f7a39af))
(segment (start 132.08 125.222) (end 130.842 126.46) (width 0.254) (layer "F.Cu") (net 10) (tstamp 52adaacb-780e-4b4c-a1db-dc822b0feeb0))
(segment (start 142.494 79.413483) (end 142.494 121.92) (width 0.254) (layer "F.Cu") (net 10) (tstamp 53d619f6-cc03-4d10-b455-f9a25db1e289))
(segment (start 135.636 72.555483) (end 142.494 79.413483) (width 0.254) (layer "F.Cu") (net 10) (tstamp 6dba4446-fc87-49a6-b06b-1a4311c0f100))
(segment (start 130.302 70.358) (end 135.382 70.358) (width 0.254) (layer "F.Cu") (net 10) (tstamp 8540ddbe-e88d-4be2-b916-5285ff6d93cb))
(segment (start 127.781 72.879) (end 130.302 70.358) (width 0.254) (layer "F.Cu") (net 10) (tstamp c4cedd07-583f-423f-aed0-147aa219b342))
(segment (start 135.636 70.612) (end 135.636 72.555483) (width 0.254) (layer "F.Cu") (net 10) (tstamp cbbd4587-9a6f-4c13-98b0-6f14d54f9f55))
(segment (start 140.9695 123.4445) (end 132.08 123.4445) (width 0.254) (layer "F.Cu") (net 10) (tstamp d9e36ca2-cee9-47e9-825b-2059d76f8b32))
(segment (start 126.902785 72.879) (end 127.781 72.879) (width 0.254) (layer "F.Cu") (net 10) (tstamp d9f39202-5650-4ad4-b202-19dbc6b848a2))
(via (at 132.08 123.4445) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 10) (tstamp 1caf7204-0935-4201-90d0-766555780b65))
(via (at 132.08 125.222) (size 0.762) (drill 0.381) (layers "F.Cu" "B.Cu") (net 10) (tstamp 6144f8b0-aa76-447a-876b-80a26b78a92f))
(segment (start 132.08 123.4445) (end 132.08 125.222) (width 0.254) (layer "B.Cu") (net 10) (tstamp 39ca7d8d-4cec-4203-8178-114c1c454723))
(segment (start 126.902785 92.975) (end 126.045951 92.975) (width 0.254) (layer "F.Cu") (net 11) (tstamp 3486b4bd-7680-4452-af75-42107fc2ae1e))
(segment (start 124.206 92.202) (end 124.206 91.694) (width 0.254) (layer "F.Cu") (net 11) (tstamp 3f275c26-0725-42fd-8368-cf8b37758523))
(segment (start 138.176 106.172) (end 138.442 106.438) (width 0.254) (layer "F.Cu") (net 11) (tstamp 6580b403-7007-4176-8d82-2ce8be2055eb))
(segment (start 124.206 89.916) (end 125.73 88.392) (width 0.254) (layer "F.Cu") (net 11) (tstamp 6dd2ca4b-8fc4-4423-9550-a01652d8c196))
(segment (start 138.442 106.438) (end 138.442 109.626) (width 0.254) (layer "F.Cu") (net 11) (tstamp 79b12ce8-9c60-4882-ac62-4be70b176038))
(segment (start 124.206 91.694) (end 124.206 89.916) (width 0.254) (layer "F.Cu") (net 11) (tstamp 80716510-cb9f-4f16-8fb3-3662a5047584))
(segment (start 136.144 106.172) (end 138.176 106.172) (width 0.254) (layer "F.Cu") (net 11) (tstamp 892738fb-44f0-499f-a082-9dd0893d31a6))
(segment (start 126.045951 92.975) (end 126.034951 92.964) (width 0.254) (layer "F.Cu") (net 11) (tstamp 94d1db44-5ccd-4b99-a0cc-90fea7c30983))
(segment (start 128.7785 88.392) (end 129.2865 88.9) (width 0.254) (layer "F.Cu") (net 11) (tstamp aa0709cc-daa8-435b-b79d-b58ef9f3fae6))
(segment (start 125.73 88.392) (end 128.7785 88.392) (width 0.254) (layer "F.Cu") (net 11) (tstamp b768dbee-6f3e-4c40-906e-fbb682f09991))
(segment (start 124.968 92.964) (end 124.206 92.202) (width 0.254) (layer "F.Cu") (net 11) (tstamp e4a72af5-1e73-4ec7-a883-1a56175b13e6))
(segment (start 126.034951 92.964) (end 124.968 92.964) (width 0.254) (layer "F.Cu") (net 11) (tstamp ffed489a-7b97-43b2-9bfc-41721d3a12e4))