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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
|
(kicad_sch (version 20230121) (generator eeschema)
(uuid 5b15e187-8375-4a39-b354-54b5fa659018)
(paper "A4")
(title_block
(title "DART-70 PA")
(date "2024-01-14")
(rev "0")
(company "HB9EGM")
(comment 1 "With AFT05MS031N")
(comment 2 "Inspired by EX8MLE's design for RFzero")
)
(lib_symbols
(symbol "Connector:Conn_01x08_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x08_Male" (at 0 -12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x08_Male_1_1"
(polyline
(pts
(xy 1.27 -10.16)
(xy 0.8636 -10.16)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -7.62)
(xy 0.8636 -7.62)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 5.08)
(xy 0.8636 5.08)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 7.62)
(xy 0.8636 7.62)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start 0.8636 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(rectangle (start 0.8636 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default))
(fill (type outline))
)
(pin passive line (at 5.08 7.62 180) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 5.08 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 2.54 180) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -5.08 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -7.62 180) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -10.16 180) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:Conn_Coaxial" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0.254 3.048 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_Coaxial" (at 2.921 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" " ~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_Coaxial_0_1"
(arc (start -1.778 -0.508) (mid 0.222 -1.808) (end 1.778 0)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0)
(xy -0.508 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 0 -1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 0 0) (radius 0.508)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(arc (start 1.778 0) (mid 0.2221 1.8083) (end -1.778 0.508)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "Conn_Coaxial_1_1"
(pin passive line (at -5.08 0 0) (length 2.54)
(name "In" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -5.08 90) (length 2.54)
(name "Ext" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector:TestPoint_Small" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint_Small" (at 0 2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_Small_0_1"
(circle (center 0 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "TestPoint_Small_1_1"
(pin passive line (at 0 0 90) (length 0)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x02" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 1.27) (end 1.27 -3.81)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Polarized" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_0_1"
(rectangle (start -2.286 0.508) (end 2.286 1.016)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.794)
(xy -1.27 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 2.286 -0.508) (end -2.286 -1.016)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "C_Polarized_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "capacitor cap" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Trim_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 1.524 -2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "C_Trim_Small" (at 3.048 -3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "trimmer variable capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Trimmable capacitor, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Trim_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 1.524)
(xy -0.762 -1.524)
)
(stroke (width 0.1778) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 0.381 1.778)
)
(stroke (width 0.1778) (type default))
(fill (type none))
)
)
(symbol "C_Trim_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:FerriteBead" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "FB" (at -3.81 0.635 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "FerriteBead" (at 3.81 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "L ferrite bead inductor filter" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Ferrite bead" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "FerriteBead_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 -1.2192)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 1.2954)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.7686 0.4064)
(xy -1.7018 2.2606)
(xy 2.7686 -0.3048)
(xy 1.6764 -2.159)
(xy -2.7686 0.4064)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "FerriteBead_1_1"
(pin passive line (at 0 3.81 270) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.54)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (at -1.27 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "L" (at 1.905 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "inductor choke coil reactor magnetic" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_0_1"
(arc (start 0 -2.54) (mid 0.6323 -1.905) (end 0 -1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 -1.27) (mid 0.6323 -0.635) (end 0 0)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 0) (mid 0.6323 0.635) (end 0 1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 1.27) (mid 0.6323 1.905) (end 0 2.54)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "L_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "LED" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "LED diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Light emitting diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LED_0_1"
(polyline
(pts
(xy -1.27 -1.27)
(xy -1.27 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy 1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy 1.27 1.27)
(xy -1.27 0)
(xy 1.27 -1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.048 -0.762)
(xy -4.572 -2.286)
(xy -3.81 -2.286)
(xy -4.572 -2.286)
(xy -4.572 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 -0.762)
(xy -3.302 -2.286)
(xy -2.54 -2.286)
(xy -3.302 -2.286)
(xy -3.302 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "LED_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L_Iron" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (at -1.27 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "L_Iron" (at 2.794 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "inductor choke coil reactor magnetic" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor with iron core" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_Iron_0_1"
(arc (start 0 -2.54) (mid 0.6323 -1.905) (end 0 -1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 -1.27) (mid 0.6323 -0.635) (end 0 0)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 2.54)
(xy 1.016 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.524 -2.54)
(xy 1.524 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 0) (mid 0.6323 0.635) (end 0 1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 1.27) (mid 0.6323 1.905) (end 0 2.54)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "L_Iron_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Q_NMOS_DGS" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 5.08 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Q_NMOS_DGS" (at 5.08 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 5.08 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "transistor NMOS N-MOS N-MOSFET" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "N-MOSFET transistor, drain/gate/source" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Q_NMOS_DGS_0_1"
(polyline
(pts
(xy 0.254 0)
(xy -2.54 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.905)
(xy 0.254 -1.905)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.27)
(xy 0.762 -2.286)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 0.508)
(xy 0.762 -0.508)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 2.286)
(xy 0.762 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy 2.54 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 0)
(xy 0.762 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.778)
(xy 3.302 -1.778)
(xy 3.302 1.778)
(xy 0.762 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy 2.032 0.381)
(xy 2.032 -0.381)
(xy 1.016 0)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy 2.794 0.508)
(xy 2.921 0.381)
(xy 3.683 0.381)
(xy 3.81 0.254)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.302 0.381)
(xy 2.921 -0.254)
(xy 3.683 -0.254)
(xy 3.302 0.381)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 1.651 0) (radius 2.794)
(stroke (width 0.254) (type default))
(fill (type none))
)
(circle (center 2.54 -1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 2.54 1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "Q_NMOS_DGS_1_1"
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -5.08 0 0) (length 2.54)
(name "G" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "S" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R_Potentiometer" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "RV" (at -4.445 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R_Potentiometer" (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "resistor variable" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Potentiometer" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Potentiometer*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_Potentiometer_0_1"
(polyline
(pts
(xy 2.54 0)
(xy 1.524 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.143 0)
(xy 2.286 0.508)
(xy 2.286 -0.508)
(xy 1.143 0)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(rectangle (start 1.016 2.54) (end -1.016 -2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_Potentiometer_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Diode:1N4148W" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1N4148W" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_SMD:D_SOD-123" (at 0 -4.445 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.vishay.com/docs/85748/1n4148w.pdf" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "75V 0.15A Fast Switching Diode, SOD-123" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "D*SOD?123*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "1N4148W_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "1N4148W_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Transistor_BJT:MMBT3904" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 5.08 1.905 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MMBT3904" (at 5.08 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 5.08 -1.905 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "https://www.onsemi.com/pub/Collateral/2N3903-D.PDF" (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "NPN Transistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "0.2A Ic, 40V Vce, Small Signal NPN Transistor, SOT-23" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MMBT3904_0_1"
(polyline
(pts
(xy 0.635 0.635)
(xy 2.54 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -0.635)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 1.905)
(xy 0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.778)
(xy 1.778 -1.27)
(xy 2.286 -2.286)
(xy 1.27 -1.778)
(xy 1.27 -1.778)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "MMBT3904_1_1"
(pin input line (at -5.08 0 0) (length 5.715)
(name "B" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "E" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 243.84 134.62) (diameter 0) (color 0 0 0 0)
(uuid 07836f83-6060-470b-8f89-0ce1ec56d418)
)
(junction (at 210.82 134.62) (diameter 0) (color 0 0 0 0)
(uuid 0b268484-411d-47b1-b999-53276da9bbc8)
)
(junction (at 77.47 111.76) (diameter 0) (color 0 0 0 0)
(uuid 0d878126-857a-4c78-a4d5-4273794a08d4)
)
(junction (at 66.04 111.76) (diameter 0) (color 0 0 0 0)
(uuid 0e6cd1c4-adaa-4402-bb9e-6f997371d432)
)
(junction (at 104.14 134.62) (diameter 0) (color 0 0 0 0)
(uuid 15a7353c-679d-4a39-8e21-8dcf4dd15adb)
)
(junction (at 264.16 134.62) (diameter 0) (color 0 0 0 0)
(uuid 195a6d9b-6182-4df4-a43e-ebc8ed21e7cc)
)
(junction (at 30.48 125.73) (diameter 0) (color 0 0 0 0)
(uuid 1b13994c-f089-475c-854a-0f5b759e3659)
)
(junction (at 26.67 104.14) (diameter 0) (color 0 0 0 0)
(uuid 28a0b373-5b61-4052-b7a3-90f5ce7f26c1)
)
(junction (at 143.51 43.18) (diameter 0) (color 0 0 0 0)
(uuid 2a7537ae-d8f3-4605-825d-d390f2dea678)
)
(junction (at 217.17 134.62) (diameter 0) (color 0 0 0 0)
(uuid 2c45e512-a70c-4fec-a58b-acc1fc8f3de9)
)
(junction (at 264.16 124.46) (diameter 0) (color 0 0 0 0)
(uuid 2ea5cf5f-727b-458b-9105-378cd8062de0)
)
(junction (at 270.51 124.46) (diameter 0) (color 0 0 0 0)
(uuid 354f1dd0-be35-4e04-aff2-aa1726582cb3)
)
(junction (at 237.49 124.46) (diameter 0) (color 0 0 0 0)
(uuid 357702ee-c1cb-45ce-91b4-bd2729fb035f)
)
(junction (at 95.25 165.1) (diameter 0) (color 0 0 0 0)
(uuid 38571954-dc08-459e-955e-985aef59d884)
)
(junction (at 227.33 134.62) (diameter 0) (color 0 0 0 0)
(uuid 390f46ed-9da2-4d2c-8256-cbc67c9df7ee)
)
(junction (at 81.28 125.73) (diameter 0) (color 0 0 0 0)
(uuid 3a8c163e-a20c-4266-ab24-4969ee46ac76)
)
(junction (at 26.67 114.3) (diameter 0) (color 0 0 0 0)
(uuid 3c783469-312e-49da-b1a0-5ef2411af3fa)
)
(junction (at 64.77 157.48) (diameter 0) (color 0 0 0 0)
(uuid 41d16c10-6ab7-4910-b7d9-bc7dfcf15d6e)
)
(junction (at 26.67 101.6) (diameter 0) (color 0 0 0 0)
(uuid 4847b75a-9b26-4f92-8eb7-87ef4973a7cd)
)
(junction (at 88.9 80.01) (diameter 0) (color 0 0 0 0)
(uuid 4da6b9f7-70a6-4d3a-ad89-9b25eb6a6b9f)
)
(junction (at 30.48 157.48) (diameter 0) (color 0 0 0 0)
(uuid 5220a873-9e9f-41e6-b44b-ea09e494d30e)
)
(junction (at 158.75 67.31) (diameter 0) (color 0 0 0 0)
(uuid 5223d014-efa2-464b-8d47-a5f566011098)
)
(junction (at 114.3 99.06) (diameter 0) (color 0 0 0 0)
(uuid 59ba7f85-50ff-4879-9db6-5eddb29afe0c)
)
(junction (at 50.8 111.76) (diameter 0) (color 0 0 0 0)
(uuid 5ccb938c-1757-4a8a-a26f-33e46e8f2c72)
)
(junction (at 96.52 130.81) (diameter 0) (color 0 0 0 0)
(uuid 619ca898-8620-46b6-8a46-63ec74636165)
)
(junction (at 88.9 111.76) (diameter 0) (color 0 0 0 0)
(uuid 6525f38c-2fde-421e-ac50-99a590fb8aa4)
)
(junction (at 158.75 90.17) (diameter 0) (color 0 0 0 0)
(uuid 691b89e3-38f6-4a25-991f-71e10b08c971)
)
(junction (at 193.04 124.46) (diameter 0) (color 0 0 0 0)
(uuid 6e96aa32-a650-4539-b075-b514b7a8a4d7)
)
(junction (at 149.86 119.38) (diameter 0) (color 0 0 0 0)
(uuid 6f12d461-9c41-44e6-9d4b-3c964829c153)
)
(junction (at 59.69 111.76) (diameter 0) (color 0 0 0 0)
(uuid 79ebc2a2-03a9-4373-889b-065a112eb340)
)
(junction (at 96.52 99.06) (diameter 0) (color 0 0 0 0)
(uuid 80379723-df48-4c60-b918-31b2a4bda3dd)
)
(junction (at 217.17 124.46) (diameter 0) (color 0 0 0 0)
(uuid 8271fa93-0f38-4684-9e63-fc6e04de8398)
)
(junction (at 81.28 111.76) (diameter 0) (color 0 0 0 0)
(uuid 8c8e5714-5de9-4e4b-b9d7-509a0302c29b)
)
(junction (at 237.49 134.62) (diameter 0) (color 0 0 0 0)
(uuid 8dc220c2-a8ed-42f9-b205-e54fa874c8bb)
)
(junction (at 270.51 134.62) (diameter 0) (color 0 0 0 0)
(uuid 986aa9cf-bf4d-4503-8967-921c2588075b)
)
(junction (at 158.75 43.18) (diameter 0) (color 0 0 0 0)
(uuid 9aaf1e30-2a34-482a-b82f-4b42662ef83e)
)
(junction (at 210.82 124.46) (diameter 0) (color 0 0 0 0)
(uuid 9d3c9683-5663-4736-8c77-b4ad5cf580b6)
)
(junction (at 158.75 53.34) (diameter 0) (color 0 0 0 0)
(uuid aa4198e9-9253-4912-88d3-2bc9f9ccc3cb)
)
(junction (at 149.86 99.06) (diameter 0) (color 0 0 0 0)
(uuid cad6a12c-e9a4-4231-89d8-a5b93e94b5c3)
)
(junction (at 38.1 111.76) (diameter 0) (color 0 0 0 0)
(uuid cb6954ea-0eae-41ef-b7f1-4bd859a09d7c)
)
(junction (at 63.5 111.76) (diameter 0) (color 0 0 0 0)
(uuid ce481610-0b72-475a-b215-c1f8bdbeb1cd)
)
(junction (at 191.77 124.46) (diameter 0) (color 0 0 0 0)
(uuid d0804af9-e8a4-4b78-996b-8a2aa2de1277)
)
(junction (at 193.04 134.62) (diameter 0) (color 0 0 0 0)
(uuid d102df0b-977e-4617-bc5a-c2c5aef8795e)
)
(junction (at 152.4 43.18) (diameter 0) (color 0 0 0 0)
(uuid d1917986-c574-4ca8-a7a0-17ed9983034f)
)
(junction (at 149.86 124.46) (diameter 0) (color 0 0 0 0)
(uuid d658e4de-b98d-4535-84b5-299e97561988)
)
(junction (at 78.74 80.01) (diameter 0) (color 0 0 0 0)
(uuid e7d4d251-caf8-4e6e-9204-795c713a7442)
)
(junction (at 135.89 43.18) (diameter 0) (color 0 0 0 0)
(uuid e7f551a9-e0df-4a96-a575-86b0c714778a)
)
(junction (at 104.14 130.81) (diameter 0) (color 0 0 0 0)
(uuid e7fef742-9201-40b9-933c-37a7e36cbd68)
)
(junction (at 158.75 77.47) (diameter 0) (color 0 0 0 0)
(uuid e80f9fff-5840-40c6-8d64-77dddfb42c90)
)
(junction (at 243.84 124.46) (diameter 0) (color 0 0 0 0)
(uuid f16e5109-6ecd-43b4-940a-ddfced516ee2)
)
(wire (pts (xy 193.04 124.46) (xy 198.12 124.46))
(stroke (width 0) (type default))
(uuid 03037bac-b1ab-445d-87b9-d272feb8e453)
)
(wire (pts (xy 114.3 99.06) (xy 119.38 99.06))
(stroke (width 0) (type default))
(uuid 0506ce42-0a4a-4330-a19a-32bac51e37ed)
)
(wire (pts (xy 193.04 134.62) (xy 210.82 134.62))
(stroke (width 0) (type default))
(uuid 054b71df-91c9-4af3-b33a-93e562f966e5)
)
(wire (pts (xy 87.63 80.01) (xy 88.9 80.01))
(stroke (width 0) (type default))
(uuid 0d879d8c-0140-4523-abdb-ba257d910e63)
)
(wire (pts (xy 149.86 99.06) (xy 151.13 99.06))
(stroke (width 0) (type default))
(uuid 1421c52e-eecc-45a4-b371-7380e42b9396)
)
(wire (pts (xy 59.69 111.76) (xy 59.69 116.84))
(stroke (width 0) (type default))
(uuid 1636314b-5a5e-4086-8548-293761dc7036)
)
(wire (pts (xy 26.67 114.3) (xy 26.67 116.84))
(stroke (width 0) (type default))
(uuid 16f50195-4b35-4f32-8157-1564ff2a6c51)
)
(wire (pts (xy 81.28 120.65) (xy 81.28 125.73))
(stroke (width 0) (type default))
(uuid 190d063d-174e-4ad9-85f8-55e4d428bd12)
)
(wire (pts (xy 35.56 80.01) (xy 78.74 80.01))
(stroke (width 0) (type default))
(uuid 1b52eb81-185d-47ad-9d0d-efab0d6a8d99)
)
(wire (pts (xy 88.9 106.68) (xy 88.9 111.76))
(stroke (width 0) (type default))
(uuid 1df34c33-4d7a-4dbb-98ae-99ebd2698365)
)
(wire (pts (xy 161.29 67.31) (xy 158.75 67.31))
(stroke (width 0) (type default))
(uuid 1e01d736-530b-479e-b5bd-fd5179c22560)
)
(wire (pts (xy 158.75 90.17) (xy 161.29 90.17))
(stroke (width 0) (type default))
(uuid 1f90b473-4e0f-4bc8-a42d-4612f5af52af)
)
(wire (pts (xy 135.89 43.18) (xy 135.89 35.56))
(stroke (width 0) (type default))
(uuid 21a21950-4947-45f4-ba42-3637172c695d)
)
(wire (pts (xy 77.47 111.76) (xy 77.47 113.03))
(stroke (width 0) (type default))
(uuid 250731c4-7544-4aa5-bdd8-a46175e958d0)
)
(wire (pts (xy 217.17 124.46) (xy 223.52 124.46))
(stroke (width 0) (type default))
(uuid 2538d328-bf5e-4a8e-b661-72d8feae9014)
)
(wire (pts (xy 135.89 35.56) (xy 138.43 35.56))
(stroke (width 0) (type default))
(uuid 27b794cf-89be-48e6-93dc-1c2cad006517)
)
(wire (pts (xy 30.48 125.73) (xy 30.48 157.48))
(stroke (width 0) (type default))
(uuid 27cce050-59b8-4561-98c4-be1b715e7126)
)
(wire (pts (xy 149.86 165.1) (xy 149.86 140.97))
(stroke (width 0) (type default))
(uuid 2beba113-f652-4f4e-9a80-25e512f2064a)
)
(wire (pts (xy 205.74 124.46) (xy 210.82 124.46))
(stroke (width 0) (type default))
(uuid 2c866e50-fd84-40f9-8fad-e23d1651f170)
)
(wire (pts (xy 191.77 104.14) (xy 191.77 90.17))
(stroke (width 0) (type default))
(uuid 2deba761-7a50-4462-8189-274eb63905bf)
)
(wire (pts (xy 30.48 119.38) (xy 30.48 125.73))
(stroke (width 0) (type default))
(uuid 2e5adcbf-708d-487e-8933-016b829e788c)
)
(wire (pts (xy 243.84 134.62) (xy 264.16 134.62))
(stroke (width 0) (type default))
(uuid 31edfc36-8762-4016-824b-f5e81dd23d2b)
)
(wire (pts (xy 149.86 99.06) (xy 149.86 109.22))
(stroke (width 0) (type default))
(uuid 3ad73026-31c9-479c-8c02-4a79cedc1620)
)
(wire (pts (xy 149.86 133.35) (xy 149.86 124.46))
(stroke (width 0) (type default))
(uuid 3c2ff989-e79b-4138-a104-e16109b1e39f)
)
(wire (pts (xy 88.9 120.65) (xy 106.68 120.65))
(stroke (width 0) (type default))
(uuid 3e628f37-a3e9-426a-a6bd-08fa04ef4120)
)
(wire (pts (xy 237.49 124.46) (xy 231.14 124.46))
(stroke (width 0) (type default))
(uuid 40448e82-f9ce-4020-b753-9473d6c4b67a)
)
(wire (pts (xy 26.67 101.6) (xy 35.56 101.6))
(stroke (width 0) (type default))
(uuid 413cb9c7-61f3-4dc8-a5d3-08e112c1ab56)
)
(wire (pts (xy 30.48 157.48) (xy 64.77 157.48))
(stroke (width 0) (type default))
(uuid 4145d2dd-75bb-44e8-abe3-f6e59f6611dc)
)
(wire (pts (xy 143.51 35.56) (xy 143.51 43.18))
(stroke (width 0) (type default))
(uuid 4466b880-fd6b-4d44-9f5b-0845422aa863)
)
(wire (pts (xy 227.33 134.62) (xy 217.17 134.62))
(stroke (width 0) (type default))
(uuid 4509ebc0-0b03-4653-9685-a0111c81b6fc)
)
(wire (pts (xy 30.48 125.73) (xy 81.28 125.73))
(stroke (width 0) (type default))
(uuid 455a949b-328d-4657-b2e0-f30ddaf96b47)
)
(wire (pts (xy 270.51 124.46) (xy 270.51 125.73))
(stroke (width 0) (type default))
(uuid 45966622-6345-469c-af61-b29d430f0c8b)
)
(wire (pts (xy 270.51 134.62) (xy 264.16 134.62))
(stroke (width 0) (type default))
(uuid 46d7a519-fc4d-4789-9666-c5bd3915eea4)
)
(wire (pts (xy 158.75 53.34) (xy 158.75 55.88))
(stroke (width 0) (type default))
(uuid 4795b5f0-d86f-45db-8fcd-722fbbc5af6b)
)
(wire (pts (xy 96.52 99.06) (xy 96.52 106.68))
(stroke (width 0) (type default))
(uuid 48d2fa6f-d9c7-48a6-bdc2-32574ff474ef)
)
(wire (pts (xy 78.74 80.01) (xy 80.01 80.01))
(stroke (width 0) (type default))
(uuid 49042d06-329b-44c2-83e6-6beba613b52d)
)
(wire (pts (xy 66.04 111.76) (xy 77.47 111.76))
(stroke (width 0) (type default))
(uuid 4c13e22a-1779-47fb-b2cf-fe8bd20bb0a8)
)
(wire (pts (xy 81.28 161.29) (xy 81.28 157.48))
(stroke (width 0) (type default))
(uuid 4e4aaf95-5e41-42ec-9c20-560fc06a43a8)
)
(wire (pts (xy 129.54 43.18) (xy 135.89 43.18))
(stroke (width 0) (type default))
(uuid 50f57efc-37ba-4e95-97ed-3da1e6543105)
)
(wire (pts (xy 58.42 107.95) (xy 59.69 107.95))
(stroke (width 0) (type default))
(uuid 57b2d430-61e8-4daa-9d5e-9b555b72b9ba)
)
(wire (pts (xy 158.75 43.18) (xy 161.29 43.18))
(stroke (width 0) (type default))
(uuid 5a3eb644-cc09-4217-885f-675f40cea99e)
)
(wire (pts (xy 26.67 101.6) (xy 26.67 104.14))
(stroke (width 0) (type default))
(uuid 5a6d559b-b82d-4729-bf5a-c314cfd7ddd9)
)
(wire (pts (xy 149.86 119.38) (xy 149.86 124.46))
(stroke (width 0) (type default))
(uuid 5a85effd-8328-45a1-9a54-5058690e5fd9)
)
(wire (pts (xy 88.9 120.65) (xy 88.9 111.76))
(stroke (width 0) (type default))
(uuid 5b6cc6f7-f424-4eb8-8053-90a863119a27)
)
(wire (pts (xy 270.51 124.46) (xy 275.59 124.46))
(stroke (width 0) (type default))
(uuid 5cce6fd9-6d96-419d-817d-f19a82c95670)
)
(wire (pts (xy 156.21 77.47) (xy 158.75 77.47))
(stroke (width 0) (type default))
(uuid 6108d2e9-7117-4f95-9eb4-bad50fadc71a)
)
(wire (pts (xy 264.16 124.46) (xy 270.51 124.46))
(stroke (width 0) (type default))
(uuid 62dfc088-aacb-4c00-83d4-fc5824d04bbe)
)
(wire (pts (xy 149.86 124.46) (xy 152.4 124.46))
(stroke (width 0) (type default))
(uuid 63415c8a-ef2d-4d77-8dc4-adbdd7d9fa05)
)
(wire (pts (xy 158.75 43.18) (xy 158.75 53.34))
(stroke (width 0) (type default))
(uuid 6a0b2a54-deb8-4522-b8a4-6c8caef04015)
)
(wire (pts (xy 264.16 133.35) (xy 264.16 134.62))
(stroke (width 0) (type default))
(uuid 6e52a3f0-eeb7-4328-9476-55d78b0917cd)
)
(wire (pts (xy 53.34 107.95) (xy 50.8 107.95))
(stroke (width 0) (type default))
(uuid 6e7af77a-4865-4c73-a97d-7e702dbd947a)
)
(wire (pts (xy 158.75 53.34) (xy 161.29 53.34))
(stroke (width 0) (type default))
(uuid 711cb8d0-9eef-4143-a1c2-8a99475f50fb)
)
(wire (pts (xy 237.49 133.35) (xy 237.49 134.62))
(stroke (width 0) (type default))
(uuid 7447de47-53bb-4325-b0bd-147a07ab95bc)
)
(wire (pts (xy 88.9 81.28) (xy 88.9 80.01))
(stroke (width 0) (type default))
(uuid 75429fef-127e-4826-87bd-9fa82a2c4c72)
)
(wire (pts (xy 193.04 134.62) (xy 193.04 133.35))
(stroke (width 0) (type default))
(uuid 75f79793-5c86-4924-a13e-f6fed9536919)
)
(wire (pts (xy 148.59 99.06) (xy 149.86 99.06))
(stroke (width 0) (type default))
(uuid 779dd6f2-f6c1-430a-9a60-0ee8baacaeac)
)
(wire (pts (xy 26.67 111.76) (xy 38.1 111.76))
(stroke (width 0) (type default))
(uuid 79331c80-4207-4bf0-97a9-f2d36a42e8b5)
)
(wire (pts (xy 77.47 111.76) (xy 81.28 111.76))
(stroke (width 0) (type default))
(uuid 796f82fb-c242-4368-ab82-0757083ba697)
)
(wire (pts (xy 121.92 102.87) (xy 121.92 107.95))
(stroke (width 0) (type default))
(uuid 79f3e3fe-2ecb-46eb-90d6-177461413f8a)
)
(wire (pts (xy 186.69 125.73) (xy 186.69 124.46))
(stroke (width 0) (type default))
(uuid 7bc9453b-5142-4a09-89b8-30fd48a7a5fe)
)
(wire (pts (xy 114.3 99.06) (xy 114.3 115.57))
(stroke (width 0) (type default))
(uuid 7ce92840-952f-442e-9833-473589403ae4)
)
(wire (pts (xy 38.1 111.76) (xy 43.18 111.76))
(stroke (width 0) (type default))
(uuid 7d2a555d-7e23-4991-a2f7-03ae9e008e26)
)
(wire (pts (xy 158.75 67.31) (xy 158.75 77.47))
(stroke (width 0) (type default))
(uuid 7dd22752-619b-4560-acd6-1a6afb584914)
)
(wire (pts (xy 140.97 35.56) (xy 143.51 35.56))
(stroke (width 0) (type default))
(uuid 7dd8b210-4ad2-4845-86a7-f4102192b2f3)
)
(wire (pts (xy 96.52 130.81) (xy 96.52 116.84))
(stroke (width 0) (type default))
(uuid 7e22bddb-1efe-48cd-afe8-77e01c97dab2)
)
(wire (pts (xy 210.82 124.46) (xy 210.82 125.73))
(stroke (width 0) (type default))
(uuid 7ef43a65-bb2a-4b4a-9f58-f2e27680c1d4)
)
(wire (pts (xy 30.48 157.48) (xy 30.48 162.56))
(stroke (width 0) (type default))
(uuid 83770f2d-f00d-497e-85c7-89ed78d16a9a)
)
(wire (pts (xy 250.19 124.46) (xy 243.84 124.46))
(stroke (width 0) (type default))
(uuid 83c9e024-2ad7-4e74-b7b4-0bc47f99b9a1)
)
(wire (pts (xy 96.52 90.17) (xy 96.52 99.06))
(stroke (width 0) (type default))
(uuid 84d11245-f20d-44e6-a6a3-b71c178a5e5b)
)
(wire (pts (xy 237.49 134.62) (xy 227.33 134.62))
(stroke (width 0) (type default))
(uuid 860d5ce5-1fb6-4f42-8124-53360f576ade)
)
(wire (pts (xy 210.82 133.35) (xy 210.82 134.62))
(stroke (width 0) (type default))
(uuid 87df9f07-b66a-4505-a5e9-48f9d28868ca)
)
(wire (pts (xy 26.67 104.14) (xy 26.67 106.68))
(stroke (width 0) (type default))
(uuid 88927bda-07b7-496e-8c69-9398d7a36abe)
)
(wire (pts (xy 104.14 130.81) (xy 104.14 134.62))
(stroke (width 0) (type default))
(uuid 8af2d381-b4c7-4e31-87e6-196e1379a682)
)
(wire (pts (xy 35.56 101.6) (xy 35.56 80.01))
(stroke (width 0) (type default))
(uuid 924241df-5099-444f-856a-fed46b45c9aa)
)
(wire (pts (xy 257.81 124.46) (xy 264.16 124.46))
(stroke (width 0) (type default))
(uuid 927c855b-e4a3-48c5-9545-2298d2131565)
)
(wire (pts (xy 243.84 134.62) (xy 237.49 134.62))
(stroke (width 0) (type default))
(uuid 931b3588-c414-48db-8eb1-c41ad5948b48)
)
(wire (pts (xy 237.49 124.46) (xy 237.49 125.73))
(stroke (width 0) (type default))
(uuid 948bba21-c35c-4b10-84e4-435880185185)
)
(wire (pts (xy 158.75 77.47) (xy 158.75 80.01))
(stroke (width 0) (type default))
(uuid 94de869a-0b44-4e01-a31f-608cb1e08244)
)
(wire (pts (xy 104.14 130.81) (xy 96.52 130.81))
(stroke (width 0) (type default))
(uuid 95d9cc26-eeae-4e78-9928-f9e199c4c7ec)
)
(wire (pts (xy 38.1 101.6) (xy 38.1 111.76))
(stroke (width 0) (type default))
(uuid 97e5d401-e56f-45e9-a932-7f5b1d7073de)
)
(wire (pts (xy 217.17 125.73) (xy 217.17 124.46))
(stroke (width 0) (type default))
(uuid 99a39e2c-008e-48d2-adf6-2858299da107)
)
(wire (pts (xy 81.28 111.76) (xy 81.28 113.03))
(stroke (width 0) (type default))
(uuid 9a01972b-35c4-4cd7-8b81-452d5eaa6b15)
)
(wire (pts (xy 50.8 107.95) (xy 50.8 111.76))
(stroke (width 0) (type default))
(uuid 9afb27de-aead-45fb-a51b-f5c54f15c26f)
)
(wire (pts (xy 59.69 107.95) (xy 59.69 111.76))
(stroke (width 0) (type default))
(uuid 9be4757f-3ca7-4c06-bce5-d33b117d93c1)
)
(wire (pts (xy 210.82 124.46) (xy 217.17 124.46))
(stroke (width 0) (type default))
(uuid 9c49a9f0-495e-4919-ab42-e2e05fc23973)
)
(wire (pts (xy 189.23 90.17) (xy 191.77 90.17))
(stroke (width 0) (type default))
(uuid 9e3e1980-0be8-4216-81ed-771f0992c0f9)
)
(wire (pts (xy 78.74 81.28) (xy 78.74 80.01))
(stroke (width 0) (type default))
(uuid a1716bea-e9cf-4a0d-a6ee-818291b8663c)
)
(wire (pts (xy 191.77 124.46) (xy 193.04 124.46))
(stroke (width 0) (type default))
(uuid a3b82476-2c6c-4d3b-9079-d44a94e84799)
)
(wire (pts (xy 88.9 80.01) (xy 96.52 80.01))
(stroke (width 0) (type default))
(uuid a75e87a6-38fc-49d9-8620-23158fe55a7a)
)
(wire (pts (xy 50.8 116.84) (xy 50.8 111.76))
(stroke (width 0) (type default))
(uuid a7ca72be-999d-430b-9b64-030f39cd86a3)
)
(wire (pts (xy 158.75 63.5) (xy 158.75 67.31))
(stroke (width 0) (type default))
(uuid a870d796-b1c5-4cda-9628-ca229808998f)
)
(wire (pts (xy 280.67 129.54) (xy 280.67 134.62))
(stroke (width 0) (type default))
(uuid ac3dd0c9-2a86-4726-a38b-e7e4832c4384)
)
(wire (pts (xy 193.04 125.73) (xy 193.04 124.46))
(stroke (width 0) (type default))
(uuid b17b6f45-859b-4575-8472-2f613b7b6dcd)
)
(wire (pts (xy 104.14 135.89) (xy 104.14 134.62))
(stroke (width 0) (type default))
(uuid b1bd08ed-8417-4b71-8015-67cdd3196f88)
)
(wire (pts (xy 53.34 116.84) (xy 50.8 116.84))
(stroke (width 0) (type default))
(uuid b5356a23-65a1-4770-9000-1e14070a7b70)
)
(wire (pts (xy 63.5 111.76) (xy 66.04 111.76))
(stroke (width 0) (type default))
(uuid b5d3ec55-800d-49f9-a592-9cda7f30b70f)
)
(wire (pts (xy 124.46 99.06) (xy 140.97 99.06))
(stroke (width 0) (type default))
(uuid b7b52db8-7f43-4b0e-9d7e-3ad1fdaa6f5a)
)
(wire (pts (xy 149.86 119.38) (xy 152.4 119.38))
(stroke (width 0) (type default))
(uuid b9264e58-5f11-409c-80f0-c8b495d09aba)
)
(wire (pts (xy 280.67 134.62) (xy 270.51 134.62))
(stroke (width 0) (type default))
(uuid ba37d949-8642-4684-8c01-869b2126c32b)
)
(wire (pts (xy 95.25 165.1) (xy 149.86 165.1))
(stroke (width 0) (type default))
(uuid bd80e32a-0971-4b35-b1a4-14f5642ec2d7)
)
(wire (pts (xy 149.86 116.84) (xy 149.86 119.38))
(stroke (width 0) (type default))
(uuid bf828acc-3bce-412c-aa86-58fafb972369)
)
(wire (pts (xy 96.52 130.81) (xy 96.52 133.35))
(stroke (width 0) (type default))
(uuid c0d95078-db22-4001-b859-d6419909c2db)
)
(wire (pts (xy 152.4 43.18) (xy 158.75 43.18))
(stroke (width 0) (type default))
(uuid c47c61bf-4f0f-4c81-a582-26b0a0efbecc)
)
(wire (pts (xy 143.51 43.18) (xy 152.4 43.18))
(stroke (width 0) (type default))
(uuid c60a9973-3ee5-45df-983f-16e317ee423a)
)
(wire (pts (xy 191.77 109.22) (xy 191.77 124.46))
(stroke (width 0) (type default))
(uuid c8c9f825-ccf3-408d-95b5-0ec66c0cc57d)
)
(wire (pts (xy 95.25 167.64) (xy 95.25 165.1))
(stroke (width 0) (type default))
(uuid c9e129b1-b3f9-4dec-9a2c-8df92f9e12d2)
)
(wire (pts (xy 81.28 111.76) (xy 88.9 111.76))
(stroke (width 0) (type default))
(uuid c9f08a66-21a3-4bba-ba77-9066107c2e42)
)
(wire (pts (xy 161.29 90.17) (xy 189.23 90.17))
(stroke (width 1) (type default))
(uuid cac53aca-1915-4f1e-8d2b-52056bff4427)
)
(wire (pts (xy 156.21 67.31) (xy 158.75 67.31))
(stroke (width 0) (type default))
(uuid cc1dc6c3-b21a-4eec-913f-fff6cabe0d66)
)
(wire (pts (xy 186.69 124.46) (xy 191.77 124.46))
(stroke (width 0) (type default))
(uuid cdd5e20b-0fa8-4bf9-b238-f1bdc23ad4e4)
)
(wire (pts (xy 88.9 99.06) (xy 88.9 101.6))
(stroke (width 0) (type default))
(uuid d5f9ece8-b750-48e5-a492-eba339bf4cd3)
)
(wire (pts (xy 63.5 119.38) (xy 63.5 120.65))
(stroke (width 0) (type default))
(uuid d8348cca-f3db-4086-9bad-687901903790)
)
(wire (pts (xy 96.52 99.06) (xy 114.3 99.06))
(stroke (width 0) (type default))
(uuid d92decae-cac9-481c-abc4-0f26136c364f)
)
(wire (pts (xy 161.29 77.47) (xy 158.75 77.47))
(stroke (width 0) (type default))
(uuid da1253e4-a00b-4360-bbb3-4265dbc37976)
)
(wire (pts (xy 158.75 90.17) (xy 158.75 93.98))
(stroke (width 0) (type default))
(uuid dac9e428-1da5-4d38-9d1a-c129d6db23d0)
)
(wire (pts (xy 81.28 157.48) (xy 64.77 157.48))
(stroke (width 0) (type default))
(uuid dc41e1a0-697e-46b7-b336-f24a894bea34)
)
(wire (pts (xy 59.69 116.84) (xy 58.42 116.84))
(stroke (width 0) (type default))
(uuid e02fc88f-7718-45df-b23f-3a97427724fb)
)
(wire (pts (xy 217.17 134.62) (xy 210.82 134.62))
(stroke (width 0) (type default))
(uuid e0fc9aa8-3542-40b2-ab39-cade8297e676)
)
(wire (pts (xy 81.28 170.18) (xy 81.28 168.91))
(stroke (width 0) (type default))
(uuid e14f03b4-e8c5-4f83-8964-d3d4e59a3a78)
)
(wire (pts (xy 217.17 133.35) (xy 217.17 134.62))
(stroke (width 0) (type default))
(uuid e23bc929-3d70-4d8d-ba16-cf8cf6cb79a8)
)
(wire (pts (xy 96.52 80.01) (xy 96.52 82.55))
(stroke (width 0) (type default))
(uuid e394d256-bc84-4542-a4db-61c3400568e3)
)
(wire (pts (xy 243.84 133.35) (xy 243.84 134.62))
(stroke (width 0) (type default))
(uuid e79dadba-2e13-4692-bda2-0b3c7c40ddd1)
)
(wire (pts (xy 158.75 87.63) (xy 158.75 90.17))
(stroke (width 0) (type default))
(uuid ebb15ae9-a593-4ca4-a436-404575902885)
)
(wire (pts (xy 186.69 134.62) (xy 186.69 133.35))
(stroke (width 0) (type default))
(uuid ec775e43-14ae-4701-876b-c33805aed1b6)
)
(wire (pts (xy 193.04 134.62) (xy 186.69 134.62))
(stroke (width 0) (type default))
(uuid ecbf4992-f025-40af-a766-609b1ba13f3f)
)
(wire (pts (xy 59.69 111.76) (xy 63.5 111.76))
(stroke (width 0) (type default))
(uuid ee90ddee-404d-4bbd-9749-eed134dab949)
)
(wire (pts (xy 63.5 111.76) (xy 63.5 114.3))
(stroke (width 0) (type default))
(uuid eee4f4f0-f15b-4ac6-b196-3b9b74f03331)
)
(wire (pts (xy 264.16 124.46) (xy 264.16 125.73))
(stroke (width 0) (type default))
(uuid efdaf954-8cff-4baf-bd94-e60d43b8ab48)
)
(wire (pts (xy 243.84 124.46) (xy 243.84 125.73))
(stroke (width 0) (type default))
(uuid f0ed24fb-88e8-4121-8fbd-f16222dfe7d0)
)
(wire (pts (xy 30.48 119.38) (xy 26.67 119.38))
(stroke (width 0) (type default))
(uuid f3678de2-0324-4f86-a774-d94c3486800d)
)
(wire (pts (xy 270.51 133.35) (xy 270.51 134.62))
(stroke (width 0) (type default))
(uuid f3789a95-d8c5-491e-a6cb-c2955ce69b03)
)
(wire (pts (xy 95.25 165.1) (xy 92.71 165.1))
(stroke (width 0) (type default))
(uuid f8cb5b54-d861-4c0d-8527-b5fe3668e51d)
)
(wire (pts (xy 104.14 130.81) (xy 114.3 130.81))
(stroke (width 0) (type default))
(uuid fba42c86-7a67-4c42-bfc3-3780d27afc21)
)
(wire (pts (xy 114.3 130.81) (xy 114.3 125.73))
(stroke (width 0) (type default))
(uuid fcb4a3e9-051a-414d-8e9e-f19aa2f065a3)
)
(wire (pts (xy 243.84 124.46) (xy 237.49 124.46))
(stroke (width 0) (type default))
(uuid ff18b493-d970-42b8-b36a-30d99a2c0d72)
)
(text "EX8MLE places\n2x200pF to GND right at the FET\n330pF at the end of the 80mm+59mm lines\nof width 5.72mm, respectively 3.18mm"
(at 184.15 82.55 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 30cd0c92-cf28-4fee-8ce8-bcfa28158d68)
)
(text "Designed to run on an 3S LiPo\nAbout 11.5V" (at 100.33 43.18 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 31cfa067-2be5-4dca-81a7-51a9f242ab18)
)
(text "The base board\nhas footprints\nfor an attenuator" (at 13.97 96.52 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 4b434c89-f490-4a13-86c9-b032d6ebd9b3)
)
(text "Long line with blank GND\nnext to it to solder capacitors"
(at 162.56 88.9 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid cefb681a-9a85-4932-bbdf-5be16ea04014)
)
(text "Thermal\ncouple\nto FET" (at 106.68 181.61 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid da3cca20-6193-469e-96bc-83450d6571ea)
)
(text "7th order Chebychev lowpass\n80MHz cutoff\nL: 6T, 7T, 6T on 5mm former"
(at 214.63 114.3 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e3524c24-8bcd-43d9-ae49-e75a1feace34)
)
(label "VGG1" (at 99.06 165.1 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0c4e8317-ecbe-43b5-aec6-8acce175e92a)
)
(label "VG_5V" (at 30.48 119.38 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 26bbd749-185f-4055-a9ea-0c6a7e811fdf)
)
(label "DC_IN" (at 129.54 43.18 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5d799fbc-1b3f-4e26-8500-e26dbf3c0835)
)
(label "DC_IN" (at 27.94 101.6 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f973bbb9-2d43-4214-8c4c-878b7db07df8)
)
(symbol (lib_id "power:GND") (at 81.28 133.35 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 005f7316-cffa-4e97-88b2-31e1116d5794)
(property "Reference" "#PWR?" (at 81.28 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 81.28 138.43 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 81.28 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 81.28 133.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a6125074-5a66-4aa2-a276-6f314ca4636b))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 30.48 177.8 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 0e875641-070b-45c7-800e-ac90743723c4)
(property "Reference" "#PWR?" (at 30.48 184.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 30.48 182.88 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 30.48 177.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 30.48 177.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c1c8a501-2366-4168-91de-ba2d11d52d14))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 127 113.03 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 10672e22-a06a-4792-b0a8-48daf51993e2)
(property "Reference" "#PWR02" (at 127 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 127 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 127 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 127 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 93958cda-95ae-4ad8-b6a4-4f6a74d10ff6))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR02") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 270.51 129.54 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 10e5fa3a-7656-42a3-8098-43e8b5a500a0)
(property "Reference" "C?" (at 274.32 128.2699 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "27pF" (at 274.32 130.8099 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 269.5448 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 270.51 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "" (at 270.51 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 270.51 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 89fa0509-1a96-47e6-9df4-841f34f324fe))
(pin "2" (uuid d20a3bfe-ac19-4815-a1b0-963a2f4fd4b8))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 26.67 109.22 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 131d18fb-a13e-4cd5-8d5f-8f4624fd1320)
(property "Reference" "#PWR?" (at 33.02 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 30.48 109.2201 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
(property "Footprint" "" (at 26.67 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 26.67 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1e79e412-72ca-4aae-9692-59f6cd8e4140))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 153.67 77.47 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 13820adf-7c9b-47c9-a5d6-1a6008b1b10c)
(property "Reference" "C?" (at 153.6636 71.12 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1nF" (at 153.6636 73.66 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 149.86 78.4352 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 153.67 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "885612007040/VJ0805A102GXXPW1BC" (at 153.67 77.47 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 153.67 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f273b9b0-2d75-4927-a58a-ff0d7c5badd1))
(pin "2" (uuid df96d83d-32b2-4af0-8e92-7bfd5bc0ca95))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 96.52 140.97 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 16b027b6-40e3-4184-b137-4c4ea22c54c2)
(property "Reference" "#PWR?" (at 96.52 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 96.52 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 96.52 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 96.52 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b6ac6d5a-0031-4103-a280-aac2bf94b302))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 154.94 124.46 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1c9b40ce-8455-4e7e-8062-a0395e5be7de)
(property "Reference" "C?" (at 154.9336 128.27 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1nF" (at 154.9336 130.81 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 151.13 125.4252 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 154.94 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "885612007040/VJ0805A102GXXPW1BC" (at 154.94 124.46 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 154.94 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4b3d0d5f-3518-41ff-a537-cd6a8a034547))
(pin "2" (uuid 29c2defd-3982-441c-a924-20c70506ba9c))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 166.37 43.18 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 1e2f0787-4ca1-441b-aaec-14fb84ab3e93)
(property "Reference" "#PWR?" (at 172.72 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 171.45 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 166.37 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 166.37 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8b2cfc74-3119-4b83-973d-263c21a8028f))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 163.83 53.34 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 21b8b6d5-c337-4950-9ac7-8b32409c2711)
(property "Reference" "C?" (at 163.8236 46.99 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1nF" (at 163.8236 49.53 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 160.02 54.3052 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 163.83 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "885612007040/VJ0805A102GXXPW1BC" (at 163.83 53.34 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 163.83 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8e95399d-946a-49da-b038-5a69b999ff15))
(pin "2" (uuid 0b21e3b0-ea0e-461a-84c0-1bc5a190f461))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:Conn_01x08_Male") (at 21.59 109.22 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 238c1edc-af07-4e13-b552-be650d311fc2)
(property "Reference" "J?" (at 22.225 99.06 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "PA to base" (at 19.05 110.49 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "mpb:PinHeader_1x08_P2.54mm_Boardedge_SMD" (at 21.59 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 21.59 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "SSW-108-01-G-S" (at 21.59 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 21.59 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5e8cdd54-0815-41b9-87c1-7d2a86dc626f))
(pin "2" (uuid 681b6b0d-6a75-41cb-a153-cda277fc4db8))
(pin "3" (uuid f1530dd4-9e87-477b-87b0-2985c47ac054))
(pin "4" (uuid 6d30aff9-3933-42a8-b618-341df896d2c7))
(pin "5" (uuid 2fa5f346-cc19-4e2f-9130-7689315b8833))
(pin "6" (uuid cc74de4f-a750-4de7-9e75-37d86c27ef9b))
(pin "7" (uuid ee944298-319d-4f3a-9994-e43710c40577))
(pin "8" (uuid c32653c8-d4f6-4cea-ac8d-ef184c44efad))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "J?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "J?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 152.4 50.8 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 280bbcc6-e955-4ab5-8a2f-5fb2889b399a)
(property "Reference" "#PWR?" (at 152.4 57.15 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 152.4 55.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 152.4 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 152.4 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 24dd5a81-b0a3-4472-b3cf-772fde440c50))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 63.5 116.84 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 295d1876-c103-415b-b4b5-3bdd6775f513)
(property "Reference" "C?" (at 66.04 116.1986 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "120pF" (at 66.04 118.7386 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 62.5348 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 63.5 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "VJ0805A121GXXPBC" (at 63.5 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 63.5 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a54c44c8-897f-47f7-9c97-90779e679a69))
(pin "2" (uuid 8a2ec705-91d8-4952-91be-ef86bd76e978))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 81.28 170.18 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2a47f234-cc70-4849-9efd-bdaf4174a85f)
(property "Reference" "#PWR?" (at 81.28 176.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 81.28 175.26 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 81.28 170.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 81.28 170.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f680f046-bb20-4020-9c25-abcd192a0a93))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 166.37 53.34 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2c0bb7db-cc1e-4625-8abe-5c7a46a952ea)
(property "Reference" "#PWR?" (at 172.72 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 171.45 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 166.37 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 166.37 53.34 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a5a2cbd1-3f10-466c-9a0b-6a5a13cbec3f))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 95.25 182.88 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 2da6f01f-aec7-4fee-970b-3e1e127cecbd)
(property "Reference" "#PWR?" (at 95.25 189.23 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 95.123 187.2742 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 95.25 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 95.25 182.88 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6dd7d307-dc4f-426d-b0ee-05165d06d5ff))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 88.9 83.82 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 3030b003-6355-48bb-9bf0-0ff72147b576)
(property "Reference" "C?" (at 86.36 82.5435 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10nF" (at 86.36 85.0835 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 88.9 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 88.9 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "VJ0805A103KXJTBC" (at 88.9 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 88.9 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4f9930c9-fabb-450f-866a-37d2487e603d))
(pin "2" (uuid 93ecab7e-d0f7-4094-bf18-bce542ec3657))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Trim_Small") (at 55.88 116.84 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 33c73174-9720-43cd-90bd-ec512fa21702)
(property "Reference" "C?" (at 55.753 120.65 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "5-25pF" (at 55.753 123.19 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "mpb:C_Trimmer_Voltronics_JZ" (at 55.88 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "/home/bram/Sync/Doc/Datasheet/J_Series_Trim-cap-Knowles.pdf" (at 55.88 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "JZ-300" (at 55.88 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 55.88 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 512ab7b8-8a1d-4d07-88da-312435d8f27c))
(pin "2" (uuid c3142d10-029e-45fb-9225-f655553fd9c6))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 96.52 137.16 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 343a0814-bae9-40e9-8bf7-717957980398)
(property "Reference" "R?" (at 99.06 135.8899 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "12" (at 99.06 138.4299 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 98.298 137.16 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 96.52 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 96.52 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2ab16729-9170-43f1-92b8-f267694b18c7))
(pin "2" (uuid 933e4b30-dcd8-4995-a0a2-e9e2f5d234ba))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "R?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:TestPoint") (at 66.04 111.76 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 34de0553-a830-4589-9f1d-754de8db68e2)
(property "Reference" "TP?" (at 66.04 105.41 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "V_{B}" (at 69.85 108.458 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (at 71.12 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 71.12 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 66.04 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 74bba49f-19da-435b-9452-382fc039d457))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "TP?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "TP?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 121.92 99.06 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 3841da8c-03bf-49b3-8cf1-36a8819dd665)
(property "Reference" "C?" (at 121.9136 92.71 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10nF" (at 121.9136 95.25 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 121.92 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 121.92 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "VJ0805A103KXJTBC" (at 121.92 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 121.92 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8f9096c6-373f-4a4b-88b2-eb8836dc292d))
(pin "2" (uuid 08f545a1-49ec-465f-b054-ed840dce08f0))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Transistor_BJT:MMBT3904") (at 111.76 120.65 0) (unit 1)
(in_bom yes) (on_board yes) (dnp yes) (fields_autoplaced)
(uuid 396c2727-4948-4b72-8ed6-ff5c8c2b3aa9)
(property "Reference" "Q?" (at 116.84 119.3799 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "BFU590G" (at 116.84 121.9199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 116.84 122.555 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "" (at 111.76 120.65 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "MPN" "BFU590G" (at 111.76 120.65 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 111.76 120.65 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a1c9a932-68f8-4b2e-a805-0bc0867a8687))
(pin "2" (uuid e14830b2-4a82-43e6-bce6-17374d3a080b))
(pin "3" (uuid d87e3125-a7a6-462c-85a0-dcddbba1213b))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "Q?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "Q?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:L") (at 158.75 83.82 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 3f88c761-07af-4945-a2c3-a2a775529655)
(property "Reference" "L?" (at 160.02 82.55 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "~" (at 160.02 85.09 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "mpb:AirCoil-8mm-SMD" (at 158.75 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 158.75 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 158.75 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a7367d78-0cb9-4430-9c3b-cbae86163a23))
(pin "2" (uuid 99dc04a1-40f0-4a25-a65a-4f810fcd380b))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "L?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "L?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 157.48 119.38 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 41ffd30f-4be7-4cc0-8ae9-e79b38ceb6e3)
(property "Reference" "#PWR?" (at 163.83 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 162.56 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 157.48 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 157.48 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 40dd70f8-b1b0-454e-bb6a-c139c1ccedf5))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 63.5 120.65 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 46a3e193-2b7d-4429-be9c-57614520b6cf)
(property "Reference" "#PWR?" (at 63.5 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 63.5 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 63.5 120.65 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 63.5 120.65 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 704bb2f0-94dc-4a98-8a5a-84f97cdaf8f1))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 78.74 83.82 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 4967d4a9-9612-4226-b552-b39fcbc4b330)
(property "Reference" "C?" (at 76.2 82.5435 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10nF" (at 76.2 85.0835 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 78.74 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 78.74 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "VJ0805A103KXJTBC" (at 78.74 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 78.74 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a0d246fc-2c37-4088-a245-8715600f24d0))
(pin "2" (uuid fb62f42a-de40-40f7-8c13-4a6dd2a0de33))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 166.37 77.47 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 49907ee1-f431-4cb8-96f0-65524801209b)
(property "Reference" "#PWR?" (at 172.72 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 171.45 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 166.37 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 166.37 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bf0c89bc-ca5b-415e-863a-e1f160c3c2f9))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 77.47 116.84 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 4f34b444-9580-47cb-8509-49ef5c9484c5)
(property "Reference" "R?" (at 74.93 115.57 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1k" (at 74.93 118.11 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 79.248 116.84 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 77.47 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 77.47 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a7441cb8-ae59-48bb-b851-97bdf77d2d05))
(pin "2" (uuid 2594a8b9-dcf6-4602-83ac-d37af910db76))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "R?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 144.78 99.06 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 513c5a5e-56da-4c19-8272-d8fc1f774213)
(property "Reference" "R?" (at 144.78 92.71 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "0" (at 144.78 95.25 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 144.78 97.282 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 144.78 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 144.78 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 76ce9447-3e76-4dcf-aa56-ed8e769243f5))
(pin "2" (uuid 7c5a403a-c670-485c-8373-d3551d4a53a1))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "R?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "Connector_Generic:Conn_01x02") (at 138.43 30.48 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 536b7cd7-51ba-4ad0-b947-dbc8a4314bd8)
(property "Reference" "J?" (at 143.51 29.2099 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "I_D" (at 143.51 31.7499 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "mpb:two_2mm_pads" (at 138.43 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 138.43 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 138.43 30.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 97512873-2f2c-429a-a27d-692d4b74acd6))
(pin "2" (uuid ae579a96-dced-4d05-aa52-e7b18b378ae3))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "J?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "J?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 153.67 67.31 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 53ddcabe-6665-4375-893b-94a0f7088dec)
(property "Reference" "C?" (at 153.6636 60.96 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "100nF" (at 153.6636 63.5 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 149.86 68.2752 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 153.67 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "GRM31C5C1H104JA01L" (at 153.67 67.31 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 153.67 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ba9e421d-e95b-46ea-8894-c4432c98dec4))
(pin "2" (uuid ac97ba75-0a55-4a88-adf3-58d183d40f53))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 191.77 106.68 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 5459b0f8-2773-4e40-9da3-b3fc66194de4)
(property "Reference" "C?" (at 194.31 105.4163 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1nF" (at 194.31 107.9563 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 192.7352 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 191.77 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "885612007040/VJ0805A102GXXPW1BC" (at 191.77 106.68 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 191.77 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 580fbbca-1094-4f19-9a11-736a95c3c2b2))
(pin "2" (uuid 367f3d9a-c854-4bbd-93f7-fb68940d739d))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 264.16 129.54 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 55a5f5a5-224e-404a-bddc-aae08202701b)
(property "Reference" "C?" (at 260.35 128.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "27pF" (at 260.35 130.81 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 263.1948 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 264.16 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "" (at 264.16 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 264.16 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 92c00c4e-a13b-49ff-8aa3-988103b79931))
(pin "2" (uuid 64a63676-f1b5-48c6-9f26-6251737a3061))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 95.25 171.45 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 59a4566a-50dd-4e0f-86a6-3ee31d9fe4ac)
(property "Reference" "R?" (at 92.71 170.1799 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "220" (at 92.71 172.7199 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 97.028 171.45 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 95.25 171.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 95.25 171.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1a57c183-d7e2-4cf7-87df-5a2da87b2de3))
(pin "2" (uuid 20d3c667-7c65-47ab-9877-4c45208c021b))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "R?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:Q_NMOS_DGS") (at 156.21 99.06 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 59e9096c-2af2-4f7e-8c1e-db71e8703bd3)
(property "Reference" "Q?" (at 162.56 97.79 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "AFT05MS031" (at 162.56 100.33 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 161.29 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "/home/bram/Sync/Doc/Datasheet/AFT05MS031N.pdf" (at 156.21 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "3" (uuid 07101a46-26b2-4ee2-8ce0-2f8e6496b334))
(pin "2" (uuid 4718faca-57c9-44a2-ab22-fa1718036391))
(pin "1" (uuid 223ca73f-6c2c-469a-a4e5-52de91048af5))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "Q?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 163.83 43.18 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 5b28b8a3-6978-43bc-9dcd-bb23cd8bfc11)
(property "Reference" "C?" (at 163.8236 36.83 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "100nF" (at 163.8236 39.37 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 160.02 44.1452 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 163.83 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "GRM31C5C1H104JA01L" (at 163.83 43.18 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 163.83 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 82bb9eda-58de-4d22-aae9-e262a27fa3ef))
(pin "2" (uuid d62770fd-f5dd-4296-baac-239fce3105fd))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:Conn_Coaxial") (at 280.67 124.46 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 60337f6c-6236-41be-8fa0-9539a22a85bc)
(property "Reference" "J?" (at 280.3525 116.84 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "PA OUT" (at 280.3525 119.38 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Connector_Coaxial:U.FL_Hirose_U.FL-R-SMT-1_Vertical" (at 280.67 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" " ~" (at 280.67 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 280.67 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7c244179-350b-4aa6-b2fd-cd9c97b5b489))
(pin "2" (uuid 4bdaef17-7d3d-4308-a9af-017f38dbc38b))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "J?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "J?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 46.99 111.76 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 6101514a-03b3-48d2-a725-c63e7141124d)
(property "Reference" "C?" (at 46.99 104.14 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1nF" (at 46.99 106.68 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 43.18 112.7252 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 46.99 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "885612007040/VJ0805A102GXXPW1BC" (at 46.99 111.76 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 46.99 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8c0038a6-93b5-46db-9102-714797337767))
(pin "2" (uuid 896e7833-b3dc-4ffb-bbec-e004da9b0d6c))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 81.28 129.54 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 610ae8c9-f273-409b-9076-5e014b146c56)
(property "Reference" "C?" (at 85.09 128.2699 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "0.1uF" (at 85.09 130.8099 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 80.3148 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 81.28 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "GRM188R71H104KA93D" (at 81.28 129.54 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 81.28 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 45fcf09c-005a-433d-9f02-f7e9cdb1d553))
(pin "2" (uuid 856d8409-6e57-4a57-b4f4-2209fdcf9db7))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 149.86 113.03 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 63ab714e-307d-43d5-ba96-f0fbafc1863e)
(property "Reference" "R?" (at 147.32 111.76 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "0" (at 147.32 114.3 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 148.082 113.03 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 149.86 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 149.86 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b0142990-8114-46e5-95b1-e5386e1fb1dc))
(pin "2" (uuid e8e8e79e-4742-4f93-8837-a09ac58266c9))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "R?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R_Potentiometer") (at 81.28 165.1 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 6505c958-20f3-492d-b6d1-e173ff34a854)
(property "Reference" "RV?" (at 78.74 163.8299 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "1k" (at 78.74 166.3699 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Potentiometer_SMD:Potentiometer_Bourns_3214W_Vertical" (at 81.28 165.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 81.28 165.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "Bourns 3214W-1-102E" (at 81.28 165.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 81.28 165.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6760652c-7559-4f7c-8034-da8ab3011e87))
(pin "2" (uuid d0ccd9df-a651-47ba-bf2a-6200dcd1f1b6))
(pin "3" (uuid c168da56-8883-4c14-a0d7-9d08999a71f1))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "RV?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "RV?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:L") (at 254 124.46 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 65d2b31c-2ddc-44bc-8996-662daa45ce2a)
(property "Reference" "L?" (at 254 118.11 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "130nH" (at 254 120.65 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "mpb:AirCoil-8mm-SMD" (at 254 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 254 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 254 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3b42c0d0-6495-4619-ad95-a075d0512597))
(pin "2" (uuid 2e4c3bf1-1b38-4178-acd6-705b33e2fa24))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "L?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "L?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:L") (at 158.75 59.69 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 6f8c2200-34eb-49cc-8883-9abb05be8a85)
(property "Reference" "L?" (at 160.02 58.42 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "~" (at 160.02 60.96 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "mpb:AirCoil-8mm-SMD" (at 158.75 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 158.75 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 158.75 59.69 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8a942a5f-e39c-4581-8260-6140f16c09af))
(pin "2" (uuid db21b4cc-3857-4d05-a2d7-351efb9aad0a))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "L?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "L?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 157.48 124.46 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 70feef30-d4fb-436e-90d9-b486ed62f19b)
(property "Reference" "#PWR?" (at 163.83 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 162.56 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 157.48 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 157.48 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9b75a443-745a-4400-a001-2b364d249858))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:Conn_Coaxial") (at 43.18 101.6 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 713d1911-c195-4b47-ab2b-dee38a0a4020)
(property "Reference" "J1" (at 42.8625 93.98 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "PA IN" (at 42.8625 96.52 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Connector_Coaxial:U.FL_Hirose_U.FL-R-SMT-1_Vertical" (at 43.18 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" " ~" (at 43.18 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 43.18 101.6 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 7c2c0490-b3c3-49af-ba25-c710dfa8eb24))
(pin "2" (uuid dad57aed-0174-48f3-8012-2f3730f7b940))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "J1") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "J?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 227.33 134.62 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 723f8b26-ceda-43de-8949-dcfb9515813e)
(property "Reference" "#PWR?" (at 227.33 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 227.33 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 227.33 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 227.33 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 942e9c24-a985-4c82-ad8e-fb3da8686572))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Transistor_BJT:MMBT3904") (at 93.98 111.76 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 7296be22-c98f-419a-864e-0995c68c2990)
(property "Reference" "Q?" (at 99.06 110.4899 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "BFR106" (at 99.06 113.0299 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23" (at 99.06 113.665 0)
(effects (font (size 1.27 1.27) italic) (justify left) hide)
)
(property "Datasheet" "/home/bram/Sync/Doc/Datasheet/BFR106.pdf" (at 93.98 111.76 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "MPN" "BFR106" (at 93.98 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 93.98 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f203edb4-9af0-4db4-8dc7-7ba11c959366))
(pin "2" (uuid bbb2e7a1-5aae-4248-8140-a6fdf4fd97c3))
(pin "3" (uuid 875593d4-0d50-46d7-abd8-5601db7763c4))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "Q?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "Q?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 30.48 166.37 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 755601fd-4c50-4374-b797-b33e1f30ac88)
(property "Reference" "R?" (at 33.02 165.0999 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "330" (at 33.02 167.6399 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 32.258 166.37 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 30.48 166.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 30.48 166.37 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 404386b8-9b93-47d3-ac03-309b1c88f7d0))
(pin "2" (uuid 455bb8a6-da2e-4e68-b7d2-230b836979e1))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "R?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:L") (at 201.93 124.46 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 7c29d747-8c8b-4831-b002-04aa96ca633d)
(property "Reference" "L?" (at 201.93 118.11 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "130nH" (at 201.93 120.65 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "mpb:AirCoil-8mm-SMD" (at 201.93 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 201.93 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 201.93 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e477ced8-312f-49c6-af93-a8620a3fc68e))
(pin "2" (uuid fec2f88d-14ef-4c4c-966b-2f1482fff974))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "L?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "L?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 151.13 67.31 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 7d81c532-5ce0-4e55-88da-6946cd4eb3e2)
(property "Reference" "#PWR?" (at 144.78 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 146.05 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 151.13 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 151.13 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8ced5fbc-9e89-4c49-9c9b-02954390fa00))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 154.94 119.38 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 7e99c828-0c62-4be1-b321-222a3a9d79ea)
(property "Reference" "C?" (at 154.9336 113.03 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10nF" (at 154.9336 115.57 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 154.94 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 154.94 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "VJ0805A103KXJTBC" (at 154.94 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 154.94 119.38 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fec42531-f999-457a-a4cc-a81b5f81a29c))
(pin "2" (uuid 48b7c2ce-edb8-40c4-b8bf-09f775862d73))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:L") (at 227.33 124.46 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 7f9ae35c-420b-4b3a-bf49-23ac09a1aca4)
(property "Reference" "L?" (at 227.33 118.11 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "150nH" (at 227.33 120.65 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "mpb:AirCoil-8mm-SMD" (at 227.33 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 227.33 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 227.33 124.46 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5a60956e-d26a-438f-a8b8-36f99c68fdf5))
(pin "2" (uuid a71e83e0-decc-415a-9d11-3fdb5ee6d32f))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "L?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "L?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 26.67 114.3 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 811bc2c0-dcd0-4cea-a656-abb6cbd9826b)
(property "Reference" "#PWR?" (at 33.02 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 30.48 114.3001 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
(property "Footprint" "" (at 26.67 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 26.67 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 39a64fc5-7547-4ada-93bc-0ea321b9c00a))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 88.9 165.1 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 82087f9d-f5c5-4952-b6b5-19f38279e8c1)
(property "Reference" "R?" (at 88.9 158.75 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "120" (at 88.9 161.29 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 88.9 163.322 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 88.9 165.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 88.9 165.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid eded8d35-ce06-4783-aa28-a546a58292ac))
(pin "2" (uuid 9d39b9fc-646f-43c1-967f-56bd663c9a5a))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "R?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "Diode:1N4148W") (at 95.25 179.07 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 87b79a5d-41ed-4af6-8222-1c25756ac2f9)
(property "Reference" "D?" (at 92.71 177.7999 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "1N4148W" (at 92.71 180.3399 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Diode_SMD:D_SOD-123F" (at 90.805 179.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "/home/bram/Sync/Doc/Datasheet/1N4148W-7-F.pdf" (at 95.25 179.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "" (at 95.25 179.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 95.25 179.07 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 26413d88-e04a-4878-8018-bc29faf621d7))
(pin "2" (uuid e9018ee2-0187-4ef4-925d-e0437c4bec16))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "D?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "D?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 104.14 138.43 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 881c578f-08cb-40ff-a903-d710999f8e73)
(property "Reference" "C?" (at 106.68 137.1662 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10nF" (at 106.68 139.7062 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 104.14 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "VJ0805A103KXJTBC" (at 104.14 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 104.14 138.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid aa587df6-7872-4371-b0d4-be74bfc7bfd5))
(pin "2" (uuid 09b1746b-441b-4519-8aa8-512e6e1e6134))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 210.82 129.54 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 8bd57d2d-e63f-42fe-bbef-554815082b52)
(property "Reference" "C?" (at 207.01 128.2699 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "47pF" (at 207.01 130.8099 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 209.8548 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "/home/bram/Sync/Doc/Datasheet/CBR KEMET capacitors.pdf" (at 210.82 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "CBR" (at 210.82 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 210.82 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 1eb8bd75-8702-4da8-a464-a90e22e55433))
(pin "2" (uuid c7e27880-3963-44dd-8d49-d902113c92f4))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 81.28 116.84 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 8be8c0b2-176f-407a-b2cd-5b3ddc315abc)
(property "Reference" "R?" (at 83.185 115.57 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "4.7k" (at 83.185 118.11 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 83.058 116.84 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 81.28 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 81.28 116.84 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0a0eb2d0-6ae9-452d-9bd7-7c8745c75088))
(pin "2" (uuid c468d5ea-0ed0-4eb7-88b1-de06cb7d223c))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "R?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 243.84 129.54 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 8dec85d6-530e-4402-b0ed-07ad8b6b782b)
(property "Reference" "C?" (at 247.65 128.2699 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "47pF" (at 247.65 130.8099 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 242.8748 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "/home/bram/Sync/Doc/Datasheet/CBR KEMET capacitors.pdf" (at 243.84 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "CBR" (at 243.84 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 243.84 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f7235e8f-72c5-4e7f-9b3a-e90d0c248125))
(pin "2" (uuid ab0e0bd3-a0aa-41c7-9b60-19f6d194957a))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 92.71 99.06 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 9240835a-17ff-4704-93a7-bfd051765906)
(property "Reference" "R?" (at 92.71 92.71 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "4.7k" (at 92.71 95.25 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 92.71 97.282 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 92.71 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 92.71 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 483d8539-8351-4970-a420-b37d8b8a54c3))
(pin "2" (uuid e5dd2f62-2465-4eaa-ad92-6f7d9e23250f))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "R?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 166.37 67.31 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 95a85726-3014-4e52-8c80-ccfafcf7e0fe)
(property "Reference" "#PWR?" (at 172.72 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 171.45 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 166.37 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 166.37 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 20506650-eb5c-4666-b9c2-7a9d98e8ecb7))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 163.83 67.31 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 9811f46f-555c-4565-ab45-5665c8b2c7bc)
(property "Reference" "C?" (at 163.8236 60.96 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "100nF" (at 163.8236 63.5 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 160.02 68.2752 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 163.83 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "GRM31C5C1H104JA01L" (at 163.83 67.31 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 163.83 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3c688f65-fb33-408f-92bc-25c33ad9395f))
(pin "2" (uuid 928bad89-2d26-41cf-9e18-319a9e5c607c))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 78.74 86.36 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 9c6aa212-04f2-4881-a0d5-364047c148e6)
(property "Reference" "#PWR?" (at 78.74 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 78.74 91.44 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 78.74 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 78.74 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 23fdbdf5-3db4-479f-b8c4-9ef4e146ae2b))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:Conn_Coaxial") (at 127 107.95 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid 9f09ae8a-89db-4b24-a404-4ac1890a1257)
(property "Reference" "J2" (at 129.54 106.9732 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "TP" (at 129.54 109.5132 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Connector_Coaxial:U.FL_Hirose_U.FL-R-SMT-1_Vertical" (at 127 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" " ~" (at 127 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 127 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6dacd376-1a80-4978-9bec-4df7dd130584))
(pin "2" (uuid 33eecd4d-7ce1-440f-a642-e376e45462ac))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "J2") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "J?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 151.13 77.47 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid a977f886-31bf-4613-8870-ff1742f6cf8b)
(property "Reference" "#PWR?" (at 144.78 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 146.05 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 151.13 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 151.13 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2ec68c8b-c19e-458a-9e40-4201c29d7dbd))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 64.77 165.1 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid a9c04f29-2617-4c11-99c0-7f41f2f3311f)
(property "Reference" "#PWR?" (at 64.77 171.45 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 64.77 170.18 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 64.77 165.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 64.77 165.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b4a9e69a-5d95-4526-ad08-6733ec7f40f1))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:FerriteBead") (at -12.7 50.8 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid b055af60-ea0a-4a12-ba17-61daae173275)
(property "Reference" "FB?" (at -12.7508 43.18 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "RFC" (at -12.7508 45.72 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "mpb:large_inductor" (at -12.7 52.578 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at -12.7 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at -12.7 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2d184926-a069-43f3-953c-8c1684274f3e))
(pin "2" (uuid ffd109e6-71c7-4949-9097-7bcd30f46cd1))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "FB?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "FB?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 55.88 107.95 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid b4d3909f-3352-49a9-8e96-07980e86124c)
(property "Reference" "C?" (at 55.8863 101.6 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "22pF" (at 55.8863 104.14 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 59.69 106.9848 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "/home/bram/Sync/Doc/Datasheet/CBR KEMET capacitors.pdf" (at 55.88 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "CBR" (at 55.88 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 55.88 107.95 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0097cde8-3290-4624-a0f7-5495fbf3d63a))
(pin "2" (uuid fbb16159-2434-4268-83ce-9ad4c812ca7b))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 149.86 137.16 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid bdf523c5-a2f8-44fd-beb2-15db1a794a9b)
(property "Reference" "R?" (at 147.32 135.89 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "4.7k" (at 147.32 138.43 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 148.082 137.16 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 149.86 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 149.86 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d2891fb0-d64d-4829-a9d5-a6bc7dd20b1e))
(pin "2" (uuid af281336-8e24-4676-9f28-8728eab272b5))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "R?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 64.77 161.29 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid c65625a8-7e91-4f05-8b0c-bb0da3d0508c)
(property "Reference" "C?" (at 68.58 160.0199 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "0.1uF" (at 68.58 162.5599 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 63.8048 157.48 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 64.77 161.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "GRM188R71H104KA93D" (at 64.77 161.29 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 64.77 161.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a3a57da1-885a-4919-8324-2025f64bbfe2))
(pin "2" (uuid 671b3da7-c2c0-459e-8399-80cecebd7ad9))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 193.04 129.54 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid cd14074a-684a-446b-8d45-e0c115ba637f)
(property "Reference" "C?" (at 196.85 128.27 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "27pF" (at 196.85 130.81 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 192.0748 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 193.04 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "" (at 193.04 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 193.04 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0dcd65fc-2089-4e4a-b2d6-2a1db516719c))
(pin "2" (uuid 33588199-630a-4ab0-ad2a-177dc493aaad))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 77.47 120.65 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid cecb0937-93c4-459e-a884-48786155315b)
(property "Reference" "#PWR?" (at 77.47 127 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 77.47 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 77.47 120.65 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 77.47 120.65 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4cfe89a7-ce26-40e8-8bb7-63ff727df561))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 163.83 77.47 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid cef684a5-f79e-4d1c-b566-b35d2376e4a7)
(property "Reference" "C?" (at 163.8236 71.12 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1nF" (at 163.8236 73.66 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 160.02 78.4352 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 163.83 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "885612007040/VJ0805A102GXXPW1BC" (at 163.83 77.47 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 163.83 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 5995f5b9-3199-4513-8f2d-6a21e121b404))
(pin "2" (uuid 307e8b5e-56f2-4ff9-8c28-bc3911f4eb75))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 83.82 80.01 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid cf6cc394-91e6-4be2-9c82-1eb7f8554d9b)
(property "Reference" "R?" (at 83.82 73.66 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "22" (at 83.82 76.2 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (at 83.82 81.788 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 83.82 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 83.82 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 85a0750d-b701-4910-b945-5e7739125d77))
(pin "2" (uuid 65827cae-3736-4051-a4d3-ad26fae2287d))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "R?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 139.7 43.18 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid d3089767-9916-4725-8471-91045b2bfde4)
(property "Reference" "R?" (at 139.7 36.83 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "0.1" (at 139.7 39.37 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_1210_3225Metric_Pad1.30x2.65mm_HandSolder" (at 139.7 44.958 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 139.7 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 139.7 43.18 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8e12c652-b007-4819-8729-980f9a58a591))
(pin "2" (uuid 56fb112d-e5c3-44a3-8ec0-2108613864d9))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "R?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "R?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 104.14 140.97 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid d9344633-2fc0-4b67-a741-1bc1506f747b)
(property "Reference" "#PWR?" (at 104.14 147.32 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 104.14 146.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 104.14 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 104.14 140.97 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 683c8250-a64a-4a6d-b148-bf205a48649d))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 186.69 129.54 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid d9900ed3-bab2-4145-85a9-98f38cbfb6a9)
(property "Reference" "C?" (at 182.88 128.2699 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "27pF" (at 182.88 130.8099 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 185.7248 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 186.69 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "" (at 186.69 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 186.69 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 29fd1994-e95c-43e6-a051-7d7f92d54b8b))
(pin "2" (uuid 6888e3fe-ea10-4d7f-8e21-56278c0cf072))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 217.17 129.54 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid dd47c5f0-bec5-4c67-a611-fa2fe3b42596)
(property "Reference" "C?" (at 220.98 128.2699 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "47pF" (at 220.98 130.8099 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 216.2048 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "/home/bram/Sync/Doc/Datasheet/CBR KEMET capacitors.pdf" (at 217.17 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "CBR" (at 217.17 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 217.17 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ba80bb12-ccf3-4aca-8a19-0855f4166e25))
(pin "2" (uuid 3f724081-248f-438e-bc46-82a8c8c2060b))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 237.49 129.54 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid dd98e35d-893b-4cf7-8579-0832210c75d5)
(property "Reference" "C?" (at 233.68 128.2699 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "47pF" (at 233.68 130.8099 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 236.5248 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "/home/bram/Sync/Doc/Datasheet/CBR KEMET capacitors.pdf" (at 237.49 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "CBR" (at 237.49 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 237.49 129.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid bc82d3c9-84d2-4d09-86a0-3f683b9c1362))
(pin "2" (uuid 34040aef-ffbc-4512-b765-ab7918b00da2))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Small") (at 88.9 104.14 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid e1ebdb36-885f-4d12-94b2-983bd34b3db0)
(property "Reference" "C?" (at 86.36 102.8763 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10nF" (at 86.36 105.4163 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (at 88.9 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 88.9 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "VJ0805A103KXJTBC" (at 88.9 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 88.9 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f98f34aa-c262-4f6c-807c-6e3992a3029f))
(pin "2" (uuid 06119856-1598-4caf-a4df-8ca06bf81c1e))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 88.9 86.36 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid eb979a1b-42ab-44cc-9c7d-5bd7bfed562d)
(property "Reference" "#PWR?" (at 88.9 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 88.9 91.44 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 88.9 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 88.9 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f959446c-1553-4ff9-b40c-225905f51318))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 158.75 104.14 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid f3b864fc-cdcd-4cf7-bfd8-b2e5a112066d)
(property "Reference" "#PWR?" (at 158.75 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 158.75 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 158.75 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 158.75 104.14 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3ee6b49e-d9ef-4316-926e-26c98a45e16f))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 43.18 106.68 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid f50f000b-fe86-49cd-b9ec-49ac2c7fe864)
(property "Reference" "#PWR01" (at 43.18 113.03 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 43.18 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "" (at 43.18 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 43.18 106.68 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2ea956d8-ab53-47e9-8856-971cf33e060a))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "#PWR01") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:TestPoint") (at 104.14 134.62 270) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid f7c6cb23-981f-462f-8c70-e4b482d70309)
(property "Reference" "TP?" (at 110.49 134.62 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "V_{E}" (at 107.442 138.43 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Footprint" "TestPoint:TestPoint_Pad_D2.0mm" (at 104.14 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 104.14 139.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 104.14 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ab1c96fd-da51-4078-8f51-5d20aaf3a887))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "TP?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "TP?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:L_Iron") (at 96.52 86.36 180) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid f9664fdf-d568-48c2-a61e-a24a11cfbedf)
(property "Reference" "L?" (at 97.79 85.0899 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "1uH" (at 97.79 87.6299 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Inductor_SMD:L_1008_2520Metric_Pad1.43x2.20mm_HandSolder" (at 96.52 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 96.52 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Description" "" (at 96.52 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "LQW2UAS1R0x0CL" (at 96.52 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 96.52 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 856f6367-87d5-483d-8dfd-d23a022476d5))
(pin "2" (uuid f8036aee-4f2b-4b04-a748-1d1d424569a2))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "L?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/8cbb5345-c7a6-41b7-8a2a-794c3d5f0f34"
(reference "L?") (unit 1)
)
)
)
)
(symbol (lib_id "Connector:TestPoint_Small") (at 121.92 102.87 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid fc7f6990-6c91-4be2-83ad-d2512840d20d)
(property "Reference" "TP1" (at 123.19 101.6 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "RF tap" (at 123.19 104.14 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "TestPoint:TestPoint_Pad_2.0x2.0mm" (at 127 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 127 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ce79b4ec-d9fe-45a6-b69c-468f534d0d3e))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "TP1") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C_Polarized") (at 152.4 46.99 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid fe0db594-85b3-4b1a-94ae-ccb9740621d8)
(property "Reference" "C?" (at 151.13 39.37 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (at 151.13 41.91 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_1210_3225Metric_Pad1.33x2.70mm_HandSolder" (at 153.3652 50.8 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 152.4 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "TAJA106K016RNJ" (at 152.4 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 152.4 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ff42e457-a168-49e3-a782-657050a17891))
(pin "2" (uuid dd4ab6ca-45f7-4486-87f7-8cdf7014f503))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "C?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "C?") (unit 1)
)
)
)
)
(symbol (lib_id "Device:LED") (at 30.48 173.99 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no) (fields_autoplaced)
(uuid ff945063-32e7-4740-aebe-5c60c1eacff3)
(property "Reference" "D?" (at 27.94 174.3074 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "VG" (at 27.94 176.8474 90)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "LED_SMD:LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder" (at 30.48 173.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 30.48 173.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Need_order" "0" (at 30.48 173.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fadf9544-1188-4ae2-b51d-ab9d15e0222a))
(pin "2" (uuid 9e00c490-922a-4ff5-b070-543658d4ae9b))
(instances
(project "kicad-dart-70-pa"
(path "/5b15e187-8375-4a39-b354-54b5fa659018"
(reference "D?") (unit 1)
)
)
(project "kicad-dart-70"
(path "/7c83c304-769a-4be4-890e-297aba22b5b9/f5953f75-4b48-4b4f-8eb7-dca86201f1bf"
(reference "D?") (unit 1)
)
)
)
)
(sheet_instances
(path "/" (page "1"))
)
)
|