summaryrefslogtreecommitdiff
path: root/usrp-hw/dbsrx/dbsrx.pcb
blob: 8265a6604ddaf7b83e3f7fa754d28fc90967a67b (plain)
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
# release: pcb-bin 1.99q
# date:    Mon Dec 12 15:52:53 2005
# user:    matt (Matt Ettus)
# host:    localhost.localdomain

PCB["RX Daughterboard" 275000 250000]

Grid[500.00000000 0 0 1]
Cursor[196421 139220 3.195331]
Thermal[0.500000]
DRC[699 400 699 499]
Flags(0x0000000000001058)
Groups("1,s:4,c:2:3:5,6,7,8:")
Styles["Signal,798,3599,1798,798:Power,2499,5999,3499,999:Fat,3999,5999,3499,998:RF,1398,3099,1497,798"]

Symbol[' ' 1800]
(
)
Symbol['!' 1200]
(
	SymbolLine[0 3500 0 4000 800]
	SymbolLine[0 0 0 2500 800]
)
Symbol['"' 1200]
(
	SymbolLine[0 0 0 1000 800]
	SymbolLine[1000 0 1000 1000 800]
)
Symbol['#' 1200]
(
	SymbolLine[0 2500 2000 2500 800]
	SymbolLine[0 1500 2000 1500 800]
	SymbolLine[1500 1000 1500 3000 800]
	SymbolLine[500 1000 500 3000 800]
)
Symbol['$' 1200]
(
	SymbolLine[1500 500 2000 1000 800]
	SymbolLine[500 500 1500 500 800]
	SymbolLine[0 1000 500 500 800]
	SymbolLine[0 1000 0 1500 800]
	SymbolLine[0 1500 500 2000 800]
	SymbolLine[500 2000 1500 2000 800]
	SymbolLine[1500 2000 2000 2500 800]
	SymbolLine[2000 2500 2000 3000 800]
	SymbolLine[1500 3500 2000 3000 800]
	SymbolLine[500 3500 1500 3500 800]
	SymbolLine[0 3000 500 3500 800]
	SymbolLine[1000 0 1000 4000 800]
)
Symbol['%' 1200]
(
	SymbolLine[0 500 0 1000 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[500 0 1000 0 800]
	SymbolLine[1000 0 1500 500 800]
	SymbolLine[1500 500 1500 1000 800]
	SymbolLine[1000 1500 1500 1000 800]
	SymbolLine[500 1500 1000 1500 800]
	SymbolLine[0 1000 500 1500 800]
	SymbolLine[0 4000 4000 0 800]
	SymbolLine[3500 4000 4000 3500 800]
	SymbolLine[4000 3000 4000 3500 800]
	SymbolLine[3500 2500 4000 3000 800]
	SymbolLine[3000 2500 3500 2500 800]
	SymbolLine[2500 3000 3000 2500 800]
	SymbolLine[2500 3000 2500 3500 800]
	SymbolLine[2500 3500 3000 4000 800]
	SymbolLine[3000 4000 3500 4000 800]
)
Symbol['&' 1200]
(
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[0 500 0 1500 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[0 2500 1500 1000 800]
	SymbolLine[500 4000 1000 4000 800]
	SymbolLine[1000 4000 2000 3000 800]
	SymbolLine[0 1500 2500 4000 800]
	SymbolLine[500 0 1000 0 800]
	SymbolLine[1000 0 1500 500 800]
	SymbolLine[1500 500 1500 1000 800]
	SymbolLine[0 2500 0 3500 800]
)
Symbol[''' 1200]
(
	SymbolLine[0 1000 1000 0 800]
)
Symbol['(' 1200]
(
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[0 500 0 3500 800]
)
Symbol[')' 1200]
(
	SymbolLine[0 0 500 500 800]
	SymbolLine[500 500 500 3500 800]
	SymbolLine[0 4000 500 3500 800]
)
Symbol['*' 1200]
(
	SymbolLine[0 1000 2000 3000 800]
	SymbolLine[0 3000 2000 1000 800]
	SymbolLine[0 2000 2000 2000 800]
	SymbolLine[1000 1000 1000 3000 800]
)
Symbol['+' 1200]
(
	SymbolLine[0 2000 2000 2000 800]
	SymbolLine[1000 1000 1000 3000 800]
)
Symbol[',' 1200]
(
	SymbolLine[0 5000 1000 4000 800]
)
Symbol['-' 1200]
(
	SymbolLine[0 2000 2000 2000 800]
)
Symbol['.' 1200]
(
	SymbolLine[0 4000 500 4000 800]
)
Symbol['/' 1200]
(
	SymbolLine[0 3500 3000 500 800]
)
Symbol['0' 1200]
(
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[0 500 0 3500 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[500 0 1500 0 800]
	SymbolLine[1500 0 2000 500 800]
	SymbolLine[2000 500 2000 3500 800]
	SymbolLine[1500 4000 2000 3500 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[0 3000 2000 1000 800]
)
Symbol['1' 1200]
(
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[1000 0 1000 4000 800]
	SymbolLine[0 1000 1000 0 800]
)
Symbol['2' 1200]
(
	SymbolLine[0 500 500 0 800]
	SymbolLine[500 0 2000 0 800]
	SymbolLine[2000 0 2500 500 800]
	SymbolLine[2500 500 2500 1500 800]
	SymbolLine[0 4000 2500 1500 800]
	SymbolLine[0 4000 2500 4000 800]
)
Symbol['3' 1200]
(
	SymbolLine[0 500 500 0 800]
	SymbolLine[500 0 1500 0 800]
	SymbolLine[1500 0 2000 500 800]
	SymbolLine[2000 500 2000 3500 800]
	SymbolLine[1500 4000 2000 3500 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[500 2000 2000 2000 800]
)
Symbol['4' 1200]
(
	SymbolLine[0 2000 2000 0 800]
	SymbolLine[0 2000 2500 2000 800]
	SymbolLine[2000 0 2000 4000 800]
)
Symbol['5' 1200]
(
	SymbolLine[0 0 2000 0 800]
	SymbolLine[0 0 0 2000 800]
	SymbolLine[0 2000 500 1500 800]
	SymbolLine[500 1500 1500 1500 800]
	SymbolLine[1500 1500 2000 2000 800]
	SymbolLine[2000 2000 2000 3500 800]
	SymbolLine[1500 4000 2000 3500 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[0 3500 500 4000 800]
)
Symbol['6' 1200]
(
	SymbolLine[1500 0 2000 500 800]
	SymbolLine[500 0 1500 0 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[0 500 0 3500 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[1500 2000 2000 2500 800]
	SymbolLine[0 2000 1500 2000 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[1500 4000 2000 3500 800]
	SymbolLine[2000 2500 2000 3500 800]
)
Symbol['7' 1200]
(
	SymbolLine[0 4000 2500 1500 800]
	SymbolLine[2500 0 2500 1500 800]
	SymbolLine[0 0 2500 0 800]
)
Symbol['8' 1200]
(
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[0 2500 0 3500 800]
	SymbolLine[0 2500 500 2000 800]
	SymbolLine[500 2000 1500 2000 800]
	SymbolLine[1500 2000 2000 2500 800]
	SymbolLine[2000 2500 2000 3500 800]
	SymbolLine[1500 4000 2000 3500 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[0 1500 500 2000 800]
	SymbolLine[0 500 0 1500 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[500 0 1500 0 800]
	SymbolLine[1500 0 2000 500 800]
	SymbolLine[2000 500 2000 1500 800]
	SymbolLine[1500 2000 2000 1500 800]
)
Symbol['9' 1200]
(
	SymbolLine[0 4000 2000 2000 800]
	SymbolLine[2000 500 2000 2000 800]
	SymbolLine[1500 0 2000 500 800]
	SymbolLine[500 0 1500 0 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[0 500 0 1500 800]
	SymbolLine[0 1500 500 2000 800]
	SymbolLine[500 2000 2000 2000 800]
)
Symbol[':' 1200]
(
	SymbolLine[0 1500 500 1500 800]
	SymbolLine[0 2500 500 2500 800]
)
Symbol[';' 1200]
(
	SymbolLine[0 4000 1000 3000 800]
	SymbolLine[1000 1500 1000 2000 800]
)
Symbol['<' 1200]
(
	SymbolLine[0 2000 1000 1000 800]
	SymbolLine[0 2000 1000 3000 800]
)
Symbol['=' 1200]
(
	SymbolLine[0 1500 2000 1500 800]
	SymbolLine[0 2500 2000 2500 800]
)
Symbol['>' 1200]
(
	SymbolLine[0 1000 1000 2000 800]
	SymbolLine[0 3000 1000 2000 800]
)
Symbol['?' 1200]
(
	SymbolLine[1000 2000 1000 2500 800]
	SymbolLine[1000 3500 1000 4000 800]
	SymbolLine[0 500 0 1000 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[500 0 1500 0 800]
	SymbolLine[1500 0 2000 500 800]
	SymbolLine[2000 500 2000 1000 800]
	SymbolLine[1000 2000 2000 1000 800]
)
Symbol['A' 1200]
(
	SymbolLine[0 500 0 4000 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[500 0 2000 0 800]
	SymbolLine[2000 0 2500 500 800]
	SymbolLine[2500 500 2500 4000 800]
	SymbolLine[0 2000 2500 2000 800]
)
Symbol['B' 1200]
(
	SymbolLine[0 4000 2000 4000 800]
	SymbolLine[2000 4000 2500 3500 800]
	SymbolLine[2500 2500 2500 3500 800]
	SymbolLine[2000 2000 2500 2500 800]
	SymbolLine[500 2000 2000 2000 800]
	SymbolLine[500 0 500 4000 800]
	SymbolLine[0 0 2000 0 800]
	SymbolLine[2000 0 2500 500 800]
	SymbolLine[2500 500 2500 1500 800]
	SymbolLine[2000 2000 2500 1500 800]
)
Symbol['C' 1200]
(
	SymbolLine[500 4000 2000 4000 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[0 500 0 3500 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[500 0 2000 0 800]
)
Symbol['D' 1200]
(
	SymbolLine[500 0 500 4000 800]
	SymbolLine[2000 0 2500 500 800]
	SymbolLine[2500 500 2500 3500 800]
	SymbolLine[2000 4000 2500 3500 800]
	SymbolLine[0 4000 2000 4000 800]
	SymbolLine[0 0 2000 0 800]
)
Symbol['E' 1200]
(
	SymbolLine[0 2000 1500 2000 800]
	SymbolLine[0 4000 2000 4000 800]
	SymbolLine[0 0 0 4000 800]
	SymbolLine[0 0 2000 0 800]
)
Symbol['F' 1200]
(
	SymbolLine[0 0 0 4000 800]
	SymbolLine[0 0 2000 0 800]
	SymbolLine[0 2000 1500 2000 800]
)
Symbol['G' 1200]
(
	SymbolLine[2000 0 2500 500 800]
	SymbolLine[500 0 2000 0 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[0 500 0 3500 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[500 4000 2000 4000 800]
	SymbolLine[2000 4000 2500 3500 800]
	SymbolLine[2500 2500 2500 3500 800]
	SymbolLine[2000 2000 2500 2500 800]
	SymbolLine[1000 2000 2000 2000 800]
)
Symbol['H' 1200]
(
	SymbolLine[0 0 0 4000 800]
	SymbolLine[2500 0 2500 4000 800]
	SymbolLine[0 2000 2500 2000 800]
)
Symbol['I' 1200]
(
	SymbolLine[0 0 1000 0 800]
	SymbolLine[500 0 500 4000 800]
	SymbolLine[0 4000 1000 4000 800]
)
Symbol['J' 1200]
(
	SymbolLine[0 0 1500 0 800]
	SymbolLine[1500 0 1500 3500 800]
	SymbolLine[1000 4000 1500 3500 800]
	SymbolLine[500 4000 1000 4000 800]
	SymbolLine[0 3500 500 4000 800]
)
Symbol['K' 1200]
(
	SymbolLine[0 0 0 4000 800]
	SymbolLine[0 2000 2000 0 800]
	SymbolLine[0 2000 2000 4000 800]
)
Symbol['L' 1200]
(
	SymbolLine[0 0 0 4000 800]
	SymbolLine[0 4000 2000 4000 800]
)
Symbol['M' 1200]
(
	SymbolLine[0 0 0 4000 800]
	SymbolLine[0 0 1500 1500 800]
	SymbolLine[1500 1500 3000 0 800]
	SymbolLine[3000 0 3000 4000 800]
)
Symbol['N' 1200]
(
	SymbolLine[0 0 0 4000 800]
	SymbolLine[0 0 0 500 800]
	SymbolLine[0 500 2500 3000 800]
	SymbolLine[2500 0 2500 4000 800]
)
Symbol['O' 1200]
(
	SymbolLine[0 500 0 3500 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[500 0 1500 0 800]
	SymbolLine[1500 0 2000 500 800]
	SymbolLine[2000 500 2000 3500 800]
	SymbolLine[1500 4000 2000 3500 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[0 3500 500 4000 800]
)
Symbol['P' 1200]
(
	SymbolLine[500 0 500 4000 800]
	SymbolLine[0 0 2000 0 800]
	SymbolLine[2000 0 2500 500 800]
	SymbolLine[2500 500 2500 1500 800]
	SymbolLine[2000 2000 2500 1500 800]
	SymbolLine[500 2000 2000 2000 800]
)
Symbol['Q' 1200]
(
	SymbolLine[0 500 0 3500 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[500 0 1500 0 800]
	SymbolLine[1500 0 2000 500 800]
	SymbolLine[2000 500 2000 3500 800]
	SymbolLine[1500 4000 2000 3500 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[1000 3000 2000 4000 800]
)
Symbol['R' 1200]
(
	SymbolLine[0 0 2000 0 800]
	SymbolLine[2000 0 2500 500 800]
	SymbolLine[2500 500 2500 1500 800]
	SymbolLine[2000 2000 2500 1500 800]
	SymbolLine[500 2000 2000 2000 800]
	SymbolLine[500 0 500 4000 800]
	SymbolLine[500 2000 2500 4000 800]
)
Symbol['S' 1200]
(
	SymbolLine[2000 0 2500 500 800]
	SymbolLine[500 0 2000 0 800]
	SymbolLine[0 500 500 0 800]
	SymbolLine[0 500 0 1500 800]
	SymbolLine[0 1500 500 2000 800]
	SymbolLine[500 2000 2000 2000 800]
	SymbolLine[2000 2000 2500 2500 800]
	SymbolLine[2500 2500 2500 3500 800]
	SymbolLine[2000 4000 2500 3500 800]
	SymbolLine[500 4000 2000 4000 800]
	SymbolLine[0 3500 500 4000 800]
)
Symbol['T' 1200]
(
	SymbolLine[0 0 2000 0 800]
	SymbolLine[1000 0 1000 4000 800]
)
Symbol['U' 1200]
(
	SymbolLine[0 0 0 3500 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[1500 4000 2000 3500 800]
	SymbolLine[2000 0 2000 3500 800]
)
Symbol['V' 1200]
(
	SymbolLine[0 0 0 3000 800]
	SymbolLine[0 3000 1000 4000 800]
	SymbolLine[1000 4000 2000 3000 800]
	SymbolLine[2000 0 2000 3000 800]
)
Symbol['W' 1200]
(
	SymbolLine[0 0 0 4000 800]
	SymbolLine[0 4000 1500 2500 800]
	SymbolLine[1500 2500 3000 4000 800]
	SymbolLine[3000 0 3000 4000 800]
)
Symbol['X' 1200]
(
	SymbolLine[0 0 0 500 800]
	SymbolLine[0 500 2500 3000 800]
	SymbolLine[2500 3000 2500 4000 800]
	SymbolLine[0 3000 0 4000 800]
	SymbolLine[0 3000 2500 500 800]
	SymbolLine[2500 0 2500 500 800]
)
Symbol['Y' 1200]
(
	SymbolLine[0 0 0 500 800]
	SymbolLine[0 500 1000 1500 800]
	SymbolLine[1000 1500 2000 500 800]
	SymbolLine[2000 0 2000 500 800]
	SymbolLine[1000 1500 1000 4000 800]
)
Symbol['Z' 1200]
(
	SymbolLine[0 0 2500 0 800]
	SymbolLine[2500 0 2500 500 800]
	SymbolLine[0 3000 2500 500 800]
	SymbolLine[0 3000 0 4000 800]
	SymbolLine[0 4000 2500 4000 800]
)
Symbol['[' 1200]
(
	SymbolLine[0 0 500 0 800]
	SymbolLine[0 0 0 4000 800]
	SymbolLine[0 4000 500 4000 800]
)
Symbol['\' 1200]
(
	SymbolLine[0 500 3000 3500 800]
)
Symbol[']' 1200]
(
	SymbolLine[0 0 500 0 800]
	SymbolLine[500 0 500 4000 800]
	SymbolLine[0 4000 500 4000 800]
)
Symbol['^' 1200]
(
	SymbolLine[0 500 500 0 800]
	SymbolLine[500 0 1000 500 800]
)
Symbol['_' 1200]
(
	SymbolLine[0 4000 2000 4000 800]
)
Symbol['a' 1200]
(
	SymbolLine[1500 2000 2000 2500 800]
	SymbolLine[500 2000 1500 2000 800]
	SymbolLine[0 2500 500 2000 800]
	SymbolLine[0 2500 0 3500 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[2000 2000 2000 3500 800]
	SymbolLine[2000 3500 2500 4000 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[1500 4000 2000 3500 800]
)
Symbol['b' 1200]
(
	SymbolLine[0 0 0 4000 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[1500 4000 2000 3500 800]
	SymbolLine[2000 2500 2000 3500 800]
	SymbolLine[1500 2000 2000 2500 800]
	SymbolLine[500 2000 1500 2000 800]
	SymbolLine[0 2500 500 2000 800]
)
Symbol['c' 1200]
(
	SymbolLine[500 2000 2000 2000 800]
	SymbolLine[0 2500 500 2000 800]
	SymbolLine[0 2500 0 3500 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[500 4000 2000 4000 800]
)
Symbol['d' 1200]
(
	SymbolLine[2000 0 2000 4000 800]
	SymbolLine[1500 4000 2000 3500 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[0 2500 0 3500 800]
	SymbolLine[0 2500 500 2000 800]
	SymbolLine[500 2000 1500 2000 800]
	SymbolLine[1500 2000 2000 2500 800]
)
Symbol['e' 1200]
(
	SymbolLine[500 4000 2000 4000 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[0 2500 0 3500 800]
	SymbolLine[0 2500 500 2000 800]
	SymbolLine[500 2000 1500 2000 800]
	SymbolLine[1500 2000 2000 2500 800]
	SymbolLine[0 3000 2000 3000 800]
	SymbolLine[2000 3000 2000 2500 800]
)
Symbol['f' 1000]
(
	SymbolLine[500 500 500 4000 800]
	SymbolLine[500 500 1000 0 800]
	SymbolLine[1000 0 1500 0 800]
	SymbolLine[0 2000 1000 2000 800]
)
Symbol['g' 1200]
(
	SymbolLine[1500 2000 2000 2500 800]
	SymbolLine[500 2000 1500 2000 800]
	SymbolLine[0 2500 500 2000 800]
	SymbolLine[0 2500 0 3500 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[1500 4000 2000 3500 800]
	SymbolLine[0 5000 500 5500 800]
	SymbolLine[500 5500 1500 5500 800]
	SymbolLine[1500 5500 2000 5000 800]
	SymbolLine[2000 2000 2000 5000 800]
)
Symbol['h' 1200]
(
	SymbolLine[0 0 0 4000 800]
	SymbolLine[0 2500 500 2000 800]
	SymbolLine[500 2000 1500 2000 800]
	SymbolLine[1500 2000 2000 2500 800]
	SymbolLine[2000 2500 2000 4000 800]
)
Symbol['i' 1000]
(
	SymbolLine[0 1000 0 1500 800]
	SymbolLine[0 2500 0 4000 800]
)
Symbol['j' 1000]
(
	SymbolLine[500 1000 500 1500 800]
	SymbolLine[500 2500 500 5000 800]
	SymbolLine[0 5500 500 5000 800]
)
Symbol['k' 1200]
(
	SymbolLine[0 0 0 4000 800]
	SymbolLine[0 2500 1500 4000 800]
	SymbolLine[0 2500 1000 1500 800]
)
Symbol['l' 1000]
(
	SymbolLine[0 0 0 3500 800]
	SymbolLine[0 3500 500 4000 800]
)
Symbol['m' 1200]
(
	SymbolLine[500 2500 500 4000 800]
	SymbolLine[500 2500 1000 2000 800]
	SymbolLine[1000 2000 1500 2000 800]
	SymbolLine[1500 2000 2000 2500 800]
	SymbolLine[2000 2500 2000 4000 800]
	SymbolLine[2000 2500 2500 2000 800]
	SymbolLine[2500 2000 3000 2000 800]
	SymbolLine[3000 2000 3500 2500 800]
	SymbolLine[3500 2500 3500 4000 800]
	SymbolLine[0 2000 500 2500 800]
)
Symbol['n' 1200]
(
	SymbolLine[500 2500 500 4000 800]
	SymbolLine[500 2500 1000 2000 800]
	SymbolLine[1000 2000 1500 2000 800]
	SymbolLine[1500 2000 2000 2500 800]
	SymbolLine[2000 2500 2000 4000 800]
	SymbolLine[0 2000 500 2500 800]
)
Symbol['o' 1200]
(
	SymbolLine[0 2500 0 3500 800]
	SymbolLine[0 2500 500 2000 800]
	SymbolLine[500 2000 1500 2000 800]
	SymbolLine[1500 2000 2000 2500 800]
	SymbolLine[2000 2500 2000 3500 800]
	SymbolLine[1500 4000 2000 3500 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[0 3500 500 4000 800]
)
Symbol['p' 1200]
(
	SymbolLine[500 2500 500 5500 800]
	SymbolLine[0 2000 500 2500 800]
	SymbolLine[500 2500 1000 2000 800]
	SymbolLine[1000 2000 2000 2000 800]
	SymbolLine[2000 2000 2500 2500 800]
	SymbolLine[2500 2500 2500 3500 800]
	SymbolLine[2000 4000 2500 3500 800]
	SymbolLine[1000 4000 2000 4000 800]
	SymbolLine[500 3500 1000 4000 800]
)
Symbol['q' 1200]
(
	SymbolLine[2000 2500 2000 5500 800]
	SymbolLine[1500 2000 2000 2500 800]
	SymbolLine[500 2000 1500 2000 800]
	SymbolLine[0 2500 500 2000 800]
	SymbolLine[0 2500 0 3500 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[1500 4000 2000 3500 800]
)
Symbol['r' 1200]
(
	SymbolLine[500 2500 500 4000 800]
	SymbolLine[500 2500 1000 2000 800]
	SymbolLine[1000 2000 2000 2000 800]
	SymbolLine[0 2000 500 2500 800]
)
Symbol['s' 1200]
(
	SymbolLine[500 4000 2000 4000 800]
	SymbolLine[2000 4000 2500 3500 800]
	SymbolLine[2000 3000 2500 3500 800]
	SymbolLine[500 3000 2000 3000 800]
	SymbolLine[0 2500 500 3000 800]
	SymbolLine[0 2500 500 2000 800]
	SymbolLine[500 2000 2000 2000 800]
	SymbolLine[2000 2000 2500 2500 800]
	SymbolLine[0 3500 500 4000 800]
)
Symbol['t' 1000]
(
	SymbolLine[500 0 500 3500 800]
	SymbolLine[500 3500 1000 4000 800]
	SymbolLine[0 1500 1000 1500 800]
)
Symbol['u' 1200]
(
	SymbolLine[0 2000 0 3500 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[1500 4000 2000 3500 800]
	SymbolLine[2000 2000 2000 3500 800]
)
Symbol['v' 1200]
(
	SymbolLine[0 2000 0 3000 800]
	SymbolLine[0 3000 1000 4000 800]
	SymbolLine[1000 4000 2000 3000 800]
	SymbolLine[2000 2000 2000 3000 800]
)
Symbol['w' 1200]
(
	SymbolLine[0 2000 0 3500 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[500 4000 1000 4000 800]
	SymbolLine[1000 4000 1500 3500 800]
	SymbolLine[1500 2000 1500 3500 800]
	SymbolLine[1500 3500 2000 4000 800]
	SymbolLine[2000 4000 2500 4000 800]
	SymbolLine[2500 4000 3000 3500 800]
	SymbolLine[3000 2000 3000 3500 800]
)
Symbol['x' 1200]
(
	SymbolLine[0 2000 2000 4000 800]
	SymbolLine[0 4000 2000 2000 800]
)
Symbol['y' 1200]
(
	SymbolLine[0 2000 0 3500 800]
	SymbolLine[0 3500 500 4000 800]
	SymbolLine[2000 2000 2000 5000 800]
	SymbolLine[1500 5500 2000 5000 800]
	SymbolLine[500 5500 1500 5500 800]
	SymbolLine[0 5000 500 5500 800]
	SymbolLine[500 4000 1500 4000 800]
	SymbolLine[1500 4000 2000 3500 800]
)
Symbol['z' 1200]
(
	SymbolLine[0 2000 2000 2000 800]
	SymbolLine[0 4000 2000 2000 800]
	SymbolLine[0 4000 2000 4000 800]
)
Symbol['{' 1200]
(
	SymbolLine[500 500 1000 0 800]
	SymbolLine[500 500 500 1500 800]
	SymbolLine[0 2000 500 1500 800]
	SymbolLine[0 2000 500 2500 800]
	SymbolLine[500 2500 500 3500 800]
	SymbolLine[500 3500 1000 4000 800]
)
Symbol['|' 1200]
(
	SymbolLine[0 0 0 4000 800]
)
Symbol['}' 1200]
(
	SymbolLine[0 0 500 500 800]
	SymbolLine[500 500 500 1500 800]
	SymbolLine[500 1500 1000 2000 800]
	SymbolLine[500 2500 1000 2000 800]
	SymbolLine[500 2500 500 3500 800]
	SymbolLine[0 4000 500 3500 800]
)
Symbol['~' 1200]
(
	SymbolLine[0 2500 500 2000 800]
	SymbolLine[500 2000 1000 2000 800]
	SymbolLine[1000 2000 1500 2500 800]
	SymbolLine[1500 2500 2000 2500 800]
	SymbolLine[2000 2500 2500 2000 800]
)
Via[15000 235000 13200 2000 11000 12800 "" "hole,lock"]
Via[260000 235000 13200 2000 11000 12800 "" "hole,lock"]
Via[260000 15000 13200 2000 11000 12800 "" "hole,lock"]
Via[55000 55000 13200 2000 11000 12800 "" "hole,lock"]
Via[163000 83500 5999 1998 0 3499 "" "thermal(1)"]
Via[88000 115000 5999 1998 0 3499 "" "thermal(1)"]
Via[88000 89000 5999 1998 0 3499 "" "thermal(1)"]
Via[58500 100500 3499 1596 0 1497 "" "thermal(1)"]
Via[44000 85000 3499 1596 0 1497 "" "thermal(1)"]
Via[177000 135500 3599 1596 0 1798 "" ""]
Via[59000 94000 3499 1596 0 1497 "" ""]
Via[127500 123000 3499 1596 0 1497 "" ""]
Via[73000 90500 3499 1596 0 1497 "" ""]
Via[109000 123000 3499 1596 0 1497 "" ""]
Via[64500 113000 3499 1596 0 1497 "" ""]
Via[131500 126000 3499 1596 0 1497 "" ""]
Via[40000 107000 3499 1596 0 1497 "" ""]
Via[132500 145000 5999 1998 0 3499 "" "thermal(1)"]
Via[225000 115000 5999 1996 0 3499 "" "thermal(1)"]
Via[253500 142000 5999 1996 0 3499 "" "thermal(1)"]
Via[232000 106000 5999 1998 0 3499 "" "thermal(1)"]
Via[168500 181000 3599 1596 0 1798 "" ""]
Via[172500 186500 3599 1596 0 1798 "" ""]
Via[268000 49500 5999 1996 0 3499 "" "thermal(1)"]
Via[254500 47000 5999 1996 0 3499 "" "thermal(1)"]
Via[232500 40000 5999 1998 0 3499 "" "thermal(1)"]
Via[208000 196500 3599 1596 0 1798 "" "thermal(1)"]
Via[216500 45000 3599 1596 0 1798 "" "thermal(1)"]
Via[244000 50500 3599 1596 0 1798 "" ""]
Via[210000 55500 3599 1596 0 1798 "" ""]
Via[178000 123500 5999 1998 0 3499 "" ""]
Via[140000 159000 5999 1998 0 3499 "" ""]
Via[178500 236000 5999 1998 0 3499 "" "thermal(1)"]
Via[145000 237000 5999 1998 0 3499 "" "thermal(1)"]
Via[193500 38500 3599 1596 0 1798 "" ""]
Via[170500 45000 3599 1596 0 1798 "" "thermal(1)"]
Via[195000 139000 3599 1596 0 1798 "" "thermal(1)"]
Via[127000 162000 3599 1596 0 1798 "" "thermal(1)"]
Via[127000 167500 3599 1596 0 1798 "" "thermal(1)"]
Via[194500 49500 3599 1596 0 1798 "" ""]
Via[195000 34000 3599 1596 0 1798 "" ""]
Via[130000 131500 5999 1996 0 3499 "" ""]
Via[236000 78000 5999 1996 0 3499 "" ""]
Via[199000 169000 3099 1596 0 1497 "" "thermal(0,1)"]
Via[156500 190000 3499 1598 0 1497 "" "thermal(1)"]
Via[156500 164000 3499 1598 0 1497 "" "thermal(1)"]
Via[223500 193500 3599 1596 0 1798 "" "thermal(1)"]
Via[232000 183500 3599 1596 0 1798 "" "thermal(1)"]
Via[184500 219500 3599 1596 0 1798 "" "thermal(1)"]
Via[185000 204500 3599 1596 0 1798 "" "thermal(1)"]
Via[175500 167000 3599 1596 0 1798 "" "usetherm,thermal(2)"]
Via[217000 165000 3599 1596 0 1798 "" "usetherm,thermal(2)"]
Via[187500 50000 3599 1596 0 1798 "" "usetherm,thermal(2)"]
Via[212500 201500 3599 1596 0 1798 "" "usetherm,thermal(2)"]
Via[174000 213500 3599 1596 0 1798 "" "usetherm,thermal(2)"]
Via[180500 187500 3599 1596 0 1798 "" "usetherm,thermal(2)"]
Via[241500 42500 5999 1998 0 3499 "" "usetherm,thermal(2)"]
Via[264000 94500 5999 1996 0 3499 "" "usetherm,thermal(2)"]
Via[195500 155500 3599 1596 0 1798 "" "usetherm,thermal(2)"]
Via[188000 155500 3599 1596 0 1798 "" "usetherm,thermal(2)"]
Via[264500 117000 5999 1996 0 3499 "" "usetherm,thermal(2)"]
Via[139000 75000 3599 1596 0 1798 "" ""]
Via[149000 67500 3599 1596 0 1798 "" ""]
Via[208500 178500 3599 1596 0 1798 "" ""]
Via[122500 120500 3499 1596 0 1497 "" ""]
Via[141000 120000 3599 1596 0 1798 "" ""]
Via[137500 126500 3599 1596 0 1798 "" ""]
Via[143000 124500 3599 1596 0 1798 "" ""]
Via[188500 139500 3599 1596 0 1798 "" ""]
Via[211500 136500 3599 1596 0 1798 "" ""]
Via[232000 150000 3599 1596 0 1798 "" ""]
Via[228500 141000 3599 1596 0 1798 "" ""]
Via[205500 145500 3599 1596 0 1798 "" ""]
Via[239500 159500 3599 1596 0 1798 "" ""]
Via[159500 136500 3599 1596 0 1798 "" ""]
Via[159500 154000 3599 1596 0 1798 "" ""]
Via[201000 86500 3599 1596 0 1798 "" "thermal(1)"]
Via[189500 121500 3599 1596 0 1798 "" "thermal(1)"]
Via[207500 191500 3599 1596 0 1798 "" "usetherm,thermal(2)"]
Via[204500 159000 3599 1596 0 1798 "" "thermal(1)"]
Via[188000 169000 3099 1596 0 1497 "" "thermal(0,1)"]
Via[188000 172500 3099 1596 0 1497 "" "thermal(0,1)"]
Via[188000 176000 3099 1596 0 1497 "" "thermal(0,1)"]
Via[188000 179500 3099 1596 0 1497 "" "thermal(0,1)"]
Via[191000 178000 3099 1596 0 1497 "" "thermal(0,1)"]
Via[191000 174500 3099 1596 0 1497 "" "thermal(0,1)"]
Via[191000 170500 3099 1596 0 1497 "" "thermal(0,1)"]
Via[193500 168500 3099 1596 0 1497 "" "thermal(0,1)"]
Via[193500 172500 3099 1596 0 1497 "" "thermal(0,1)"]
Via[194000 176500 3099 1596 0 1497 "" "thermal(0,1)"]
Via[193500 180000 3099 1596 0 1497 "" "thermal(0,1)"]
Via[196500 178500 3099 1596 0 1497 "" "thermal(0,1)"]
Via[199500 180000 3099 1596 0 1497 "" "thermal(0,1)"]
Via[199000 176500 3099 1596 0 1497 "" "thermal(0,1)"]
Via[196500 174500 3099 1596 0 1497 "" "thermal(0,1)"]
Via[199000 172500 3099 1596 0 1497 "" "thermal(0,1)"]
Via[196000 170500 3099 1596 0 1497 "" "thermal(0,1)"]
Via[150500 189000 3099 1596 0 1497 "" "thermal(1)"]
Via[123000 174500 3099 1596 0 1497 "" "thermal(1)"]
Via[111500 160500 3099 1596 0 1497 "" "thermal(1)"]
Via[118500 160500 3099 1596 0 1497 "" "thermal(1)"]
Via[122000 165500 3099 1596 0 1497 "" "thermal(1)"]
Via[141000 185000 3099 1596 0 1497 "" "thermal(1)"]
Via[147000 184000 3099 1596 0 1497 "" "thermal(1)"]
Via[151500 185000 3099 1596 0 1497 "" "thermal(1)"]
Via[136500 193000 3099 1596 0 1497 "" "thermal(1)"]
Via[145500 191500 3099 1596 0 1497 "" "thermal(1)"]
Via[140000 198500 3099 1596 0 1497 "" "thermal(1)"]
Via[147000 199500 3099 1596 0 1497 "" "thermal(1)"]
Via[154500 201000 3099 1596 0 1497 "" "thermal(1)"]
Via[129500 174500 3099 1596 0 1497 "" "thermal(1)"]
Via[115000 123500 3599 1596 0 1798 "" ""]
Via[156000 52500 3599 1596 0 1798 "" ""]
Via[147500 208000 5999 1996 0 3499 "" "thermal(2)"]

Element["" "0603" "R6" "1K" 200500 38500 -12000 -7000 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 3000 2400 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 3000 2400 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["onsolder" "0603" "C26" "100pF" 186500 82500 -5500 -15000 0 100 "auto"]
(
	Pad[2400 -900 2400 900 2400 3000 2400 "1" "1" "auto,square"]
	Pad[-2400 -900 -2400 900 2400 3000 2400 "2" "2" "auto,square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [4200 -2700 4200 2700 600]

	)

Element["" "0603" "R7" "1K" 209500 38500 5500 -2000 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 3000 2400 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 3000 2400 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "0603" "C83" ".01uF" 201000 195500 -3500 18300 0 100 ""]
(
	Pad[2400 -900 2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[-2400 -900 -2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]

	)

Element["onsolder" "0603" "R10" "50" 208500 75000 -4500 -22500 1 100 "auto"]
(
	Pad[-900 -2400 900 -2400 2400 3000 2400 "1" "1" "auto,square"]
	Pad[-900 2400 900 2400 2400 3000 2400 "2" "2" "auto,square"]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["onsolder" "0603" "R15" "50" 194000 75000 -700 -22500 1 100 "auto"]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "auto,square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "0603" "R19" "250,_0.1%" 181000 81000 -1500 6300 0 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "0603" "R20" "250,_0.1%" 172500 81000 -11500 5800 0 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "0603" "C59" "3300pF" 192000 201500 -5000 16800 0 100 ""]
(
	Pad[2400 -900 2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[-2400 -900 -2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]

	)

Element["" "0603" "R9" "43.2" 159000 175500 -12500 -19500 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 3000 2400 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 3000 2400 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "CONNECTOR-1-2" "J100" "unknown" 103500 225000 -5500 17000 0 100 ""]
(
	Pin[0 0 6000 3000 6600 4000 "1" "1" "square"]
	Pin[0 10000 6000 3000 6600 4000 "2" "2" "thermal(1)"]
	ElementLine [-5000 5000 5000 5000 1000]
	ElementLine [-5000 -5000 -5000 5000 1000]
	ElementLine [5000 -5000 5000 15000 2000]
	ElementLine [-5000 15000 5000 15000 2000]
	ElementLine [-5000 -5000 -5000 15000 2000]
	ElementLine [-5000 -5000 5000 -5000 2000]

	)

Element["" "CONNECTOR-8-2" "J25" "unknown" 8000 24000 27700 9900 0 100 ""]
(
	Pin[0 0 6000 3000 6600 4000 "1" "1" "square,edge2"]
	Pin[0 -10000 6000 3000 6600 4000 "2" "2" "edge2,thermal(1)"]
	Pin[10000 0 6000 3000 6600 4000 "3" "3" "edge2"]
	Pin[10000 -10000 6000 3000 6600 4000 "4" "4" "edge2,thermal(1)"]
	Pin[20000 0 6000 3000 6600 4000 "5" "5" "edge2"]
	Pin[20000 -10000 6000 3000 6600 4000 "6" "6" "edge2,thermal(1)"]
	Pin[30000 0 6000 3000 6600 4000 "7" "7" "edge2"]
	Pin[30000 -10000 6000 3000 6600 4000 "8" "8" "edge2,thermal(1)"]
	Pin[40000 0 6000 3000 6600 4000 "9" "9" "edge2"]
	Pin[40000 -10000 6000 3000 6600 4000 "10" "10" "edge2,thermal(1)"]
	Pin[50000 0 6000 3000 6600 4000 "11" "11" "edge2"]
	Pin[50000 -10000 6000 3000 6600 4000 "12" "12" "edge2,thermal(1)"]
	Pin[60000 0 6000 3000 6600 4000 "13" "13" "edge2"]
	Pin[60000 -10000 6000 3000 6600 4000 "14" "14" "edge2,thermal(1)"]
	Pin[70000 0 6000 3000 6600 4000 "15" "15" "edge2"]
	Pin[70000 -10000 6000 3000 6600 4000 "16" "16" "edge2,thermal(1)"]
	ElementLine [-5000 -5000 5000 -5000 1000]
	ElementLine [5000 -5000 5000 5000 1000]
	ElementLine [-5000 -15000 -5000 5000 2000]
	ElementLine [-5000 -15000 75000 -15000 2000]
	ElementLine [75000 -15000 75000 5000 2000]
	ElementLine [-5000 5000 75000 5000 2000]

	)

Element["onsolder,lock" "PMC-REVERSE" "J2" "unknown" 94993 95811 -18000 9000 0 100 "auto"]
(
	Pin[-6693 7189 7200 2000 7200 5800 "" "1" "hole,lock,edge2"]
	Pin[128740 7189 7200 2000 7200 5800 "" "2" "hole,lock,edge2"]
	Pad[0 9900 0 19000 2400 1000 3400 "" "1" "auto,lock,edge2"]
	Pad[122047 -4622 122047 4478 2400 1000 3400 "" "64" "auto,lock"]
	Pad[7874 9900 7874 19000 2400 1000 3400 "" "5" "auto,lock,edge2"]
	Pad[3937 9900 3937 19000 2400 1000 3400 "" "3" "auto,lock,edge2"]
	Pad[11811 9900 11811 19000 2400 1000 3400 "" "7" "auto,lock,edge2"]
	Pad[0 -4622 0 4478 2400 1000 3400 "" "2" "auto,lock"]
	Pad[15748 9900 15748 19000 2400 1000 3400 "" "9" "auto,lock,edge2"]
	Pad[7874 -4622 7874 4478 2400 1000 3400 "" "6" "auto,lock"]
	Pad[19685 9900 19685 19000 2400 1000 3400 "" "11" "auto,lock,edge2"]
	Pad[11811 -4622 11811 4478 2400 1000 3400 "" "8" "auto,lock"]
	Pad[23622 9900 23622 19000 2400 1000 3400 "" "13" "auto,lock,edge2"]
	Pad[15748 -4622 15748 4478 2400 1000 3400 "" "10" "auto,lock"]
	Pad[27559 9900 27559 19000 2400 1000 3400 "" "15" "auto,lock,edge2"]
	Pad[19685 -4622 19685 4478 2400 1000 3400 "" "12" "auto,lock"]
	Pad[31496 9900 31496 19000 2400 1000 3400 "" "17" "auto,lock,edge2"]
	Pad[23622 -4622 23622 4478 2400 1000 3400 "" "14" "auto,lock"]
	Pad[35433 9900 35433 19000 2400 1000 3400 "" "19" "auto,lock,edge2"]
	Pad[27559 -4622 27559 4478 2400 1000 3400 "" "16" "auto,lock"]
	Pad[39370 9900 39370 19000 2400 1000 3400 "" "21" "auto,lock,edge2"]
	Pad[31496 -4622 31496 4478 2400 1000 3400 "" "18" "auto,lock"]
	Pad[35433 -4622 35433 4478 2400 1000 3400 "" "20" "auto,lock"]
	Pad[39370 -4622 39370 4478 2400 1000 3400 "" "22" "auto,lock"]
	Pad[43307 -4622 43307 4478 2400 1000 3400 "" "24" "auto,lock"]
	Pad[47244 -4622 47244 4478 2400 1000 3400 "" "26" "auto,lock"]
	Pad[51181 -4622 51181 4478 2400 1000 3400 "" "28" "auto,lock"]
	Pad[55118 -4622 55118 4478 2400 1000 3400 "" "30" "auto,lock"]
	Pad[59055 -4622 59055 4478 2400 1000 3400 "" "32" "auto,lock"]
	Pad[62992 -4622 62992 4478 2400 1000 3400 "" "34" "auto,lock"]
	Pad[66929 -4622 66929 4478 2400 1000 3400 "" "36" "auto,lock"]
	Pad[70866 -4622 70866 4478 2400 1000 3400 "" "38" "auto,lock"]
	Pad[74803 -4622 74803 4478 2400 1000 3400 "" "40" "auto,lock"]
	Pad[78740 -4622 78740 4478 2400 1000 3400 "" "42" "auto,lock"]
	Pad[82677 -4622 82677 4478 2400 1000 3400 "" "44" "auto,lock"]
	Pad[86614 -4622 86614 4478 2400 1000 3400 "" "46" "auto,lock"]
	Pad[90551 -4622 90551 4478 2400 1000 3400 "" "48" "auto,lock"]
	Pad[98425 -4622 98425 4478 2400 1000 3400 "" "52" "auto,lock"]
	Pad[94488 -4622 94488 4478 2400 1000 3400 "" "50" "auto,lock"]
	Pad[102362 -4622 102362 4478 2400 1000 3400 "" "54" "auto,lock"]
	Pad[106299 -4622 106299 4478 2400 1000 3400 "" "56" "auto,lock"]
	Pad[110236 -4622 110236 4478 2400 1000 3400 "" "58" "auto,lock"]
	Pad[114173 -4622 114173 4478 2400 1000 3400 "" "60" "auto,lock"]
	Pad[3937 -4622 3937 4478 2400 1000 3400 "" "4" "auto,lock"]
	Pad[43307 9900 43307 19000 2400 1000 3400 "" "23" "auto,lock,edge2"]
	Pad[47244 9900 47244 19000 2400 1000 3400 "" "25" "auto,lock,edge2"]
	Pad[51181 9900 51181 19000 2400 1000 3400 "" "27" "auto,lock,edge2"]
	Pad[55118 9900 55118 19000 2400 1000 3400 "" "29" "auto,lock,edge2"]
	Pad[59055 9900 59055 19000 2400 1000 3400 "" "31" "auto,lock,edge2"]
	Pad[62992 9900 62992 19000 2400 1000 3400 "" "33" "auto,lock,edge2"]
	Pad[66929 9900 66929 19000 2400 1000 3400 "" "35" "auto,lock,edge2"]
	Pad[70866 9900 70866 19000 2400 1000 3400 "" "37" "auto,lock,edge2"]
	Pad[74803 9900 74803 19000 2400 1000 3400 "" "39" "auto,lock,edge2"]
	Pad[78740 9900 78740 19000 2400 1000 3400 "" "41" "auto,lock,edge2"]
	Pad[82677 9900 82677 19000 2400 1000 3400 "" "43" "auto,lock,edge2"]
	Pad[86614 9900 86614 19000 2400 1000 3400 "" "45" "auto,lock,edge2"]
	Pad[90551 9900 90551 19000 2400 1000 3400 "" "47" "auto,lock,edge2"]
	Pad[94488 9900 94488 19000 2400 1000 3400 "" "49" "auto,lock,edge2"]
	Pad[98425 9900 98425 19000 2400 1000 3400 "" "51" "auto,lock,edge2"]
	Pad[102362 9900 102362 19000 2400 1000 3400 "" "53" "auto,lock,edge2"]
	Pad[106299 9900 106299 19000 2400 1000 3400 "" "55" "auto,lock,edge2"]
	Pad[110236 9900 110236 19000 2400 1000 3400 "" "57" "auto,lock,edge2"]
	Pad[114173 9900 114173 19000 2400 1000 3400 "" "59" "auto,lock,edge2"]
	Pad[118110 9900 118110 19000 2400 1000 3400 "" "61" "auto,lock,edge2"]
	Pad[122047 9900 122047 19000 2400 1000 3400 "" "63" "auto,lock,edge2"]
	Pad[118110 -4622 118110 4478 2400 1000 3400 "" "62" "auto,lock"]
	ElementLine [134000 -9000 134000 24000 1000]
	ElementLine [-11000 24000 134000 24000 1000]
	ElementLine [-11000 -9000 134000 -9000 1000]
	ElementLine [-11000 -9000 -11000 24000 1000]

	)

Element["" "0603" "C85" "22pF" 153000 62000 -2700 15500 1 100 ""]
(
	Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]

	)

Element["onsolder" "0603" "C25" "100pF" 195500 82500 -4000 -15000 0 100 "auto"]
(
	Pad[-2400 -900 -2400 900 2400 3000 2400 "1" "1" "auto,square"]
	Pad[2400 -900 2400 900 2400 3000 2400 "2" "2" "auto,square"]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "0603" "C99" "47pF" 126500 181000 -4500 3800 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "SO8" "U6" "unknown" 178500 62000 -2500 10500 0 100 ""]
(
	Pad[7000 7500 13500 7500 2000 1000 3000 "1" "1" "square,edge2"]
	Pad[7000 2500 13500 2500 2000 1000 3000 "2" "2" "square,edge2"]
	Pad[7000 -2500 13500 -2500 2000 1000 3000 "3" "3" "square,edge2"]
	Pad[7000 -7500 13500 -7500 2000 1000 3000 "4" "4" "square,edge2"]
	Pad[-13500 -7500 -7000 -7500 2000 1000 3000 "5" "5" "square"]
	Pad[-13500 -2500 -7000 -2500 2000 1000 3000 "6" "6" "square"]
	Pad[-13500 2500 -7000 2500 2000 1000 3000 "7" "7" "square"]
	Pad[-13500 7500 -7000 7500 2000 1000 3000 "8" "8" "square"]
	ElementLine [-15500 9500 -2500 9500 1000]
	ElementLine [2500 9500 15500 9500 1000]
	ElementLine [-15500 -9500 -15500 9500 1000]
	ElementLine [-15500 -9500 15500 -9500 1000]
	ElementLine [15500 -9500 15500 9500 1000]
	ElementArc [0 9500 2500 2500 180 180 1000]

	)

Element["onsolder" "1206" "L600" "unknown" 104000 133500 -23000 2400 0 100 "auto"]
(
	Pad[-4800 -1800 -4800 1800 4800 2000 5400 "1" "1" "auto,square"]
	Pad[4800 -1800 4800 1800 4800 2000 5400 "2" "2" "auto,square"]
	ElementLine [-8400 5400 8400 5400 1000]
	ElementLine [8400 -5400 8400 5400 1000]
	ElementLine [-8400 -5400 8400 -5400 1000]
	ElementLine [-8400 -5400 -8400 5400 1000]

	)

Element["" "0603" "R68" "250,_0.1%" 226000 81000 3400 -600 0 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "0603" "R13" "1K" 201000 201500 -4000 16300 0 100 ""]
(
	Pad[2400 -900 2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[-2400 -900 -2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]

	)

Element["" "QFN40_6_EP" "U3" "unknown" 193000 174000 -21200 7800 0 100 ""]
(
	Pad[-12200 -8800 -10500 -8800 1100 3000 1700 "1" "1" ""]
	Pad[-12200 -6800 -10500 -6800 1100 3000 1700 "2" "2" ""]
	Pad[-12200 -4900 -10500 -4900 1100 3000 1700 "3" "3" ""]
	Pad[-12200 -2900 -10500 -2900 1100 3000 1700 "4" "4" ""]
	Pad[-12200 -900 -10500 -900 1100 3000 1700 "5" "5" ""]
	Pad[-12200 900 -10500 900 1100 3000 1700 "6" "6" ""]
	Pad[-12200 2900 -10500 2900 1100 3000 1700 "7" "7" ""]
	Pad[-12200 4900 -10500 4900 1100 3000 1700 "8" "8" ""]
	Pad[-12200 6800 -10500 6800 1100 3000 1700 "9" "9" ""]
	Pad[-12200 8800 -10500 8800 1100 3000 1700 "10" "10" ""]
	Pad[-8800 10500 -8800 12200 1100 3000 1700 "11" "11" "edge2"]
	Pad[-6800 10500 -6800 12200 1100 3000 1700 "12" "12" "edge2"]
	Pad[-4900 10500 -4900 12200 1100 3000 1700 "13" "13" "edge2"]
	Pad[-2900 10500 -2900 12200 1100 3000 1700 "14" "14" "edge2"]
	Pad[-900 10500 -900 12200 1100 3000 1700 "15" "15" "edge2"]
	Pad[900 10500 900 12200 1100 3000 1700 "16" "16" "edge2"]
	Pad[2900 10500 2900 12200 1100 3000 1700 "17" "17" "edge2"]
	Pad[4900 10500 4900 12200 1100 3000 1700 "18" "18" "edge2"]
	Pad[6800 10500 6800 12200 1100 3000 1700 "19" "19" "edge2"]
	Pad[8800 10500 8800 12200 1100 3000 1700 "20" "20" "edge2"]
	Pad[10500 8800 12200 8800 1100 3000 1700 "21" "21" "edge2"]
	Pad[10500 6800 12200 6800 1100 3000 1700 "22" "22" "edge2"]
	Pad[10500 4900 12200 4900 1100 3000 1700 "23" "23" "edge2"]
	Pad[10500 2900 12200 2900 1100 3000 1700 "24" "24" "edge2"]
	Pad[10500 900 12200 900 1100 3000 1700 "25" "25" "edge2"]
	Pad[10500 -900 12200 -900 1100 3000 1700 "26" "26" "edge2"]
	Pad[10500 -2900 12200 -2900 1100 3000 1700 "27" "27" "edge2"]
	Pad[10500 -4900 12200 -4900 1100 3000 1700 "28" "28" "edge2"]
	Pad[10500 -6800 12200 -6800 1100 3000 1700 "29" "29" "edge2"]
	Pad[10500 -8800 12200 -8800 1100 3000 1700 "30" "30" "edge2"]
	Pad[8800 -12200 8800 -10500 1100 3000 1700 "31" "31" ""]
	Pad[6800 -12200 6800 -10500 1100 3000 1700 "32" "32" ""]
	Pad[4900 -12200 4900 -10500 1100 3000 1700 "33" "33" ""]
	Pad[2900 -12200 2900 -10500 1100 3000 1700 "34" "34" ""]
	Pad[900 -12200 900 -10500 1100 3000 1700 "35" "35" ""]
	Pad[-900 -12200 -900 -10500 1100 3000 1700 "36" "36" ""]
	Pad[-2900 -12200 -2900 -10500 1100 3000 1700 "37" "37" ""]
	Pad[-4900 -12200 -4900 -10500 1100 3000 1700 "38" "38" ""]
	Pad[-6800 -12200 -6800 -10500 1100 3000 1700 "39" "39" ""]
	Pad[-8800 -12200 -8800 -10500 1100 3000 1700 "40" "40" ""]
	Pad[0 0 0 0 16100 3000 16700 "41" "41" "square,edge2"]
	ElementLine [-13700 -13700 -15200 -15200 1000]
	ElementLine [-13700 13700 13700 13700 1000]
	ElementLine [-13700 -13700 -13700 13700 1000]
	ElementLine [-13700 -13700 13700 -13700 1000]
	ElementLine [13700 -13700 13700 13700 1000]

	)

Element["onsolder" "0603" "L100" "27nH" 104000 191500 -16000 8700 0 100 "auto"]
(
	Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "auto,square"]
	Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]

	)

Element["" "0603" "R66" "250,_0.1%" 257000 62000 -1200 15500 1 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "0603" "R67" "250,_0.1%" 246500 79500 4500 -200 0 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["onsolder" "0603" "C100" ".1uF" 111000 201500 -1000 7700 0 100 "auto"]
(
	Pad[2400 -900 2400 900 2400 2000 3000 "1" "1" "auto,square"]
	Pad[-2400 -900 -2400 900 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [-4200 2700 -4200 -2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [4200 2700 4200 -2700 600]

	)

Element["" "0603" "C84" ".1uF" 192000 207500 -5300 16300 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "SO8" "U5" "unknown" 236500 62000 -2500 11000 0 100 ""]
(
	Pad[7000 7500 13500 7500 2000 1000 3000 "1" "1" "square,edge2"]
	Pad[7000 2500 13500 2500 2000 1000 3000 "2" "2" "square,edge2"]
	Pad[7000 -2500 13500 -2500 2000 1000 3000 "3" "3" "square,edge2"]
	Pad[7000 -7500 13500 -7500 2000 1000 3000 "4" "4" "square,edge2"]
	Pad[-13500 -7500 -7000 -7500 2000 1000 3000 "5" "5" "square"]
	Pad[-13500 -2500 -7000 -2500 2000 1000 3000 "6" "6" "square"]
	Pad[-13500 2500 -7000 2500 2000 1000 3000 "7" "7" "square"]
	Pad[-13500 7500 -7000 7500 2000 1000 3000 "8" "8" "square"]
	ElementLine [-15500 9500 -2500 9500 1000]
	ElementLine [2500 9500 15500 9500 1000]
	ElementLine [-15500 -9500 -15500 9500 1000]
	ElementLine [-15500 -9500 15500 -9500 1000]
	ElementLine [15500 -9500 15500 9500 1000]
	ElementArc [0 9500 2500 2500 180 180 1000]

	)

Element["" "SC70_6" "U4" "unknown" 134100 175900 400 7600 0 100 ""]
(
	Pad[-1000 0 1000 0 1500 3000 2100 "1" "1" "square"]
	Pad[-1000 2600 1000 2600 1500 3000 2100 "2" "2" "square"]
	Pad[-1000 5100 1000 5100 1500 3000 2100 "3" "3" "square"]
	Pad[6000 5100 8000 5100 1500 3000 2100 "4" "4" "square,edge2"]
	Pad[6000 2600 8000 2600 1500 3000 2100 "5" "5" "square,edge2"]
	Pad[6000 0 8000 0 1500 3000 2100 "6" "6" "square,edge2"]
	ElementLine [9400 -1400 9400 6600 1000]
	ElementLine [-2500 6600 9400 6600 1000]
	ElementLine [-2500 -1400 -2500 6600 1000]
	ElementLine [-2500 -1400 9400 -1400 1000]

	)

Element["" "0603" "R14" "2.21K" 201000 207500 -4000 16300 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["onsolder" "0603" "R16" "50" 188000 75000 -4200 -22000 1 100 "auto"]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "auto,square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "0603" "C67" "22pF" 264000 62000 300 15000 1 100 ""]
(
	Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]

	)

Element["" "0603" "C61" ".1uF" 214900 183500 20600 -2100 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["onsolder" "0603" "C63" ".1uF" 154500 69500 -14000 1200 0 100 "auto"]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "auto,square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [-2700 4200 -2700 -4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [2700 4200 2700 -4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["onsolder" "0603" "C65" "100pF" 216000 82500 -2000 -14800 0 100 "auto"]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "auto,square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["onsolder" "0603" "R71" "50" 214500 75000 -200 -23500 1 100 "auto"]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "auto,square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [-2700 4200 -2700 -4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [2700 4200 2700 -4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["onsolder" "0603" "C64" "100pF" 207000 82500 -3500 -14800 0 100 "auto"]
(
	Pad[2400 -900 2400 900 2400 2000 3000 "1" "1" "auto,square"]
	Pad[-2400 -900 -2400 900 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [4200 -2700 4200 2700 600]

	)

Element["" "0603" "R17" "250,_0.1%" 159000 62000 -2200 15500 1 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "CONNECTOR-8-2" "J24" "unknown" 104500 24000 -16200 -7100 0 100 ""]
(
	Pin[0 0 6000 3000 6600 4000 "1" "1" "square,edge2"]
	Pin[0 -10000 6000 3000 6600 4000 "2" "2" "edge2,thermal(1)"]
	Pin[10000 0 6000 3000 6600 4000 "3" "3" "edge2"]
	Pin[10000 -10000 6000 3000 6600 4000 "4" "4" "edge2,thermal(1)"]
	Pin[20000 0 6000 3000 6600 4000 "5" "5" "edge2"]
	Pin[20000 -10000 6000 3000 6600 4000 "6" "6" "edge2,thermal(1)"]
	Pin[30000 0 6000 3000 6600 4000 "7" "7" "edge2"]
	Pin[30000 -10000 6000 3000 6600 4000 "8" "8" "edge2,thermal(1)"]
	Pin[40000 0 6000 3000 6600 4000 "9" "9" "edge2"]
	Pin[40000 -10000 6000 3000 6600 4000 "10" "10" "edge2,thermal(1)"]
	Pin[50000 0 6000 3000 6600 4000 "11" "11" "edge2"]
	Pin[50000 -10000 6000 3000 6600 4000 "12" "12" "edge2,thermal(1)"]
	Pin[60000 0 6000 3000 6600 4000 "13" "13" "edge2"]
	Pin[60000 -10000 6000 3000 6600 4000 "14" "14" "edge2,thermal(1)"]
	Pin[70000 0 6000 3000 6600 4000 "15" "15" "edge2"]
	Pin[70000 -10000 6000 3000 6600 4000 "16" "16" "edge2,thermal(1)"]
	ElementLine [-5000 -5000 5000 -5000 1000]
	ElementLine [5000 -5000 5000 5000 1000]
	ElementLine [-5000 -15000 -5000 5000 2000]
	ElementLine [-5000 -15000 75000 -15000 2000]
	ElementLine [75000 -15000 75000 5000 2000]
	ElementLine [-5000 5000 75000 5000 2000]

	)

Element["onsolder" "SO8" "U1" "unknown" 46000 105500 7000 9500 0 100 "auto"]
(
	Pad[-1900 0 900 0 2000 3000 2000 "1" "1" "auto,square"]
	Pad[-1900 -5000 900 -5000 2000 3000 2000 "2" "2" "auto,square"]
	Pad[-1900 -10000 900 -10000 2000 3000 2000 "3" "3" "auto,square"]
	Pad[-1900 -15000 900 -15000 2000 3000 2000 "4" "4" "auto,square"]
	Pad[18500 -15000 21300 -15000 2000 3000 2000 "5" "5" "auto,square,edge2"]
	Pad[18500 -10000 21300 -10000 2000 3000 2000 "6" "6" "auto,square,edge2"]
	Pad[18500 -5000 21300 -5000 2000 3000 2000 "7" "7" "auto,square,edge2"]
	Pad[18500 0 21300 0 2000 3000 2000 "8" "8" "auto,square,edge2"]
	ElementLine [-2900 -17500 -2900 2500 1000]
	ElementLine [-2900 -17500 22300 -17500 1000]
	ElementLine [22300 -17500 22300 2500 1000]
	ElementLine [7200 2500 22300 2500 1000]
	ElementLine [-2900 2500 12200 2500 1000]
	ElementArc [9700 2500 2500 2500 180 180 1000]

	)

Element["" "EIA6032" "C82" "100uF" 161000 227500 -4000 18200 0 100 ""]
(
	Pad[-3900 -9400 3900 -9400 9700 2000 10300 "1" "1" "square"]
	Pad[-3900 9400 3900 9400 9700 2000 10300 "2" "2" "square"]
	ElementLine [11200 -13000 8700 -17800 1000]
	ElementLine [11200 -13000 11200 16800 1000]
	ElementLine [-11200 16800 11200 16800 1000]
	ElementLine [-11200 -13000 -11200 16800 1000]
	ElementLine [-8700 -17800 -11200 -13000 1000]
	ElementLine [-8700 -17800 8700 -17800 2000]

	)

Element["" "0603" "C74" "1000pF" 169500 163500 -14000 -18700 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "0603" "C77" "1000pF" 211000 162000 -5000 -10700 0 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "0603" "C73" "47pF" 168000 169500 -12500 -18700 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["onsolder" "0603" "R21" "1K" 193500 128500 4500 2200 0 100 "auto"]
(
	Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "auto,square"]
	Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]

	)

Element["onsolder" "0603" "C261" "200pF" 162000 76000 5500 2200 0 100 "auto"]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "auto,square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "0603" "C76" "1000pF" 215000 195500 20000 -2700 0 100 ""]
(
	Pad[2400 -900 2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[-2400 -900 -2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]

	)

Element["" "0603" "C98" "10nF" 133500 162500 -6500 -14700 0 100 ""]
(
	Pad[2400 -900 2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[-2400 -900 -2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]

	)

Element["" "0603" "C79" "1000pF" 195000 145500 -3500 -13700 0 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["onsolder" "0603" "C78" "1000pF" 195000 145500 -400 -5600 3 100 "auto"]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "auto,square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "0603" "R93" "50" 224500 183500 22500 -2200 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "0603" "C68" ".1uF" 170500 155500 -3200 -5000 1 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "0603" "C69" ".1uF" 181000 155000 -5000 -7700 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "0603" "C70" ".22uF" 190500 194000 -4500 18300 0 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "0603" "R40" "86.6" 157000 183000 -7500 9300 0 100 ""]
(
	Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]

	)

Element["" "0603" "C72" "47pF" 168000 175500 -13500 -19200 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "0603" "C71" ".22uF" 215000 189500 20500 -2200 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "0603" "C75" "1000pF" 174500 191500 -14000 -2200 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["onsolder" "1206" "L601" "unknown" 239500 89500 -5000 -7600 0 100 "auto"]
(
	Pad[-4800 -1800 -4800 1800 4800 2000 5400 "1" "1" "auto,square"]
	Pad[4800 -1800 4800 1800 4800 2000 5400 "2" "2" "auto,square"]
	ElementLine [-8400 5400 8400 5400 1000]
	ElementLine [8400 -5400 8400 5400 1000]
	ElementLine [-8400 -5400 8400 -5400 1000]
	ElementLine [-8400 -5400 -8400 5400 1000]

	)

Element["" "0603" "C96" "47pF" 149000 175500 -4500 4300 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "0603" "C97" "100pF" 133500 168500 -6500 -14700 0 100 ""]
(
	Pad[2400 -900 2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[-2400 -900 -2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]

	)

Element["" "0603" "L98" "27nH" 141000 169000 -2700 -14000 1 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "0603" "R11" "75" 159000 169500 -13500 -19000 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 3000 2400 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 3000 2400 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "0603" "C80" "1000pF" 181500 198000 -14500 -1700 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "0603" "R12" "4.7" 179000 206000 -13000 -2200 0 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "0603" "C81" "1000pF" 181000 214000 -7000 3800 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [4200 -2700 -4200 -2700 600]
	ElementLine [4200 2700 4200 -2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "0603" "C24" ".1uF" 209500 32500 5500 -2500 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 3000 2400 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 3000 2400 "2" "2" "square"]
	ElementLine [-4200 -2700 -4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]

	)

Element["" "0603" "C27" ".1uF" 235500 48000 5500 -2200 0 100 ""]
(
	Pad[2400 -900 2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[-2400 -900 -2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]

	)

Element["" "SOT23" "Q1" "unknown" 233000 159500 -6000 -8800 0 100 ""]
(
	Pad[0 -300 0 300 3400 3000 4000 "1" "1" "square"]
	Pad[-7800 -300 -7800 300 3400 3000 4000 "2" "2" "square"]
	Pad[-3900 7900 -3900 8500 3400 3000 4000 "3" "3" "square,edge2"]
	ElementLine [-10300 11000 2500 11000 1000]
	ElementLine [-10300 -2900 -10300 11000 1000]
	ElementLine [-10300 -2900 2500 -2900 1000]
	ElementLine [2500 -2900 2500 11000 1000]

	)

Element["" "0603" "C28" "1000pF" 177500 48000 -2500 -8200 0 100 ""]
(
	Pad[2400 -900 2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[-2400 -900 -2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]

	)

Element["onsolder" "0603" "C187" ".1uF" 96000 124000 -18500 1700 0 100 "auto"]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "auto,square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "0603" "C124" "1000pF" 210000 44500 8000 -2200 0 100 ""]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "square"]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["onsolder" "0603" "C87" ".01uF" 173500 180000 -6000 10200 0 100 "auto"]
(
	Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "auto,square"]
	Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]

	)

Element["onsolder" "SOT223" "U2" "unknown" 245700 105600 11800 39400 0 100 "auto"]
(
	Pad[0 -3300 0 3300 5600 3000 6200 "1" "1" "auto,square"]
	Pad[9000 -3300 9000 3300 5600 3000 6200 "2" "2" "auto,square"]
	Pad[18100 -3300 18100 3300 5600 3000 6200 "3" "3" "auto,square"]
	Pad[4500 24400 13500 24400 12200 3000 12800 "4" "4" "auto,square"]
	ElementLine [-5200 32900 23300 32900 1000]
	ElementLine [23300 -8500 23300 32900 1000]
	ElementLine [-5200 -8500 23300 -8500 1000]
	ElementLine [-5200 -8500 -5200 32900 1000]

	)

Element["onsolder" "EIA6032" "C182" "22uF" 261000 70500 -25500 -1700 0 100 "auto"]
(
	Pad[-3900 9400 3900 9400 9700 2000 10300 "1" "1" "auto,square"]
	Pad[-3900 -9400 3900 -9400 9700 2000 10300 "2" "2" "auto,square"]
	ElementLine [11200 13000 8700 17800 1000]
	ElementLine [11200 -16800 11200 13000 1000]
	ElementLine [-11200 -16800 11200 -16800 1000]
	ElementLine [-11200 -16800 -11200 13000 1000]
	ElementLine [-8700 17800 -11200 13000 1000]
	ElementLine [-8700 17800 8700 17800 2000]

	)

Element["onsolder" "0603" "C183" ".1uF" 118000 136000 -6500 9700 0 100 "auto"]
(
	Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "auto,square"]
	Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]

	)

Element["onsolder" "0603" "C184" ".1uF" 235000 99500 -200 4500 1 100 "auto"]
(
	Pad[-2400 -900 -2400 900 2400 2000 3000 "1" "1" "auto,square"]
	Pad[2400 -900 2400 900 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [-4200 2700 4200 2700 600]
	ElementLine [4200 -2700 4200 2700 600]
	ElementLine [-4200 -2700 4200 -2700 600]
	ElementLine [-4200 -2700 -4200 2700 600]

	)

Element["" "SMA_VERT" "J3" "unknown" 104000 181000 -4500 -22500 0 100 ""]
(
	Pin[0 0 8000 3000 8600 5800 "1" "1" ""]
	Pin[10000 -10000 8000 3000 8600 5800 "2" "2" "thermal(1)"]
	Pin[10000 10000 8000 3000 8600 5800 "3" "3" "thermal(1)"]
	Pin[-10000 -10000 8000 3000 8600 5800 "4" "4" "thermal(1)"]
	Pin[-10000 10000 8000 3000 8600 5800 "5" "5" "thermal(1)"]
	ElementLine [16000 -16000 16000 16000 1000]
	ElementLine [-16000 -16000 16000 -16000 1000]
	ElementLine [-16000 -16000 -16000 16000 1000]
	ElementLine [-16000 16000 16000 16000 1000]

	)

Element["" "0603" "C86" "22pF" 204500 62000 -2200 15500 1 100 ""]
(
	Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]

	)

Element["" "0603" "R65" "250,_0.1%" 216500 62000 -1700 15500 1 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["" "0603" "C66" "22pF" 210500 62000 -1700 15000 1 100 ""]
(
	Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]

	)

Element["" "0603" "R18" "250,_0.1%" 198500 62000 -2200 15500 1 100 ""]
(
	Pad[-900 -2400 900 -2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 2400 900 2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]

	)

Element["onsolder" "0603" "R193" "10" 154500 78500 -16500 2200 0 100 "auto"]
(
	Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "auto,square"]
	Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]

	)

Element["" "0603" "R22" "NONE" 158000 128500 -14500 -200 0 100 ""]
(
	Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "square"]
	Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "square"]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]

	)

Element["onsolder" "0603" "R194" "NONE" 160500 68500 0 -6200 2 100 "auto"]
(
	Pad[-900 2400 900 2400 2400 2000 3000 "1" "1" "auto,square"]
	Pad[-900 -2400 900 -2400 2400 2000 3000 "2" "2" "auto,square"]
	ElementLine [2700 -4200 2700 4200 600]
	ElementLine [-2700 -4200 2700 -4200 600]
	ElementLine [-2700 -4200 -2700 4200 600]
	ElementLine [-2700 4200 2700 4200 600]

	)

Element["" "CONNECTOR-1-2" "J101" "unknown" 116500 225000 -4000 17000 0 100 ""]
(
	Pin[0 0 6000 3000 6600 4000 "1" "1" "square"]
	Pin[0 10000 6000 3000 6600 4000 "2" "2" ""]
	ElementLine [-5000 5000 5000 5000 1000]
	ElementLine [-5000 -5000 -5000 5000 1000]
	ElementLine [5000 -5000 5000 15000 2000]
	ElementLine [-5000 15000 5000 15000 2000]
	ElementLine [-5000 -5000 -5000 15000 2000]
	ElementLine [-5000 -5000 5000 -5000 2000]

	)
Layer(1 "solder")
(
	Line[94993 105711 94993 95739 2499 1998 "clearline"]
	Line[165859 105711 166000 105570 2499 1998 "clearline"]
	Line[166000 105570 166000 96000 2499 1998 "clearline"]
	Line[157985 91189 158000 91174 798 1596 "clearline"]
	Line[111000 87500 111000 93000 798 1596 "clearline"]
	Line[60000 36500 111000 87500 798 1596 "clearline"]
	Line[164500 26500 164500 24000 798 1596 "clearline"]
	Line[154048 91189 154500 90737 798 1596 "clearline"]
	Line[18000 24000 34500 40500 798 1596 "clearline"]
	Line[150111 91189 150000 91078 798 1596 "clearline"]
	Line[57000 40500 107000 90500 798 1596 "clearline"]
	Line[34500 40500 57000 40500 798 1596 "clearline"]
	Line[144500 24000 144000 24000 798 1596 "clearline"]
	Line[107000 90500 107000 93500 798 1596 "clearline"]
	Line[40500 36500 60000 36500 798 1596 "clearline"]
	Line[8000 24000 35500 51500 798 1596 "clearline"]
	Line[35500 51500 35500 58500 798 1596 "clearline"]
	Line[35500 58500 48500 71500 798 1596 "clearline"]
	Line[48500 71500 83500 71500 798 1596 "clearline"]
	Line[103000 91000 103000 92500 798 1596 "clearline"]
	Line[83500 71500 103000 91000 798 1596 "clearline"]
	Line[28000 24000 40500 36500 798 1596 "clearline"]
	Line[115000 88500 115000 92500 798 1596 "clearline"]
	Line[68000 24000 126500 82500 798 1596 "clearline"]
	Line[126500 82500 126500 93000 798 1596 "clearline"]
	Line[58000 24000 122500 88500 798 1596 "clearline"]
	Line[122500 88500 122500 94000 798 1596 "clearline"]
	Line[48000 24000 55500 31500 798 1596 "clearline"]
	Line[55500 31500 62500 31500 798 1596 "clearline"]
	Line[62500 31500 119000 88000 798 1596 "clearline"]
	Line[119000 88000 119000 91500 798 1596 "clearline"]
	Line[38000 24000 48500 34500 798 1596 "clearline"]
	Line[48500 34500 61000 34500 798 1596 "clearline"]
	Line[61000 34500 115000 88500 798 1596 "clearline"]
	Line[78000 24000 78500 24500 798 1596 "clearline"]
	Line[78000 24000 79000 25000 798 1596 "clearline"]
	Line[79000 25000 79000 32000 798 1596 "clearline"]
	Line[79000 32000 130500 83500 798 1596 "clearline"]
	Line[130500 83500 130500 86500 798 1596 "clearline"]
	Line[130426 91189 130500 91115 798 1596 "clearline"]
	Line[130500 91115 130500 86000 798 1596 "clearline"]
	Line[104500 24000 104000 24500 798 1596 "clearline"]
	Line[104000 24500 104000 54000 798 1596 "clearline"]
	Line[104000 54000 134500 84500 798 1596 "clearline"]
	Line[134500 84500 134500 93000 798 1596 "clearline"]
	Line[114500 24000 114500 62380 798 1596 "clearline"]
	Line[114500 62380 138500 86380 798 1596 "clearline"]
	Line[138500 86380 138500 93000 798 1596 "clearline"]
	Line[124500 24000 124500 70260 798 1596 "clearline"]
	Line[124500 70260 142000 87760 798 1596 "clearline"]
	Line[142000 87760 142000 92500 798 1596 "clearline"]
	Line[134500 24000 127500 31000 798 1596 "clearline"]
	Line[127500 31000 127500 71140 798 1596 "clearline"]
	Line[127500 71140 146000 89640 798 1596 "clearline"]
	Line[146000 89640 146000 94500 798 1596 "clearline"]
	Line[139000 80078 139000 31000 798 1596 "clearline"]
	Line[139000 31000 144500 25500 798 1596 "clearline"]
	Line[144500 25500 144500 24500 798 1596 "clearline"]
	Line[150500 91000 150500 93500 798 1596 "clearline"]
	Line[144000 81000 144000 34500 798 1596 "clearline"]
	Line[163000 76500 163000 82500 1399 1598 "clearline"]
	Line[154500 75200 154500 72000 1399 1598 "clearline"]
	Line[172500 182500 172500 186500 798 1596 "clearline"]
	Line[263800 108900 264500 109600 3999 1996 "clearline"]
	Line[264500 109600 264500 117000 3999 1996 "clearline"]
	Line[154048 91189 144000 81141 798 1596 "clearline"]
	Line[155400 76100 154500 75200 1399 1598 "clearline"]
	Line[172600 182400 172500 182500 798 1596 "clearline"]
	Line[195500 155500 195000 148000 798 1596 "clearline"]
	Line[264000 102100 264000 82500 3999 1996 "clearline"]
	Line[263800 102300 264000 102100 3999 1996 "clearline"]
	Line[165859 91189 165859 90359 2499 1998 "clearline"]
	Line[165859 90359 163000 83500 2499 1998 "clearline"]
	Line[94993 114811 94682 114500 2499 1998 "clearline"]
	Line[94682 114500 88000 114500 2499 1998 "clearline"]
	Line[94993 91189 92804 89000 2499 1998 "clearline"]
	Line[92804 89000 88000 89000 2499 1998 "clearline"]
	Line[95000 103000 166000 103000 798 1596 "clearline"]
	Line[93600 123100 94500 122200 2499 1998 "clearline"]
	Line[94500 122200 94500 114500 2499 1998 "clearline"]
	Line[64500 100500 58500 100500 1397 1596 "clearline"]
	Line[44100 90500 44000 90400 1397 1596 "clearline"]
	Line[44000 90400 44000 85000 1397 1596 "clearline"]
	Line[44100 105500 65000 105500 1397 1596 "clearline"]
	Line[46900 95500 52000 100600 1397 1596 "clearline"]
	Line[52000 100600 52000 105500 1397 1596 "clearline"]
	Line[110741 114811 110430 114500 1397 1596 "clearline"]
	Line[110430 114500 106500 114500 1397 1596 "clearline"]
	Line[122552 114811 122500 114863 1397 1596 "clearline"]
	Line[122500 114863 122500 120500 1397 1596 "clearline"]
	Line[59000 94000 60500 95500 1397 1596 "clearline"]
	Line[60500 95500 65000 95500 1397 1596 "clearline"]
	Line[126489 114811 127500 115822 1397 1596 "clearline"]
	Line[127500 115822 127500 123000 1397 1596 "clearline"]
	Line[73000 90500 65900 90500 1397 1596 "clearline"]
	Line[110741 114811 110000 115552 1397 1596 "clearline"]
	Line[110741 114811 109000 116552 1397 1596 "clearline"]
	Line[109000 116552 109000 123000 1397 1596 "clearline"]
	Line[64500 113000 64000 112500 1397 1596 "clearline"]
	Line[64000 112500 64000 105000 1397 1596 "clearline"]
	Line[64000 105000 64000 105500 1397 1596 "clearline"]
	Line[130426 114811 131500 115885 1397 1596 "clearline"]
	Line[131500 115885 131500 126000 1397 1596 "clearline"]
	Line[40000 107000 40000 104000 1397 1596 "clearline"]
	Line[40000 104000 44000 100000 1397 1596 "clearline"]
	Line[98930 114811 99741 114000 2499 1998 "clearline"]
	Line[99741 114000 103000 114000 2499 1998 "clearline"]
	Line[98930 114811 99119 115000 2499 1998 "clearline"]
	Line[99119 115000 101000 115000 2499 1998 "clearline"]
	Line[101000 115000 99000 117000 2499 1998 "clearline"]
	Line[99000 117000 99000 132500 2499 1998 "clearline"]
	Line[99000 132500 100500 132500 2499 1998 "clearline"]
	Line[100500 132500 100000 132000 2499 1998 "clearline"]
	Line[100000 132000 100000 115500 2499 1998 "clearline"]
	Line[108800 131700 109600 132500 2499 1998 "clearline"]
	Line[109600 132500 118500 134000 2499 1998 "clearline"]
	Line[118900 133600 117000 132700 2499 1998 "clearline"]
	Line[118300 133000 117000 134000 2499 1998 "clearline"]
	Line[117000 133000 110500 134000 2499 1998 "clearline"]
	Line[125900 138400 118000 138400 2499 1998 "clearline"]
	Line[132500 145000 125900 138400 2499 1998 "clearline"]
	Line[192600 126100 193000 125700 798 1596 "clearline"]
	Line[193000 125700 193000 114000 798 1596 "clearline"]
	Line[197355 91189 197500 91044 798 1596 "clearline"]
	Line[197500 91044 197500 82500 798 1596 "clearline"]
	Line[193418 91189 193000 90771 798 1596 "clearline"]
	Line[193000 90771 193000 82500 798 1596 "clearline"]
	Line[193100 81600 193000 82500 798 1596 "clearline"]
	Line[209166 91189 209500 90855 798 1596 "clearline"]
	Line[207600 77400 209500 79300 798 1596 "clearline"]
	Line[213103 91189 213000 91086 798 1596 "clearline"]
	Line[213000 91086 213000 82500 798 1596 "clearline"]
	Line[193100 81600 193000 81500 798 1596 "clearline"]
	Line[193000 81500 193000 78000 798 1596 "clearline"]
	Line[188900 77400 189000 77500 798 1596 "clearline"]
	Line[189000 77500 189000 82500 798 1596 "clearline"]
	Line[184100 83400 185500 84800 798 1596 "clearline"]
	Line[185500 84800 185500 91000 798 1596 "clearline"]
	Line[209500 90855 209500 79300 798 1596 "clearline"]
	Line[213600 81600 213500 81500 798 1596 "clearline"]
	Line[213500 81500 213500 77500 798 1596 "clearline"]
	Line[188900 83400 189500 84000 798 1596 "clearline"]
	Line[189500 84000 189500 91500 798 1596 "clearline"]
	Line[204600 83400 205000 83800 798 1596 "clearline"]
	Line[205000 83800 205000 92500 798 1596 "clearline"]
	Line[217040 91189 217000 91149 798 1596 "clearline"]
	Line[217000 91149 217000 83500 798 1596 "clearline"]
	Line[217000 83500 218000 82500 798 1596 "clearline"]
	Line[218000 82500 218400 82500 798 1596 "clearline"]
	Line[217040 105711 217000 105671 798 1596 "clearline"]
	Line[217000 105671 217000 98000 798 1596 "clearline"]
	Line[185544 105711 185500 105667 798 1596 "clearline"]
	Line[185500 105667 185500 98500 798 1596 "clearline"]
	Line[173733 105711 173500 105478 798 1596 "clearline"]
	Line[173500 105478 173500 97500 798 1596 "clearline"]
	Line[217000 103000 185500 103000 798 1596 "clearline"]
	Line[197355 100289 197500 100434 798 1596 "clearline"]
	Line[197500 100434 197500 103000 798 1596 "clearline"]
	Line[205229 100289 205500 100560 798 1596 "clearline"]
	Line[205500 100560 205500 103000 798 1596 "clearline"]
	Line[185500 105667 185500 98000 1397 1596 "clearline"]
	Line[173733 105711 174000 105444 1397 1596 "clearline"]
	Line[174000 105444 174000 99000 1397 1596 "clearline"]
	Line[174000 99000 173500 99000 1397 1596 "clearline"]
	Line[217000 105671 217000 98500 1397 1596 "clearline"]
	Line[205500 100560 205500 102500 1397 1596 "clearline"]
	Line[197500 100434 197500 102500 1397 1596 "clearline"]
	Line[177670 105711 178000 105381 2499 1998 "clearline"]
	Line[178000 105381 178000 99500 2499 1998 "clearline"]
	Line[178000 99500 181000 99500 2499 1998 "clearline"]
	Line[181000 99500 181000 106500 2499 1998 "clearline"]
	Line[181000 106500 178500 106500 2499 1998 "clearline"]
	Line[103100 189100 104000 188200 2499 1998 "clearline"]
	Line[104000 188200 104000 181500 2499 1998 "clearline"]
	Line[103100 193900 103500 194300 2499 1998 "clearline"]
	Line[103500 194300 103500 225000 2499 1998 "clearline"]
	Line[108600 200600 108200 201000 2499 1998 "clearline"]
	Line[108200 201000 104000 201000 2499 1998 "clearline"]
	Line[113400 200600 114000 200000 2499 1998 "clearline"]
	Line[114000 200000 114000 193000 2499 1998 "clearline"]
	Line[250200 130000 254500 125700 3999 1996 "clearline"]
	Line[254500 125700 254500 106000 3999 1996 "clearline"]
	Line[217040 114811 217229 115000 3999 1996 "clearline"]
	Line[217229 115000 225000 115000 3999 1996 "clearline"]
	Line[250200 130000 253500 133300 3999 1996 "clearline"]
	Line[253500 133300 253500 142000 3999 1996 "clearline"]
	Line[232600 100400 232000 101000 2499 1998 "clearline"]
	Line[232000 101000 232000 106000 2499 1998 "clearline"]
	Line[245700 102300 244500 101100 3999 1996 "clearline"]
	Line[244500 101100 244500 90500 3999 1996 "clearline"]
	Line[237400 98600 237800 99000 2499 1998 "clearline"]
	Line[237800 99000 245000 99000 2499 1998 "clearline"]
	Line[172600 177600 169200 181000 798 1596 "clearline"]
	Line[169200 181000 168500 181000 798 1596 "clearline"]
	Line[195000 142200 195000 139500 798 1596 "clearline"]
	Line[194100 143100 195000 142200 798 1596 "clearline"]
	Line[264900 61100 268000 58000 3999 1996 "clearline"]
	Line[268000 58000 268000 49500 3999 1996 "clearline"]
	Line[257100 61100 254500 58500 3999 1996 "clearline"]
	Line[254500 58500 254500 47000 3999 1996 "clearline"]
	Line[244000 50500 221500 73000 798 1596 "clearline"]
	Line[221500 73000 215000 73000 798 1596 "clearline"]
	Line[210000 55500 209000 56500 798 1596 "clearline"]
	Line[209000 56500 209000 72000 798 1596 "clearline"]
	Line[177670 114811 178000 115141 2499 1998 "clearline"]
	Line[178000 115141 178000 123500 2499 1998 "clearline"]
	Line[181607 91189 181607 50393 798 1596 "clearline"]
	Line[181607 50393 193500 38500 798 1596 "clearline"]
	Line[194500 49500 188500 55500 798 1596 "clearline"]
	Line[188500 55500 188500 73000 798 1596 "clearline"]
	Line[194900 72600 197500 70000 798 1596 "clearline"]
	Line[197500 70000 197500 36500 798 1596 "clearline"]
	Line[197500 36500 195000 34000 798 1596 "clearline"]
	Line[117100 133600 119200 131500 3999 1996 "clearline"]
	Line[119200 131500 130000 131500 3999 1996 "clearline"]
	Line[236000 78000 235000 79000 3999 1996 "clearline"]
	Line[235000 79000 235000 91000 3999 1996 "clearline"]
	Line[161922 91189 154500 83767 1399 1598 "clearline"]
	Line[154500 83767 154500 81000 1399 1598 "clearline"]
	Line[155400 76100 155500 76000 1399 1598 "clearline"]
	Line[155500 76000 159600 76000 1399 1598 "clearline"]
	Line[164400 75100 163000 76500 1399 1598 "clearline"]
	Line[150111 91189 139000 80078 798 1596 "clearline"]
	Line[154500 24000 144000 34500 798 1596 "clearline"]
	Line[157985 91189 146000 79204 798 1596 "clearline"]
	Line[146000 79204 146000 42500 798 1596 "clearline"]
	Line[164500 24000 146000 42500 798 1596 "clearline"]
	Line[146000 42500 146000 43000 798 1596 "clearline"]
	Line[153600 67100 153200 67500 798 1596 "clearline"]
	Line[153200 67500 149000 67500 798 1596 "clearline"]
	Line[208500 178500 208500 138000 798 1596 "clearline"]
	Line[177000 135500 207000 135500 798 1596 "clearline"]
	Line[207000 135500 208500 137000 798 1596 "clearline"]
	Line[208500 137000 208500 138500 798 1596 "clearline"]
	Line[141000 120000 168000 120000 798 1596 "clearline"]
	Line[167400 134900 170300 132000 798 1596 "clearline"]
	Line[158000 139500 180500 139500 798 1596 "clearline"]
	Line[189500 128500 188999 129001 798 1596 "clearline"]
	Line[173500 115044 173500 125000 798 1596 "clearline"]
	Line[218500 128600 228500 138600 798 1596 "clearline"]
	Line[228500 138600 228500 141000 798 1596 "clearline"]
	Line[228000 150000 232000 150000 798 1596 "clearline"]
	Line[156500 145500 205500 145500 798 1596 "clearline"]
	Line[137500 126500 156500 145500 798 1596 "clearline"]
	Line[228500 141000 228500 139000 798 1596 "clearline"]
	Line[179000 139500 188500 139500 798 1596 "clearline"]
	Line[211500 136500 219500 144500 798 1596 "clearline"]
	Line[219500 144500 222500 144500 798 1596 "clearline"]
	Line[222500 144500 228000 150000 798 1596 "clearline"]
	Line[143000 124500 158000 139500 798 1596 "clearline"]
	Line[168000 120000 170000 122000 798 1596 "clearline"]
	Line[170000 122000 170000 127000 798 1596 "clearline"]
	Line[170000 127000 171500 128500 798 1596 "clearline"]
	Line[173500 125000 175501 127001 798 1596 "clearline"]
	Line[173733 114811 173500 115044 798 1596 "clearline"]
	Line[175500 127000 176500 128000 798 1596 "clearline"]
	Line[176500 128000 179297 128000 798 1596 "clearline"]
	Line[179297 128000 185500 121797 798 1596 "clearline"]
	Line[185500 121797 185500 114500 798 1596 "clearline"]
	Line[185544 114811 185500 114500 798 1596 "clearline"]
	Line[218500 128500 189500 128500 798 1596 "clearline"]
	Line[189000 129000 188500 129500 798 1596 "clearline"]
	Line[188500 129500 173000 129500 798 1596 "clearline"]
	Line[173000 129500 172000 128500 798 1596 "clearline"]
	Line[172000 128500 171500 128500 798 1596 "clearline"]
	Line[192600 130900 191500 132000 798 1596 "clearline"]
	Line[191500 132000 170300 132000 798 1596 "clearline"]
	Line[167500 135000 167000 135500 798 1596 "clearline"]
	Line[167000 135500 159000 135500 798 1596 "clearline"]
	Line[159500 154000 168500 163000 798 1596 "clearline"]
	Line[168500 163000 168500 181000 798 1596 "clearline"]
	Line[197500 87000 205000 87000 798 1596 "clearline"]
	Line[189500 121500 189000 121000 798 1596 "clearline"]
	Line[189000 121000 185500 121000 798 1596 "clearline"]
	Line[185000 169000 186000 168000 3999 1996 ""]
	Line[186000 168000 200500 168000 3999 1996 ""]
	Line[200500 168000 201000 168500 3999 1996 ""]
	Line[201000 168500 201000 181500 3999 1996 ""]
	Line[201000 181500 199500 180000 3999 1996 ""]
	Line[199500 180000 186500 180000 3999 1996 ""]
	Line[186500 180000 187500 179000 3999 1996 ""]
	Line[187500 179000 187500 172000 3999 1996 ""]
	Line[187500 172000 188000 171500 3999 1996 ""]
	Line[188000 171500 198500 171500 3999 1996 ""]
	Line[198500 171500 198500 177500 3999 1996 ""]
	Line[198500 177500 198000 177000 3999 1996 ""]
	Line[198000 177000 190500 177000 3999 1996 ""]
	Line[190500 177000 193000 174500 3999 1996 ""]
	Line[193000 174500 194500 174500 3999 1996 ""]
	Line[194500 174500 193500 175500 3999 1996 ""]
	Line[193500 175500 189500 175500 3999 1996 ""]
	Line[189500 175500 196000 182000 3999 1996 ""]
	Line[196000 182000 199500 182000 3999 1996 ""]
	Line[199500 182000 192500 182000 3999 1996 ""]
	Line[160000 71000 160000 75500 798 1596 ""]
	Line[115000 114000 115000 123500 798 1596 ""]
	Line[156000 52500 156000 61000 798 1596 ""]
	Line[156000 61000 160500 65500 798 1596 ""]
	Line[103500 225500 117000 225500 3999 1996 ""]
	Line[116500 235000 119500 235000 3999 1996 ""]
	Line[119500 235000 146000 208500 3999 1996 ""]
	Text[210000 22500 0 100 "SOLDER SIDE" "auto"]
	Text[25000 198500 0 100 "" "auto"]
	Polygon("clearpoly")
	(
		[179000 159000] [201500 159000] [201500 185000] [179000 185000] 
	)
	Polygon("clearpoly")
	(
		[197500 162000] [206000 162000] [206000 185000] [197500 185000] 
	)
	Polygon("clearpoly")
	(
		[184500 184000] [204000 184000] [204000 196500] [184500 196500] 
	)
)
Layer(2 "GND")
(
	Line[190000 203500 190000 200000 1000 1600 ""]
	Line[185000 169000 200000 169000 3999 1996 ""]
	Line[200000 169000 199500 169500 3999 1996 ""]
	Line[199500 169500 199500 180500 3999 1996 ""]
	Line[199500 180500 199000 181000 3999 1996 ""]
	Line[199000 181000 188000 181000 3999 1996 ""]
	Line[188000 181000 188000 172000 3999 1996 ""]
	Line[188000 172000 188500 172500 3999 1996 ""]
	Line[188500 172500 196500 172500 3999 1996 ""]
	Line[196500 172500 196500 177500 3999 1996 ""]
	Line[196500 177500 190500 177500 3999 1996 ""]
	Line[190500 177500 193500 174500 3999 1996 ""]
	Line[193500 174500 194000 174500 3999 1996 ""]
	Line[194000 174500 194000 167000 3999 1996 ""]
	Line[194000 167000 199000 167000 3999 1996 ""]
	Line[199000 167000 201000 169000 3999 1996 ""]
	Line[201000 169000 201000 181000 3999 1996 ""]
	Line[201000 181000 199500 179500 3999 1996 ""]
	Line[199500 179500 185500 179500 3999 1996 ""]
	Line[185500 179500 186000 179000 3999 1996 ""]
	Line[186000 179000 186000 171500 3999 1996 ""]
	Line[186000 171500 188000 169500 3999 1996 ""]
	Line[188000 169500 188000 166500 3999 1996 ""]
	Polygon("clearpoly")
	(
		[128500 160500] [170500 160500] [170500 140000] [128500 140000] 
	)
	Polygon("clearpoly")
	(
		[208500 1500] [273500 1500] [273500 40500] [208500 40500] 
	)
	Polygon("clearpoly")
	(
		[138500 76500] [166500 76500] [166500 104500] [138500 104500] 
	)
	Polygon("clearpoly")
	(
		[170500 39000] [273500 39000] [273500 249000] [170500 249000] 
	)
	Polygon("clearpoly")
	(
		[207000 1500] [23500 1500] [23500 36000] [207000 36000] 
	)
	Polygon("clearpoly")
	(
		[23000 101500] [167000 101500] [167000 118500] [23000 118500] 
	)
	Polygon("clearpoly")
	(
		[2000 249000] [171500 249000] [171500 159000] [2000 159000] 
	)
	Polygon("clearpoly")
	(
		[23000 35000] [139500 35000] [139500 103500] [23000 103500] 
	)
	Polygon("clearpoly")
	(
		[25500 118500] [500 118500] [500 1500] [25500 1500] 
	)
	Polygon("clearpoly")
	(
		[151000 70000] [180000 70000] [180000 39500] [151000 39500] 
	)
	Polygon("clearpoly")
	(
		[129500 77000] [150000 77000] [150000 34000] [129500 34000] 
	)
)
Layer(3 "Vcc")
(
	Line[109000 123000 74500 123000 1397 1596 "clearline"]
	Line[74500 123000 64500 113000 1397 1596 "clearline"]
	Line[178000 123500 142500 159000 2499 1998 "clearline"]
	Line[142500 159000 139000 160000 2499 1998 "clearline"]
	Line[130000 131500 161939 131500 3999 1996 "clearline"]
	Line[161939 131500 202439 91000 3999 1996 "clearline"]
	Line[202439 91000 221500 91000 3999 1996 "clearline"]
	Line[221500 91000 234500 78000 3999 1996 "clearline"]
	Line[234500 78000 236000 78000 3999 1996 "clearline"]
	Line[217000 165000 216500 164500 798 1596 "clearline"]
	Line[188100 161800 187500 161200 798 1596 "clearline"]
	Line[187500 161200 188000 157000 798 1596 "clearline"]
	Line[122500 120500 123500 119500 798 1596 "clearline"]
	Line[133000 126000 138000 126000 798 1596 "clearline"]
	Line[127500 123000 128500 123000 798 1596 "clearline"]
	Line[128500 123000 138000 123000 798 1596 "clearline"]
	Line[131500 126000 133000 126000 798 1596 "clearline"]
	Line[123500 119500 140500 119500 798 1596 "clearline"]
	Line[138000 123000 139000 124000 798 1596 "clearline"]
	Line[139000 124000 142500 124000 798 1596 "clearline"]
	Line[205500 145500 219500 159500 798 1596 "clearline"]
	Line[219500 159500 239500 159500 798 1596 "clearline"]
	Line[115000 123500 115000 93500 798 1596 ""]
	Line[115000 93500 156000 52500 798 1596 ""]
	Polygon("clearpoly")
	(
		[170000 72500] [222000 72500] [222000 165500] [170000 165500] 
	)
	Polygon("clearpoly")
	(
		[203500 23500] [272500 23500] [272500 149500] [203500 149500] 
	)
	Polygon("clearpoly")
	(
		[146000 190500] [116000 190500] [116000 158000] [146000 158000] 
	)
	Polygon("clearpoly")
	(
		[143000 142500] [272500 142500] [272500 227500] [143000 227500] 
	)
	Polygon("clearpoly")
	(
		[164000 73500] [208000 73500] [208000 39000] [164000 39000] 
	)
)
Layer(4 "component")
(
	Line[104000 181000 103500 181500 2499 1998 "clearline"]
	Line[79000 120000 71500 112500 1397 1596 "clearline,rubberend"]
	Line[71500 112500 71500 106500 1397 1596 "clearline"]
	Line[71500 106500 59000 94000 1397 1596 "clearline"]
	Line[127500 123000 127500 121047 1397 1596 "clearline"]
	Line[127500 121047 101953 95500 1397 1596 "clearline"]
	Line[101953 95500 78000 95500 1397 1596 "clearline"]
	Line[78000 95500 73000 90500 1397 1596 "clearline"]
	Line[131500 126000 130500 127000 1397 1596 "clearline"]
	Line[130500 127000 60000 127000 1397 1596 "clearline"]
	Line[60000 127000 40000 107000 1397 1596 "clearline"]
	Line[104000 181000 124100 181000 1397 1596 "clearline"]
	Line[79000 120000 122000 120000 798 1596 "clearline"]
	Line[122000 120000 122500 120500 798 1596 "clearline"]
	Line[263100 64400 257000 64400 798 1596 "clearline"]
	Line[263100 59600 263000 59500 798 1596 "clearline"]
	Line[263000 59500 257000 59500 798 1596 "clearline"]
	Line[256100 59600 251000 54500 798 1596 "clearline"]
	Line[251000 54500 249000 54500 798 1596 "clearline"]
	Line[250000 69500 255000 64500 798 1596 "clearline"]
	Line[255000 64500 256500 64500 798 1596 "clearline"]
	Line[211400 59600 211500 59500 798 1596 "clearline"]
	Line[211500 59500 216500 59500 798 1596 "clearline"]
	Line[216500 59500 221500 54500 798 1596 "clearline"]
	Line[221500 54500 224000 54500 798 1596 "clearline"]
	Line[225100 78600 225500 78200 798 1596 "clearline"]
	Line[225500 78200 225500 69500 798 1596 "clearline"]
	Line[225500 69500 223000 69500 798 1596 "clearline"]
	Line[223000 69500 218000 64500 798 1596 "clearline"]
	Line[218000 64500 210500 64500 798 1596 "clearline"]
	Line[245600 77100 246000 76700 798 1596 "clearline"]
	Line[246000 76700 246000 69500 798 1596 "clearline"]
	Line[202900 37600 203800 38500 798 1596 "clearline"]
	Line[203800 38500 207100 38500 798 1596 "clearline"]
	Line[207100 38500 207000 38400 798 1596 "clearline"]
	Line[207000 38400 207000 33500 798 1596 "clearline"]
	Line[207000 33500 207500 34000 798 1596 "clearline"]
	Line[207500 34000 207500 44000 798 1596 "clearline"]
	Line[211900 31600 212000 31700 798 1596 "clearline"]
	Line[212000 31700 212000 39000 798 1596 "clearline"]
	Line[212000 39000 212400 39400 798 1596 "clearline"]
	Line[212400 39400 212400 44500 798 1596 "clearline"]
	Line[203600 59600 198500 59600 798 1596 "clearline"]
	Line[203600 64400 203500 64500 798 1596 "clearline"]
	Line[203500 64500 199000 64500 798 1596 "clearline"]
	Line[197600 64400 192500 69500 798 1596 "clearline"]
	Line[192500 69500 191000 69500 798 1596 "clearline"]
	Line[180100 78600 188000 70700 798 1596 "clearline"]
	Line[188000 70700 188000 69500 798 1596 "clearline"]
	Line[171600 78600 168500 75500 798 1596 "clearline"]
	Line[168500 75500 168500 70000 798 1596 "clearline"]
	Line[199400 59600 194300 54500 798 1596 "clearline"]
	Line[194300 54500 189000 54500 798 1596 "clearline"]
	Line[152100 64400 152200 64500 798 1596 "clearline"]
	Line[152200 64500 159000 64500 798 1596 "clearline"]
	Line[159000 64500 164000 69500 798 1596 "clearline"]
	Line[164000 69500 165500 69500 798 1596 "clearline"]
	Line[152100 59600 152200 59500 798 1596 "clearline"]
	Line[152200 59500 159500 59500 798 1596 "clearline"]
	Line[159500 59500 164500 54500 798 1596 "clearline"]
	Line[164500 54500 167000 54500 798 1596 "clearline"]
	Line[178000 203500 167500 215000 798 1596 "clearline"]
	Line[167500 215000 164500 215000 798 1596 "clearline"]
	Line[175100 47100 175100 54900 798 1596 "clearline"]
	Line[175100 54900 170500 59500 798 1596 "clearline"]
	Line[233100 48900 233100 54900 798 1596 "clearline"]
	Line[233100 54900 228500 59500 798 1596 "clearline"]
	Line[188100 186200 188100 187900 798 1596 "clearline"]
	Line[188100 187900 179000 197000 798 1596 "clearline"]
	Line[233100 47100 232500 46500 2499 1998 "clearline"]
	Line[232500 46500 232500 41000 2499 1998 "clearline"]
	Line[232500 46500 232500 40000 2499 1998 "clearline"]
	Line[183900 197100 185500 198700 798 1596 "clearline"]
	Line[185500 198700 185000 204000 798 1596 "clearline"]
	Line[212400 45400 212800 45000 798 1596 "clearline"]
	Line[212800 45000 216500 45000 798 1596 "clearline"]
	Line[243500 54500 244000 54000 798 1596 "clearline"]
	Line[244000 54000 244000 50500 798 1596 "clearline"]
	Line[209600 59600 210000 59200 798 1596 "clearline"]
	Line[210000 59200 210000 55500 798 1596 "clearline"]
	Line[140000 159000 136500 162500 2499 1998 "clearline"]
	Line[137500 161500 136500 163000 2499 1998 "clearline"]
	Line[140000 159000 140500 159500 2499 1998 "clearline"]
	Line[140500 159500 140500 166000 2499 1998 "clearline"]
	Line[140500 166000 139500 167000 2499 1998 "clearline"]
	Line[139500 167000 136500 167000 2499 1998 "clearline"]
	Line[136500 167000 136500 164000 2499 1998 "clearline"]
	Line[164900 236900 165800 236000 2499 1998 "clearline"]
	Line[165800 236000 178500 236000 2499 1998 "clearline"]
	Line[157100 236900 157000 237000 2499 1998 "clearline"]
	Line[157000 237000 145000 237000 2499 1998 "clearline"]
	Line[207600 43600 207000 43000 798 1596 "clearline"]
	Line[207000 43000 179000 43000 798 1596 "clearline"]
	Line[179000 43000 177500 44500 798 1596 "clearline"]
	Line[177500 44500 177500 58500 798 1596 "clearline"]
	Line[177500 58500 183500 64500 798 1596 "clearline"]
	Line[183500 64500 186000 64500 798 1596 "clearline"]
	Line[207100 31600 210200 28500 798 1596 "clearline"]
	Line[210200 28500 227500 28500 798 1596 "clearline"]
	Line[227500 28500 237000 38000 798 1596 "clearline"]
	Line[237000 38000 237000 43500 798 1596 "clearline"]
	Line[237000 43500 235500 45000 798 1596 "clearline"]
	Line[235500 45000 235500 56500 798 1596 "clearline"]
	Line[235500 56500 243500 64500 798 1596 "clearline"]
	Line[193500 38500 198000 38500 798 1596 "clearline"]
	Line[175100 47100 173000 45000 798 1596 "clearline"]
	Line[173000 45000 170500 45000 798 1596 "clearline"]
	Line[185000 204500 188000 201500 798 1596 "clearline"]
	Line[188000 201500 189600 201500 798 1596 "clearline"]
	Line[131100 161600 131000 161700 798 1596 "clearline"]
	Line[131000 161700 131000 167000 798 1596 "clearline"]
	Line[131100 161600 130700 162000 798 1596 "clearline"]
	Line[130700 162000 127000 162000 798 1596 "clearline"]
	Line[131100 167600 131000 167500 798 1596 "clearline"]
	Line[131000 167500 127000 167500 798 1596 "clearline"]
	Line[140100 171400 141100 172400 798 1596 "clearline"]
	Line[141100 172400 141100 175900 798 1596 "clearline"]
	Line[140100 171400 141000 172300 1397 1596 "clearline"]
	Line[141000 172300 141000 176000 1397 1596 "clearline"]
	Line[141000 176000 146500 176000 1397 1596 "clearline"]
	Line[151400 174600 152300 175500 1397 1596 "clearline"]
	Line[152300 175500 156500 175500 1397 1596 "clearline"]
	Line[133100 181000 129000 181000 1397 1596 "clearline"]
	Line[161400 174600 162300 175500 1397 1596 "clearline"]
	Line[162300 175500 166000 175500 1397 1596 "clearline"]
	Line[161400 168600 162300 169500 1397 1596 "clearline"]
	Line[162300 169500 165500 169500 1397 1596 "clearline"]
	Line[192000 54500 194500 52000 798 1596 "clearline"]
	Line[194500 52000 194500 49500 798 1596 "clearline"]
	Line[195000 34000 176000 34000 798 1596 "clearline"]
	Line[176000 34000 165000 45000 798 1596 "clearline"]
	Line[165000 45000 165000 54500 798 1596 "clearline"]
	Line[222100 182600 221200 183500 798 1596 "clearline"]
	Line[221200 183500 217500 183500 798 1596 "clearline"]
	Line[156500 168500 156500 165000 1399 1598 "clearline"]
	Line[203500 182800 203700 183000 798 1596 "clearline"]
	Line[203700 183000 212500 183000 798 1596 "clearline"]
	Line[168500 181000 170000 179500 798 1596 "clearline"]
	Line[170000 179500 175000 179500 798 1596 "clearline"]
	Line[210100 159600 212700 159000 798 1596 "clearline"]
	Line[210700 159000 225000 159000 798 1596 "clearline"]
	Line[201800 161800 204100 159500 798 1596 "clearline"]
	Line[204100 159500 210500 159500 798 1596 "clearline"]
	Line[198600 206600 198200 207000 798 1596 "clearline"]
	Line[198200 207000 194500 207000 798 1596 "clearline"]
	Line[194400 206600 194500 207000 798 1596 "clearline"]
	Line[194400 200600 195300 201500 798 1596 "clearline"]
	Line[195300 201500 198600 201500 798 1596 "clearline"]
	Line[203400 206600 203500 206500 798 1596 "clearline"]
	Line[203500 206500 203500 201000 798 1596 "clearline"]
	Line[156100 180600 156500 180200 1397 1596 "clearline"]
	Line[156500 180200 156500 175500 1397 1596 "clearline"]
	Line[156500 175500 152000 175500 1397 1596 "clearline"]
	Line[180800 171100 171600 171100 1099 1396 "clearline"]
	Line[171600 171100 171000 170500 1099 1396 "clearline"]
	Line[180800 173100 172900 173100 1099 1396 "clearline"]
	Line[172900 173100 171500 174500 1099 1396 "clearline"]
	Line[205200 173100 208600 173100 798 1596 "clearline"]
	Line[208600 173100 210000 174500 798 1596 "clearline"]
	Line[210000 174500 222500 174500 798 1596 "clearline"]
	Line[222500 174500 228500 168500 798 1596 "clearline"]
	Line[180800 174900 180900 175000 798 1596 "clearline"]
	Line[180900 175000 188000 175000 798 1596 "clearline"]
	Line[203500 174900 197400 174900 798 1596 "clearline"]
	Line[197400 174900 197000 174500 798 1596 "clearline"]
	Line[197900 184500 197900 181400 798 1596 "clearline"]
	Line[197900 181400 197500 181000 798 1596 "clearline"]
	Line[182500 180800 187700 180800 798 1596 "clearline"]
	Line[187700 180800 188500 180000 798 1596 "clearline"]
	Line[182500 182800 184800 180500 798 1596 "clearline"]
	Line[184800 180500 188000 180500 798 1596 "clearline"]
	Line[184200 184500 184200 183800 798 1596 "clearline"]
	Line[184200 183800 186500 181500 798 1596 "clearline"]
	Line[201800 161800 201800 164700 798 1596 "clearline"]
	Line[201800 164700 200000 166500 798 1596 "clearline"]
	Line[193900 186200 193900 199900 798 1596 "clearline"]
	Line[193900 199900 194500 200500 798 1596 "clearline"]
	Line[201800 186200 203600 188000 798 1596 "clearline"]
	Line[203600 188000 212500 188000 798 1596 "clearline"]
	Line[208000 196500 207500 196000 798 1596 "clearline"]
	Line[207500 196000 204000 196000 798 1596 "clearline"]
	Line[172100 186900 172100 191500 798 1596 "clearline"]
	Line[177500 177000 181000 177000 798 1596 "clearline"]
	Line[172100 186900 176000 183000 798 1596 "clearline"]
	Line[195900 186200 195900 192900 798 1596 "clearline"]
	Line[195900 192900 198500 195500 798 1596 "clearline"]
	Line[198600 196400 202700 200500 798 1596 "clearline"]
	Line[202700 200500 203000 200500 798 1596 "clearline"]
	Line[133100 175900 131500 174300 798 1596 "clearline"]
	Line[131500 174300 131500 169500 798 1596 "clearline"]
	Line[133100 178500 134000 177600 1399 1598 "clearline"]
	Line[134000 177600 134000 175500 1399 1598 "clearline"]
	Line[135100 178500 141000 178500 1399 1598 "clearline"]
	Line[141000 178500 141000 180500 1399 1598 "clearline"]
	Line[133100 175900 132200 175000 1399 1598 "clearline"]
	Line[132200 175000 128500 176000 1399 1598 "clearline"]
	Line[156100 185400 156500 185800 1399 1598 "clearline"]
	Line[156500 185800 156500 190000 1399 1598 "clearline"]
	Line[156600 168600 156500 168500 1399 1598 "clearline"]
	Line[167100 162600 165700 164000 1399 1598 "clearline"]
	Line[165700 164000 156500 164000 1399 1598 "clearline"]
	Line[183400 155900 186200 158700 798 1596 "clearline"]
	Line[186200 158700 186200 162650 798 1596 "clearline"]
	Line[178600 155900 184500 161800 798 1596 "clearline"]
	Line[184500 161800 184500 162000 798 1596 "clearline"]
	Line[195000 142200 195000 139000 798 1596 "clearline"]
	Line[194100 143100 195000 142200 798 1596 "clearline"]
	Line[171400 153100 181500 163200 798 1596 "clearline"]
	Line[181500 163200 181500 165000 798 1596 "clearline"]
	Line[169600 157900 171155 157900 798 1596 "clearline"]
	Line[171155 157900 180708 167453 798 1596 "clearline"]
	Line[175000 179500 177500 177000 798 1596 "clearline"]
	Line[176000 183000 181500 183000 798 1596 "clearline"]
	Line[217400 188600 217400 195500 798 1596 "clearline"]
	Line[226900 184400 227800 183500 798 1596 "clearline"]
	Line[227800 183500 232000 183500 798 1596 "clearline"]
	Line[217400 194600 218500 193500 798 1596 "clearline"]
	Line[218500 193500 223500 193500 798 1596 "clearline"]
	Line[197900 186200 197900 189400 798 1596 "clearline"]
	Line[197900 189400 203500 195000 798 1596 "clearline"]
	Line[190100 186200 190000 186300 798 1596 "clearline"]
	Line[190000 186300 190000 191500 798 1596 "clearline"]
	Line[189600 196400 189600 207500 798 1596 "clearline"]
	Line[183400 213100 184500 214200 798 1596 "clearline"]
	Line[184500 214200 184500 219500 798 1596 "clearline"]
	Line[189600 208400 189200 208000 798 1596 "clearline"]
	Line[189200 208000 185000 204500 798 1596 "clearline"]
	Line[179100 197100 179000 197200 798 1596 "clearline"]
	Line[179000 197200 178000 203500 798 1596 "clearline"]
	Line[179900 47100 179900 53400 798 1596 "clearline"]
	Line[179900 53400 186000 59500 798 1596 "clearline"]
	Line[237900 48900 237900 53400 798 1596 "clearline"]
	Line[237900 53400 244000 59500 798 1596 "clearline"]
	Line[237900 47100 241500 43500 2499 1998 "clearline"]
	Line[241500 43500 241500 42500 2499 1998 "clearline"]
	Line[179900 47100 182800 50000 798 1596 "clearline"]
	Line[182800 50000 187000 50000 798 1596 "clearline"]
	Line[203500 165200 203700 165000 798 1596 "clearline"]
	Line[203700 165000 211000 165000 798 1596 "clearline"]
	Line[199800 186200 199800 186800 798 1596 "clearline"]
	Line[199800 186800 203000 190000 798 1596 "clearline"]
	Line[203000 190000 206000 190000 798 1596 "clearline"]
	Line[206000 190000 211000 195000 798 1596 "clearline"]
	Line[211000 195000 212500 195000 798 1596 "clearline"]
	Line[171900 164400 176500 169000 798 1596 "clearline"]
	Line[176500 169000 181500 169000 798 1596 "clearline"]
	Line[178100 208400 179000 208500 798 1596 "clearline"]
	Line[178000 208500 179000 214500 798 1596 "clearline"]
	Line[186200 186200 186200 187300 798 1596 "clearline"]
	Line[180500 187500 181500 188500 798 1596 "clearline"]
	Line[181500 188500 185000 188500 798 1596 "clearline"]
	Line[193900 163500 194000 163600 798 1596 "clearline"]
	Line[194500 155500 194000 162500 798 1596 "clearline"]
	Line[217000 165000 216500 164500 798 1596 "clearline"]
	Line[216500 164500 211000 164500 798 1596 "clearline"]
	Line[212600 196400 212500 196500 798 1596 "clearline"]
	Line[212500 196500 212500 201500 798 1596 "clearline"]
	Line[174000 213500 178000 213500 798 1596 "clearline"]
	Line[180500 187500 177000 191000 798 1596 "clearline"]
	Line[177000 191000 177000 191500 798 1596 "clearline"]
	Line[194100 147900 195000 148800 798 1596 "clearline"]
	Line[195000 148800 195500 155500 798 1596 "clearline"]
	Line[188100 161800 188000 161700 798 1596 "clearline"]
	Line[188000 161700 188000 156000 798 1596 "clearline"]
	Line[190100 161800 190100 157499 798 1596 "clearline"]
	Line[190100 157499 191000 156599 798 1596 "clearline"]
	Line[183500 93000 174000 83500 798 1596 "clearline"]
	Line[192100 161800 192100 157617 798 1596 "clearline"]
	Line[192100 157617 192500 157217 798 1596 "clearline"]
	Line[191000 156599 191000 152000 798 1596 "clearline"]
	Line[191000 152000 183500 144500 798 1596 "clearline"]
	Line[183500 144500 183500 93000 798 1596 "clearline"]
	Line[192500 157217 192500 151380 798 1596 "clearline"]
	Line[192500 151380 184999 143879 798 1596 "clearline"]
	Line[184999 143879 184999 87499 798 1596 "clearline"]
	Line[184999 87499 181000 83500 798 1596 "clearline"]
	Line[195900 161800 195900 159600 798 1596 "clearline"]
	Line[195900 159600 214500 141000 798 1596 "clearline"]
	Line[214500 141000 214500 100000 798 1596 "clearline"]
	Line[214500 100000 225500 89000 798 1596 "clearline"]
	Line[225500 89000 225500 83500 798 1596 "clearline"]
	Line[197900 161800 197900 159720 798 1596 "clearline"]
	Line[197900 159720 216000 141620 798 1596 "clearline"]
	Line[216000 141620 216000 101500 798 1596 "clearline"]
	Line[216000 101500 235000 82500 798 1596 "clearline"]
	Line[235000 82500 245500 82500 798 1596 "clearline"]
	Line[149000 67500 154000 67500 798 1596 "clearline"]
	Line[154000 67500 168000 81500 798 1596 "clearline"]
	Line[168000 81500 168000 124500 798 1596 "clearline"]
	Line[208500 183000 208500 178500 798 1596 "clearline"]
	Line[168000 124500 176500 135500 798 1596 "clearline"]
	Line[239500 159500 233000 159500 798 1596 "clearline"]
	Line[233000 159200 233500 158700 798 1596 "clearline"]
	Line[230000 164500 230000 149500 798 1596 "clearline"]
	Line[205200 167200 213200 167200 798 1596 "clearline"]
	Line[213200 167200 215000 169000 798 1596 "clearline"]
	Line[205200 171100 221900 171100 798 1596 "clearline"]
	Line[221900 171100 226000 167000 798 1596 "clearline"]
	Line[226000 167000 226000 165552 798 1596 "clearline"]
	Line[226000 165552 226552 165000 798 1596 "clearline"]
	Line[226552 165000 226552 164948 798 1596 "clearline"]
	Line[226552 164948 227000 164500 798 1596 "clearline"]
	Line[227000 164500 230000 164500 798 1596 "clearline"]
	Line[228500 162000 228500 150000 798 1596 "clearline"]
	Line[215000 169000 220380 169000 798 1596 "clearline"]
	Line[220380 169000 226380 163000 798 1596 "clearline"]
	Line[226380 163000 227500 163000 798 1596 "clearline"]
	Line[227500 163000 228500 162000 798 1596 "clearline"]
	Line[188500 139500 192500 135500 798 1596 "clearline"]
	Line[192500 135500 211000 135500 798 1596 "clearline"]
	Line[211000 135500 212000 137000 798 1596 "clearline"]
	Line[232000 150000 230000 150000 798 1596 "clearline"]
	Line[228500 150500 228500 141000 798 1596 "clearline"]
	Line[159000 135500 158000 134500 798 1596 "clearline"]
	Line[158000 134500 158000 131500 798 1596 "clearline"]
	Line[139000 75000 158000 94000 798 1596 "clearline"]
	Line[158000 94000 158000 126000 798 1596 "clearline"]
	Line[159500 136500 159500 154000 798 1596 "clearline"]
	Line[186200 187300 185000 188500 798 1596 "clearline"]
	Line[110000 161500 110000 175000 3999 1996 ""]
	Line[110000 175000 128500 175000 3999 1996 ""]
	Line[128500 175000 130500 173000 3999 1996 ""]
	Line[130500 173000 130500 161000 3999 1996 ""]
	Line[130500 161000 110000 161000 3999 1996 ""]
	Line[110000 161000 110000 162000 3999 1996 ""]
	Line[110000 162000 113500 165500 3999 1996 ""]
	Line[113500 165500 127000 165500 3999 1996 ""]
	Line[127000 165500 127000 172500 3999 1996 ""]
	Line[127000 172500 112000 172500 3999 1996 ""]
	Line[112000 172500 111500 172000 3999 1996 ""]
	Line[111500 172000 111500 168500 3999 1996 ""]
	Line[111500 168500 112000 168000 3999 1996 ""]
	Line[112000 168000 122500 168000 3999 1996 ""]
	Line[122500 168000 123500 169000 3999 1996 ""]
	Line[123500 169000 119500 169000 3999 1996 ""]
	Line[119500 169000 117500 171000 3999 1996 ""]
	Line[117500 171000 120500 171000 3999 1996 ""]
	Line[120500 171000 127500 164000 3999 1996 ""]
	Line[127500 164000 114500 164000 3999 1996 ""]
	Line[114500 164000 114000 164500 3999 1996 ""]
	Line[114000 164500 114000 163500 3999 1996 ""]
	Line[114000 163500 110000 159500 3999 1996 ""]
	Line[110000 159500 130000 159500 3999 1996 ""]
	Line[130000 159500 130000 174500 3999 1996 ""]
	Line[130000 174500 131000 175500 3999 1996 ""]
	Line[131000 175500 131500 175500 3999 1996 ""]
	Line[131500 175500 132000 176000 3999 1996 ""]
	Line[132000 176000 132000 173500 3999 1996 ""]
	Line[132000 173500 131000 172500 3999 1996 ""]
	Line[134500 186500 156500 186500 3999 1996 ""]
	Line[156500 186500 156500 203000 3999 1996 ""]
	Line[156500 203000 134500 203000 3999 1996 ""]
	Line[134500 203000 134500 190000 3999 1996 ""]
	Line[134500 190000 153500 190000 3999 1996 ""]
	Line[153500 190000 153500 200000 3999 1996 ""]
	Line[153500 200000 137000 200000 3999 1996 ""]
	Line[137000 200000 137000 194000 3999 1996 ""]
	Line[137000 194000 137500 193500 3999 1996 ""]
	Line[137500 193500 151000 193500 3999 1996 ""]
	Line[151000 193500 151000 196500 3999 1996 ""]
	Line[151000 196500 139500 196500 3999 1996 ""]
	Line[139500 196500 134500 191500 3999 1996 ""]
	Line[134500 191500 134500 186500 3999 1996 ""]
	Line[134500 186500 137500 186500 3999 1996 ""]
	Line[137500 186500 141500 182500 3999 1996 ""]
	Line[141500 182500 150000 182500 3999 1996 ""]
	Line[150000 182500 151000 183500 3999 1996 ""]
	Line[151000 183500 151000 184000 3999 1996 ""]
	Line[151000 184000 151500 184500 3999 1996 ""]
	Line[151500 184500 153000 184500 3999 1996 ""]
	Text[210000 4000 0 100 "COMPONENT" ""]
	Polygon("clearpoly")
	(
		[185000 166000] [201000 166000] [201000 182000] [185000 182000] 
	)
	Polygon("clearpoly")
	(
		[185000 166000] [201000 166000] [201000 182000] [185000 182000] 
	)
	Polygon("clearpoly")
	(
		[188000 167500] [194500 167500] [194500 177000] [188000 177000] 
	)
)
Layer(5 "OTHER5")
(
)
Layer(6 "OTHER6")
(
)
Layer(7 "OTHER7")
(
)
Layer(8 "OTHER8")
(
)
Layer(9 "silk")
(
	Text[210000 18500 0 100 "BACK SILK" "auto"]
)
Layer(10 "silk")
(
	Text[53000 222500 0 100 "Antenna Bias" ""]
	Text[102800 46100 1 78 "io_rx[7]" ""]
	Text[39000 1500 0 100 "GND" ""]
	Text[39500 234000 0 100 "500mA MAX" ""]
	Text[90500 221000 0 200 "+" ""]
	Text[7000 49400 1 78 "io_rx[15]" ""]
	Text[210000 9500 0 100 "SILK" ""]
	Text[80000 232000 0 150 "GND" ""]
	Text[76700 46800 1 78 "io_rx[8]" ""]
	Text[169100 31100 0 78 "io_rx[0]" ""]
	Text[132000 2500 0 100 "GND" ""]
	Text[3500 179500 0 150 "DBSRX" ""]
	Text[110500 211500 0 150 "6V Bias" ""]
	Text[3000 191500 0 150 "Rev 2.1" ""]
	Text[3500 149000 0 150 "800-2400MHz Receiver" ""]
	Text[132000 169000 0 100 "." ""]
	Text[3000 204000 0 150 "(c) 2006 Ettus Research LLC" ""]
)
NetList()
(
	Net("unnamed_net37" "(unknown)")
	(
		Connect("C183-2")
		Connect("L601-1")
		Connect("L600-2")
	)
	Net("unnamed_net36" "(unknown)")
	(
		Connect("C184-2")
		Connect("L601-2")
		Connect("U2-1")
	)
	Net("unnamed_net35" "(unknown)")
	(
		Connect("J101-1")
		Connect("C100-2")
		Connect("L100-1")
		Connect("J100-1")
	)
	Net("unnamed_net34" "(unknown)")
	(
		Connect("C86-1")
		Connect("R18-2")
		Connect("R19-1")
		Connect("U6-1")
	)
	Net("unnamed_net33" "(unknown)")
	(
		Connect("C85-1")
		Connect("R17-2")
		Connect("R20-1")
		Connect("U6-8")
	)
	Net("unnamed_net32" "(unknown)")
	(
		Connect("C86-2")
		Connect("R18-1")
		Connect("U6-4")
		Connect("R16-1")
	)
	Net("unnamed_net31" "(unknown)")
	(
		Connect("C85-2")
		Connect("R17-1")
		Connect("U6-5")
		Connect("R15-1")
	)
	Net("unnamed_net30" "(unknown)")
	(
		Connect("R14-1")
		Connect("C84-2")
	)
	Net("unnamed_net29" "(unknown)")
	(
		Connect("R194-1")
		Connect("C261-1")
		Connect("R193-2")
		Connect("C63-2")
	)
	Net("unnamed_net28" "(unknown)")
	(
		Connect("R93-1")
		Connect("C61-2")
	)
	Net("unnamed_net27" "(unknown)")
	(
		Connect("C73-1")
		Connect("R11-2")
	)
	Net("unnamed_net26" "(unknown)")
	(
		Connect("U4-6")
		Connect("L98-2")
		Connect("C96-1")
	)
	Net("unnamed_net25" "(unknown)")
	(
		Connect("U4-3")
		Connect("C99-2")
	)
	Net("unnamed_net24" "(unknown)")
	(
		Connect("L100-2")
		Connect("J3-1")
		Connect("C99-1")
	)
	Net("unnamed_net23" "(unknown)")
	(
		Connect("R40-2")
		Connect("C96-2")
		Connect("R9-1")
	)
	Net("unnamed_net22" "(unknown)")
	(
		Connect("C72-1")
		Connect("R9-2")
	)
	Net("unnamed_net21" "(unknown)")
	(
		Connect("R19-2")
		Connect("U3-36")
	)
	Net("unnamed_net20" "(unknown)")
	(
		Connect("R20-2")
		Connect("U3-37")
	)
	Net("unnamed_net19" "(unknown)")
	(
		Connect("R22-1")
		Connect("R21-1")
		Connect("C87-2")
		Connect("U3-7")
	)
	Net("unnamed_net18" "(unknown)")
	(
		Connect("C73-2")
		Connect("U3-4")
	)
	Net("unnamed_net17" "(unknown)")
	(
		Connect("C72-2")
		Connect("U3-5")
	)
	Net("VccVCO" "(unknown)")
	(
		Connect("R12-1")
		Connect("C82-1")
		Connect("C80-1")
		Connect("U3-13")
	)
	Net("unnamed_net16" "(unknown)")
	(
		Connect("C71-1")
		Connect("U3-20")
	)
	Net("unnamed_net15" "(unknown)")
	(
		Connect("C70-1")
		Connect("U3-14")
	)
	Net("unnamed_net14" "(unknown)")
	(
		Connect("C69-1")
		Connect("U3-40")
	)
	Net("unnamed_net13" "(unknown)")
	(
		Connect("C69-2")
		Connect("U3-39")
	)
	Net("unnamed_net12" "(unknown)")
	(
		Connect("C68-1")
		Connect("U3-1")
	)
	Net("unnamed_net11" "(unknown)")
	(
		Connect("C68-2")
		Connect("U3-2")
	)
	Net("unnamed_net10" "(unknown)")
	(
		Connect("C63-1")
		Connect("C61-1")
		Connect("U3-21")
	)
	Net("unnamed_net9" "(unknown)")
	(
		Connect("C83-2")
		Connect("R14-2")
		Connect("R13-1")
		Connect("U3-17")
	)
	Net("unnamed_net8" "(unknown)")
	(
		Connect("R13-2")
		Connect("C59-1")
		Connect("U3-16")
	)
	Net("unnamed_net7" "(unknown)")
	(
		Connect("Q1-3")
		Connect("U3-26")
	)
	Net("unnamed_net6" "(unknown)")
	(
		Connect("U3-34")
		Connect("R68-2")
	)
	Net("unnamed_net5" "(unknown)")
	(
		Connect("U3-33")
		Connect("R67-2")
	)
	Net("5V_RF" "(unknown)")
	(
		Connect("J101-2")
		Connect("C182-1")
		Connect("U2-3")
		Connect("C28-1")
		Connect("C27-1")
		Connect("U6-3")
		Connect("R12-2")
		Connect("C81-1")
		Connect("C79-2")
		Connect("U3-38")
		Connect("C78-2")
		Connect("U3-35")
		Connect("C77-2")
		Connect("U3-30")
		Connect("C76-2")
		Connect("U3-19")
		Connect("C75-2")
		Connect("U3-12")
		Connect("C74-2")
		Connect("U3-3")
		Connect("U5-3")
	)
	Net("unnamed_net4" "(unknown)")
	(
		Connect("C67-1")
		Connect("R66-2")
		Connect("R67-1")
		Connect("U5-1")
	)
	Net("unnamed_net3" "(unknown)")
	(
		Connect("C66-1")
		Connect("R65-2")
		Connect("R68-1")
		Connect("U5-8")
	)
	Net("unnamed_net2" "(unknown)")
	(
		Connect("C67-2")
		Connect("R66-1")
		Connect("U5-4")
		Connect("R71-1")
	)
	Net("unnamed_net1" "(unknown)")
	(
		Connect("C66-2")
		Connect("R65-1")
		Connect("U5-5")
		Connect("R10-1")
	)
	Net("local_vref" "(unknown)")
	(
		Connect("U6-2")
		Connect("U5-2")
		Connect("C124-1")
		Connect("C24-1")
		Connect("R7-1")
		Connect("R6-2")
	)
	Net("AUX_ADC_B1" "(unknown)")
	(
		Connect("J2-61")
	)
	Net("AUX_ADC_A1" "(unknown)")
	(
		Connect("J2-59")
	)
	Net("AUX_ADC_REF" "(unknown)")
	(
		Connect("J2-57")
	)
	Net("AUX_DAC_C" "(unknown)")
	(
		Connect("J2-55")
	)
	Net("AUX_DAC_B" "(unknown)")
	(
		Connect("J2-53")
	)
	Net("AUX_DAC_A" "(unknown)")
	(
		Connect("R21-2")
		Connect("J2-51")
	)
	Net("AUX_DAC_D" "(unknown)")
	(
		Connect("J2-49")
	)
	Net("SEN_RX" "(unknown)")
	(
		Connect("J2-35")
	)
	Net("VINP_A" "(unknown)")
	(
		Connect("C65-1")
		Connect("R71-2")
		Connect("J2-62")
	)
	Net("VINN_A" "(unknown)")
	(
		Connect("C64-1")
		Connect("R10-2")
		Connect("J2-60")
	)
	Net("VREF" "(unknown)")
	(
		Connect("J2-56")
	)
	Net("VINN_B" "(unknown)")
	(
		Connect("C25-1")
		Connect("R15-2")
		Connect("J2-52")
	)
	Net("VINP_B" "(unknown)")
	(
		Connect("C26-1")
		Connect("R16-2")
		Connect("J2-50")
	)
	Net("AVDD" "(unknown)")
	(
		Connect("C97-1")
		Connect("L98-1")
		Connect("C98-1")
		Connect("R6-1")
		Connect("J2-45")
		Connect("J2-43")
		Connect("J2-46")
		Connect("J2-44")
	)
	Net("AGND" "(unknown)")
	(
		Connect("R93-2")
		Connect("U4-1")
		Connect("U4-2")
		Connect("U4-5")
		Connect("U4-4")
		Connect("C184-1")
		Connect("C183-1")
		Connect("C182-2")
		Connect("U2-4")
		Connect("U2-2")
		Connect("C100-1")
		Connect("J100-2")
		Connect("Q1-2")
		Connect("J3-5")
		Connect("J3-4")
		Connect("J3-3")
		Connect("J3-2")
		Connect("C28-2")
		Connect("C27-2")
		Connect("C87-1")
		Connect("U6-6")
		Connect("C26-2")
		Connect("C25-2")
		Connect("C59-2")
		Connect("C84-1")
		Connect("C83-1")
		Connect("C82-2")
		Connect("C81-2")
		Connect("C80-2")
		Connect("C75-1")
		Connect("C76-1")
		Connect("C77-1")
		Connect("C78-1")
		Connect("C79-1")
		Connect("C74-1")
		Connect("R11-1")
		Connect("R40-1")
		Connect("C97-2")
		Connect("C98-2")
		Connect("C71-2")
		Connect("C70-2")
		Connect("U3-10")
		Connect("U3-41")
		Connect("U3-25")
		Connect("U3-31")
		Connect("U3-11")
		Connect("U3-18")
		Connect("U3-9")
		Connect("U3-6")
		Connect("U5-6")
		Connect("C65-2")
		Connect("C64-2")
		Connect("C124-2")
		Connect("R7-2")
		Connect("C24-2")
		Connect("J2-63")
		Connect("J2-47")
		Connect("J2-41")
		Connect("J2-64")
		Connect("J2-58")
		Connect("J2-54")
		Connect("J2-48")
		Connect("J2-42")
	)
	Net("io_rx_00" "(unknown)")
	(
		Connect("R193-1")
		Connect("J2-36")
	)
	Net("io_rx_01" "(unknown)")
	(
		Connect("J24-13")
		Connect("J2-34")
	)
	Net("io_rx_02" "(unknown)")
	(
		Connect("J24-11")
		Connect("J2-32")
	)
	Net("io_rx_03" "(unknown)")
	(
		Connect("R22-2")
		Connect("J24-9")
		Connect("J2-30")
	)
	Net("io_rx_04" "(unknown)")
	(
		Connect("J24-7")
		Connect("J2-28")
	)
	Net("SDI" "(unknown)")
	(
		Connect("J2-33")
	)
	Net("SDO" "(unknown)")
	(
		Connect("J2-31")
	)
	Net("SCLK" "(unknown)")
	(
		Connect("J2-29")
	)
	Net("RESET" "(unknown)")
	(
		Connect("J2-27")
	)
	Net("io_rx_05" "(unknown)")
	(
		Connect("J24-5")
		Connect("J2-26")
	)
	Net("RS232_RXD" "(unknown)")
	(
		Connect("J2-25")
	)
	Net("io_rx_06" "(unknown)")
	(
		Connect("J24-3")
		Connect("J2-24")
	)
	Net("RS232_TXD" "(unknown)")
	(
		Connect("J2-23")
	)
	Net("io_rx_07" "(unknown)")
	(
		Connect("J24-1")
		Connect("J2-22")
	)
	Net("I2C_A0" "(unknown)")
	(
		Connect("J2-21")
	)
	Net("io_rx_08" "(unknown)")
	(
		Connect("J25-15")
		Connect("J2-20")
	)
	Net("I2C_A1" "(unknown)")
	(
		Connect("Q1-1")
		Connect("U1-2")
		Connect("J2-19")
	)
	Net("io_rx_09" "(unknown)")
	(
		Connect("J25-13")
		Connect("J2-18")
	)
	Net("SDA" "(unknown)")
	(
		Connect("U3-27")
		Connect("U1-5")
		Connect("J2-17")
	)
	Net("io_rx_10" "(unknown)")
	(
		Connect("J25-11")
		Connect("J2-16")
	)
	Net("SCL" "(unknown)")
	(
		Connect("U3-29")
		Connect("U1-6")
		Connect("J2-15")
	)
	Net("io_rx_11" "(unknown)")
	(
		Connect("J25-9")
		Connect("J2-14")
	)
	Net("io_rx_12" "(unknown)")
	(
		Connect("J25-7")
		Connect("J2-12")
	)
	Net("clock_p" "(unknown)")
	(
		Connect("R194-2")
		Connect("J2-11")
	)
	Net("io_rx_13" "(unknown)")
	(
		Connect("J25-5")
		Connect("J2-10")
	)
	Net("io_rx_14" "(unknown)")
	(
		Connect("J25-3")
		Connect("J2-8")
	)
	Net("DVDD" "(unknown)")
	(
		Connect("U1-8")
		Connect("U1-3")
		Connect("U1-1")
		Connect("J2-9")
		Connect("J2-7")
	)
	Net("io_rx_15" "(unknown)")
	(
		Connect("J25-1")
		Connect("J2-6")
	)
	Net("6V" "(unknown)")
	(
		Connect("L600-1")
		Connect("C187-2")
		Connect("J2-5")
		Connect("J2-3")
	)
	Net("DGND" "(unknown)")
	(
		Connect("C261-2")
		Connect("C187-1")
		Connect("J25-6")
		Connect("J25-4")
		Connect("J25-14")
		Connect("J25-12")
		Connect("J25-10")
		Connect("J25-16")
		Connect("J25-8")
		Connect("J25-2")
		Connect("J24-6")
		Connect("J24-4")
		Connect("J24-14")
		Connect("J24-12")
		Connect("J24-10")
		Connect("J24-16")
		Connect("J24-8")
		Connect("J24-2")
		Connect("U1-4")
		Connect("U1-7")
		Connect("J2-37")
		Connect("J2-38")
		Connect("J2-2")
		Connect("J2-1")
	)
)