-
Notifications
You must be signed in to change notification settings - Fork 1
/
Aurora.kicad_pcb
8493 lines (8454 loc) · 341 KB
/
Aurora.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 "Aurora")
(date "2021-07-04")
(rev "r04")
(company "Nuclear Lighthouse Studios")
(comment 1 "CC BY-NC-SA")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(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)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen") (color "Black"))
(layer "F.Mask" (type "Top Solder Mask") (color "White") (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") (color "White") (thickness 0.01))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "Black"))
(copper_finish "ENIG")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(grid_origin 115.57 73.66)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 "gerber/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "+9V")
(net 3 "Input")
(net 4 "Output")
(net 5 "+9VA")
(net 6 "Net-(C3-Pad1)")
(net 7 "Net-(C4-Pad1)")
(net 8 "Net-(C5-Pad1)")
(net 9 "Net-(C6-Pad2)")
(net 10 "Net-(C7-Pad1)")
(net 11 "Net-(Q1-Pad1)")
(net 12 "Net-(Q1-Pad2)")
(net 13 "Net-(Q2-Pad1)")
(net 14 "Net-(Q2-Pad3)")
(net 15 "Clock")
(net 16 "Net-(R6-Pad2)")
(net 17 "Net-(R7-Pad1)")
(net 18 "Net-(R10-Pad2)")
(net 19 "Net-(R11-Pad1)")
(net 20 "unconnected-(J1-Pad2)")
(net 21 "unconnected-(U2-Pad5)")
(net 22 "unconnected-(RV1-Pad1)")
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp 00000000-0000-0000-0000-00005bfc548b)
(at 121.92 103.505 -90)
(descr "Through hole straight pin header, 1x06, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x06 2.54mm single row")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d2bd68e")
(attr through_hole)
(fp_text reference "J1" (at 0 -2.33 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52f158e4-7590-4167-a064-58f43825b519)
)
(fp_text value "Conn_01x06_Female" (at 0 15.03 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1253d2a3-5937-44aa-b491-8d971b2673bc)
)
(fp_text user "${REFERENCE}" (at 0 6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60925a4c-0183-4cd8-83ea-b4774672dfb0)
)
(fp_line (start -1.33 14.03) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 18892b77-129e-4ef9-845b-5b68f2af8381))
(fp_line (start 1.33 1.27) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 3176cc92-d79c-45ab-ae6d-7c343268369c))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 584721ac-33c4-4393-ae98-98c3657471f8))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 635c2cfe-384e-4534-b6de-d66ae034ae99))
(fp_line (start -1.33 1.27) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 7fec3a05-c994-4fc8-9dce-f7739e8097f0))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp ab92d7a8-851f-4bcf-adc8-a81f21ed3ba8))
(fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 0e775663-d041-4f7b-a5f4-a445b60dac43))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 33cc78a4-b13a-4df2-9f47-3d810bc36e26))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 506473c3-ed01-45d7-9136-b4bb37f3b6b5))
(fp_line (start -1.8 14.5) (end 1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp a479d60e-1267-4797-ad0b-27a70136144f))
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 3e2f1733-16f7-487e-bca8-6e3cd53fd302))
(fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp 5286351b-7887-4200-b9e5-00844e0fc887))
(fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 83b952a3-9ef4-4d75-a7d9-9ae0a4f03a45))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8dcd2561-df0c-419f-aea7-8548f103f0be))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp a9d25a15-2cef-4f6b-ba9b-ba267ae76e32))
(pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "+9VA") (pinfunction "Pin_1") (pintype "passive") (tstamp 08032b3c-a00b-429d-a8fc-ee9c4b2f6764))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 20 "unconnected-(J1-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp 489c8919-b344-4788-ba45-3362231cad21))
(pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "Output") (pinfunction "Pin_3") (pintype "passive") (tstamp 49351d1f-c622-4707-bd21-a0e60874042c))
(pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 3 "Input") (pinfunction "Pin_4") (pintype "passive") (tstamp fbf05e1b-1563-45c0-a91d-cfff40595109))
(pad "5" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "+9V") (pinfunction "Pin_5") (pintype "passive") (tstamp 90b3c988-18f6-4bfb-b962-c3d2d50e3675))
(pad "6" thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_6") (pintype "passive") (tstamp 0894a4ee-f419-40dc-904b-009ccafc66bb))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x06_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a8189)
(at 139.7 56.515)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21fe2cb7-ca6e-4173-b4b8-b5dbc4c16185)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c6a30a17-5b4f-41ae-998a-820f0e5f2b14)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a853cea3-1be0-46ad-85d4-b94a4e933457)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 22bcec54-8c1e-454d-898c-2c559883b625))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 980f3239-cfed-4bdf-854b-ece770004a70))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp cf6e77ba-9e74-4f05-a5e2-afe3f3ee2d64))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a81b9)
(at 91.44 56.515)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb5c84dd-f01c-42d7-811f-761aef098257)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0deafa29-39d1-4497-9f31-e4622b2dff50)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f420eb4-93df-40e5-bed6-5b9d5eaaeb7e)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 4bb3901b-937a-4eab-8402-245483e62d9c))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 70da1269-79bf-43ad-b8a4-10bdb42bbfea))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp c105afc4-318f-4f78-a8e1-f637598cc8d8))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a81eb)
(at 140.335 103.505)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 83602db6-5f82-4192-981c-886b4c749c38)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp debaf3fa-28fe-4c8d-9800-34e84fe086c6)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f051679d-7b57-4ca0-ba12-5095e7a776be)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp d9b53b15-d320-4c96-9721-94efcb67a021))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 36c5036c-7af1-4b87-a84c-16123eb455ef))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp a8020463-066e-4be8-a73b-b1684e6050dd))
)
(footprint "MountingHole:MountingHole_3.2mm_M3" locked (layer "F.Cu")
(tedit 56D1B4CB) (tstamp 00000000-0000-0000-0000-00005d0a81f9)
(at 90.805 103.505)
(descr "Mounting Hole 3.2mm, no annular, M3")
(tags "mounting hole 3.2mm no annular m3")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -4.2) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1543b042-0661-4100-a709-dbae950ae8ad)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60889bca-d89e-47cf-bd95-b2edbb23fffb)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4191fc76-9779-4cbd-9418-fb9a338e156a)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 74df25f6-2184-4ea6-88a8-3919f1f5d6d3))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 85cea65c-32ae-4147-b64b-e3a35464b71d))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp 3775dee5-7ce2-4030-b917-a8458856e7eb))
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2b8c29)
(at 139.065 68.58 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011c90")
(attr through_hole)
(fp_text reference "R4" (at 5.08 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db22c6a4-b328-456e-b2f8-e00754bf8983)
)
(fp_text value "10k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dbcb8c36-34c5-41b2-8033-a839b791cddd)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6d0258b-572f-44bc-a16f-30c31f8c3a8e)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 4f988887-7642-4283-90c1-49045649415a))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 1603b041-8407-46fd-ad8d-55adef12987b))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 141d5072-5d14-4606-8bb3-729396565173))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2d958baa-896a-48bb-856a-163ea17320b9))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8aa86eaf-26b4-4b9d-93b3-822aa389c036))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d45c8444-8a59-4757-8915-498c67e134cc))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 658120b0-45f4-402a-8930-79b4d69b2709))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp e606ccde-a16c-4b17-b807-2928af8f502d))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "+9VA") (pintype "passive") (tstamp 1eb76737-c0a0-410e-bca7-610e09ebad29))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(Q1-Pad1)") (pintype "passive") (tstamp c7acefb3-d5e5-470e-b246-2fdc880ba9d4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-92_Wide" (layer "F.Cu")
(tedit 5A2795B7) (tstamp 00000000-0000-0000-0000-00005d2ba365)
(at 129.54 69.85 90)
(descr "TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011c1f")
(attr through_hole)
(fp_text reference "Q1" (at 6.985 -0.635 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b18a7b33-1563-4854-adf2-d1d19da62c22)
)
(fp_text value "BC547" (at 2.54 2.79 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3ae401c1-dd9f-4b27-a4e3-9d35ce127553)
)
(fp_text user "${REFERENCE}" (at 2.54 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0be24e76-c583-4e95-843a-52f9058c6d98)
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 860ef416-12fb-459c-802c-6496960cc632))
(fp_arc (start 3.65 -2.35) (mid 4.382279 -1.833196) (end 4.895458 -1.098371) (layer "F.SilkS") (width 0.12) (tstamp 1bc68ba0-a259-496c-98f6-96df3b68b7c1))
(fp_arc (start 4.864184 1.122795) (mid 4.633903 1.509328) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 377a8f3e-f09f-4375-8609-48bcc8377996))
(fp_arc (start 0.74 1.85) (mid 0.446097 1.509328) (end 0.215816 1.122795) (layer "F.SilkS") (width 0.12) (tstamp 6cfbe5d8-3787-4694-85fb-25b08fc92033))
(fp_arc (start 0.172801 -1.103842) (mid 0.678995 -1.832692) (end 1.4 -2.35) (layer "F.SilkS") (width 0.12) (tstamp 7a5192b8-feaa-42e1-a7d8-b8d8a0d30faa))
(fp_line (start -1.01 -3.55) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 593d0ea0-53f1-41a1-8fb1-5fdde8594428))
(fp_line (start 6.09 2.01) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 727c40a6-bad2-4386-a6fc-2a82b49c0789))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 7a4d758f-4e41-43c5-813c-da1faf912ee0))
(fp_line (start -1.01 -3.55) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp b3dbcbcc-eba3-4b37-8903-60057cff0915))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer "F.Fab") (width 0.1) (tstamp 03ef189b-378e-40aa-be6e-a5eeebe559d3))
(fp_arc (start 0.786375 1.753625) (mid 0.248779 -0.949055) (end 2.54 -2.48) (layer "F.Fab") (width 0.1) (tstamp 194652ac-94f3-401c-9404-449d0fc75d64))
(fp_arc (start 2.54 -2.48) (mid 4.831221 -0.949055) (end 4.293625 1.753625) (layer "F.Fab") (width 0.1) (tstamp c11154a4-6b3c-4bf1-8cdd-e7f8f0848e3c))
(pad "1" thru_hole rect (at 0 0 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(Q1-Pad1)") (pinfunction "C") (pintype "passive") (tstamp bbe6e7f1-a24d-4add-95d4-ae881b618f7d))
(pad "2" thru_hole circle (at 2.54 -2.54 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(Q1-Pad2)") (pinfunction "B") (pintype "input") (tstamp 5161a741-6e78-4cc5-bd18-72cd3b364c98))
(pad "3" thru_hole circle (at 5.08 0 90) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "E") (pintype "passive") (tstamp b2ff9afe-e621-432a-854a-c4e157f164b7))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Wide.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Disc_D4.3mm_W1.9mm_P5.00mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d2ba869)
(at 132.08 83.82 180)
(descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf")
(tags "C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005eff463b")
(attr through_hole)
(fp_text reference "C1" (at 2.54 1.905) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eba1b267-4963-4742-86f7-814d4ec58dfe)
)
(fp_text value "100n" (at 2.5 2.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5888d827-4112-46ad-bc96-78eb1709adf0)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 0.86 0.86) (thickness 0.129)))
(tstamp 3edc6d46-37cf-44e2-823f-4f44bdf923b7)
)
(fp_line (start 0.23 -1.07) (end 0.23 -1.055) (layer "F.SilkS") (width 0.12) (tstamp 0b0c2f9e-eb10-40d0-9c0a-ec726c99c423))
(fp_line (start 4.77 -1.07) (end 4.77 -1.055) (layer "F.SilkS") (width 0.12) (tstamp 1e524d64-f463-4e55-8a85-ade9ae7c91f6))
(fp_line (start 0.23 1.055) (end 0.23 1.07) (layer "F.SilkS") (width 0.12) (tstamp 32a87c84-5234-4594-a295-8a0aa42854ee))
(fp_line (start 4.77 1.055) (end 4.77 1.07) (layer "F.SilkS") (width 0.12) (tstamp 419480dd-b584-4c63-9d0d-4f35a00f6aee))
(fp_line (start 0.23 1.07) (end 4.77 1.07) (layer "F.SilkS") (width 0.12) (tstamp bddccfbd-8baa-4e31-b38e-31c99d4c9080))
(fp_line (start 0.23 -1.07) (end 4.77 -1.07) (layer "F.SilkS") (width 0.12) (tstamp c21e6286-fbbf-44c8-a7d6-5e4c8111a282))
(fp_line (start 6.05 -1.2) (end -1.05 -1.2) (layer "F.CrtYd") (width 0.05) (tstamp 243fbe0d-77ee-456b-981b-da549dbf3f2f))
(fp_line (start 6.05 1.2) (end 6.05 -1.2) (layer "F.CrtYd") (width 0.05) (tstamp 6cf497e7-f051-4b12-b3a5-3f9b7d8f7da2))
(fp_line (start -1.05 -1.2) (end -1.05 1.2) (layer "F.CrtYd") (width 0.05) (tstamp e8a4c24c-8b64-4b4f-baea-148e212683c9))
(fp_line (start -1.05 1.2) (end 6.05 1.2) (layer "F.CrtYd") (width 0.05) (tstamp ff2e4991-7200-4d06-96d3-f57faaacab5c))
(fp_line (start 0.35 0.95) (end 4.65 0.95) (layer "F.Fab") (width 0.1) (tstamp 215cef92-6efe-4cbb-bd86-2dce0379f975))
(fp_line (start 4.65 -0.95) (end 0.35 -0.95) (layer "F.Fab") (width 0.1) (tstamp 21a5d3de-7df6-409e-bc20-b5ace366912e))
(fp_line (start 4.65 0.95) (end 4.65 -0.95) (layer "F.Fab") (width 0.1) (tstamp 571fbae5-6d2e-4243-8aba-4a5c9319cb7a))
(fp_line (start 0.35 -0.95) (end 0.35 0.95) (layer "F.Fab") (width 0.1) (tstamp 9ca9ada9-af35-4fc2-93f0-9b33e1bf2d62))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "+9VA") (pintype "passive") (tstamp fec6cc1c-874d-43bc-b602-ac2cbd7a783c))
(pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 41fb8bb8-0315-47c0-b7b3-e0f1da14d741))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D4.3mm_W1.9mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d2be32a)
(at 114.22 93.98 180)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011c62")
(attr through_hole)
(fp_text reference "C6" (at 7.032 0 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6230188e-e618-4847-86bc-2a1ba32b6b9d)
)
(fp_text value "1µ" (at 2.5 3.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 23c38ecc-0ac5-46f2-81ab-7228419ada92)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86b91190-a206-4fa7-9d18-c28d77270f9e)
)
(fp_line (start 6.22 -2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 5faf9d76-9fff-4779-8825-bd81f87dafb3))
(fp_line (start -1.22 -2.37) (end 6.22 -2.37) (layer "F.SilkS") (width 0.12) (tstamp 6691b888-2ba5-494e-956c-995d25382c37))
(fp_line (start -1.22 2.37) (end 6.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 7fc5591f-b7a1-43a4-b66e-df6d658ce7d6))
(fp_line (start -1.22 -2.37) (end -1.22 2.37) (layer "F.SilkS") (width 0.12) (tstamp 80aa5d1d-a891-434b-92d4-e2984a61b1e2))
(fp_line (start -1.35 2.5) (end 6.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 2d80cbbe-bb64-4a25-8002-46deffb4cdbd))
(fp_line (start -1.35 -2.5) (end -1.35 2.5) (layer "F.CrtYd") (width 0.05) (tstamp 92c839e5-de7e-490f-8250-f0c40b78360d))
(fp_line (start 6.35 -2.5) (end -1.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp da8b55e1-aaa4-42a3-b6c3-8a70fa231589))
(fp_line (start 6.35 2.5) (end 6.35 -2.5) (layer "F.CrtYd") (width 0.05) (tstamp fa2da196-755e-4135-ac73-ccb154648545))
(fp_line (start 6.1 2.25) (end 6.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp 2cb3ef03-f290-40f9-8b78-ec3cfdda7d67))
(fp_line (start -1.1 -2.25) (end -1.1 2.25) (layer "F.Fab") (width 0.1) (tstamp 9648c0be-3afc-42cd-b0d0-5aad69b86dce))
(fp_line (start -1.1 2.25) (end 6.1 2.25) (layer "F.Fab") (width 0.1) (tstamp beff500c-2247-4b94-b816-a2817c9d2a07))
(fp_line (start 6.1 -2.25) (end -1.1 -2.25) (layer "F.Fab") (width 0.1) (tstamp dc9afc02-1fd1-44ce-9bfd-cc6aad4034e1))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Output") (pintype "passive") (tstamp 7cd5767b-279a-4910-8d8e-08d12882de9c))
(pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C6-Pad2)") (pintype "passive") (tstamp 509aadf9-4ff4-4ba2-8014-715fb9cf6dc9))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-92_Wide" (layer "F.Cu")
(tedit 5A2795B7) (tstamp 00000000-0000-0000-0000-00005d2be3c1)
(at 127 76.835)
(descr "TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011bf2")
(attr through_hole)
(fp_text reference "Q2" (at 2.54 -4.445) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp acb2101b-119c-4271-aae9-17078648ebd4)
)
(fp_text value "J113" (at 2.54 2.79) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c49293e-bd89-4f0f-82fa-f758fd0e231d)
)
(fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d4bc142-fd9c-4797-873f-bc0faf29ce32)
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 38afafbe-7324-4f3b-af19-13a78670d062))
(fp_arc (start 0.74 1.85) (mid 0.446097 1.509328) (end 0.215816 1.122795) (layer "F.SilkS") (width 0.12) (tstamp 7a650709-8d04-4558-b6f4-f21cebd93cd4))
(fp_arc (start 4.864184 1.122795) (mid 4.633903 1.509328) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp cb29ca8d-1ad4-42bd-9324-931f9d31d381))
(fp_arc (start 3.65 -2.35) (mid 4.382279 -1.833196) (end 4.895458 -1.098371) (layer "F.SilkS") (width 0.12) (tstamp db1e03bb-bde4-4cec-a4bb-3aa91b4a64f3))
(fp_arc (start 0.172801 -1.103842) (mid 0.678995 -1.832692) (end 1.4 -2.35) (layer "F.SilkS") (width 0.12) (tstamp fcafc9aa-89b4-4f96-8515-3909b828bf95))
(fp_line (start 6.09 2.01) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 1a0e579b-2c22-4042-836a-8ad66e9ad807))
(fp_line (start -1.01 -3.55) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 7a650324-56e6-406a-82a5-8707d496154d))
(fp_line (start -1.01 -3.55) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 8cbcec9d-ca4a-41d8-821f-c02cde70caa6))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 9bfce908-9bac-4146-9afc-efdc2041337b))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer "F.Fab") (width 0.1) (tstamp c32fe86a-6af2-41b4-9d3d-36195ec29e1f))
(fp_arc (start 2.54 -2.48) (mid 4.831221 -0.949055) (end 4.293625 1.753625) (layer "F.Fab") (width 0.1) (tstamp 2033c22f-b444-4483-9d3a-166a813fc147))
(fp_arc (start 0.786375 1.753625) (mid 0.248779 -0.949055) (end 2.54 -2.48) (layer "F.Fab") (width 0.1) (tstamp ae9bb172-aeed-4122-8e2b-0be2d9d15811))
(pad "1" thru_hole rect (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(Q2-Pad1)") (pinfunction "D") (pintype "passive") (tstamp f6a2f17c-33d0-45ea-a9c3-e38f1747bca3))
(pad "2" thru_hole circle (at 2.54 -2.54) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C4-Pad1)") (pinfunction "S") (pintype "passive") (tstamp 84f63fba-c880-45de-8eba-c9e61f1416a9))
(pad "3" thru_hole circle (at 5.08 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "Net-(Q2-Pad3)") (pinfunction "G") (pintype "input") (tstamp 51781004-3f1b-42d1-828d-00466cc9505a))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Wide.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2be3f8)
(at 118.11 99.06)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011c4d")
(attr through_hole)
(fp_text reference "R1" (at 2.032 -2.032 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a094d91-64c3-486f-a2a1-30fdf54d34bb)
)
(fp_text value "1M" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bed58cbf-aee2-4a83-98fe-1d0ec6a451cf)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52de6c3d-ca42-434e-9f00-835135aa7996)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 9093222a-343f-4380-953d-7e7b34385e12))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 935c88b1-e827-4ed4-8e9d-018598275e77))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0711f890-756d-486b-823b-602184c1d19f))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2bd45946-4bb0-42a9-9aaf-ca04208c371f))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 446896a5-5fc3-4e2a-affe-519d10ec20f6))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp fd5d0ff9-2bb7-4c3c-b384-4d7d6147d270))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp c2097b3c-6385-4abd-b38b-76dbe8ed04ed))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 7c7b009c-49d1-493f-9447-24d16335e6e3))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C3-Pad1)") (pintype "passive") (tstamp d234ce87-363a-4cf9-b73f-0708a860201f))
(pad "2" thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "+9VA") (pintype "passive") (tstamp 544545f7-c251-4d9d-899b-ca64a02a4db4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2be407)
(at 120.65 93.98 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011c53")
(attr through_hole)
(fp_text reference "R2" (at 2.032 2.032 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c2b2b9ad-3843-47f1-bbcc-2967d8d0a161)
)
(fp_text value "1M" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f88880b-00a7-412c-a454-12bb408033df)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 583ce7ea-4e49-439b-b95c-46af54ad33a3)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 11964577-bdb8-402c-8338-6bec5f87fd21))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 8877c198-2f19-4466-9803-e3be6561f3b0))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1bdac58a-0cdd-4a09-b8ca-e035b49509ab))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6c9ae29f-6af7-4d14-a02e-8450949845f6))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp a3398142-c780-42d2-a4c0-1934bdfdd3b9))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d633f8b6-e20c-4a50-8826-49d40452538c))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 11326510-1f7e-48b7-ac51-e523e4f91967))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 83308dd3-1d46-4bb8-8be8-4be84cb6295f))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp bfab1445-6f68-4c9c-af7e-56227bf76c3c))
(pad "2" thru_hole oval (at 2.54 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C3-Pad1)") (pintype "passive") (tstamp c44cb7a9-6a28-47d8-864c-85a5a1c21b2e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2be41e)
(at 123.19 67.31 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011cbf")
(attr through_hole)
(fp_text reference "R3" (at -2.54 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42f563d6-86f7-4087-9d65-74a3735eebf9)
)
(fp_text value "1k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 098a3f56-ff14-4988-bd3d-b1173c9d68d0)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 799c2cc5-ee97-4cf9-81c4-102b3dee72ac)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 83f82493-3443-4899-9737-2eb3a0cdfd63))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 97840cac-849d-44ce-a7aa-1075cdcec700))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6d97eef1-2af4-4314-a0de-d98ad9cdb35c))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp a1da7499-0bda-4ca6-891b-10c275395375))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp ae54f44b-09d5-4177-a49d-010942d9a803))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f8e96510-6b4e-4001-b429-0359fa1e3c14))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 0231b360-7a5c-4bbd-818d-99e8bfd93e28))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp ba126328-9842-415c-acea-43498dd486b1))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(Q1-Pad2)") (pintype "passive") (tstamp fca5b26c-4744-4aef-9114-b6f52db372fa))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Clock") (pintype "passive") (tstamp 224f3c40-7b81-4940-bdbf-eb34f8819393))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2be453)
(at 138.43 95.25 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011c30")
(attr through_hole)
(fp_text reference "R6" (at 1.27 2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c58f4de-c205-4cab-9c24-abf55e48c2a1)
)
(fp_text value "100k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 492c7437-9e52-44cf-a103-d4385e9cb163)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d26b12d5-64c1-4b77-ba43-365f6b42b97c)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 2cdff2b2-43f6-49cb-b278-c0493644a154))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 44001f21-195f-45b3-97dd-8ba4a78df02a))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 494c7a67-5c2e-42e6-998a-05b30fc85390))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5875e9f1-7cfb-4e2e-abd7-a0a545078dd7))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 679927ec-3fe6-490f-8b12-ede062830894))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp ac43d855-dbc3-4704-966b-f6bbfc7fca00))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 43a8a163-584c-47fa-a94b-964508eca3f2))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 3b83fce8-ca56-4ee4-9c4a-a86772d394d6))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C5-Pad1)") (pintype "passive") (tstamp 008b0b27-91a2-4ff4-9c4e-03c8f09ab309))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(R6-Pad2)") (pintype "passive") (tstamp 22e74dfa-69a4-4edd-8065-4488fe23ccdc))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d2c0216)
(at 135.255 66.04 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011c82")
(attr through_hole)
(fp_text reference "R5" (at -2.54 0 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9aa1a21-8d48-4595-a1ec-02ade16dc627)
)
(fp_text value "100k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2298174f-ef2c-425b-b173-ef47819dcbc0)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 919c6bcd-c7d5-4d97-af5e-89fb091f3866)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 170a6981-cb97-4a0f-a853-1fd650e04f67))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 3e8c7805-53e4-4ff8-9155-4e23eebc5f2a))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 52daa49f-3c45-4dcb-b7c8-2db877163acd))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6cae8653-570b-4a03-8219-6728bc2f448b))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp aa13008d-5537-401c-b48f-8fd74cc7c71c))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e0b39bc2-5fd7-45f4-9413-3e94ed141326))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 72e421f5-880c-4b68-a46e-0bfda608a0bc))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 47547b29-e549-49e2-955c-09e2338961a1))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "Net-(Q1-Pad1)") (pintype "passive") (tstamp efe74c92-5989-4049-b4a8-e7c629bba2cb))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 14 "Net-(Q2-Pad3)") (pintype "passive") (tstamp d9eb1113-90cc-4dac-9b7e-7ab848bc626e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "NLS:BarrelJack_Horizontal_Short" (layer "F.Cu")
(tedit 5BE2B3F8) (tstamp 00000000-0000-0000-0000-00005d693036)
(at 115.57 62.865 -90)
(descr "DC Barrel Jack")
(tags "Power Jack")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005be333ff")
(attr through_hole)
(fp_text reference "J2" (at 1.905 -3.175 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ebdbabb-078f-4ef5-9de6-91c9ce774674)
)
(fp_text value "Barrel_Jack_Switch" (at -6.2 -5.5 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 123fee78-1b3f-49bd-a24d-af7a3a2a7a90)
)
(fp_text user "${REFERENCE}" (at -3 -2.95 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9843764-c3f7-41d0-b79a-ddb3060b668a)
)
(fp_line (start 0.9 4.6) (end -1 4.6) (layer "F.SilkS") (width 0.12) (tstamp 1dc1c47c-fc66-4647-88a9-bb5871cacc34))
(fp_line (start -5 4.6) (end -8 4.6) (layer "F.SilkS") (width 0.12) (tstamp 3fb16d90-7859-42df-8c70-1a0582afbe15))
(fp_line (start 1.1 -3.75) (end 1.1 -4.8) (layer "F.SilkS") (width 0.12) (tstamp 9c2014d0-dbca-47bd-a19d-592cad25071b))
(fp_line (start 0.9 1.9) (end 0.9 4.6) (layer "F.SilkS") (width 0.12) (tstamp a35645ed-e09a-454a-9b10-2cea3624ab76))
(fp_line (start -8 -4.6) (end 0.9 -4.6) (layer "F.SilkS") (width 0.12) (tstamp b2b6bfe0-fe43-41eb-8c55-bd87489d4553))
(fp_line (start 0.9 -4.6) (end 0.9 -2) (layer "F.SilkS") (width 0.12) (tstamp c3545c87-502d-483e-acc4-61894d4d3d8e))
(fp_line (start 0.05 -4.8) (end 1.1 -4.8) (layer "F.SilkS") (width 0.12) (tstamp df5d9f90-76fa-480f-bce1-98792d86824e))
(fp_line (start -5 4.75) (end -14 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 05a14c53-9cae-4857-be31-a5517c6006f5))
(fp_line (start -1 6.75) (end -5 6.75) (layer "F.CrtYd") (width 0.05) (tstamp 0c85fdff-1570-48d5-a2ce-df13389b6f82))
(fp_line (start 2 -2) (end 2 2) (layer "F.CrtYd") (width 0.05) (tstamp 2277ef09-82a0-450b-a375-4590ab6d781b))
(fp_line (start 2 2) (end 1 2) (layer "F.CrtYd") (width 0.05) (tstamp 275ecb19-39e8-47f2-8829-abc10393426e))
(fp_line (start 1 2) (end 1 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 39b71667-f7de-4f37-b744-04d7c80e0b57))
(fp_line (start 1 -4.75) (end -14 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 41be6cc8-e121-44c5-bca8-f6099ba69385))
(fp_line (start -1 4.75) (end -1 6.75) (layer "F.CrtYd") (width 0.05) (tstamp 5fd9d620-8622-41da-a169-edb29dce35a0))
(fp_line (start -14 4.75) (end -14 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 7642ad54-7b4b-4721-9590-92d2a1a3ba66))
(fp_line (start 1 4.75) (end -1 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 9259856e-4030-4caf-84dc-d3d1bbd5ba79))
(fp_line (start 1 -4.5) (end 1 -2) (layer "F.CrtYd") (width 0.05) (tstamp 939b9f78-8c0c-46f3-9db4-eb255e65510e))
(fp_line (start -5 6.75) (end -5 4.75) (layer "F.CrtYd") (width 0.05) (tstamp bcb89642-5a64-40af-bfcf-6637822a9ddb))
(fp_line (start 1 -2) (end 2 -2) (layer "F.CrtYd") (width 0.05) (tstamp bd0d52ef-c9bd-4df9-98cd-8569fc0bb8e1))
(fp_line (start 1 -4.5) (end 1 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp bf8e8cae-f195-40d8-8301-2a9b13b591ac))
(fp_line (start -13.7 4.5) (end 0.8 4.5) (layer "F.Fab") (width 0.1) (tstamp 4c3a437c-60fc-459a-8af8-bddb555a86d1))
(fp_line (start -13.7 -4.5) (end -13.7 4.5) (layer "F.Fab") (width 0.1) (tstamp 97584e58-e18a-453c-8494-132312561a95))
(fp_line (start 0.8 4.5) (end 0.8 -3.75) (layer "F.Fab") (width 0.1) (tstamp a0ad84ec-3e00-4341-adfe-b059cb1f30a7))
(fp_line (start 0 -4.5) (end -13.7 -4.5) (layer "F.Fab") (width 0.1) (tstamp a2db9594-8785-44c9-abb1-6e5812471658))
(fp_line (start -0.003213 -4.505425) (end 0.8 -3.75) (layer "F.Fab") (width 0.1) (tstamp b5a7eeb0-74cc-4ec8-b4c9-03028ad922af))
(fp_line (start -10.2 -4.5) (end -10.2 4.5) (layer "F.Fab") (width 0.1) (tstamp de0c1676-05b4-4705-8575-4abe35f7ec12))
(pad "1" thru_hole rect locked (at 0 0 270) (size 3.5 3.5) (drill oval 1 3) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 6e67c735-4762-4532-ace8-71a4e02bf14c))
(pad "2" thru_hole roundrect locked (at -6 0 270) (size 3 3.5) (drill oval 1 3) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 2 "+9V") (pintype "passive") (tstamp 5912e715-ceb0-4d59-ae2b-d1c20d9e25b4))
(pad "3" thru_hole roundrect locked (at -3 4.7 270) (size 3.5 3.5) (drill oval 3 1) (layers *.Cu *.Mask) (roundrect_rratio 0.25)
(net 2 "+9V") (pintype "passive") (tstamp 790758ec-f7a1-4d96-9a6b-37257b0bd9ab))
(model "/home/sly/Creative/Electro/Libs/3D/CUI-PJ-102AH.step"
(offset (xyz -13.75 0 6.5))
(scale (xyz 1 1 1))
(rotate (xyz 90 -180 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d6959b0)
(at 109.22 88.9)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011c7c")
(attr through_hole)
(fp_text reference "R8" (at 2.032 -2.286) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cef66031-d191-4a51-99f1-706d4e3fbe01)
)
(fp_text value "1k" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ceea7b25-ef8b-4184-baa3-39ef478b2693)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d455ff23-5775-4ca6-a19b-3044f9079df4)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 65fd66d1-066a-4b73-ae16-4014dd2dcb0e))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp b2c4ea3c-a21c-49c2-8465-d2f652743d2d))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3f081ca4-b0d3-43a4-8ee1-fe1cfecf6652))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 89e89d17-f32b-4690-a93f-98bf74be559b))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c329bb8e-76c4-4a9d-a97e-cec6aba8d51b))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp ed6b063c-2b3a-4564-b51c-2b8b5512545e))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 90663188-0253-452f-9a2f-6770c4aafe4f))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp c6f26808-9fa1-48ea-90f1-0abe21c80fdb))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "Net-(C6-Pad2)") (pintype "passive") (tstamp edcc8882-a8cb-4638-9b62-7a5eee104f27))
(pad "2" thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(R7-Pad1)") (pintype "passive") (tstamp 02713b97-c3b1-474a-a03c-556b3d597fd7))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d6a59e3)
(at 136.525 78.66 90)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011bf9")
(attr through_hole)
(fp_text reference "C4" (at 2.46 2.54 270) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6739977b-5ee2-4c67-9fb9-14edb8f76854)
)
(fp_text value "100n" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 886a92dc-1b5b-4c6b-9753-11a414e46836)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91879ec2-07ad-4028-b4f5-83b9482f4934)
)
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 5c3aab1d-d571-4330-81bd-1b6d446d9e59))
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 6cd5c957-18f8-4b0c-a981-aefdb0d7f5fd))
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 821a6729-6604-47e3-9293-e681b903fa86))
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp ecab7def-3f97-406b-b669-083efbd1488f))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 642d7697-98f6-4d09-8cbb-6e8f0b3db0c6))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c1f4fc4b-3df4-4a58-8e28-c29bbcfd33c4))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp cedcfffd-fd37-4ba2-a011-b9b775046dc6))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp dc74b938-ac35-4cfc-aa52-f97618f5809c))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 0a6cb2ce-d2cf-4021-9f27-fa07bf872146))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 23562fb2-428e-4fd7-927e-c2d0c850ab99))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp a2981f20-7b0f-480a-9bff-fe7ece8ed9f4))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp f3a2265f-ef21-4440-840c-28e5c5f58893))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C4-Pad1)") (pintype "passive") (tstamp 120ee0f6-4728-4c8d-ba6f-ca68e5961834))
(pad "2" thru_hole circle (at 5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 992c310f-3d41-4d56-a2ab-aabc08a123f7))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d6a5c2e)
(at 111.76 67.945)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 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 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011cd0")
(attr through_hole)
(fp_text reference "R10" (at 3.81 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d7977d9c-e7e6-4020-ac89-72bc3bedbea9)
)
(fp_text value "47k" (at 3.81 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2ccd975c-384c-44b7-91d8-34fcfa8f2e27)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 50ece028-ef3d-4a71-b8d7-c2891934889a)
)
(fp_line (start 0.54 -1.04) (end 0.54 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 2ebe4a5e-f17d-426a-af9c-89e165719a76))
(fp_line (start 7.08 -1.37) (end 7.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 346605ee-9645-4406-8242-5e48e06dcce4))
(fp_line (start 7.08 1.37) (end 7.08 1.04) (layer "F.SilkS") (width 0.12) (tstamp 8ecd5182-64fe-41a0-b9d4-deed4223f6b1))
(fp_line (start 0.54 -1.37) (end 7.08 -1.37) (layer "F.SilkS") (width 0.12) (tstamp af4d99d5-9374-4504-802c-c7b721e28252))
(fp_line (start 0.54 1.04) (end 0.54 1.37) (layer "F.SilkS") (width 0.12) (tstamp bcb227b3-5f17-4a9f-b2b3-071ecbc84c26))
(fp_line (start 0.54 1.37) (end 7.08 1.37) (layer "F.SilkS") (width 0.12) (tstamp e2d8d3a1-0c9e-444b-9205-bf60f89f7cf1))
(fp_line (start 8.67 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 45fec700-f415-4596-afce-6346a4fe113c))
(fp_line (start 8.67 1.5) (end 8.67 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 467f07b0-b3e7-4e6b-80e6-fdd755a98916))
(fp_line (start -1.05 1.5) (end 8.67 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 79850575-0fe0-4eb8-bd81-79af6307bbd6))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp bd58c76b-f628-4951-9c0f-ddaea75d9e34))
(fp_line (start 0.66 1.25) (end 6.96 1.25) (layer "F.Fab") (width 0.1) (tstamp 22e997c4-b902-4667-ac5a-ada79b48169d))
(fp_line (start 7.62 0) (end 6.96 0) (layer "F.Fab") (width 0.1) (tstamp 43f6c212-49b2-47b5-ba24-ecb6500a1a6b))
(fp_line (start 6.96 -1.25) (end 0.66 -1.25) (layer "F.Fab") (width 0.1) (tstamp 777032d4-49cd-42ff-a831-9396fa2ee5ee))
(fp_line (start 0 0) (end 0.66 0) (layer "F.Fab") (width 0.1) (tstamp 824b860f-7d7f-4cec-a70d-ba58c6627e6d))
(fp_line (start 0.66 -1.25) (end 0.66 1.25) (layer "F.Fab") (width 0.1) (tstamp 913810ba-8edd-4907-aa11-296fc086e0a0))
(fp_line (start 6.96 1.25) (end 6.96 -1.25) (layer "F.Fab") (width 0.1) (tstamp cd158180-ff09-4956-98b6-b37d9e6fec8f))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "+9VA") (pintype "passive") (tstamp 6a22661a-b642-4bae-9a34-3f2b5d486e92))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "Net-(R10-Pad2)") (pintype "passive") (tstamp bad44c36-bef4-490e-aa6c-1051699de566))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d6a5d84)
(at 134.62 99.695 180)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011c38")
(attr through_hole)
(fp_text reference "C5" (at 2.5 -2.5) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb5f460d-65bc-43aa-8e76-c539dd5d921a)
)
(fp_text value "10n" (at 2.5 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b31b4579-73ff-4f20-8e59-ed9960db5867)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 59c5961b-bd41-4534-84a4-e9c8893686a9)
)
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 29a30ff0-2c17-4f23-a067-c6e18de1caab))
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 520e3f6b-d3b1-4e69-949c-908fec3848fd))
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp bfa0b523-8e35-4e2c-ac9b-c06a52efcb1c))
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp db243dce-13d8-4e1c-8941-9db100087802))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 165e1f54-d83b-42cb-a43b-001074a5cbb4))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7a7138d2-1cc2-423c-8bf1-d858fd653e5f))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c463c4b5-f9d5-4de5-b2ef-7290267b1efd))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c5b3b770-4bb7-499f-bd14-8e43df030ee5))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 2119c827-7a37-43ae-8962-c880911d27f8))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 490dd783-f30f-4c8f-a3af-dfd8e7350946))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 54a0056f-c077-4c14-a51d-0e764d234374))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp 653e4e9c-89e6-4455-b9e7-d5ae17674233))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C5-Pad1)") (pintype "passive") (tstamp 67e5c162-5b61-434c-803b-ddbe057ee7c0))
(pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 896b6310-532a-440c-825e-33a267efabc7))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 00000000-0000-0000-0000-00005d6a900d)
(at 138.43 87.63 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011c25")
(attr through_hole)
(fp_text reference "R7" (at 1.27 -2.54 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4caf5446-7d23-4e60-bafb-23074c726c99)
)
(fp_text value "100k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 42c0bde9-3ec2-43ce-8894-ae00f974bd60)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3dc8a0ea-ea0e-4b24-a45d-34680fd73dc0)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 37f55368-b291-45a6-9354-6017a4188a64))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 4cc9ebbf-967e-4cf2-b93a-7a2a050c7461))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7e992dcd-05ea-4ad2-b5b4-610195abf096))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 92c913ca-8dc7-4a42-9ef0-39e16c32fbe2))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c87a0525-4ec1-4371-8a24-b3df343867a8))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d5995471-cd67-4d46-b6c0-a74e3fe339ac))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp bcaffed0-0013-4724-871c-f5c055c97f8f))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 89b10df2-c7c2-4782-a7db-120ac18c553b))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 17 "Net-(R7-Pad1)") (pintype "passive") (tstamp 2d49135e-6174-46f2-8692-250add78e209))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(R6-Pad2)") (pintype "passive") (tstamp d118e6b4-d7f3-4e08-9a75-d1717416cc8c))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d6acebf)
(at 120.57 88.9 180)
(descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf")
(tags "C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f011c46")
(attr through_hole)
(fp_text reference "C3" (at 2.46 2.54) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17c70888-2fc1-4837-9fe8-2b0136b96540)
)
(fp_text value "100n" (at 2.5 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 555e25b1-2b67-4c0f-8851-b40de9218e24)
)
(fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a96f5628-a1ed-4853-9ee0-93bd0f0dc9e5)
)
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 00b399a8-b8e4-424c-b3a2-c9b833bda98a))
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 790f15e2-b505-4ffb-9fba-43b842b6c576))
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp ca088757-ea09-4de5-b995-9c04992a0e72))
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp f16b13f8-01d7-431e-a9cb-a2b42960695f))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 193979ce-1579-487f-930b-5f540ff33652))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8c06f439-7df2-42a6-93a4-85b0cdc639a6))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9e65362e-cc5b-46db-a3c4-58782f2cf95a))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d4bd3cd6-b65b-43c3-9841-01d27a15dfc1))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 5eb73cc1-759a-407d-88b7-e1f0e7536d3b))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7b7b5049-2744-4d6b-a1aa-b16868c9fda7))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp c96b0e0c-65a4-4a18-86a1-4a68b96a6e02))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp dd580a8e-33ef-4d8f-92fd-773e45395ad0))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C3-Pad1)") (pintype "passive") (tstamp 8577c81d-5f26-4f79-a486-0094ae9f04c0))
(pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Input") (pintype "passive") (tstamp 5777fab5-7d1f-43c2-ade6-88641ed17d30))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-8_W7.62mm_Socket" (layer "F.Cu")
(tedit 5A02E8C5) (tstamp 00000000-0000-0000-0000-00005ee55cb0)
(at 125.73 87.63)
(descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket")
(property "Sheetfile" "/home/sly/Creative/Electro/Pedals/Aurora/Aurora.sch")
(property "Sheetname" "")