-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideopac_composite.kicad_pcb
4478 lines (4454 loc) · 212 KB
/
videopac_composite.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")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" mixed)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(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 "gerbers/")
)
)
(net 0 "")
(net 1 "Net-(C102-Pad1)")
(net 2 "Net-(Q103-Pad3)")
(net 3 "Net-(Q102-Pad1)")
(net 4 "Net-(Q101-Pad3)")
(net 5 "AUDIO OUTPUT")
(net 6 "AUDIO INPUT")
(net 7 "COMPOSITE OUTPUT")
(net 8 "Net-(C101-Pad2)")
(net 9 "VIDEO INPUT")
(net 10 "GND")
(net 11 "+5V")
(net 12 "Net-(Q101-Pad1)")
(footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.00mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 1844c1f2-10b0-4e5a-8210-9529ed367901)
(at 33.334888 64.389)
(descr "CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/619a8cd5-aff8-482c-a0a2-b1403bd534af")
(attr through_hole)
(fp_text reference "C101" (at -1.494888 -3.219 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 115d7cfb-83de-4c0d-ac33-b3fe009899ab)
)
(fp_text value "1u" (at 1 3.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 10534e13-7919-4d27-8f39-937e44d94502)
)
(fp_text user "${REFERENCE}" (at 1 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c9accac-e1b3-4053-93d1-8f6e74924a85)
)
(fp_line (start -1.804775 -1.475) (end -1.304775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 00515660-068e-4782-9829-570ee488b9ee))
(fp_line (start 2.961 -1.699) (end 2.961 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 04c85d5e-0fd0-43ba-82be-77a6c9272827))
(fp_line (start 2.321 1.04) (end 2.321 2.224) (layer "F.SilkS") (width 0.12) (tstamp 053caf12-a429-45f9-bf3e-c767c9afd121))
(fp_line (start 1.52 1.04) (end 1.52 2.528) (layer "F.SilkS") (width 0.12) (tstamp 091e6038-83f9-46ae-9461-1aa2e873bb49))
(fp_line (start 2.281 -2.247) (end 2.281 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 094e6ff9-d3b5-4362-a743-945214edf6a4))
(fp_line (start 2.841 1.04) (end 2.841 1.826) (layer "F.SilkS") (width 0.12) (tstamp 0b2b85c7-de88-4ec2-ad81-491d234c4f13))
(fp_line (start 1.08 -2.579) (end 1.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0bf0be6f-2f84-49d1-8431-ab84e97b20e6))
(fp_line (start 3.521 -0.677) (end 3.521 0.677) (layer "F.SilkS") (width 0.12) (tstamp 10243549-b663-4ffe-9284-f0318759fa4d))
(fp_line (start 1.28 -2.565) (end 1.28 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 10ddd25b-f490-4d65-8ce2-552da84fec2f))
(fp_line (start 3.561 -0.518) (end 3.561 0.518) (layer "F.SilkS") (width 0.12) (tstamp 112db88a-e813-4d96-80ac-f677ec798823))
(fp_line (start 1.721 -2.48) (end 1.721 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1235035e-7d29-421d-ba36-94bf89603718))
(fp_line (start 1.2 -2.573) (end 1.2 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 133c678d-451a-4cde-aef0-6a476c87922e))
(fp_line (start 1.801 1.04) (end 1.801 2.455) (layer "F.SilkS") (width 0.12) (tstamp 13944ff8-c585-4f4f-a132-7d8e9fdca003))
(fp_line (start 2.041 1.04) (end 2.041 2.365) (layer "F.SilkS") (width 0.12) (tstamp 16779ab8-0ff0-4e5d-af6b-e1deee959e2e))
(fp_line (start 2.081 1.04) (end 2.081 2.348) (layer "F.SilkS") (width 0.12) (tstamp 1a9aa7ce-667c-42de-ab08-55ad6daa75c8))
(fp_line (start 3.041 -1.605) (end 3.041 1.605) (layer "F.SilkS") (width 0.12) (tstamp 1ecdf28c-8e21-4fcb-b24f-18ddff22d44a))
(fp_line (start 1.68 -2.491) (end 1.68 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1ff00e31-7e37-4614-929d-892094529ed0))
(fp_line (start 3.121 -1.5) (end 3.121 1.5) (layer "F.SilkS") (width 0.12) (tstamp 20688cad-afb8-46f5-9f0b-172a58a495b3))
(fp_line (start 1.841 -2.442) (end 1.841 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 22617768-d0c8-4d6c-b229-e862abed7f66))
(fp_line (start 1.52 -2.528) (end 1.52 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2267c1bf-83dd-4d92-81ca-7eea8eadc580))
(fp_line (start 2.441 -2.149) (end 2.441 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 22767ef6-5abb-4b94-b3a6-2a41c2a867dc))
(fp_line (start 1.921 -2.414) (end 1.921 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2b1e367c-434c-4727-8f77-fd7888722bcc))
(fp_line (start 2.561 1.04) (end 2.561 2.065) (layer "F.SilkS") (width 0.12) (tstamp 2c4b4f2a-8a8e-459e-916f-bc8da6d428fa))
(fp_line (start 2.801 1.04) (end 2.801 1.864) (layer "F.SilkS") (width 0.12) (tstamp 2d3a589c-c2b8-4dff-9238-958da85b4e75))
(fp_line (start 1.24 -2.569) (end 1.24 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 32a6a89d-8e27-4c41-a8a1-866f443f001b))
(fp_line (start 2.161 -2.31) (end 2.161 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 35c57ccc-380c-42e5-a7ef-40dbbfe396aa))
(fp_line (start 2.601 -2.035) (end 2.601 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 36390ce2-3068-410a-8d17-9d62ecf6a5df))
(fp_line (start 1.961 -2.398) (end 1.961 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 37acb77a-4142-4275-bc77-22ae33700deb))
(fp_line (start 1.28 1.04) (end 1.28 2.565) (layer "F.SilkS") (width 0.12) (tstamp 38aad6d7-9f9c-461a-9a59-f6f920dfcb48))
(fp_line (start 1.32 1.04) (end 1.32 2.561) (layer "F.SilkS") (width 0.12) (tstamp 3bf538f9-0e4b-4f29-800e-3918debddaf4))
(fp_line (start 2.201 1.04) (end 2.201 2.29) (layer "F.SilkS") (width 0.12) (tstamp 3eb70d36-7828-482a-9593-65c34aa18546))
(fp_line (start 1.04 1.04) (end 1.04 2.58) (layer "F.SilkS") (width 0.12) (tstamp 4708e11c-92cf-41df-bb9b-34df1fa466cc))
(fp_line (start 1.36 -2.556) (end 1.36 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 49ce3b38-5471-489d-83c4-0b16140dc07d))
(fp_line (start 1.921 1.04) (end 1.921 2.414) (layer "F.SilkS") (width 0.12) (tstamp 4a314538-323a-476e-919f-0e900b663d50))
(fp_line (start 1.16 1.04) (end 1.16 2.576) (layer "F.SilkS") (width 0.12) (tstamp 4f3360be-e3ee-4c18-9bcf-c384debef338))
(fp_line (start 1.32 -2.561) (end 1.32 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 526b57b0-b37b-483d-9fc8-5f845ac22fbb))
(fp_line (start 1.24 1.04) (end 1.24 2.569) (layer "F.SilkS") (width 0.12) (tstamp 5816a7d1-8ec9-411b-9e6a-3394e664fd88))
(fp_line (start 2.761 -1.901) (end 2.761 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 583dd143-36d8-476d-8526-659b36517566))
(fp_line (start 3.201 -1.383) (end 3.201 1.383) (layer "F.SilkS") (width 0.12) (tstamp 587d91c6-4e19-4767-bce2-9a6ef2f48905))
(fp_line (start 2.641 -2.004) (end 2.641 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5a3354da-1115-46fb-8337-f3791939e8b0))
(fp_line (start 2.481 1.04) (end 2.481 2.122) (layer "F.SilkS") (width 0.12) (tstamp 5f38328a-7875-411f-b57b-04964e1e235c))
(fp_line (start 2.361 1.04) (end 2.361 2.2) (layer "F.SilkS") (width 0.12) (tstamp 601b0ced-1bb8-4000-b64f-f6b0ae01508a))
(fp_line (start 1.761 1.04) (end 1.761 2.468) (layer "F.SilkS") (width 0.12) (tstamp 633b1fab-9981-4063-bfff-2e56c3f7c044))
(fp_line (start 3.281 -1.251) (end 3.281 1.251) (layer "F.SilkS") (width 0.12) (tstamp 6b21f1b6-2180-4060-89a8-e2eaa0ef1dab))
(fp_line (start 1.4 1.04) (end 1.4 2.55) (layer "F.SilkS") (width 0.12) (tstamp 6c15bc8a-3376-4f91-8d4d-a955c435b0d3))
(fp_line (start 1.56 1.04) (end 1.56 2.52) (layer "F.SilkS") (width 0.12) (tstamp 75b2df67-f1c8-4922-a8d4-5d0eb1b6eea4))
(fp_line (start 1 1.04) (end 1 2.58) (layer "F.SilkS") (width 0.12) (tstamp 76b4f9a8-9d08-46ed-bfda-bcd3b36dc5f1))
(fp_line (start 1.48 1.04) (end 1.48 2.536) (layer "F.SilkS") (width 0.12) (tstamp 79251258-c8c0-4186-b120-3cf2c571b6ad))
(fp_line (start 2.121 -2.329) (end 2.121 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 799905c4-4da0-4eb2-a63d-f04ebd0e3def))
(fp_line (start 2.001 -2.382) (end 2.001 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 79a4edfa-ae7b-4524-b8aa-68c74d3a6e33))
(fp_line (start 2.041 -2.365) (end 2.041 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7ceaff05-d57e-45e4-9bce-b43bd39be784))
(fp_line (start 1.881 1.04) (end 1.881 2.428) (layer "F.SilkS") (width 0.12) (tstamp 80bee964-b1d0-482f-8201-b3fe953535ec))
(fp_line (start 2.801 -1.864) (end 2.801 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 82a4f9c3-7112-4429-82d3-9b360534c31f))
(fp_line (start 3.241 -1.319) (end 3.241 1.319) (layer "F.SilkS") (width 0.12) (tstamp 83cb6f61-bcb9-4b91-8ea6-aaa43b76c715))
(fp_line (start 2.521 1.04) (end 2.521 2.095) (layer "F.SilkS") (width 0.12) (tstamp 848251b4-b84a-4894-8b2f-1a72b466fae2))
(fp_line (start 3.441 -0.915) (end 3.441 0.915) (layer "F.SilkS") (width 0.12) (tstamp 85784899-6875-4559-9771-267a73ca4ab3))
(fp_line (start 2.641 1.04) (end 2.641 2.004) (layer "F.SilkS") (width 0.12) (tstamp 863a2fa5-cc81-43c1-8f46-cd3e70a7a26b))
(fp_line (start 1.881 -2.428) (end 1.881 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 865bd549-638b-4183-a0f7-38c6449f3b5d))
(fp_line (start 1.961 1.04) (end 1.961 2.398) (layer "F.SilkS") (width 0.12) (tstamp 881fe580-40a1-46a6-8d3c-63a17b6cec3a))
(fp_line (start 3.481 -0.805) (end 3.481 0.805) (layer "F.SilkS") (width 0.12) (tstamp 882ea305-cc45-466a-9378-45336f1576b5))
(fp_line (start 2.881 -1.785) (end 2.881 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8f09d352-4b70-45d3-a026-a1f7ee2b23c4))
(fp_line (start 2.401 1.04) (end 2.401 2.175) (layer "F.SilkS") (width 0.12) (tstamp 8f0eaf31-d77f-4f19-a1a3-c143c3340150))
(fp_line (start 3.361 -1.098) (end 3.361 1.098) (layer "F.SilkS") (width 0.12) (tstamp 8f1634e6-e16a-41af-8528-81b6b9c21d39))
(fp_line (start 2.721 -1.937) (end 2.721 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 903bbeaa-8a18-4278-964c-bc8f48005ef8))
(fp_line (start 2.921 -1.743) (end 2.921 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9071ad45-369b-41e9-9854-7e897e41ac92))
(fp_line (start -1.554775 -1.725) (end -1.554775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 92074700-6df8-47b9-a83e-5235cd336581))
(fp_line (start 3.001 -1.653) (end 3.001 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9263df24-69fd-45fc-9e8d-b293885eda2d))
(fp_line (start 2.881 1.04) (end 2.881 1.785) (layer "F.SilkS") (width 0.12) (tstamp 93c7b5dc-5a33-4814-9f21-02df27930755))
(fp_line (start 1.68 1.04) (end 1.68 2.491) (layer "F.SilkS") (width 0.12) (tstamp 94c98be6-b101-43eb-a8b4-932bf07f1347))
(fp_line (start 1.48 -2.536) (end 1.48 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 980d7ea7-3ff9-498b-b91b-57f4a8ccee38))
(fp_line (start 1.4 -2.55) (end 1.4 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 99aba317-5350-47a3-8fbf-a4589b90d05a))
(fp_line (start 2.481 -2.122) (end 2.481 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9a312eb7-c5da-4b65-99fd-b20ccfe9a7b7))
(fp_line (start 2.441 1.04) (end 2.441 2.149) (layer "F.SilkS") (width 0.12) (tstamp 9c69bf0f-a814-4340-9eda-cc5331123008))
(fp_line (start 2.561 -2.065) (end 2.561 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9d7e12a8-0853-4abb-9860-0a63f9e060ae))
(fp_line (start 1 -2.58) (end 1 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a0c16d27-68b5-4302-9cef-12b76b67939a))
(fp_line (start 2.241 -2.268) (end 2.241 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a23806ba-2769-4a11-aafe-f97080810006))
(fp_line (start 1.2 1.04) (end 1.2 2.573) (layer "F.SilkS") (width 0.12) (tstamp a744c5a3-a886-4040-afd8-7eaf68d9f030))
(fp_line (start 1.56 -2.52) (end 1.56 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a7bc0ade-fc9f-42a0-b7f7-ceefc4a6d500))
(fp_line (start 3.401 -1.011) (end 3.401 1.011) (layer "F.SilkS") (width 0.12) (tstamp a826d4f1-aa41-4d34-8070-125b5f8ee214))
(fp_line (start 1.64 -2.501) (end 1.64 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a91bf84a-06f4-4501-8d85-16f603d13270))
(fp_line (start 2.281 1.04) (end 2.281 2.247) (layer "F.SilkS") (width 0.12) (tstamp aa46c7ca-b67a-43a7-84b1-6e16dc08ec38))
(fp_line (start 2.121 1.04) (end 2.121 2.329) (layer "F.SilkS") (width 0.12) (tstamp b1eb7487-881d-49fd-9c49-c1925ccccc40))
(fp_line (start 1.36 1.04) (end 1.36 2.556) (layer "F.SilkS") (width 0.12) (tstamp b538f113-c8e2-43e0-b87a-2790e1cc7b42))
(fp_line (start 2.601 1.04) (end 2.601 2.035) (layer "F.SilkS") (width 0.12) (tstamp b6eb67c3-83cf-41c4-ae5f-523b1b398f99))
(fp_line (start 1.801 -2.455) (end 1.801 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ba10e1d7-65d2-476e-aba5-dfb878f7da87))
(fp_line (start 1.6 1.04) (end 1.6 2.511) (layer "F.SilkS") (width 0.12) (tstamp ba82788a-8c66-4aba-bf84-e6d6f3b9e43e))
(fp_line (start 2.361 -2.2) (end 2.361 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ba9f70d8-c6db-4e51-81e3-f57811451c41))
(fp_line (start 2.681 1.04) (end 2.681 1.971) (layer "F.SilkS") (width 0.12) (tstamp bf09bdf0-e4e6-4de7-b6af-962be9be8550))
(fp_line (start 2.401 -2.175) (end 2.401 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c17d6932-9b1f-48e3-8253-a58a9172bcfd))
(fp_line (start 1.12 -2.578) (end 1.12 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c1c89ab3-de89-41d3-96b7-c138e1e60ea0))
(fp_line (start 2.681 -1.971) (end 2.681 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c51dd1b4-0c6d-4258-ac0b-8e9e55a2f8e9))
(fp_line (start 2.761 1.04) (end 2.761 1.901) (layer "F.SilkS") (width 0.12) (tstamp c529a369-3058-488e-bed9-068c6e076b5b))
(fp_line (start 1.44 1.04) (end 1.44 2.543) (layer "F.SilkS") (width 0.12) (tstamp c7eecab7-8dc6-4912-8b64-ae9812f5e0da))
(fp_line (start 1.761 -2.468) (end 1.761 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cb11120e-f8e3-44a6-bc9a-9e29175bafdb))
(fp_line (start 2.321 -2.224) (end 2.321 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d116b3a6-fcc7-481c-b74b-efe8bb6f5ec8))
(fp_line (start 3.601 -0.284) (end 3.601 0.284) (layer "F.SilkS") (width 0.12) (tstamp d259ce58-2ee7-4d60-b227-98344eb01aa9))
(fp_line (start 1.08 1.04) (end 1.08 2.579) (layer "F.SilkS") (width 0.12) (tstamp d73b74ab-d195-481b-9b4f-035dda3740cc))
(fp_line (start 1.841 1.04) (end 1.841 2.442) (layer "F.SilkS") (width 0.12) (tstamp d7dc8332-4e7d-4d1c-9e13-94700025e229))
(fp_line (start 1.44 -2.543) (end 1.44 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d881e59e-0cb5-4ad2-8c73-2673ee4bd3f4))
(fp_line (start 2.521 -2.095) (end 2.521 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d8c8ea1c-1fb1-4712-b329-b1f26243e1ac))
(fp_line (start 1.64 1.04) (end 1.64 2.501) (layer "F.SilkS") (width 0.12) (tstamp dd656250-4920-4d0f-827a-0a2778c8fb0e))
(fp_line (start 2.841 -1.826) (end 2.841 -1.04) (layer "F.SilkS") (width 0.12) (tstamp dfa5b9a5-8402-4bbe-8735-a86f18a422e3))
(fp_line (start 2.201 -2.29) (end 2.201 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e49d4748-3a85-4ca6-90a1-9f5615a57f67))
(fp_line (start 3.321 -1.178) (end 3.321 1.178) (layer "F.SilkS") (width 0.12) (tstamp e5c30b4f-5724-4ded-837a-f05fbca60645))
(fp_line (start 1.12 1.04) (end 1.12 2.578) (layer "F.SilkS") (width 0.12) (tstamp e6db77ea-cf5d-4ce7-bd96-f9c07fae29c2))
(fp_line (start 3.081 -1.554) (end 3.081 1.554) (layer "F.SilkS") (width 0.12) (tstamp e7894d41-2a58-4c0e-82e9-ef47657d72af))
(fp_line (start 2.161 1.04) (end 2.161 2.31) (layer "F.SilkS") (width 0.12) (tstamp ea9516b5-e22c-4012-af32-b40f86085478))
(fp_line (start 1.16 -2.576) (end 1.16 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ec3fdd05-e13e-4990-a2e2-d860e9dc6510))
(fp_line (start 1.04 -2.58) (end 1.04 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ed22b38f-3e25-45e1-aba9-e8a8342d79f3))
(fp_line (start 2.961 1.04) (end 2.961 1.699) (layer "F.SilkS") (width 0.12) (tstamp ee1e5647-00c4-4e09-b39a-98c416fea369))
(fp_line (start 2.921 1.04) (end 2.921 1.743) (layer "F.SilkS") (width 0.12) (tstamp f563d085-c444-4ed8-a281-fa370c930721))
(fp_line (start 3.001 1.04) (end 3.001 1.653) (layer "F.SilkS") (width 0.12) (tstamp f5a788f0-463e-4ebe-9112-431372711b40))
(fp_line (start 2.241 1.04) (end 2.241 2.268) (layer "F.SilkS") (width 0.12) (tstamp f8c7401f-e334-4a21-8966-3cb30a833a3f))
(fp_line (start 2.001 1.04) (end 2.001 2.382) (layer "F.SilkS") (width 0.12) (tstamp f901e912-c299-49a9-b1d9-f9b63f35df46))
(fp_line (start 3.161 -1.443) (end 3.161 1.443) (layer "F.SilkS") (width 0.12) (tstamp fa206155-0a4e-4515-b9a5-293cce73181b))
(fp_line (start 1.6 -2.511) (end 1.6 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fae61bcc-af60-4c3b-a5ac-38ecf7e447d0))
(fp_line (start 2.721 1.04) (end 2.721 1.937) (layer "F.SilkS") (width 0.12) (tstamp fc2b3995-1ae9-4c57-8f87-db14b1275133))
(fp_line (start 1.721 1.04) (end 1.721 2.48) (layer "F.SilkS") (width 0.12) (tstamp fc4ec84d-2ddc-413b-88e9-2d76696c74eb))
(fp_line (start 2.081 -2.348) (end 2.081 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fdfbe73d-ed48-4ef5-9797-ec21138728f2))
(fp_circle (center 1 0) (end 3.62 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 62dae55d-ddf2-4ecb-a782-69e9849f6bc7))
(fp_circle (center 1 0) (end 3.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp ce1a0d46-3821-4556-a718-af5f03e50649))
(fp_line (start -1.133605 -1.0875) (end -0.633605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 54bb6ae9-d5aa-4d6d-a254-7a126b9bd0a2))
(fp_line (start -0.883605 -1.3375) (end -0.883605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp e5a6c81a-ec49-47db-9aa2-26aafd88766d))
(fp_circle (center 1 0) (end 3.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 05505705-1c51-4543-b0c0-5e702861747f))
(pad "1" thru_hole rect locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 9 "VIDEO INPUT") (pintype "passive") (tstamp 65efafec-cdd7-4a3f-a1ee-cc6a814f1e69))
(pad "2" thru_hole circle locked (at 2 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C101-Pad2)") (pintype "passive") (tstamp d9143854-5e50-479d-894e-2292ac2f10ef))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.00mm.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_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 1dc865d6-91ca-4bce-a4e2-d106d35266ea)
(at 64.262 80.645)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/2b17f3b2-860e-4405-ba87-71764e7e4d71")
(attr through_hole)
(fp_text reference "R108" (at 2.159 2.413) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e5aa4d54-1383-4f39-8cb1-68dc60ad6011)
)
(fp_text value "3k3" (at 7.493 2.413) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a76ae185-8174-4e3a-a3b1-fe5e79d2381e)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 92cc7bb8-d961-4459-a124-5e1a04a35b6c)
)
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 06f2b2cc-8207-4602-874c-ea79bdbf59eb))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 0f8cfa67-6c37-4c56-98c0-e134c16a7f3e))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 130e14df-0bb9-4bc2-a94e-2798d3a4486d))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 6d11a523-a34a-4da6-972b-b4a1a35d1f94))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp b8140339-f92f-4b10-a8fa-5d3eb2d4be7f))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp dd1b2aa3-e4a6-4e1f-ae6b-604f6f803358))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4e8ca946-9d9b-439e-bc95-c24b071db66f))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7fe296c1-765a-4f3f-917e-5edf3c66f471))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9a105352-7376-4d5b-949d-7f1c5e433c3c))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp f7a2cf2e-033d-4a1a-9ac8-18e3c1c37533))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 27f16326-8a20-4bdf-9b74-82573aa38051))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 3e07b450-804c-4caf-887e-aead0302313d))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 7dc92ef9-68ed-439a-b115-f95b89f4e0ef))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp b7e83495-41e0-4d1b-a69f-ad5353b0fbf6))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp f5e29a01-5095-4d89-9b66-50c35f086237))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp fb94b7ce-49d8-4abb-82dc-f4ea1b589315))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "AUDIO INPUT") (pintype "passive") (tstamp cb178ec7-69a9-4b50-9666-ba54d8e5dd9d))
(pad "2" thru_hole oval locked (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "AUDIO OUTPUT") (pintype "passive") (tstamp 1678457b-b831-4280-b4c3-abb6b68bc3f6))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-92_Inline" (layer "F.Cu")
(tedit 5A1DD157) (tstamp 28c4c20c-28de-486e-ac14-1ba8a1583c3a)
(at 67.945 70.231 90)
(descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/de8bbf22-69dd-4a5f-b54a-3327fe79e3b4")
(attr through_hole)
(fp_text reference "Q102" (at 1.27 -3.56 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b732744-10ac-44ec-b1a2-abcb394ddff0)
)
(fp_text value "BC558" (at 1.016 2.815 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 54eacb7d-2867-4e72-811a-c5c54d1c401d)
)
(fp_text user "${REFERENCE}" (at 1.27 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 601bb0ba-3345-45f7-9691-e6eb8e130b0f)
)
(fp_line (start -0.53 1.85) (end 3.07 1.85) (layer "F.SilkS") (width 0.12) (tstamp cb1474c8-d052-4e8f-bcd1-c09134fcee72))
(fp_arc (start 1.27 -2.6) (mid 3.672087 -0.994977) (end 3.108478 1.838478) (layer "F.SilkS") (width 0.12) (tstamp 69a60dd9-059c-4bbc-ae2d-475f3c47bfd8))
(fp_arc (start -0.568478 1.838478) (mid -1.132087 -0.994977) (end 1.27 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 83c22e08-cfff-426c-ab15-2a9efc597b88))
(fp_line (start -1.46 -2.73) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 3917bd37-e763-457f-b9cd-4f9e0876e0fa))
(fp_line (start 4 2.01) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 955933b1-5a61-47f2-9a2b-500fe0478b4b))
(fp_line (start -1.46 -2.73) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp b70c6f80-9f0b-49ff-9760-23326927c8f4))
(fp_line (start 4 2.01) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp ee8110c3-0362-4ef3-81a8-e51c3d98cf4c))
(fp_line (start -0.5 1.75) (end 3 1.75) (layer "F.Fab") (width 0.1) (tstamp 97e96f20-a3a6-4ca0-94cd-2f89b3f86ded))
(fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625) (layer "F.Fab") (width 0.1) (tstamp 407b9ab9-6895-41c5-a290-4c4029ac19ed))
(fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48) (layer "F.Fab") (width 0.1) (tstamp 5c4bdb84-08ff-4bb9-a950-16031317830e))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 3 "Net-(Q102-Pad1)") (pinfunction "C") (pintype "passive") (tstamp 71c68e87-688f-4ead-877f-cef4282abd41))
(pad "2" thru_hole oval locked (at 1.27 0 90) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 12 "Net-(Q101-Pad1)") (pinfunction "B") (pintype "input") (tstamp 861cb1ef-0326-4d34-968d-87edf295f995))
(pad "3" thru_hole oval locked (at 2.54 0 90) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 11 "+5V") (pinfunction "E") (pintype "passive") (tstamp e86bf267-1920-4e8c-a93b-1bc8b7decd96))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Inline.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_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 2f353db8-1131-4c50-a58f-e7120f2d5cbb)
(at 60.325 70.739 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/212f4d9c-555c-4b8e-939f-37b9f835a7f9")
(attr through_hole)
(fp_text reference "R105" (at 2.54 -2.37 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 214e408d-eebd-4ba1-8d34-b16b297484fc)
)
(fp_text value "220" (at 7.62 -2.286 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9cca626-7245-4480-a9b4-98fe421cf0c1)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3fc5f0c6-b153-4d2b-a97b-280ebd06937c)
)
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 260e2bfc-3d1f-4301-a099-84321e10b42f))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 345feea4-dfe0-4014-8fc7-6e19cb829648))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 8fd3fba5-6b35-4349-bb67-b92e580d66a2))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp c65adabb-bf2b-4d0f-b365-24edde90be92))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp e2721bc0-0e6a-4575-b0d1-362e0ffdee3c))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp fbf93733-a27a-4e7e-997f-2c561c90c6c2))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0d4cafd5-9200-4450-89c1-74895021fbf0))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 67c7fa9e-3da1-4e48-8feb-7ec15d89ffc8))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9496f63e-845f-4943-8ad9-b516b3e6ed71))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp a6ca0014-fc07-4732-885d-8a7960b7d4c3))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 04584e15-a59d-46d3-ab07-eafcbdcbf69a))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 15ef0b82-9a8d-4370-8daa-ff7077ea0d37))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 45aa5409-1d8e-4795-89ec-343a1e32f4d4))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 475720d5-8ac3-4830-bd72-28094d878073))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 7cac5419-bb58-4269-bbb7-df4c2c2b8dbc))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 82840feb-1565-4309-88d9-a3cc42b89ae3))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(Q101-Pad3)") (pintype "passive") (tstamp 4b6f546b-7074-48e4-926a-b0e846b19b48))
(pad "2" thru_hole oval locked (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "GND") (pintype "passive") (tstamp f3a0ea25-d1eb-4c16-8913-4117c57c7f2f))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 52edde95-211c-4b7d-be15-f61e89e344d7)
(at 74.295 66.802 -90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/87b6d238-d130-42b5-9034-70deca5e4069")
(attr through_hole)
(fp_text reference "R107" (at 3.683 -2.413 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b1a8dfa-cff6-4c40-b550-aa79b5a4ad04)
)
(fp_text value "75" (at 7.62 -2.413 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp abc4fe44-4040-4a31-8b9e-760af85e0980)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 942a5035-c37f-4502-86b5-fd488c39d34d)
)
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 48ac32b7-e9c5-46f5-acdf-454f7291c86f))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 665cd4c9-9c8a-4c3b-9cb1-e64fa27ce651))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 739630ca-1aa6-407c-973b-a0e49c00de40))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 9027460f-18ba-4c47-ac69-ecc9c921d98a))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp bbfbab36-d0c4-456d-8474-3a5783522774))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp bff14200-cb64-4f94-819e-a61d6c096886))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0b0f9524-06f2-4bba-92e9-03c2a386fd58))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 727ad92d-899f-4a54-982a-1df065989408))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 909aeec2-4587-45b7-a908-f22ef8156c24))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp db4eca14-2b11-4a86-a337-7c2c951e01de))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 6a3dd930-2f9e-49a7-b6e6-1af9239d0ebe))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 6e8c30bf-41e6-4b0c-812d-1aa63e1e0d83))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 8ea3b8f0-6404-4f23-92d8-520427bff065))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 99ecc0eb-c77b-49ca-898c-5fbd6eaab9c8))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp ad53ebb2-5e48-4e53-9a6b-575532b58e7d))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp e8fb4f67-b4ca-47ed-95a2-2aefb2346b30))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(Q103-Pad3)") (pintype "passive") (tstamp 0dcd1806-f911-4b1d-b880-15f30daf95fc))
(pad "2" thru_hole oval locked (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "COMPOSITE OUTPUT") (pintype "passive") (tstamp a7619ca1-8882-4bbb-ab87-f0a6bb01ea91))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-92_Inline" (layer "F.Cu")
(tedit 5A1DD157) (tstamp 5d6ec6aa-617b-4678-90e6-873c6f2ea965)
(at 45.868 75.692 -90)
(descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/0135481c-c517-4c55-882b-5c56cf49c92e")
(attr through_hole)
(fp_text reference "Q101" (at 5.08 -2.265 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 12938768-6b09-48a2-92d3-d4162060fe3f)
)
(fp_text value "BC548" (at 1.27 2.79 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8033d5c-39ac-474b-a2c8-93d20df2782e)
)
(fp_text user "${REFERENCE}" (at 1.27 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 31419d1b-5382-411e-8cc9-b817b406bf60)
)
(fp_line (start -0.53 1.85) (end 3.07 1.85) (layer "F.SilkS") (width 0.12) (tstamp cccbdec2-9263-4030-984f-18cbf73c9811))
(fp_arc (start 1.27 -2.6) (mid 3.672087 -0.994977) (end 3.108478 1.838478) (layer "F.SilkS") (width 0.12) (tstamp a0f04151-976a-4137-bc64-d8494c597608))
(fp_arc (start -0.568478 1.838478) (mid -1.132087 -0.994977) (end 1.27 -2.6) (layer "F.SilkS") (width 0.12) (tstamp faa4ce2c-c6d4-4468-bf60-faa85d5fd879))
(fp_line (start 4 2.01) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp 07432ef7-f9d0-4eb1-b5b1-f769e1e4a6b7))
(fp_line (start -1.46 -2.73) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 3d6e405d-b257-42d7-bc17-f4d5f512e730))
(fp_line (start -1.46 -2.73) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp e368c1bd-74b4-4c2c-9629-571d6bd56e6f))
(fp_line (start 4 2.01) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp faf07188-9ef4-4a41-b1f3-260812f9ce4f))
(fp_line (start -0.5 1.75) (end 3 1.75) (layer "F.Fab") (width 0.1) (tstamp 2ce86e7c-8cf9-462c-9873-f45714a044b4))
(fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625) (layer "F.Fab") (width 0.1) (tstamp a4506101-2b24-4ce9-8368-50b5a3cc0021))
(fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48) (layer "F.Fab") (width 0.1) (tstamp f0afe0bc-eefb-4177-a7fe-163aacd3e9c9))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 12 "Net-(Q101-Pad1)") (pinfunction "C") (pintype "passive") (tstamp 9cd6be62-894d-4512-bedb-330151173375))
(pad "2" thru_hole oval locked (at 1.27 0 270) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 8 "Net-(C101-Pad2)") (pinfunction "B") (pintype "input") (tstamp 5c22bc31-61ad-441c-a91b-64b07b48dd55))
(pad "3" thru_hole oval locked (at 2.54 0 270) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 4 "Net-(Q101-Pad3)") (pinfunction "E") (pintype "passive") (tstamp 09d94f95-f953-476f-83e3-f1c6db04e6b4))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Inline.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_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 67e8ea46-8f93-4e52-a12f-d65e36c75c12)
(at 50.927 80.899 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/ad197821-6bf3-4c59-8579-7819a6fc6542")
(attr through_hole)
(fp_text reference "R103" (at 0.635 2.413 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0dfa7ef6-4d6b-42ec-a352-71f44e1c6e23)
)
(fp_text value "270" (at 6.985 2.413 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc90b7de-7781-4831-a51f-244db8f3a1aa)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 73994233-cfbb-46fc-bde1-f075cce81f1a)
)
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 0168faa9-d860-4835-8533-3c0281553d85))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 2f5d54b9-4474-4308-b413-75bfc8f0fc82))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 539c227e-db6b-4e91-b095-7d06e559f157))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 97a26926-826d-45ba-9b18-a1eb92997b1a))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 980a5d8b-9836-4238-924d-62260610aa2d))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp fb12cf74-5353-446a-a54b-387b0555f1f1))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6b302d7f-0889-4c34-b438-a95807df14e6))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9243e9ef-e969-4eb9-863a-6dc63b457ba8))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d70d71d2-80b1-4982-b1c2-f42a719d7ba1))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp fb09791f-f653-4b4e-8ebd-bc3e3fd40daf))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 1830d059-004d-4e01-8b56-d96fd93235de))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 3cc87e98-8b3b-456e-bc83-c6f4116a440c))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 44234758-a0aa-4225-a0d7-15a67df397a1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 72836593-9aac-49aa-95d5-bb2be2f2fc28))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 7fc49a28-ef39-4928-b925-0faf035595b9))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp d20adab5-6b8c-4ec8-b2c9-867c66f997bb))
(pad "1" thru_hole circle locked (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "+5V") (pintype "passive") (tstamp 140fbce4-7b92-4ad0-b353-de2a0326111d))
(pad "2" thru_hole oval locked (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 12 "Net-(Q101-Pad1)") (pintype "passive") (tstamp 4c2c10ad-2486-41d6-9b81-79c94f3cca57))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.00mm" (layer "F.Cu")
(tedit 5AE50EF0) (tstamp 68af0a1c-fc44-47c5-a4fc-347a137bfc49)
(at 40.64 63.560888 -90)
(descr "CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/88037403-8a61-4bda-8d26-7c5f98524cf5")
(attr through_hole)
(fp_text reference "C102" (at -2.330888 -3.23 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93ecbc54-1069-4b0d-bb3e-7e6e55245785)
)
(fp_text value "10u" (at 4.765112 -0.127 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e0e85382-c40f-4f69-8f90-ef69e5f8a6de)
)
(fp_text user "${REFERENCE}" (at 1 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ec70002c-1527-44d0-8454-24971f256ecb)
)
(fp_line (start 2.681 1.04) (end 2.681 1.971) (layer "F.SilkS") (width 0.12) (tstamp 0010035a-a9a7-4bcb-adb8-a4092d263447))
(fp_line (start 3.521 -0.677) (end 3.521 0.677) (layer "F.SilkS") (width 0.12) (tstamp 045ae1be-ffc1-4cf6-82bd-fe9e4de71a1a))
(fp_line (start 3.081 -1.554) (end 3.081 1.554) (layer "F.SilkS") (width 0.12) (tstamp 0614f327-6a7a-44d4-9d67-c36e2db8131e))
(fp_line (start 2.521 1.04) (end 2.521 2.095) (layer "F.SilkS") (width 0.12) (tstamp 06b31fc4-bac3-48a8-8fcd-a5156fcaeb35))
(fp_line (start 1.52 1.04) (end 1.52 2.528) (layer "F.SilkS") (width 0.12) (tstamp 08bb1afe-a1b6-4526-a9d0-eb5567e3b97c))
(fp_line (start 2.401 -2.175) (end 2.401 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 092d354e-4500-48a9-9385-1bb1266a4345))
(fp_line (start 3.401 -1.011) (end 3.401 1.011) (layer "F.SilkS") (width 0.12) (tstamp 0b4bc92d-47bf-4db8-93c2-5b339fd65f97))
(fp_line (start 1.36 -2.556) (end 1.36 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0b6dfab0-dd27-46eb-a9e5-8242d595db25))
(fp_line (start 1.48 1.04) (end 1.48 2.536) (layer "F.SilkS") (width 0.12) (tstamp 0e787796-469b-455c-8998-94108cb860b4))
(fp_line (start 2.081 -2.348) (end 2.081 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 112a1f35-feba-4b1b-aa62-2dfd575904c8))
(fp_line (start 1.12 -2.578) (end 1.12 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 11502986-ef60-48a2-9107-6ce72ea61e0b))
(fp_line (start 2.481 -2.122) (end 2.481 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 13d8bfa6-d7d2-43b6-8fd6-aa77f4d342d5))
(fp_line (start 2.521 -2.095) (end 2.521 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 149ab623-2c7b-430a-a28f-5cc3d4305abe))
(fp_line (start 1.64 1.04) (end 1.64 2.501) (layer "F.SilkS") (width 0.12) (tstamp 16872fdd-8c6c-4def-88e5-e8d068ac77b4))
(fp_line (start 2.401 1.04) (end 2.401 2.175) (layer "F.SilkS") (width 0.12) (tstamp 1713e383-8152-433e-b906-2d7b5184a29a))
(fp_line (start 2.001 -2.382) (end 2.001 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1941ca2c-d892-4495-a20b-ad437d905d3a))
(fp_line (start 2.321 1.04) (end 2.321 2.224) (layer "F.SilkS") (width 0.12) (tstamp 1a26e25f-4eac-4fc4-bc00-b07f311ad649))
(fp_line (start 2.641 -2.004) (end 2.641 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1d8d01e5-72bc-4f45-8e6e-c4ea6d79abeb))
(fp_line (start -1.804775 -1.475) (end -1.304775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 1eb42abd-1deb-463e-b751-41637bf1529b))
(fp_line (start 1.841 1.04) (end 1.841 2.442) (layer "F.SilkS") (width 0.12) (tstamp 2203081d-979e-47e2-9a70-491e001277ef))
(fp_line (start 1.48 -2.536) (end 1.48 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 23a52edf-37ff-4d13-a513-732edf33aba9))
(fp_line (start 3.481 -0.805) (end 3.481 0.805) (layer "F.SilkS") (width 0.12) (tstamp 27ed34d8-a118-49fe-9a49-5f926b046bd2))
(fp_line (start 2.841 1.04) (end 2.841 1.826) (layer "F.SilkS") (width 0.12) (tstamp 28b1ad0f-a28b-4d92-8ad1-bed0bbe099e0))
(fp_line (start 3.441 -0.915) (end 3.441 0.915) (layer "F.SilkS") (width 0.12) (tstamp 2931709a-9157-440b-913a-682791df90c9))
(fp_line (start 2.041 -2.365) (end 2.041 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 29dfacdb-1eb9-4b28-8bff-0563d397cc7f))
(fp_line (start 1.6 1.04) (end 1.6 2.511) (layer "F.SilkS") (width 0.12) (tstamp 2b5bc44a-2b24-4594-b714-8783625cfa9c))
(fp_line (start 2.481 1.04) (end 2.481 2.122) (layer "F.SilkS") (width 0.12) (tstamp 2bd88b42-a583-4824-8baf-4ecac716152a))
(fp_line (start 2.441 -2.149) (end 2.441 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2d14feb1-4575-47c1-9b52-3c7fb892f819))
(fp_line (start 1.08 -2.579) (end 1.08 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 35effd3a-84fe-4268-bade-3a4b727c5e22))
(fp_line (start 1.04 1.04) (end 1.04 2.58) (layer "F.SilkS") (width 0.12) (tstamp 3853fd75-af9d-45da-8752-a36110490c69))
(fp_line (start 2.961 -1.699) (end 2.961 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 38660ac3-4961-47b0-bbb6-8ac190a31e1a))
(fp_line (start 2.161 1.04) (end 2.161 2.31) (layer "F.SilkS") (width 0.12) (tstamp 39ebcec8-a3b6-4a3e-9fcd-8e63a44228de))
(fp_line (start 1.721 -2.48) (end 1.721 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3a268ca3-11ec-4e73-b2ac-4dd642bf6645))
(fp_line (start 1.16 -2.576) (end 1.16 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3b33e527-3a1d-4400-a47b-0d64dc17884c))
(fp_line (start 2.361 1.04) (end 2.361 2.2) (layer "F.SilkS") (width 0.12) (tstamp 3c6bd4b2-c5be-4147-b1ca-58d1098cea52))
(fp_line (start 1.16 1.04) (end 1.16 2.576) (layer "F.SilkS") (width 0.12) (tstamp 3e51a5ff-e691-47a2-abae-8f2ef54ec1e9))
(fp_line (start 3.041 -1.605) (end 3.041 1.605) (layer "F.SilkS") (width 0.12) (tstamp 3e60d1a2-bbc3-478a-bd1a-757741907e9c))
(fp_line (start 1.56 -2.52) (end 1.56 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3ec2bf3a-6bed-4789-a0ba-6bc23d1c8673))
(fp_line (start 2.921 1.04) (end 2.921 1.743) (layer "F.SilkS") (width 0.12) (tstamp 42e77a2d-025e-46ec-bb34-90ed1dd15340))
(fp_line (start 2.561 -2.065) (end 2.561 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 44de3133-732d-4ed6-86dc-6c4e677f8cab))
(fp_line (start 1.44 1.04) (end 1.44 2.543) (layer "F.SilkS") (width 0.12) (tstamp 473f52cf-da61-4e6f-ab47-155b37334045))
(fp_line (start 1.68 -2.491) (end 1.68 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4845f7a6-c463-4580-b93c-913e05be62b5))
(fp_line (start 2.801 1.04) (end 2.801 1.864) (layer "F.SilkS") (width 0.12) (tstamp 48ca9c5f-eb5e-49de-a9da-0ca597051b3c))
(fp_line (start 1.24 1.04) (end 1.24 2.569) (layer "F.SilkS") (width 0.12) (tstamp 4ff1360d-0c02-44dc-8860-12e10db463d9))
(fp_line (start 3.321 -1.178) (end 3.321 1.178) (layer "F.SilkS") (width 0.12) (tstamp 51910664-0c82-4c00-bb5c-c64c5f325b78))
(fp_line (start 1.881 -2.428) (end 1.881 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 555560c8-4172-42a0-ae86-77cbabe399d8))
(fp_line (start 1.841 -2.442) (end 1.841 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 56018296-3059-4f5f-9b09-92295b605bc2))
(fp_line (start 2.601 1.04) (end 2.601 2.035) (layer "F.SilkS") (width 0.12) (tstamp 56204c44-7d34-46c7-b679-18f6c9e69de7))
(fp_line (start 3.361 -1.098) (end 3.361 1.098) (layer "F.SilkS") (width 0.12) (tstamp 59cde1ca-d4c4-4553-ab6d-ac30af0b2b13))
(fp_line (start 2.201 1.04) (end 2.201 2.29) (layer "F.SilkS") (width 0.12) (tstamp 5d503d09-3382-41b1-85dd-a984512b456d))
(fp_line (start 2.161 -2.31) (end 2.161 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 649e815b-47a4-4e5c-8705-e3392e9bf553))
(fp_line (start 1.36 1.04) (end 1.36 2.556) (layer "F.SilkS") (width 0.12) (tstamp 65f05c14-1509-40cc-941e-7749c670078f))
(fp_line (start 2.801 -1.864) (end 2.801 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 66fd56e5-8154-45e3-9505-45bde72e57fa))
(fp_line (start 2.321 -2.224) (end 2.321 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 683e4616-fa13-4097-bcc1-2376e72d1ccc))
(fp_line (start 2.641 1.04) (end 2.641 2.004) (layer "F.SilkS") (width 0.12) (tstamp 6a8366be-d002-4bae-b9ac-39d34d93e3fb))
(fp_line (start 2.721 1.04) (end 2.721 1.937) (layer "F.SilkS") (width 0.12) (tstamp 6ba0c1d1-ee8f-40fb-a07e-1d74af1d9483))
(fp_line (start 1.761 1.04) (end 1.761 2.468) (layer "F.SilkS") (width 0.12) (tstamp 6d7ff4f8-4e48-4266-a389-7862ef11491b))
(fp_line (start 1.721 1.04) (end 1.721 2.48) (layer "F.SilkS") (width 0.12) (tstamp 6dd06f3b-6585-4789-92d1-c7d667b0758f))
(fp_line (start 1.32 1.04) (end 1.32 2.561) (layer "F.SilkS") (width 0.12) (tstamp 6f655fc0-d04c-4f7b-bea3-077023f41e79))
(fp_line (start 1.921 1.04) (end 1.921 2.414) (layer "F.SilkS") (width 0.12) (tstamp 71f4d77b-32f4-4526-88c3-73ca3bc131ff))
(fp_line (start 2.681 -1.971) (end 2.681 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 74f20975-b791-4740-8a7d-cea55a2ffbbe))
(fp_line (start 1 -2.58) (end 1 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 761d2383-5644-4944-8337-2c09422acada))
(fp_line (start 2.281 1.04) (end 2.281 2.247) (layer "F.SilkS") (width 0.12) (tstamp 76f2d397-8f3c-4799-a9c5-6ee7cbb8d293))
(fp_line (start 1.2 -2.573) (end 1.2 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7929556d-425b-44d6-ad09-9242e3f58d81))
(fp_line (start 1.801 -2.455) (end 1.801 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7b6bd202-6f9a-4305-8f5e-819afa2086ac))
(fp_line (start 2.241 1.04) (end 2.241 2.268) (layer "F.SilkS") (width 0.12) (tstamp 7f59aa45-15d3-4325-a63d-531a3689476d))
(fp_line (start 2.201 -2.29) (end 2.201 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 82c0862b-b2b6-454b-9847-34bbc9fe705f))
(fp_line (start 1.68 1.04) (end 1.68 2.491) (layer "F.SilkS") (width 0.12) (tstamp 8364e1fe-be63-4cda-8000-a57e716c4c1e))
(fp_line (start 1.2 1.04) (end 1.2 2.573) (layer "F.SilkS") (width 0.12) (tstamp 84bc6553-e89b-4e2b-a228-bd1ade5ad5fb))
(fp_line (start 1.761 -2.468) (end 1.761 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 85ef2f21-0e87-4325-8ce5-1dae2df290ef))
(fp_line (start 3.001 1.04) (end 3.001 1.653) (layer "F.SilkS") (width 0.12) (tstamp 88acc4b6-d84a-4ce3-b946-4bec86856147))
(fp_line (start 3.201 -1.383) (end 3.201 1.383) (layer "F.SilkS") (width 0.12) (tstamp 8f984dab-d5cf-438c-a0a0-7eb63140f073))
(fp_line (start 1.921 -2.414) (end 1.921 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 90a9332e-08c5-4621-8d3b-697a29a495e4))
(fp_line (start 3.001 -1.653) (end 3.001 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 941886a1-d916-4451-9e55-a8c51bfa1bee))
(fp_line (start 3.241 -1.319) (end 3.241 1.319) (layer "F.SilkS") (width 0.12) (tstamp 988758bf-9d3b-4782-82e0-2d41204f4051))
(fp_line (start 1.24 -2.569) (end 1.24 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9ae17316-7da4-4230-9dd0-d52aea7f8c93))
(fp_line (start 2.561 1.04) (end 2.561 2.065) (layer "F.SilkS") (width 0.12) (tstamp 9c06488a-e7bc-409e-8b31-f9e814d13255))
(fp_line (start -1.554775 -1.725) (end -1.554775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 9c2a6d16-8099-432e-929b-03afcf27352c))
(fp_line (start 1.08 1.04) (end 1.08 2.579) (layer "F.SilkS") (width 0.12) (tstamp 9f45c2e1-5058-4d3e-94a1-6b3749545d34))
(fp_line (start 2.721 -1.937) (end 2.721 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a020a071-0244-47c0-9e2b-097ad4bcfb0b))
(fp_line (start 1.44 -2.543) (end 1.44 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a09e391f-19a5-46ee-9dce-6c3afc0faeb6))
(fp_line (start 2.081 1.04) (end 2.081 2.348) (layer "F.SilkS") (width 0.12) (tstamp a0e58770-9000-455d-98f5-a535604e163e))
(fp_line (start 2.241 -2.268) (end 2.241 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a23bfa5e-d765-4f85-819d-78c0611194d4))
(fp_line (start 2.881 -1.785) (end 2.881 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a26f62f5-c509-4ae7-ab39-ec95553d20c3))
(fp_line (start 2.121 -2.329) (end 2.121 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a583d9ea-1e5f-4cb4-b002-da1b08654949))
(fp_line (start 2.041 1.04) (end 2.041 2.365) (layer "F.SilkS") (width 0.12) (tstamp a693a944-8e73-4361-a15f-5fc9a13a8527))
(fp_line (start 1.4 1.04) (end 1.4 2.55) (layer "F.SilkS") (width 0.12) (tstamp a76cb906-816f-4ca6-bd29-e27247872620))
(fp_line (start 2.001 1.04) (end 2.001 2.382) (layer "F.SilkS") (width 0.12) (tstamp ada2bafc-40cb-4d29-9269-ce160ab48fcc))
(fp_line (start 2.601 -2.035) (end 2.601 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b21da85d-25d5-4850-9832-05d4fa293786))
(fp_line (start 2.841 -1.826) (end 2.841 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b74d0c12-845d-4162-a938-68d028f8d527))
(fp_line (start 2.961 1.04) (end 2.961 1.699) (layer "F.SilkS") (width 0.12) (tstamp b8edd87e-774f-42ec-b67a-4a288f6ebed0))
(fp_line (start 1.28 1.04) (end 1.28 2.565) (layer "F.SilkS") (width 0.12) (tstamp ba0ee18c-9549-4b99-a18a-24e941e5cfd1))
(fp_line (start 3.601 -0.284) (end 3.601 0.284) (layer "F.SilkS") (width 0.12) (tstamp bde8ecb6-8f54-4c81-a756-d3f5f8297c6e))
(fp_line (start 1.881 1.04) (end 1.881 2.428) (layer "F.SilkS") (width 0.12) (tstamp bfffa70d-c62c-410c-84a8-d30aa67f9193))
(fp_line (start 2.441 1.04) (end 2.441 2.149) (layer "F.SilkS") (width 0.12) (tstamp c9c437a5-3127-4e17-93f1-fcd6223b2daf))
(fp_line (start 2.281 -2.247) (end 2.281 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cdec2960-8356-43b8-a368-3ab4282311fc))
(fp_line (start 1.6 -2.511) (end 1.6 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cebeb080-fe76-40f5-9900-c193c3760ee3))
(fp_line (start 1.56 1.04) (end 1.56 2.52) (layer "F.SilkS") (width 0.12) (tstamp d067cfdd-9cbd-47ea-b843-39bf31c3907e))
(fp_line (start 3.161 -1.443) (end 3.161 1.443) (layer "F.SilkS") (width 0.12) (tstamp d360bde8-6f46-4b87-a912-9ae25fab52db))
(fp_line (start 2.761 1.04) (end 2.761 1.901) (layer "F.SilkS") (width 0.12) (tstamp d3a3eadb-4cd5-4775-8f20-29a2c1213a1e))
(fp_line (start 2.881 1.04) (end 2.881 1.785) (layer "F.SilkS") (width 0.12) (tstamp d56cea32-adad-4a1b-8533-9b8ddaf69a01))
(fp_line (start 1.28 -2.565) (end 1.28 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d6c42d54-c6c2-425a-a6a5-19a8133adb07))
(fp_line (start 2.361 -2.2) (end 2.361 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d78b13f4-2b0a-4810-871c-f48040b9220f))
(fp_line (start 1.52 -2.528) (end 1.52 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d817a4af-a300-49a0-bdcd-6ec71caf4621))
(fp_line (start 3.121 -1.5) (end 3.121 1.5) (layer "F.SilkS") (width 0.12) (tstamp d935a1cd-5257-48ad-ac58-fce18632b71e))
(fp_line (start 1.32 -2.561) (end 1.32 -1.04) (layer "F.SilkS") (width 0.12) (tstamp df42436b-ed24-42f0-995f-306f770e3594))
(fp_line (start 3.281 -1.251) (end 3.281 1.251) (layer "F.SilkS") (width 0.12) (tstamp dfdede7d-8b78-4b16-994b-3af415cf5866))
(fp_line (start 1.12 1.04) (end 1.12 2.578) (layer "F.SilkS") (width 0.12) (tstamp e1bf30db-66ce-4074-b629-47f16c2b8378))
(fp_line (start 1.04 -2.58) (end 1.04 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e22e9ca0-b889-4189-99da-ee75afdcf3c6))
(fp_line (start 1.64 -2.501) (end 1.64 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e364360b-a897-483b-a4a7-a964e0228b8a))
(fp_line (start 3.561 -0.518) (end 3.561 0.518) (layer "F.SilkS") (width 0.12) (tstamp e4015ad2-3e2f-419e-9a88-e59ab9c6e5c3))
(fp_line (start 1 1.04) (end 1 2.58) (layer "F.SilkS") (width 0.12) (tstamp e8ec03d5-ac27-47af-8fc6-05040833200c))
(fp_line (start 1.961 -2.398) (end 1.961 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ea6d3061-13c4-4746-914e-a9591b4c7d84))
(fp_line (start 2.761 -1.901) (end 2.761 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ec662d3c-e31e-42ce-a52a-54791008adae))
(fp_line (start 2.121 1.04) (end 2.121 2.329) (layer "F.SilkS") (width 0.12) (tstamp edd4787d-6336-490e-9308-c50dfaa6eff9))
(fp_line (start 1.4 -2.55) (end 1.4 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f39940f5-324d-4183-bee2-95daf1e93a8a))
(fp_line (start 1.801 1.04) (end 1.801 2.455) (layer "F.SilkS") (width 0.12) (tstamp f3ca30a8-8e7b-4ca7-9eef-98002b3a5ee1))
(fp_line (start 1.961 1.04) (end 1.961 2.398) (layer "F.SilkS") (width 0.12) (tstamp fd5985b7-b4d3-44c3-8560-a22bb294dbad))
(fp_line (start 2.921 -1.743) (end 2.921 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fe2d4056-0ae3-40ca-b312-46275940a918))
(fp_circle (center 1 0) (end 3.62 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp d21d5d47-0d67-4a80-848a-647eaee9d7c0))
(fp_circle (center 1 0) (end 3.75 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp d641d363-0a8f-400f-8c5d-12ebee365869))
(fp_line (start -0.883605 -1.3375) (end -0.883605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp 284132f2-8c49-491a-9b8e-f6cffd426317))
(fp_line (start -1.133605 -1.0875) (end -0.633605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 702e11aa-e131-4f3e-9cb9-c36bd9e55c7c))
(fp_circle (center 1 0) (end 3.5 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp a8b23312-d38b-4f0c-bdfa-869245cab8a5))
(pad "1" thru_hole rect locked (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C102-Pad1)") (pintype "passive") (tstamp 01457e33-66ac-49e0-9033-79afcb1684db))
(pad "2" thru_hole circle locked (at 2 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "GND") (pintype "passive") (tstamp 9ab0b5f4-e99e-42fa-b975-ecd83952340a))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.00mm.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_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 70213c56-33c1-4596-aa17-1c6bbd64f705)
(at 50.673 63.373)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/ef7f261c-8891-46b3-96dc-3e920ebe6b17")
(attr through_hole)
(fp_text reference "R102" (at 2.54 -2.032) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7aef9e20-2ee0-4ed3-ac17-72904e2ade82)
)
(fp_text value "3k9" (at 7.112 -2.032) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e196f6bf-92f9-4c4e-8398-967246776872)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b969286c-aed1-47a3-810b-ee4c743eb5e9)
)
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 231930a8-5cea-46ad-ad9f-0d12ecb4d662))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 2c5a65a7-8b1e-4bb2-8448-d09dbad75290))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 2efe839c-d499-45ed-910a-410b13b29fad))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 45b11813-3c13-4838-a829-e1eb453eb6fd))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 7063d5a9-7e89-4301-a9b6-c6f3c946adcc))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp fcc7a442-af24-43dd-8ae1-e55722ace521))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 38983155-b87a-497c-9b83-4071135b9376))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 68fb0d99-97aa-4450-86c3-6390f2ee34fa))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7dc82e33-5b51-4be2-9eb6-a8d120f3e7fd))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp a4576e72-f5ad-49f7-98ae-01b35f6debf6))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 2aa8a4c4-ec8f-4b72-9729-931021b37559))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 5108baf9-813d-41db-90ac-e4198ce018e9))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 6d087efe-dcfe-4f99-87fa-aca16eac0bbd))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp d0eb2768-bb97-4e38-bc3c-5e38821b161a))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp d4655a23-c468-4a8b-99e6-64b8fe288202))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp fae77dfc-a67e-4992-bcf4-c4f1868262b2))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C102-Pad1)") (pintype "passive") (tstamp c2dc1a93-ffe3-4c01-9823-fa2679931e56))
(pad "2" thru_hole oval locked (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "GND") (pintype "passive") (tstamp 7de2f34a-2e62-4992-85b9-f0e8ac562c2e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 7256a9ae-e5a1-48b4-808a-7e919b5bff81)
(at 55.626 80.899 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/88b3b48d-6050-4375-9d78-462a164c0988")
(attr through_hole)
(fp_text reference "R104" (at 2.413 2.286 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8b06ca0d-dbf7-49e4-81d1-0cb5bb59161c)
)
(fp_text value "470" (at 7.366 2.413 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6eafce75-f647-4f2f-ba41-2fb3afad3dcc)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c465ddcb-73d0-4402-8eae-ab01475ed096)
)
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 1c2e9ebc-31a5-4723-aa8a-ce9ca94db9c1))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 23bab706-1764-4c61-9cdf-ad78fa766826))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 59398cac-fd77-444e-9c8c-50373aefc347))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 9a586d51-6bdb-4917-94c9-e1c92278b25f))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp ec38addf-2588-4104-9145-b05c567120e4))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp fe67d712-2180-4f01-9591-4252c486bb04))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 52af0e22-1eee-490d-bb6e-34ce4242108f))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6eb2a522-81be-4b53-ae80-2e36fd915202))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp bccb4faa-8d97-4dd1-a2e1-18a2550bb305))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c2319112-13eb-4836-91b6-a20952d86cc8))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 74f681b8-0e2d-47cc-b1cf-b23af9987bca))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 88ef982c-1072-4da0-a06e-38bc8d5873fe))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp b79a4af1-1f11-4ec8-8111-ea1b791e1f6b))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp d900bc89-77fe-44b2-8ff5-77be04524f96))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp e21cd02a-43db-41a5-a0cb-de29b084a782))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp ed799ba6-b3b6-4e21-a154-bad020f04e00))
(pad "1" thru_hole circle locked (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(Q102-Pad1)") (pintype "passive") (tstamp 5369bbd2-8a0d-40d6-b4c3-b56f827aade0))
(pad "2" thru_hole oval locked (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(Q101-Pad3)") (pintype "passive") (tstamp b498bfe5-91a6-410c-adb5-46506e7984a4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp 7af560b9-9285-4f47-9f8c-e0f042f2aee0)
(at 74.295 63.373 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/34179dc0-7aca-43b8-aae0-104e46278187")
(attr through_hole)
(fp_text reference "R106" (at 2.54 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a8f8b4f0-6a7f-4bd3-a7e2-91bec0750136)
)
(fp_text value "1k" (at 7.62 -2.032) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9e4fd1c-4aa2-411d-8f99-38c8ac41994d)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f2c76e4f-126a-4fe0-8239-ea89f71c19f9)
)
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 1f783e1b-8141-4726-92ac-fc26fdcfa76a))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 4824ad47-6a52-4d66-b09f-c6df2c0c1e81))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 8d189e3c-bd8d-45a8-82ec-92d4185aa645))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 93b86a92-1058-4392-b5a5-cb49bf8d30a2))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp dd7a649b-0eeb-4d69-aa56-0b76282bc84b))
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp f82a85b8-8b77-4dee-bd71-e30e49b66bda))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1f1efc04-86f7-4c73-acc5-50528dc53475))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2f812b31-de6e-4317-94db-01ebc9fd0a90))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 377d6a83-63aa-4025-bd72-35a60c353c81))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7cc060ae-1e6f-460a-ad81-c8d387b27983))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 1110fdaf-cee3-46dd-b044-87ee204038d3))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 37aa73ff-cce7-4081-b03f-58d8207d2103))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 69286616-cd34-4c9d-886c-1e9f16f6b2e6))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 7f784d11-e39d-4e95-a915-e77e130ed7e1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp c0f91051-ae89-4f4f-8bec-9817ecdfd7de))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp ce7240eb-b080-461d-9369-762353f5a57e))
(pad "1" thru_hole circle locked (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(Q103-Pad3)") (pintype "passive") (tstamp 79420a47-1471-403d-bb6d-04653cc62b1c))
(pad "2" thru_hole oval locked (at 10.16 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "GND") (pintype "passive") (tstamp ada60e3d-774a-4ac1-8ba6-b1c6c9c19bfe))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-92_Inline" (layer "F.Cu")
(tedit 5A1DD157) (tstamp a318c5d8-2e1f-4677-941e-2e6bb7098e55)
(at 67.924 76.835 90)
(descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/f7c8d718-336d-4445-9dc6-6fa6a4ce9bd1")
(attr through_hole)
(fp_text reference "Q103" (at 1.27 -3.56 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 513ac10c-3dc2-4932-9201-bcccffe71575)
)
(fp_text value "BC548" (at 1.27 2.79 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f971acc-1caf-4941-970a-3fbd9959d79e)
)
(fp_text user "${REFERENCE}" (at 1.27 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1dc60600-5235-4456-91bf-a196642211fa)
)
(fp_line (start -0.53 1.85) (end 3.07 1.85) (layer "F.SilkS") (width 0.12) (tstamp abdab2cc-1fc7-49b9-8684-20d815cfb1f0))
(fp_arc (start -0.568478 1.838478) (mid -1.132087 -0.994977) (end 1.27 -2.6) (layer "F.SilkS") (width 0.12) (tstamp 479b838d-776d-40c7-983e-bc041465cdd2))
(fp_arc (start 1.27 -2.6) (mid 3.672087 -0.994977) (end 3.108478 1.838478) (layer "F.SilkS") (width 0.12) (tstamp 521e93ad-3807-4fc6-b9c0-1674844d3620))
(fp_line (start -1.46 -2.73) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp 08a955b3-8b83-4407-ba99-5268cc6f517e))
(fp_line (start 4 2.01) (end 4 -2.73) (layer "F.CrtYd") (width 0.05) (tstamp 58dfef79-b033-416e-8e85-43dfb7cd038e))
(fp_line (start 4 2.01) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp 7dcaa149-2604-443f-95e6-c699e08241c7))
(fp_line (start -1.46 -2.73) (end -1.46 2.01) (layer "F.CrtYd") (width 0.05) (tstamp e04b192f-a036-4f66-8c80-41ae2adbb248))
(fp_line (start -0.5 1.75) (end 3 1.75) (layer "F.Fab") (width 0.1) (tstamp a792ca19-b88c-4678-aab7-ce759f9da79c))
(fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625) (layer "F.Fab") (width 0.1) (tstamp 3a84c16b-eb32-42db-a07e-4bc87fd3ce65))
(fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48) (layer "F.Fab") (width 0.1) (tstamp 6d90ed54-d2eb-481e-8825-b4c0da15c178))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 11 "+5V") (pinfunction "C") (pintype "passive") (tstamp 01dbafae-0d3b-40c5-abe8-442aa89382a6))
(pad "2" thru_hole oval locked (at 1.27 0 90) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 3 "Net-(Q102-Pad1)") (pinfunction "B") (pintype "input") (tstamp 724faf7d-2021-43df-899d-08ec0b8fd204))
(pad "3" thru_hole oval locked (at 2.54 0 90) (size 1.05 1.5) (drill 0.75) (layers *.Cu *.Mask)
(net 2 "Net-(Q103-Pad3)") (pinfunction "E") (pintype "passive") (tstamp 17576de8-e22f-4da9-b051-6b6bb49f96cc))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Inline.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal" (layer "F.Cu")
(tedit 5AE50CD5) (tstamp a82e494b-5509-4de2-b2b6-cdfa76ec8710)
(at 45.974 70.993 90)
(descr "Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/d76e9475-132f-4079-8854-7c12a6cb8bbe")
(attr through_hole)
(fp_text reference "D101" (at 6.35 2.032 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 746ab657-ddb0-4f8e-868b-034beea2f595)
)
(fp_text value "1N4148" (at 0.762 2.032 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 04c88aad-4327-4139-9219-ce6c34f549b0)
)
(fp_text user "K" (at 0 -1.8 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6fc223f0-0a02-4402-9d6c-3db739381587)
)
(fp_text user "${REFERENCE}" (at 4.11 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 85de2247-de34-49ef-8b91-04c2031b1693)
)
(fp_line (start 6.58 0) (end 5.93 0) (layer "F.SilkS") (width 0.12) (tstamp 062c5eb7-6836-4bfa-ad81-bf90341d9ed5))
(fp_line (start 1.69 1.12) (end 5.93 1.12) (layer "F.SilkS") (width 0.12) (tstamp 1d06ed06-5865-4bc1-8800-660cd3551932))
(fp_line (start 1.69 -1.12) (end 1.69 1.12) (layer "F.SilkS") (width 0.12) (tstamp 5f9926f8-8112-410f-b924-a3170bcb79f9))
(fp_line (start 2.53 -1.12) (end 2.53 1.12) (layer "F.SilkS") (width 0.12) (tstamp 7bdd248d-17c3-4d96-bcb0-d3f0694197cc))
(fp_line (start 5.93 -1.12) (end 1.69 -1.12) (layer "F.SilkS") (width 0.12) (tstamp a5943953-734f-4489-8e77-ba773d209f2c))
(fp_line (start 2.41 -1.12) (end 2.41 1.12) (layer "F.SilkS") (width 0.12) (tstamp ca4d28c1-2261-45bd-a400-79e25e8d36fe))
(fp_line (start 1.04 0) (end 1.69 0) (layer "F.SilkS") (width 0.12) (tstamp d1b7f418-9e19-466c-a6cc-9f273a108a6d))
(fp_line (start 2.29 -1.12) (end 2.29 1.12) (layer "F.SilkS") (width 0.12) (tstamp d3274775-52ca-435c-b875-36e04cef695a))
(fp_line (start 5.93 1.12) (end 5.93 -1.12) (layer "F.SilkS") (width 0.12) (tstamp dbcf42ac-6a52-4825-8bad-b9d324c6239a))
(fp_line (start -1.05 1.25) (end 8.67 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 1e061015-309e-4ce5-b322-afc341ef6844))
(fp_line (start -1.05 -1.25) (end -1.05 1.25) (layer "F.CrtYd") (width 0.05) (tstamp 227e9c58-ab94-453b-9102-a63e55175dd2))
(fp_line (start 8.67 -1.25) (end -1.05 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp 5697aad3-3e4a-490a-b02f-474ea55f0389))
(fp_line (start 8.67 1.25) (end 8.67 -1.25) (layer "F.CrtYd") (width 0.05) (tstamp aa9ec25a-7831-48d8-9cc6-6940fd9de3e9))
(fp_line (start 0 0) (end 1.81 0) (layer "F.Fab") (width 0.1) (tstamp 2ce15560-87e2-4227-ac08-0adeae2f86f4))
(fp_line (start 7.62 0) (end 5.81 0) (layer "F.Fab") (width 0.1) (tstamp 3e3a6d12-2d26-4cac-b4d5-aabf78002216))
(fp_line (start 1.81 1) (end 5.81 1) (layer "F.Fab") (width 0.1) (tstamp 463a00df-9337-43a7-8023-0c4d9fba780e))
(fp_line (start 5.81 -1) (end 1.81 -1) (layer "F.Fab") (width 0.1) (tstamp 80298442-b7af-407f-8822-aa8223e7a3c9))
(fp_line (start 2.41 -1) (end 2.41 1) (layer "F.Fab") (width 0.1) (tstamp 889a510c-3737-42aa-a732-dc3c30027ec5))
(fp_line (start 1.81 -1) (end 1.81 1) (layer "F.Fab") (width 0.1) (tstamp e8530dea-0420-47e6-8fcf-1fefae5679ea))
(fp_line (start 2.51 -1) (end 2.51 1) (layer "F.Fab") (width 0.1) (tstamp ea34faf6-0cf9-43ce-bb57-04ea98d2ec30))
(fp_line (start 2.31 -1) (end 2.31 1) (layer "F.Fab") (width 0.1) (tstamp f9d9c79f-b842-4111-beeb-18fb438ffe8c))
(fp_line (start 5.81 1) (end 5.81 -1) (layer "F.Fab") (width 0.1) (tstamp fab6aafd-62f0-4c54-8d42-c94ad0e837c8))
(pad "1" thru_hole rect locked (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(C101-Pad2)") (pinfunction "K") (pintype "passive") (tstamp f3517870-3b27-421a-a161-e82745a8c4b6))
(pad "2" thru_hole oval locked (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(C102-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 20d25cef-ebb6-4a11-9c91-dc241224cf11))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.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_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp bbd6b31e-9459-46ea-9c3e-1146efa2b01f)
(at 77.29 80.61)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/1a97cc0b-956d-4b2e-842c-25fa85231f6d")
(attr through_hole)
(fp_text reference "R109" (at 1.016 -2.37) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e83e3812-4883-4f4e-acbe-e4909a74f2a3)
)
(fp_text value "1k2" (at 9.652 -2.54) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp db899103-f627-4440-88b0-813adcea3e02)
)
(fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bfb1cf5d-d7ba-44c3-81e7-779fb41f66ca)
)
(fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 34a8612d-6179-473f-951e-0412c02db9e7))
(fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 827d31be-a3d2-4457-82f7-eb3375a67b9c))
(fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 9879515b-a926-43e5-8e31-d924678cc070))
(fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp b6299321-6b08-474b-85b9-113a0e121dce))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp b79d8295-c45b-4e4a-8cfe-9d1e43e22ac1))
(fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp e817b7e7-6d27-435c-ac0c-38ea4df872b4))
(fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2bef2d4a-8b41-434b-b7b0-4ea1a9b04fe7))
(fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 429156ce-012c-49d6-aca8-253bab7efbe2))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 45ebd630-43a3-48ef-9287-8c71c6ad50c2))
(fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 573871f0-73bf-487b-8ef8-922b2b882824))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 1c11a1af-0d31-47b1-ae09-b46d63f6f507))
(fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 2a5abce8-5cc0-4402-9855-561acc3f6f9f))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 2b384c00-dd3a-498b-956b-59a262a07d61))
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 4c54cf4d-b59e-47a3-a58a-1d8c9b10057d))
(fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 741dbd82-fd9b-4b9c-96df-f51adb0653c0))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 9167d64e-691b-49d2-aa0b-617b235bc81c))
(pad "1" thru_hole circle locked (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 "GND") (pintype "passive") (tstamp 60f8a493-76ad-4611-ba75-1f78d0373915))
(pad "2" thru_hole oval locked (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 "AUDIO OUTPUT") (pintype "passive") (tstamp b74d0eed-df3f-48ba-960d-0d897dc5363e))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tedit 5AE5139B) (tstamp bedf389a-7ee8-4bb5-a9cc-9e9bab4f29ac)
(at 60.833 67.691 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "videopac_composite.kicad_sch")
(property "Sheetname" "")
(path "/4524e49e-b0c0-4c48-a263-0896156f2885")
(attr through_hole)
(fp_text reference "R101" (at 7.62 2.032) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))