-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathK_relay.kicad_pcb
19808 lines (19736 loc) · 764 KB
/
K_relay.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(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 true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "Gerber/")
)
)
(net 0 "")
(net 1 "Net-(J5-In)")
(net 2 "Net-(C1-Pad2)")
(net 3 "+12V")
(net 4 "GND")
(net 5 "K3")
(net 6 "K5-4")
(net 7 "K1")
(net 8 "K2")
(net 9 "PWR_DC")
(net 10 "Net-(J11-In)")
(net 11 "Net-(D1-A)")
(net 12 "Net-(J1-In)")
(net 13 "Net-(J3-In)")
(net 14 "Net-(J6-In)")
(net 15 "Net-(J7-In)")
(net 16 "Net-(J8-In)")
(net 17 "Net-(J9-In)")
(net 18 "unconnected-(J10-Pin_7-Pad7)")
(net 19 "unconnected-(J10-Pin_9-Pad9)")
(net 20 "unconnected-(J10-Pin_10-Pad10)")
(net 21 "Net-(K1-Pad2)")
(net 22 "Net-(K1-Pad4)")
(net 23 "Net-(K2-Pad2)")
(net 24 "unconnected-(K3-NC-Pad5)")
(net 25 "unconnected-(K3-NC-Pad6)")
(net 26 "Net-(J2-In)")
(net 27 "Net-(J4-In)")
(footprint "BNC_Amphenol_031-5329-51RFX:BNC_Amphenol_031532951RFX" (layer "F.Cu")
(tstamp 04b14ec0-894e-4889-8c66-aa309fdd629c)
(at 190 106.56)
(descr "031-5329-51RFX-4")
(tags "Connector")
(property "Sheetfile" "K_relay.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)")
(property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA")
(path "/5fd88605-57fb-4cb2-83f7-1c456d88c97b")
(attr through_hole)
(fp_text reference "J6" (at -8 0) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 815233fe-35b5-4235-8504-c26eb2fefb59)
)
(fp_text value "FROM ATU OUT" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp b0309c7e-6870-4cbe-b8ae-ce5950864abd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp b1e1f9a7-7698-4276-93bb-5a8897ccf252)
)
(fp_line (start -6.1 0) (end -6.1 0)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 923003fa-1e49-4cd3-8c9e-f758aee3a187))
(fp_line (start -6 0) (end -6 0)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp 1f8efc5c-bc1a-40ad-af72-d0ac7d04da04))
(fp_arc (start -6.1 0) (mid -6.05 -0.05) (end -6 0)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp dea42df5-dabd-41a5-9457-7f224768aab2))
(fp_arc (start -6 0) (mid -6.05 0.05) (end -6.1 0)
(stroke (width 0.1) (type solid)) (layer "F.SilkS") (tstamp e3098b4f-8c95-488e-be39-79b365f9be52))
(fp_line (start -6.5 -6.5) (end 6.5 -6.5)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 044419b6-ba62-490d-b54f-8349364826f0))
(fp_line (start -6.5 6.5) (end -6.5 -6.5)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 0f8d954e-9193-484b-b082-db09bdc36aa5))
(fp_line (start 6.5 -6.5) (end 6.5 6.5)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 025e37de-f56e-49f2-9031-5dcd18c9582c))
(fp_line (start 6.5 6.5) (end -6.5 6.5)
(stroke (width 0.1) (type solid)) (layer "F.CrtYd") (tstamp 2627324a-7031-488b-b3be-e280c1bf9b49))
(fp_line (start -5.5 0) (end -5.5 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 11b6149f-b872-4659-bf13-5511d073e617))
(fp_line (start 5.5 0) (end 5.5 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3db8fb5-cb27-4d90-84f5-f72ff7b2aa97))
(fp_arc (start -5.5 0) (mid 0 -5.5) (end 5.5 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d54a3f8-714d-44c2-a8a3-29d59d59b57d))
(fp_arc (start 5.5 0) (mid 0 5.5) (end -5.5 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec04ee99-b86a-45ba-8383-b1ac2335b976))
(pad "1" thru_hole rect (at 0 0) (size 1.95 1.95) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 14 "Net-(J6-In)") (pinfunction "In") (pintype "passive") (tstamp 113ebeec-a031-43b2-9d0d-76acefbedb3a))
(pad "2" thru_hole circle (at -3.44 -3.44) (size 3.6 3.6) (drill 2.4) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 62b50959-4fe1-41e5-a7fc-d4f86750b58f))
(pad "2" thru_hole circle (at -3.44 3.44) (size 3.6 3.6) (drill 2.4) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 189171c7-073d-48d7-b771-5d3d793c3ed8))
(pad "2" thru_hole circle (at 3.44 -3.44) (size 3.6 3.6) (drill 2.4) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 4fddfcc0-52d4-4be0-ab71-007cad62da96))
(pad "2" thru_hole circle (at 3.44 3.44) (size 3.6 3.6) (drill 2.4) (layers "*.Cu" "*.Mask")
(net 4 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 85d52775-adba-45e3-a498-adad88fed3c3))
(model "${KIPRJMOD}/Lib/BNC_Amphenol_031-5329-51RFX-Master/BNC_Amphenol_031-5329-51RFX.3dshapes/413969-2.stp"
(offset (xyz 0 0 20.5))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/Lib/BNC_Amphenol_031-5329-51RFX-Master/BNC_Amphenol_031-5329-51RFX.3dshapes/031-5329-51RFX.stp" hide
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "RELAY_G2R-1-E AC12:RELAY_G2R-1-E AC12" (layer "F.Cu")
(tstamp 18e9562b-cd0e-4f04-9adc-9a5e5f6e4f78)
(at 201.800003 87.75 -90)
(tags "G2R-1-E DC12 ")
(property "Sheetfile" "K_relay.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "G2R-1-E DC12")
(path "/506b0b62-3f45-40d6-87e7-c76471fa90a7")
(attr through_hole)
(fp_text reference "K5" (at -3.75 -12.199997 -90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4cb885a4-f283-4e70-a889-31ee3acc9363)
)
(fp_text value "TRA2 L-12VDC-S-Z" (at -3.75 -12.199997 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 835bc52e-17be-49ce-a5fe-4923bbabad69)
)
(fp_text user "*" (at -7.5 -31.933328 -90 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5e9a4feb-6c07-4123-b5fd-d639b5daa7ee)
)
(fp_text user "*" (at -7.5 -31.933328 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e9812a61-ba28-4372-85e5-ebc864b61e38)
)
(fp_text user "*" (at -7.5 -27.733328 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63854057-b89a-42b3-ab5c-84d1cdf23893)
)
(fp_text user "*" (at -7.5 -27.733328 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7257d567-8dbd-48b9-add8-31111d10ad33)
)
(fp_text user "${REFERENCE}" (at -3.75 -12.199997 -90 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a34b7803-3af6-49ba-b032-c95615cee2c3)
)
(fp_line (start -10.177 -26.626994) (end -10.177 2.227)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 783bfaeb-1b1d-4b09-b05e-b09c4125c59f))
(fp_line (start -10.177 2.227) (end 2.677 2.227)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 6fdf396b-1d2b-47f0-9cd8-57512071fad8))
(fp_line (start 2.677 -26.626994) (end -10.177 -26.626994)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 58ec0374-0ec9-46ae-ac92-936dee47223c))
(fp_line (start 2.677 2.227) (end 2.677 -26.626994)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 3dfd85fa-fc2c-4039-a38a-2fadaf53a972))
(fp_line (start -10.304 -26.753994) (end 2.804 -26.753994)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 19e7f729-60ce-4293-9403-f3d4faee688c))
(fp_line (start -10.304 2.354) (end -10.304 -26.753994)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 9dfbab44-1cc3-46cc-a5dd-8ca6c8a9e566))
(fp_line (start 2.804 -26.753994) (end 2.804 2.354)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 0661af03-4461-44cc-98d3-9730aac80eea))
(fp_line (start 2.804 2.354) (end -10.304 2.354)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp af15dd08-7fa4-4a6a-9ee5-dc87da75ff64))
(fp_line (start -10.05 -26.499994) (end -10.05 2.1)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp e0a6b4da-83b1-49e8-a771-2019a0e24813))
(fp_line (start -10.05 2.1) (end 2.55 2.1)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 33429b60-fb3d-4e6b-b874-57f89db757cf))
(fp_line (start 2.55 -26.499994) (end -10.05 -26.499994)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 708913e6-228f-4922-ab1a-23254f25465d))
(fp_line (start 2.55 2.1) (end 2.55 -26.499994)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 803be091-63b0-4c1d-8e99-a35a6f9e94c1))
(fp_arc (start -3.4452 -26.499994) (mid -3.75 -26.195194) (end -4.0548 -26.499994)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 6164b608-97f8-44e9-9041-d97e1c1dcbce))
(fp_circle (center -6.5983 -24.399994) (end -6.5983 -24.399994)
(stroke (width 0.0254) (type solid)) (fill none) (layer "F.Fab") (tstamp 11f247e9-cb39-40d5-8cde-fb32fda63791))
(pad "1" thru_hole circle (at -7.5 -24.399993 270) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 3 "+12V") (pinfunction "1") (pintype "unspecified") (tstamp c6e3de59-bd95-49b8-8ae4-da33a40b0a92))
(pad "2" thru_hole circle (at -7.5 -9.399993 270) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 13 "Net-(J3-In)") (pinfunction "2") (pintype "unspecified") (tstamp 296078b0-fade-4f90-b2f2-b25b9948e07d))
(pad "3" thru_hole circle (at -7.5 -4.399992 270) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 22 "Net-(K1-Pad4)") (pinfunction "3") (pintype "unspecified") (tstamp b5d3e1dc-8abb-4830-a9d3-ac3b7a86a7e0))
(pad "4" thru_hole circle (at -7.5 0.600008 270) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 27 "Net-(J4-In)") (pinfunction "4") (pintype "unspecified") (tstamp 4d30de20-2764-4ff3-b71f-5e8f6a2090ec))
(pad "5" thru_hole circle (at 0 0.600008 270) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 27 "Net-(J4-In)") (pinfunction "5") (pintype "unspecified") (tstamp ff49eb88-a633-415f-851a-c402fb6a50e4))
(pad "6" thru_hole circle (at 0 -4.399992 270) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 22 "Net-(K1-Pad4)") (pinfunction "6") (pintype "unspecified") (tstamp 7c39f95d-afd2-41fd-9235-e38b7ef71410))
(pad "7" thru_hole circle (at 0 -9.399993 270) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 13 "Net-(J3-In)") (pinfunction "7") (pintype "unspecified") (tstamp 618f0bdc-9eb4-4cc2-921a-331e6123ae79))
(pad "8" thru_hole circle (at 0 -24.399993 270) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 6 "K5-4") (pinfunction "8") (pintype "unspecified") (tstamp f4b81d79-23e9-43de-a7e9-c0c8f3003215))
(model "${KIPRJMOD}/Lib/RELAY_G2R-1-E AC12/RELAY_G2R-1-E AC12.pretty/RELAY_G2R-1-E AC12.3dshapes/RELAY_G2R-1-E AC12.step"
(offset (xyz -7.5 24.5 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "TQ2-12V:DIPS762W80P254L1400H530Q10N" (layer "F.Cu")
(tstamp 1ae17db9-8037-4e72-84e0-3f01d79e78de)
(at 247.16 81.38 -90)
(descr "TQ2")
(tags "Relay or Contactor")
(property "Sheetfile" "K_relay.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Omron Ultracompact, Ultrasensitive DPDT Relay, Single-side Stable")
(property "ki_keywords" "relay monostable")
(path "/34d8dadc-7d2b-42f6-8209-703bb095e318")
(attr through_hole)
(fp_text reference "K3" (at 0 0 90) (layer "F.SilkS")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp b039fccd-22e8-4981-acd2-4312d5e944bb)
)
(fp_text value "TQ2-12V" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 0200a328-f4d4-47ae-a04d-3bc332be1450)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1.27 1.27) (thickness 0.254)))
(tstamp 3b0771ce-e278-4762-93ec-b51eb7a242df)
)
(fp_line (start -0.84 -2.07) (end -0.84 0)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp c8b4a0e2-31f4-478b-88b2-6648b73a60fb))
(fp_line (start -0.84 12.23) (end 8.46 12.23)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp a528fce1-9e78-4449-a955-f7a584ede913))
(fp_line (start 8.46 -2.07) (end -0.84 -2.07)
(stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 808cab9b-fa4f-4a0c-b4b0-44c79648dc05))
(fp_line (start -1.09 -2.32) (end 8.71 -2.32)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9330c57f-709a-4d90-9d66-1dac0ffa827d))
(fp_line (start -1.09 12.48) (end -1.09 -2.32)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f23561f3-df14-44c3-aa3b-601f18d7cc97))
(fp_line (start 8.71 -2.32) (end 8.71 12.48)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e88800f-caa1-47f0-82bd-b625e98e672f))
(fp_line (start 8.71 12.48) (end -1.09 12.48)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01501204-bc1d-40ef-9750-00cbd7bce57e))
(fp_line (start -0.84 -2.07) (end 8.46 -2.07)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 453139fe-d7a8-44e2-82e8-3884362db986))
(fp_line (start -0.84 -0.8) (end 0.43 -2.07)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e59db0a0-58f7-4538-a342-de2995654edd))
(fp_line (start -0.84 12.23) (end -0.84 -2.07)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bbce195c-45cd-4d82-8727-23f55448a508))
(fp_line (start 8.46 -2.07) (end 8.46 12.23)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 994b3303-c536-4f2b-a65a-c6945371d39e))
(fp_line (start 8.46 12.23) (end -0.84 12.23)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f0e22ef3-342c-4726-886b-7a365093f088))
(pad "1" thru_hole rect (at 0 0 270) (size 1.5 1.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "+12V") (pintype "passive") (tstamp 9287716b-7759-42cd-9863-d880432a0305))
(pad "2" thru_hole circle (at 0 2.54 270) (size 1.5 1.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "Net-(K2-Pad2)") (pintype "passive") (tstamp 851db36c-f701-4496-a8ab-07dc1a6b3765))
(pad "3" thru_hole circle (at 0 5.08 270) (size 1.5 1.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "Net-(J5-In)") (pintype "passive") (tstamp f93192e6-a76c-421f-904c-2232983138c4))
(pad "4" thru_hole circle (at 0 7.62 270) (size 1.5 1.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "Net-(J9-In)") (pintype "passive") (tstamp e7eb5733-3a72-48d6-b8c8-bfcb4a0e8322))
(pad "5" thru_hole circle (at 0 10.16 270) (size 1.5 1.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "unconnected-(K3-NC-Pad5)") (pinfunction "NC") (pintype "no_connect") (tstamp 8818cdc5-b7a4-4c65-9de6-438921922336))
(pad "6" thru_hole circle (at 7.62 10.16 270) (size 1.5 1.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "unconnected-(K3-NC-Pad6)") (pinfunction "NC") (pintype "no_connect") (tstamp 699a7357-b75e-496f-ba1e-c081a2dd1315))
(pad "7" thru_hole circle (at 7.62 7.62 270) (size 1.5 1.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 17 "Net-(J9-In)") (pintype "passive") (tstamp 0590c0e7-28db-43eb-be83-430611cb7578))
(pad "8" thru_hole circle (at 7.62 5.08 270) (size 1.5 1.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "Net-(J5-In)") (pintype "passive") (tstamp 6691396b-a7bb-49c1-a4b2-0b7be85ff137))
(pad "9" thru_hole circle (at 7.62 2.54 270) (size 1.5 1.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 23 "Net-(K2-Pad2)") (pintype "passive") (tstamp 879ac73f-eeac-42e1-ad1f-0968cbfb3888))
(pad "10" thru_hole circle (at 7.62 0 270) (size 1.5 1.5) (drill 1) (layers "*.Cu" "*.Mask")
(net 5 "K3") (pintype "passive") (tstamp bcb5110d-c778-4a58-9d0c-27c735f962ff))
(model "${KIPRJMOD}/Lib/TQ2-12V-master/TQ2-12V.3dshape/TQ2-12V.STEP"
(offset (xyz 3.8 -5 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "SMA_PINS:SMA_PINS" (layer "F.Cu")
(tstamp 24836cec-00b3-49cd-a081-edce51f26d5e)
(at 247.54 68.54)
(descr "SMA with through-hole connections")
(property "Sheetfile" "K_relay.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)")
(property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA")
(path "/642bcded-903e-4266-a3fc-e3b92fb8fee7")
(clearance 0.09906)
(attr through_hole)
(fp_text reference "J9" (at 0 4.75) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.2) bold))
(tstamp 3aa7d88d-7471-48dc-8f56-6ba639e2c18b)
)
(fp_text value "To PA input" (at 0 6.35) (layer "F.SilkS") hide
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp a34f6d59-e724-4c07-81a6-6557db60f01c)
)
(fp_line (start -2.99974 -2.99974) (end 2.99974 -2.99974)
(stroke (width 0.381) (type solid)) (layer "F.SilkS") (tstamp 467c6103-bf96-44e9-b8ad-37ee6ab7f24b))
(fp_line (start -2.99974 2.99974) (end -2.99974 -2.99974)
(stroke (width 0.381) (type solid)) (layer "F.SilkS") (tstamp 9c945dbe-6ce3-4806-b09f-e1c74a24f00d))
(fp_line (start 2.99974 -2.99974) (end 2.99974 2.99974)
(stroke (width 0.381) (type solid)) (layer "F.SilkS") (tstamp 1cb454b8-8a1b-4afc-a7e0-e8085e7095f7))
(fp_line (start 2.99974 2.99974) (end -2.99974 2.99974)
(stroke (width 0.381) (type solid)) (layer "F.SilkS") (tstamp 2cea7bfa-c350-4648-9132-d151d7a6bc47))
(fp_circle (center 0 0) (end 0 -0.50038)
(stroke (width 0.09906) (type solid)) (fill none) (layer "F.SilkS") (tstamp 975a791e-43e5-4b64-9654-5ba697ed3f1d))
(fp_circle (center 0 0) (end 1.50114 0)
(stroke (width 0.09906) (type solid)) (fill none) (layer "F.SilkS") (tstamp 99d6d2a2-755f-4607-b81b-4e8c64f41a62))
(fp_circle (center 0 0) (end 2.25044 0.7493)
(stroke (width 0.381) (type solid)) (fill none) (layer "F.SilkS") (tstamp 1a1562ca-1544-407e-8eb2-4d925d913a97))
(fp_circle (center 0 0) (end 2.49936 -0.50038)
(stroke (width 0.381) (type solid)) (fill none) (layer "F.SilkS") (tstamp 6aac4e92-8103-424b-9acb-0f77f237665d))
(pad "1" thru_hole circle (at 0 0) (size 1.99898 1.99898) (drill 1.30048) (layers "*.Cu" "*.Mask" "F.SilkS")
(net 17 "Net-(J9-In)") (pinfunction "In") (pintype "passive") (clearance 0.09906) (tstamp 9848e6c4-0573-42bf-8920-390ad4e252bd))
(pad "2" thru_hole circle (at -2.54 -2.54) (size 2.49936 2.49936) (drill 1.30048) (layers "*.Cu" "*.Mask" "F.SilkS")
(net 4 "GND") (pinfunction "Ext") (pintype "passive") (tstamp e2a433f2-b14d-400e-82b6-5687993692b7))
(pad "2" thru_hole circle (at -2.54 2.54) (size 2.49936 2.49936) (drill 1.30048) (layers "*.Cu" "*.Mask" "F.SilkS")
(net 4 "GND") (pinfunction "Ext") (pintype "passive") (tstamp f945518b-4991-42ee-b4dd-f294224a8e1a))
(pad "2" thru_hole circle (at 2.54 -2.54) (size 2.49936 2.49936) (drill 1.30048) (layers "*.Cu" "*.Mask" "F.SilkS")
(net 4 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 208d42ab-2956-4391-8988-b3a7bfd742cb))
(pad "2" thru_hole circle (at 2.54 2.54) (size 2.49936 2.49936) (drill 1.30048) (layers "*.Cu" "*.Mask" "F.SilkS")
(net 4 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 1f10cb55-18f5-4b5a-9235-73aaadceea95))
(model "${KIPRJMOD}/Lib/SMA_PINS.pretty/packages3d/sma_straight_32k101-400l5.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "RELAY_G2R-1-E AC12:RELAY_G2R-1-E AC12" (layer "F.Cu")
(tstamp 30a4b53d-353a-449d-b543-f385e809406e)
(at 194 87.399993)
(tags "G2R-1-E DC12 ")
(property "Sheetfile" "K_relay.kicad_sch")
(property "Sheetname" "")
(property "ki_keywords" "G2R-1-E DC12")
(path "/b65eeb65-c888-4f7f-836c-9bc1a78cf40e")
(attr through_hole)
(fp_text reference "K1" (at -3.75 -12.199997 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1f7a8cd3-a373-41ef-a925-324a2f5fa809)
)
(fp_text value "TRA2 L-12VDC-S-Z" (at -3.75 -12.199997 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91dfff7d-7fa7-44d5-804d-f981b131063c)
)
(fp_text user "*" (at -7.5 -31.933328) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3472ae5a-3d2f-4533-b21f-864ac554ed1e)
)
(fp_text user "*" (at 0 0.600007 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a91aba07-436c-4c1e-9226-39a2a9c601fe)
)
(fp_text user "${REFERENCE}" (at -3.75 -12.199997 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 93fb6624-f44f-4f3a-bcc0-99a41040e004)
)
(fp_text user "*" (at 0 0.600007) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c6891fb6-8785-4cd1-a080-708e71ef2827)
)
(fp_text user "*" (at 0 0.600007 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe3fdd30-7730-44c0-b6d6-b86d947f0b85)
)
(fp_line (start -10.177 -26.626994) (end -10.177 2.227)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 64aa5ced-ba05-46b9-a7d0-2764a38e13b2))
(fp_line (start -10.177 2.227) (end 2.677 2.227)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp 89d8c7aa-44b0-4a7e-9352-be49d53ca77b))
(fp_line (start 2.677 -26.626994) (end -10.177 -26.626994)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp bc1b4f54-ddbd-4b0a-a008-124d252c971e))
(fp_line (start 2.677 2.227) (end 2.677 -26.626994)
(stroke (width 0.1524) (type solid)) (layer "F.SilkS") (tstamp bead8931-26f8-4ebc-993b-4b209c7ebf08))
(fp_line (start -10.304 -26.753994) (end 2.804 -26.753994)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 9309bd75-3c4f-464d-8133-95e4b09541cc))
(fp_line (start -10.304 2.354) (end -10.304 -26.753994)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 8e204390-53f4-4888-8152-86daa2463b39))
(fp_line (start 2.804 -26.753994) (end 2.804 2.354)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 4210371f-ab59-416e-99c4-141ce90939bb))
(fp_line (start 2.804 2.354) (end -10.304 2.354)
(stroke (width 0.1524) (type solid)) (layer "F.CrtYd") (tstamp 0cff06ed-b1c0-4e4a-80df-aa06b1cc16fa))
(fp_line (start -10.05 -26.499994) (end -10.05 2.1)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 44ee53a6-846a-4d5a-8561-41f4e3c5cd20))
(fp_line (start -10.05 2.1) (end 2.55 2.1)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 41f52e2f-f686-4848-ac00-d40e44db89d4))
(fp_line (start 2.55 -26.499994) (end -10.05 -26.499994)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp 5e6aa613-73cb-4937-8e37-a1d7c81fca4f))
(fp_line (start 2.55 2.1) (end 2.55 -26.499994)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp d7cf2dcb-d4b7-4075-bbd5-8d1fa5a5aae6))
(fp_arc (start -3.4452 -26.499994) (mid -3.75 -26.195194) (end -4.0548 -26.499994)
(stroke (width 0.0254) (type solid)) (layer "F.Fab") (tstamp b04b6551-d582-4269-b373-4c5fb3f3588e))
(fp_circle (center -6.5983 -24.399994) (end -6.5983 -24.399994)
(stroke (width 0.0254) (type solid)) (fill none) (layer "F.Fab") (tstamp 368cf23f-be68-41d9-8593-0a47248e594b))
(pad "1" thru_hole circle (at -7.5 -24.399993) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 3 "+12V") (pinfunction "1") (pintype "unspecified") (tstamp de33cf5b-ad3f-46c7-b251-67de82689274))
(pad "2" thru_hole circle (at -7.5 -9.399993) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 21 "Net-(K1-Pad2)") (pinfunction "2") (pintype "unspecified") (tstamp 05d566a7-b5f7-4a3f-b066-9175eaec7618))
(pad "3" thru_hole circle (at -7.5 -4.399992) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 14 "Net-(J6-In)") (pinfunction "3") (pintype "unspecified") (tstamp f69e2774-22eb-4b3e-b084-cc3f6c00bf0b))
(pad "4" thru_hole circle (at -7.5 0.600008) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 22 "Net-(K1-Pad4)") (pinfunction "4") (pintype "unspecified") (tstamp 91856b3c-d4b1-498e-96ab-211ee07557ec))
(pad "5" thru_hole circle (at 0 0.600008) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 22 "Net-(K1-Pad4)") (pinfunction "5") (pintype "unspecified") (tstamp 09a8c4bf-e388-4c94-bb0d-4eeaad55b2bf))
(pad "6" thru_hole circle (at 0 -4.399992) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 14 "Net-(J6-In)") (pinfunction "6") (pintype "unspecified") (tstamp a2a79ad0-f398-4765-9572-7cf81b3b77c5))
(pad "7" thru_hole circle (at 0 -9.399993) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 21 "Net-(K1-Pad2)") (pinfunction "7") (pintype "unspecified") (tstamp f6a20b58-c83a-4eba-9d0a-b420ebffd211))
(pad "8" thru_hole circle (at 0 -24.399993) (size 1.8034 1.8034) (drill 1.2954) (layers "*.Cu" "*.Mask")
(net 7 "K1") (pinfunction "8") (pintype "unspecified") (tstamp bb7caff4-0140-49bb-8aee-5b82a048050f))
(model "${KIPRJMOD}/Lib/RELAY_G2R-1-E AC12/RELAY_G2R-1-E AC12.pretty/RELAY_G2R-1-E AC12.3dshapes/RELAY_G2R-1-E AC12.step"
(offset (xyz -7.5 24.5 0))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 90))
)
)
(footprint "Munin-master:Munin" (layer "F.Cu")
(tstamp 4b93c715-9a03-4e20-99d0-4ba294623faf)
(at 259.8 59.6)
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "G***" (at 0 0) (layer "F.SilkS")
(effects (font (size 1.5 1.5) (thickness 0.3)))
(tstamp 439a0eae-2efe-42d1-bbc6-8e6b4debcff1)
)
(fp_text value "LOGO" (at 0.75 0) (layer "F.SilkS") hide
(effects (font (size 1.5 1.5) (thickness 0.3)))
(tstamp 7a04d819-9e74-4259-95ff-cdb47e9d3c55)
)
(fp_poly
(pts
(xy 5.100285 -2.406964)
(xy 5.101561 -2.168211)
(xy 5.082749 -2.026629)
(xy 5.044416 -1.983147)
(xy 4.987132 -2.038699)
(xy 4.93571 -2.137789)
(xy 4.884822 -2.261107)
(xy 4.874462 -2.349955)
(xy 4.907777 -2.449052)
(xy 4.965514 -2.561113)
(xy 5.085111 -2.785312)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 75e111e1-195c-4f49-a847-3c43d7f00d67))
(fp_poly
(pts
(xy 1.183594 -3.656431)
(xy 1.430169 -3.565039)
(xy 1.538644 -3.488381)
(xy 1.720761 -3.276188)
(xy 1.816316 -3.033574)
(xy 1.827671 -2.780517)
(xy 1.757186 -2.537001)
(xy 1.607221 -2.323005)
(xy 1.381617 -2.159256)
(xy 1.157654 -2.069677)
(xy 0.963141 -2.054215)
(xy 0.758659 -2.111456)
(xy 0.705462 -2.135042)
(xy 0.473983 -2.292547)
(xy 0.320544 -2.501656)
(xy 0.248586 -2.744098)
(xy 0.261545 -3.001608)
(xy 0.362861 -3.255914)
(xy 0.467488 -3.399357)
(xy 0.680167 -3.571754)
(xy 0.926231 -3.658057)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 4e6115a5-46ac-4773-9f21-31b22ca8ac2d))
(fp_poly
(pts
(xy 1.210902 10.722962)
(xy 1.332617 10.82422)
(xy 1.415243 10.949415)
(xy 1.430986 11.020373)
(xy 1.407607 11.084704)
(xy 1.358456 11.072505)
(xy 1.315015 10.991922)
(xy 1.314574 10.990255)
(xy 1.24859 10.896399)
(xy 1.136599 10.854259)
(xy 1.01303 10.861556)
(xy 0.912312 10.916015)
(xy 0.868873 11.015356)
(xy 0.868813 11.019739)
(xy 0.839106 11.083633)
(xy 0.817707 11.090141)
(xy 0.778394 11.046659)
(xy 0.7666 10.970295)
(xy 0.812415 10.826023)
(xy 0.930208 10.720815)
(xy 1.086331 10.681288)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 8fdb8f3a-9812-48ff-99a7-231457ebf511))
(fp_poly
(pts
(xy 4.032876 -12.047688)
(xy 4.070249 -12.029677)
(xy 4.264442 -11.894434)
(xy 4.362442 -11.724873)
(xy 4.364646 -11.520101)
(xy 4.338971 -11.428632)
(xy 4.276316 -11.286111)
(xy 4.220152 -11.2144)
(xy 4.182496 -11.219902)
(xy 4.175367 -11.309018)
(xy 4.179555 -11.34371)
(xy 4.16977 -11.47733)
(xy 4.094316 -11.535603)
(xy 3.959114 -11.516131)
(xy 3.862427 -11.471954)
(xy 3.689565 -11.411648)
(xy 3.562553 -11.442316)
(xy 3.481044 -11.56148)
(xy 3.466211 -11.736041)
(xy 3.53627 -11.902954)
(xy 3.67668 -12.030891)
(xy 3.706067 -12.046305)
(xy 3.82123 -12.092778)
(xy 3.913482 -12.094)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp e6220949-22aa-4f51-83c4-c4feedcf86f8))
(fp_poly
(pts
(xy -2.504225 -10.289303)
(xy -2.524861 -10.222753)
(xy -2.580556 -10.086214)
(xy -2.661985 -9.901774)
(xy -2.729567 -9.755434)
(xy -2.921465 -9.315209)
(xy -3.05605 -8.923713)
(xy -3.140807 -8.550628)
(xy -3.183221 -8.165633)
(xy -3.191687 -7.883311)
(xy -3.196929 -7.603983)
(xy -3.209425 -7.41811)
(xy -3.228534 -7.327577)
(xy -3.253616 -7.33427)
(xy -3.284032 -7.440076)
(xy -3.304425 -7.551006)
(xy -3.333366 -7.838391)
(xy -3.339406 -8.175936)
(xy -3.324049 -8.523791)
(xy -3.288797 -8.84211)
(xy -3.248032 -9.045875)
(xy -3.138361 -9.38478)
(xy -2.996962 -9.705002)
(xy -2.837903 -9.978641)
(xy -2.679119 -10.174078)
(xy -2.578735 -10.261474)
(xy -2.51548 -10.297508)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 7c5b0609-2c53-416a-ae4b-700bb297ebf2))
(fp_poly
(pts
(xy -1.658927 2.105929)
(xy -1.676776 2.156035)
(xy -1.746408 2.276411)
(xy -1.859277 2.454816)
(xy -2.006835 2.679009)
(xy -2.180537 2.936752)
(xy -2.371835 3.215803)
(xy -2.572182 3.503922)
(xy -2.773032 3.788869)
(xy -2.965838 4.058403)
(xy -3.142053 4.300285)
(xy -3.29313 4.502274)
(xy -3.410523 4.65213)
(xy -3.485685 4.737613)
(xy -3.50719 4.752917)
(xy -3.523338 4.710481)
(xy -3.526062 4.663481)
(xy -3.513773 4.517469)
(xy -3.481949 4.308179)
(xy -3.437137 4.071162)
(xy -3.385884 3.841968)
(xy -3.349429 3.704357)
(xy -3.224292 3.400554)
(xy -3.034157 3.090883)
(xy -2.805878 2.814323)
(xy -2.62306 2.650007)
(xy -2.473012 2.544578)
(xy -2.292339 2.429321)
(xy -2.101922 2.316019)
(xy -1.922642 2.216457)
(xy -1.775379 2.142417)
(xy -1.681015 2.105683)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 69278b29-19f0-4bde-b21a-9d44d3efa400))
(fp_poly
(pts
(xy -3.991017 -15.21659)
(xy -3.752547 -15.172386)
(xy -3.582643 -15.122151)
(xy -3.51248 -15.083952)
(xy -3.540056 -15.060028)
(xy -3.663369 -15.052619)
(xy -3.851526 -15.061692)
(xy -4.163766 -15.07365)
(xy -4.399809 -15.052398)
(xy -4.581566 -14.99339)
(xy -4.730952 -14.892078)
(xy -4.749256 -14.875452)
(xy -4.863453 -14.738183)
(xy -4.904695 -14.59035)
(xy -4.906237 -14.544888)
(xy -4.86946 -14.362238)
(xy -4.773731 -14.231267)
(xy -4.640958 -14.164778)
(xy -4.493047 -14.175572)
(xy -4.386418 -14.24112)
(xy -4.317229 -14.295876)
(xy -4.294804 -14.272813)
(xy -4.292957 -14.219276)
(xy -4.336366 -14.107225)
(xy -4.443105 -13.997686)
(xy -4.577948 -13.920258)
(xy -4.671778 -13.901006)
(xy -4.797589 -13.930048)
(xy -4.895157 -13.980768)
(xy -5.03816 -14.129636)
(xy -5.127229 -14.319621)
(xy -5.144166 -14.510206)
(xy -5.141084 -14.528279)
(xy -5.040586 -14.796264)
(xy -4.864739 -15.004)
(xy -4.624135 -15.146576)
(xy -4.329364 -15.219076)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 4ad0c6aa-f22a-458a-9036-37ae71a70656))
(fp_poly
(pts
(xy 4.488118 -13.540806)
(xy 4.602048 -13.492169)
(xy 4.770681 -13.412043)
(xy 4.976632 -13.30939)
(xy 5.202515 -13.193175)
(xy 5.430944 -13.072358)
(xy 5.644533 -12.955902)
(xy 5.825897 -12.852771)
(xy 5.957649 -12.771925)
(xy 5.971009 -12.762988)
(xy 6.412064 -12.40313)
(xy 6.803489 -11.960219)
(xy 7.140291 -11.443153)
(xy 7.417477 -10.86083)
(xy 7.630056 -10.222147)
(xy 7.769844 -9.556942)
(xy 7.802561 -9.311457)
(xy 7.816968 -9.130291)
(xy 7.814698 -9.020362)
(xy 7.797383 -8.988587)
(xy 7.766658 -9.041887)
(xy 7.724154 -9.187179)
(xy 7.703501 -9.275855)
(xy 7.504417 -9.946333)
(xy 7.212199 -10.593642)
(xy 6.835315 -11.205743)
(xy 6.382238 -11.770595)
(xy 5.861437 -12.276158)
(xy 5.292105 -12.703403)
(xy 5.095023 -12.838331)
(xy 4.916496 -12.971384)
(xy 4.784467 -13.081311)
(xy 4.747979 -13.117232)
(xy 4.626725 -13.260265)
(xy 4.52408 -13.399852)
(xy 4.459177 -13.50861)
(xy 4.446278 -13.548992)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 20724933-58a1-4089-9039-b28d9a210fd9))
(fp_poly
(pts
(xy 5.559454 -14.04519)
(xy 5.615823 -13.946664)
(xy 5.647266 -13.884316)
(xy 5.728729 -13.75544)
(xy 5.865419 -13.576642)
(xy 6.039658 -13.369642)
(xy 6.233768 -13.15616)
(xy 6.275409 -13.11253)
(xy 6.707254 -12.637275)
(xy 7.060138 -12.18547)
(xy 7.347241 -11.736326)
(xy 7.581747 -11.269054)
(xy 7.776838 -10.762866)
(xy 7.78969 -10.724438)
(xy 7.8684 -10.463125)
(xy 7.933522 -10.201487)
(xy 7.982161 -9.957651)
(xy 8.01142 -9.749746)
(xy 8.018403 -9.595901)
(xy 8.000214 -9.514244)
(xy 7.984377 -9.505835)
(xy 7.950227 -9.55204)
(xy 7.909281 -9.6734)
(xy 7.870199 -9.844032)
(xy 7.868929 -9.850805)
(xy 7.703113 -10.502858)
(xy 7.45389 -11.152751)
(xy 7.135261 -11.76735)
(xy 6.915703 -12.10665)
(xy 6.784794 -12.277964)
(xy 6.605156 -12.493476)
(xy 6.40063 -12.725403)
(xy 6.198489 -12.942401)
(xy 5.912799 -13.25697)
(xy 5.708654 -13.523907)
(xy 5.581406 -13.750517)
(xy 5.526406 -13.944105)
(xy 5.523331 -14.003219)
(xy 5.531494 -14.061288)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp b6c17c6d-dcff-4f54-aa9d-2eae5117846e))
(fp_poly
(pts
(xy 1.761145 -1.086154)
(xy 1.677765 -0.95706)
(xy 1.529554 -0.75044)
(xy 1.503078 -0.714363)
(xy 1.13663 -0.274215)
(xy 0.687776 0.167561)
(xy 0.174817 0.59512)
(xy -0.383945 0.992617)
(xy -0.689939 1.184214)
(xy -0.834668 1.268152)
(xy -1.048422 1.388877)
(xy -1.310236 1.534706)
(xy -1.599146 1.693956)
(xy -1.865392 1.839309)
(xy -2.319148 2.094177)
(xy -2.78953 2.373363)
(xy -3.248623 2.659506)
(xy -3.668508 2.935243)
(xy -3.992425 3.162069)
(xy -4.065258 3.198669)
(xy -4.088531 3.184851)
(xy -4.062963 3.117894)
(xy -3.997474 2.997856)
(xy -3.943899 2.910307)
(xy -3.779042 2.690573)
(xy -3.553297 2.456631)
(xy -3.26134 2.204533)
(xy -2.897842 1.930326)
(xy -2.457478 1.630062)
(xy -1.93492 1.299789)
(xy -1.324841 0.935557)
(xy -1.124346 0.8193)
(xy -0.516094 0.462852)
(xy 0.008922 0.142102)
(xy 0.460546 -0.149479)
(xy 0.848625 -0.418422)
(xy 1.183003 -0.67126)
(xy 1.424235 -0.871329)
(xy 1.61124 -1.030311)
(xy 1.728989 -1.120577)
(xy 1.778589 -1.139926)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp b8433013-71f2-49d0-8ad1-513c68825ff3))
(fp_poly
(pts
(xy 2.116832 -8.697015)
(xy 2.305205 -8.640337)
(xy 2.468945 -8.600085)
(xy 2.569182 -8.585276)
(xy 2.604592 -8.569794)
(xy 2.55767 -8.521314)
(xy 2.423728 -8.435524)
(xy 2.376459 -8.40795)
(xy 2.174108 -8.296207)
(xy 2.053192 -8.24168)
(xy 2.010935 -8.243653)
(xy 2.044561 -8.301411)
(xy 2.068097 -8.328479)
(xy 2.126059 -8.430916)
(xy 2.128728 -8.507352)
(xy 2.069177 -8.572585)
(xy 1.99278 -8.579828)
(xy 1.944475 -8.52901)
(xy 1.942053 -8.507652)
(xy 1.905022 -8.422264)
(xy 1.814807 -8.399459)
(xy 1.702725 -8.444311)
(xy 1.677149 -8.464727)
(xy 1.6033 -8.518797)
(xy 1.590605 -8.494346)
(xy 1.592658 -8.487353)
(xy 1.671405 -8.376694)
(xy 1.792031 -8.338976)
(xy 1.890076 -8.369085)
(xy 1.995882 -8.424774)
(xy 2.031252 -8.418836)
(xy 1.993159 -8.355936)
(xy 1.87937 -8.291193)
(xy 1.722511 -8.288652)
(xy 1.557905 -8.344921)
(xy 1.469316 -8.406206)
(xy 1.377568 -8.490936)
(xy 1.330441 -8.542231)
(xy 1.328773 -8.546202)
(xy 1.369411 -8.577717)
(xy 1.473264 -8.640347)
(xy 1.553586 -8.685306)
(xy 1.778399 -8.808115)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp d2e21ff5-83d7-4dc7-b9b0-cd40a9e86d21))
(fp_poly
(pts
(xy 3.480763 7.807499)
(xy 3.593056 7.863406)
(xy 3.791766 8.046933)
(xy 3.897604 8.27043)
(xy 3.907619 8.526233)
(xy 3.886821 8.62616)
(xy 3.764597 8.893395)
(xy 3.56557 9.116762)
(xy 3.3093 9.286483)
(xy 3.015344 9.39278)
(xy 2.703261 9.425872)
(xy 2.39261 9.375981)
(xy 2.389236 9.374922)
(xy 2.249942 9.324257)
(xy 2.162169 9.27943)
(xy 2.146545 9.261532)
(xy 2.19329 9.242804)
(xy 2.315894 9.228818)
(xy 2.488019 9.222552)
(xy 2.491515 9.222527)
(xy 2.840482 9.195327)
(xy 3.121523 9.113912)
(xy 3.357503 8.971018)
(xy 3.402975 8.932958)
(xy 3.516702 8.816349)
(xy 3.566931 8.701604)
(xy 3.577465 8.555068)
(xy 3.536371 8.337528)
(xy 3.424501 8.180897)
(xy 3.258976 8.09693)
(xy 3.056916 8.097383)
(xy 2.956907 8.128971)
(xy 2.833605 8.218152)
(xy 2.732948 8.355438)
(xy 2.67567 8.504144)
(xy 2.679335 8.620089)
(xy 2.679481 8.667778)
(xy 2.65696 8.662214)
(xy 2.621802 8.589719)
(xy 2.609541 8.455238)
(xy 2.618972 8.296114)
(xy 2.648894 8.149691)
(xy 2.675579 8.084547)
(xy 2.822554 7.916959)
(xy 3.026155 7.810002)
(xy 3.255765 7.771055)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp bf3971a7-884f-47d1-802f-f7fd12497887))
(fp_poly
(pts
(xy -0.255533 1.247222)
(xy -0.277843 1.297609)
(xy -0.337765 1.417392)
(xy -0.424783 1.585792)
(xy -0.481396 1.693527)
(xy -0.58706 1.905552)
(xy -0.71451 2.179742)
(xy -0.848752 2.482897)
(xy -0.974792 2.781815)
(xy -0.992214 2.824607)
(xy -1.185134 3.288744)
(xy -1.355146 3.669856)
(xy -1.50936 3.982623)
(xy -1.654885 4.241725)
(xy -1.752788 4.395171)
(xy -1.843849 4.512363)
(xy -1.992187 4.683302)
(xy -2.181914 4.891484)
(xy -2.397139 5.120408)
(xy -2.621972 5.353573)
(xy -2.840526 5.574475)
(xy -3.03691 5.766615)
(xy -3.195235 5.913488)
(xy -3.290682 5.992349)
(xy -3.438306 6.098734)
(xy -3.401832 5.847456)
(xy -3.340827 5.55955)
(xy -3.238045 5.21689)
(xy -3.105096 4.851885)
(xy -2.953587 4.496944)
(xy -2.82673 4.241851)
(xy -2.671353 3.967108)
(xy -2.484531 3.658398)
(xy -2.278332 3.333666)
(xy -2.064823 3.010857)
(xy -1.856072 2.707917)
(xy -1.664144 2.442789)
(xy -1.501109 2.233418)
(xy -1.396384 2.114848)
(xy -1.292981 2.019157)
(xy -1.145208 1.894333)
(xy -0.969757 1.753072)
(xy -0.783321 1.608066)
(xy -0.60259 1.472012)
(xy -0.444258 1.357603)
(xy -0.325017 1.277535)
(xy -0.261558 1.244501)
)
(stroke (width 0) (type solid)) (fill solid) (layer "F.SilkS") (tstamp dfce33fa-6bcb-4eda-8314-f0c6d87ff04c))
(fp_poly
(pts
(xy 2.139868 -1.486495)
(xy 2.136639 -1.360833)
(xy 2.120246 -1.177888)
(xy 2.093057 -0.959337)
(xy 2.057439 -0.726856)