-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBlacklight.kicad_pcb
9835 lines (9788 loc) · 428 KB
/
Blacklight.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 "Blacklight")
(date "2019-12-10")
(rev "r02")
(company "Nuclear Lighthouse Studios")
)
(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 "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(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-(C1-Pad1)")
(net 7 "Net-(C2-Pad2)")
(net 8 "Net-(C2-Pad1)")
(net 9 "Net-(C3-Pad1)")
(net 10 "Net-(C4-Pad1)")
(net 11 "Net-(C5-Pad1)")
(net 12 "Net-(C6-Pad1)")
(net 13 "Net-(C7-Pad1)")
(net 14 "unconnected-(J1-Pad2)")
(net 15 "Net-(C4-Pad2)")
(net 16 "Net-(C8-Pad1)")
(net 17 "Attenuator")
(net 18 "Net-(Q3-Pad3)")
(net 19 "Net-(Q3-Pad2)")
(net 20 "Net-(C5-Pad2)")
(net 21 "Net-(C9-Pad1)")
(net 22 "Net-(Q2-Pad3)")
(footprint "NLS:BarrelJack_Horizontal_Short" (layer "F.Cu")
(tedit 5BE2B3F8) (tstamp 00000000-0000-0000-0000-00005bfad432)
(at 115.57 62.865 -90)
(descr "DC Barrel Jack")
(tags "Power Jack")
(property "Sheetfile" "Blacklight.kicad_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 3b900766-bf66-4fdf-8493-64082f119413)
)
(fp_text value "Barrel_Jack_Switch" (at -6.2 -5.5 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c154da3-a786-40a9-bbab-0256a9b6042f)
)
(fp_text user "${REFERENCE}" (at -3 -2.95 -90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 86b2e547-dbfd-40ea-a6f3-24327078736e)
)
(fp_line (start 0.05 -4.8) (end 1.1 -4.8) (layer "F.SilkS") (width 0.12) (tstamp 23d1c061-0333-4407-8272-98597c2a094d))
(fp_line (start 1.1 -3.75) (end 1.1 -4.8) (layer "F.SilkS") (width 0.12) (tstamp 2e7ba343-9224-4087-a078-92b8285704e2))
(fp_line (start 0.9 1.9) (end 0.9 4.6) (layer "F.SilkS") (width 0.12) (tstamp 5efd8f67-b463-425b-be27-b502d5a7d0c0))
(fp_line (start -5 4.6) (end -8 4.6) (layer "F.SilkS") (width 0.12) (tstamp 9f536c2b-5773-4746-b3ef-c1cfaa044761))
(fp_line (start -8 -4.6) (end 0.9 -4.6) (layer "F.SilkS") (width 0.12) (tstamp c2966d89-d3ce-404c-9f46-589e525632d6))
(fp_line (start 0.9 -4.6) (end 0.9 -2) (layer "F.SilkS") (width 0.12) (tstamp f6a2e977-c623-412c-90a2-8b705f4243bc))
(fp_line (start 0.9 4.6) (end -1 4.6) (layer "F.SilkS") (width 0.12) (tstamp f75c85e1-cce6-475a-a46c-0e556c28ec1d))
(fp_line (start 2 -2) (end 2 2) (layer "F.CrtYd") (width 0.05) (tstamp 012e6207-117d-4bec-8065-91943eddfcc9))
(fp_line (start 1 -4.5) (end 1 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 03e269e5-f32e-465a-8b91-fb9520d4bad7))
(fp_line (start 1 2) (end 1 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 0c1867b5-a927-4c4a-b4f8-f2bef6e0214f))
(fp_line (start 1 -4.75) (end -14 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 1fe780bf-896f-4345-8b6d-740c066e4e23))
(fp_line (start 1 -2) (end 2 -2) (layer "F.CrtYd") (width 0.05) (tstamp 274f9e84-1443-4b90-8dc5-88d19d3a3fed))
(fp_line (start -1 4.75) (end -1 6.75) (layer "F.CrtYd") (width 0.05) (tstamp 3932655b-481b-4dfa-ac6b-16be8fec8c3d))
(fp_line (start -1 6.75) (end -5 6.75) (layer "F.CrtYd") (width 0.05) (tstamp 4c394091-f183-40f5-87c9-b53b6692820b))
(fp_line (start -5 4.75) (end -14 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 4e79ee84-3d2a-4f41-8c37-f672f3f6b9bf))
(fp_line (start -14 4.75) (end -14 -4.75) (layer "F.CrtYd") (width 0.05) (tstamp 5739aa0e-68ae-4e4d-8916-3b818dc3e935))
(fp_line (start 1 4.75) (end -1 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 654587a5-deea-49b9-bb8d-e4616873f635))
(fp_line (start 1 -4.5) (end 1 -2) (layer "F.CrtYd") (width 0.05) (tstamp 847972db-50eb-44ff-8325-08fa1b0d0483))
(fp_line (start -5 6.75) (end -5 4.75) (layer "F.CrtYd") (width 0.05) (tstamp 961543b1-6942-46e0-be59-e422876f7ef7))
(fp_line (start 2 2) (end 1 2) (layer "F.CrtYd") (width 0.05) (tstamp af7ddb82-be5e-4ff5-a37d-9695d664d3d2))
(fp_line (start -10.2 -4.5) (end -10.2 4.5) (layer "F.Fab") (width 0.1) (tstamp 11e200d6-3d1a-4edc-accb-f58c4ddca180))
(fp_line (start -13.7 4.5) (end 0.8 4.5) (layer "F.Fab") (width 0.1) (tstamp 15210143-76fc-44c8-b9ed-e1301485c7a9))
(fp_line (start -0.003213 -4.505425) (end 0.8 -3.75) (layer "F.Fab") (width 0.1) (tstamp 2dd82f1d-d051-47eb-a907-1f29f1b33fc9))
(fp_line (start 0 -4.5) (end -13.7 -4.5) (layer "F.Fab") (width 0.1) (tstamp 7570bf9b-2f15-4a7a-840f-c0512a5576df))
(fp_line (start 0.8 4.5) (end 0.8 -3.75) (layer "F.Fab") (width 0.1) (tstamp 91745c4f-afe9-41c9-84ea-3ac946685d4e))
(fp_line (start -13.7 -4.5) (end -13.7 4.5) (layer "F.Fab") (width 0.1) (tstamp d19030f6-e957-4ef2-a127-dd17da91f962))
(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 bde04e4f-c45f-41d2-8711-6e2a25cdcfb8))
(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 72a0066f-49a1-4276-ab9d-6a1ba7eb1dd0))
(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 a2dd1789-0860-462c-b0cc-cfc68a3a916a))
(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 "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" "Blacklight.kicad_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 ac9bb513-0c2b-4044-a888-624f9f00e642)
)
(fp_text value "Conn_01x06_Female" (at 0 15.03 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8d56d91-b9c0-4399-92fd-b7bdaf9a71b3)
)
(fp_text user "${REFERENCE}" (at 0 6.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4598427a-ad7a-48a4-be09-608f3c965d60)
)
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0cb5f8a8-ffba-4f26-bc9f-437cb76851ea))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5a5577bc-e74d-40c3-b661-61906bee4b60))
(fp_line (start -1.33 14.03) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp 735184ff-c596-46a4-86bb-8f30e1338e97))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 9779cb8c-8176-4031-9450-6ff3463896fd))
(fp_line (start 1.33 1.27) (end 1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp aaba2754-d1d9-4dcc-be01-b83140c3ee6e))
(fp_line (start -1.33 1.27) (end -1.33 14.03) (layer "F.SilkS") (width 0.12) (tstamp ea14f523-9d11-411b-bbd0-8eda7578e4d8))
(fp_line (start -1.8 -1.8) (end -1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp 14ca62bd-ba20-4062-bd4f-607e0be2b423))
(fp_line (start 1.8 14.5) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 7ecfc8d0-7c83-400a-8216-f007670e6c86))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp b3c8ac55-146c-4b69-8eb6-06e17f79f622))
(fp_line (start -1.8 14.5) (end 1.8 14.5) (layer "F.CrtYd") (width 0.05) (tstamp c555b5b2-cb99-4ef5-8629-b2f6c3d30c39))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 3e4bae9c-7dd7-492f-8a4a-e1873ce42e25))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8895f6ec-43c6-4c14-b9c9-ebacd1ff14c6))
(fp_line (start -1.27 13.97) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp a9098080-6ac5-4d4f-96ae-b6da303d820e))
(fp_line (start 1.27 13.97) (end -1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp b588b593-dcf0-4f15-81d7-ca6b23999a3b))
(fp_line (start 1.27 -1.27) (end 1.27 13.97) (layer "F.Fab") (width 0.1) (tstamp cb4156fd-d379-47a9-8c83-0d484fb7c1e1))
(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 f2528fff-9a31-4daf-86b5-7a0ec35d1be6))
(pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 14 "unconnected-(J1-Pad2)") (pinfunction "Pin_2") (pintype "passive+no_connect") (tstamp db2f5a51-9b69-474e-99a6-78001ed3f2c3))
(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 fd97f1ea-73d9-4eac-893c-f40c8ffb201a))
(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 e4b8dc65-4b64-4d1f-b706-c902a96b26c3))
(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 7d905f9b-ddeb-49aa-aef4-27c242b24195))
(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 364088b1-46c4-498c-870d-ece83be599f3))
(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 487f6d4d-3e27-4f17-a04e-e8142823e91d)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 327eb454-8f9e-4929-9641-755d7ca7dcb4)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1b37ed9-b692-4b86-9c33-bc1bee203d22)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 0debadf2-5217-42ea-a71f-2b6f238ecf9b))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 3c4ae803-11dc-4758-ac8e-dcd8968622d0))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp ace248b6-14df-4e26-85f1-f5c2685ae828))
)
(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 eeae2a1f-a85d-4331-97d3-df4a0605a610)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 443ff5cb-80be-420f-ac57-1edd7b190179)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ff81e0e-458b-44c7-8fd9-8cb063dc27a1)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 01197300-625e-4114-98e0-5e4629c90569))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 8dd4b55c-db06-47b3-a441-05367d4c1e51))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp aa710508-3730-48b3-8829-533763e3c09a))
)
(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 f7a18a7a-5660-49d3-a4d3-a72119819626)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4524eb7-7427-4a71-8879-f3599988d419)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b1720ba3-3e39-4432-a5bb-78ed34f8353a)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp 562dcbcd-865b-4c36-b23a-7c915136f5eb))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 23dcbc9f-7784-461b-9c40-959050ae94a4))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp f434bca1-74c8-4d9d-ab71-964ce9bb13cf))
)
(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 40c321bb-2c0f-4b59-b4d3-b96bd00952bd)
)
(fp_text value "MountingHole_3.2mm_M3" (at 0 4.2) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20a4ca3e-d4c6-48bb-b133-333d64871ef9)
)
(fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b7e7dbd-bf3d-44a0-ab1f-b8c64fa9f5f7)
)
(fp_circle (center 0 0) (end 3.2 0) (layer "Cmts.User") (width 0.15) (fill none) (tstamp e3d57be8-cd82-44a3-ae38-26fe04d97870))
(fp_circle (center 0 0) (end 3.45 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 7d13aa07-5cd1-4521-b1f6-0f9b47cd167a))
(pad "" np_thru_hole circle locked (at 0 0) (size 3.2 3.2) (drill 3.2) (layers *.Cu *.Mask) (tstamp ff04c2dc-5d04-4dbe-a3b6-b2b6e1086c43))
)
(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-00005d312997)
(at 92.71 91.44 -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" "Blacklight.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005af6e617")
(attr through_hole)
(fp_text reference "C1" (at 2.54 2.286 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a1fdcba-453a-4e35-8471-109be426d7d8)
)
(fp_text value "100n" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71f53a76-938c-4651-a2a1-5f1fe7bd74c6)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b48ae88-b230-4465-a42d-cc1e60c5ff9f)
)
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 2d1ff0a2-5eab-4df6-8b9c-086ec9c4183c))
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp e34a2307-a672-4a6f-b7d0-e3e0f3e07ae9))
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp f07839ab-45da-4356-9811-1cbfd359fcb7))
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp f3888dec-a5a3-4437-8728-9732e55c86b9))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2e5f0d8b-5121-4c7c-a5fb-e59d0fdfc069))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 52311d70-e669-4a91-a4f8-a36de02b5474))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp a2203cb0-2494-4c70-8e30-fcfdb11f0e3b))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d52ac167-d159-41b6-88db-b9ca07481ecd))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 56d10c1f-7f8d-415e-83f0-8f154599038d))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 81615472-86bf-4c1b-8ffc-7ef28d5dd7bb))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp c19e9ef8-acc2-461e-9858-8250cce7515e))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp e20aa6c3-5763-43a5-a399-6ca8d92221b6))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pintype "passive") (tstamp 6d4ac62c-07f7-4bac-93d2-9f4cb22a8bb5))
(pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Input") (pintype "passive") (tstamp bf028d3e-22ad-4164-9b63-c467285119d1))
(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 "Capacitor_THT:C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d3129bd)
(at 92.71 69.85 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" "Blacklight.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d32116a")
(attr through_hole)
(fp_text reference "C4" (at 2.5 -2.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 74c774ca-0aa6-4dc9-826a-60f227781a06)
)
(fp_text value "100n" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c9f876e-a3c7-47cd-a3a3-8a9cac6b31e2)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bb8302aa-24f5-446a-8a81-0cbc26dac97e)
)
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 23b839f1-785f-4187-9e2f-c870872bacee))
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 88bc9c62-18a2-4c21-bc0e-becd73f7e46d))
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp a51ec122-7960-46b0-9a54-e70fafe956e1))
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp c817f6cd-8570-4c74-8b06-ad405925f665))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 27077fec-c234-4aad-9b8e-8c4002866995))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8189d61c-e705-4c2b-9381-79538914d292))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9ecdf6c6-e63e-477a-8aa5-5405845b11e0))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c087d83a-0277-4327-b388-d0a2cf829142))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 6757b02c-9044-4918-aa57-f96f9a2d2f66))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 923b78ba-ba61-4c84-8d92-5e58ae1b9dc7))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp e692876d-9a3f-421f-95d7-05b5fc8a63b4))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp f14697cb-2f10-4225-abbe-497e3f394de3))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(C4-Pad1)") (pintype "passive") (tstamp 624de6a1-98df-42df-b64d-b4d18a995063))
(pad "2" thru_hole circle (at 5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 15 "Net-(C4-Pad2)") (pintype "passive") (tstamp c315338f-7eee-4132-92e6-c22de51a4044))
(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 "Capacitor_THT:C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d3129e3)
(at 138.43 91.44 -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" "Blacklight.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d33caa7")
(attr through_hole)
(fp_text reference "C6" (at 2.5 -2.5 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c24fe864-f213-4c87-be79-a3b5244c1d67)
)
(fp_text value "100n" (at 2.5 2.5 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 11d515a1-042e-4b14-b79a-8d5905b6f269)
)
(fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18bef64c-08b3-4837-a3b0-09c3c8aabb60)
)
(fp_line (start -1.22 -1.37) (end 6.22 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 0d783d86-4956-48c6-83c1-ea47619e281c))
(fp_line (start -1.22 -1.37) (end -1.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp 9e265ee3-d5ac-4d8d-a459-2b9bd37a8735))
(fp_line (start -1.22 1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp b4ea1566-2f81-4aae-9021-5b256889418b))
(fp_line (start 6.22 -1.37) (end 6.22 1.37) (layer "F.SilkS") (width 0.12) (tstamp cdda1bec-81d0-4a7f-a517-75748d33501a))
(fp_line (start -1.35 1.5) (end 6.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3f916427-d931-433b-8128-38dce3376348))
(fp_line (start 6.35 -1.5) (end -1.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5bcae056-a288-4e95-90f6-abc02da8cd76))
(fp_line (start -1.35 -1.5) (end -1.35 1.5) (layer "F.CrtYd") (width 0.05) (tstamp f622ecf3-94c8-40d4-8169-8ddd040fdbdd))
(fp_line (start 6.35 1.5) (end 6.35 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f92ecc85-8aa3-4e27-84d2-47d2061e7ace))
(fp_line (start 6.1 -1.25) (end -1.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 941cbba0-9985-4bb3-8667-0d935ff8f5bc))
(fp_line (start -1.1 -1.25) (end -1.1 1.25) (layer "F.Fab") (width 0.1) (tstamp b28deb24-d835-414c-abce-3d7f8ef60a41))
(fp_line (start 6.1 1.25) (end 6.1 -1.25) (layer "F.Fab") (width 0.1) (tstamp d9c21e79-cd69-46de-a9f0-a0b31cae2849))
(fp_line (start -1.1 1.25) (end 6.1 1.25) (layer "F.Fab") (width 0.1) (tstamp eb34d724-a1ad-47f5-847c-23798c6ad9c8))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(C6-Pad1)") (pintype "passive") (tstamp a7a3b441-31cf-43f2-b158-4f7080128dd5))
(pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 20 "Net-(C5-Pad2)") (pintype "passive") (tstamp 14e7e3d9-347e-48c1-a6af-0746b20480f5))
(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 "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d312a67)
(at 124.5 86.995)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
(property "Sheetfile" "Blacklight.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d35279b")
(attr through_hole)
(fp_text reference "C7" (at 1.25 -3.429) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8fdd81e-24ff-4db2-9534-eabda6c645e2)
)
(fp_text value "10µ" (at 1.25 3.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d97136e-e721-4251-83a2-a6a41eed2894)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c2b362be-b77e-4ab0-9ac4-5747e50b1cc5)
)
(fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 0410abd4-3d65-4f41-b513-a0f1f202c94d))
(fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 072e2a60-6724-46a8-a7ea-4ba54a2b6287))
(fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 08b56ea4-0a8b-49a0-bbd6-e9c3f215c962))
(fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp 0df63819-4f04-4563-8995-3f6f00d50ad8))
(fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp 10806f90-08e3-487f-a30b-0b72c5e3ab23))
(fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp 115574c8-b75d-45a7-bf6a-18a59ed78f5f))
(fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 127134f7-9072-41f5-b91f-039422bd692d))
(fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 13e3e8da-270a-42dc-a906-9272b9a4a19e))
(fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 14197e20-3df9-4f7f-9121-0ce4fec5c560))
(fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 14391f84-6852-44e1-822d-ff21648012c7))
(fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp 149777c6-943b-412f-a877-01088c61e457))
(fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 14a7cb74-0a28-45dd-808f-98e380937728))
(fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp 1a659525-01d3-4c7d-bd77-b81730f30508))
(fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp 1c5101c8-f67e-4bd7-95c4-1a350bda727e))
(fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1e0d125c-058b-4857-9db5-fc4ea5e0660b))
(fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1e7ae6bc-c21a-4b26-ba2b-6a7221dc80f0))
(fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 20872081-6264-486f-bd47-b7876f74314e))
(fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 24258794-e88f-4773-9021-2919fc84acdb))
(fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 25412feb-ca25-44d9-b1e8-2bf13b99542b))
(fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp 27a18703-8673-464b-865a-63e1701b240c))
(fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 297f93ad-2396-4d72-a971-b55259d1fb25))
(fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2b2fa08b-5ad3-4594-a0c5-83043bff3c2c))
(fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2b3a6fd1-1335-4ef8-9e98-f96e3b8f1683))
(fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp 2c7abd0e-ade8-4582-8c18-a7450382bef9))
(fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2e41b138-9a36-49d3-a364-890342cc4919))
(fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2ee50d7e-f862-4ff4-ab2a-85d6f64a837a))
(fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 34deb3a0-4210-41ee-b9c4-1a0484cae8f1))
(fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 36ee515e-aa9b-428f-a029-67800c87e801))
(fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 383c85cd-f167-4b79-8293-e9881baffeaa))
(fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp 3a02f0a3-89ca-40e5-a109-4aa002dfff85))
(fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3f949844-f436-4813-b7ef-8f46dcc95612))
(fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3ffc993a-0f98-4e26-a719-e204e713c0fc))
(fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 41e11e51-2f06-4a1e-a19f-0333c2fcb205))
(fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 43a0422f-be98-4e84-b1de-3796c10a394e))
(fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp 44221782-2eda-4b6e-ad74-b01e7d97c316))
(fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4925b088-97d2-4fbc-a40f-ec50b74756f6))
(fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4d267d0d-57d6-4ffc-a346-de1c23a9fb37))
(fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4e9c832f-d7f7-4a0c-be09-8326270580b3))
(fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp 51f2a802-300d-4d73-aed7-5851941b8dcd))
(fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp 578c066b-d08a-4165-8bdf-56eb3dc9ba52))
(fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 5d994bb9-06da-4329-9528-f04243050bb3))
(fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5f24d884-4d2a-4780-9e1a-eaa16930e074))
(fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 5fca324e-a157-411a-9e3a-c9a0181e587c))
(fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp 6192040e-d49e-4841-a11a-6fcef8e3b7ed))
(fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 625216d1-b1a0-48d1-ac03-0bf06dc3ee2b))
(fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6412e75f-9c6a-497c-9330-397c26e28648))
(fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6c983110-cda1-477d-9c88-816082c052b7))
(fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6d7afbb7-77a6-44df-b3f9-5af119b1721d))
(fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 6f33414f-50e0-453e-8fd1-98d5ee354446))
(fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp 771176bb-3e2e-4012-a221-a7addb473ec2))
(fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp 77e7f78c-bf18-483e-a411-d2c347eb8173))
(fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp 78721bdf-0371-46ae-b9f7-bce30794d79b))
(fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp 79ee4f33-4397-46de-b96b-0bac60bd3d2b))
(fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp 7a4863de-3ac3-44a2-ba5a-88f5e7944d48))
(fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp 7c3dad82-db9a-4269-a3cd-1d1b94d9bf39))
(fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp 7c404ba2-2fd2-4d3e-81d8-8db3a05f2576))
(fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp 7cb016bd-fa58-4b83-af09-d46470143448))
(fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7cce6bd8-737b-41b0-bcbe-e9c0e7be536c))
(fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7d7385ed-2a72-43a4-bdb1-6f7ebc450eab))
(fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp 7d8673a9-c793-40f4-89a7-e5a158279b05))
(fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp 82e3672f-8a59-4b3c-b84d-33ab253f0af6))
(fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 876dd4a0-edd8-4da8-89ec-740a1baf0ef2))
(fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 885c7462-08a5-49b8-8038-58744442b61b))
(fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8946aff4-a684-4523-8aa7-8533c2e76860))
(fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8a92c159-34da-4158-9433-ae43f45a87ca))
(fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8ad3249b-f276-4eb5-9651-ef07d209ed62))
(fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp 8bc01f7d-250d-44bb-87d0-60aadbdebb3a))
(fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8c38bc19-9802-4121-b584-90eb8217c06d))
(fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp 8f3ff6f5-22f8-497d-8481-3c3721bb7608))
(fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp 936b3c43-55f5-4bfb-82e8-ce06d069d971))
(fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp 93f3b88b-7603-482d-bb1f-1c7c3f1fa4ec))
(fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp 94ab2d31-c6a8-400e-a61c-55d9eab890f1))
(fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp 96557e9c-9829-4204-9b8e-06452d71cb4b))
(fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp 96889bad-f6da-4a5b-afe8-7bb0ca11eaa4))
(fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp 97d3c2ee-8f94-4f63-9b4b-de8548fafef3))
(fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9833d9b1-2d65-47cb-9774-385d15b10503))
(fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9996306e-36cd-40df-8ca2-939849b1d4b2))
(fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp 9b289ddb-debd-4f9e-ab96-dffce4714abe))
(fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 9c7d11fc-3a0b-4d7d-bd5b-f1f759900721))
(fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9d7a838a-1978-4c71-be9d-ed625dbbe166))
(fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9e01d706-843a-4440-8037-c921224d0424))
(fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9ecbe533-8417-437a-be42-dd7a156ad31e))
(fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a3decf11-324d-4212-835f-c2ccab098cc0))
(fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a582109b-1b7c-48fe-bacc-a3845acf7acd))
(fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp a5917f40-da8d-44c7-bdd5-fbd4ae7f931e))
(fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp a7f43362-9a9a-4ce3-85cb-3508d12b8361))
(fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp a933bcdc-5ff8-4006-8f02-f760e38fae51))
(fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a992f476-e761-4464-8c46-fa5fe4eb3e4f))
(fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ab83a01c-f826-4912-801e-cc567f2d9a0c))
(fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp afb803d4-0b9e-4668-bca2-9012dfdfe5ff))
(fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp b1950db3-9c07-434f-8ab7-68cf4e2d719a))
(fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp b24d4dd5-7b2e-48bd-b493-ed385cdcb969))
(fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp b5915f4d-6bc9-4e57-b7a2-a8df60bd2bc5))
(fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp b69458c4-4b21-4824-93f5-ccce207659f6))
(fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp b6e4b36d-55f6-4509-adf8-12bbfa214959))
(fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp b7828052-0bc4-454e-8e0b-578fa36548f7))
(fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp b7deb812-7098-4515-8dab-8443115baa35))
(fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp b85ebc8d-e967-423a-bec0-5e56640da2f5))
(fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b9575b37-5234-4015-9942-0e4f9cef7594))
(fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b976d008-2f77-42cd-a745-9ea0ce25c6b9))
(fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp c699f58c-8d2e-46c5-83be-26ccaef5ce2f))
(fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp c84b94c9-f93c-4406-a10d-2d5817a50213))
(fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ce1d81c8-ecc8-49e7-b05e-b272e33c9e49))
(fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp d2a9dc59-7d37-43f9-929b-b52d1a697061))
(fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp d3f6ce63-2fbf-42dc-a3c0-ef84641bd22d))
(fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp d75baeb7-d450-4f63-89ed-615567b87290))
(fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp d99de0d7-e7be-4eaf-9f17-ec4680553cf2))
(fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp e3408892-0ac7-4ff2-9dee-812d0e4786ff))
(fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e57df305-aa94-47b4-9063-6a0b319882e6))
(fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp eb1c455d-b478-4438-934e-830a8a8416df))
(fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp eba48d54-535c-4087-a2c7-3b0c05305b12))
(fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp ee1ff549-9a02-4112-9217-0234c57763e7))
(fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp eed75e2b-cc7e-4951-be1e-98ae36218ca6))
(fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp ef9406fd-33ec-485c-86ec-36cf40d98b85))
(fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f47eb3ad-0ae0-41ee-952a-4b4bbd2b1933))
(fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f820a99b-1db6-4d79-a6a1-05549ce11a8c))
(fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f9403fd9-9c69-487c-a2c0-ee399e182fe3))
(fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f9708c38-7f58-4aa3-bafd-68c8f32f6d6d))
(fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fd6c32bd-8f43-4596-8e1a-9dff243f5473))
(fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fd903e3f-187e-42de-a175-b9219cc95617))
(fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp c0cab63d-c3ee-47a4-b44c-ae3f67ba17cf))
(fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 9549b706-8948-4950-bdd3-9409d2c87a45))
(fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp 0e479a49-ba1a-4eed-b9d9-7086c0467271))
(fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp d5ccc1fc-39c1-49b2-a479-047089b31fb8))
(fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp f1e0c050-d32f-4a7b-9592-6e8164abcb66))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(C7-Pad1)") (pintype "passive") (tstamp 815e5222-15b8-41ff-902d-ecc04f747059))
(pad "2" thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 371d24ef-9643-4784-99bb-b323588371c1))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 00000000-0000-0000-0000-00005d312b6f)
(at 118.745 88.265 90)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor")
(property "Sheetfile" "Blacklight.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d36e87b")
(attr through_hole)
(fp_text reference "C9" (at -2.159 -0.127) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea336521-685a-4f6f-9073-4a8f14ea1606)
)
(fp_text value "47µ" (at 1.25 3.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d8c8a3b6-62ef-4087-85e0-fe5f37fe6771)
)
(fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75ed081b-13f7-46a1-bb46-d5b16c7e4a20)
)
(fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 02ff9b1b-7d5c-4f6e-bf93-0da1fc48d85d))
(fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp 0654a78f-310c-4a5b-897b-c87ab792b714))
(fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 097fda6c-081d-4f98-ba5e-f084b0c6cbf1))
(fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp 0a9e303b-ef51-4bc5-8c7c-c162eb6b2f6d))
(fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp 12d220d1-ca81-48cf-bb27-1e3f4c6f131d))
(fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 134274d2-d014-413f-a941-316edaa7df9a))
(fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 142776ee-1656-41e1-b32a-c3f41e9dbf55))
(fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp 14569077-cb34-4bd0-9cd6-bb6c8a880c5b))
(fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 1485be76-47d0-4583-a342-572d12e5256f))
(fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp 1691701b-2c9e-4601-83a2-9046efc92491))
(fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 187eedb2-3646-410a-9497-b88ea4246732))
(fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1ba0b2de-09f7-460f-a27d-871ebec0bce1))
(fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1bbfda7a-eb5a-43f7-bb76-a0a6ddd8a39b))
(fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 1dbda6f2-afea-4180-8042-dd56cd356cff))
(fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp 207f7dda-46ce-44c7-a125-d45b61f177f9))
(fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp 2091cdfc-8f3c-4d22-9249-d7cd3130d7a5))
(fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp 2131d5de-82b7-4e1b-aa06-284351537945))
(fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp 2290b3f9-b9af-45e1-b32c-40ea632cd9e6))
(fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 26bf1d0b-a9bf-4526-93d7-286e369f6698))
(fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp 275f906a-9f4b-4427-90e6-9644643cce7f))
(fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 32da0c7a-dd42-4cfa-9522-66aae242035f))
(fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp 32f05c17-eb68-4dcc-8240-c78f72d5a591))
(fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 33ce6257-d480-4be8-ae3a-28a2ad11d6e5))
(fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp 35a824fb-e994-41c0-b43b-469fe3af31e1))
(fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 39b8fbf6-9bc9-4cc9-93e1-2caacce3bfb8))
(fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp 3d27e423-5ef3-4dd9-b711-62f477ab549f))
(fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp 3eda620d-650d-4d55-a61a-5dad64ba7787))
(fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 43cde72a-5a91-498f-a09b-cfd4d63a2646))
(fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp 44fa178e-893d-4579-b0d6-541e4e347230))
(fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp 487f1ae3-3ebf-449a-a89a-aa80534ca4ae))
(fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 496db20c-ce20-42e1-834a-765f0b348653))
(fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 4b0076c3-1f3a-4a14-91ff-db7f57a08101))
(fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp 5030ab55-1c21-4d86-8c2d-2102fe84893c))
(fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp 51ef0e86-f531-46b2-8d1e-4c1b7e42c7d3))
(fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 54b18575-2283-4d13-9d0e-9da28d099f24))
(fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5e7e8b00-1dd8-487c-9b26-982243e1574a))
(fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp 6013987d-d856-4873-b9a7-a932eccad21d))
(fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp 62728c92-136f-4209-b50b-f83fc042a52d))
(fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp 65da4f61-c1fd-4460-bc81-03676a5275c7))
(fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6612496f-85f0-4284-aab0-94cc4dab5d10))
(fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6a06cacc-8b25-4ba4-b18e-30db2ab5ab48))
(fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp 6a2f2d03-1ffc-4cab-a431-4a29dc11cdc9))
(fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp 6a86fc4a-6e26-4185-9a29-12164833a11d))
(fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6b974156-553d-47d0-b2fd-c1500dc28c55))
(fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6d774bfd-7906-43db-881f-99fb60980654))
(fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp 71e07900-a819-498a-bc08-450761d9ebc2))
(fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 730ca685-24d0-4127-af5c-7cea16412bff))
(fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 762a6ca2-4202-4c07-baac-74c3d9d78f74))
(fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp 768b27e4-f5a4-479c-a5ad-c4b7ae4fe588))
(fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7a32bfeb-5f4a-4d3d-b7b1-a79aa9796fc5))
(fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7a76503f-3197-47ed-9625-3dc8f24e3cc0))
(fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp 7b02115b-bfee-4097-b7a2-98dda75aa418))
(fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7cd808cc-3d37-4ba8-8070-d94e32b9eb9b))
(fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7d8c4824-a845-4000-afc5-c389e101e9ab))
(fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp 81371c7d-2a8f-46ed-86c8-2c9dc4634003))
(fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 81c20ae2-a9f5-454b-aa89-2b7f0cf68ba6))
(fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp 81e4e90f-5e38-42d9-8245-0292cd25eb02))
(fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 83347912-c563-4f55-aa11-32d8b7281958))
(fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp 868c54e7-2036-46a1-88d2-ca509ae20cb4))
(fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 86e6f9be-56ba-42b1-b46f-996e9d0521a5))
(fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 88b0ae39-bb86-4a59-b3b5-50c10f9d8000))
(fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 8987416c-298b-41d7-9e3c-c142deb4e5c1))
(fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8b90114b-8cb6-4882-9d82-20004d5a6c24))
(fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8ce50b25-1b4e-4015-a9bd-eb0feb12f734))
(fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp 90163985-34c2-44dc-a1db-b65c9ca07817))
(fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp 91ba829e-8165-43c7-a087-6835ab1fc3ee))
(fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9305c776-0912-4308-9a53-f8af3d7196e0))
(fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 94acecd1-01b6-4924-a920-0343d94458c0))
(fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 983888e8-f060-4426-8582-6c55b35c67d0))
(fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp 983c3fa0-dce2-4e40-a280-57bee600b36e))
(fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 985b39a8-ca8b-42d1-989c-953175e7587a))
(fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 98b5ed9b-ed17-4614-a11a-d770a1431eac))
(fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 9bb71553-809d-4f95-a0ae-7ecd39fcc94e))
(fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9dc06913-c974-4a1f-9515-ae4d4a950609))
(fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp a00d9df9-8b55-42a4-aa52-84b236b92360))
(fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp a29aab39-6ce2-4254-b8bf-68e259b49d10))
(fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a4e8a3de-c538-42d7-95db-b51f32a05de7))
(fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp a6fd1e50-8ad4-4b6f-811c-8bf1cdd8b7e3))
(fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ab66039c-af83-4669-9942-16843a2ab163))
(fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp aba3082c-95e8-4956-92a1-4d1e1eb5da5f))
(fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ac17e357-985f-4112-b903-064eea44591e))
(fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp aff7e8db-606b-4922-8f53-31eda0d53671))
(fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp b000efec-aeed-4c56-8bd3-547a0df94c9e))
(fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b121e29e-215b-4318-bb4b-4f9a5a5daacc))
(fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp b23e1a2c-9f47-4738-bc49-122c5984c0cf))
(fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b272be0f-bef4-41f5-a567-e7f31790ffa0))
(fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b6eac522-041c-43f3-9f9c-ef1ecfb2aa78))
(fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp baa8af61-03b1-4a0a-9e69-1bdbac6477f1))
(fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp bab1c259-ad5e-4891-b516-161d8ab31fc7))
(fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp bbe1f354-0b8f-41ad-adc3-857cb4e04651))
(fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp bc3f50c6-899a-4a77-8fdb-9376d7e455a7))
(fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bea112b7-d1c8-42fd-98d0-f596784ed954))
(fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c0785d99-bc74-407d-932b-c116f1125c01))
(fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp c7b0c59e-9c4d-47ef-9370-b325a8754550))
(fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cb45ba2e-d29e-4c5f-b389-09ac749f67d8))
(fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp ccec1a06-163b-454f-974f-3fa0f6dcdc86))
(fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp cd3153a9-dc8c-4fa6-86c7-e2b5b24e0670))
(fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp d0bb0a0d-b8b3-4626-83bb-3b4f20dc8f37))
(fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d10e9eef-e905-41cc-9b8f-af8476524131))
(fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d3511b0c-23ec-4280-80ec-9bfa4cb68170))
(fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d873bdd7-fdf4-4c87-ada7-87676101fe65))
(fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp df0e97bf-85d0-4c19-b671-e047026eb3d8))
(fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp dfc55f55-ec18-42fd-ba66-8abde8b8f041))
(fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e04e379f-c7b2-4c65-bcd4-439cb7179b88))
(fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp e0613702-e0fd-48fb-8c17-e5d769384c2b))
(fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp e1cf2da2-562b-4373-a110-6ecfad98e5b2))
(fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp e37318e5-2e92-4e60-913e-6af396a2680e))
(fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp e3e0f67c-e442-4279-a752-a9b7704987e9))
(fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e47a16ef-c095-427b-ade2-2574915d2a3e))
(fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e4ee1fff-cb99-4068-8351-bd27944ba4a4))
(fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp e5f90e3d-e27b-43c6-8811-0199933fa44d))
(fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp ea480356-6c34-4d68-8b77-238d684a5e2f))
(fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp eb2a26cb-a44d-404b-864a-58d25d6fd452))
(fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ee898fe8-ffbc-490d-832f-141f0c55109d))
(fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp f001d9fc-47b7-4c88-aaa3-835629ab9fde))
(fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f10abff4-d457-43db-b429-2f6e31aa90fa))
(fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp f4205dcf-10bf-4e5f-8c99-84e7a13ce7a4))
(fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f9dcb6f4-310d-411b-929a-d519dc896bb8))
(fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ff00e61a-b23e-466a-b071-4f4275a2df80))
(fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ff965f27-21c4-428b-a863-1bfe9a63b54f))
(fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 9f05d43a-ee13-48ae-8061-15dcd4301392))
(fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp cc9561dd-7200-4b54-8d82-c3248003dd96))
(fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp 611b30ef-c436-43b7-b046-d4edc78a702a))
(fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp b50d980b-0184-433a-9915-e601623e9338))
(fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 859b6f9c-0963-4834-8d3d-fc6e7a5bc806))
(pad "1" thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(C9-Pad1)") (pintype "passive") (tstamp 532d59bf-a7d3-449e-a3bc-08341105d3fd))
(pad "2" thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 1f7222fd-8ccf-477e-973e-6e7de6be8669))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.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-00005d312c43)
(at 125.095 80.01)
(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" "Blacklight.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d347729")
(attr through_hole)
(fp_text reference "Q3" (at 2.54 -4.445) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db245d3b-4e7f-45ca-bdd7-47e6c4527e9c)
)
(fp_text value "BC547" (at 2.54 2.79) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1a5cfbb-f31a-4666-981d-31b4aaeb05df)
)
(fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d43e39d6-11db-4af9-89cf-4015661435b1)
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 717b099f-b7df-4e78-b09d-112f970a95a5))
(fp_arc (start 0.172801 -1.103842) (mid 0.678995 -1.832692) (end 1.4 -2.35) (layer "F.SilkS") (width 0.12) (tstamp 34a3e326-2580-46e4-bc60-96a9ccc4ceac))
(fp_arc (start 4.864184 1.122795) (mid 4.633903 1.509328) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp a5f27429-5825-43a6-8078-a25f4142f142))
(fp_arc (start 0.74 1.85) (mid 0.446097 1.509328) (end 0.215816 1.122795) (layer "F.SilkS") (width 0.12) (tstamp c31d63ec-3805-4237-bf8e-09d14f28df7e))
(fp_arc (start 3.65 -2.35) (mid 4.382279 -1.833196) (end 4.895458 -1.098371) (layer "F.SilkS") (width 0.12) (tstamp d0422ce7-fd83-4cb3-8d73-6cdd3699b0fa))
(fp_line (start -1.01 -3.55) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 011e0e9d-d6e4-49f2-8db0-9d51a466a359))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 93010497-05ca-4dbb-b333-5e276ec2b1b3))
(fp_line (start 6.09 2.01) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 95870cdc-6e52-482e-916e-36acda5a0b68))
(fp_line (start -1.01 -3.55) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp d1e26708-c0ed-4043-8ff8-8823008e5f56))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer "F.Fab") (width 0.1) (tstamp 88314e15-f8bd-45b3-b349-0f21e1b88820))
(fp_arc (start 2.54 -2.48) (mid 4.831221 -0.949055) (end 4.293625 1.753625) (layer "F.Fab") (width 0.1) (tstamp 45adf6a9-f766-4b97-aca3-3e0e64767244))
(fp_arc (start 0.786375 1.753625) (mid 0.248779 -0.949055) (end 2.54 -2.48) (layer "F.Fab") (width 0.1) (tstamp a802783d-9d64-40f1-9823-6d755e77964d))
(pad "1" thru_hole rect (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(C7-Pad1)") (pinfunction "C") (pintype "passive") (tstamp 35e7b520-5a46-4ad8-b7d9-2100a0398535))
(pad "2" thru_hole circle (at 2.54 -2.54) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "Net-(Q3-Pad2)") (pinfunction "B") (pintype "input") (tstamp ad0572b8-42cd-47cd-bf49-d8f317e60459))
(pad "3" thru_hole circle (at 5.08 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "Net-(Q3-Pad3)") (pinfunction "E") (pintype "passive") (tstamp a7cd0e77-f213-4567-9bcf-c8025079ca38))
(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 "Package_TO_SOT_THT:TO-92_Wide" (layer "F.Cu")
(tedit 5A2795B7) (tstamp 00000000-0000-0000-0000-00005d312c57)
(at 123.19 94.615)
(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" "Blacklight.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d3511d0")
(attr through_hole)
(fp_text reference "Q4" (at 2.54 3.175) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b43fe8f9-93c9-4c92-862e-4eb72937a355)
)
(fp_text value "BC547" (at 2.54 2.79) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b80f1c8-004f-4103-91a8-eb10525c7837)
)
(fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 156ced7b-0083-4f9d-adf5-962be4859af4)
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp 16f3cbde-3c48-4b78-a147-b82e7b05b157))
(fp_arc (start 0.74 1.85) (mid 0.446097 1.509328) (end 0.215816 1.122795) (layer "F.SilkS") (width 0.12) (tstamp 6c0c8c0b-f252-49d5-b374-11ac80145d58))
(fp_arc (start 0.172801 -1.103842) (mid 0.678995 -1.832692) (end 1.4 -2.35) (layer "F.SilkS") (width 0.12) (tstamp 90a654a2-219b-4709-8a3f-99e47de66aed))
(fp_arc (start 3.65 -2.35) (mid 4.382279 -1.833196) (end 4.895458 -1.098371) (layer "F.SilkS") (width 0.12) (tstamp c488c116-bc24-4fb3-8e9f-541b3b2cce92))
(fp_arc (start 4.864184 1.122795) (mid 4.633903 1.509328) (end 4.34 1.85) (layer "F.SilkS") (width 0.12) (tstamp fdd290b8-38f9-4bce-b807-c99edb00af16))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 1546b13b-b9ed-4cd2-8261-b997d90dd90f))
(fp_line (start -1.01 -3.55) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp 6a9ba9ba-8cf8-4ee7-80ac-3348661b7fc7))
(fp_line (start -1.01 -3.55) (end -1.01 2.01) (layer "F.CrtYd") (width 0.05) (tstamp dd2586ca-c743-41ec-b660-62cfe714dc81))
(fp_line (start 6.09 2.01) (end 6.09 -3.55) (layer "F.CrtYd") (width 0.05) (tstamp f0e02aef-117f-4cb3-b4d1-1efd0223db12))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer "F.Fab") (width 0.1) (tstamp 9cd10be6-d30b-4304-8588-c0cdd49d4d8f))
(fp_arc (start 0.786375 1.753625) (mid 0.248779 -0.949055) (end 2.54 -2.48) (layer "F.Fab") (width 0.1) (tstamp 21c383d0-ddd7-452d-8232-7adcf0a5bc26))
(fp_arc (start 2.54 -2.48) (mid 4.831221 -0.949055) (end 4.293625 1.753625) (layer "F.Fab") (width 0.1) (tstamp c51eb44a-fd78-44c9-ae26-9cfd1de45194))
(pad "1" thru_hole rect (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 16 "Net-(C8-Pad1)") (pinfunction "C") (pintype "passive") (tstamp 844a8389-748d-4292-9f6a-27263b767849))
(pad "2" thru_hole circle (at 2.54 -2.54) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(C7-Pad1)") (pinfunction "B") (pintype "input") (tstamp 24ee1dfb-bcf6-4aaf-9b3a-0cf3b7c720d9))
(pad "3" thru_hole circle (at 5.08 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
(net 21 "Net-(C9-Pad1)") (pinfunction "E") (pintype "passive") (tstamp bf6dde09-95ad-4d82-a45d-9e6e4b873a40))
(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-00005d312c66)
(at 97.79 96.52)
(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" "Blacklight.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c381fa2")
(attr through_hole)
(fp_text reference "R1" (at 1.27 2.286) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92500f60-47b3-4d32-98ce-79c38187e1f1)
)
(fp_text value "1M" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 498f9650-e607-4bf1-9dbf-41008ada7a40)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 94ac713d-8f0e-48a5-a6b0-f12c7cc2496b)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp e7c05b08-5e16-4293-a1c4-8ed66778840d))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 44e0ee91-66c8-41e6-aa8b-1d7619ed87e6))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4af83d1b-8954-4ade-ade6-9d8cfddca155))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8592f9af-c54c-4f73-8681-065d6e0dbc1d))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 99ba5729-e2d3-419b-86fd-06f1821ac016))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp eb4091f5-67bb-40d5-a007-844c47d04a2b))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp a424cd9a-74d6-4601-a1b6-e69304814e6f))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp fa9cabff-ef0b-4b4a-8183-0c974e081623))
(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 0467a243-d30e-4eeb-a2a5-be40ae55800e))
(pad "2" thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pintype "passive") (tstamp 3eda1d7e-650e-482a-84d6-4e5fb3bdbffe))
(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-00005d312c75)
(at 97.79 91.44)
(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" "Blacklight.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c381ee0")
(attr through_hole)
(fp_text reference "R2" (at 1.27 2.286) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85aec77e-9923-4823-9c85-d5b5595fc4a3)
)
(fp_text value "1M" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20523e8b-22be-4be3-897e-64fb4944482c)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp df54ce3d-c8be-4a8a-b2c4-01027e893895)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp abf139fd-63ab-40a7-a6d8-219f5a3919ae))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp bc69546d-845f-4d74-b1eb-5ed14d9b5216))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1c10e385-7889-4c53-a4b6-13fa5034f563))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 58ac8704-35f2-47e0-afeb-bb85cb098215))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c460da17-5476-4862-bf6a-b8d8df8c968a))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e73b49be-bfc2-459a-ba58-0eeeebb0c7ba))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 858f86f8-5a41-418e-97b4-9ccb453f3ce8))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 5ea2bcbd-7f86-4ba3-bf89-feb842969a0a))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp 9b58bc3a-e20c-4512-bcd3-b73db00ce77d))
(pad "2" thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(C1-Pad1)") (pintype "passive") (tstamp 5616414f-93a9-46ef-bfe0-0d420512564b))
(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-00005d312c84)
(at 104.14 86.36)
(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" "Blacklight.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c37e6b5")
(attr through_hole)
(fp_text reference "R3" (at 1.27 -2.286) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b5478457-39e3-4a38-83be-b3ffa474d285)
)
(fp_text value "10k" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2e46d521-e1ae-42f3-8d4c-9b782a0fa923)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 025f26ec-539f-443f-bb85-fb4dffb3a653)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 7919b821-41b3-4bdd-bf7d-a54a15d6b7a4))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp b3d075b7-5b6e-46ea-8d26-b8bcc5568c30))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0450a31a-2ddd-44d7-b235-8df8b8d75d3e))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 490dab68-8e0d-4d82-9291-333ed94d5a3f))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 76870e3a-fd06-478d-8ca7-49dc4ab21e76))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp ff0f6540-e995-42c4-a350-b865e4b9b7f8))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp 01c776c0-0db1-4228-97d9-3ec047f09749))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 845912d7-83a8-444b-90f8-79b259a9cce1))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "GND") (pintype "passive") (tstamp ce21f005-6550-4f8a-be78-77fdf1fbe5fd))
(pad "2" thru_hole oval (at 2.54 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(C2-Pad2)") (pintype "passive") (tstamp df7589bd-31a3-4c21-8043-14b11d2bc6f4))
(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-00005d312cb1)
(at 92.71 85.09 -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" "Blacklight.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005d321141")
(attr through_hole)
(fp_text reference "R5" (at 1.27 2.286 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f0fed84-5f49-4226-82cf-bfc55eaf3e79)
)
(fp_text value "1M" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0847c399-5328-44e7-8d03-c233e8267d6e)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5f2e9790-9b5f-4916-9f93-b46655a98cdb)
)
(fp_line (start 1.37 0) (end 1.44 0) (layer "F.SilkS") (width 0.12) (tstamp 41bc773c-d49e-457e-a557-9d079371859f))
(fp_circle (center 0 0) (end 1.37 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 7ee976c2-5923-4562-a6c7-2be3ac4a9711))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 70df600f-fce1-4667-83cc-95c3b349846c))
(fp_line (start -1.5 1.5) (end 3.59 1.5) (layer "F.CrtYd") (width 0.05) (tstamp a9fdd335-6f02-4ab4-956a-d78d4ae524ad))
(fp_line (start -1.5 -1.5) (end -1.5 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d1a0a33d-9f3b-4312-a50a-eadb5a8a8041))
(fp_line (start 3.59 1.5) (end 3.59 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e8862f28-80ec-425e-a838-b4bf29b9b0a1))
(fp_line (start 0 0) (end 2.54 0) (layer "F.Fab") (width 0.1) (tstamp c54e9e25-30ff-4b26-9b68-69b35229523c))
(fp_circle (center 0 0) (end 1.25 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 7e97492e-79f3-4a29-b443-cdc4418b34c7))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "Net-(C4-Pad1)") (pintype "passive") (tstamp 0297d57a-f83c-47d8-be6f-98ab2432eba8))
(pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "+9VA") (pintype "passive") (tstamp 09654cab-7514-4be3-907a-a065cc443398))