-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsegapad2usb.kicad_pcb
19395 lines (19369 loc) · 673 KB
/
segapad2usb.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "segapad2usb")
(rev "0.6")
(company "[email protected]")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 "tinyjoytestX_gerber/")
)
)
(net 0 "")
(net 1 "VCC")
(net 2 "GND")
(net 3 "Net-(D1-A)")
(net 4 "Net-(D2-A)")
(net 5 "unconnected-(U1-Digital1{slash}PD3-Pad1)")
(net 6 "Net-(D3-A)")
(net 7 "unconnected-(U1-Digital4{slash}PD4-Pad7)")
(net 8 "/RST")
(net 9 "Net-(SW2-A)")
(net 10 "/PF4")
(net 11 "unconnected-(U1-Digital0{slash}PD2-Pad2)")
(net 12 "/PF5")
(net 13 "/PF6")
(net 14 "/PF7")
(net 15 "/DB9_PIN_1")
(net 16 "/DB9_PIN_2")
(net 17 "/DB9_PIN_3")
(net 18 "/DB9_PIN_4")
(net 19 "/DB9_PIN_6")
(net 20 "/DB9_SELECT_PIN")
(net 21 "/DB9_PIN_9")
(net 22 "unconnected-(U1-RAW-Pad24)")
(net 23 "/MODELED")
(net 24 "/CTL-LED")
(net 25 "/STATUSLED")
(footprint "MountingHole:MountingHole_3.5mm" (layer "F.Cu")
(tstamp 13468783-e448-4b08-a913-3e0c3b7c1ed5)
(at 65 51)
(descr "Mounting Hole 3.5mm, no annular")
(tags "mounting hole 3.5mm no annular")
(property "Sheetfile" "segapad2usb.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/4ce9abb3-2521-4ceb-b8c6-61fcd325a70a")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H2" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83861ce3-aa1c-405b-b184-9dcbde54faf8)
)
(fp_text value "MountingHole" (at 0 4.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bffb2415-85c4-45eb-81bb-52e0ab8fde9b)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb77b471-111a-4bb6-928f-bfa03202dfad)
)
(fp_circle (center 0 0) (end 3.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 837600ad-c045-4c15-8413-608182c19704))
(fp_circle (center 0 0) (end 3.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 6d139999-f084-430b-a749-ee5ce431647b))
(pad "" np_thru_hole circle (at 0 0) (size 3.5 3.5) (drill 3.5) (layers "*.Cu" "*.Mask") (tstamp 95974869-deb9-443b-985a-751f55cc1158))
)
(footprint "misc:DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_OVAL_MountingHolesOffset11.32mm" locked (layer "F.Cu")
(tstamp 36f9c4b4-1a2c-4527-93ee-152fe1f020fd)
(at 81.96 118)
(descr "9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf")
(tags "9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 25mm")
(property "Sheetfile" "segapad2usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "9-pin male D-SUB connector")
(property "ki_keywords" "connector male D-SUB")
(path "/9918281a-93fd-43b9-ac1e-dc991db6a977")
(attr through_hole)
(fp_text reference "J1" (at 5.54 -2.8) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 871e3758-71db-4568-8989-53c16320d603)
)
(fp_text value "DB9_MALE_SEGA" (at 5.54 20.64) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 405a165a-9146-4fec-a48f-f3667e3f0f11)
)
(fp_text user "${REFERENCE}" (at 5.54 16.14) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 949d7bd6-3465-4fcf-aa71-ac610ca2c1e2)
)
(fp_line (start -9.945 -1.86) (end 21.025 -1.86)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb2c5656-4c69-496a-b877-4eb72957acde))
(fp_line (start -9.945 12.68) (end -9.945 -1.86)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 187b936c-3a99-4a12-aca8-6ae0a545e76c))
(fp_line (start -0.25 -2.754338) (end 0.25 -2.754338)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88f7be21-724c-41aa-8da1-d1ecdec276e1))
(fp_line (start 0 -2.321325) (end -0.25 -2.754338)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 50e0d67c-49e2-4935-960f-0e9ad9e95b55))
(fp_line (start 0.25 -2.754338) (end 0 -2.321325)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d173160-8398-46bf-a157-40e3be56be2c))
(fp_line (start 21.025 -1.86) (end 21.025 12.68)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 520caadb-ae27-4555-acb7-952d5d9022a7))
(fp_line (start -10.4 -2.35) (end -10.4 19.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a279abb1-3b1f-4853-9595-073dfc99bcd7))
(fp_line (start -10.4 19.65) (end 21.5 19.65)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bd14f847-fc64-425e-af7a-f575825ceb98))
(fp_line (start 21.5 -2.35) (end -10.4 -2.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8c0ccbce-ebfa-453e-afc0-75652e847066))
(fp_line (start 21.5 19.65) (end 21.5 -2.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94aa6c1f-ebae-44a1-a471-a0f3e3ae52ee))
(fp_line (start -9.885 -1.8) (end -9.885 12.74)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a05eca6-f0ea-4915-9478-537af0910812))
(fp_line (start -9.885 12.74) (end -9.885 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6622ddc5-2186-4b00-a4a8-e40f68f2b6d8))
(fp_line (start -9.885 12.74) (end 20.965 12.74)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 24d4d0f5-4c59-41ac-8a5d-b146d86818c3))
(fp_line (start -9.885 13.14) (end 20.965 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a60dddb0-a835-4529-ab94-36fc3c6779e6))
(fp_line (start -9.46 13.14) (end -9.46 18.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f00be80a-d168-4f3d-a747-ae429ad70bbc))
(fp_line (start -9.46 18.14) (end -4.46 18.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b9032ab-2743-48ae-bb75-c73eac52dd59))
(fp_line (start -8.56 12.74) (end -8.56 1.42)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 684d76c5-1200-4700-a74a-73fb2db54551))
(fp_line (start -5.36 12.74) (end -5.36 1.42)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba25a901-883d-48d2-b737-91383dadcee6))
(fp_line (start -4.46 13.14) (end -9.46 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 18377eba-5927-4aa5-8fc5-c108da9d35f1))
(fp_line (start -4.46 18.14) (end -4.46 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 99fc5328-1f6d-41aa-a74e-c135c153b04b))
(fp_line (start -2.61 13.14) (end -2.61 19.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 407e65c1-9d7d-4462-babc-6cdc333a406a))
(fp_line (start -2.61 19.14) (end 13.69 19.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0c96d2f-1b2a-42fb-9b8b-ed3685fe79c8))
(fp_line (start 13.69 13.14) (end -2.61 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8aa6581d-9be6-4037-8601-ed7dc0e664b1))
(fp_line (start 13.69 19.14) (end 13.69 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a5d0ac7-0d48-4178-aec0-d559d2597719))
(fp_line (start 15.54 13.14) (end 15.54 18.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2ea3e24-5c82-46c1-a0e2-dd78fe53e4fa))
(fp_line (start 15.54 18.14) (end 20.54 18.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96e2abc8-b734-401c-9f52-7f3c72284afa))
(fp_line (start 16.44 12.74) (end 16.44 1.42)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b7792e7-4d10-4de8-a64e-b59d93be16cd))
(fp_line (start 19.64 12.74) (end 19.64 1.42)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2bcc6aa1-eb7b-42fc-8bb5-d389293df9ad))
(fp_line (start 20.54 13.14) (end 15.54 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a49a364-f659-4e8a-93f1-e0953c35dfad))
(fp_line (start 20.54 18.14) (end 20.54 13.14)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c32355d-31b4-424a-8b4e-6d3bb8e84ef2))
(fp_line (start 20.965 -1.8) (end -9.885 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 583a564e-0e02-4ee4-ae49-e21ccf852fb3))
(fp_line (start 20.965 12.74) (end -9.885 12.74)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11d9b280-7bc8-46de-9813-bd02bd7eca2e))
(fp_line (start 20.965 12.74) (end 20.965 -1.8)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp be675321-acbb-45c6-b59e-d368159beaf9))
(fp_line (start 20.965 13.14) (end 20.965 12.74)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11fbcc18-f8ff-4bc9-ac5a-f65d99182f57))
(fp_arc (start -8.56 1.42) (mid -6.96 -0.18) (end -5.36 1.42)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db90c788-8aed-4622-b20d-a103c1e2d041))
(fp_arc (start 16.44 1.42) (mid 18.04 -0.18) (end 19.64 1.42)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2f4ec02-09ad-450d-afe5-d7003552b7d9))
(pad "0" thru_hole circle locked (at -6.96 1.42) (size 4 4) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 880dac85-88db-402b-bc2d-bfd6c93487e3))
(pad "0" thru_hole circle locked (at 18.04 1.42) (size 4 4) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 6f03539b-fb6e-447b-93d9-d33dc976aac2))
(pad "1" thru_hole roundrect locked (at 0 0) (size 1.6 2.3) (drill 1 (offset 0 -0.35)) (layers "*.Cu" "*.Mask") (roundrect_rratio 0)
(chamfer_ratio 0.2) (chamfer top_left)
(net 15 "/DB9_PIN_1") (pinfunction "1") (pintype "passive") (tstamp 9e4a7d9f-ae5b-47b0-8d78-47964a014794))
(pad "2" thru_hole oval locked (at 2.77 0) (size 1.6 2.3) (drill 1 (offset 0 -0.35)) (layers "*.Cu" "*.Mask")
(net 16 "/DB9_PIN_2") (pinfunction "2") (pintype "passive") (tstamp e6a5f89b-fb01-45fc-b8ba-08eb1bf1942b))
(pad "3" thru_hole oval locked (at 5.54 0) (size 1.6 2.3) (drill 1 (offset 0 -0.35)) (layers "*.Cu" "*.Mask")
(net 17 "/DB9_PIN_3") (pinfunction "3") (pintype "passive") (tstamp 586d2173-fd4c-4c8c-9737-196f127e549c))
(pad "4" thru_hole oval locked (at 8.31 0) (size 1.6 2.3) (drill 1 (offset 0 -0.35)) (layers "*.Cu" "*.Mask")
(net 18 "/DB9_PIN_4") (pinfunction "4") (pintype "passive") (tstamp 4e01c53b-bfc8-49d7-a630-f53ef3fb908e))
(pad "5" thru_hole oval locked (at 11.08 0) (size 1.6 2.3) (drill 1 (offset 0 -0.35)) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pinfunction "5") (pintype "passive") (tstamp 495d5c4e-e8fc-4c58-ac10-43968b920796))
(pad "6" thru_hole oval locked (at 1.385 2.84) (size 1.6 2.3) (drill 1 (offset 0 0.35)) (layers "*.Cu" "*.Mask")
(net 19 "/DB9_PIN_6") (pinfunction "6") (pintype "passive") (tstamp 3d578c4b-4330-44c4-bc84-1366a00ce773))
(pad "7" thru_hole oval locked (at 4.155 2.84) (size 1.6 2.3) (drill 1 (offset 0 0.35)) (layers "*.Cu" "*.Mask")
(net 20 "/DB9_SELECT_PIN") (pinfunction "7") (pintype "passive") (tstamp d76bd10b-d6b9-4054-a77b-87332972fdcf))
(pad "8" thru_hole oval locked (at 6.925 2.84) (size 1.6 2.3) (drill 1 (offset 0 0.35)) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "8") (pintype "passive") (tstamp 1b198e29-d3a1-481e-b52c-e91323b4247f))
(pad "9" thru_hole oval locked (at 9.695 2.84) (size 1.6 2.3) (drill 1 (offset 0 0.35)) (layers "*.Cu" "*.Mask")
(net 21 "/DB9_PIN_9") (pinfunction "9") (pintype "passive") (tstamp 53ab331d-c389-4d4d-8f7a-d1c9316616c3))
(model "${KICAD6_3DMODEL_DIR}/Connector_Dsub.3dshapes/DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "misc:LED_D3.0mm_Oval" (layer "F.Cu")
(tstamp 3a0b37e9-76d6-4855-9c72-2d378ef23e7f)
(at 66 96)
(descr "LED, diameter 3.0mm, 2 pins")
(tags "LED diameter 3.0mm 2 pins")
(property "Sheetfile" "segapad2usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Light emitting diode")
(property "ki_keywords" "LED diode")
(path "/d6cf55db-596b-4e8b-a9fa-8b9a37026564")
(attr through_hole)
(fp_text reference "D2" (at 1.27 -2.96) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c429c87-ec9e-42ba-8ff5-d40eb809dd2a)
)
(fp_text value "6BTN MODE" (at 1.27 4) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.3) bold))
(tstamp c41adc74-6054-4e75-898f-a99d2958927e)
)
(fp_line (start -0.29 -1.236) (end -0.29 -1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a8b53ae-5173-4379-aeff-4cec542ec729))
(fp_line (start -0.29 1.08) (end -0.29 1.236)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5fca1a3-98ac-4fbd-aa25-ca1ea9d45bbf))
(fp_arc (start -0.29 -1.235516) (mid 1.366487 -1.987659) (end 2.942335 -1.078608)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b11317c-1a4e-49db-8913-2bc82130c8f2))
(fp_arc (start 0.229039 -1.08) (mid 1.270117 -1.5) (end 2.31113 -1.079837)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b2791f5-bd2d-4e81-ad42-44f30ba454ee))
(fp_arc (start 2.31113 1.079837) (mid 1.270117 1.5) (end 0.229039 1.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2aec8a19-ab7c-4691-b776-cd371963f1ec))
(fp_arc (start 2.942335 1.078608) (mid 1.366487 1.987659) (end -0.29 1.235516)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bcc1b360-6f70-4782-8d18-e95c273be1c8))
(fp_line (start -1.75 -2.25) (end -1.75 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9d3058c-1968-4123-b12d-857fa58e6706))
(fp_line (start -1.75 2.25) (end 4.25 2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 009e7abb-72ac-44a7-9bf0-26cb93a8f246))
(fp_line (start 4.25 -2.25) (end -1.75 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab30777b-1f4f-41ae-8820-5521f381b6b4))
(fp_line (start 4.25 2.25) (end 4.25 -2.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 713b958b-ccef-46e3-b5c2-0012f04c4eab))
(fp_line (start -0.23 -1.16619) (end -0.23 1.16619)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3657e4c5-bc81-405c-a96a-4630446cb403))
(fp_arc (start -0.23 -1.16619) (mid 3.17 0.000452) (end -0.230555 1.165476)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c759c7f-b02b-480c-ad3f-f613ab8527b4))
(fp_circle (center 1.27 0) (end 2.77 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 0f3aabd3-c03b-406b-8213-6e4c428f7934))
(pad "1" thru_hole rect (at 0 0 90) (size 1.8 2.3) (drill 0.9 (offset 0 -0.25)) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "K") (pintype "passive") (tstamp e654fb4b-bfb0-4575-8bef-773ea64e4498))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.8 2.3) (drill 0.9 (offset 0 0.25)) (layers "*.Cu" "*.Mask")
(net 4 "Net-(D2-A)") (pinfunction "A") (pintype "passive") (tstamp bd35e992-d2f1-4f03-a1b9-3f11a1918fe6))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D3.0mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.5mm" (layer "F.Cu")
(tstamp 45f3455f-6fce-4b59-a9df-7e2d2f9e20b6)
(at 65 126)
(descr "Mounting Hole 3.5mm, no annular")
(tags "mounting hole 3.5mm no annular")
(property "Sheetfile" "segapad2usb.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/f40a861e-ec28-4648-a2f4-171864b6cf7b")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H4" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 691615b1-4623-48ec-9b54-78acdb196bcd)
)
(fp_text value "MountingHole" (at 0 4.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1db8ea10-eff0-4c85-8678-5b37236e90c6)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f92f10e-9141-4053-83ea-ed85b694a366)
)
(fp_circle (center 0 0) (end 3.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 10798e43-b044-4aa3-a3e8-4607a63473f0))
(fp_circle (center 0 0) (end 3.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 6ab82567-3bc9-4ee5-ab2b-23ed480a1a29))
(pad "" np_thru_hole circle (at 0 0) (size 3.5 3.5) (drill 3.5) (layers "*.Cu" "*.Mask") (tstamp 4426f367-ed94-4bb4-9622-b1c844cf33cf))
)
(footprint "Package_DIP:DIP-24_W15.24mm_Socket_LongPads" locked (layer "F.Cu")
(tstamp 548a2e77-2ffc-46dd-bf93-330a6043cafd)
(at 79.9 47.9)
(descr "24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads")
(property "Sheetfile" "segapad2usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "16MHz, 32kB Flash, 1.25kB SRAM, 512B EEPROM, USB 2.0, DIP-24")
(property "ki_keywords" "AVR 8bit Microcontroller MegaAVR USB")
(path "/e0c741b3-5aaf-445d-8b5a-c12379c61cee")
(attr through_hole)
(fp_text reference "U1" (at 7.62 0.6) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 28c89d2c-a804-444b-90ac-de09a4857ef3)
)
(fp_text value "Arduino_Pro_Micro" (at 7.62 30.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb2b2fef-8625-44d6-8bc7-ca978ab7cd13)
)
(fp_text user "${REFERENCE}" (at 7.62 13.97) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6815a27f-1180-4b18-a110-0353536a55ec)
)
(fp_line (start -1.44 -1.39) (end -1.44 29.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d556f56c-d748-4d5f-94d9-134c56203bbd))
(fp_line (start -1.44 29.33) (end 16.68 29.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7a1b21a6-9206-4314-8804-8fb32c9664e8))
(fp_line (start 1.56 -1.33) (end 1.56 29.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1acdfd3-5276-4957-afe3-bbdcb182d191))
(fp_line (start 1.56 29.27) (end 13.68 29.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de8e636a-9d74-4a94-ad9b-2b2e68a215d6))
(fp_line (start 6.62 -1.33) (end 1.56 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3eb243c-ceba-47a0-bc89-7c4f2be945ad))
(fp_line (start 13.68 -1.33) (end 8.62 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff28f9ee-6847-4d3a-a258-c706148d5418))
(fp_line (start 13.68 29.27) (end 13.68 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89155940-1d23-4f74-87e7-5a085f8b00aa))
(fp_line (start 16.68 -1.39) (end -1.44 -1.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68760367-2cc7-43b0-bebf-78c07f175054))
(fp_line (start 16.68 29.33) (end 16.68 -1.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2300ea88-1b64-4a3d-9e51-6fe0d8391959))
(fp_arc (start 8.62 -1.33) (mid 7.62 -0.33) (end 6.62 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc186303-6059-4879-ba84-19c18936e5f1))
(fp_line (start -1.55 -1.6) (end -1.55 29.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4e2a2fa4-1019-45bc-8ea8-050795d8c792))
(fp_line (start -1.55 29.55) (end 16.8 29.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 18d9c5d2-e924-458a-ba41-c3f3b488f321))
(fp_line (start 16.8 -1.6) (end -1.55 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fe14ae2d-6449-4b95-8575-a5f800a3c336))
(fp_line (start 16.8 29.55) (end 16.8 -1.6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8813d356-6b8d-4b4e-a208-aa1613223bc5))
(fp_line (start -1.27 -1.33) (end -1.27 29.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 37d9b9c9-6f14-44c0-8f5c-ee68643e67b5))
(fp_line (start -1.27 29.27) (end 16.51 29.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 370beeac-95db-4e6d-a7dc-876ce085cdeb))
(fp_line (start 0.255 -0.27) (end 1.255 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ca97455-dc51-4466-adaf-1e7771303a13))
(fp_line (start 0.255 29.21) (end 0.255 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 679c8063-768a-42e0-ae82-c56fff2fe365))
(fp_line (start 1.255 -1.27) (end 14.985 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5fdb3d6-ee93-463f-ac47-082be172401a))
(fp_line (start 14.985 -1.27) (end 14.985 29.21)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 893aa4d3-2600-40a2-b9a9-e375dc2dcbb4))
(fp_line (start 14.985 29.21) (end 0.255 29.21)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 29134f6f-9874-4a4b-97e4-55f5ea94f22b))
(fp_line (start 16.51 -1.33) (end -1.27 -1.33)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 70057663-b8cb-4a9e-9e45-08c7e61a6872))
(fp_line (start 16.51 29.27) (end 16.51 -1.33)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5d0ff7c-769e-4dee-85dd-b81cadfac8df))
(pad "1" thru_hole rect locked (at 0 0) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 5 "unconnected-(U1-Digital1{slash}PD3-Pad1)") (pinfunction "Digital1/PD3") (pintype "bidirectional+no_connect") (tstamp b01d4151-9a90-422f-b561-6884200ae1df))
(pad "2" thru_hole oval locked (at 0 2.54) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 11 "unconnected-(U1-Digital0{slash}PD2-Pad2)") (pinfunction "Digital0/PD2") (pintype "bidirectional+no_connect") (tstamp 1f89dce4-e4ab-458f-96fa-2ad1f90216a4))
(pad "3" thru_hole oval locked (at 0 5.08) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp cbf6d9cb-a212-4e46-9b5c-5eef107bc9f1))
(pad "4" thru_hole oval locked (at 0 7.62) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5d194fc9-6090-4aa4-a274-b2bcf43c599f))
(pad "5" thru_hole oval locked (at 0 10.16) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 23 "/MODELED") (pinfunction "Digital2/PD1") (pintype "bidirectional") (tstamp 21053746-64f2-4e43-917e-7903f2cd8fa9))
(pad "6" thru_hole oval locked (at 0 12.7) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 24 "/CTL-LED") (pinfunction "Digital3/PD0") (pintype "bidirectional") (tstamp 6b77f66e-ffec-497c-8df7-b17f55bd99c0))
(pad "7" thru_hole oval locked (at 0 15.24) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 7 "unconnected-(U1-Digital4{slash}PD4-Pad7)") (pinfunction "Digital4/PD4") (pintype "bidirectional+no_connect") (tstamp 1c02bc0d-8f98-4e4a-b29a-db0a7f9dedb7))
(pad "8" thru_hole oval locked (at 0 17.78) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 9 "Net-(SW2-A)") (pinfunction "Digital5/PC6") (pintype "bidirectional") (tstamp 930ea519-5677-4ec0-89d7-af2a194cfd91))
(pad "9" thru_hole oval locked (at 0 20.32) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 20 "/DB9_SELECT_PIN") (pinfunction "Digital6/PD7") (pintype "bidirectional") (tstamp af3f9714-c914-4526-b96d-af7f6e33f9b0))
(pad "10" thru_hole oval locked (at 0 22.86) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 25 "/STATUSLED") (pinfunction "Digital7/PE6") (pintype "bidirectional") (tstamp abd3fa20-d1f6-4735-bbaf-0533eeb5bae7))
(pad "11" thru_hole oval locked (at 0 25.4) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 18 "/DB9_PIN_4") (pinfunction "Digital8/PB4") (pintype "bidirectional") (tstamp cee0291e-f933-4769-92c0-5c43f352b808))
(pad "12" thru_hole oval locked (at 0 27.94) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 19 "/DB9_PIN_6") (pinfunction "Digital9/PB5") (pintype "bidirectional") (tstamp 417c3867-0207-4fbb-bc82-8748a663556b))
(pad "13" thru_hole oval locked (at 15.24 27.94) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 21 "/DB9_PIN_9") (pinfunction "Digital10/PB6") (pintype "bidirectional") (tstamp d4ca1851-f33b-43a7-bd9e-93dfc23f72fa))
(pad "14" thru_hole oval locked (at 15.24 25.4) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 16 "/DB9_PIN_2") (pinfunction "Digital16/PB2") (pintype "bidirectional") (tstamp 3cea20cf-8025-452d-a1fa-c38dc6c0832c))
(pad "15" thru_hole oval locked (at 15.24 22.86) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 17 "/DB9_PIN_3") (pinfunction "Digital14/PB3") (pintype "bidirectional") (tstamp c84f721a-b555-4c88-98a7-75e0bb147611))
(pad "16" thru_hole oval locked (at 15.24 20.32) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 15 "/DB9_PIN_1") (pinfunction "Digital15/PB1") (pintype "bidirectional") (tstamp 2fa82038-1b82-4461-b425-aa5170a56624))
(pad "17" thru_hole oval locked (at 15.24 17.78) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 14 "/PF7") (pinfunction "Digital18/PF7") (pintype "bidirectional") (tstamp 85f47be3-ca09-4a70-9491-e8b675d2c255))
(pad "18" thru_hole oval locked (at 15.24 15.24) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 13 "/PF6") (pinfunction "Digital19/PF6") (pintype "bidirectional") (tstamp 36f7ad1b-79ca-496d-865e-782081085b6f))
(pad "19" thru_hole oval locked (at 15.24 12.7) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 12 "/PF5") (pinfunction "Digital20/PF5") (pintype "bidirectional") (tstamp 2de85eaf-2b47-4735-aa59-ff174d2f97d8))
(pad "20" thru_hole oval locked (at 15.24 10.16) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 10 "/PF4") (pinfunction "Digital21/PF4") (pintype "bidirectional") (tstamp fb5a625a-deee-48c3-b841-42a74498c6c5))
(pad "21" thru_hole oval locked (at 15.24 7.62) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 3c473bd1-fe11-46cd-8f1d-17f4d2bba1a5))
(pad "22" thru_hole oval locked (at 15.24 5.08) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 8 "/RST") (pinfunction "~{RESET}") (pintype "input") (tstamp b172d28a-d8dd-421d-8517-482209ec99e0))
(pad "23" thru_hole oval locked (at 15.24 2.54) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 2ab6424f-d2ff-49cc-bd21-77d9b7e89005))
(pad "24" thru_hole oval locked (at 15.24 0) (size 2.4 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 22 "unconnected-(U1-RAW-Pad24)") (pinfunction "RAW") (pintype "power_in+no_connect") (tstamp a53d1fac-8d18-4bcb-bc23-f60e6a052275))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-24_W15.24mm_Socket.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Button_Switch_THT:SW_PUSH_6mm_H4.3mm" (layer "F.Cu")
(tstamp 68efa574-d1c2-4457-b064-e6852530d0d9)
(at 84.3 82.4)
(descr "tactile push button, 6x6mm e.g. PHAP33xx series, height=4.3mm")
(tags "tact sw push 6mm")
(property "Sheetfile" "segapad2usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Single Pole Single Throw (SPST) switch")
(property "ki_keywords" "switch lever")
(path "/f69b976f-d05f-4436-b18a-b3744c312c4c")
(attr through_hole)
(fp_text reference "SW2" (at 3.25 2.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7c98a60-58ad-4d14-b52e-e504dcd92208)
)
(fp_text value "HOT KEY" (at 3.25 7.65) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.3) bold))
(tstamp 3562b128-e656-41dc-9b66-c49a96460b99)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a624d55b-3d7a-4ca8-9409-92a0e11a56cb)
)
(fp_line (start -0.25 1.5) (end -0.25 3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b03217e-164d-4a8a-abde-93bd440e614b))
(fp_line (start 1 5.5) (end 5.5 5.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb77feef-b172-4e0d-a233-d687654d1b93))
(fp_line (start 5.5 -1) (end 1 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a68c283d-16b3-48a8-9104-e114d033a115))
(fp_line (start 6.75 3) (end 6.75 1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ab0a8fe-555b-4a8f-a07e-297cd3fbd8e3))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 78b383cc-bf81-47e5-af78-26806546b3ae))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 217a7e2f-839e-4e01-8a37-24c4402e97fd))
(fp_line (start -1.5 5.75) (end -1.5 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab452690-c0d1-4abc-9907-5c33a80f25ed))
(fp_line (start -1.5 5.75) (end -1.5 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8f2bd1c4-888e-4614-8871-7e6cefc916f5))
(fp_line (start -1.5 6) (end -1.25 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed8a9a4a-bd8d-4163-b8fa-fd48c88e0539))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp efafaea3-b013-40a7-bc4c-46eee555ead8))
(fp_line (start 7.75 -1.5) (end 8 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2fc3221a-d738-44da-8fe1-bbb486c6b42c))
(fp_line (start 7.75 6) (end -1.25 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 55db756a-149b-42d2-b407-35aa8e97cb8a))
(fp_line (start 7.75 6) (end 8 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ba58861-b09e-455a-8000-9d12570ca969))
(fp_line (start 8 -1.5) (end 8 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d5300782-f356-44ba-a9c9-b25dd7aae3b4))
(fp_line (start 8 -1.25) (end 8 5.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp af33bcc8-5411-44ab-860a-349ff6204195))
(fp_line (start 8 6) (end 8 5.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5d3a83a5-649b-4a47-8d76-4db64987aa93))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d8e67937-852f-4d19-8dbb-9879350711b5))
(fp_line (start 0.25 5.25) (end 0.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 068b33f2-f727-4ea5-b767-dd582b049a04))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94a88d2f-6dfc-4a60-9a64-9462c82aa126))
(fp_line (start 6.25 -0.75) (end 6.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 791b4414-3c28-474b-bf52-f19d71426578))
(fp_line (start 6.25 5.25) (end 0.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a38a411c-3edb-4412-9ea1-0827ecd4e121))
(fp_circle (center 3.25 2.25) (end 1.25 2.5)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 6c71107a-6129-4075-b43d-20d6a942b82a))
(pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 9 "Net-(SW2-A)") (pinfunction "A") (pintype "passive") (tstamp a4425ac8-975b-47a7-abd4-e21b2fab30d7))
(pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(pinfunction "A") (pintype "passive") (tstamp b49c4d9b-5591-426d-9d02-29aaf704d11d))
(pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "B") (pintype "passive") (tstamp b74c884e-76d7-4734-a6dd-711fe10ce24e))
(pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "B") (pintype "passive") (tstamp 5cfd1e41-b85c-45af-af0c-c17b0f19bc36))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm_H4.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.5mm" (layer "F.Cu")
(tstamp 796d949a-5653-47f0-bd08-a5483f414072)
(at 110 126)
(descr "Mounting Hole 3.5mm, no annular")
(tags "mounting hole 3.5mm no annular")
(property "Sheetfile" "segapad2usb.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole without connection")
(property "ki_keywords" "mounting hole")
(path "/534e3cfa-cd49-4818-a56e-5fd77fd8d53d")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "H3" (at 0 -4.5) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5a595a0c-7778-4315-8cef-d4f421506610)
)
(fp_text value "MountingHole" (at 0 4.5) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b6a456d1-245a-4ba4-990f-0887c1b54fdd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4e4f27e-09ba-4bb5-95c8-bbfbf8815867)
)
(fp_circle (center 0 0) (end 3.5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 0341b7c6-ffeb-42e8-a548-0d15d9a7be74))
(fp_circle (center 0 0) (end 3.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 03d53c8e-a7ca-46db-b5cb-ab38414a0e06))
(pad "" np_thru_hole circle (at 0 0) (size 3.5 3.5) (drill 3.5) (layers "*.Cu" "*.Mask") (tstamp 17bcb9d8-575f-4458-b643-bf8104df4ad1))
)
(footprint "Button_Switch_THT:SW_PUSH_6mm_H4.3mm" locked (layer "F.Cu")
(tstamp 80ec4c3d-d86e-42ad-8396-da418e58b078)
(at 105.35 60.75)
(descr "tactile push button, 6x6mm e.g. PHAP33xx series, height=4.3mm")
(tags "tact sw push 6mm")
(property "Sheetfile" "segapad2usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Single Pole Single Throw (SPST) switch")
(property "ki_keywords" "switch lever")
(path "/426c9621-2adb-451e-9777-50fa2a82b002")
(attr through_hole)
(fp_text reference "SW1" (at 3.25 2.25) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9ac04d77-36c3-40ef-8ae9-437361a52600)
)
(fp_text value "RST" (at 3.25 -2.35 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c8d2f720-9c3e-495b-8008-8f7969c0990e)
)
(fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f5649fa-a545-4fc6-992c-56355f708149)
)
(fp_line (start -0.25 1.5) (end -0.25 3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba8aa8ce-5ee4-444b-8f2b-30acfa3e6138))
(fp_line (start 1 5.5) (end 5.5 5.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 004624ac-9bbb-4bcf-abca-0139c552e131))
(fp_line (start 5.5 -1) (end 1 -1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63a51fd3-aec3-44ca-8348-51530452fc6d))
(fp_line (start 6.75 3) (end 6.75 1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb1bdacd-92aa-4405-955a-1fd9092840d0))
(fp_line (start -1.5 -1.5) (end -1.25 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ebd4cb15-6eda-4c48-9bde-0a0c58cf5a16))
(fp_line (start -1.5 -1.25) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp acc18013-f75b-4773-9d74-76803365f04a))
(fp_line (start -1.5 5.75) (end -1.5 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2cb4fc31-325c-4db5-8eac-7ecf53f60786))
(fp_line (start -1.5 5.75) (end -1.5 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ce68c129-cb1c-4d1c-8831-27c97eed83ed))
(fp_line (start -1.5 6) (end -1.25 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04960db4-ac66-49da-b64a-974789842574))
(fp_line (start -1.25 -1.5) (end 7.75 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp be724c0f-c526-421e-8f60-7b56d4b48e20))
(fp_line (start 7.75 -1.5) (end 8 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 39b79dfa-0cb2-4d04-80fc-607c54ecffaf))
(fp_line (start 7.75 6) (end -1.25 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2250f792-31e0-444f-8d13-478c85b0f935))
(fp_line (start 7.75 6) (end 8 6)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp afd01d40-c43b-4458-800e-0e65270284ce))
(fp_line (start 8 -1.5) (end 8 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db994bf4-5fc0-41b8-9b41-5cf34f72ac42))
(fp_line (start 8 -1.25) (end 8 5.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8da1c8c2-88a5-40a4-a775-861a6574baa8))
(fp_line (start 8 6) (end 8 5.75)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99ae9911-0be7-4646-bede-e453b836ce98))
(fp_line (start 0.25 -0.75) (end 3.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b8be544a-3b28-4b02-af5d-cc41ebd98dbe))
(fp_line (start 0.25 5.25) (end 0.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28eef1b3-99df-42ab-9cb4-76d36cd89436))
(fp_line (start 3.25 -0.75) (end 6.25 -0.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb8a05eb-e4da-41bf-8f2f-3f1f5c5638ba))
(fp_line (start 6.25 -0.75) (end 6.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f64d32eb-fc71-4dc6-b6d2-c1ff1d94e891))
(fp_line (start 6.25 5.25) (end 0.25 5.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a45b4d59-de07-4d1d-bb4c-8410381a469a))
(fp_circle (center 3.25 2.25) (end 1.25 2.5)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 9b064dcc-d413-4667-ab6d-6aa8e6dae3ee))
(pad "1" thru_hole circle locked (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 8 "/RST") (pinfunction "A") (pintype "passive") (tstamp 7b668b95-76cb-4af8-a7bd-c5c42cea982b))
(pad "1" thru_hole circle locked (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(pinfunction "A") (pintype "passive") (tstamp 0c48ac2c-5f58-4680-b814-02a9c4eeec9a))
(pad "2" thru_hole circle locked (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "B") (pintype "passive") (tstamp 04c8016f-416f-4783-bfad-9c6270e888d1))
(pad "2" thru_hole circle locked (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "B") (pintype "passive") (tstamp aa8af530-0a2d-48de-b3a2-151dbb7c0cec))
(model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm_H4.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "misc:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal_Oval" (layer "F.Cu")
(tstamp 88ac2efb-ab31-4d2b-ac05-e1489ea29bb9)
(at 68.54 66.46 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "segapad2usb.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/9285f822-6a81-4f29-90c2-ef204c767076")
(attr through_hole)
(fp_text reference "R3" (at 5.08 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a63970da-5d5c-4771-abe8-ad8fe190fd2a)
)
(fp_text value "RxΩ" (at 5.08 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fc0d1ce5-94fb-4810-aa02-9fa89de771be)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db88b5df-ff00-48fa-ad41-28a7f55b2049)
)
(fp_line (start 1.21 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3daa4ad4-5466-48e5-bddb-69b0ebeedef0))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 091620b1-4c87-4a68-85bb-fbf006754a26))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1ec55b6-c17e-4b04-82d0-c191e744ee61))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe63e60c-1914-4b10-bc11-ff9c75362112))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9976058-87c7-4abc-80cb-0eb8cd92ee69))
(fp_line (start 8.95 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0cbb84fb-7339-4263-bf80-d8b37991efcb))
(fp_line (start -1.4 -1.5) (end -1.4 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 46eac908-6e66-4601-bc0b-b087b66f438d))
(fp_line (start -1.4 -1.5) (end 11.56 -1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 4704290f-757c-4586-9c95-1ba40d121065))
(fp_line (start -1.4 1.5) (end 11.56 1.5)
(stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 5818bcfb-4bdb-45e7-997a-3e30e89e9982))
(fp_line (start 11.56 1.5) (end 11.56 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 52f7517d-e0ea-40cd-918d-7462f6e43682))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6b3918c-b7d2-4b9e-8c82-4b41a0de9456))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a89f9baa-f571-4dd2-a2ce-10633201310b))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d67e249-2d15-49cb-abb6-9375dfffa7d4))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5087a4b0-a0e2-4f80-bd6a-68e7aae161ca))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09a686cd-5027-4cda-9d4f-84661420124b))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4af7349-400d-46d1-b250-f4794add2983))
(pad "1" thru_hole oval (at 0 0 270) (size 2.1 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 25 "/STATUSLED") (pintype "passive") (tstamp cc0b8a1a-d36d-480d-b6fd-40e83a76c27f))
(pad "2" thru_hole oval (at 10.16 0 270) (size 2.1 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 6 "Net-(D3-A)") (pintype "passive") (tstamp c37460b4-abe9-4518-ad4d-1d186a210724))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "misc:md_gamepad_30x17mm" (layer "F.Cu")
(tstamp 9d0c62d7-cb50-4dc4-86cd-d3f05b6fbf30)
(at 94.4 101.2)
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "G***" (at 0 5.25) (layer "F.Fab")
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp 48649b87-c01b-4305-a9d3-cb59eb0dc2bd)
)
(fp_text value "LOGO" (at 0.75 0) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3)))
(tstamp d0372084-398d-4b79-a7ec-3ef92ffe2e89)
)
(fp_poly
(pts
(xy -7.836366 -3.862788)
(xy -7.672455 -3.853054)
(xy -7.555696 -3.838976)
(xy -7.228965 -3.765045)
(xy -6.917862 -3.652769)
(xy -6.62498 -3.504644)
(xy -6.352914 -3.323166)
(xy -6.10426 -3.110831)
(xy -5.881612 -2.870133)
(xy -5.687564 -2.603569)
(xy -5.524712 -2.313634)
(xy -5.39565 -2.002825)
(xy -5.302973 -1.673636)
(xy -5.302595 -1.671899)
(xy -5.281623 -1.539754)
(xy -5.267891 -1.377796)
(xy -5.261401 -1.198466)
(xy -5.262151 -1.014204)
(xy -5.270141 -0.837451)
(xy -5.285373 -0.680647)
(xy -5.302595 -0.578735)
(xy -5.396104 -0.245257)
(xy -5.526066 0.068419)
(xy -5.69015 0.360007)
(xy -5.886021 0.62722)
(xy -6.111347 0.867772)
(xy -6.363794 1.079376)
(xy -6.641029 1.259746)
(xy -6.940719 1.406596)
(xy -7.260531 1.517639)
(xy -7.498868 1.573553)
(xy -7.655261 1.596618)
(xy -7.831473 1.61183)
(xy -8.011408 1.618517)
(xy -8.17897 1.616009)
(xy -8.29519 1.606703)
(xy -8.634627 1.544385)
(xy -8.9587 1.443519)
(xy -9.264715 1.306213)
(xy -9.549975 1.134575)
(xy -9.811784 0.930713)
(xy -10.047446 0.696737)
(xy -10.254265 0.434754)
(xy -10.429546 0.146873)
(xy -10.570591 -0.164798)
(xy -10.574895 -0.176165)
(xy -10.628014 -0.327191)
(xy -10.66771 -0.466293)
(xy -10.695672 -0.6042)
(xy -10.713588 -0.751638)
(xy -10.723147 -0.919336)
(xy -10.725926 -1.110178)
(xy -10.44073 -1.110178)
(xy -10.43992 -0.97761)
(xy -10.43742 -0.85315)
(xy -10.433218 -0.744075)
(xy -10.427299 -0.657663)
(xy -10.41965 -0.601193)
(xy -10.412928 -0.583022)
(xy -10.393147 -0.575626)
(xy -10.348095 -0.569613)
(xy -10.274851 -0.564884)
(xy -10.170496 -0.56134)
(xy -10.032109 -0.558882)
(xy -9.85677 -0.557413)
(xy -9.641559 -0.556833)
(xy -9.635924 -0.556829)
(xy -9.421074 -0.556475)
(xy -9.244601 -0.555263)
(xy -9.102015 -0.552525)
(xy -8.988824 -0.547592)
(xy -8.900538 -0.539797)
(xy -8.832665 -0.528471)
(xy -8.780714 -0.512946)
(xy -8.740193 -0.492554)
(xy -8.706613 -0.466628)
(xy -8.675482 -0.434497)
(xy -8.655243 -0.410934)
(xy -8.629131 -0.375705)
(xy -8.607772 -0.335138)
(xy -8.590703 -0.284796)
(xy -8.577463 -0.22024)
(xy -8.567588 -0.137032)
(xy -8.560617 -0.030733)
(xy -8.556086 0.103095)
(xy -8.553535 0.26889)
(xy -8.5525 0.471091)
(xy -8.552405 0.576216)
(xy -8.551974 0.745712)
(xy -8.55075 0.901383)
(xy -8.548838 1.038077)
(xy -8.546345 1.150641)
(xy -8.543374 1.233925)
(xy -8.540032 1.282775)
(xy -8.537756 1.29358)
(xy -8.513147 1.297372)
(xy -8.451615 1.300347)
(xy -8.359102 1.302409)
(xy -8.241548 1.303463)
(xy -8.104893 1.303412)
(xy -7.985815 1.302511)
(xy -7.448523 1.296793)
(xy -7.437585 0.51443)
(xy -7.434561 0.333888)
(xy -7.430785 0.165714)
(xy -7.426446 0.015012)
(xy -7.421731 -0.113115)
(xy -7.416826 -0.213566)
(xy -7.411919 -0.281237)
(xy -7.407304 -0.310802)
(xy -7.336657 -0.423887)
(xy -7.243305 -0.501878)
(xy -7.214863 -0.516458)
(xy -7.18856 -0.527072)
(xy -7.158133 -0.535638)
(xy -7.118939 -0.542376)
(xy -7.066336 -0.547506)
(xy -6.995681 -0.55125)
(xy -6.902331 -0.553828)
(xy -6.781643 -0.555459)
(xy -6.628975 -0.556366)
(xy -6.439683 -0.556768)
(xy -6.365004 -0.556829)
(xy -6.147262 -0.55738)
(xy -5.969473 -0.558802)
(xy -5.828728 -0.561191)
(xy -5.722121 -0.564644)
(xy -5.64674 -0.569259)
(xy -5.599679 -0.575131)
(xy -5.578029 -0.582358)
(xy -5.577283 -0.583022)
(xy -5.568376 -0.606218)
(xy -5.561523 -0.657926)
(xy -5.556574 -0.741273)
(xy -5.553383 -0.859387)
(xy -5.551801 -1.015393)
(xy -5.551561 -1.125317)
(xy -5.552273 -1.304908)
(xy -5.554506 -1.444779)
(xy -5.55841 -1.548058)
(xy -5.564132 -1.61787)
(xy -5.571821 -1.657344)
(xy -5.577283 -1.667612)
(xy -5.596931 -1.674966)
(xy -5.641668 -1.680933)
(xy -5.714424 -1.685609)
(xy -5.818127 -1.689091)
(xy -5.955705 -1.691474)
(xy -6.130089 -1.692856)
(xy -6.344205 -1.693332)
(xy -6.360334 -1.693334)
(xy -6.573657 -1.693569)
(xy -6.748622 -1.694596)
(xy -6.889741 -1.6969)
(xy -7.001523 -1.700964)
(xy -7.088478 -1.707273)
(xy -7.155119 -1.716312)
(xy -7.205954 -1.728564)
(xy -7.245495 -1.744513)
(xy -7.278252 -1.764644)
(xy -7.308736 -1.78944)
(xy -7.315967 -1.795915)
(xy -7.343506 -1.821835)
(xy -7.366098 -1.847851)
(xy -7.384297 -1.87834)
(xy -7.398661 -1.917677)
(xy -7.409746 -1.970236)
(xy -7.418107 -2.040393)
(xy -7.424302 -2.132523)
(xy -7.428885 -2.251002)
(xy -7.432414 -2.400204)
(xy -7.435445 -2.584505)
(xy -7.437806 -2.754346)
(xy -7.448523 -3.547427)
(xy -8.541688 -3.547427)
(xy -8.552405 -2.765064)
(xy -8.555288 -2.560861)
(xy -8.557981 -2.394943)
(xy -8.560789 -2.262729)
(xy -8.564019 -2.159638)
(xy -8.567978 -2.081088)
(xy -8.572972 -2.022499)
(xy -8.579308 -1.979288)
(xy -8.587292 -1.946875)
(xy -8.59723 -1.920679)
(xy -8.609429 -1.896118)
(xy -8.610684 -1.893764)
(xy -8.659382 -1.82582)
(xy -8.72188 -1.766497)
(xy -8.739292 -1.754439)
(xy -8.761179 -1.741313)
(xy -8.78335 -1.730653)
(xy -8.810331 -1.722161)
(xy -8.84665 -1.71554)
(xy -8.896835 -1.71049)
(xy -8.965412 -1.706715)
(xy -9.05691 -1.703916)
(xy -9.175855 -1.701794)
(xy -9.326775 -1.700054)
(xy -9.514199 -1.698395)
(xy -9.601728 -1.697677)
(xy -9.84039 -1.695084)
(xy -10.038033 -1.691541)
(xy -10.194288 -1.687061)
(xy -10.308785 -1.681657)
(xy -10.381156 -1.675344)
(xy -10.410884 -1.668259)
(xy -10.419921 -1.639889)
(xy -10.427352 -1.575957)
(xy -10.433162 -1.483742)
(xy -10.437337 -1.370522)
(xy -10.439864 -1.243574)
(xy -10.44073 -1.110178)
(xy -10.725926 -1.110178)
(xy -10.72604 -1.118022)
(xy -10.726033 -1.136034)
(xy -10.725519 -1.282755)
(xy -10.72377 -1.395982)
(xy -10.719838 -1.485086)
(xy -10.71278 -1.55944)
(xy -10.701648 -1.628419)
(xy -10.685499 -1.701395)
(xy -10.663384 -1.787741)
(xy -10.658367 -1.806669)
(xy -10.550181 -2.132898)
(xy -10.405696 -2.438681)
(xy -10.227442 -2.721655)
(xy -10.017952 -2.979455)
(xy -9.779759 -3.209719)
(xy -9.515393 -3.410082)
(xy -9.227388 -3.57818)
(xy -8.918275 -3.711651)
(xy -8.590587 -3.808131)
(xy -8.492007 -3.828937)
(xy -8.356313 -3.848016)
(xy -8.192403 -3.860118)
(xy -8.014385 -3.865093)