summaryrefslogtreecommitdiff
path: root/prototype/mech_pcbs/rotor_vstrut_pcb/rotor_vstrut_pcb_with_mesh.kicad_pcb
blob: f229dd87ece263adb7703a18ac48e449264e53c3 (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
(kicad_pcb (version 20201002) (generator pcbnew)

  (general
    (thickness 1.6)
  )

  (paper "A4")
  (layers
    (0 "F.Cu" signal)
    (31 "B.Cu" signal)
    (32 "B.Adhes" user "B.Adhesive")
    (33 "F.Adhes" user "F.Adhesive")
    (34 "B.Paste" user)
    (35 "F.Paste" user)
    (36 "B.SilkS" user "B.Silkscreen")
    (37 "F.SilkS" user "F.Silkscreen")
    (38 "B.Mask" user)
    (39 "F.Mask" user)
    (40 "Dwgs.User" user "User.Drawings")
    (41 "Cmts.User" user "User.Comments")
    (42 "Eco1.User" user "User.Eco1")
    (43 "Eco2.User" user "User.Eco2")
    (44 "Edge.Cuts" user)
    (45 "Margin" user)
    (46 "B.CrtYd" user "B.Courtyard")
    (47 "F.CrtYd" user "F.Courtyard")
    (48 "B.Fab" user)
    (49 "F.Fab" user)
  )

  (setup
    (stackup
      (layer "F.SilkS" (type "Top Silk Screen"))
      (layer "F.Paste" (type "Top Solder Paste"))
      (layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01))
      (layer "F.Cu" (type "copper") (thickness 0.035))
      (layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
      (layer "B.Cu" (type "copper") (thickness 0.035))
      (layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
      (layer "B.Paste" (type "Bottom Solder Paste"))
      (layer "B.SilkS" (type "Bottom Silk Screen"))
      (copper_finish "None")
      (dielectric_constraints no)
    )
    (grid_origin 150 150)
    (pcbplotparams
      (layerselection 0x00010fc_ffffffff)
      (usegerberextensions false)
      (usegerberattributes true)
      (usegerberadvancedattributes true)
      (creategerberjobfile true)
      (svguseinch false)
      (svgprecision 6)
      (excludeedgelayer true)
      (linewidth 0.100000)
      (plotframeref false)
      (viasonmask false)
      (mode 1)
      (useauxorigin false)
      (hpglpennumber 1)
      (hpglpenspeed 20)
      (hpglpendiameter 15.000000)
      (psnegative false)
      (psa4output false)
      (plotreference true)
      (plotvalue true)
      (plotinvisibletext false)
      (sketchpadsonfab false)
      (subtractmaskfromsilk false)
      (outputformat 1)
      (mirror false)
      (drillshape 0)
      (scaleselection 1)
      (outputdirectory "gerber")
    )
  )


  (net 0 "")
  (net 1 "/tru_b1")
  (net 2 "/tru_b2")
  (net 3 "/tru_b3")
  (net 4 "/tru_b4")
  (net 5 "/tru_b5")
  (net 6 "/mesh_dn0r")
  (net 7 "/mesh_dn1r")
  (net 8 "Net-(J1-Pad13)")
  (net 9 "/mesh_dn1s")
  (net 10 "/mesh_dn0s")
  (net 11 "/tru_t1")
  (net 12 "/tru_t2")
  (net 13 "/tru_t3")
  (net 14 "/tru_t4")
  (net 15 "/tru_t5")
  (net 16 "/mesh_up0r")
  (net 17 "/mesh_up1r")
  (net 18 "Net-(J1-Pad3)")
  (net 19 "/mesh_up1s")
  (net 20 "/mesh_up0s")
  (net 21 "Net-(J2-Pad13)")
  (net 22 "Net-(J2-Pad12)")
  (net 23 "Net-(J2-Pad11)")
  (net 24 "Net-(J2-Pad5)")
  (net 25 "Net-(J2-Pad4)")
  (net 26 "Net-(J2-Pad3)")
  (net 27 "Net-(J2-Pad2)")
  (net 28 "Net-(J2-Pad1)")
  (net 29 "Net-(J3-Pad13)")
  (net 30 "Net-(J3-Pad12)")
  (net 31 "Net-(J3-Pad11)")
  (net 32 "Net-(J3-Pad5)")
  (net 33 "Net-(J3-Pad4)")
  (net 34 "Net-(J3-Pad3)")
  (net 35 "Net-(J3-Pad2)")
  (net 36 "Net-(J3-Pad1)")

  (module "common_footprints:8mm_plug" (layer "F.Cu") (tedit 5F85D873) (tstamp 1811a88f-07ba-47da-8eb6-fe2ae8cc9dcf)
    (at 150 182.9)
    (property "Sheet file" "/home/user/research/rotohsm/prototype/mech_pcbs/rotor_vstrut_pcb/rotor_vstrut_pcb.kicad_sch")
    (property "Sheet name" "")
    (path "/6a9bf823-0c9e-40ee-9e07-825e78b3c53a")
    (attr through_hole)
    (fp_text reference "J2" (at 0 -4.3 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d53e00b9-a9a3-451c-af42-caca6b2921e0)
    )
    (fp_text value "bottom" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ea97da29-966a-4c66-b60a-4496f088346a)
    )
    (fp_text user "${REF}" (at 0 2.5 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp dcf545ca-8595-4dba-ba1d-dd93199ac910)
    )
    (fp_line (start -4 0.8) (end 4 0.8) (layer "Dwgs.User") (width 0.12) (tstamp 77b71e98-e1d3-4377-9c69-66dd301cfc35))
    (fp_line (start 7.5 -0.8) (end -7.5 -0.8) (layer "Dwgs.User") (width 0.12) (tstamp ba31013b-fede-4c13-b7a5-6ef180de4727))
    (fp_rect (start -7.5 0) (end 7.5 -5.6) (layer "Dwgs.User") (width 0.1) (tstamp 287fbdf8-eb5c-4114-9e27-e66bbe007fc2))
    (fp_rect (start -4 0) (end 4 4) (layer "Dwgs.User") (width 0.1) (tstamp d99f720f-6645-4fe2-b12d-92ad32132b04))
    (pad "1" smd rect (at -5 -2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 28 "Net-(J2-Pad1)") (tstamp 9d6e8864-5170-4f5b-8b80-f7e6c0bf3913))
    (pad "2" smd rect (at -2.5 -2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 27 "Net-(J2-Pad2)") (tstamp 05ed54aa-e996-45f1-b030-a8a2333af149))
    (pad "3" smd rect (at 0 -2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 26 "Net-(J2-Pad3)") (tstamp 8b82654b-ca71-4098-8962-c5019ad9e3dd))
    (pad "4" smd rect (at 2.5 -2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 25 "Net-(J2-Pad4)") (tstamp 63d5f0f3-4668-4575-a0c9-50a73bf7e215))
    (pad "5" smd rect (at 5 -2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 24 "Net-(J2-Pad5)") (tstamp cd179d97-da27-44f7-b3fd-18f049c396e4))
    (pad "6" smd rect (at 5 -2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 5 "/tru_b5") (tstamp 06640685-6551-46f6-9e08-4f2dbd806bbb))
    (pad "7" smd rect (at 2.5 -2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 4 "/tru_b4") (tstamp a3bd0734-7486-44fa-a1e6-e52a3249eea5))
    (pad "8" smd rect (at 0 -2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 3 "/tru_b3") (tstamp e63ca774-5da6-460b-a959-973f053f8fce))
    (pad "9" smd rect (at -2.5 -2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 2 "/tru_b2") (tstamp 262ef8d4-3de9-44e6-8159-8c509d709aa9))
    (pad "10" smd rect (at -5 -2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 1 "/tru_b1") (tstamp c50d0d36-fef7-46d0-8350-bb2a331a38e9))
    (pad "11" smd rect (at -2.5 2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 23 "Net-(J2-Pad11)") (tstamp 7fca7333-a852-4a8e-9378-ce97d014ec5b))
    (pad "12" smd rect (at 0 2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 22 "Net-(J2-Pad12)") (tstamp be72ddd0-6a17-40f5-b859-529b7924644c))
    (pad "13" smd rect (at 2.5 2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 21 "Net-(J2-Pad13)") (tstamp d02e495f-7df7-40cf-addd-51fded56249a))
    (pad "14" smd rect (at 2.5 2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 4 "/tru_b4") (tstamp 0ff3c1ff-762a-420b-b671-71a28bb51152))
    (pad "15" smd rect (at 0 2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 3 "/tru_b3") (tstamp daadf195-1192-48e3-ae96-a58ff9a52c01))
    (pad "16" smd rect (at -2.5 2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 2 "/tru_b2") (tstamp 1f2543a9-98e5-49d4-b943-05ac20e75bf9))
  )

  (module "common_footprints:15mm_plug" (layer "F.Cu") (tedit 5F85D886) (tstamp 578b0775-c05a-42d7-9223-0db1f2d9868f)
    (at 150 173.35)
    (property "Sheet file" "/home/user/research/rotohsm/prototype/mech_pcbs/rotor_vstrut_pcb/rotor_vstrut_pcb.kicad_sch")
    (property "Sheet name" "")
    (path "/92226583-c767-4448-ada0-e9e18d9afd62")
    (attr through_hole)
    (fp_text reference "J1" (at 0.1 -4.65 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 1dadb20d-c3eb-4cd3-b5b0-4080de1960d7)
    )
    (fp_text value "base" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b31a4410-0340-4862-9356-292725dcf5bc)
    )
    (fp_line (start 7.5 -0.8) (end -7.5 -0.8) (layer "Dwgs.User") (width 0.12) (tstamp 770c3d0c-521b-4958-b67f-9a1c3ace4666))
    (fp_line (start 7.5 0.816678) (end -7.5 0.816678) (layer "Dwgs.User") (width 0.12) (tstamp b96d9415-95bf-43cf-8b6a-e7ebf17700ea))
    (fp_rect (start -7.5 3.8) (end 7.5 -3.8) (layer "Dwgs.User") (width 0.1) (tstamp 977e2893-7541-440e-8ede-8d9dc043d2b4))
    (pad "1" smd rect (at -5 -2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 20 "/mesh_up0s") (tstamp 456fb35e-b3d4-4b3f-945f-411f869bc547))
    (pad "2" smd rect (at -2.5 -2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 19 "/mesh_up1s") (tstamp c6e218a9-23c9-4767-94f0-833a734867d6))
    (pad "3" smd rect (at 0 -2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 18 "Net-(J1-Pad3)") (tstamp 71938857-65fd-4d46-9408-9590fe9bfb34))
    (pad "4" smd rect (at 2.5 -2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 17 "/mesh_up1r") (tstamp 7e3dc722-2dbd-4972-b21e-8d77e52ed6f2))
    (pad "5" smd rect (at 5 -2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 16 "/mesh_up0r") (tstamp fc52fb3d-b192-431a-8761-3f42f767b0b2))
    (pad "6" smd rect (at 5 -2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 15 "/tru_t5") (tstamp bb662fce-05de-4688-921a-d80a521547fc))
    (pad "7" smd rect (at 2.5 -2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 14 "/tru_t4") (tstamp 4998d347-7c28-437d-a93f-2235e4415e74))
    (pad "8" smd rect (at 0 -2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 13 "/tru_t3") (tstamp 7ffbd37c-fd98-4db3-ade0-1034b5b011a2))
    (pad "9" smd rect (at -2.5 -2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 12 "/tru_t2") (tstamp 7dcd90e3-adbb-4d09-b811-65dac53a0688))
    (pad "10" smd rect (at -5 -2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 11 "/tru_t1") (tstamp 35715315-137c-4344-b3ac-00daeee50a3f))
    (pad "11" smd rect (at -5 2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 10 "/mesh_dn0s") (tstamp 5d46f235-2283-4b97-a459-d02a0475e9b1))
    (pad "12" smd rect (at -2.5 2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 9 "/mesh_dn1s") (tstamp e537e1cd-f0f2-4015-a73e-1cce8b0059f0))
    (pad "13" smd rect (at 0 2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 8 "Net-(J1-Pad13)") (tstamp 14179484-85a1-4517-afb6-244cc6b42b9c))
    (pad "14" smd rect (at 2.5 2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 7 "/mesh_dn1r") (tstamp e3e5ff7b-2a28-4774-a89d-a2b42eb335f4))
    (pad "15" smd rect (at 5 2) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 6 "/mesh_dn0r") (tstamp 0202596a-9a19-44ab-b54e-fe02a2298dcb))
    (pad "16" smd rect (at 5 2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 5 "/tru_b5") (tstamp a752ae1f-c1fb-44af-8049-8c8c2387783a))
    (pad "17" smd rect (at 2.5 2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 4 "/tru_b4") (tstamp 6bd191de-4235-4327-8691-ce2afb5f28dc))
    (pad "18" smd rect (at 0 2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 3 "/tru_b3") (tstamp 8c11463f-099f-4327-ab9d-8d28c7b99769))
    (pad "19" smd rect (at -2.5 2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 2 "/tru_b2") (tstamp 9ec389d4-b100-4ed5-a966-29c85dc4a361))
    (pad "20" smd rect (at -5 2) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 1 "/tru_b1") (tstamp 5ce3edc2-2b40-4c37-8e50-d0e543dd6497))
  )

  (module "common_footprints:8mm_plug" (layer "F.Cu") (tedit 5F85D873) (tstamp bc6c26a6-39e2-4b53-8e0c-279085b5aea5)
    (at 150 21.3 180)
    (property "Sheet file" "/home/user/research/rotohsm/prototype/mech_pcbs/rotor_vstrut_pcb/rotor_vstrut_pcb.kicad_sch")
    (property "Sheet name" "")
    (path "/e4993730-1dee-4842-857c-75d225e7ee51")
    (attr through_hole)
    (fp_text reference "J3" (at -6.3 -4.7 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 925dfd9c-1208-4d43-b614-b4a9b4f4eeec)
    )
    (fp_text value "top" (at 0 1 180 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 3ced09de-30a3-4be9-9f1a-bfeae0daaddc)
    )
    (fp_text user "${REF}" (at 0 2.5 180 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 56cbac7d-7d89-45df-88d2-89227140d1e4)
    )
    (fp_line (start 7.5 -0.8) (end -7.5 -0.8) (layer "Dwgs.User") (width 0.12) (tstamp 81729f02-e231-4b86-ad6d-09283ff8196d))
    (fp_line (start -4 0.8) (end 4 0.8) (layer "Dwgs.User") (width 0.12) (tstamp bab01673-4b76-4e68-8230-2245f9075975))
    (fp_rect (start -7.5 0) (end 7.5 -5.6) (layer "Dwgs.User") (width 0.1) (tstamp 0d167154-741b-4a05-8594-63f952160dc0))
    (fp_rect (start -4 0) (end 4 4) (layer "Dwgs.User") (width 0.1) (tstamp 69c2f705-be01-4327-b99f-630c7d8d1210))
    (pad "1" smd rect (at -5 -2 180) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 36 "Net-(J3-Pad1)") (tstamp a1b963b2-af65-4825-8de5-280d36f87438))
    (pad "2" smd rect (at -2.5 -2 180) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 35 "Net-(J3-Pad2)") (tstamp 4f7bc794-acd0-4dad-8bb1-bf9a78747c00))
    (pad "3" smd rect (at 0 -2 180) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 34 "Net-(J3-Pad3)") (tstamp 20ddde48-ed21-4754-9736-c7bb25bcbc72))
    (pad "4" smd rect (at 2.5 -2 180) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 33 "Net-(J3-Pad4)") (tstamp 771f235c-6003-41a8-8250-9aa7fb205e97))
    (pad "5" smd rect (at 5 -2 180) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 32 "Net-(J3-Pad5)") (tstamp a61deacd-54d2-4c2a-aea3-a5721353b12d))
    (pad "6" smd rect (at 5 -2 180) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 11 "/tru_t1") (tstamp b81d5614-f9c5-4e27-9462-80608b5c4de1))
    (pad "7" smd rect (at 2.5 -2 180) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 12 "/tru_t2") (tstamp 16e4b078-eaa7-4fde-b093-a1e5ed7688e3))
    (pad "8" smd rect (at 0 -2 180) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 13 "/tru_t3") (tstamp 6cc3b7c4-8d41-4ac5-9cce-180f485ee4f3))
    (pad "9" smd rect (at -2.5 -2 180) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 14 "/tru_t4") (tstamp 3cdddcb6-490e-4372-b93f-311d0a8a4007))
    (pad "10" smd rect (at -5 -2 180) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 15 "/tru_t5") (tstamp 1afe3179-5483-40f6-be0d-aef14cf79e2b))
    (pad "11" smd rect (at -2.5 2 180) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 31 "Net-(J3-Pad11)") (tstamp a3f1c108-9e1a-4051-8751-b2874d27351d))
    (pad "12" smd rect (at 0 2 180) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 30 "Net-(J3-Pad12)") (tstamp bdf8f28c-a566-4199-8c79-1d245ec078b0))
    (pad "13" smd rect (at 2.5 2 180) (size 1.8 3) (layers "F.Cu" "F.Mask")
      (net 29 "Net-(J3-Pad13)") (tstamp 4f819692-7169-4818-acaf-7dce27236f46))
    (pad "14" smd rect (at 2.5 2 180) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 12 "/tru_t2") (tstamp f2d84352-a08b-4417-8748-f3ed6c50faad))
    (pad "15" smd rect (at 0 2 180) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 13 "/tru_t3") (tstamp 55d6ac65-bf3e-4809-be55-656887752b78))
    (pad "16" smd rect (at -2.5 2 180) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (net 14 "/tru_t4") (tstamp 03a48cdb-bdd5-40f1-899f-588abacc481d))
  )

  (gr_poly (pts
 (xy 160 172.5)
    (xy 140 172.5)
    (xy 140 25)
    (xy 160 25)) (layer "Eco1.User") (width 0.1) (tstamp 724fb27a-5098-4877-ae90-10c30d528453))
  (gr_line (start 146 18.5) (end 154 18.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 21d71c90-1663-47f2-805a-3a10bb7166bc))
  (gr_line (start 142.5 182.1) (end 146 182.1) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 34598794-23ad-45c5-a437-a984c0ab605a))
  (gr_line (start 154 18.5) (end 154 22.1) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 3547d435-8af2-4e43-ac75-cfb0f21102eb))
  (gr_line (start 154 185.7) (end 154 182.1) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 46859f9b-c0d1-474a-81ee-c6cb0f0e6b07))
  (gr_line (start 154 22.1) (end 157.5 22.1) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 4afe9ac1-c888-479e-9d7c-4bd9ef77e5bc))
  (gr_line (start 142.5 22.1) (end 146 22.1) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 64700040-2cea-446b-bc85-56fef465dfc5))
  (gr_line (start 146 22.1) (end 146 18.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 9d86c8d0-736f-4f12-b5ef-91d43c55d32d))
  (gr_line (start 157.5 22.1) (end 157.5 182.1) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp a09a27f2-0a64-40fc-9420-70679a00fdd7))
  (gr_line (start 142.5 182.1) (end 142.5 22.1) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp b7857ac5-fbd7-4184-9f11-5164268584b6))
  (gr_line (start 146 182.1) (end 146 185.7) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp c26f97c8-3016-4d2d-91c4-ddb9d3097177))
  (gr_line (start 146 185.7) (end 154 185.7) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp c97639af-a612-4ca5-b67b-dad9ca826124))
  (gr_line (start 154 182.1) (end 157.5 182.1) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp fce75ced-948f-43b6-8181-f62b28ee81f7))
  (gr_text "Top End" (at 150 26.5) (layer "F.SilkS") (tstamp 80ac6bc5-2e8f-42de-871c-2dd9a2b3af69)
    (effects (font (size 1.5 1.5) (thickness 0.3)))
  )
  (gr_text "This\nside\nfaces\noutside" (at 150 44) (layer "F.SilkS") (tstamp ed777d03-f811-4342-8095-4262cac0c291)
    (effects (font (size 1.5 1.5) (thickness 0.3)))
  )
  (dimension (type aligned) (layer "Dwgs.User") (tstamp 9c6a1bb5-60ff-46ca-a879-30e77db23bc5)
    (pts (xy 157.365012 173.3) (xy 157.365012 181.3))
    (height -3.284988)
    (gr_text "8.0 mm" (at 161.8 177.3 270) (layer "Dwgs.User") (tstamp 9c6a1bb5-60ff-46ca-a879-30e77db23bc5)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (format (units 2) (units_format 1) (precision 1))
    (style (thickness 0.15) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
  )

  (segment (start 145 180.1) (end 145 175.35) (width 1.2) (layer "B.Cu") (net 1) (tstamp 4ae7b818-bae2-4561-84c0-d7b4a6e0e2aa))
  (segment (start 147.5 175.35) (end 147.5 180.1) (width 1.2) (layer "B.Cu") (net 2) (tstamp 25757950-e323-4496-adef-afbb36bf9bf5))
  (segment (start 147.5 180.1) (end 147.5 184.1) (width 1.2) (layer "B.Cu") (net 2) (tstamp 8fc0ba2a-35ad-446e-82c1-ba1a3f2dcd8d))
  (segment (start 150 175.35) (end 150 175) (width 1.2) (layer "B.Cu") (net 3) (tstamp 3896094f-f341-41b1-bd92-493de9eb1922))
  (segment (start 150 180.1) (end 150 175.35) (width 1.2) (layer "B.Cu") (net 3) (tstamp 8e3f5549-b1f3-412d-93ac-9074ab43fc44))
  (segment (start 150 180.1) (end 150 184.1) (width 1.2) (layer "B.Cu") (net 3) (tstamp c417a5be-ee66-43d8-a7c3-cf02813cb449))
  (segment (start 152.5 184.1) (end 152.5 180.1) (width 1.2) (layer "B.Cu") (net 4) (tstamp 6fc9b570-aa2c-4e01-a266-8af95346bb3c))
  (segment (start 152.5 175.35) (end 152.5 180.1) (width 1.2) (layer "B.Cu") (net 4) (tstamp f8425aef-9dc3-471c-93f6-d9f59bb5837c))
  (segment (start 155 175.35) (end 155 180.1) (width 1.2) (layer "B.Cu") (net 5) (tstamp 44c391d7-0d35-46e6-94e4-9367dde0aca9))
  (segment (start 145 24.1) (end 145 171.35) (width 1.2) (layer "B.Cu") (net 11) (tstamp 9e73ea58-6be9-47f9-a377-e2a291bb84db))
  (segment (start 147.5 20.1) (end 147.5 24.1) (width 1.2) (layer "B.Cu") (net 12) (tstamp 41980f15-737f-4886-83a3-e7484f93dfd2))
  (segment (start 147.5 171.35) (end 147.5 24.1) (width 1.2) (layer "B.Cu") (net 12) (tstamp 75d0f23c-dde4-42d1-9e04-2f634eba3124))
  (segment (start 150 24.1) (end 150 171.35) (width 1.2) (layer "B.Cu") (net 13) (tstamp 0daaf576-fd6e-44a2-bfcc-2f9a922165f5))
  (segment (start 150 20.1) (end 150 24.1) (width 1.2) (layer "B.Cu") (net 13) (tstamp dd92033e-b9bb-414f-b484-42691ad5fcc8))
  (segment (start 152.5 171.35) (end 152.5 24.1) (width 1.2) (layer "B.Cu") (net 14) (tstamp 6633d749-02a7-4188-aca3-9ccd0af54fd5))
  (segment (start 152.5 20.1) (end 152.5 24.1) (width 1.2) (layer "B.Cu") (net 14) (tstamp cb30446d-82f6-471a-ac35-70af7efbf489))
  (segment (start 155 24.1) (end 155 171.35) (width 1.2) (layer "B.Cu") (net 15) (tstamp 98f58298-4fe8-4a38-8351-8c2e74b14a80))
  (segment (start 146.25 62.1) (end 146.25 64.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 00337feb-811e-49e6-a51f-5b2ca3c8ace3))
  (segment (start 152.25 98.1) (end 152.25 100.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 01129666-32fe-4ea9-8dc6-d8dd459bcd6a))
  (segment (start 146.25 28.453553) (end 146.25 30.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0143d752-5364-481d-ab36-691567bddd3f))
  (segment (start 153.646446 28.35) (end 152 28.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 01520eb4-f5e2-4dbf-96e6-bd8c799d1eb8))
  (segment (start 147.853553 149.85) (end 147.75 149.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 018a177d-715e-498f-9d73-8e55c7becdf8))
  (segment (start 145.75 154.1) (end 145.75 156.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 01e819d1-24b5-4ec4-b385-ddfa7f78c3f7))
  (segment (start 145.75 90.1) (end 145.75 92.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 021367a4-39f1-4dd8-aae6-0ab080f9b679))
  (segment (start 144.25 104.1) (end 144.25 106.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0229ff85-2e59-4852-afcb-36cfe4ff9c44))
  (segment (start 151.853553 37.85) (end 151.75 37.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 02420f6c-5075-4a38-9451-e9631baf42b1))
  (segment (start 150.146446 91.85) (end 150.25 91.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 024d34ec-4f83-4f00-bcc6-b8de57ea6aba))
  (segment (start 148.25 35.953553) (end 148.25 36.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 03227eef-6941-42fb-8b02-358afb054268))
  (segment (start 152.25 75.953553) (end 152.25 76.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0322b17a-766d-4373-abd6-a0c4915b274f))
  (segment (start 152.25 128.1) (end 152.25 130.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0348d1f5-ee9c-4cff-a0a9-9f59323dd6ea))
  (segment (start 154 162.35) (end 152.353553 162.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 03a42fec-ab46-41db-ac7c-4614f70c9495))
  (segment (start 147.853553 142.35) (end 148 142.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 03f5b643-3f39-499b-8d55-2d7fd284ca42))
  (segment (start 145.75 138.246446) (end 145.853553 138.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 040c6c5f-0fbd-42bc-bf07-e9da683a9bb1))
  (segment (start 155.646446 144.35) (end 154 144.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 042f7e11-c07a-4e5d-88c4-42e90f046fa2))
  (segment (start 148 41.85) (end 150 41.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 045bf70a-069f-4c5e-b5a2-fb18bf6cf932))
  (segment (start 150 157.85) (end 152 157.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 04802012-2a4b-47b9-aaee-fed2a1bdc40a))
  (segment (start 153.75 68.1) (end 153.75 68.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 04a59f8b-bcd2-43e1-9675-4a4dcdf56c5f))
  (segment (start 151.75 164.1) (end 151.75 166.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 04c09262-9ede-4ddf-8632-cdd1416740d1))
  (segment (start 148 155.85) (end 150 155.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 04c9f656-d682-4abe-b36c-43903087f983))
  (segment (start 147.75 154.246446) (end 147.75 154.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0516b342-49c6-4b78-aad1-7a4b0b9f263e))
  (segment (start 153.75 141.746446) (end 153.75 140.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 056d9abb-9556-4b18-a14e-e20b795b7666))
  (segment (start 149.75 112.1) (end 149.75 114.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 056f6906-6916-4dce-9abd-b77c15f11730))
  (segment (start 148.25 45.746446) (end 148.353553 45.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0579ee3c-1c31-4dfa-a516-6cb1810ea9b6))
  (segment (start 144.25 131.746446) (end 144.353553 131.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 05820e91-cd81-4675-9a03-f42f28803765))
  (segment (start 150 96.35) (end 148.353553 96.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 05862f23-0f8c-4e41-b149-675eee83247b))
  (segment (start 154.25 158.1) (end 154.25 157.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 05906dda-1ca4-4bc9-892b-720ab8dd2e31))
  (segment (start 146.25 122.1) (end 146.25 124.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 05a09972-ba14-4ec1-88d0-2d41bb033553))
  (segment (start 145.853553 162.35) (end 145.75 162.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 05c9cd8b-5369-4530-ac0b-9ec94598dec6))
  (segment (start 153.75 84.1) (end 153.75 84.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 05d0503d-e079-41a2-8282-7f1fc22af137))
  (segment (start 145.75 88.246446) (end 145.75 88.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 05e3a134-24d8-4270-ac65-46f47f151765))
  (segment (start 149.75 44.246446) (end 149.853553 44.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 05eb95a0-89a7-44ab-9475-5ecf072efab6))
  (segment (start 149.646446 92.35) (end 148 92.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 06800558-2bea-43a8-a1c3-d64d0295c981))
  (segment (start 152.353553 161.85) (end 153.646446 161.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0738d1f6-b56e-4578-ad5f-f4135fa95713))
  (segment (start 147.75 52.1) (end 147.75 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 07398ce2-a679-4c1b-b654-b34e4dda10ac))
  (segment (start 150 138.35) (end 152 138.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 076baf3f-f4ff-49fe-9db9-bb78d6df2be4))
  (segment (start 149.853553 157.85) (end 149.75 157.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 07d73eac-e516-4afb-832f-0d332f774634))
  (segment (start 145.75 166.1) (end 145.75 166.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 07e92f06-6003-4fd8-b237-be0763063e4e))
  (segment (start 155.75 90.1) (end 155.75 92.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 083ad958-7305-45e4-a230-fe8f32cb07e6))
  (segment (start 153.75 58.1) (end 153.75 56.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 08d44cb8-17cd-4dfd-a212-d01b47913392))
  (segment (start 151.75 133.746446) (end 151.75 132.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 091e24c3-cf89-4437-b7c0-9ef07b49998b))
  (segment (start 148.25 106.1) (end 148.25 108.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 091f2d0c-3fc3-47af-ae51-6f8813b4c638))
  (segment (start 146.25 56.1) (end 146.25 57.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 094d7528-2087-4950-a454-a2f15ec52e2b))
  (segment (start 150 156.35) (end 148.353553 156.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 096a6a98-33a6-4f1f-b24c-f4f565736b5a))
  (segment (start 150.25 128.1) (end 150.25 130.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 09ac9e60-e7b7-44e7-a044-70a667a56724))
  (segment (start 153.646446 93.85) (end 153.75 93.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0a18224d-3809-434e-8eb9-7468dbd4f90a))
  (segment (start 154.25 138.1) (end 154.25 140.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0a56a6ab-77fb-47b7-a9ec-7752d6607d52))
  (segment (start 151.75 122.1) (end 151.75 124.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0a7e9141-36ca-4339-a8b0-aa4c85dd9536))
  (segment (start 150.25 104.1) (end 150.25 106.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0a92b576-7ecc-4909-90ca-7e8dc5027952))
  (segment (start 152.353553 133.85) (end 154 133.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0a9391e7-abf6-4824-98f0-d261059704eb))
  (segment (start 144.25 70.1) (end 144.25 72.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0a994de8-1e10-48e8-8c8c-ddc70e0f2592))
  (segment (start 155.75 153.746446) (end 155.75 152.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0ab78ae3-4018-4abb-a00c-d7280bfdcf4a))
  (segment (start 147.75 80.1) (end 147.75 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0abd1d9f-6965-452e-aab3-2fd577d90e54))
  (segment (start 147.75 61.953553) (end 147.75 62.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0accb2b1-1f87-43a9-a303-d045b6dd9a02))
  (segment (start 152.146446 75.85) (end 152.25 75.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0ad7260e-5203-41f0-b66f-cffe990ad504))
  (segment (start 153.646446 151.85) (end 153.75 151.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0adca171-4767-47e4-bcd6-eca50ba9ad85))
  (segment (start 144.25 158.1) (end 144.25 160.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0af399ca-8900-4d55-a19b-7095d0f55a4b))
  (segment (start 145.75 90.1) (end 145.75 89.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0b059da6-64d7-40da-80b1-ecc5a3106ec9))
  (segment (start 155.75 49.746446) (end 155.75 48.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0b0a3cc2-e44a-45ad-8ccc-3b128206e3f9))
  (segment (start 152.25 46.1) (end 152.25 48.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0b277905-92d7-4a3e-aaed-6553e1509841))
  (segment (start 146.25 35.746446) (end 146.353553 35.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0b2c212f-eb6a-438f-b9cd-8d87ed17f998))
  (segment (start 154.146446 145.85) (end 154 145.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0b3784fa-2aaa-4f0a-8c66-513f3f4447c0))
  (segment (start 145.75 46.1) (end 145.75 48.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0b408577-0183-4f4b-98a4-9d348907429c))
  (segment (start 150.25 50.1) (end 150.25 52.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0b505c2a-eaee-4875-8c2a-90119eb98ec3))
  (segment (start 149.75 126.1) (end 149.75 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0bb3b5f6-3e6c-48f4-82f6-fd22f68aab17))
  (segment (start 150.25 31.953553) (end 150.146446 31.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0bcdfa0a-dd4a-40c8-9a75-16c53692ade2))
  (segment (start 151.75 130.1) (end 151.75 132.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0c571fd2-5c27-437a-9c69-07f2d69eb0f5))
  (segment (start 154.25 66.099999) (end 154.25 68.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0c7cbd91-859f-43f4-bbeb-44c2371fe7e0))
  (segment (start 144.25 90.1) (end 144.25 88.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0cf10aee-d4a8-44a9-8501-e494a4fa9b51))
  (segment (start 152.25 29.953553) (end 152.146446 29.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0d3228e0-771a-40e7-ac17-d4a6c2f55339))
  (segment (start 153.75 56.453553) (end 153.646446 56.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0d87bbb4-2c88-4c25-97d0-a90c567567bc))
  (segment (start 146.25 60.453553) (end 146.25 62.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0dab7846-617c-445a-a58a-17b86d20563c))
  (segment (start 150 135.85) (end 152 135.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0dc8bc62-cb12-409c-954d-00c9fa20db8a))
  (segment (start 146 27.85) (end 148 27.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0e131e0c-19b4-4586-ac9f-43f9999c566f))
  (segment (start 146.25 30.1) (end 146.25 32.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0e8c9134-42e0-4923-b94f-d2aa57376a81))
  (segment (start 146 40.35) (end 148 40.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0e9fa422-ab9e-4a68-b180-a18a375f9f12))
  (segment (start 154.25 108.1) (end 154.25 110.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0f07e29e-8c7a-4968-ba35-6d6126a4ae3c))
  (segment (start 146.25 42.453553) (end 146.25 44.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0f093359-9f3b-4dae-afb4-af49b082d64e))
  (segment (start 146.25 82.1) (end 146.25 84.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0f2674d6-fa14-4391-b675-5874c70276a8))
  (segment (start 154.25 46.1) (end 154.25 48.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0f83f4f6-e2fe-4ab4-b7e5-0f5b6a010143))
  (segment (start 154 87.85) (end 155.646446 87.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0f8c11fa-9125-46ad-a2cd-dc0c7bf158dd))
  (segment (start 150.146446 94.35) (end 150 94.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0fabb391-ece4-4f88-9795-4fb358fc6e75))
  (segment (start 152.146446 91.85) (end 152 91.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0fc1f589-45de-4668-9193-1555deb8d190))
  (segment (start 146 88.35) (end 148 88.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0fda5e57-4800-42cb-ae79-2a546f852d5f))
  (segment (start 154.25 76.1) (end 154.25 78.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0fdf57fa-86b5-40b5-81c0-de6e64255648))
  (segment (start 146.25 48.1) (end 146.25 50.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0fe18f46-bdee-4d3a-98c1-4d118f2e38c8))
  (segment (start 149.75 64.099999) (end 149.75 66.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 0febafd5-3375-46c0-a2e7-3e7b9b11c575))
  (segment (start 152 151.85) (end 153.646446 151.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 10043d7d-e299-47fd-9411-158d5d3de4c9))
  (segment (start 144.25 154.1) (end 144.25 156.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1026827f-8ec7-4b1d-bb1d-1b46b3b09f77))
  (segment (start 155.646446 83.85) (end 155.75 83.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 109975b2-a6c7-4d9d-9f65-13ab8f4e29e1))
  (segment (start 150.25 96.246446) (end 150.25 96.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 10ca5dc6-d8fd-45b4-a1a8-495ee2dfe5e9))
  (segment (start 147.853553 85.85) (end 148 85.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 10ce8a00-bdfe-41bb-b65c-15c013e50843))
  (segment (start 150.25 162.1) (end 150.25 164.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 10d5e00b-57c9-400b-8899-d651ea9fd630))
  (segment (start 146.25 94.453553) (end 146.25 96.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 10f34b05-99fc-4e1f-a647-96618b7d4608))
  (segment (start 148 166.35) (end 150 166.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 110b1581-496d-4573-b37f-8e99ba6cb872))
  (segment (start 148.25 116.1) (end 148.25 118.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 110d005a-ce04-4a7b-85d7-6eb0b7da953a))
  (segment (start 153.646446 39.85) (end 153.75 39.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 111312e4-a393-45a0-af39-c4f61609d65c))
  (segment (start 153.75 163.953553) (end 153.75 164.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1124b085-5808-4427-8271-476d4348e7bd))
  (segment (start 144.25 30.1) (end 144.25 32.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1194cf0f-d6cf-4253-b0e3-91257e406bfb))
  (segment (start 150.25 120.1) (end 150.25 122.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 11b5fb72-e544-4c11-a3bf-e0de3ea355a4))
  (segment (start 154 95.85) (end 153.853553 95.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 11b85cf0-59c8-4470-a168-03aa2b24b7aa))
  (segment (start 153.75 93.746446) (end 153.75 92.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 11cce21b-5779-4abd-aeba-c35fb7e17018))
  (segment (start 147.75 106.1) (end 147.75 108.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 11f11dab-8a13-4a50-ab40-67e1ff5c22a5))
  (segment (start 145.853553 89.85) (end 146 89.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1216cac8-b259-46a3-801a-7fbb2c6813fa))
  (segment (start 150.25 77.953553) (end 150.146446 77.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 12442a00-232d-46a3-bf19-2bed94c3f1af))
  (segment (start 145.75 128.1) (end 145.75 130.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 127186c4-63cb-4c52-a5e7-b37eb95f53f1))
  (segment (start 154.25 116.1) (end 154.25 118.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 127ad0e6-43b6-4a40-bd54-02a3b3477629))
  (segment (start 152 57.85) (end 150 57.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 12cdd15c-60b0-4d6b-90ae-012bc7b4bc79))
  (segment (start 149.75 99.953553) (end 149.75 100.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 12fee310-aa13-4751-b89c-f77d93ab1507))
  (segment (start 147.75 110.1) (end 147.75 112.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 130efeb9-b230-4351-9ac2-fd52fb9bf281))
  (segment (start 145.75 158.1) (end 145.75 160.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1323e238-927d-4f55-aadb-31b58b874b96))
  (segment (start 154 81.85) (end 154.146446 81.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 13400c6e-7d9a-4d1e-b1bb-00c0bcf6a6e7))
  (segment (start 153.75 32.1) (end 153.75 34.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1345e7ee-8899-4987-8d90-7c25437be4a2))
  (segment (start 146.25 86.1) (end 146.25 84.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 137756ac-fd46-4a0e-87a6-7aeae45a898f))
  (segment (start 145.75 54.1) (end 145.75 56.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 137ec936-ad07-4121-92e3-270e3a166094))
  (segment (start 144.25 146.453553) (end 144.25 148.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1386d89f-dc34-4eb5-97df-6b096da5963d))
  (segment (start 152.25 52.1) (end 152.25 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 139e940e-ec6c-4b86-90e3-5e3119bf3f36))
  (segment (start 148.25 126.1) (end 148.25 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 13a27b39-df73-4ae6-b293-9307a22cb5d3))
  (segment (start 152.25 122.1) (end 152.25 124.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 13b37647-4462-494b-89cb-2dda3a12234a))
  (segment (start 154.25 51.953553) (end 154.146446 51.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 13b816b1-e9cf-4977-925e-4489db17992b))
  (segment (start 146 147.85) (end 148 147.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 13bfe901-bbe7-4b24-8d45-eb089a12d625))
  (segment (start 154 152.35) (end 154.146446 152.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 13f0f5e7-f507-4860-aecf-e7e37510a0b5))
  (segment (start 154.25 150.1) (end 154.25 152.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 140beadd-05af-4eec-b0e1-4b15c7c4a6d2))
  (segment (start 148.146446 162.35) (end 148.25 162.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 14109236-888e-411f-a931-563443c3cd53))
  (segment (start 145.75 112.1) (end 145.75 114.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1428c4c5-2517-4df0-8477-ff168e38e0d1))
  (segment (start 146.25 70.453553) (end 146.25 72.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1443c13e-817f-4d43-b451-b44cf466242a))
  (segment (start 154.25 68.1) (end 154.25 68.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 144beedb-55a6-4d14-9cd1-06ddf39fad61))
  (segment (start 148.25 62.1) (end 148.25 64.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 14670e63-6a70-4722-b23c-eb98acde146a))
  (segment (start 145.75 162.246446) (end 145.75 162.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 148a0480-8b45-47b6-95a8-c1dbd31bdde3))
  (segment (start 148.353553 150.35) (end 148.25 150.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 14aadf89-5cee-4de4-bfe9-74c2ecb74117))
  (segment (start 154.25 162.1) (end 154.25 162.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 14f1188a-25bf-4214-99a8-e2257eda4785))
  (segment (start 144.25 92.1) (end 144.25 94.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 151af0b0-064f-465b-bdb4-7c136b5f0fbf))
  (segment (start 152.25 71.953553) (end 152.146446 71.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 15341c2c-1c7b-41b7-90e9-e2a5bae0e712))
  (segment (start 155.75 134.1) (end 155.75 136.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1557dc17-e759-4411-b853-c7270311139b))
  (segment (start 150.25 108.1) (end 150.25 110.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 157d2fa0-c14a-4883-a3e3-ab329f65e1dd))
  (segment (start 150 148.35) (end 152 148.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1581491e-8ddd-4401-82ec-1f1dfb5127b4))
  (segment (start 146.25 137.746446) (end 146.353553 137.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 15ac28c4-5cf5-4366-9636-efdc5c21c640))
  (segment (start 155.75 144.453553) (end 155.646446 144.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 15bc3afa-317a-4ef6-b647-78a19e4d6aa5))
  (segment (start 145.75 69.953553) (end 145.75 70.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 16034093-1146-4449-9639-1ecbeb59d24e))
  (segment (start 154.25 162.246446) (end 154.146446 162.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1645d55b-8750-48d1-b4f7-653c04f2debb))
  (segment (start 154.25 76.1) (end 154.25 75.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 168ebe01-2c54-4d90-86fc-804387558b2b))
  (segment (start 151.75 54.1) (end 151.75 56.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 16a45aab-9f66-42ea-9cd1-c6e3149e33ae))
  (segment (start 150.25 132.246446) (end 150.25 132.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 16a9ee79-b595-4461-b59d-eab8ead48847))
  (segment (start 148 165.85) (end 150 165.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 16b444d4-3fd7-48cc-a64f-0508321dbdf4))
  (segment (start 154.25 32.1) (end 154.25 34.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 16c6797c-9130-44c2-a41e-4975c555e3e7))
  (segment (start 148 143.85) (end 150 143.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 16d51303-4fa6-453d-a9d4-27052025e92d))
  (segment (start 153.75 120.1) (end 153.75 122.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 16d6996a-0064-4e7c-a97d-d2ec1333f1ef))
  (segment (start 150.146446 45.85) (end 150 45.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 171509a1-d924-4934-8c5e-f0bb1ea71d19))
  (segment (start 148.353553 30.35) (end 148.25 30.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1719e57e-bcdf-4f67-899b-fc811c912b9f))
  (segment (start 146.25 136.1) (end 146.25 137.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 171be9c5-04dc-4302-a385-853070235752))
  (segment (start 150 139.85) (end 152 139.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 176d77f0-4e12-47ea-ab1a-6729dbd13d13))
  (segment (start 149.75 37.746446) (end 149.75 36.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 179296f4-cfaf-4f02-b8e5-cb169fe3ff14))
  (segment (start 146 146.35) (end 148 146.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 17d027de-aa08-41ec-9363-27f87059a736))
  (segment (start 146.25 32.1) (end 146.25 34.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 17d6cfca-9c65-4754-b660-cd71945d451f))
  (segment (start 152.25 32.1) (end 152.25 34.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 17f1b5b0-ae88-4b6f-ad6e-d579f3044b2b))
  (segment (start 144.353553 26.35) (end 144.25 26.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 189b4aad-910b-409a-b4b7-84c065519c36))
  (segment (start 150 145.85) (end 152 145.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 18b14844-4503-443c-980e-5253f577ce69))
  (segment (start 153.75 112.1) (end 153.75 114.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 18b7e9b8-cc1b-42b2-bfdc-b4c46396034b))
  (segment (start 145.853553 138.35) (end 146 138.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 18bf8708-f560-4ff1-a01e-49fd7a58d543))
  (segment (start 148 46.35) (end 147.853553 46.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 18c1f980-dcb1-44ca-9fc0-a71ce77e9826))
  (segment (start 155.646446 49.85) (end 155.75 49.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 18c3a515-577c-44fb-b819-88fd36b115c1))
  (segment (start 154.25 140.1) (end 154.25 142.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 18fecdba-a84d-4128-9457-111d3d0e0a79))
  (segment (start 151.8 168.5) (end 145.55 168.5) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1921a777-499f-4106-a7a5-86b00021d6c3))
  (segment (start 152.25 43.953553) (end 152.146446 43.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 19623e30-ba48-49cb-89ce-d47780459ddb))
  (segment (start 154 94.35) (end 152.353553 94.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 199c4501-c537-4c45-9b1d-c8bd043cdf45))
  (segment (start 150.25 38.246446) (end 150.25 38.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 19ab4921-8c13-4df9-a272-81e139744055))
  (segment (start 150.25 160.1) (end 150.25 162.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1a2bc69c-ac20-43ce-b4a4-42c5b9ca935f))
  (segment (start 146.25 154.1) (end 146.25 152.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1a706e9f-8b02-4283-84a6-53e6c78d8407))
  (segment (start 149.75 44.1) (end 149.75 44.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1a75d088-5d2b-486e-ad75-d7087f8749b2))
  (segment (start 148.353553 70.35) (end 148.25 70.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1a770dfe-a651-4ccd-b600-f2cbcd2cf8f9))
  (segment (start 155.75 94.1) (end 155.75 96.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1a806128-3814-4ea2-8db4-7a5e38d98791))
  (segment (start 145.75 98.1) (end 145.75 100.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1a8660ec-3cda-4bbc-be00-80ecbc581259))
  (segment (start 146 58.35) (end 148 58.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1a9d4c0f-611f-4eac-bfe2-bb37a48ca84e))
  (segment (start 152.25 30.1) (end 152.25 32.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1abc98fd-3c4e-464b-a596-995196461c8f))
  (segment (start 155.646446 167.85) (end 155.75 167.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1ac74d5a-e593-449b-99d4-2b272d6ec282))
  (segment (start 155.75 58.1) (end 155.75 60.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1af8ae39-a093-4f40-a306-9d286a077683))
  (segment (start 152 41.85) (end 154 41.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1b016ccb-f02d-4b9f-accc-cf2421e49c7a))
  (segment (start 148.146446 128.35) (end 148.25 128.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1b326229-fbd9-4824-a544-bbaf82acc06b))
  (segment (start 151.75 39.746446) (end 151.75 38.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1b40fe2a-1b46-4ba1-9527-6eeb8ab4a1f0))
  (segment (start 148 136.35) (end 150 136.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1b7b3dd4-6a32-4ee5-bba7-0e5bffcd47ce))
  (segment (start 148 128.35) (end 148.146446 128.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1b8a8653-da18-486d-b9ae-aaef8253d10b))
  (segment (start 144.25 160.1) (end 144.25 162.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1b969375-1bb9-44be-9be8-aaa3a942bcff))
  (segment (start 152.25 138.246446) (end 152.146446 138.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1ba2190f-f3ce-4bbb-942c-ef42bd384440))
  (segment (start 145.853553 133.85) (end 145.75 133.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1ba570c2-9f42-42d4-9679-281dd772c407))
  (segment (start 144.25 112.1) (end 144.25 114.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1bf4e53b-7ea9-42ff-9db1-20f440d955ff))
  (segment (start 148 86.35) (end 150 86.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1bfda014-a573-4787-bd85-08a91fe05671))
  (segment (start 152 87.85) (end 154 87.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1c01eb37-53cf-4494-b73f-bdf2acb4ccd9))
  (segment (start 150 131.85) (end 150.146446 131.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1c4071c6-8460-4af2-9250-0c29aeb6e14e))
  (segment (start 153.75 166.1) (end 153.75 168.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1cb8a84e-816c-4dcf-9eb2-e8f09115e1bc))
  (segment (start 148.25 42.453553) (end 148.25 44.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1d454cf2-c7c5-420f-a604-40712f0bd025))
  (segment (start 145.75 74.246446) (end 145.853553 74.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1d79af8a-083c-474c-8776-c541a665bb80))
  (segment (start 147.853553 152.35) (end 147.75 152.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1d89b131-43e1-4265-9a6a-8067b8d83ac6))
  (segment (start 154.95 169.3) (end 154.95 170.55) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1dbb1595-6090-4cf0-a262-7f45c57fd257))
  (segment (start 145.75 32.1) (end 145.75 34.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1dc3455d-fd9c-448e-992e-12f9d004b41f))
  (segment (start 152.146446 43.85) (end 152 43.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1e71b05c-4d4f-4e85-a904-7711488885e1))
  (segment (start 145.75 80.1) (end 145.75 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1e99e049-bd3f-4dea-ba61-6facd3035464))
  (segment (start 147.853553 154.35) (end 147.75 154.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1ed54f48-c3b6-49b7-8f1b-9a92fab1cbe0))
  (segment (start 154.25 81.953553) (end 154.25 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1ee7bd10-2e3f-4cde-8df3-344d719ac0e2))
  (segment (start 154 81.85) (end 153.853553 81.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1f2e4458-1044-40d8-bae7-b2cb498f81a9))
  (segment (start 151.646446 98.35) (end 150 98.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1f317bc5-db47-4e64-a5cd-9a68e7f62f75))
  (segment (start 149.75 92.453553) (end 149.646446 92.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1f859de3-3844-496d-bf76-8c12658bd2c8))
  (segment (start 148.353553 97.85) (end 150 97.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1fa1d407-721d-4f61-b364-6d011a398a2c))
  (segment (start 151.75 48.1) (end 151.75 50.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1fa3e8e4-c561-43ff-a72b-4b668f41a3e7))
  (segment (start 150 34.35) (end 150.146446 34.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1fdf0ea3-11d3-4cb2-a397-030f652aa434))
  (segment (start 146 68.35) (end 144.353553 68.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1fe5fa5a-129b-4f90-b4e2-4b0bd24cfed1))
  (segment (start 155.75 102.1) (end 155.75 104.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 1fe95ba6-dbee-4864-9463-715d0c14042b))
  (segment (start 144.25 142.1) (end 144.25 144.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2008f09d-e0db-495e-b192-e4638d0db3a2))
  (segment (start 154.25 122.1) (end 154.25 124.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2039f8a1-4af1-483e-9b35-d2cd53877a60))
  (segment (start 144.25 34.1) (end 144.25 36.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 209172f1-0538-4883-8c9e-7bc1c654cb2c))
  (segment (start 146.25 165.746446) (end 146.353553 165.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 20a72944-5745-4d89-be50-3facf4cce34c))
  (segment (start 147.75 95.953553) (end 147.75 96.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 20ae0c28-b02e-4456-a1c9-44c0fc30c625))
  (segment (start 155.75 158.1) (end 155.75 156.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 20d22bba-586c-4f60-91c5-5142ad857d83))
  (segment (start 147.853553 153.85) (end 148 153.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 20d29438-d5b7-4208-a5dd-ba77c9a9e4c8))
  (segment (start 145.75 138.1) (end 145.75 138.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 20e43438-c7b5-4036-83c3-c67aa41e39ea))
  (segment (start 150.25 32.1) (end 150.25 31.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 215e9202-f81f-4319-aea2-6a2bb642997c))
  (segment (start 153.75 34.1) (end 153.75 36.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 21a665ac-691e-4b71-bf22-f36c1ed83ae1))
  (segment (start 144.353553 75.85) (end 146 75.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2265e20b-6b41-4b72-ba46-833ba302fde8))
  (segment (start 146.353553 70.35) (end 146.25 70.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 22ae25cc-c9de-48fe-beb3-2b3119d470dc))
  (segment (start 152 88.35) (end 154 88.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 22bf673c-42ff-49f6-b08a-f557b9bbfd3f))
  (segment (start 146.25 87.746446) (end 146.353553 87.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 23cb60cc-3b29-41a9-9ebc-639d360b294c))
  (segment (start 148.25 48.1) (end 148.25 47.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 23dc508e-be0f-45f6-8c52-edf8cb89d4eb))
  (segment (start 148 134.35) (end 146.353553 134.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 23dcbf4d-6171-404d-8ceb-0ae7456a04bd))
  (segment (start 151.75 64.099999) (end 151.75 66.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2413de01-9b6e-468d-979a-0c56a02506e1))
  (segment (start 148 89.85) (end 150 89.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 244b4d21-8d6e-4759-aff3-007d46b95416))
  (segment (start 147.75 62.1) (end 147.75 64.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 247bc57d-e6b8-446f-81bb-7fa9c3f66ac7))
  (segment (start 148 84.35) (end 150 84.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 24b594ae-e5a4-43ee-800d-edd46ebe9ebf))
  (segment (start 148.353553 83.85) (end 149.646446 83.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 25299bc1-2a1d-4bce-a4e8-174bdd74ddcb))
  (segment (start 146.25 90.453553) (end 146.25 92.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2532ea72-77ff-4faa-abf7-0bcbc2fca8a8))
  (segment (start 151.75 102.1) (end 151.75 104.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 256ea455-10fd-45f3-9d63-f91ea0563910))
  (segment (start 146.353553 129.85) (end 148 129.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 25d59bbd-feea-4d0a-983d-b581c3d7c2c9))
  (segment (start 147.853553 95.85) (end 147.75 95.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 25d90663-0529-429a-a37c-9373cca534ef))
  (segment (start 152.25 62.1) (end 152.25 64.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 25f051d9-dbbb-4fc3-b7c6-580c9bbf28d3))
  (segment (start 145.75 142.1) (end 145.75 144.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 263f5a5f-4fcf-4c40-ac4e-d3e3c196f4d3))
  (segment (start 148 162.35) (end 148.146446 162.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2641229c-bf77-4cac-a882-06e254c634cb))
  (segment (start 148.146446 47.85) (end 148 47.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 26d8cf4c-c5c2-45cb-afa3-547c93631ea1))
  (segment (start 150 150.35) (end 152 150.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 26f90b99-d0a1-44e9-aff1-fcf5d66e46f8))
  (segment (start 145.75 141.953553) (end 145.75 142.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 274c0c05-63fe-4a65-ac9f-4d144763c29c))
  (segment (start 154.25 34.1) (end 154.25 36.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 275c0f19-dfb2-4e75-b5e6-9b6d120d1205))
  (segment (start 154.25 52.1) (end 154.25 51.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 278a8f23-88d4-4e43-8654-9e0e3bd87e74))
  (segment (start 148 129.85) (end 149.646446 129.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 27b28cde-0975-4a4d-81c4-6260333f5bbf))
  (segment (start 148 91.85) (end 147.853553 91.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 27b30814-e68d-4c31-b246-21d18111a54f))
  (segment (start 155.75 143.746446) (end 155.75 142.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2871758d-e76f-4d1c-899b-9ccfdfb8302c))
  (segment (start 148.25 102.1) (end 148.25 104.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 28c39453-eaab-4bce-b713-7c319c56aa68))
  (segment (start 151.75 137.746446) (end 151.75 136.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 28cd50fe-2548-4962-891d-162e5ea81816))
  (segment (start 147.646446 161.85) (end 147.75 161.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 28e2d15f-26e0-4561-9822-15087fb91de9))
  (segment (start 154.25 30.1) (end 154.25 32.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 28e3201d-d89b-49df-b937-201a9dd1617b))
  (segment (start 153.75 82.1) (end 153.75 84.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 28ee2024-52a7-4b75-a2ef-09955d560940))
  (segment (start 151.75 60.1) (end 151.75 58.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 29315e00-7661-4f5b-9807-501c5ff3f139))
  (segment (start 152 75.85) (end 152.146446 75.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 293604a6-ed1a-4a69-82e9-dfec69a22417))
  (segment (start 147.853553 92.35) (end 148 92.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 296918c9-8dc8-435c-bd32-1f72cd13ad16))
  (segment (start 153.75 52.1) (end 153.75 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 296f089b-07b7-4515-a850-e4da1d306d6b))
  (segment (start 148 138.35) (end 150 138.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 29b05d47-6dc3-4484-b5e4-781d2e718a42))
  (segment (start 148.25 61.953553) (end 148.146446 61.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2a1e8b66-ee9b-412c-a6fe-343c4aced2cf))
  (segment (start 153.75 126.1) (end 153.75 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2a92a74e-9c5c-4098-bdc0-a039f235b3f1))
  (segment (start 152 37.85) (end 152.146446 37.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2aab9f75-25f7-4ec5-8200-e7226991a6ec))
  (segment (start 153.646446 55.85) (end 153.75 55.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2aadfad4-6ad6-4761-b823-20616b28447b))
  (segment (start 150 39.85) (end 151.646446 39.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2ad47988-f653-420a-9e6c-a66cf0bb079f))
  (segment (start 145.75 136.1) (end 145.75 138.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2aec1618-e4ae-4988-877f-bf9ffcdd9f6f))
  (segment (start 148.25 118.1) (end 148.25 120.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2af8756b-f566-4704-9a1f-af28a49ff596))
  (segment (start 145.853553 130.35) (end 146 130.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2b2061d1-6a1f-412c-996f-27f6b83109f3))
  (segment (start 152 155.85) (end 154 155.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2b312613-d90b-4d3f-9b58-142dca2c4e26))
  (segment (start 145.853553 141.85) (end 145.75 141.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2b72d725-1dc6-4669-954c-e789530b3bdc))
  (segment (start 144.25 52.1) (end 144.25 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2ba4c6ab-a509-47f6-97c6-05df91fe9c5d))
  (segment (start 149.75 35.953553) (end 149.853553 35.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2befe946-883f-4349-9428-a5190e377c0a))
  (segment (start 148 29.85) (end 147.853553 29.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2bf9b242-3e82-487c-a84e-14da55a20f6a))
  (segment (start 151.75 162.1) (end 151.75 164.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2c081450-fd72-4e38-b81d-3b2123e48a8e))
  (segment (start 146.353553 36.35) (end 146.25 36.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2c344133-3663-4a04-ac37-d129cd2885ae))
  (segment (start 149.75 160.1) (end 149.75 162.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2c3e820c-29fd-4c2e-9cbf-4277bc251231))
  (segment (start 147.75 34.246446) (end 147.853553 34.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2c588736-5f3c-4483-8709-3e7188fdba39))
  (segment (start 150 42.35) (end 148.353553 42.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2c5f09ff-63a3-45af-b951-38241fd3e330))
  (segment (start 148 133.85) (end 150 133.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2cb1ef96-5e10-4a44-9472-06ce28a7353c))
  (segment (start 148 35.85) (end 148.146446 35.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2cc14df2-2b01-44ac-84eb-570cfad549ea))
  (segment (start 151.75 100.1) (end 151.75 102.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2cd7962c-6af7-40a2-a6b3-e82aec22084d))
  (segment (start 155.75 155.746446) (end 155.75 154.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2ce37841-b77e-4d70-bee7-36998db080c0))
  (segment (start 149.75 48.1) (end 149.75 50.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2cfeefbe-7fb6-4eb9-a617-1400a714c634))
  (segment (start 152.146446 139.85) (end 152.25 139.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2d380f65-5985-433e-9d9a-24424a142be0))
  (segment (start 144.25 74.1) (end 144.25 75.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2daeb132-60a0-4c0f-ad41-bec7ae9e560c))
  (segment (start 150 43.85) (end 152 43.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2dbb4a6e-8a50-48ed-be96-bbc6216b290d))
  (segment (start 153.853553 95.85) (end 153.75 95.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2dfaa222-6a89-4a50-b142-1973c52f9264))
  (segment (start 155.75 114.1) (end 155.75 116.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2e0a1e37-db9e-411d-bd49-f149f011740c))
  (segment (start 147.75 128.246446) (end 147.853553 128.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2e0d15b9-02f3-4176-b6a6-8e014de95911))
  (segment (start 154.25 90.1) (end 154.25 89.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2e327b18-358f-4e42-9372-c8d9c3e43038))
  (segment (start 150.25 100.1) (end 150.25 102.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2e4f6ef8-8cc8-488f-98b8-f933bbdb96a3))
  (segment (start 155.75 28.1) (end 155.75 30.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2e583594-a0e8-404d-a29b-5e9d74c4b653))
  (segment (start 150.25 46.1) (end 150.25 45.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2e9f0138-7e80-4014-86cb-8ac23b849cf0))
  (segment (start 145.853553 144.35) (end 146 144.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2ea2b1e6-443b-43ea-b9bc-1fd96e03fe59))
  (segment (start 146.353553 87.85) (end 148 87.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2ec9ff93-4d48-4990-8869-6348458d7488))
  (segment (start 151.75 37.953553) (end 151.75 38.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2eca55ff-205d-4964-a2d6-af30ee99869d))
  (segment (start 152.25 150.1) (end 152.25 149.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2ecc5bb9-ca55-4269-b94f-a311de46ec25))
  (segment (start 152.25 136.1) (end 152.25 138.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2f8c93ee-ae8d-4721-bcfc-4295d60adbb3))
  (segment (start 150.25 60.1) (end 150.25 62.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2fb6d229-09ea-47fd-9060-d0732b8daa4b))
  (segment (start 146.25 52.1) (end 146.25 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 2fe6ef64-f235-48a2-bfc8-830877af2584))
  (segment (start 149.646446 163.85) (end 149.75 163.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3022d0a8-d999-44dc-9e98-ab12336bdc80))
  (segment (start 153.646446 56.35) (end 152 56.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 302e2bd2-9f87-408b-9704-82e8d5d85b56))
  (segment (start 146.25 96.1) (end 146.25 98.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 30376ab1-af67-4dd6-8a95-bf51ffd731fe))
  (segment (start 154.25 41.953553) (end 154.25 42.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3038f213-518b-4555-a651-84c6a8f212ed))
  (segment (start 144.25 75.746446) (end 144.353553 75.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 30a0ea8b-07a7-4116-86d3-593e04d821ca))
  (segment (start 150.25 94.246446) (end 150.146446 94.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 30c42810-16cf-4aba-86eb-4804a20897b3))
  (segment (start 155.75 106.1) (end 155.75 108.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 30c49c0a-0806-47ba-89f1-7b5734896bae))
  (segment (start 152.25 126.1) (end 152.25 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 30fb15ee-1112-45dd-8d0e-0ea3cebd3318))
  (segment (start 144.25 126.1) (end 144.25 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 31873afc-ab81-4497-a5b5-0bb90547c898))
  (segment (start 147.75 72.1) (end 147.75 72.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 319242ff-75e6-44f9-be3d-3b0fca85adc1))
  (segment (start 154.25 38.1) (end 154.25 40.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 31a19e45-e2e8-4834-83ec-146c180a43a2))
  (segment (start 150 140.35) (end 148.353553 140.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 327009c8-65f4-47a0-a3bf-68d926b28610))
  (segment (start 154.25 131.746446) (end 154.353553 131.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 329659da-2de3-4cf0-bf96-03e9df8324f8))
  (segment (start 150.25 48.1) (end 150.25 50.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3318b167-5cc5-4aaf-8321-3be603781f58))
  (segment (start 145.75 116.1) (end 145.75 118.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3352d34a-6f73-4808-b000-469bae071ef8))
  (segment (start 155.75 116.1) (end 155.75 118.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 33923921-da9e-409b-8ed8-689c2bb12be3))
  (segment (start 148 84.35) (end 147.853553 84.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 33a2b7c0-c8d2-4437-951c-61edbd45b3e0))
  (segment (start 155.75 30.1) (end 155.75 32.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 33e4da3d-09d0-4df6-b3d1-98cf76778de0))
  (segment (start 148 94.35) (end 146.353553 94.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 33f45479-7f5a-44e1-8da1-316610fc3e0c))
  (segment (start 148.25 33.746446) (end 148.353553 33.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 33f6ea50-a438-46e4-87be-90c3a1129417))
  (segment (start 144.25 48.1) (end 144.25 50.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 34372ac2-7027-4e44-9281-14ce6e4eef1e))
  (segment (start 154.25 94.1) (end 154.25 94.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3458b190-ad94-4f7e-b1f9-f3503adfcf87))
  (segment (start 146 77.85) (end 148 77.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 345d4e98-c72a-4c6e-9569-96713a02f08e))
  (segment (start 148.146446 72.35) (end 148 72.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 34a46748-f012-4ccd-a4b7-a9d7eedad08d))
  (segment (start 155.75 80.1) (end 155.75 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 351c0c74-7328-4a0e-ae42-f3e3e5b19695))
  (segment (start 155.75 60.1) (end 155.75 62.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 35229530-26e0-446a-bcca-ea3dfa86e5d8))
  (segment (start 148.353553 33.85) (end 149.646446 33.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 352e2f58-c102-4965-a489-fad147bfa374))
  (segment (start 149.646446 129.85) (end 149.75 129.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 35a2f733-e595-41f1-9108-8cb8882a6a1c))
  (segment (start 150 40.35) (end 152 40.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 35a35465-388f-4f66-bd09-245fb2c6b40d))
  (segment (start 144.25 44.1) (end 144.25 46.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 35ba5daf-0935-4466-8b11-110bc5054280))
  (segment (start 146 74.35) (end 148 74.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 35c99be1-f3f2-48cf-a3c2-ad65665c09f0))
  (segment (start 154.25 106.1) (end 154.25 108.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 363b0358-30ab-44fb-831b-f180621d6f31))
  (segment (start 148 76.35) (end 150 76.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3644d5b8-9437-4f28-9a4f-d9ad406be729))
  (segment (start 153.853553 51.85) (end 153.75 51.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 365574dc-5d5f-4d9f-a38e-b66dbb1faf29))
  (segment (start 154.25 56.1) (end 154.25 58.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 36b709b0-1f61-456c-a57b-1307b98fcfff))
  (segment (start 145.75 133.953553) (end 145.75 134.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 37bcd82d-6068-4b34-a2e5-5470e141c71b))
  (segment (start 151.75 60.1) (end 151.75 62.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 37dc6e0b-361f-40c3-b55b-b2bf2865e0bd))
  (segment (start 152.25 166.1) (end 152.25 168.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 381fef52-0c3a-4290-a9fe-9400eb521cf2))
  (segment (start 146.25 112.1) (end 146.25 114.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 385701a0-0df8-4cd8-b30e-89c7961d9374))
  (segment (start 146.25 93.746446) (end 146.353553 93.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 388f0df0-d192-471d-9018-824446f0e1ca))
  (segment (start 150 153.85) (end 152 153.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 38b54ae6-a6a6-4f22-94e3-d152ff605459))
  (segment (start 146 133.85) (end 145.853553 133.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 38d0091e-b6f5-4e25-9d31-4fe7bfb9137d))
  (segment (start 145.75 59.953553) (end 145.853553 59.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 38e28069-926c-4d9c-b9ad-7ecd053d7de0))
  (segment (start 144.25 118.1) (end 144.25 120.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 39078813-4ab1-4f8e-b63e-7003fc409b13))
  (segment (start 146 75.85) (end 148 75.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3916ab89-ec13-404f-9111-e5d0e71df668))
  (segment (start 144.25 54.1) (end 144.25 56.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 392b8743-5d79-46d8-adb6-9dc195dfd7bf))
  (segment (start 154.25 42.1) (end 154.25 44.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3952bea0-44c1-4ee8-ac22-2ee508df0913))
  (segment (start 148 164.35) (end 150 164.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3977ee93-71ca-4cd8-9e20-5e0f1aaeb9ca))
  (segment (start 152.25 102.1) (end 152.25 104.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 39ac0482-6410-4d98-84f9-2b331f31521e))
  (segment (start 146 26.35) (end 144.353553 26.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 39ba5cfa-5bc4-44c8-835c-09bfdd808b29))
  (segment (start 154 69.85) (end 154.146446 69.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 39f71a9b-049d-49c2-8ab0-f5f865949626))
  (segment (start 153.75 124.1) (end 153.75 126.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3a18a8ce-b80a-4360-81a2-988a733b7bb3))
  (segment (start 150.25 91.953553) (end 150.25 92.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3a901475-44d7-4141-9055-865dbc7e1db1))
  (segment (start 148.25 104.1) (end 148.25 106.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3aad0b47-d68f-4ca3-8348-7bc293b547f6))
  (segment (start 149.75 129.746446) (end 149.75 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3b36177b-d636-4955-9e59-92d989cafd17))
  (segment (start 151.646446 39.85) (end 151.75 39.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3b3c5db5-5c7a-4c61-9f98-1daf46e4e63c))
  (segment (start 155.646446 153.85) (end 155.75 153.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3b64f213-7158-4715-bf7c-f6725e7afc79))
  (segment (start 151.646446 136.35) (end 150 136.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3b6d88cc-aa45-49a4-ad63-f270db38b86c))
  (segment (start 154.25 36.1) (end 154.25 38.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3b81b146-8ab2-462a-8d05-03fe21fbb3ea))
  (segment (start 154.25 114.1) (end 154.25 116.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3ba41938-6937-4e85-b2ea-486e7cd65081))
  (segment (start 146.25 116.1) (end 146.25 118.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3bab1144-f876-4f95-b0e5-ae441dadfb45))
  (segment (start 148 28.35) (end 146.353553 28.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3bd0b847-6fc9-49aa-9b22-bfdf656a80df))
  (segment (start 148 59.85) (end 150 59.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3bfcda13-3c7a-48d8-83ca-10853525433d))
  (segment (start 154.25 80.246446) (end 154.146446 80.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3bfe39bb-57c0-4d62-a6e3-7abcdc066e52))
  (segment (start 147.75 155.953553) (end 147.853553 155.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3c5529ad-1780-4896-a7cb-0abacdc27929))
  (segment (start 152.25 92.1) (end 152.25 93.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3c7223d1-7ef0-4314-9a74-0601b0395a5d))
  (segment (start 145.75 38.1) (end 145.75 38.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3c969e8f-10ec-4f96-affd-543ed26cee7f))
  (segment (start 152.146446 36.35) (end 152 36.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3ce7e1f4-3606-421f-a152-56ba932bcc1a))
  (segment (start 149.75 120.1) (end 149.75 122.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3d0dd9a2-1137-4ef2-9829-05d9a0ca70b1))
  (segment (start 149.75 124.1) (end 149.75 126.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3d7b2274-e15b-4830-9341-37c69d4b7e9f))
  (segment (start 151.75 32.1) (end 151.75 34.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3d8345c9-798a-4eb3-a08a-9aab2bb28b22))
  (segment (start 154.353553 167.85) (end 155.646446 167.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3d9e6b03-c154-4023-a6c9-a5b1771e360b))
  (segment (start 152.146446 71.85) (end 152 71.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3dcb565d-b995-4fa4-860d-9aa9228faf57))
  (segment (start 147.75 98.1) (end 147.75 100.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3dd7c6eb-6f24-4116-a459-0aadf25fde04))
  (segment (start 153.75 92.1) (end 153.75 90.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3e0220d0-da58-4044-a766-7b810542d492))
  (segment (start 155.75 42.1) (end 155.75 44.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3e1a664b-5d84-441f-bfd6-0f00e641f748))
  (segment (start 149.75 80.1) (end 149.75 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3e66eef9-fbae-4f3e-9ca2-41e4be040b68))
  (segment (start 146.25 160.1) (end 146.25 161.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3e8215fd-05d4-497f-8ada-5f4a092e562a))
  (segment (start 151.75 72.453553) (end 151.646446 72.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3ea076d5-293c-4030-b222-9ea5c08a0553))
  (segment (start 146.25 54.1) (end 146.25 56.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3ede4099-daab-4e4d-9187-f603927ec6aa))
  (segment (start 148 75.85) (end 150 75.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3f110699-e2b6-4403-854b-31c663d931a1))
  (segment (start 146 147.85) (end 145.853553 147.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3f3e844f-1a22-4bd5-a9c1-9ecb3e799886))
  (segment (start 151.75 128.1) (end 151.75 130.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3f953656-4691-4ef7-83aa-a7307da7d0cf))
  (segment (start 154.25 96.1) (end 154.25 98.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3fc3a511-4303-4dff-a353-30ea0796df90))
  (segment (start 149.646446 83.85) (end 149.75 83.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 3ffab6a2-1b0a-4631-9cc6-a7a745172a2f))
  (segment (start 148 77.85) (end 150 77.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 400cfea3-bc3a-4c5c-9476-16fac28a7879))
  (segment (start 155.75 52.1) (end 155.75 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 405e45c6-d31a-448b-9c6b-29a3c8649833))
  (segment (start 149.75 114.1) (end 149.75 116.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4069a6d6-1f04-4abe-8f3a-627f17096687))
  (segment (start 154.146446 51.85) (end 154 51.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 406c468d-22a3-4427-a50b-c9156c1b8b58))
  (segment (start 145.853553 77.85) (end 145.75 77.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 40973f99-fd70-47f4-a100-e7c1b0de897c))
  (segment (start 155.646446 88.35) (end 154 88.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4099a7cb-f38e-4313-8d8c-8f0ade1583b0))
  (segment (start 144.25 96.1) (end 144.25 98.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 40c7eb79-a94b-4933-bfed-9d9af9352b75))
  (segment (start 148 142.35) (end 150 142.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 41202c27-8d78-4bb1-a3fe-d0d8043952be))
  (segment (start 154.25 157.953553) (end 154.146446 157.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 418b8cf8-8848-46dc-b8ee-1eec2018c608))
  (segment (start 148 147.85) (end 150 147.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 41c76deb-56d6-4134-aa28-8daa0367f1fb))
  (segment (start 154.146446 142.35) (end 154.25 142.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 41e1daa5-0c44-4a5b-9ad6-e129cdeb907c))
  (segment (start 149.75 67.746446) (end 149.75 66.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4286bf0f-b781-4394-972e-e3de5cb147be))
  (segment (start 148 78.35) (end 146.353553 78.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 429b8f1c-0235-4ed1-ae93-a60c55f6db6b))
  (segment (start 152.25 96.1) (end 152.25 98.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 42a0d2f8-7e28-4697-938d-dbc6703ea0b8))
  (segment (start 144.25 62.1) (end 144.25 64.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 42cd1ab6-65a8-433c-885b-0e6194f40e14))
  (segment (start 146.25 114.1) (end 146.25 116.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 42e7b5fb-a00a-4344-aaf8-51e30410dd1d))
  (segment (start 148 36.35) (end 146.353553 36.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4307a408-6e36-46d6-9959-49cb7ffd7796))
  (segment (start 146.25 102.1) (end 146.25 104.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 432e8a62-3f8f-4639-bd65-95f54c8e9963))
  (segment (start 153.75 46.1) (end 153.75 48.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 43380b33-3d19-4824-891d-b9b4a42870b6))
  (segment (start 153.646446 79.85) (end 153.75 79.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 434242e6-b019-4dc6-ae45-8e7bb11e0636))
  (segment (start 153.75 48.246446) (end 153.853553 48.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 436bf026-7640-4b61-a3ae-9776c160ceb4))
  (segment (start 146 27.85) (end 145.853553 27.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 436ffbc1-a613-4bcf-a8ec-e0a7771a7939))
  (segment (start 152.353553 79.85) (end 153.646446 79.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 43f0e4cd-141c-4f2b-a8d3-20f0f70c5cd9))
  (segment (start 152.146446 37.85) (end 152.25 37.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 43fd3964-efad-4763-9114-d0d996838e4a))
  (segment (start 154.25 146.1) (end 154.25 146.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 441cb118-faf7-4753-a7d4-f5e6d36e830d))
  (segment (start 144.25 138.1) (end 144.25 139.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 44dbba14-5389-412d-94a3-041db6fe8cb9))
  (segment (start 144.25 36.1) (end 144.25 38.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 44e4fc94-1002-4f3c-9284-77ece0c952a1))
  (segment (start 145.75 28.1) (end 145.75 30.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 44eb2341-acc7-4573-b80e-18d8c799faa6))
  (segment (start 150.25 114.1) (end 150.25 116.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4538acaa-d2b8-4018-bef0-a568e8b4c693))
  (segment (start 148.25 52.1) (end 148.25 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4558b553-9336-4020-bbf1-b5d9dd34690d))
  (segment (start 150 166.35) (end 150.146446 166.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 459dc9a4-d4c2-4130-8145-7590e9839dac))
  (segment (start 152.146446 159.85) (end 152 159.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 45c955d7-6880-4238-8f26-48a1da0b3e2b))
  (segment (start 154 49.85) (end 155.646446 49.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 45e5351e-b136-46b8-a998-a0c8c5016e95))
  (segment (start 154.25 27.953553) (end 154.146446 27.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 45f98447-0cc7-4e8e-97f4-a1b384b5871d))
  (segment (start 147.75 140.453553) (end 147.646446 140.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 464933d5-b2f6-4368-9cbd-af641cbca50d))
  (segment (start 150 143.85) (end 152 143.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 46cbcffe-b991-4b16-84ee-8384658283bd))
  (segment (start 145.75 122.1) (end 145.75 124.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 471740ef-a0c5-43fc-abf6-753c2b9a8a91))
  (segment (start 144.25 140.453553) (end 144.25 142.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4720f6df-de71-49ce-a8ed-0f155ed4f025))
  (segment (start 147.853553 72.35) (end 148 72.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 474e302d-e800-4b04-9338-5f1364ebbd42))
  (segment (start 154.353553 83.85) (end 155.646446 83.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 47632ed9-8d09-4820-b318-d58e7195376a))
  (segment (start 145.75 72.1) (end 145.75 74.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 47e29187-9348-40ad-9175-9bc786501df4))
  (segment (start 147.75 124.1) (end 147.75 126.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4808d6e0-1c60-4b1d-9855-25766bf7bdba))
  (segment (start 147.75 135.953553) (end 147.75 136.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 48293b8c-f207-41e0-9ae4-272b838b44b8))
  (segment (start 152.146446 29.85) (end 152 29.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 482d3f5b-3766-4d7b-b25a-2e3aa0576131))
  (segment (start 154.146446 89.85) (end 154 89.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 482d9bb9-00e7-4cfc-99d1-ab3f7613995c))
  (segment (start 150 73.85) (end 148 73.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 48340995-fb3b-4bf7-a993-7fdeb1f9f891))
  (segment (start 148 95.85) (end 150 95.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 48701ad5-8c93-4698-a4dc-9fe5b93773da))
  (segment (start 150 26.35) (end 152 26.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4881d3b9-1162-48b2-a0ce-275e4cc26c42))
  (segment (start 154.25 94.246446) (end 154.146446 94.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 48c2ce45-59c4-43d1-96e9-4f13db20da05))
  (segment (start 144.353553 40.35) (end 144.25 40.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 48ce10aa-f68b-4ba3-ad56-dd5c77027b80))
  (segment (start 146 69.85) (end 145.853553 69.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 48d4cf47-7083-46d1-a744-a94cde56c4e3))
  (segment (start 145.853553 59.85) (end 146 59.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 48ef55c1-1842-4b4e-b7a4-e5c371717a13))
  (segment (start 152.25 160.1) (end 152.25 159.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4902fba0-8659-4250-8f93-7a36904ba5ee))
  (segment (start 146.353553 143.85) (end 148 143.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 490d50eb-9c96-40c7-90d1-010e27289afb))
  (segment (start 150.25 60.1) (end 150.25 59.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4913fea7-312d-40fb-9f37-d050eb790d11))
  (segment (start 154.25 112.1) (end 154.25 114.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 49779c27-66c0-4a89-9881-a885835b681f))
  (segment (start 144.25 148.1) (end 144.25 150.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 49aa520e-8180-43d3-bd6f-4af0eeae5603))
  (segment (start 144.25 116.1) (end 144.25 118.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4a18e5b7-0ada-4c26-9b91-62c1e00fa0aa))
  (segment (start 152.25 168.05) (end 151.8 168.5) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4ab3d6bb-860b-4d7c-b1e9-91b40f2ae6af))
  (segment (start 154.25 145.953553) (end 154.146446 145.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4abc123f-b749-452f-a3fb-522485041032))
  (segment (start 148.25 62.1) (end 148.25 61.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4ae604ec-d721-48c0-8532-f35671583075))
  (segment (start 147.853553 155.85) (end 148 155.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4bb3d679-132f-4069-aa47-36d442449f59))
  (segment (start 147.75 84.246446) (end 147.75 84.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4c01c843-cd7d-4b8e-91e0-b145115e6ee8))
  (segment (start 151.75 136.453553) (end 151.646446 136.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4c0ec7ef-6f17-48e8-b2ad-381e30fe8401))
  (segment (start 151.75 78.1) (end 151.75 80.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4c766380-7dc7-4e2e-8471-bb9e9c742aee))
  (segment (start 150.353553 36.35) (end 150.25 36.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4cc5acf3-6dd7-4043-8b9f-d492cdc6acba))
  (segment (start 144.25 39.746446) (end 144.353553 39.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4cd144e5-743d-41de-b603-45d73ac1353e))
  (segment (start 155.75 128.1) (end 155.75 130.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4cdf5763-e705-4c52-8e32-9dded1adc0f3))
  (segment (start 148 36.35) (end 148.146446 36.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4d2f2091-657f-4013-8ad2-4848fded1ce3))
  (segment (start 152.146446 150.35) (end 152.25 150.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4d4d36ac-ef91-4e8d-8ca6-85404e9e6286))
  (segment (start 154.25 136.1) (end 154.25 138.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4d5714c6-00ad-4a48-8836-09e264b29761))
  (segment (start 145.75 164.1) (end 145.75 166.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4d745726-7b02-41bc-8c32-526a6d1efa89))
  (segment (start 151.646446 30.35) (end 150 30.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4d776db1-c064-4ff4-80ce-04eee1a5f437))
  (segment (start 146.25 134.453553) (end 146.25 136.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4d99e07e-3614-493f-84e7-fa706bc5c162))
  (segment (start 146.25 86.1) (end 146.25 87.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4dbdb077-abb7-4a09-a168-5166567acc36))
  (segment (start 146 141.85) (end 145.853553 141.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4dc934d7-3bd7-4ff9-805a-b29b2c05a2b2))
  (segment (start 148 134.35) (end 150 134.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4ddd0c25-e347-42c9-a2be-81931a12e8ac))
  (segment (start 149.75 62.1) (end 149.75 64.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4e06bac7-d943-413f-9e86-e76530a5b27c))
  (segment (start 151.75 58.453553) (end 151.646446 58.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4e94af8c-8347-45de-8bd3-c911752b8928))
  (segment (start 148 56.35) (end 150 56.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4f581d53-4c77-4ae8-b415-40943a876e26))
  (segment (start 150.146446 38.35) (end 150.25 38.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4fb0b342-a52d-4329-8894-0b20055ad465))
  (segment (start 146 131.85) (end 148 131.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 4fb6b62c-bbf6-4151-90c9-f2da30ec6b59))
  (segment (start 147.75 44.1) (end 147.75 46.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5000afae-7e6c-4eb6-b58a-f836c2c0b45f))
  (segment (start 148.25 79.953553) (end 148.146446 79.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 50016a90-efcb-4ad1-aa6d-04a841e7e1ad))
  (segment (start 155.75 70.1) (end 155.75 72.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 500a9617-1892-4a1d-b31e-4f450279d24a))
  (segment (start 152.25 150.246446) (end 152.25 150.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5035c3a1-a415-4353-bafc-0a967d8ab668))
  (segment (start 154 72.35) (end 154.146446 72.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 50966728-40e4-4149-9eb2-9166e6e216b1))
  (segment (start 153.75 116.1) (end 153.75 118.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 50aa9648-438d-41d2-997e-b6f0f2e13f5c))
  (segment (start 150 75.85) (end 152 75.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 50ca9065-547d-430e-9b12-367c36176682))
  (segment (start 152.25 58.1) (end 152.25 60.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 50eea997-5516-4afe-821b-f19fb5bea419))
  (segment (start 151.646446 137.85) (end 151.75 137.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5107c6a6-1c68-4772-91c7-9e5c4af55f74))
  (segment (start 152.146446 149.85) (end 152 149.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 510c0d19-a5a6-4269-be3c-91f33b76ed3f))
  (segment (start 144.353553 167.85) (end 146 167.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 51871cc4-e858-4966-bc83-8580a7cfff83))
  (segment (start 150 137.85) (end 151.646446 137.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 51878eb5-ef82-4241-a11b-ee4ed73205c7))
  (segment (start 146.353553 65.849999) (end 147.646446 65.849999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 519681b7-4894-43d8-a5f3-f6270562ffc3))
  (segment (start 154.25 128.1) (end 154.25 130.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 51998a27-28b7-4574-8ba6-31ccf860d6c5))
  (segment (start 149.75 72.246446) (end 149.75 72.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 51ac6ff1-366f-4c51-abb2-521b3e82a24d))
  (segment (start 146.25 150.1) (end 146.25 152.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 51f12eab-2846-4bc2-bb6b-66b9dfad663a))
  (segment (start 145.75 120.1) (end 145.75 122.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 51f607a3-edd0-44e8-bc24-5cc1f98d5161))
  (segment (start 155.75 132.453553) (end 155.646446 132.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 52079378-cd39-4c17-aa3b-046d7662e203))
  (segment (start 151.75 118.1) (end 151.75 120.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 520b7bc7-443d-4182-a444-2400edfc5e10))
  (segment (start 153.75 104.1) (end 153.75 106.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5246a97b-dc35-4e8b-b912-7d99ab13ea3e))
  (segment (start 149.75 93.746446) (end 149.75 92.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 525d354d-8dec-48b7-a6e0-75cebcac1f9c))
  (segment (start 154.25 68.246446) (end 154.146446 68.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 527fd62f-fc07-4dd3-8b1c-227bb33f7493))
  (segment (start 144.25 166.1) (end 144.25 167.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 529a0f13-cbcd-494b-a12e-1d241e01bc63))
  (segment (start 147.75 32.1) (end 147.75 34.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 52ff08be-7497-4bff-8185-0f50766175a8))
  (segment (start 150.25 62.1) (end 150.25 64.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 534fa3b2-58ac-4b9a-9c83-3d9efb2c6c8b))
  (segment (start 155.75 138.1) (end 155.75 140.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 53c09731-3347-4f78-a02b-9b105da3d197))
  (segment (start 155.646446 132.35) (end 154 132.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5418868b-7110-4b4e-9b6a-83386cd94871))
  (segment (start 148 149.85) (end 147.853553 149.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 543b3aef-8131-45bb-91e2-8139f7f56fd9))
  (segment (start 155.646446 50.35) (end 154 50.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 545eb00d-a1f6-40ac-a2f2-df8de5c730a0))
  (segment (start 152.146446 135.85) (end 152 135.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 54a6a9e1-03f5-483d-bd73-641bf4ac0f9c))
  (segment (start 150 68.35) (end 150.146446 68.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 55117c7e-20be-44c9-b29a-b1693b75cf18))
  (segment (start 146 69.85) (end 148 69.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5528a794-8463-420e-b73a-9cda515827b3))
  (segment (start 145.75 44.1) (end 145.75 46.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 555af03c-dba8-46a4-84e8-12e8caae77e8))
  (segment (start 151.75 62.1) (end 151.75 64.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 55808ac7-66c9-4257-8e05-ea62dd0a2828))
  (segment (start 148.25 30.453553) (end 148.25 32.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 55cd8c8f-a37f-4a8a-8a6b-ac9f0be24d0d))
  (segment (start 152.353553 69.85) (end 154 69.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 55f10d70-59ab-48e6-8637-c52d528cc620))
  (segment (start 153.75 28.453553) (end 153.646446 28.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 560d3656-baab-4a67-a6e5-420750d0f309))
  (segment (start 149.853553 31.85) (end 149.75 31.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5619311a-094f-446c-b3fd-ef166e16fb5d))
  (segment (start 152.25 132.1) (end 152.25 133.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5651dc50-cb4f-48b8-9343-f18bc3b7fbe9))
  (segment (start 154.25 160.1) (end 154.25 162.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 56606091-db27-4013-b68b-af06de928382))
  (segment (start 148 163.85) (end 149.646446 163.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 56729db7-af1a-4a9f-846b-d2f4f624ac27))
  (segment (start 154.25 146.246446) (end 154.146446 146.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 56799dfc-cc59-49c4-b005-4b1b22c6ae16))
  (segment (start 154.146446 133.85) (end 154 133.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 56b26680-8dba-4b11-9f6e-de65333037e8))
  (segment (start 152 159.85) (end 151.853553 159.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 56c35b67-66af-4f21-962b-6439c9289621))
  (segment (start 145.853553 166.35) (end 146 166.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 56d42565-9c49-43a8-8a95-8aa8da18aa9f))
  (segment (start 155.75 160.1) (end 155.75 162.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 56e774ac-d99b-44a7-88ec-175d4cca0457))
  (segment (start 155.646446 26.35) (end 154 26.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 56f70137-3566-46ab-a8a9-729bcca1fdca))
  (segment (start 146.25 100.1) (end 146.25 102.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 578a6439-1d6f-4118-990f-e9ab963361a4))
  (segment (start 146 39.85) (end 148 39.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 57a8c428-d6b7-4530-9905-eb8b1db9557c))
  (segment (start 154.146446 146.35) (end 154 146.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 57f6e6e6-9628-411b-b165-5ac26a1c8e4d))
  (segment (start 152.25 140.246446) (end 152.25 140.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 57fd7c34-7696-426b-8236-003dddfe8179))
  (segment (start 152.25 54.1) (end 152.25 55.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 582141bf-8e1a-4b42-a7bc-6d39f0a1d50d))
  (segment (start 148 152.35) (end 147.853553 152.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 583ef488-10d9-4440-9c61-1689beda3a06))
  (segment (start 152 142.35) (end 154 142.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 58585cf8-0101-42df-88f6-d4ff38df937e))
  (segment (start 154.25 54.1) (end 154.25 56.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 585c46b0-7855-4811-8b21-22b85a3c8233))
  (segment (start 146 67.85) (end 148 67.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5861b09b-24ac-4bcb-95b7-a6937ccf9059))
  (segment (start 155.75 146.1) (end 155.75 148.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5872c512-ad08-41f0-85d1-5197e6a3308d))
  (segment (start 151.646446 69.85) (end 151.75 69.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 588b68b4-0524-412d-ab5a-fbd144aee9f0))
  (segment (start 150 96.35) (end 150.146446 96.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5897989f-a496-42f9-b268-54b81b205e00))
  (segment (start 146.353553 35.85) (end 148 35.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 58a36d8d-9473-4019-ba6a-94a99569f2cd))
  (segment (start 150.25 52.1) (end 150.25 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 59165789-db74-4ffa-b958-92904933a690))
  (segment (start 151.75 56.246446) (end 151.75 56.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 593f17ee-3604-411c-83d1-078b44c00c14))
  (segment (start 153.646446 134.35) (end 152 134.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 599d66d6-c4d6-4474-976e-7eb72dc57209))
  (segment (start 146.25 142.1) (end 146.25 141.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 59dfc1c6-c302-497d-b73b-6f062b59bb4d))
  (segment (start 144.25 28.1) (end 144.25 30.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5a08f12e-0d98-4274-91e2-52f303166751))
  (segment (start 155.75 156.453553) (end 155.646446 156.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5a2f2f88-f2bf-46ea-86dd-7561a5a50c92))
  (segment (start 155.75 126.1) (end 155.75 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5a3b0153-e692-4759-80af-de78dc11c7c0))
  (segment (start 149.75 52.1) (end 149.75 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5a3c6aa2-9462-4f3c-8987-e773ae223def))
  (segment (start 149.646446 37.85) (end 149.75 37.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5a5b14f3-247a-4007-8292-1c08278ddd01))
  (segment (start 148 139.85) (end 150 139.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5a855fe1-b477-451b-8255-d3329f097d9a))
  (segment (start 150.25 118.1) (end 150.25 120.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5a8ed2d7-cd24-49f7-ae65-592bbcf97bf4))
  (segment (start 149.853553 43.85) (end 149.75 43.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5a90d840-5fd1-4ca5-b1d8-cf33631be7c7))
  (segment (start 155.75 108.1) (end 155.75 110.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5adcd5f4-e0cb-49c6-90fc-5d7f5a445a46))
  (segment (start 149.75 31.953553) (end 149.75 32.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5b55dca0-0395-4534-b890-95cb0317284e))
  (segment (start 153.75 36.1) (end 153.75 38.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5bae533c-13e6-4737-aa4e-08622fa36096))
  (segment (start 150 146.35) (end 152 146.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5bb2dfaa-d8af-4c48-8491-57da6b0134f4))
  (segment (start 149.75 46.453553) (end 149.646446 46.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5bd59a45-15d3-46cd-a857-21d8d99f2966))
  (segment (start 147.853553 34.35) (end 148 34.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5be91689-7dbe-46a6-9205-2ffecbcbb6bd))
  (segment (start 147.853553 128.35) (end 148 128.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5bfca94e-6ad4-468d-b3c2-20d3b3662382))
  (segment (start 151.75 35.746446) (end 151.75 34.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5c3babed-3b22-468b-9f62-995418766c4e))
  (segment (start 150 90.35) (end 152 90.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5c3dd97a-c6c2-478a-8a6d-e4b649d7a447))
  (segment (start 153.853553 81.85) (end 153.75 81.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5c63a853-372c-40d8-8dc8-2b133767726f))
  (segment (start 151.75 91.953553) (end 151.853553 91.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5c7e4b6f-508f-477b-936a-4a675998f0c0))
  (segment (start 150.25 116.1) (end 150.25 118.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5d1f2d8f-e02c-47f7-8f08-f6b86d6848ad))
  (segment (start 146 26.35) (end 148 26.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5d2e14e3-749e-4c02-9fdc-4aa8751944e3))
  (segment (start 153.75 72.1) (end 153.75 72.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5d2ec6de-1216-48fc-bf78-ae405e8a9e7a))
  (segment (start 146 38.35) (end 148 38.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5d50387a-bd27-462b-b5e2-1dc8bd4a3b11))
  (segment (start 154.146446 40.35) (end 154 40.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5de04441-d4cd-4f5a-aac7-3760ca9dda8f))
  (segment (start 144.353553 146.35) (end 144.25 146.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5def5b15-5b07-452e-963a-4026372636d4))
  (segment (start 153.75 100.1) (end 153.75 102.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5e32974b-f704-46e2-aa93-a6df20d20c7f))
  (segment (start 144.25 134.1) (end 144.25 136.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5e9419e3-0ca2-4f30-8ec1-86a1717e7790))
  (segment (start 146 145.85) (end 148 145.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5ea6bea4-df48-4943-a6a0-e8547cf7f1ba))
  (segment (start 150 38.35) (end 150.146446 38.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5eace60c-5092-4bb6-b734-f612d6e05f95))
  (segment (start 154 86.35) (end 154.146446 86.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5f10f5e3-9019-415c-a22f-9c90130733d5))
  (segment (start 150.25 166.246446) (end 150.25 166.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5f44ed8a-926f-4adf-9c6c-37be8c7eedbf))
  (segment (start 152.25 37.953553) (end 152.25 38.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5f503fbd-6aab-4aef-84f8-6341bb774aeb))
  (segment (start 152 143.85) (end 154 143.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5f674b17-38e1-43ad-8e7c-75e71669f15c))
  (segment (start 151.75 94.1) (end 151.75 96.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5f9730f8-da8a-47f6-932b-6fbf8383733b))
  (segment (start 144.25 114.1) (end 144.25 116.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5f9b910d-f5a1-4aa5-b487-b0465141fd24))
  (segment (start 152 141.85) (end 153.646446 141.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5fca3d7b-2792-457f-acd0-895166959de5))
  (segment (start 145.75 70.1) (end 145.75 72.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5fd5521b-5d60-4ae0-9968-12b66d47b10f))
  (segment (start 146 77.85) (end 145.853553 77.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5fd5ee0b-5607-444a-a52c-d47121bea276))
  (segment (start 154 163.85) (end 154.146446 163.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 5fed4da5-753f-413b-adee-0b4889252d86))
  (segment (start 150.25 59.953553) (end 150.146446 59.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 604037a0-54fd-4805-b2c5-f32bdf87071e))
  (segment (start 144.25 132.453553) (end 144.25 134.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 606f1b52-3a62-4467-adb5-b61b830c63de))
  (segment (start 155.75 98.1) (end 155.75 100.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 60b97f17-a0c8-4e67-b544-20408cccb720))
  (segment (start 151.75 160.1) (end 151.75 162.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 60d5cd06-dbb9-4a3a-9e2c-f06abc452e63))
  (segment (start 145.853553 41.85) (end 145.75 41.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 60e0e137-7188-4b4a-bedc-b8bc6ac6edb7))
  (segment (start 149.75 157.953553) (end 149.75 158.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 612d5ed1-93f9-49a8-b93b-c768b5fb19e1))
  (segment (start 146.25 73.746446) (end 146.353553 73.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 615c28e0-fce1-48b4-934e-9e2d94710d7f))
  (segment (start 149.75 102.1) (end 149.75 104.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 61d136b1-dded-4a8c-9025-1f9cfee79d3f))
  (segment (start 148 29.85) (end 150 29.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6211bab5-f012-4984-8a16-602962792505))
  (segment (start 144.25 144.1) (end 144.25 145.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6236c6d8-ab2e-47bd-bdde-152401642b7d))
  (segment (start 152.25 162.453553) (end 152.25 164.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6236f0fb-f969-47e6-8aaa-7430d64dc0c3))
  (segment (start 152.25 49.746446) (end 152.353553 49.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6251a5ba-09c3-4440-918a-2eff752a944e))
  (segment (start 149.646446 60.35) (end 148 60.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 625d4737-a1a3-4c93-bb28-60df4ed5ba36))
  (segment (start 144.25 94.1) (end 144.25 96.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 62691cfd-05e5-4565-9491-f40ed3bdd76b))
  (segment (start 146.25 72.1) (end 146.25 73.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6273e673-1ce0-4d95-a147-312fb19eed45))
  (segment (start 149.75 158.1) (end 149.75 160.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 62b89d98-bac3-4f89-a0e6-f3eee9a17110))
  (segment (start 154.25 118.1) (end 154.25 120.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 62cb91ac-8aa0-4281-a212-48c6f8745cdb))
  (segment (start 151.75 82.1) (end 151.75 84.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 62d74be3-8091-45ca-adad-b78215349c0d))
  (segment (start 153.75 51.953553) (end 153.75 52.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 62ecc024-060b-477b-8e3b-f3cfc3448be3))
  (segment (start 153.75 84.246446) (end 153.853553 84.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6335bd76-d349-4bdb-97ea-be4538d29046))
  (segment (start 155.75 50.453553) (end 155.646446 50.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 634014a4-32f5-4795-bcf8-1335476ba8cb))
  (segment (start 153.646446 42.35) (end 152 42.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 63462f6d-3f0b-430a-8b06-b777aac29629))
  (segment (start 151.75 114.1) (end 151.75 116.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 635dcb8a-10b4-412a-a927-95c91fd12202))
  (segment (start 152.353553 94.35) (end 152.25 94.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6370ddf1-fcdb-4bcf-8fd6-89b01472f284))
  (segment (start 154.25 69.953553) (end 154.25 70.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 63a045b2-a6c7-49e2-890d-1e45ac4e7dc7))
  (segment (start 152.25 44.1) (end 152.25 43.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 63a64c16-434d-4233-a5e0-9ed14dc613e1))
  (segment (start 152.25 84.1) (end 152.25 85.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 63d7beda-774c-44f5-8c4a-c66c7860c6f4))
  (segment (start 144.25 120.1) (end 144.25 122.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 63dbee12-5f61-47c5-920f-c1ca597e0dfb))
  (segment (start 152.25 36.1) (end 152.25 36.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 64132319-3326-444b-bbe3-f47ed75e976f))
  (segment (start 148 61.85) (end 147.853553 61.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 64cadd9b-d84c-41a9-8a87-eeda1670acc7))
  (segment (start 154 143.85) (end 155.646446 143.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 64d3fd1d-2e88-466e-92ad-0f303635762a))
  (segment (start 152 147.85) (end 154 147.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 64fa465b-20aa-4a16-a554-470ea7b6cb1c))
  (segment (start 147.75 156.1) (end 147.75 155.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 65552ae4-2acf-4722-8860-4acbadb5217d))
  (segment (start 151.646446 85.85) (end 151.75 85.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6564f424-c86a-4aa7-9daf-7a967ab80692))
  (segment (start 147.75 79.953553) (end 147.75 80.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6565609a-00c2-4a14-b355-5f3307a1de9a))
  (segment (start 153.646446 158.35) (end 152 158.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 656dafc3-4a6d-4bea-9c82-e2ba004c4a73))
  (segment (start 150.25 102.1) (end 150.25 104.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 657cfa1c-8719-47eb-83eb-e1b187595e97))
  (segment (start 150 72.35) (end 149.853553 72.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 65a5a4db-c8c5-4758-8575-ab136680f39e))
  (segment (start 145.75 150.1) (end 145.75 152.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 65bed819-5e74-4218-a3d0-e069e3fc1b27))
  (segment (start 153.75 96.1) (end 153.75 98.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 65df3d4c-bdfe-4a74-a38e-81f1fd5bca71))
  (segment (start 147.853553 135.85) (end 147.75 135.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 65e065ae-4f8f-4d20-a0f7-86c125ae43ac))
  (segment (start 152.353553 73.85) (end 154 73.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 662370d7-b863-43c5-934e-f00fd91a067c))
  (segment (start 148.25 82.1) (end 148.25 83.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 66356598-d176-42e6-b08e-19481f5cfd63))
  (segment (start 148 132.35) (end 150 132.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 666ab94b-34e5-4550-b4d8-3db3e9eb8002))
  (segment (start 150.25 34.246446) (end 150.25 34.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 667aad43-0218-4c5f-a603-8e642399c74a))
  (segment (start 155.75 104.1) (end 155.75 106.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 66eca6ec-5f32-4111-bfaf-1defc9ecbb21))
  (segment (start 146.25 37.746446) (end 146.353553 37.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 676b6680-6757-4583-82db-b56bb96f9b13))
  (segment (start 144.25 38.1) (end 144.25 39.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 676fe616-944d-4e2f-80e5-32efc7bd08a7))
  (segment (start 148 144.35) (end 150 144.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 677427de-9f0d-48d1-9262-41745bfd5878))
  (segment (start 145.75 156.1) (end 145.75 158.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 678e419f-7332-4c74-9b43-f0e26fac33eb))
  (segment (start 150.25 99.953553) (end 150.146446 99.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 67a03986-8b0d-4921-a222-ca237268bd76))
  (segment (start 152.25 72.1) (end 152.25 73.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 67ac03a8-bec9-43b8-9c8c-8e321000a496))
  (segment (start 154 153.85) (end 155.646446 153.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 67bfd722-e00a-4716-88b6-254f60321b3e))
  (segment (start 148.25 120.1) (end 148.25 122.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 67c6fca5-5760-45eb-9862-f6966c679489))
  (segment (start 152.25 114.1) (end 152.25 116.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6912dea2-8f57-4593-828c-1d30853092a9))
  (segment (start 146.353553 161.85) (end 147.646446 161.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6959560e-558b-467f-8130-b380783eb5f2))
  (segment (start 147.75 86.1) (end 147.75 85.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 699be15c-a1c4-4187-b30c-314db036c4ad))
  (segment (start 151.75 80.1) (end 151.75 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 69bae729-3e56-482f-b6cf-1c8ed476c534))
  (segment (start 154.25 147.953553) (end 154.25 148.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 69cc5bd8-84b4-4d57-a8d7-b8944ffd9019))
  (segment (start 150 99.85) (end 149.853553 99.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6a116644-e646-423a-9510-a2355ee40411))
  (segment (start 149.646446 93.85) (end 149.75 93.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6a1d654d-c707-4d26-9a1d-4f319d297340))
  (segment (start 146.353553 28.35) (end 146.25 28.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6a281adc-df8f-4661-94f8-0dbc700b5024))
  (segment (start 151.646446 97.85) (end 151.75 97.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6aafc19d-da16-4d53-b83e-07857ae3dabd))
  (segment (start 145.75 56.1) (end 145.75 58.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6acbad7c-6e06-4927-977a-efb0dfaa28b3))
  (segment (start 145.75 102.1) (end 145.75 104.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6b5c44ca-904d-4c43-b682-e4fff56f4d36))
  (segment (start 149.646446 67.85) (end 149.75 67.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6b692676-9fa7-4fb4-9e03-142b7165c9f4))
  (segment (start 144.25 167.746446) (end 144.353553 167.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6b93a9e4-005f-49a7-833b-370d909663c2))
  (segment (start 150.25 110.1) (end 150.25 112.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6b97e60d-6bf1-40a9-87ea-638d0dd51255))
  (segment (start 150 165.85) (end 150.146446 165.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6b99dbb6-1671-460f-84c0-f7a82cca867e))
  (segment (start 146.25 128.1) (end 146.25 129.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6bb84398-7ca9-4ac8-a56b-b0135a9c6964))
  (segment (start 152.25 80.453553) (end 152.25 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6bcddbfa-9215-4d4e-94c2-4afc19bad46f))
  (segment (start 153.75 75.953553) (end 153.853553 75.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6bdfbded-8a52-4bf0-b5c8-6e539b67dd43))
  (segment (start 150.25 45.953553) (end 150.146446 45.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6c37cbc1-83fe-4679-acf5-82ac9261e2dc))
  (segment (start 150 157.85) (end 149.853553 157.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6c6f66ea-c312-4316-b50c-0543c5c9ea5c))
  (segment (start 150.25 78.1) (end 150.25 77.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6ca2607f-0e50-4196-bd5f-c7fe902171a4))
  (segment (start 153.75 30.1) (end 153.75 32.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6ca63993-139e-42e1-958a-73fccb35a169))
  (segment (start 144.25 145.746446) (end 144.353553 145.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6ca8c6aa-5655-4693-b53d-447a905e8d06))
  (segment (start 150 71.85) (end 149.853553 71.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6caccd14-a93e-4d67-ab03-a12941c9b2d5))
  (segment (start 153.853553 84.35) (end 154 84.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6ce66ffb-0992-4c82-85fc-ebd1a0f6b732))
  (segment (start 145.75 34.1) (end 145.75 36.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6cf2c23c-0fcd-41e9-8984-0cebecc3f22b))
  (segment (start 146.25 110.1) (end 146.25 112.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6d01f724-a483-4723-800f-dba080c62199))
  (segment (start 145.75 42.1) (end 145.75 44.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6d12ba8e-782f-437e-b694-6fb90305f916))
  (segment (start 152 157.85) (end 154 157.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6d8067ae-141c-4866-8ad0-4fc880c162b2))
  (segment (start 150 147.85) (end 152 147.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6e43c01f-b470-4315-8c09-10d611deff54))
  (segment (start 152.25 72.1) (end 152.25 71.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6e4afb9a-b389-4534-a820-402d89b8eeaf))
  (segment (start 146.25 36.453553) (end 146.25 37.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6e5f25a2-2314-4779-95fe-092806c4e1e1))
  (segment (start 146 132.35) (end 148 132.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6fa4442d-7545-4404-a616-3832125e6ee0))
  (segment (start 154.25 70.1) (end 154.25 72.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6fa852b8-a5e5-4774-9815-2f1ed1b07a32))
  (segment (start 154.25 167.746446) (end 154.353553 167.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 6fc29932-8cff-466c-998a-30dda32eae91))
  (segment (start 155.75 56.1) (end 155.75 58.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7035f01b-20be-4d4c-a49e-c74a9c2a8355))
  (segment (start 146.25 161.746446) (end 146.353553 161.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 707baae7-d6f0-4ea6-85bd-1bdff9607f6c))
  (segment (start 154.25 78.1) (end 154.25 80.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 70985b70-63cc-4f2f-9e4b-cae5b5ae3eaf))
  (segment (start 145.75 58.246446) (end 145.75 58.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 70b81437-fc6e-498c-b3cc-4fca71668bd9))
  (segment (start 145.75 144.246446) (end 145.853553 144.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 70f4d974-4033-4500-ade8-36d1395fa586))
  (segment (start 148.25 66.246446) (end 148.25 66.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 70fc7542-f0b6-4e6c-9585-eb7766b5e7a5))
  (segment (start 154.146446 27.85) (end 154 27.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 71171678-b51c-4e68-baf8-90f430a740e3))
  (segment (start 153.75 48.1) (end 153.75 48.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 71a2c280-9d72-4a86-9589-00678661ec77))
  (segment (start 155.75 68.1) (end 155.75 70.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 71a8fa68-79c9-41dc-9819-514e41391c87))
  (segment (start 147.75 122.1) (end 147.75 124.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 72301e47-c64b-45c4-b4d1-a646f9ab56dc))
  (segment (start 144.25 64.099999) (end 144.25 66.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7249830b-fbcb-457c-b5a0-d9cd98f20477))
  (segment (start 146.353553 94.35) (end 146.25 94.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 727dc76e-6dcf-473f-91b7-763bb768ed25))
  (segment (start 154 48.35) (end 154.146446 48.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 73146a31-5c8d-4e5c-aa9a-c0aba5deef02))
  (segment (start 155.75 150.1) (end 155.75 152.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7315507e-d04a-45c2-91a1-1d16c0a6962b))
  (segment (start 150.25 66.099999) (end 150.25 68.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7329ff3c-8976-4d53-8a25-dfab25e4f635))
  (segment (start 150.25 126.1) (end 150.25 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7344414e-5249-4e1c-880f-6af6fdac3858))
  (segment (start 148.353553 156.35) (end 148.25 156.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 73ae085f-e168-4018-b38f-5cd95a9ffb09))
  (segment (start 155.75 154.453553) (end 155.646446 154.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 73dee575-c1fc-48c0-b414-3301aaffc173))
  (segment (start 150 41.85) (end 152 41.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 73f1dd4e-1530-414a-adf4-f7df30f0949c))
  (segment (start 155.75 112.1) (end 155.75 114.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7416f6c6-1991-4167-9a7e-6448b4c31eff))
  (segment (start 154.25 52.1) (end 154.25 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7445a8a8-29ad-46aa-b3a9-757aa48b4842))
  (segment (start 146.25 164.453553) (end 146.25 165.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 745dc615-51a0-4b84-906d-6bb3fc7b02a5))
  (segment (start 147.75 65.746446) (end 147.75 64.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 74708d42-c8f9-4a68-abaa-2ca0a5b5c1b2))
  (segment (start 151.75 30.453553) (end 151.646446 30.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 74d56111-1d58-4d8b-bd7d-5e92be29657f))
  (segment (start 146 76.35) (end 148 76.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 752df2ef-7ec3-4236-a26e-b2acd919657f))
  (segment (start 148 37.85) (end 149.646446 37.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 75e56838-0e3d-4997-ae68-2012e0f88845))
  (segment (start 144.25 46.1) (end 144.25 48.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 763d00b3-a32c-45af-85a5-4a1582e72156))
  (segment (start 148 87.85) (end 150 87.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7648967e-f888-4336-bd48-3b8e2271714d))
  (segment (start 152 152.35) (end 154 152.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 765b7e71-70db-42d6-879f-6ecec32b05fb))
  (segment (start 154.146446 162.35) (end 154 162.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 766b815b-592d-4c3b-9111-d500fb0e35b4))
  (segment (start 148.25 47.953553) (end 148.146446 47.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7718a414-d627-4d49-b475-32e0dab2d39b))
  (segment (start 148 90.35) (end 150 90.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7754f52b-9fd1-4c93-90a2-38b53c3a320f))
  (segment (start 150 91.85) (end 150.146446 91.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 77598d7f-ea8b-4253-a91f-4774e37773ac))
  (segment (start 150 89.85) (end 152 89.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7761044f-77c4-4702-be66-7e02b047a0a6))
  (segment (start 150.146446 130.35) (end 150 130.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 777de69c-1d40-4924-bdac-f4b8771c0194))
  (segment (start 155.646446 73.85) (end 155.75 73.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 77956c59-6906-4a9a-bf81-b41d01eec71a))
  (segment (start 144.353553 132.35) (end 144.25 132.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 779af18e-300d-42f4-81b0-76568e3f0270))
  (segment (start 149.75 50.1) (end 149.75 52.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 77c1517b-59a1-4024-aa12-1f134f408335))
  (segment (start 144.25 42.1) (end 144.25 44.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 77c54d5f-2bde-49ab-85cd-5c218067c158))
  (segment (start 147.75 112.1) (end 147.75 114.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 77c83d90-c56b-456f-b42b-975ca694b0c6))
  (segment (start 154.25 62.1) (end 154.25 64.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 77d8336f-f28b-462f-80cd-032e224c7175))
  (segment (start 150.146446 132.35) (end 150.25 132.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7825a192-9f23-4e0a-af01-527ca3786448))
  (segment (start 145.75 60.1) (end 145.75 59.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7840620a-8662-4c01-ad71-50fc4ded15b3))
  (segment (start 154.25 98.1) (end 154.25 100.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 78972661-3d9d-4ce5-926f-d7c1d6fd93cb))
  (segment (start 144.25 56.1) (end 144.25 58.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7906ee99-b953-441b-858f-46fcb4dc84e8))
  (segment (start 152.25 60.1) (end 152.25 62.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7915d8a2-adc3-45d6-b62f-956122ef227c))
  (segment (start 144.353553 139.85) (end 146 139.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 791913df-bfee-4944-b94c-9c41629693c9))
  (segment (start 144.353553 67.85) (end 146 67.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7951ecb0-c3e8-4315-b0ad-fdfdeffb5219))
  (segment (start 148.25 83.746446) (end 148.353553 83.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 79c9f528-38ae-487e-be63-6c703be23269))
  (segment (start 144.25 80.1) (end 144.25 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7a3811e0-8e14-45a9-9e12-d7eac691f69e))
  (segment (start 148.25 141.746446) (end 148.353553 141.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7a3ef97b-c1ee-4451-b812-c8fb6e5d5476))
  (segment (start 148.146446 79.85) (end 148 79.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7a489570-49bd-4b2d-a2a7-8ac787a09e36))
  (segment (start 153.75 68.246446) (end 153.853553 68.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7aa5da4c-a47a-4a4d-802f-dfc76c51867d))
  (segment (start 154.25 80.1) (end 154.25 80.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7b295d76-b796-4768-9fa5-6f83f61a89f7))
  (segment (start 145.75 82.1) (end 145.75 84.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7b58ebb8-1a4a-4294-ab9e-05297bf322b8))
  (segment (start 150.146446 164.35) (end 150 164.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7b9c350b-ad10-4360-a136-06a7c35ebf10))
  (segment (start 148.25 96.453553) (end 148.25 97.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7ba65019-1837-426f-9bbd-27d273a6244d))
  (segment (start 146.353553 148.35) (end 146.25 148.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7ba85cc1-dc21-4829-b8a5-d80f2a917f49))
  (segment (start 154.25 100.1) (end 154.25 102.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7bb5a324-8b59-4bb8-8b69-67cb2c89748b))
  (segment (start 155.75 167.746446) (end 155.75 166.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7be940e1-8a44-4fc0-9a04-ed67a45b4214))
  (segment (start 151.75 108.1) (end 151.75 110.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7c32070a-eeb1-4f8f-9d0e-7d7f6774aca3))
  (segment (start 147.75 86.1) (end 147.75 86.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7c7abba7-39f0-4464-a5d5-84bee13cf4d8))
  (segment (start 147.75 114.1) (end 147.75 116.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7cb8f886-6eca-4ef7-ad86-952aa7bd42d9))
  (segment (start 153.75 72.246446) (end 153.853553 72.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7cf42cbe-01c4-4a3d-af25-77fbc1d76d75))
  (segment (start 148.25 108.1) (end 148.25 110.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7d450992-5e82-4fb3-9a4f-9b3d6094acd5))
  (segment (start 148 131.85) (end 150 131.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7d5b1540-3215-496c-9481-959d355cb320))
  (segment (start 153.75 161.746446) (end 153.75 160.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7d6bb920-cce0-4c69-9159-356cc7099531))
  (segment (start 147.853553 29.85) (end 147.75 29.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7d728876-d014-4afc-81fe-39a5eefed351))
  (segment (start 150.25 112.1) (end 150.25 114.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7d9c6a23-343e-4954-afb9-98dd6e754393))
  (segment (start 150.146446 131.85) (end 150.25 131.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7daa7d8a-f1b0-496a-8a9d-96cad29c3973))
  (segment (start 151.646446 35.85) (end 151.75 35.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7dc35c89-b58e-4951-9553-71c7a4b5b7ee))
  (segment (start 148 67.85) (end 149.646446 67.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7ddde9af-2fe9-4c42-ab5e-38e47086559a))
  (segment (start 148.353553 55.85) (end 149.646446 55.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7df90c8d-93ac-4204-a96c-2685f595cb40))
  (segment (start 152.25 108.1) (end 152.25 110.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7e20534c-ee30-4ca3-af13-b76fe3097837))
  (segment (start 155.75 118.1) (end 155.75 120.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7e9d0daa-bfb5-406a-8401-1bda92557dc4))
  (segment (start 152 139.85) (end 152.146446 139.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7eda0f5e-63f8-4b52-9c19-54c251acb1e3))
  (segment (start 150.146446 95.85) (end 150.25 95.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7f0aadd2-a53b-448e-9b83-731b2def54ad))
  (segment (start 150 152.35) (end 152 152.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7f66e948-ddda-4039-ae69-7ad15f680697))
  (segment (start 145.853553 27.85) (end 145.75 27.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7f7dc94e-de6d-474f-8e07-d72ea7035956))
  (segment (start 153.75 134.453553) (end 153.646446 134.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7fc926d0-35ac-494e-ad04-ee205715d966))
  (segment (start 146 88.35) (end 145.853553 88.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7fe62fff-88ad-481a-b935-57094b1c36d2))
  (segment (start 150 74.35) (end 152 74.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 7fe6df44-c2bb-41fc-ba42-e09b3ebb5138))
  (segment (start 154 147.85) (end 154.146446 147.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 802755eb-1895-4b45-a3c2-8aade5ece015))
  (segment (start 148 135.85) (end 150 135.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 808ad860-4213-4d43-9fc0-d7b5440f446f))
  (segment (start 150.146446 166.35) (end 150.25 166.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 80998b99-6531-4d1f-99c1-833f78faee4c))
  (segment (start 154 50.35) (end 152.353553 50.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 80d06e6f-6bed-4b5d-a878-74bb736c697a))
  (segment (start 147.853553 61.85) (end 147.75 61.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 80f6a27b-6d71-4912-b04c-b1a842de9406))
  (segment (start 151.75 124.1) (end 151.75 126.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 815fee38-9d7b-432b-ac21-b9de8ea5f79e))
  (segment (start 150.25 122.1) (end 150.25 124.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 81ff2fae-9446-4077-ace5-00d218622fe0))
  (segment (start 152.353553 80.35) (end 152.25 80.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8202930c-c470-4ff4-a71d-5692907fcc8c))
  (segment (start 148 68.35) (end 150 68.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8215ac60-e696-4f80-85b7-a190af54ee49))
  (segment (start 150 42.35) (end 152 42.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 821a5408-501c-4611-9536-772d90c9b4cc))
  (segment (start 150.25 106.1) (end 150.25 108.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 822465aa-5fb9-4693-b730-095f452c4ad6))
  (segment (start 145.75 166.246446) (end 145.853553 166.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8240375a-2add-4539-94ba-a873081d5f33))
  (segment (start 152 140.35) (end 152.146446 140.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 828bdfd3-9ef3-4a19-8917-18fc8f5dd1c5))
  (segment (start 154.25 48.246446) (end 154.25 48.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 82a79a37-ab06-4da3-931b-97215d45d631))
  (segment (start 150.25 130.246446) (end 150.146446 130.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8329070b-444f-4138-98e3-8eebbf9d1b87))
  (segment (start 154.25 104.1) (end 154.25 106.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 832fae20-b633-41fc-876d-f42b90112454))
  (segment (start 151.75 76.453553) (end 151.646446 76.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 834ebe6f-50b5-4b0f-8e0d-17e76345f604))
  (segment (start 155.75 28.1) (end 155.75 26.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 83b5a37d-c535-47be-8d59-0379b093349d))
  (segment (start 144.25 130.1) (end 144.25 131.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 83f10114-2c2d-486a-8539-148b0c1f9ab3))
  (segment (start 153.75 136.1) (end 153.75 134.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8430799e-b59d-448b-90a8-5b09ee21f840))
  (segment (start 155.646446 74.35) (end 154 74.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 84748356-9b67-4cee-bed1-4a13b8abb4a9))
  (segment (start 154.25 110.1) (end 154.25 112.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 848d4736-7f5c-4f17-bdeb-1b936c598395))
  (segment (start 146 140.35) (end 144.353553 140.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 84ccea51-4b0e-444e-aed3-f85e1006c30a))
  (segment (start 150 87.85) (end 152 87.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 854463a9-a3d8-4fd0-816d-4a6c52d96467))
  (segment (start 144.25 66.099999) (end 144.25 67.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 854cc677-6c62-4f02-9e17-49bd26c8d193))
  (segment (start 153.75 136.1) (end 153.75 138.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 85631865-822e-4df8-a1aa-459ab0d883e5))
  (segment (start 148.25 55.746446) (end 148.353553 55.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 85635b3a-72cd-4a56-84e9-bc3a21fdb824))
  (segment (start 155.646446 154.35) (end 154 154.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 85989ecf-0b79-4593-a272-e5fa5c998463))
  (segment (start 149.853553 35.85) (end 150 35.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 85f4cad9-bfe4-475e-b1af-8fbe5f921894))
  (segment (start 150.25 54.1) (end 150.25 56.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 86026bd5-6589-429d-8edb-a8dcb23426b7))
  (segment (start 146 144.35) (end 148 144.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 864103c0-ceda-4613-83cf-0c784735850b))
  (segment (start 147.75 116.1) (end 147.75 118.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8671a184-c859-4d58-856d-1c396f09bb36))
  (segment (start 155.75 76.1) (end 155.75 78.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 86f04c82-0d00-403d-a947-f2e53551faf8))
  (segment (start 146 66.349999) (end 148 66.349999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8731f148-d6e4-47cc-96cd-38a7d72768d9))
  (segment (start 148.25 36.246446) (end 148.25 36.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8790348a-1cb2-46e5-b354-7eae0d111158))
  (segment (start 154 41.85) (end 154.146446 41.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 87dada21-17f1-4517-aaee-330d66466224))
  (segment (start 155.75 78.1) (end 155.75 80.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 87ee72b8-fc34-40a7-aff7-d0a267a40312))
  (segment (start 152.25 91.953553) (end 152.146446 91.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 882db671-0d9a-4f5f-9fae-0bdd420f9901))
  (segment (start 151.75 52.1) (end 151.75 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 883a97f3-d8e7-470a-ba88-42f60634a53a))
  (segment (start 146 167.85) (end 148 167.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8856e1d5-b2ef-4f7b-9b54-1c682f21662e))
  (segment (start 144.25 124.1) (end 144.25 126.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 88dc4ecc-07b4-4b8b-8c90-fbe2456502cf))
  (segment (start 150.25 36.453553) (end 150.25 38.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 890db9b6-d904-462b-814b-454265caeefe))
  (segment (start 149.75 48.1) (end 149.75 46.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 893f961d-1b3e-4fb0-89e2-6519456dd42d))
  (segment (start 150.25 68.246446) (end 150.25 68.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 89925a92-ed49-4a24-9654-1858a8346078))
  (segment (start 153.646446 141.85) (end 153.75 141.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 89986683-2645-4ebb-b384-ac4d8166330c))
  (segment (start 150 71.85) (end 152 71.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 89adc4cb-438a-4bb8-a71a-144efaf1ab73))
  (segment (start 150 86.35) (end 152 86.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 89c9428f-0ef2-4c41-a9db-19f7dc885bb8))
  (segment (start 152.146446 57.85) (end 152 57.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 89d1927e-4bca-4f7f-ac60-3cd4b9b2e3fd))
  (segment (start 150 140.35) (end 152 140.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 89f55f45-f18b-4be4-8a10-bcdd52528b87))
  (segment (start 148.25 48.1) (end 148.25 50.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8a02f4a0-6f9a-439a-a4d8-e3f53f2bc075))
  (segment (start 151.75 97.746446) (end 151.75 96.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8a235fe0-9994-4ca2-9bf1-dfc58370894a))
  (segment (start 151.75 50.1) (end 151.75 52.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8a6edbbf-0baf-480e-9319-a40ce196266f))
  (segment (start 151.646446 133.85) (end 151.75 133.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8aa21a24-3261-42e4-9524-d6046718b324))
  (segment (start 147.75 44.1) (end 147.75 42.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8aa8aa37-4e44-45bc-8c4a-cdf4524a8303))
  (segment (start 153.853553 68.35) (end 154 68.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8ae73820-692e-42c6-9dd4-6960871bf247))
  (segment (start 152.25 130.1) (end 152.25 132.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8aeb6aad-8766-4c7f-9723-ed58ec835050))
  (segment (start 148.25 97.746446) (end 148.353553 97.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8b249f82-2356-4dd8-bb39-08f601400d76))
  (segment (start 152 144.35) (end 154 144.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8b6a5a4a-e5dc-4620-93aa-f05b4bccff28))
  (segment (start 155.75 66.099999) (end 155.75 68.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8b7453d4-7ed2-4ec0-ba72-ec33f295817c))
  (segment (start 150 70.35) (end 148.353553 70.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8b882acf-b112-4f14-9c41-b7033dbb93c1))
  (segment (start 152.25 39.746446) (end 152.353553 39.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8ba3cb56-e786-4b02-af50-b0864a0a2c9e))
  (segment (start 148 154.35) (end 147.853553 154.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8baaf216-4940-434c-a3e3-2922649d9f2b))
  (segment (start 152 153.85) (end 154 153.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8baf51cf-e293-4530-8abe-a5598e69e462))
  (segment (start 146.353553 164.35) (end 146.25 164.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8c06cbd3-22a7-4487-a55d-bbd9be95b5e0))
  (segment (start 147.646446 140.35) (end 146 140.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8c20771f-dcf0-4a07-b817-1258dc34a5f8))
  (segment (start 146.25 126.1) (end 146.25 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8c35e9dd-005d-4d45-a721-2145017080d7))
  (segment (start 154.25 75.953553) (end 154.146446 75.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8ca5bc4c-c25c-4e0e-b4be-16f5a67516ec))
  (segment (start 150.146446 59.85) (end 150 59.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8d53ba9e-0d17-4782-9033-7bf0b162796b))
  (segment (start 154.146446 68.35) (end 154 68.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8d7ac02c-158e-4375-9473-ca540a62c854))
  (segment (start 149.75 104.1) (end 149.75 106.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8dac239e-68c3-4a16-bfd7-2830698f1cd0))
  (segment (start 146 41.85) (end 145.853553 41.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8e021993-82c6-4e7a-9fb2-1ec81e2d82ac))
  (segment (start 152.25 34.1) (end 152.25 36.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8e1f34a5-27da-4b13-8a1f-9459da262834))
  (segment (start 152 36.35) (end 150.353553 36.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8e84c4b6-2121-43f6-90e6-dbf41934f474))
  (segment (start 145.75 48.1) (end 145.75 50.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8eb148f5-a2a6-4eb8-b5ec-31911a58f86c))
  (segment (start 155.75 124.1) (end 155.75 126.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8f31acf2-f0cf-4a8a-910b-3f555eee4b89))
  (segment (start 153.75 122.1) (end 153.75 124.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8f3f8f33-7afa-416a-8ba4-effa28ae58f2))
  (segment (start 154.25 82.1) (end 154.25 83.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8f5c09dc-15bb-4797-921d-2bcf54074dfa))
  (segment (start 150 167.85) (end 151.646446 167.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8f6b819a-c233-4050-adab-9bc99c856218))
  (segment (start 146.25 34.1) (end 146.25 35.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8faa8b16-4601-4b1b-be43-1c2ec37e1796))
  (segment (start 152.25 135.953553) (end 152.146446 135.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8fb27d6e-93cd-4a4b-8eb5-ef05679322c8))
  (segment (start 145.75 144.1) (end 145.75 144.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8fc3cfb0-db79-44af-b213-5fac08c86294))
  (segment (start 145.75 134.1) (end 145.75 136.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 8fdf1052-3230-4bb0-a414-e24376cd3f64))
  (segment (start 145.75 86.1) (end 145.75 88.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 90c8d024-a0d2-4c49-abde-19bf478a47be))
  (segment (start 145.853553 38.35) (end 146 38.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 90e96d7b-345a-43aa-af01-5eba6bb0545b))
  (segment (start 154.25 102.1) (end 154.25 104.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 90f7d2d6-df7c-4a6c-8227-cc30c7f8714f))
  (segment (start 145.75 30.1) (end 145.75 32.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 90fddf3a-9c9e-47cb-8fab-82bcf47fccc1))
  (segment (start 148.25 100.1) (end 148.25 102.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 913b59cf-0fa7-4e35-aabb-65a8a8d70787))
  (segment (start 152 56.35) (end 151.853553 56.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9157ba18-a78e-4879-bbc7-b7b259bec100))
  (segment (start 149.646446 46.35) (end 148 46.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 915fd3bc-d3db-46fd-a6da-ba719ecec77d))
  (segment (start 148 79.85) (end 147.853553 79.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 918970cb-6f85-439e-ada4-8c6d317862ac))
  (segment (start 155.75 46.1) (end 155.75 48.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 91c2f61a-b6a9-468b-90e1-8a013c77a45d))
  (segment (start 144.353553 39.85) (end 146 39.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 91d195a1-5698-466b-87cb-d0d3eda1729f))
  (segment (start 154 142.35) (end 154.146446 142.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 920ff629-a312-491e-a6a0-479c9bc0ea78))
  (segment (start 145.75 130.1) (end 145.75 130.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 93314095-140f-4cad-9402-99c3d65b5a21))
  (segment (start 152.25 66.099999) (end 152.25 68.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 937b52a0-2417-4ab5-8b36-d59e0554f07f))
  (segment (start 147.75 136.246446) (end 147.853553 136.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 94023a31-cf56-4785-a04c-aa8adbad1263))
  (segment (start 153.75 66.099999) (end 153.75 68.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 94057799-cfa6-4710-a2b0-b38f9bff3112))
  (segment (start 153.75 138.1) (end 153.75 140.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 94816d40-f3e6-4db7-a7b9-4fb42c04e23c))
  (segment (start 149.75 83.746446) (end 149.75 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 948ac6e4-8751-4500-9bbb-b9de656a0210))
  (segment (start 153.75 64.099999) (end 153.75 66.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp 94a7825e-4f61-4d53-a529-497d5681c7bf))
  (segment (start 144.25 67.746446) (end 144.353553 67.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 94dd9443-20f1-4342-a329-d7af85e4578b))
  (segment (start 146.353553 60.35) (end 146.25 60.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 94e0a0d3-63a4-4ae2-82a8-127b609e163a))
  (segment (start 154 95.85) (end 154.146446 95.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 94fb73e3-08e7-406e-af02-171a830e4011))
  (segment (start 154.25 40.246446) (end 154.146446 40.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 951abdba-3cb7-4508-a35e-482da8304fce))
  (segment (start 152.25 106.1) (end 152.25 108.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 952d26d0-5c87-46d6-9499-6b1ba311aeb0))
  (segment (start 146.25 50.1) (end 146.25 52.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 957f1ab5-a373-4759-aefa-e468aea5d22c))
  (segment (start 144.25 136.1) (end 144.25 138.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 95838d89-74ef-47c9-8046-b468b3513a96))
  (segment (start 150.25 130.1) (end 150.25 130.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 959ae7a2-61f0-456e-be4b-948a5e29f1e0))
  (segment (start 154.25 89.953553) (end 154.146446 89.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 96745de7-1944-495c-89f8-e56a64cd13e9))
  (segment (start 153.75 58.1) (end 153.75 60.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 96932f34-3118-4ac9-a2ca-cb85588c9155))
  (segment (start 152.25 50.453553) (end 152.25 52.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 96dcacdc-47f1-43a5-b66d-ff7d294eaecf))
  (segment (start 146.25 64.099999) (end 146.25 65.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 96e2a607-ee98-4674-b339-daf7f6e6a9ea))
  (segment (start 150.146446 99.85) (end 150 99.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 96e6dafe-5745-4cff-8fc6-8abd6c7259db))
  (segment (start 153.853553 163.85) (end 153.75 163.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 96ecf596-1ae1-49cf-ad1f-88178b99e744))
  (segment (start 154.25 95.953553) (end 154.25 96.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 97276156-bdd7-46a2-81a6-87dcdaea756d))
  (segment (start 145.75 78.1) (end 145.75 80.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 97725918-f04b-4739-9088-a98add320072))
  (segment (start 146.146446 141.85) (end 146 141.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 97960186-e056-4ae4-899f-64f70eabca7e))
  (segment (start 152.146446 138.35) (end 152 138.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 97d93262-a30f-4397-bda4-cc78b2f6d64a))
  (segment (start 153.75 70.453553) (end 153.646446 70.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 988d081d-b8d5-43fa-a9fa-b507bdfe5d08))
  (segment (start 148.25 98.453553) (end 148.25 100.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 98ca66cb-9bab-45eb-9f52-b727ea4879f3))
  (segment (start 153.75 60.1) (end 153.75 62.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 99f702d8-135e-49b0-87d1-d941ab38393b))
  (segment (start 151.75 116.1) (end 151.75 118.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9a515b5c-2878-4521-b3e4-fd83fafc6d0e))
  (segment (start 145.75 130.246446) (end 145.853553 130.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9a6cc55c-5952-463d-87f6-0c826f0b9875))
  (segment (start 154.25 133.953553) (end 154.146446 133.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9a792df1-6c8a-45cb-ade2-3f0cfdb2854c))
  (segment (start 151.646446 76.35) (end 150 76.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9a89ce27-e657-4951-a5ec-410bc6b96669))
  (segment (start 154.146446 85.85) (end 154 85.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9a9bdaff-f96b-4665-91a2-ca259e9553a0))
  (segment (start 154.146446 152.35) (end 154.25 152.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9aae8dd1-6171-4b00-9a9d-5389bf4c5736))
  (segment (start 155.75 40.1) (end 155.75 42.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9b7684b4-ace2-45f8-9ab5-ec7a8d05db1b))
  (segment (start 152.25 78.1) (end 152.25 79.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9baec890-63af-47af-9d16-5ef0b1d4d26b))
  (segment (start 146.353553 134.35) (end 146.25 134.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9bc4cbb0-b6f4-41d9-95ac-6d9aa7eef0dd))
  (segment (start 149.75 78.453553) (end 149.646446 78.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9bdf0974-80c7-40c6-bef6-0efd66151e32))
  (segment (start 147.75 70.453553) (end 147.646446 70.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9c611eb1-77e6-44fa-9244-e6fade97998c))
  (segment (start 150 144.35) (end 152 144.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9c85fccb-990d-41e5-8b11-2b3fdd01b40f))
  (segment (start 154 80.35) (end 152.353553 80.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9c87e0bc-7bdd-4f4f-a0c5-86ebc4dd2bae))
  (segment (start 144.25 128.1) (end 144.25 130.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9cdda840-8308-472f-9bb6-737eb138a2cf))
  (segment (start 152.25 149.953553) (end 152.146446 149.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9d0e7124-8bb3-4079-bd81-1efe70805c26))
  (segment (start 153.75 30.1) (end 153.75 28.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9d4b87bb-e1ab-422b-a996-12fcbdbe5a2f))
  (segment (start 152 27.85) (end 154 27.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9d95cb81-ad03-45d9-bb93-ab812a4f69b9))
  (segment (start 147.75 118.1) (end 147.75 120.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9db08c6e-5a8c-4e89-a643-6c5286586e5c))
  (segment (start 152.25 69.746446) (end 152.353553 69.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9de0bd12-af2e-40a0-8d80-0c1e646168d7))
  (segment (start 145.75 148.1) (end 145.75 150.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9e112e9d-d091-4acf-be06-0a7be8c2dfec))
  (segment (start 146 58.35) (end 145.853553 58.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9e38ad57-9d6c-4005-85a6-c342c1411ed1))
  (segment (start 147.75 56.246446) (end 147.853553 56.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9e536720-3a90-47c1-ba34-76a0830cf0d1))
  (segment (start 144.25 72.1) (end 144.25 74.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9e5d6d58-8f4a-4b97-9935-6a5f069eabbc))
  (segment (start 146.25 80.1) (end 146.25 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9e7f3a1a-e279-427e-8aa5-325dd9fbf3b5))
  (segment (start 150.25 158.453553) (end 150.25 160.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9f800ab5-ef0d-47fc-b51e-c052b480d2ac))
  (segment (start 148 85.85) (end 150 85.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9f80f957-0745-499a-978e-bd86731d2648))
  (segment (start 155.75 136.1) (end 155.75 138.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9f9b3bca-7b0e-4ada-b3ec-4f9c537112da))
  (segment (start 149.75 33.746446) (end 149.75 32.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9f9e6e9e-a780-470f-9727-ce042178acf1))
  (segment (start 149.75 163.746446) (end 149.75 162.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9fa7b4c3-6a6e-4e5b-9f57-8b530327a46e))
  (segment (start 147.75 48.1) (end 147.75 50.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9fbf1c3c-e05d-43ee-b1cf-4903271a95bd))
  (segment (start 152.353553 93.85) (end 153.646446 93.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp 9fdd4b39-d524-4391-a320-1a0e29f19498))
  (segment (start 150 154.35) (end 152 154.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp a01f6647-770a-4015-853a-6250c2aba06e))
  (segment (start 148 66.349999) (end 148.146446 66.349999) (width 0.25) (layer "F.Cu") (net 16) (tstamp a025e18a-9744-4eaf-8341-515032eddb64))
  (segment (start 148 26.35) (end 150 26.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp a0600784-4783-418c-b56f-2067d28b2bb2))
  (segment (start 149.75 106.1) (end 149.75 108.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a073579b-79df-4906-91e6-8b6ba3245300))
  (segment (start 145.75 66.246446) (end 145.853553 66.349999) (width 0.25) (layer "F.Cu") (net 16) (tstamp a0abcef5-d7d2-4ac3-ae6b-87899078f2e6))
  (segment (start 155.75 44.1) (end 155.75 46.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a0cf1be7-89b1-4fc4-97f3-4e38b99d1917))
  (segment (start 155.75 131.746446) (end 155.75 130.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a0e7b5a3-14ae-4406-a921-99e3af827b00))
  (segment (start 151.646446 44.35) (end 150 44.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp a10b768f-5b0c-4c57-84de-fa2cb3bf4539))
  (segment (start 149.75 122.1) (end 149.75 124.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a13b55d6-40a5-404d-ade9-ab718bfa82a8))
  (segment (start 146.353553 93.85) (end 148 93.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp a146eb5f-685e-4229-8827-9ca9d00d52ed))
  (segment (start 148.25 32.1) (end 148.25 33.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp a148a69b-001b-46f9-8969-2fadfe6d1141))
  (segment (start 147.853553 136.35) (end 148 136.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp a150baa1-dc6a-444e-ace9-6d86dc72a80c))
  (segment (start 145.75 36.1) (end 145.75 38.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a1a9f8f2-4d4c-4e89-945c-1384b5532975))
  (segment (start 147.75 142.1) (end 147.75 142.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp a1caa588-3072-4d3c-beeb-2bfde8ec50a9))
  (segment (start 149.75 36.1) (end 149.75 35.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp a1f6b7ed-76b3-46b9-8b23-aa35e0c5ccb6))
  (segment (start 154.25 152.246446) (end 154.25 152.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a206afc9-4bac-4515-b8e8-c4affd3f3cfb))
  (segment (start 148.25 112.1) (end 148.25 114.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a22ff18d-9ad1-4c2a-8ae9-56243f46150b))
  (segment (start 148.353553 151.85) (end 150 151.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp a249b7bc-93ee-40ef-8ae9-74416adc482c))
  (segment (start 153.75 150.1) (end 153.75 148.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp a263919f-acbe-4f82-a57b-7e0d386eb1bd))
  (segment (start 146.25 98.1) (end 146.25 100.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a2670365-9e4f-46c7-8277-e0868a006eb7))
  (segment (start 148 137.85) (end 150 137.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp a2d2678f-d32f-4dc8-8a1d-c065f57d72e1))
  (segment (start 146.25 142.1) (end 146.25 143.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp a2f40e43-fc61-47d8-b16c-aa5d9e75a57c))
  (segment (start 152 158.35) (end 150.353553 158.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp a301a4a4-955f-46fc-8356-e542759e9a1e))
  (segment (start 148 38.35) (end 150 38.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp a311bee5-4ecb-41c2-9ba8-0194e1f878f3))
  (segment (start 155.75 87.746446) (end 155.75 86.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a371f19d-313a-4a60-89bd-0c64589a33f9))
  (segment (start 150.25 164.246446) (end 150.146446 164.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp a3a40b1d-00ed-45f6-9150-9d3a5409b8b6))
  (segment (start 147.853553 56.35) (end 148 56.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp a3a616c3-ab77-4705-9ee8-c9b3685f5e5f))
  (segment (start 151.75 100.1) (end 151.75 98.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp a3cf9282-8b34-460a-87f6-3a30f54401ad))
  (segment (start 145.75 89.953553) (end 145.853553 89.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp a3ea0665-e7fb-419c-9aa5-387a0277ae08))
  (segment (start 144.353553 68.35) (end 144.25 68.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp a40d6f90-ba7c-4fe0-9a1c-5c242105b1b0))
  (segment (start 152.25 164.1) (end 152.25 166.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a4130426-acf2-4bbf-9473-10121057cf70))
  (segment (start 146.353553 37.85) (end 148 37.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp a4aae30c-5664-4017-a507-f9fc4caa7520))
  (segment (start 153.75 151.746446) (end 153.75 150.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a4bb7ccc-1537-47e2-9cac-623aec26776a))
  (segment (start 153.646446 161.85) (end 153.75 161.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp a4d5e4df-0316-4a4d-b6aa-16a518f245d4))
  (segment (start 147.75 142.1) (end 147.75 140.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp a4f02f0c-16b7-4283-8279-c3d62d996fb5))
  (segment (start 150.25 131.953553) (end 150.25 132.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a4fbdeff-9289-4ffe-8c76-b2aeab130e25))
  (segment (start 147.75 85.953553) (end 147.853553 85.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp a537d369-7784-4496-b5c3-5dce1c048814))
  (segment (start 153.75 128.1) (end 153.75 130.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a55a3c6e-96ae-4928-89fc-e82c3fd5dbeb))
  (segment (start 147.75 30.1) (end 147.75 32.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a56ea111-1df6-42a6-a41b-8108f62c0b83))
  (segment (start 151.75 106.1) (end 151.75 108.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a59ad593-41ad-4340-90be-bca5bf68a085))
  (segment (start 151.75 46.1) (end 151.75 44.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp a60e8134-b0cc-41c2-8b74-3537050e13f7))
  (segment (start 152.25 100.1) (end 152.25 102.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a6222163-fb36-457e-bcd4-bbe4a06766b8))
  (segment (start 145.75 74.1) (end 145.75 74.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp a6598900-0e1a-452b-b46d-6964fe321d89))
  (segment (start 154.25 28.1) (end 154.25 30.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a659bb25-48a7-4ade-8ed9-e2efa2d60162))
  (segment (start 145.75 38.246446) (end 145.853553 38.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp a66ba108-b05f-4665-9f2b-6c363403e308))
  (segment (start 153.75 118.1) (end 153.75 120.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a6780c24-43cb-4285-ae2e-d3de53d47b72))
  (segment (start 152.25 48.1) (end 152.25 49.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp a6aac1ee-b0df-4bb1-8807-9e123c1f65a1))
  (segment (start 151.75 167.746446) (end 151.75 166.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a6dddd60-54f5-4f5e-b3bc-d8d0a6db111a))
  (segment (start 148.25 114.1) (end 148.25 116.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a71d371c-798d-44b8-8503-50dc16cbebec))
  (segment (start 147.75 100.1) (end 147.75 102.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a7200781-2e1c-4f8f-aafa-23ef7d968ba4))
  (segment (start 153.75 102.1) (end 153.75 104.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a743d438-f0d5-496e-8bcb-1b48641a2474))
  (segment (start 147.75 153.953553) (end 147.853553 153.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp a74ee4c9-c41e-4f81-a34a-bf4e122ffad6))
  (segment (start 148 153.85) (end 150 153.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp a7a2a835-c24c-47ec-979b-c346133d278b))
  (segment (start 145.75 147.953553) (end 145.75 148.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a7e1a825-7ed8-4c04-98c2-8ea802896763))
  (segment (start 150 98.35) (end 148.353553 98.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp a809afc1-1fb8-4caf-a6d7-8f449f5a7447))
  (segment (start 148.25 80.1) (end 148.25 79.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp a8633f79-96a9-437f-8f4e-bf83d1a6c50f))
  (segment (start 147.75 34.1) (end 147.75 34.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp a86bd1ca-012f-4696-8906-58e1209f720c))
  (segment (start 145.853553 147.85) (end 145.75 147.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp a885f89b-cd60-4f40-ba7c-ce1dea6d314c))
  (segment (start 147.646446 70.35) (end 146.353553 70.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp a89ac4f3-084d-42b2-94bb-d1d4da0ef9bf))
  (segment (start 144.25 110.1) (end 144.25 112.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a89d3847-4c22-4674-a6bd-4c2e0afe0830))
  (segment (start 155.75 34.1) (end 155.75 36.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a8e5923e-9846-4728-a2e6-d4fc334132ac))
  (segment (start 153.75 168.1) (end 154.95 169.3) (width 0.25) (layer "F.Cu") (net 16) (tstamp a9494c40-7c87-4237-ade8-0961fd89fb53))
  (segment (start 148.146446 36.35) (end 148.25 36.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp a95157ab-8c82-40ee-a27d-1371c167865d))
  (segment (start 150.25 92.1) (end 150.25 94.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp a9d3b3e6-3ac6-440e-8410-974090194ccf))
  (segment (start 144.25 150.1) (end 144.25 152.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp aa1e41d4-21de-419f-941e-c7163582dac1))
  (segment (start 155.75 62.1) (end 155.75 64.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp aa37f758-c9eb-4ce2-8de4-080d46cb34de))
  (segment (start 150.146446 165.85) (end 150.25 165.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp aa61c580-4417-42a1-8537-01da3bc03b9f))
  (segment (start 147.75 128.1) (end 147.75 128.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp aa63162b-9120-481e-8831-cf6d358a5a64))
  (segment (start 152.25 93.746446) (end 152.353553 93.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp aa86a202-d8ae-4f2a-bb30-ee99e958b161))
  (segment (start 147.75 72.246446) (end 147.853553 72.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp aa918c86-dfc0-488b-8544-edaeea2a9353))
  (segment (start 148.353553 42.35) (end 148.25 42.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp aaab4620-759e-42d2-aa7f-a9ea083ecc72))
  (segment (start 145.75 60.1) (end 145.75 62.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp aac4fd66-29a5-4469-b485-6d32ead0db56))
  (segment (start 151.853553 56.35) (end 151.75 56.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp aafc3ee9-675b-44ab-a316-685de2338c34))
  (segment (start 148 146.35) (end 150 146.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp aafe7a8c-e975-4e35-9b06-2197001357c9))
  (segment (start 154.25 60.1) (end 154.25 62.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ab1243a9-1144-4330-9c00-a8d6f4d7657e))
  (segment (start 146 41.85) (end 148 41.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp ab6ba9e1-4f6c-4324-914d-3a71e9939a4a))
  (segment (start 147.75 72.1) (end 147.75 70.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp ab9ee745-56f7-46ba-a84e-3c48c5f64a35))
  (segment (start 151.853553 159.85) (end 151.75 159.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp ac016ebd-66a8-494d-9126-8c58cd366ae8))
  (segment (start 150 149.85) (end 152 149.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp ac2eafa9-21df-4be1-940b-2b5c34c5b5a3))
  (segment (start 150.25 165.953553) (end 150.25 166.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ad16110b-5788-4a1b-ac60-61cf7cdb39bd))
  (segment (start 154.25 83.746446) (end 154.353553 83.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp ad2de130-9d69-4490-b2af-5894f3ee38be))
  (segment (start 150 95.85) (end 150.146446 95.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp ad5ec8d7-ee9e-4d4f-99cd-a4b1ca8ee1fa))
  (segment (start 151.75 69.746446) (end 151.75 68.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ad7f91a2-3e7a-46f8-bae8-adb61d548d53))
  (segment (start 150.25 46.1) (end 150.25 48.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp adb0fbb0-0bf5-42a0-a931-8295aa52dd6f))
  (segment (start 154.146446 72.35) (end 154.25 72.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp add8a6d3-e8e0-49da-ab95-1abe396fdfd0))
  (segment (start 153.75 44.1) (end 153.75 42.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp ade1180d-5c90-4df6-9594-1f8dccd201d4))
  (segment (start 152.25 82.1) (end 152.25 84.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp adf34ce8-e059-4956-b182-89e0154db386))
  (segment (start 154.146446 80.35) (end 154 80.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp ae12b2b9-d1f1-4701-b3f6-ae9ae93bf422))
  (segment (start 152.25 160.1) (end 152.25 161.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp ae1c0ab1-7820-401b-b99e-d90b0174c8fd))
  (segment (start 147.75 92.1) (end 147.75 92.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp ae386c46-89ae-4d4d-85f6-1a09bdbabb0a))
  (segment (start 150.25 84.246446) (end 150.25 84.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ae51a92d-71ec-4829-a8c8-cfee75c766d3))
  (segment (start 154.146446 147.85) (end 154.25 147.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp aed25d25-930b-416c-beee-7e5e964bfa5d))
  (segment (start 149.646446 78.35) (end 148 78.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp aed7e206-6141-4650-9002-eb61a0e0fbab))
  (segment (start 152 26.35) (end 154 26.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp af0169d0-c3b9-44f7-b6b5-c764329f54f0))
  (segment (start 153.75 164.1) (end 153.75 166.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp af67b1af-1e76-4c5f-9159-b346b05988c4))
  (segment (start 145.75 126.1) (end 145.75 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b02737e1-6af1-48a3-b4a9-d2fd045d9149))
  (segment (start 149.646446 55.85) (end 149.75 55.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp b02c42b2-61ea-4952-b1ac-110007720a37))
  (segment (start 153.75 39.746446) (end 153.75 38.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b0317722-9846-4af5-bb69-63eb6ad96378))
  (segment (start 152.25 36.246446) (end 152.146446 36.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp b05d1431-1597-4766-8424-91bc9a459587))
  (segment (start 148.25 72.1) (end 148.25 72.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp b061df3b-9de2-40e4-a697-ae0c8aa4a947))
  (segment (start 150 97.85) (end 151.646446 97.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp b06cadb8-a811-4e2e-b43b-6ce422a2c82d))
  (segment (start 150 150.35) (end 148.353553 150.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp b099ce09-e59f-43ae-add0-71056c8576f9))
  (segment (start 148 95.85) (end 147.853553 95.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp b0fa66ca-f819-45eb-a3c7-9a352a36c3ae))
  (segment (start 145.853553 163.85) (end 146 163.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp b132c2c5-2b84-4240-a2a0-91845bbe89e4))
  (segment (start 151.75 92.1) (end 151.75 94.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b1d04f50-440c-4643-8c96-1f79126c7a49))
  (segment (start 146.25 143.746446) (end 146.353553 143.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp b299719b-389d-435c-a9f3-6e883e4c600e))
  (segment (start 144.25 60.1) (end 144.25 62.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b2ce90f7-198a-4971-8f41-8d3b2dcd429d))
  (segment (start 152.353553 39.85) (end 153.646446 39.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp b2e2dc01-78ff-4e14-9100-c2cfb2c4f2f3))
  (segment (start 155.75 100.1) (end 155.75 102.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b307377b-e677-4b15-850a-9d057e541a52))
  (segment (start 144.25 98.1) (end 144.25 100.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b368e602-4f87-41af-a566-34859c7a7275))
  (segment (start 146.25 57.746446) (end 146.353553 57.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp b383bff1-1f39-46cf-b1dd-2435e49f5514))
  (segment (start 145.75 104.1) (end 145.75 106.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b3a3be8a-c6ff-4b55-80b8-9897e7085b9c))
  (segment (start 149.75 118.1) (end 149.75 120.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b3d04564-4377-4dd2-9b70-4af675a09b47))
  (segment (start 148 148.35) (end 146.353553 148.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp b41aafd4-66b0-4bbf-8770-16132fe9e16a))
  (segment (start 145.75 94.1) (end 145.75 96.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b4aced96-148e-428c-99b9-8e15facf21ca))
  (segment (start 151.75 73.746446) (end 151.75 72.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp b4e77a63-8905-4b85-b4f5-ea0dfd8c91a6))
  (segment (start 152.25 64.099999) (end 152.25 66.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp b4f9aaa0-6afa-487c-9c45-d16b736a6db8))
  (segment (start 154 163.85) (end 153.853553 163.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp b509fe79-07cf-48d8-84bc-0b2ca916a736))
  (segment (start 145.75 152.1) (end 145.75 154.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b51b9557-ed36-4c16-812a-89cc7fe35870))
  (segment (start 149.853553 99.85) (end 149.75 99.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp b547f39d-d257-476b-b9de-40477bc0f069))
  (segment (start 148 69.85) (end 150 69.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp b561f9ef-ca93-4d16-a5fc-ce00b351881a))
  (segment (start 154.25 166.1) (end 154.25 167.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp b58627fc-6a56-4aec-99f2-fc8543f5ba44))
  (segment (start 148.25 110.1) (end 148.25 112.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b58b1885-a99d-45c6-8a4a-60329e0eac94))
  (segment (start 154 73.85) (end 155.646446 73.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp b5c63377-6e19-40d5-b55d-2898b7342f5f))
  (segment (start 155.75 148.1) (end 155.75 150.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b5d4fdc6-0367-4610-904c-6c3e6f3c6e85))
  (segment (start 150.25 32.1) (end 150.25 34.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b5fdc1f8-a473-4d3f-904a-5332ce6d5bd8))
  (segment (start 147.75 158.1) (end 147.75 160.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b6035998-68b1-495f-9e4b-82419c1cf1e5))
  (segment (start 153.75 55.746446) (end 153.75 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b60e9f86-9c78-4f91-8872-ad11ad08bdca))
  (segment (start 152 154.35) (end 154 154.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp b617620b-61f2-461c-985a-39b502a66884))
  (segment (start 145.853553 69.85) (end 145.75 69.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp b6194f1d-5f48-4757-808f-f5451448b420))
  (segment (start 145.75 96.1) (end 145.75 98.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b620efb1-ffd6-45c0-bfcb-90794f2c3e73))
  (segment (start 155.75 158.1) (end 155.75 160.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b62662c0-b569-47bd-8828-f0d14626c3f3))
  (segment (start 155.646446 131.85) (end 155.75 131.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp b6611820-f892-48e0-94cc-d7f39cb061f3))
  (segment (start 155.75 86.1) (end 155.75 84.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp b66c1abf-320b-48c7-b130-eb9878c96b59))
  (segment (start 153.75 132.1) (end 153.75 132.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp b6915f6c-9a07-4fd7-a2a3-dd22c69f1218))
  (segment (start 155.646446 87.85) (end 155.75 87.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp b6b0ef16-fddd-44d6-a795-a3360da9cfb1))
  (segment (start 149.75 43.953553) (end 149.75 44.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b6f5cdc9-f07d-4f8d-af91-e32987a8bcf7))
  (segment (start 145.75 92.1) (end 145.75 94.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b786f7ea-f259-41c4-b730-00eb9d5d9859))
  (segment (start 146 138.35) (end 148 138.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp b79a47ba-1e88-431a-a7d8-197876b0dce8))
  (segment (start 154.146446 94.35) (end 154 94.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp b7d12aa4-9b38-4c92-93e7-9b066bb6200f))
  (segment (start 152.25 136.1) (end 152.25 135.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp b7ebb25c-027c-4f20-aa47-b90a4edb6fcf))
  (segment (start 145.75 124.1) (end 145.75 126.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b82f4550-d144-4c00-a9cb-fe34f18bc2b5))
  (segment (start 155.75 110.1) (end 155.75 112.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b8b0e9cd-fd90-406a-8740-0fbe17f9e259))
  (segment (start 144.25 108.1) (end 144.25 110.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b8b1c1f1-4fde-42c4-a179-dc572f59157a))
  (segment (start 148.25 80.1) (end 148.25 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b8f1047e-cf86-47f0-8e9e-1898ddddb682))
  (segment (start 145.75 164.1) (end 145.75 163.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp b9033933-f8ad-4ef4-9eef-a606caafb441))
  (segment (start 148 154.35) (end 150 154.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp b9639e19-74da-4928-be6c-3c0d2febfbd6))
  (segment (start 154.25 86.246446) (end 154.25 86.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b9713d98-ac16-4313-91cd-ad372e05e077))
  (segment (start 145.75 41.953553) (end 145.75 42.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b9ae0f27-0e8f-4bad-a3a7-3a0225730706))
  (segment (start 150.25 64.099999) (end 150.25 66.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp b9bb97ae-ea46-45f7-835f-f217ca713823))
  (segment (start 154.25 58.1) (end 154.25 60.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b9d9ba5b-d23d-4566-b02f-15891acbd2bb))
  (segment (start 152.25 139.953553) (end 152.25 140.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b9ddb5d6-7f54-4ece-bc4a-b3f5cfe805f8))
  (segment (start 144.25 60.1) (end 144.25 58.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp b9ddeb85-8b0a-4993-b058-9a5f2ac40404))
  (segment (start 144.25 26.453553) (end 144.25 28.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ba14cb19-eaf4-4df2-b33a-4583f3aeeeb9))
  (segment (start 150.146446 96.35) (end 150.25 96.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp ba30094a-bd96-412a-bdf1-b384d50a1453))
  (segment (start 147.853553 86.35) (end 148 86.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp ba4c3c3c-0388-467d-b7af-0a3bf69a9d20))
  (segment (start 147.75 92.246446) (end 147.853553 92.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp ba75d719-1d44-495a-a1d9-4609180fe2ab))
  (segment (start 155.75 162.1) (end 155.75 164.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ba7f9c16-cae8-42f7-ba29-4711b117b0e7))
  (segment (start 146.25 65.746446) (end 146.353553 65.849999) (width 0.25) (layer "F.Cu") (net 16) (tstamp ba8df73b-6af8-4d92-8ea0-12e0424f0651))
  (segment (start 146 162.35) (end 148 162.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp baed212c-4471-4154-8358-5df163ff7e40))
  (segment (start 148 74.35) (end 150 74.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp bb06c597-3d28-4c9a-8225-78cf881f9a07))
  (segment (start 146.353553 165.85) (end 148 165.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp bb12dbde-9dd2-4057-825c-37629e049fe4))
  (segment (start 144.25 82.1) (end 144.25 84.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp bb432488-94b1-45ff-b13c-7dd3bf82537b))
  (segment (start 146.353553 42.35) (end 146.25 42.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp bb5e6617-8e27-45a9-bbf5-18fe42a0ae61))
  (segment (start 152.353553 55.85) (end 153.646446 55.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp bbc39855-0757-4a41-a344-225771c6192d))
  (segment (start 153.75 76.1) (end 153.75 78.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp bc6dc6ed-fe95-4e23-8b85-511adaa9fe6a))
  (segment (start 153.853553 132.35) (end 154 132.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp bcb5aedd-e839-43b1-b909-34919b09bde6))
  (segment (start 145.75 84.1) (end 145.75 86.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp bcd1ff85-1c96-4ac5-ade0-9d2231b0dfa0))
  (segment (start 144.25 84.1) (end 144.25 86.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp bd60de03-d5cb-45bb-a345-b3b6db2164ff))
  (segment (start 154.25 142.246446) (end 154.25 142.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp bd63e625-28d4-4a8c-b99c-9ea9769ad571))
  (segment (start 144.353553 145.85) (end 146 145.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp bd9323b1-716b-4c4d-8502-4ad143a6404e))
  (segment (start 144.353553 131.85) (end 146 131.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp bdc95ade-8562-4502-b44f-43b0b190b3c7))
  (segment (start 150 142.35) (end 152 142.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp be2574ce-28bf-41a6-8d26-0dabdb179f67))
  (segment (start 153.646446 90.35) (end 152 90.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp be91dbd2-2406-4dfe-a4d2-b45d727c1ffd))
  (segment (start 148 130.35) (end 150 130.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp beb29d37-e63d-4afb-bb74-659392bc630f))
  (segment (start 150 27.85) (end 152 27.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp bee5b70c-68ed-4eee-8c95-a425f36da661))
  (segment (start 148 145.85) (end 150 145.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp bf1cf8a8-14b1-4ac8-b6c7-62b76cd63854))
  (segment (start 146.25 129.746446) (end 146.353553 129.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp bf24f9de-19dc-4c38-a15b-18646df45198))
  (segment (start 146.25 158.1) (end 146.25 160.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp bf305d8d-97d5-4e96-a649-24c01a9f4476))
  (segment (start 152.25 44.1) (end 152.25 46.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp bf34cd21-071b-4ca0-9fc2-af688828a10a))
  (segment (start 154.146446 95.85) (end 154.25 95.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp bf81935e-daaa-4d68-9d14-3efcb0f87d28))
  (segment (start 150.25 124.1) (end 150.25 126.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c0094e53-0565-4485-ae0c-070f57742f72))
  (segment (start 152 86.35) (end 154 86.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c023332f-7d0a-4c1f-8837-780f99836836))
  (segment (start 146 130.35) (end 148 130.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c03545ea-956a-4307-94f2-b8c47ab0e654))
  (segment (start 154.25 92.1) (end 154.25 94.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c0382b7c-56f4-421d-9470-4100aab97bf6))
  (segment (start 148.25 50.1) (end 148.25 52.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c057455e-f4fb-49eb-96b2-8708563c153e))
  (segment (start 150.25 95.953553) (end 150.25 96.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c0cb1369-c896-4d34-9b68-a24e03cbc4eb))
  (segment (start 148.25 140.453553) (end 148.25 141.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp c17b11b5-d574-45f6-9070-27965bcb0b05))
  (segment (start 146.25 156.1) (end 146.25 158.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c17c1946-615b-471f-a914-39a914c9f833))
  (segment (start 144.353553 140.35) (end 144.25 140.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp c18ed642-169a-4488-9a9d-da2fe6b4ccfd))
  (segment (start 148 28.35) (end 150 28.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c1abec31-0241-4f32-affb-661e4a58f91b))
  (segment (start 152.25 112.1) (end 152.25 114.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c1b96158-ea35-4713-ad5e-87f6386b7da6))
  (segment (start 145.55 168.5) (end 145.05 169) (width 0.25) (layer "F.Cu") (net 16) (tstamp c1bed5f9-fd18-4595-8b59-edc830c7da87))
  (segment (start 150 156.35) (end 152 156.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c22d5c56-7d4a-49cd-a7c6-e3b2159f6c50))
  (segment (start 147.75 150.1) (end 147.75 152.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c23e798c-f59a-427f-93f8-b3d1944bcaab))
  (segment (start 144.25 156.1) (end 144.25 158.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c241c255-c1d1-4773-9251-87ed1285bcfd))
  (segment (start 154.146446 41.85) (end 154.25 41.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp c25f523a-84bb-48d7-a214-cb6d0487a6c9))
  (segment (start 152.353553 85.85) (end 154 85.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp c25fe04f-4c77-46c0-a144-38634fc16c6b))
  (segment (start 149.75 80.1) (end 149.75 78.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp c27d8dd0-43ba-4fa0-9190-cad5a46972aa))
  (segment (start 147.853553 46.35) (end 147.75 46.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp c28f8dcd-e637-4ac6-bca4-4e72bdaad641))
  (segment (start 150 151.85) (end 152 151.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp c2cbe721-8c90-4b9f-b125-2ce51a159304))
  (segment (start 153.75 90.453553) (end 153.646446 90.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c2cdf3ae-5233-4704-a430-6ea2f16e058a))
  (segment (start 154.146446 81.85) (end 154.25 81.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp c2d5a5d1-f00c-43ae-810d-ba331dd583dc))
  (segment (start 148 149.85) (end 150 149.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp c302aa48-910a-4b3d-a79a-730a9ec32dba))
  (segment (start 144.25 78.1) (end 144.25 80.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c32fdfd3-d41f-404b-8f5c-3c2e7af05a1f))
  (segment (start 148 148.35) (end 150 148.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c3439995-3f4b-4454-8a2c-c648881e140a))
  (segment (start 148.25 44.1) (end 148.25 45.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp c36cf09d-04e4-4a2f-bf01-1b5c7aafbd07))
  (segment (start 145.75 114.1) (end 145.75 116.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c36e1e8e-4103-4d1c-b15f-d64f9300b278))
  (segment (start 152.25 118.1) (end 152.25 120.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c3792410-ccdf-4cbf-bdac-95850e85987d))
  (segment (start 152.25 68.1) (end 152.25 69.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp c37a9a57-afd1-4b72-8415-287fc746ad99))
  (segment (start 145.75 77.953553) (end 145.75 78.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c3bb0db4-7408-4966-bbd8-508adbc398f8))
  (segment (start 148 60.35) (end 146.353553 60.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c3c6089b-9eea-4bf4-b310-dea48acd0296))
  (segment (start 145.75 108.1) (end 145.75 110.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c42792c2-2811-4d06-a84b-e7af17a90280))
  (segment (start 145.75 118.1) (end 145.75 120.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c436552a-663f-4b73-a8d7-919ce280b688))
  (segment (start 150.146446 84.35) (end 150.25 84.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp c4411367-c002-4996-8fe3-8c1741fedf49))
  (segment (start 150 132.35) (end 150.146446 132.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c452bff1-8429-4bb9-95cc-44e586d83dbf))
  (segment (start 150 31.85) (end 149.853553 31.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp c452cc37-8507-4c2b-a380-09f951c5c991))
  (segment (start 152 146.35) (end 154 146.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c4d0018b-1168-4fc9-96c6-248c2ff19e38))
  (segment (start 144.25 68.453553) (end 144.25 70.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c4fa910a-0920-4cdd-81f3-ae8e98ab3d70))
  (segment (start 153.75 98.1) (end 153.75 100.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c52b50af-2931-4e8c-95a8-81a8a35ed202))
  (segment (start 148.25 128.246446) (end 148.25 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c533d94f-2fa2-4cda-8477-6bb9a860dd9f))
  (segment (start 154.25 44.1) (end 154.25 46.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c549ab7c-108f-4e7f-bbb9-95995075b909))
  (segment (start 149.75 62.1) (end 149.75 60.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp c566213a-4904-436c-b01c-6456edffcb27))
  (segment (start 148 135.85) (end 147.853553 135.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp c5b5652d-a0ae-4a58-9a41-59cb7487fe9e))
  (segment (start 144.25 139.746446) (end 144.353553 139.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp c5b6a9f0-9a49-47b2-8f32-680682ebe099))
  (segment (start 147.75 46.246446) (end 147.75 46.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c60638db-134a-4495-960f-0cad0a6ee1c9))
  (segment (start 146.353553 78.35) (end 146.25 78.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp c662e4d4-e8c3-468f-9c8c-75f76f52dee5))
  (segment (start 145.75 110.1) (end 145.75 112.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c687c699-e6bb-4998-95ad-32a8289aae37))
  (segment (start 148 164.35) (end 146.353553 164.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c688c0d2-8c26-40a0-9c7b-c3708c9cea79))
  (segment (start 153.75 72.1) (end 153.75 70.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp c770a699-787b-4912-8c5d-03b09087d3a1))
  (segment (start 148.146446 61.85) (end 148 61.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp c7c5fa69-8943-4040-b417-edfeb462ce6d))
  (segment (start 152.25 55.746446) (end 152.353553 55.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp c7dbd8da-9802-4856-93ff-603407a7f9c7))
  (segment (start 154.25 40.1) (end 154.25 40.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp c7e5241e-d578-4dae-8c25-5b8954a7cceb))
  (segment (start 148.25 124.1) (end 148.25 126.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c7f248db-68d6-42d7-a899-90e75d95dcd9))
  (segment (start 145.75 163.953553) (end 145.853553 163.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp c8363c4d-f3ee-4fee-b919-5bb77d6bd347))
  (segment (start 153.75 148.453553) (end 153.646446 148.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c866a829-4b00-4f05-8c70-9165ec1107a9))
  (segment (start 155.75 83.746446) (end 155.75 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c875184b-d9e0-422a-8731-0589d137ec2e))
  (segment (start 146 68.35) (end 148 68.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c8b85fb6-dbd4-41d7-b9e5-7a183e0598ae))
  (segment (start 150.146446 68.35) (end 150.25 68.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp c8f14719-422b-4872-9fed-e2712c017691))
  (segment (start 155.75 74.453553) (end 155.646446 74.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c916d261-5bd9-4b5c-bddf-ddd5474685d1))
  (segment (start 144.353553 76.35) (end 144.25 76.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp c94d4cdc-67ff-42c0-a620-4e4befe50c21))
  (segment (start 150 84.35) (end 150.146446 84.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp c974ea0c-3632-44cf-a42d-8ef90d8b52c3))
  (segment (start 144.25 32.1) (end 144.25 34.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp c9ca8f12-729f-4770-b9d4-e27dafab7193))
  (segment (start 148 93.85) (end 149.646446 93.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp ca29ad48-055d-4c89-9be8-f1d725eb7db1))
  (segment (start 152.25 120.1) (end 152.25 122.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp cb56f804-b452-4747-af72-80070730ff80))
  (segment (start 153.75 106.1) (end 153.75 108.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp cb608ee6-308b-404b-9200-2f18b8a008b9))
  (segment (start 147.75 86.246446) (end 147.853553 86.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp cb829da5-bfc3-457d-9560-e3f72f613dea))
  (segment (start 152.25 110.1) (end 152.25 112.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp cbdb3f42-e028-439a-a6ff-d20d5333ccc4))
  (segment (start 148 91.85) (end 150 91.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp cc18d8e9-fcc1-4f89-a06e-d0416a830a21))
  (segment (start 154.25 134.1) (end 154.25 133.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp ccea29d6-71ef-4d37-a743-84fe439b7649))
  (segment (start 151.646446 73.85) (end 151.75 73.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp cd110980-8896-4848-a420-95072793a735))
  (segment (start 148.25 122.1) (end 148.25 124.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp cd183e90-4fbf-4c81-84c6-ea8c074f7ce7))
  (segment (start 147.75 154.1) (end 147.75 153.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp cd526311-34de-4ac6-9386-8d5dbe82f89f))
  (segment (start 150.25 82.1) (end 150.25 84.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp cd80b4b2-3a0f-4303-b420-a4cc006e4b1f))
  (segment (start 147.646446 65.849999) (end 147.75 65.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp cdc92653-fe0d-453e-b54a-d49cf65d95be))
  (segment (start 146.25 108.1) (end 146.25 110.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp cdd20dec-1030-411d-b31a-93e8bc3d8e2c))
  (segment (start 147.75 50.1) (end 147.75 52.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ce04c04b-bb6f-4e7a-bd13-83797fe1a3d9))
  (segment (start 154.25 86.1) (end 154.25 85.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp ce41a0fa-ef5a-43f7-a280-0844f328209c))
  (segment (start 147.75 149.953553) (end 147.75 150.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ce768776-c071-45de-ae7b-f60a9eeda5ce))
  (segment (start 147.75 102.1) (end 147.75 104.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ce7dbaf4-2dc5-4e4d-90b1-1d904bba88f3))
  (segment (start 155.75 92.1) (end 155.75 94.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp cea4f212-cffa-4f84-9ab0-b0dc7bdb3f58))
  (segment (start 155.75 134.1) (end 155.75 132.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp cf1b0c1d-d571-499c-942c-97a59f02fe5c))
  (segment (start 151.75 92.1) (end 151.75 91.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp cf797932-ca73-475f-8c02-957505df8958))
  (segment (start 151.646446 72.35) (end 150 72.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp cfd3fea9-0961-48cd-a822-b8ceab4c0940))
  (segment (start 146.353553 137.85) (end 148 137.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp cfd9a5cb-a101-4ebf-8bf8-69d99d53266c))
  (segment (start 151.75 78.1) (end 151.75 76.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp cfe66d7d-34ee-4fe4-802d-dc5291f18e3e))
  (segment (start 155.646446 156.35) (end 154 156.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp d00741f6-1a8a-42b8-bf03-3932becf5dcf))
  (segment (start 147.75 108.1) (end 147.75 110.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d02b7e2c-80d3-4c8a-a797-7ccd63b53b30))
  (segment (start 152 145.85) (end 154 145.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp d04a2f76-5ccc-455a-a108-0f408610695a))
  (segment (start 150.25 164.1) (end 150.25 164.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp d06221a5-36af-4b6a-b59d-8b8336e794b5))
  (segment (start 150 69.85) (end 151.646446 69.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp d07c6c21-b428-4b39-a9c6-c1091e9a6535))
  (segment (start 150 28.35) (end 152 28.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp d08ca017-d418-4494-b72e-5eb9beeb011e))
  (segment (start 150.146446 34.35) (end 150.25 34.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp d0abf9b8-239d-47f4-88de-f1b22276010a))
  (segment (start 147.75 96.1) (end 147.75 98.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d0b09339-a5a1-41dd-8024-8b1490ea487a))
  (segment (start 148 34.35) (end 150 34.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp d0c8e185-f3de-4e22-852b-53e9da4960ff))
  (segment (start 148.25 150.453553) (end 148.25 151.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp d0c98e35-f52e-4ccb-8747-e6f522b1b636))
  (segment (start 144.25 50.1) (end 144.25 52.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d12ed2a8-eec9-4c69-9eb8-35e7fcc5aad3))
  (segment (start 148.353553 96.35) (end 148.25 96.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp d1531992-7adc-47b9-a2cb-d2b974a77c24))
  (segment (start 150 141.85) (end 152 141.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp d1a26cbe-59df-4d0a-95a8-e36b81963e14))
  (segment (start 148.353553 98.35) (end 148.25 98.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp d1b2cc32-0cff-41ac-a428-92af2e5a4399))
  (segment (start 155.75 54.1) (end 155.75 56.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d1e43dcf-8bd0-4b63-b583-6db2ebf63bbf))
  (segment (start 145.05 169) (end 145.05 171.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d201da91-926d-4309-9fa7-8e80dc8975f1))
  (segment (start 155.646446 143.85) (end 155.75 143.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp d228a7f8-fb6e-477d-bc27-e110111d14d5))
  (segment (start 155.75 64.099999) (end 155.75 66.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp d22b8f75-eb9c-40fc-8546-dab20ad12785))
  (segment (start 153.853553 48.35) (end 154 48.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp d25e87cf-cec8-4401-9a20-480a3fba3a1f))
  (segment (start 149.75 108.1) (end 149.75 110.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d28c20b1-7834-464e-a7b2-3186b2d5be11))
  (segment (start 153.75 79.746446) (end 153.75 78.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d29efcd0-b12f-4c8a-a5b5-0fece8c4c333))
  (segment (start 148.146446 35.85) (end 148.25 35.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp d2a3daa2-5d0a-4d3d-b33a-9b7676d06da8))
  (segment (start 151.75 44.453553) (end 151.646446 44.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp d34ed39a-2870-4a14-8fdf-c20bcbb09cd5))
  (segment (start 147.75 29.953553) (end 147.75 30.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d3585b11-e884-4550-a4a5-ffe7c4fb5f51))
  (segment (start 151.75 110.1) (end 151.75 112.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d363859a-c792-4563-9fe2-59c78b9c5ba7))
  (segment (start 152 40.35) (end 154 40.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp d3d0fb3d-d9bf-4596-9836-b9c23d2ad5bf))
  (segment (start 153.75 132.246446) (end 153.853553 132.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp d41da9b6-d5ac-4c1e-bb9e-3ad0bc7a9668))
  (segment (start 146.353553 73.85) (end 148 73.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp d4aa6648-ea5d-47cf-b813-8f71d55dd76b))
  (segment (start 152 89.85) (end 154 89.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp d4b0ada0-166e-4d15-a418-ef9ca1c89910))
  (segment (start 148.25 162.246446) (end 148.25 162.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d4e54a3f-869b-4773-9b1a-1384d127008a))
  (segment (start 148.25 160.1) (end 148.25 162.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d50fc66e-57b7-4ff1-bbc9-453b765dedf8))
  (segment (start 155.75 96.1) (end 155.75 98.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d50ff4f3-23e2-4869-a9ec-c67b5e62aeff))
  (segment (start 154.25 146.1) (end 154.25 145.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp d56c7a4d-ba0d-4eb1-bf6e-506ebdb017ad))
  (segment (start 151.75 85.746446) (end 151.75 84.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d56ce16a-9dc4-48e6-90ee-830465ce3eca))
  (segment (start 148 90.35) (end 146.353553 90.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp d591f891-1fef-4f35-a489-b1f6c6dd4922))
  (segment (start 147.646446 42.35) (end 146.353553 42.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp d62f7e59-5577-4047-9c13-3dc54ea911de))
  (segment (start 153.853553 72.35) (end 154 72.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp d668ebee-9662-4dc6-83c5-28e05475080d))
  (segment (start 147.75 56.1) (end 147.75 56.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp d6abb61a-e00e-4a15-abc9-3a338b9caeb4))
  (segment (start 150 29.85) (end 152 29.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp d700c19c-bc96-464f-b50b-3fdad65df3f9))
  (segment (start 152.25 92.1) (end 152.25 91.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp d744126d-07f3-4670-a662-e6a410d83968))
  (segment (start 153.75 108.1) (end 153.75 110.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d7443a1a-8ce9-419b-bc1c-460faa2651a5))
  (segment (start 145.75 106.1) (end 145.75 108.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d79e1a36-9478-49ca-b5ae-c01e980c97c1))
  (segment (start 150.146446 31.85) (end 150 31.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp d7aabd20-a645-41af-943d-a0c0c990c4a4))
  (segment (start 150 70.35) (end 152 70.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp d7b67c77-399a-4d4d-bd78-81804d18ebd0))
  (segment (start 155.75 90.1) (end 155.75 88.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp d7e2e83d-4b97-40ac-85f4-5b29899f0bfb))
  (segment (start 145.75 27.953553) (end 145.75 28.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d7e4baad-8df9-4347-97da-c641d0f085d2))
  (segment (start 152.353553 162.35) (end 152.25 162.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp d83ad8d5-ccae-4a2f-8edf-afc7975590dd))
  (segment (start 155.75 38.1) (end 155.75 40.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d878bdf5-9d8e-41bb-a929-8f7042c13eb2))
  (segment (start 154.353553 131.85) (end 155.646446 131.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp d8941c04-8aa7-420f-9a8a-18574c04fa82))
  (segment (start 154.25 163.953553) (end 154.25 164.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d9148a32-753b-47bb-9f19-206e95e96201))
  (segment (start 147.75 82.1) (end 147.75 84.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d91f91df-80d9-45c4-adcd-846760bc5990))
  (segment (start 147.75 91.953553) (end 147.75 92.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp d92e7177-7614-4a44-b7ba-0f11506d772c))
  (segment (start 151.75 120.1) (end 151.75 122.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp da233594-897a-416b-ab5a-7fef97150899))
  (segment (start 152.25 161.746446) (end 152.353553 161.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp da3ba9b6-f12b-40c9-a843-9225bb056d61))
  (segment (start 154.146446 75.85) (end 154 75.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp da3d66d8-30f4-40cd-b27f-f380a44a6ba2))
  (segment (start 155.75 84.453553) (end 155.646446 84.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp da6988c0-71c3-4d15-8ff9-22a05062b69a))
  (segment (start 148.25 54.1) (end 148.25 55.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp daae9c86-6b12-4925-b347-4f66a42e1000))
  (segment (start 150 88.35) (end 152 88.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp dab7d2e1-dd6e-44f7-8b12-367ed4d09c1a))
  (segment (start 148 57.85) (end 150 57.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp dae9bceb-1bfb-4882-8571-87b63690b909))
  (segment (start 146.25 104.1) (end 146.25 106.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp daf32cd8-db30-4256-af6b-c69a61ed105b))
  (segment (start 152.25 73.746446) (end 152.353553 73.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp db8dc552-7ef7-40f0-95b3-9b5b4d103674))
  (segment (start 144.25 86.1) (end 144.25 88.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp dc38ef65-4b45-4a3e-acb8-9e610e98134c))
  (segment (start 147.853553 91.85) (end 147.75 91.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp dc51b01d-9a21-418c-b162-8251cc5f6fe4))
  (segment (start 148.353553 141.85) (end 150 141.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp dc5ad42a-a003-4354-918e-4fe15c9fbc87))
  (segment (start 144.25 90.1) (end 144.25 92.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp dc682b48-e6e2-4656-bcbc-f2aa25e71111))
  (segment (start 154.25 134.1) (end 154.25 136.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp dc6e6d17-dc92-4c77-9c05-b239c0131bf7))
  (segment (start 148.146446 66.349999) (end 148.25 66.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp dc886511-bda5-4461-872a-d3cf4aaca3a5))
  (segment (start 147.75 152.246446) (end 147.75 152.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp dca395b9-2c0e-4fba-a9e5-1e15b21b9c05))
  (segment (start 145.853553 74.35) (end 146 74.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp dd49f189-3706-4991-9126-020d124a5df5))
  (segment (start 147.75 104.1) (end 147.75 106.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp dd4bfe2f-ba5a-4c69-9eae-98718465b966))
  (segment (start 148 94.35) (end 150 94.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp dd6ae7d6-15fd-42bb-864f-b24de9af8ea2))
  (segment (start 154.25 90.1) (end 154.25 92.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp dd837127-f373-4642-9046-b67c9381c9bf))
  (segment (start 146 163.85) (end 148 163.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp dda8d380-f369-4c1e-87fe-b9e3e957f39f))
  (segment (start 150.25 56.246446) (end 150.146446 56.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp ddbcaaa8-c676-4cda-ba19-66d66024a14e))
  (segment (start 144.25 164.1) (end 144.25 166.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp dde83718-a08e-4418-9ab4-403d77041f9e))
  (segment (start 148 167.85) (end 150 167.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp de24697b-541c-4132-8414-b08b9f7fe622))
  (segment (start 146 133.85) (end 148 133.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp de54c4eb-2f6a-40e4-a309-b28bf0a70b74))
  (segment (start 154.25 72.246446) (end 154.25 72.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp de5527a2-78e1-4e95-ab29-ad83893b0ea3))
  (segment (start 150.146446 56.35) (end 150 56.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp de8118a5-0836-47b3-9ce5-e6ef2fd9a4ae))
  (segment (start 155.75 122.1) (end 155.75 124.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp de8b646d-4878-4508-8893-1b4918f0b6b7))
  (segment (start 150 155.85) (end 152 155.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp dee7bfad-583b-4d3b-811f-8f919eda3a6a))
  (segment (start 150 35.85) (end 151.646446 35.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp df0b4894-fd93-4416-9804-0ec73c697dbd))
  (segment (start 145.853553 66.349999) (end 146 66.349999) (width 0.25) (layer "F.Cu") (net 16) (tstamp df4ed3bf-31a7-42f1-9165-984519ac0f7c))
  (segment (start 154.25 164.1) (end 154.25 166.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp df5da0ab-1dda-474d-bba3-028a6a07e473))
  (segment (start 145.75 50.1) (end 145.75 52.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp dfb58b84-f61b-4f4a-9fc5-c240224cce38))
  (segment (start 149.75 71.953553) (end 149.75 72.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp dfbcb5e7-99c8-46bc-99af-8569166eb1ed))
  (segment (start 145.853553 88.35) (end 145.75 88.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp dfeb9336-c4c2-4b56-8079-4f0ba1a48792))
  (segment (start 144.25 40.453553) (end 144.25 42.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e06e19ab-e663-4584-869b-2c664e81f03f))
  (segment (start 145.75 100.1) (end 145.75 102.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e07e94ab-7b13-484e-8bef-222a0a55f27e))
  (segment (start 154.146446 157.85) (end 154 157.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp e16e4245-4233-4f73-a244-0f49d1e58f07))
  (segment (start 154.146446 163.85) (end 154.25 163.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp e186dcee-34e7-43c0-97e5-c0bba67172cd))
  (segment (start 145.75 64.099999) (end 145.75 66.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp e1c26703-1992-4a1b-befe-5c6e995a9286))
  (segment (start 148 40.35) (end 150 40.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp e226a61b-7b5c-4b16-8b2b-94b01f7aee8f))
  (segment (start 148.25 151.746446) (end 148.353553 151.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp e2506ddb-c6bf-42bb-828d-1f877683fdd8))
  (segment (start 154.25 126.1) (end 154.25 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e315d459-4ef9-4cea-873d-a7de874f2934))
  (segment (start 146.25 78.453553) (end 146.25 80.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e328f42d-22d5-4f91-9a70-43c6d0ba2a08))
  (segment (start 152.25 159.953553) (end 152.146446 159.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp e39beed6-04ba-4d47-981f-8987fea18e43))
  (segment (start 152.25 133.746446) (end 152.353553 133.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp e3c58b0d-0cc4-47ef-8f08-6f2ae42b210d))
  (segment (start 148.25 72.246446) (end 148.146446 72.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp e3ff35d5-c037-47ca-b9de-8c165f40d115))
  (segment (start 146 166.35) (end 148 166.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp e40da309-e986-400b-8194-140fd94c162b))
  (segment (start 153.853553 75.85) (end 154 75.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp e42011c2-bc87-4b22-92b9-ca4489d6c324))
  (segment (start 152.25 76.1) (end 152.25 78.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e42af2aa-8819-43f7-a77c-f6b6cd3d10e6))
  (segment (start 155.75 120.1) (end 155.75 122.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e45e2821-c163-4bcf-810d-c4e3b0e826c7))
  (segment (start 148 39.85) (end 150 39.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp e475d597-9d65-46d6-9633-47f56a49314f))
  (segment (start 152.25 168.1) (end 152.25 168.05) (width 0.25) (layer "F.Cu") (net 16) (tstamp e49ef174-59b3-45d1-924c-03c15bb6bd8f))
  (segment (start 149.75 116.1) (end 149.75 118.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e4a45239-3528-498e-ac7e-0a7d1b09cb75))
  (segment (start 150 73.85) (end 151.646446 73.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp e4e24dc0-1560-4814-a504-151920128d82))
  (segment (start 154.25 130.1) (end 154.25 131.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp e4f00a10-bbad-4fb4-aa76-30eff70d4f78))
  (segment (start 154.25 120.1) (end 154.25 122.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e5069f2a-0e18-4e00-ac37-88c809078979))
  (segment (start 148.353553 45.85) (end 150 45.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp e589c74d-915f-4040-8a65-bec3565878df))
  (segment (start 147.75 161.746446) (end 147.75 160.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e5a4c868-cf15-4582-8b37-8e64212a4a99))
  (segment (start 147.75 156.1) (end 147.75 158.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e5d2e8b6-5fc3-4346-be6e-365aca7f18bb))
  (segment (start 155.75 164.1) (end 155.75 166.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e5d4e7cd-5c1c-4209-aa54-4bf6dee8d3d9))
  (segment (start 152.25 94.453553) (end 152.25 96.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e6340665-7cc8-4aae-9b5a-cd249c49f0e4))
  (segment (start 150.25 78.1) (end 150.25 80.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e670dc60-f2be-4551-944b-1e01018e7899))
  (segment (start 152.25 124.1) (end 152.25 126.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e6c64fec-49ce-48c8-9fd6-be912b0eefe7))
  (segment (start 148.25 70.453553) (end 148.25 72.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e6ca6d4f-1215-47be-ab9e-d852b8ab3b79))
  (segment (start 152.25 116.1) (end 152.25 118.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e6e0d9bf-08ca-43e4-8855-0b1d25f0590f))
  (segment (start 146.25 44.1) (end 146.25 46.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e6e96edc-3bba-488d-894e-13655450d79e))
  (segment (start 144.25 106.1) (end 144.25 108.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e6f880c5-05ab-4039-b22a-58637c4724ee))
  (segment (start 147.75 48.1) (end 147.75 47.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp e707cf6f-023a-443c-95da-ab35ebda7466))
  (segment (start 154.25 64.099999) (end 154.25 66.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp e7190f84-3825-4144-816b-5f250c5d386b))
  (segment (start 149.646446 33.85) (end 149.75 33.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp e73ddbc2-28a3-4651-adf7-d6427816202f))
  (segment (start 151.75 66.099999) (end 151.75 68.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e75dcc12-a0fd-4f82-9cfe-14e37503099e))
  (segment (start 152.25 58.1) (end 152.25 57.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp e7704508-37db-486a-9ba7-431599b12192))
  (segment (start 151.75 159.953553) (end 151.75 160.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e7a14599-4759-4cdf-bfc9-752c26e98b7b))
  (segment (start 152 150.35) (end 152.146446 150.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp e824ecd6-3152-456b-afcc-2aee8a68f113))
  (segment (start 152 74.35) (end 154 74.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp e84dea6e-bb1c-42f5-931c-ffdf6c295e8a))
  (segment (start 152.25 138.1) (end 152.25 138.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp e86a600f-e11f-46e7-b42d-61568cc5004a))
  (segment (start 154.146446 69.85) (end 154.25 69.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp e877e0b4-da72-4ef6-99ee-f4242442a6ce))
  (segment (start 146 132.35) (end 144.353553 132.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp e8c310b8-5748-4ee9-8a21-6ac6f193b7ea))
  (segment (start 150.25 80.1) (end 150.25 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp e9613430-9ce6-4672-a637-605663c86b7c))
  (segment (start 153.75 76.1) (end 153.75 75.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp e971abdf-1e41-48bc-a264-fd0b5de77f8f))
  (segment (start 150 133.85) (end 151.646446 133.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp e9c19034-546a-4484-9bbd-6e23eb15b740))
  (segment (start 152 37.85) (end 151.853553 37.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp eab26fe8-083e-40a4-84b6-0ac0d6216467))
  (segment (start 147.853553 79.85) (end 147.75 79.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp eb431369-5cea-47f2-8653-4bf085194c13))
  (segment (start 154.25 28.1) (end 154.25 27.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp eb455ccc-bac7-44bd-a03b-58f6468ad9b7))
  (segment (start 145.75 160.1) (end 145.75 162.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp eb62e165-03e3-40d2-85b7-caa4c56f76f9))
  (segment (start 147.75 136.1) (end 147.75 136.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp eb726199-9eb0-4b8c-b5bf-4981e75dbee0))
  (segment (start 153.75 95.953553) (end 153.75 96.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ec01bec7-9a26-40c1-8f38-557c4e1759bb))
  (segment (start 154.25 148.1) (end 154.25 150.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ec6f0b08-48d3-418a-8cbe-a587b1092742))
  (segment (start 146.25 124.1) (end 146.25 126.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ec94b8f9-1a24-48e9-9933-6efad1c4f7fc))
  (segment (start 145.853553 58.35) (end 145.75 58.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp ecc0b8fe-b69b-41c4-ade3-9b0cb51e825e))
  (segment (start 153.75 160.1) (end 153.75 158.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp ecc35994-6944-4f5d-a9ee-ceab9bc21129))
  (segment (start 150 85.85) (end 151.646446 85.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp ed04fa64-e697-40aa-aaaa-d575bcfcfff9))
  (segment (start 147.75 42.453553) (end 147.646446 42.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp ed28552b-e02d-4a27-89f2-2ef7f0b43fff))
  (segment (start 154.146446 86.35) (end 154.25 86.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp ed347ad7-0a71-4719-8a6d-eddfe48496f4))
  (segment (start 152.353553 50.35) (end 152.25 50.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp ed4b1db8-aa92-47c0-b118-b80c05e7dfdd))
  (segment (start 153.75 158.453553) (end 153.646446 158.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp eda188da-f914-43fc-bfa6-93f6b80b1621))
  (segment (start 154.25 85.953553) (end 154.146446 85.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp edb05057-f48a-4227-be64-bbcc50f0a7b0))
  (segment (start 151.75 32.1) (end 151.75 30.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp edd3920a-d9b3-42ae-9f5b-0106ff256c9a))
  (segment (start 146 40.35) (end 144.353553 40.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp edd696cc-a738-4e93-824e-f25367337606))
  (segment (start 144.25 102.1) (end 144.25 104.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ee07b155-ffbb-4f3d-9381-76f3f02ab055))
  (segment (start 151.853553 91.85) (end 152 91.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp ee8bed9d-72a1-45f0-b087-d9b6d2a64992))
  (segment (start 146.25 141.953553) (end 146.146446 141.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp eee6419d-c640-48b5-82a2-1c168d6c8031))
  (segment (start 152.25 104.1) (end 152.25 106.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp eeec0fe1-1c6c-4338-a3e6-2d1150867e1d))
  (segment (start 154 51.85) (end 153.853553 51.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp ef1592b9-01ce-4fd8-acb2-27c988e54af9))
  (segment (start 146.25 118.1) (end 146.25 120.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ef2d939e-2fe2-4372-864d-d498665e27fa))
  (segment (start 151.75 46.1) (end 151.75 48.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ef3ae3b7-2d85-4b3a-b48b-1fe047178e54))
  (segment (start 155.75 36.1) (end 155.75 38.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ef3f4fd7-9120-4fbb-97fb-d38d9538b273))
  (segment (start 152.25 57.953553) (end 152.146446 57.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp ef99914b-3482-4cdd-ac65-c3dd239dc926))
  (segment (start 148.353553 140.35) (end 148.25 140.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp f00994e3-f25f-4aee-a4e8-2aab2d8af978))
  (segment (start 147.853553 47.85) (end 148 47.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp f0270a18-cd0d-41ea-8348-7a20a33e1044))
  (segment (start 151.75 126.1) (end 151.75 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f0484a66-6e23-450a-968a-981a8e08da57))
  (segment (start 155.646446 155.85) (end 155.75 155.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp f04c1ee7-ad35-462e-a814-19452b02f8a5))
  (segment (start 149.853553 44.35) (end 150 44.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp f05997ac-b9d3-4676-9253-70e37fd94b2d))
  (segment (start 149.853553 71.85) (end 149.75 71.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp f0610ec3-c6f0-4625-ad57-a87cfe5366cb))
  (segment (start 152.353553 49.85) (end 154 49.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp f0772dad-16cb-4155-aed5-1f223a8eeaa5))
  (segment (start 155.75 52.1) (end 155.75 50.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp f0ac3c2f-d352-4e7d-b1d8-b4d3a5818ac9))
  (segment (start 146 89.85) (end 148 89.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp f0f12979-4442-4951-a8aa-f0c3147c880d))
  (segment (start 155.75 76.1) (end 155.75 74.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp f1003dbd-44d1-49d1-b82e-cadc0a7353a6))
  (segment (start 153.646446 70.35) (end 152 70.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp f118c31c-b47a-4cb7-b748-0c7951f92399))
  (segment (start 146 76.35) (end 144.353553 76.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp f12912c3-7c1d-4ca7-a6ad-ea3861f32a81))
  (segment (start 150.146446 77.85) (end 150 77.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp f1b83211-9c8c-42ce-b0de-c24d5b7b8270))
  (segment (start 144.25 152.1) (end 144.25 154.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f1f5639c-d4f4-4e99-9507-258a06cf250f))
  (segment (start 148.25 64.099999) (end 148.25 66.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp f1fd3f3b-9559-4855-8fb4-be3cf2b88f69))
  (segment (start 152.25 79.746446) (end 152.353553 79.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp f227d1f8-ac4d-40f0-896a-b686a341dbee))
  (segment (start 146 59.85) (end 148 59.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp f251aff9-1978-43db-bb34-23bfccea2e2c))
  (segment (start 155.75 73.746446) (end 155.75 72.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f2c7a66e-ad38-4a3e-9e06-9cc13c32e778))
  (segment (start 146 146.35) (end 144.353553 146.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp f2d0a482-f86c-4f58-9a06-aee4523286c0))
  (segment (start 148.25 156.453553) (end 148.25 158.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f2d35ed3-2f90-42b5-873a-50bd804c475c))
  (segment (start 148 88.35) (end 150 88.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp f2e3441a-5efa-4ff0-a00b-057e3653ec97))
  (segment (start 152.25 30.1) (end 152.25 29.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp f385001a-4d4f-4341-8fe3-eb93ee2b690e))
  (segment (start 154.25 124.1) (end 154.25 126.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f3862a69-950b-400d-be75-73551f209b1e))
  (segment (start 150.353553 158.35) (end 150.25 158.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp f3c0a06c-6192-4b3b-93e5-11e10d19a6f0))
  (segment (start 150.25 100.1) (end 150.25 99.953553) (width 0.25) (layer "F.Cu") (net 16) (tstamp f3ef4686-c38f-4e29-9085-ac6eb892d25e))
  (segment (start 155.75 88.453553) (end 155.646446 88.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp f4603ea3-c101-4bf5-b0d9-3a80e994e6ec))
  (segment (start 146.25 156.1) (end 146.25 154.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f4b3fb78-5a05-491b-bf63-ae6f37085f20))
  (segment (start 148 27.85) (end 150 27.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp f4b6746e-ee3d-4e3b-bfde-f131e7f3666f))
  (segment (start 144.25 76.453553) (end 144.25 78.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f5163732-587b-463b-ad5f-09044d9e16cf))
  (segment (start 146.25 106.1) (end 146.25 108.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f58c5a18-75c6-4bc2-9e93-6f8c77871ef4))
  (segment (start 145.75 62.1) (end 145.75 64.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp f5e2f969-358d-464c-a067-fd2e87223fea))
  (segment (start 151.75 104.1) (end 151.75 106.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f60523af-c406-435d-b068-9469e40be8b8))
  (segment (start 149.75 110.1) (end 149.75 112.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f61a8db7-14c7-4f20-833f-d702a17ce505))
  (segment (start 155.75 146.1) (end 155.75 144.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp f675434f-22d8-4245-9b84-f8ad9bcc10b1))
  (segment (start 144.25 122.1) (end 144.25 124.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f681e49c-d0e8-42fc-ad64-2997f0b7b672))
  (segment (start 154 155.85) (end 155.646446 155.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp f6bd4a5c-9492-4c9e-a608-d9014445b4b1))
  (segment (start 148 58.35) (end 150 58.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp f6e7eb65-3593-43a7-8e50-923b50c6db3a))
  (segment (start 153.75 62.1) (end 153.75 64.099999) (width 0.25) (layer "F.Cu") (net 16) (tstamp f6fd1aeb-7098-4a6d-afcc-699a2fa61d51))
  (segment (start 147.75 120.1) (end 147.75 122.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f720a42e-807c-4c8e-adb1-8c4dcba35880))
  (segment (start 153.646446 148.35) (end 152 148.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp f72323b0-a09f-49e0-bfcc-7333b8cbee4f))
  (segment (start 152.25 38.1) (end 152.25 39.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp f7264630-7c3f-4fd8-a150-b930d944577c))
  (segment (start 154.25 158.1) (end 154.25 160.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f77a4037-f234-4d9c-b529-bf83b59b8fc5))
  (segment (start 151.75 98.453553) (end 151.646446 98.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp f79bf7d1-c1ad-4673-a451-b2829ffd038e))
  (segment (start 146 162.35) (end 145.853553 162.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp f7a4ffde-ac41-4ef4-ba0b-83981238fe17))
  (segment (start 150.25 56.1) (end 150.25 56.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp f7c8943c-a56b-4434-827b-b9c24c6df6ed))
  (segment (start 144.25 100.1) (end 144.25 102.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f7d4ff3a-0217-4fc1-ad86-3b6d35b7451c))
  (segment (start 153.75 110.1) (end 153.75 112.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f7dc099d-c5a1-4069-b8bc-eacf106800ab))
  (segment (start 146.25 120.1) (end 146.25 122.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f7de9270-c196-4ff4-861a-dd6e222be584))
  (segment (start 152.146446 140.35) (end 152.25 140.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp f804560f-8577-4775-9cb0-9647e95c5c0d))
  (segment (start 147.75 126.1) (end 147.75 128.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f817ac03-f6fb-46a1-a4c6-a79f614e5fe7))
  (segment (start 144.25 164.1) (end 144.25 162.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f822ae83-390d-436b-b6c9-587d69e673be))
  (segment (start 147.75 142.246446) (end 147.853553 142.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp f8b62762-b55d-480b-a39a-2e9282444511))
  (segment (start 145.75 52.1) (end 145.75 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp f92ab84f-454f-493b-8139-215f87ac7a3c))
  (segment (start 146.353553 90.35) (end 146.25 90.453553) (width 0.25) (layer "F.Cu") (net 16) (tstamp f995533d-0153-4482-be7a-ded1408c689c))
  (segment (start 155.75 26.453553) (end 155.646446 26.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp f9974fce-9ab1-4ca5-8be1-af01c409c485))
  (segment (start 149.75 60.453553) (end 149.646446 60.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp f9a3146d-9a7a-4ae2-a6b4-83939b186d15))
  (segment (start 153.75 81.953553) (end 153.75 82.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp faa91961-d6f0-48c9-b1c6-4abc1e81b785))
  (segment (start 154.146446 48.35) (end 154.25 48.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp fad5426c-8e8a-4b25-9d17-b6d01cd31b03))
  (segment (start 146.353553 57.85) (end 148 57.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp faefffec-132a-4bd6-a7cb-00c0ff967c8a))
  (segment (start 153.75 44.1) (end 153.75 46.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp fb2ae835-efab-41a5-96fe-a3e7c745e7c7))
  (segment (start 150.25 94.1) (end 150.25 94.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp fb2ee9cc-f68f-42be-98b3-bf6f12b10f2f))
  (segment (start 150 30.35) (end 148.353553 30.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp fb90e688-e201-4b52-a9aa-0181811d60da))
  (segment (start 153.75 42.453553) (end 153.646446 42.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp fba6290a-d3ba-4c57-800a-96a5aaae72ab))
  (segment (start 147.75 54.1) (end 147.75 56.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp fbf57398-121e-43d8-9a2e-669caec70bb0))
  (segment (start 145.75 66.099999) (end 145.75 66.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp fc12efbe-0554-4c27-b1e8-4a6a74d4f611))
  (segment (start 148 152.35) (end 150 152.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp fc48c50e-1138-4a89-8865-b97576aa9342))
  (segment (start 151.646446 167.85) (end 151.75 167.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp fc5d4ada-9c44-407c-849a-e0e3a11d7e14))
  (segment (start 155.646446 84.35) (end 154 84.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp fc829df8-5c51-4010-9831-ea3d47b64fb7))
  (segment (start 148.25 158.1) (end 148.25 160.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp fc925937-070d-4d70-ba55-448b4dbf932e))
  (segment (start 150 43.85) (end 149.853553 43.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp fca1ecee-f61d-4a98-acf0-4dc8ebd709ed))
  (segment (start 153.75 130.1) (end 153.75 132.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp fd3e0ef2-7eec-488c-98b2-f6ac6d7801f7))
  (segment (start 149.853553 72.35) (end 149.75 72.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp fd94084a-c444-4c99-a0a3-4746bcc63234))
  (segment (start 146.25 48.1) (end 146.25 46.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp fdf7d2e7-773d-4386-a650-4186c28ea59a))
  (segment (start 151.75 112.1) (end 151.75 114.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp fe7d7c38-26b4-49ca-9a47-d5d164114a75))
  (segment (start 146.25 148.453553) (end 146.25 150.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp feba2bc6-8971-45c7-9408-be92202bd59d))
  (segment (start 152 156.35) (end 154 156.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp fec36e61-8de9-47c0-8a2c-975d15c56394))
  (segment (start 149.75 100.1) (end 149.75 102.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ff33379c-b30b-4553-a4b4-46e1fbdf82e3))
  (segment (start 149.75 55.746446) (end 149.75 54.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ff3fdb9f-8735-411d-9bcf-c087703d0e27))
  (segment (start 147.853553 84.35) (end 147.75 84.246446) (width 0.25) (layer "F.Cu") (net 16) (tstamp ff52e32e-c1fa-490d-ba1c-f498f2706726))
  (segment (start 150 134.35) (end 152 134.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp ff5fbd6b-731c-4704-8a6e-d61635034fef))
  (segment (start 146.25 92.1) (end 146.25 93.746446) (width 0.25) (layer "F.Cu") (net 16) (tstamp ff6a9f5e-a562-4b92-b37e-4ac4456774f4))
  (segment (start 151.646446 58.35) (end 150 58.35) (width 0.25) (layer "F.Cu") (net 16) (tstamp ff84c2e9-2dd1-401a-9634-e641ab6ed6cb))
  (segment (start 153.75 114.1) (end 153.75 116.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ff998e97-10be-41a0-bb31-e073d638d1cf))
  (segment (start 146 139.85) (end 148 139.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp ff9b9d23-6bdd-4fd2-8479-040dcc308d5f))
  (segment (start 155.75 140.1) (end 155.75 142.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ffa1607e-e02a-40a2-83cc-3e302d3785be))
  (segment (start 152.25 85.746446) (end 152.353553 85.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp ffb2e1e5-6d49-4472-be20-30f5e0015a1c))
  (segment (start 155.75 32.1) (end 155.75 34.1) (width 0.25) (layer "F.Cu") (net 16) (tstamp ffbe0639-aa0e-49b6-a6dd-ab3239337d97))
  (segment (start 147.75 47.953553) (end 147.853553 47.85) (width 0.25) (layer "F.Cu") (net 16) (tstamp ffdfd41e-5f3c-487e-b945-ed4e8db10ffc))
  (segment (start 153.25 76.1) (end 153.25 78.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 000c7c95-3803-4d15-83cf-3530a7b6107e))
  (segment (start 145.25 44.1) (end 145.25 46.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 00dd37b8-ef5b-4ab6-aafc-c8727a3a5f43))
  (segment (start 146.75 165.246446) (end 146.853553 165.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 015a6866-741a-4dee-8628-37f3256121a7))
  (segment (start 144.75 166.1) (end 144.75 167.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0191da5a-0eb3-4ae1-bae0-7dde0a5b9a4d))
  (segment (start 155.25 36.1) (end 155.25 38.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 01ee9628-b5ce-41c0-a844-85d875438e42))
  (segment (start 147.25 116.1) (end 147.25 118.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 01f1aa0f-e3ef-4a21-a87b-1b3ed20d4e0f))
  (segment (start 147.25 80.1) (end 147.25 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 022e99a9-7d23-40dc-8a5a-073a7dad6476))
  (segment (start 155.25 30.1) (end 155.25 32.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 028edcae-fd07-4764-b1f9-ef5f46af401f))
  (segment (start 149.25 43.453553) (end 149.25 44.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 02b38957-8093-450d-9b2b-b89714251e27))
  (segment (start 148 149.35) (end 147.353553 149.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 02ed2c9f-964a-460c-a709-2a3ed279886b))
  (segment (start 148.75 128.746446) (end 148.75 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 02f97dcc-da4e-4d34-bc06-1ecd5eeb6312))
  (segment (start 147.25 135.453553) (end 147.25 136.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 031a1805-1e57-4cc2-bf69-27aec387b3b0))
  (segment (start 144.75 64.099999) (end 144.75 66.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 032851a5-f39c-4c70-9e07-fd9daf8cee15))
  (segment (start 146.853553 164.85) (end 146.75 164.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 03d5772f-8e54-4529-91eb-84c2eec2898f))
  (segment (start 150.75 166.746446) (end 150.75 166.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0492184b-912f-4e7a-ab7a-f97801091346))
  (segment (start 155.25 38.1) (end 155.25 40.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 04960354-1231-486e-819d-9d56a7e56f3b))
  (segment (start 148 152.85) (end 150 152.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 049984cb-34d2-4999-ae5c-eb0bb826a451))
  (segment (start 154.75 58.1) (end 154.75 60.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 04adb659-5d97-4faa-88ab-9830a6101c50))
  (segment (start 144.853553 131.35) (end 146 131.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 04d9859e-2edd-49d2-bf4d-02828cce4c1a))
  (segment (start 146 140.85) (end 144.853553 140.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 05317580-c748-47f2-9b96-3783398178ca))
  (segment (start 151.25 120.1) (end 151.25 122.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0549dce6-940c-4385-9b04-7f9e4180b342))
  (segment (start 150.75 46.1) (end 150.75 45.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0552c48d-f75d-423e-8ea1-82244dbccf75))
  (segment (start 146 131.35) (end 148 131.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 058675cb-8e6b-427a-b3c8-152f18efe444))
  (segment (start 147.25 48.1) (end 147.25 50.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 05882814-561e-41c7-9278-4870c79405bd))
  (segment (start 150 68.85) (end 150.646446 68.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 05f70fa2-dc23-466d-9269-dfc589725d5f))
  (segment (start 144.75 150.1) (end 144.75 152.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0660df3b-1e55-4985-ad77-abfe2d3beeef))
  (segment (start 153.25 68.1) (end 153.25 68.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0670c791-29e9-4fe9-803a-ac3b66a09eec))
  (segment (start 151.25 160.1) (end 151.25 162.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 06754923-4ea5-4a94-9d89-f3e7c807f292))
  (segment (start 151.25 128.1) (end 151.25 130.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 06895cac-e8a7-44ee-950c-6bb1b59ca1fb))
  (segment (start 144.75 44.1) (end 144.75 46.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 06b4350e-4388-4200-a52f-2d7e93a0c3bf))
  (segment (start 154 81.35) (end 153.353553 81.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 070d04da-ae58-4fd8-9ea7-ca460ade784d))
  (segment (start 146.75 124.1) (end 146.75 126.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 074e89c1-1fb3-43ec-88c1-dfb04a7ffdf4))
  (segment (start 144.75 60.1) (end 144.75 62.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 07556b7c-e632-4506-8800-a7c909c5c843))
  (segment (start 152.75 68.1) (end 152.75 69.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 077d777f-b566-4152-93d7-52b49021a28e))
  (segment (start 149.353553 71.35) (end 149.25 71.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 078f064e-79a9-42bb-b939-efac178145f5))
  (segment (start 149.25 72.746446) (end 149.25 72.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 07a9870f-2fec-485e-a5cd-ebbd5af40358))
  (segment (start 154.646446 133.35) (end 154 133.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 07d91e75-a64c-4441-b651-c14cb21abc14))
  (segment (start 148.75 79.453553) (end 148.646446 79.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 07eb77c6-5e89-4f4f-bba1-c43c73d34f80))
  (segment (start 148 29.35) (end 150 29.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0819511e-b4a5-4621-82bf-111f0dd3f0ba))
  (segment (start 149.25 44.746446) (end 149.353553 44.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0825876e-0730-4948-8243-ec8866d80995))
  (segment (start 151.353553 159.35) (end 151.25 159.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0873b685-ae10-4146-bbfe-27d51eded672))
  (segment (start 148.75 122.1) (end 148.75 124.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 089ca741-4f73-43a8-86ea-718eb8b543b6))
  (segment (start 150 99.35) (end 149.353553 99.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 08a188c9-8062-4e93-8c87-bd230bd704cb))
  (segment (start 153.25 76.1) (end 153.25 75.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 08a6e67f-a044-40e3-a60d-abb740a82f74))
  (segment (start 150.75 68.746446) (end 150.75 68.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 08db3f56-3d73-4c8a-a01b-e0d3d1c2ef86))
  (segment (start 150.646446 165.35) (end 150.75 165.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 08f47f1d-8cd5-489b-834c-a94c3d45b0d9))
  (segment (start 145.25 38.746446) (end 145.353553 38.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 09479e9b-1618-40bc-b8ec-72c5d643a554))
  (segment (start 153.146446 161.35) (end 153.25 161.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 097795c8-7be9-4211-a02b-1f145de90bea))
  (segment (start 148.75 62.1) (end 148.75 61.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 098fd532-796e-4ad5-b4b2-2ab56dcef187))
  (segment (start 146.75 35.246446) (end 146.853553 35.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 09cda084-ae1e-425f-b004-b1ccf8e70a69))
  (segment (start 148 167.35) (end 150 167.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 09d2c708-e086-43c6-b69e-3ea472d19ab9))
  (segment (start 150 154.85) (end 152 154.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 09d46f61-8e93-4127-b609-1f7306fa5143))
  (segment (start 147.25 72.1) (end 147.25 72.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0a11d9aa-ecf5-40ec-a10f-bd47a48bb74a))
  (segment (start 146.75 34.1) (end 146.75 35.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0ab7e7b6-718b-4d51-bd00-99558291b152))
  (segment (start 147.25 128.1) (end 147.25 128.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0abb7fd7-6e4a-4015-b194-4bbaaa38c1b3))
  (segment (start 145.25 66.746446) (end 145.353553 66.849999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0abbd06d-3628-45d1-be51-9bd4b16869ff))
  (segment (start 153.25 32.1) (end 153.25 34.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0adf3f48-7a4e-4b9f-b5a2-705df70178eb))
  (segment (start 150.75 78.1) (end 150.75 80.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0aea9c94-ecbe-45b1-a55d-84c47e25e17c))
  (segment (start 148 69.35) (end 150 69.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0aed16d5-9ba8-491e-a133-842e6b5a5270))
  (segment (start 148.75 62.1) (end 148.75 64.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0af012be-1575-469a-bb4d-604d3a2deb1b))
  (segment (start 145.25 134.1) (end 145.25 136.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0b591bda-3a51-4b24-b654-96c8a573e6e4))
  (segment (start 149.25 108.1) (end 149.25 110.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0bbf8d4f-fc34-4c17-b171-3554457d751e))
  (segment (start 149.25 157.453553) (end 149.25 158.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0bd9fc64-d55c-4ca2-9e0e-ace165924b69))
  (segment (start 152 156.85) (end 154 156.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0c061db7-c3f3-4b01-9514-c86d80ac4d9b))
  (segment (start 153.25 30.1) (end 153.25 28.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0c1fc00f-1bb7-4159-91f3-85d350867e0e))
  (segment (start 148 59.35) (end 150 59.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0c8fdc2e-6397-4347-8413-14bbab3666d3))
  (segment (start 150.75 78.1) (end 150.75 77.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0c96407a-0424-490f-828d-2ea11e3cf4c6))
  (segment (start 154.75 76.1) (end 154.75 75.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0c9a8752-7f27-4aab-ad42-579df84c340d))
  (segment (start 145.25 144.746446) (end 145.353553 144.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0ca66f0c-cc9b-4aa4-b401-bb158cd9cca2))
  (segment (start 151.25 80.1) (end 151.25 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0cad8d84-e878-49fc-a755-7cd74852ad90))
  (segment (start 154.75 134.1) (end 154.75 136.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0cd5882a-19fa-4944-957d-8ff2db7badf1))
  (segment (start 150.75 66.099999) (end 150.75 68.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0cd7a54b-6c3e-4196-824c-2038e205f2fb))
  (segment (start 154.75 163.453553) (end 154.75 164.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0ce95b6c-a440-4b19-9bf1-4de6e72429de))
  (segment (start 154.75 158.1) (end 154.75 160.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0cfcae08-fbb1-4c99-9663-d2dcc76456fe))
  (segment (start 149.25 124.1) (end 149.25 126.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0d1d43f4-f445-42ad-a742-b21639f9b781))
  (segment (start 147.25 104.1) (end 147.25 106.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0d29d1e9-614d-4fd4-b315-86fd73995351))
  (segment (start 151.146446 167.35) (end 151.25 167.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0d786519-6318-4b7e-b592-3c41e2c7bd36))
  (segment (start 150 69.35) (end 151.146446 69.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0d9d9d1d-f937-48a5-af68-2e3ad645c178))
  (segment (start 144.75 142.1) (end 144.75 144.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0da09447-46dc-4a1a-8d31-6c2961c0773c))
  (segment (start 144.75 68.953553) (end 144.75 70.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0da380f0-aa37-474f-a04f-aa329d2d70ab))
  (segment (start 149.146446 46.85) (end 148 46.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0ddc721f-ff27-4aee-8c2b-5b317863750c))
  (segment (start 152.75 93.246446) (end 152.853553 93.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0e479a87-d4d1-44cc-a1fc-97ca23171380))
  (segment (start 153.25 100.1) (end 153.25 102.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0ed266af-1acf-41e6-a384-6b61ee8d5553))
  (segment (start 149.25 71.453553) (end 149.25 72.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0ed5c3f1-4724-45f2-bcec-e932221fe4de))
  (segment (start 152 36.85) (end 150.853553 36.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0ef4baa8-8ecf-4b4d-b2f0-71dd8ace259c))
  (segment (start 149.25 52.1) (end 149.25 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0f0a3a49-e8cf-4105-a3e6-4dad183194c7))
  (segment (start 146 75.35) (end 148 75.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0faa7fd0-06fd-47c5-a0d3-56b3f703c4d9))
  (segment (start 153.146446 93.35) (end 153.25 93.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0fed416d-5bf0-4aa5-983c-775bab984b6c))
  (segment (start 147.25 155.453553) (end 147.353553 155.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 0ff33a4d-c95c-4edc-83f4-baa16f990201))
  (segment (start 155.25 150.1) (end 155.25 152.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1028fe02-1360-41ad-a861-7d4d9fc56afa))
  (segment (start 146 130.85) (end 148 130.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 10342752-6d16-429c-b14f-90da7257daf4))
  (segment (start 151.25 69.246446) (end 151.25 68.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 104d039e-548a-4fd2-9096-22d9c117dc3f))
  (segment (start 154.75 118.1) (end 154.75 120.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 10613a25-c9b9-46c1-8c57-17863b0f71f1))
  (segment (start 155.25 128.1) (end 155.25 130.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 10674061-ace3-4808-8042-e77d8e86e827))
  (segment (start 146.75 100.1) (end 146.75 102.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1100ed29-1ec2-4ad7-a47b-2d71ba5d473d))
  (segment (start 154.75 54.1) (end 154.75 56.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 112591d4-c20b-43cf-b8f8-2941a90c0bd1))
  (segment (start 145.25 158.1) (end 145.25 160.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 114234e0-69a0-49d8-bc4c-36a5dc58f8a1))
  (segment (start 149.353553 35.35) (end 150 35.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 118d231f-1e76-4676-b117-a0b6f89692da))
  (segment (start 148.75 50.1) (end 148.75 52.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 119cbf85-ebf6-4d12-88cb-a0e885bc75df))
  (segment (start 151.25 52.1) (end 151.25 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 11a5a3e7-34d9-43d3-be59-6d099246195e))
  (segment (start 152 154.85) (end 154 154.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 12126c27-b689-49d1-b111-1b15bcb62a2f))
  (segment (start 153.146446 158.85) (end 152 158.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 121f97bf-73bd-47b7-a148-bf496f810d9a))
  (segment (start 153.25 46.1) (end 153.25 48.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 128c931a-044a-4701-9fb1-94c7ae50a91a))
  (segment (start 146.75 73.246446) (end 146.853553 73.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 12f2536b-da1d-48d7-bb00-8aab2f6c1399))
  (segment (start 147.6 169.35) (end 147.6 171.05) (width 0.25) (layer "F.Cu") (net 17) (tstamp 131e9571-558a-49d9-b96b-ceb7d5072f99))
  (segment (start 152.75 102.1) (end 152.75 104.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 13735ae0-640f-4fc9-a855-044a6fb6172e))
  (segment (start 144.853553 75.35) (end 146 75.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 143ea8f6-3edb-4d83-904e-e44f9960e550))
  (segment (start 152 139.35) (end 152.646446 139.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 14a20d6f-29ae-43b0-8ddc-a623da6dd90c))
  (segment (start 146.75 64.099999) (end 146.75 65.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 14d0e722-1bb2-4dc2-bace-687ff877dd7c))
  (segment (start 155.25 162.1) (end 155.25 164.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 14d1a98b-af48-47ae-a146-3b339000670b))
  (segment (start 145.25 42.1) (end 145.25 44.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 14d3dccd-b5a1-424c-93e9-1a63b9305a7a))
  (segment (start 154.75 136.1) (end 154.75 138.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 14d714f5-e1b9-4e70-938a-cb8075ed22ac))
  (segment (start 150.75 36.953553) (end 150.75 38.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 14e7d3ca-ecc3-46d4-a927-9a5f2b1cb209))
  (segment (start 144.75 156.1) (end 144.75 158.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 159236e9-3d23-47f9-b4d2-147f6ed81ac2))
  (segment (start 151.25 108.1) (end 151.25 110.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 15c248f2-3964-4be1-9e70-56b4172e15e7))
  (segment (start 147.353553 79.35) (end 147.25 79.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 15cf9585-bc6b-41c3-b81d-d2d40e6854e7))
  (segment (start 150.646446 45.35) (end 150 45.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 167d353c-7dea-4a47-b840-caac41ff3bda))
  (segment (start 151.25 58.953553) (end 151.146446 58.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 16c66c1f-f75a-4952-9e21-b2477ac9b368))
  (segment (start 148 132.85) (end 150 132.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 170b06ed-6231-4fac-ad7e-9c0526b8097c))
  (segment (start 151.25 162.1) (end 151.25 164.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1798eb98-64ee-487c-96e7-3d0d542d03ae))
  (segment (start 147.25 108.1) (end 147.25 110.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 17a67eef-7b00-4bfd-a35a-fa4253d6de0e))
  (segment (start 146.75 80.1) (end 146.75 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 17b69ca9-ab4a-4d75-b07a-543f9d3342bb))
  (segment (start 146.853553 35.35) (end 148 35.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 18200ad8-5a41-490f-b682-d1be01e2a0bb))
  (segment (start 155.25 131.246446) (end 155.25 130.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 182903ad-2126-4448-bf8c-2cba397ba089))
  (segment (start 148 74.85) (end 150 74.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 18295576-c41a-48c6-81ee-d8648a25fd39))
  (segment (start 150.75 100.1) (end 150.75 102.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 189645cf-b9c0-4062-be1d-e3cb2c26e2a7))
  (segment (start 155.25 49.246446) (end 155.25 48.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 18d73f1a-3a3a-459c-9818-dcd587faa6ed))
  (segment (start 153.25 122.1) (end 153.25 124.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 191a42e8-8cd6-42ef-ad6f-c3e9379ae93d))
  (segment (start 146 39.35) (end 148 39.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 191c3d03-f7a6-479d-b866-7958bf225907))
  (segment (start 148 38.85) (end 150 38.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1931a4ef-cc68-4c95-a110-82a7cb7bf249))
  (segment (start 155.146446 167.35) (end 155.25 167.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1936c270-b86c-423b-bbe7-9000c2712be8))
  (segment (start 146 88.85) (end 145.353553 88.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1941fc47-4258-420e-9a3c-1c35524b364e))
  (segment (start 154.75 66.099999) (end 154.75 68.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1955b46b-70e0-4a07-a5cd-dbc5ff082292))
  (segment (start 148 147.35) (end 150 147.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 19577805-ddd0-4239-8380-3842dba7705b))
  (segment (start 146.75 112.1) (end 146.75 114.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 19847fb1-4d61-4b48-9739-695bc38d518b))
  (segment (start 152.853553 50.85) (end 152.75 50.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1a189e9f-61c4-48df-90f2-4e16e4ab8dc3))
  (segment (start 150.75 45.453553) (end 150.646446 45.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1a1aafb7-dbc5-49d0-be1f-f518e59cc393))
  (segment (start 146.75 102.1) (end 146.75 104.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1a5ed359-7f95-488e-a965-3eaab1cf11f2))
  (segment (start 149.146446 78.85) (end 148 78.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1a713493-e7d0-492a-b56f-0b6e3bd7af04))
  (segment (start 150 149.35) (end 152 149.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1a7a4707-1521-401d-a46a-38a9e27275df))
  (segment (start 152.646446 150.85) (end 152.75 150.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1af05b12-e4ec-4fce-9540-be8168e2f60a))
  (segment (start 144.75 152.1) (end 144.75 154.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1af57c85-df9c-4aba-9e78-42620c2d39f0))
  (segment (start 150.75 128.1) (end 150.75 130.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1b0756b9-2924-47a2-a7f9-56f7e93693c4))
  (segment (start 144.853553 140.85) (end 144.75 140.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1b28865d-9a93-4800-b1c7-89a6900ae50f))
  (segment (start 144.75 80.1) (end 144.75 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1b30b8ea-68c9-49bf-b4f0-fd09676739c8))
  (segment (start 144.75 50.1) (end 144.75 52.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1b4ab93f-e8f5-45e3-9712-50564f1a11b6))
  (segment (start 153.353553 48.85) (end 154 48.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1b534c02-e08c-407a-a836-70d948864627))
  (segment (start 148.646446 79.35) (end 148 79.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1ba5cba6-067d-4f02-825d-4355a3ecfa05))
  (segment (start 152 140.85) (end 152.646446 140.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1bb0c914-bcb1-47bc-ae39-f7af9c84ff4e))
  (segment (start 154.75 106.1) (end 154.75 108.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1bb751f2-738c-4ae1-a9e5-e49b1d2174cb))
  (segment (start 145.25 120.1) (end 145.25 122.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1bbfd58b-4af7-44e1-934d-63852f0d9e58))
  (segment (start 152.75 136.1) (end 152.75 135.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1bc66dd9-b109-43f8-9e50-f4a68e25671e))
  (segment (start 144.75 126.1) (end 144.75 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1be94934-afbc-40c6-80aa-4d726249f7d4))
  (segment (start 150.75 104.1) (end 150.75 106.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1c17cc98-5ed4-4389-bbd3-b2f07bb5d42e))
  (segment (start 148 67.35) (end 149.146446 67.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1c4aa941-c182-4dbd-94d8-ef282c3b7fd3))
  (segment (start 147.146446 70.85) (end 146.853553 70.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1c517679-be7e-494d-97cd-ae3ecacae51c))
  (segment (start 155.146446 143.35) (end 155.25 143.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1c745ca0-9bf4-4376-88e4-1d0c90bd752f))
  (segment (start 152.646446 139.35) (end 152.75 139.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1d0a3275-4f03-4214-9540-69d77889978a))
  (segment (start 154.75 60.1) (end 154.75 62.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1d182170-73e7-43d1-8a53-01b5b58f045c))
  (segment (start 150.646446 91.35) (end 150.75 91.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1d48d2db-9222-4607-a60d-50d707f6b17b))
  (segment (start 152.75 150.746446) (end 152.75 150.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1d7b7378-3f3b-443e-8c4a-ac1464b04187))
  (segment (start 148.75 150.953553) (end 148.75 151.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1d8e32c5-aab2-4650-b90c-beecbb9e392f))
  (segment (start 147.25 149.453553) (end 147.25 150.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1db77f6b-253b-4b87-a9b1-8ccee7d0460b))
  (segment (start 152 143.35) (end 154 143.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1e89e718-66b0-43af-be47-c5b8d041613c))
  (segment (start 146.75 52.1) (end 146.75 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1eac924e-0702-4bc4-97de-189067c42de9))
  (segment (start 148 37.35) (end 149.146446 37.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1f5a03d8-6f16-4a50-aaa1-08c95da70274))
  (segment (start 148 130.85) (end 150 130.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 1f98b537-3477-4ee8-9f9b-d4bee3ea9d61))
  (segment (start 150 71.35) (end 149.353553 71.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 200e3811-1cc2-4784-98a7-36e2c611d87a))
  (segment (start 151.146446 44.85) (end 150 44.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 204b2e4f-df6d-4076-8ecd-448673cb3b7f))
  (segment (start 149.146446 93.35) (end 149.25 93.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 20ebaaa3-c8a5-4efa-9fea-45a5f280f8f8))
  (segment (start 145.25 163.453553) (end 145.353553 163.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 20f54cc8-52af-4dae-ba5e-29cbf5b1ec0d))
  (segment (start 154.75 152.746446) (end 154.75 152.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2158d56d-ab5d-4acc-a79a-5dce10c6d059))
  (segment (start 146.75 57.246446) (end 146.853553 57.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 21879106-462f-43d5-961c-fdcb90d415ca))
  (segment (start 154.75 30.1) (end 154.75 32.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 21b79bad-2a96-416f-86cc-73ba2d6016de))
  (segment (start 154.75 41.453553) (end 154.75 42.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 21b8322e-b56d-4d7c-8f71-1ad0ab478990))
  (segment (start 153.25 124.1) (end 153.25 126.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 21c39686-775d-42ea-a94b-a74159a8adb6))
  (segment (start 146 41.35) (end 148 41.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 21e02d54-6744-40de-a713-0cf6e1176794))
  (segment (start 145.25 106.1) (end 145.25 108.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 221d58a7-f2f0-482c-bee8-764037f95e4d))
  (segment (start 144.75 106.1) (end 144.75 108.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 22212840-944d-4720-9926-5c7edd48873f))
  (segment (start 144.75 120.1) (end 144.75 122.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 22241d17-876f-49dc-b706-eb034b64319e))
  (segment (start 144.75 136.1) (end 144.75 138.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 228725f7-2190-4a02-830a-6579ff3e1048))
  (segment (start 152.75 48.1) (end 152.75 49.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 22a0bb2b-65f9-49f7-8c38-3d56526ee317))
  (segment (start 152.75 135.453553) (end 152.646446 135.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 22aae2fc-49d0-451f-8a10-0068ca965fbe))
  (segment (start 149.146446 67.35) (end 149.25 67.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 22e0ec46-06ab-42f7-94f4-30c7dfa58383))
  (segment (start 148.75 33.246446) (end 148.853553 33.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 22fdb1ce-8bc6-48ba-b96f-b44fac92d9d9))
  (segment (start 151.25 82.1) (end 151.25 84.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 23090661-281e-4e3b-b97e-141ab3f67d61))
  (segment (start 154.75 131.246446) (end 154.853553 131.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 23381e1b-033f-42c5-ae93-94a637dcf257))
  (segment (start 148.853553 141.35) (end 150 141.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2357fdec-1350-4a9a-8dca-71d853cbd27a))
  (segment (start 144.75 70.1) (end 144.75 72.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2389b67b-2daa-4c30-b469-deaa93f8b7a4))
  (segment (start 146 41.35) (end 145.353553 41.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 23c05512-53bd-4307-84fb-6b2fef7d0558))
  (segment (start 147.25 48.1) (end 147.25 47.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 23dd95d3-05bd-4e25-b122-181156eb6148))
  (segment (start 155.25 92.1) (end 155.25 94.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 23f6ab8f-bf87-4928-87e4-56b33c9fef27))
  (segment (start 152 157.35) (end 154 157.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 242ac619-8680-4876-9878-f156b8cd53c9))
  (segment (start 145.353553 58.85) (end 145.25 58.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 242ae269-7810-42d5-ac32-def12d6e7b63))
  (segment (start 153.25 48.1) (end 153.25 48.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 242b4572-d43f-45e0-b982-2fe059ea1233))
  (segment (start 150.646446 132.85) (end 150.75 132.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2458a55c-bc76-400e-bbca-d53d1c3de630))
  (segment (start 152.646446 71.35) (end 152 71.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 248e6ae2-8b48-48e3-85ef-bad1490352d7))
  (segment (start 152.75 136.1) (end 152.75 138.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 24bddc5c-298f-4142-8670-37e8de36d991))
  (segment (start 152.75 124.1) (end 152.75 126.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 24f25183-5662-4839-8538-31007d4f1d66))
  (segment (start 149.25 122.1) (end 149.25 124.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 252bc041-d351-4e6b-a08d-e91aa1f21256))
  (segment (start 148.853553 140.85) (end 148.75 140.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 25315e1e-400e-4324-96ea-d96d5fab7028))
  (segment (start 147.25 79.453553) (end 147.25 80.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2557899a-bb7b-494a-b6fe-b976b29ebca4))
  (segment (start 147.25 42.953553) (end 147.146446 42.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 255aa88e-abed-4c32-837c-70d445a7a508))
  (segment (start 144.75 100.1) (end 144.75 102.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 255b455c-56c5-454a-8647-6da246c8a77e))
  (segment (start 153.25 114.1) (end 153.25 116.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 25695521-a149-4fc0-8ec8-3f3013a6886b))
  (segment (start 148 138.85) (end 150 138.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2595d195-06ab-4e31-b592-e67be6994c50))
  (segment (start 150.75 60.1) (end 150.75 59.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 259f318b-6294-4480-8151-5233385fa6b9))
  (segment (start 154.646446 69.35) (end 154.75 69.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 260b362d-9b82-476a-b892-5544dc4ef339))
  (segment (start 146 133.35) (end 145.353553 133.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 260b8648-cc95-4d4c-92c6-81c8e7c1ffda))
  (segment (start 151.25 37.453553) (end 151.25 38.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 260c1ff9-6aba-407b-a354-0e250b5cf6a2))
  (segment (start 150.75 91.453553) (end 150.75 92.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 263a636b-8a8b-46f8-b0b3-4bab9586977c))
  (segment (start 153.25 132.1) (end 153.25 132.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 265641ff-126d-4664-9c85-3939015a9fff))
  (segment (start 147.25 122.1) (end 147.25 124.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 267a34cf-d6cf-43e4-a421-5091ae04182c))
  (segment (start 151.146446 133.35) (end 151.25 133.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 267efe64-a34d-495a-8a19-f0aee2df5b43))
  (segment (start 149.146446 92.85) (end 148 92.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2699ce13-2586-49de-a037-5e5a16228bee))
  (segment (start 147.25 44.1) (end 147.25 42.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 26ad63ad-f9f1-47e1-8f1e-1d4cad376378))
  (segment (start 153.25 93.246446) (end 153.25 92.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 26f1f204-b403-479c-b063-1ad912210218))
  (segment (start 153.25 48.746446) (end 153.353553 48.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 273322e3-bbf3-4150-b945-50153cd5d06c))
  (segment (start 150.646446 99.35) (end 150 99.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2735d699-abc6-41e8-84fe-18f6146e39bf))
  (segment (start 148.75 114.1) (end 148.75 116.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 276dc359-0d1a-4ab6-b12e-709b4a1bcf48))
  (segment (start 147.25 56.746446) (end 147.353553 56.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 27771487-67a8-4c74-aed7-39a17f36863a))
  (segment (start 145.25 112.1) (end 145.25 114.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 27a02478-d76d-42c3-ac0d-6baf93ce4e88))
  (segment (start 147.353553 29.35) (end 147.25 29.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 27ba237d-6329-4fcc-bb52-46caa1a0a8f2))
  (segment (start 153.353553 95.35) (end 153.25 95.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 281a7f2f-07fc-41db-a1d0-1299a58719de))
  (segment (start 146.75 48.1) (end 146.75 46.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 286779a6-35c0-4c2b-83a1-f4ee24d46f8c))
  (segment (start 146 163.35) (end 148 163.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 28fba24d-1462-4a56-8e83-ee8d05411d8c))
  (segment (start 149.25 78.953553) (end 149.146446 78.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2906bca8-2037-4662-a278-f4dd691d76e7))
  (segment (start 154.75 82.1) (end 154.75 83.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 29337e6f-b38a-477c-a907-e8002ca1348a))
  (segment (start 150 133.35) (end 151.146446 133.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2965c5dc-96b2-4373-8ecb-cda1bdba0419))
  (segment (start 150.853553 158.85) (end 150.75 158.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 29c31a9e-282d-4ae0-bc77-2d5589ea99c2))
  (segment (start 150 132.85) (end 150.646446 132.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2a2ea64d-d156-437c-bb30-984573ebcc60))
  (segment (start 148 76.85) (end 150 76.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2a4532e6-44b8-4a9a-948d-7a1e3332f436))
  (segment (start 145.25 86.1) (end 145.25 88.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2a75c7db-4a9a-48aa-94a3-1951dc86baad))
  (segment (start 152.853553 80.85) (end 152.75 80.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2a8188f4-e738-4480-a6fd-e065197ff09a))
  (segment (start 148 146.85) (end 150 146.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2a847776-cec9-4b30-b41c-89d82a0cfec5))
  (segment (start 153.25 62.1) (end 153.25 64.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2a92a201-7a5a-4cb7-bd62-0b4adaf5868e))
  (segment (start 151.25 50.1) (end 151.25 52.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2ae2b192-a466-45e4-833e-da5a2d478210))
  (segment (start 148 162.85) (end 148.646446 162.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2af6215f-a0c7-4f30-bae4-a909082c1deb))
  (segment (start 152 152.85) (end 154 152.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2b48c885-b239-460e-97a6-21c6628b459e))
  (segment (start 145.25 130.746446) (end 145.353553 130.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2b66eae5-3896-438f-b87c-2960f47067d9))
  (segment (start 148.646446 66.849999) (end 148.75 66.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2b7050e1-92ef-49f8-a28b-570869fd0099))
  (segment (start 144.853553 145.35) (end 146 145.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2c6285d0-57e4-40cb-87ab-5a18e0bfa497))
  (segment (start 150.75 126.1) (end 150.75 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2c62f918-6eb0-4773-b465-bb4cef685a50))
  (segment (start 144.75 76.953553) (end 144.75 78.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2c753d58-1602-4696-91bf-1935f64ea4ed))
  (segment (start 154 152.85) (end 154.646446 152.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2c954cb7-03c8-4de8-9e7c-f80709597584))
  (segment (start 144.75 75.246446) (end 144.853553 75.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2cad19d3-6c0e-4072-90cb-28dc75306242))
  (segment (start 144.75 146.953553) (end 144.75 148.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2cb99195-e0f2-46bf-b9e3-dc237f16324c))
  (segment (start 145.25 46.1) (end 145.25 48.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2cbe3dd1-ea49-4389-af3d-d73e33ce2c9d))
  (segment (start 154.646446 41.35) (end 154.75 41.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2cd4183c-9764-4f7f-8906-9e5df4e2416d))
  (segment (start 145.25 166.1) (end 145.25 166.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2cd4e283-ed21-4cc5-ba0f-f61804a3dc51))
  (segment (start 155.25 90.1) (end 155.25 92.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2d28811d-0e0e-46a6-8ddf-6d958732059e))
  (segment (start 153.25 118.1) (end 153.25 120.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2d43aa5e-d106-4dec-9c16-12bad6e9b581))
  (segment (start 154.75 133.453553) (end 154.646446 133.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2de702ea-5b50-4730-a32e-4863c6ecb0b1))
  (segment (start 150 71.35) (end 152 71.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2e423b88-785b-4d88-b623-e040c4d8da21))
  (segment (start 149.353553 44.85) (end 150 44.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2e503369-6a56-4a15-b634-06b7f5ca91b3))
  (segment (start 152.646446 75.35) (end 152.75 75.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2e85ae05-7212-4b98-8b7a-b7b29c7f7d68))
  (segment (start 154.75 130.1) (end 154.75 131.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2f07be60-54e9-4f3d-b033-20bae1f9885b))
  (segment (start 152.75 161.246446) (end 152.853553 161.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2f0fb67c-dd49-4be7-87ce-b3c65418e2d9))
  (segment (start 150 96.85) (end 148.853553 96.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2f3de399-a3ea-4895-8305-f7004907dcc9))
  (segment (start 154.75 81.453553) (end 154.75 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2f473bf5-efa1-4359-b017-be5d4093ab27))
  (segment (start 147.25 30.1) (end 147.25 32.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2f77ba16-77fa-4e94-9323-e5425acab30f))
  (segment (start 147.8 169.15) (end 147.6 169.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2f9c9895-fa8d-4b18-bd41-b4be27cdd96f))
  (segment (start 154.75 89.453553) (end 154.646446 89.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2faa5ef0-c589-49dd-944c-fcee3169c4b6))
  (segment (start 150 96.85) (end 150.646446 96.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2fc56303-45a3-4549-a2e1-bddae6d8d3b4))
  (segment (start 144.75 130.1) (end 144.75 131.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 2fd13c4b-cfe7-4652-a4c9-19cac78959d7))
  (segment (start 151.25 100.1) (end 151.25 102.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 30085ac5-0408-4d9e-92c0-12f80c8fd4eb))
  (segment (start 148 136.85) (end 150 136.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 305f38d9-8ad5-4353-acfd-d4c77d4ae427))
  (segment (start 152.853553 73.35) (end 154 73.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 306e03b2-a6ef-47eb-8533-e65634696377))
  (segment (start 154 95.35) (end 154.646446 95.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 307578ad-b390-4018-9b58-e5d9314b7bf3))
  (segment (start 155.25 28.1) (end 155.25 30.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 30cb45e5-030c-4a87-bbae-0de406a27079))
  (segment (start 152.646446 135.35) (end 152 135.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 31440937-b625-4942-9c66-255231fea84c))
  (segment (start 154.646446 145.35) (end 154 145.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 31648079-cc4e-4c9e-a099-9f32d10092c7))
  (segment (start 155.25 28.1) (end 155.25 26.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 318ae991-e58d-4fd9-80c8-db0f710fc18f))
  (segment (start 145.25 50.1) (end 145.25 52.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 31b13f14-c542-4123-b65c-c7bd1e749125))
  (segment (start 151.146446 35.35) (end 151.25 35.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 31cbeedf-596a-4059-be92-6e339652aaa6))
  (segment (start 150.75 56.1) (end 150.75 56.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 31ce78cd-24f7-47bd-80f6-2cd636c8254a))
  (segment (start 153.25 106.1) (end 153.25 108.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 322e78ec-6515-4c9d-b575-fed1254da453))
  (segment (start 145.25 72.1) (end 145.25 74.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 324289b7-39b9-4695-a3ca-6b7b1e37b4e7))
  (segment (start 154.75 120.1) (end 154.75 122.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 32745b08-ec10-4901-a4af-3fa0c5e35fba))
  (segment (start 145.25 160.1) (end 145.25 162.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 32856c6d-7a6d-49d4-83ac-5deafb0d12a9))
  (segment (start 153.25 166.1) (end 153.25 168.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 32b07c23-b5cd-4604-b89d-19a236eade28))
  (segment (start 150.646446 131.35) (end 150.75 131.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 32beca93-bc54-498a-b31f-a050add652ef))
  (segment (start 154.75 48.746446) (end 154.75 48.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 32c23e2e-f902-478a-8866-d952631a1fa1))
  (segment (start 145.25 54.1) (end 145.25 56.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 32c8e037-dd08-41d4-873e-a4955f0c9562))
  (segment (start 152.853553 79.35) (end 153.146446 79.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 33182f63-f41d-438e-abe2-cd45b4c7a46f))
  (segment (start 154.646446 51.35) (end 154 51.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3363a3cf-5880-4144-bf3f-656a7cb3c0d9))
  (segment (start 151.25 126.1) (end 151.25 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 33aeaf06-6b6b-4fc2-8221-2b5d2af034f1))
  (segment (start 153.353553 72.85) (end 154 72.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 346df0f6-e9f9-4a4e-899c-de52c861f54b))
  (segment (start 151.25 102.1) (end 151.25 104.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 347cf724-5e97-4a1d-8ba7-d576a2d1d746))
  (segment (start 146.75 116.1) (end 146.75 118.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3480822d-4095-44fc-b9b3-0376c5732abf))
  (segment (start 152.75 52.1) (end 152.75 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 34a29092-469b-4e2a-8558-a056788a6047))
  (segment (start 146.75 142.1) (end 146.75 141.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 34dfed9b-758d-4c69-89b5-c171d5d62170))
  (segment (start 154 155.35) (end 155.146446 155.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 35531882-5b3a-4422-84aa-7869d445e4ba))
  (segment (start 145.25 126.1) (end 145.25 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3575c702-35d6-4fda-87ff-590e9c81edbc))
  (segment (start 146.75 42.953553) (end 146.75 44.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 35a545b8-40c8-4984-8054-02bfae8e2144))
  (segment (start 151.25 76.953553) (end 151.146446 76.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 35faee32-38df-4815-9018-dc36f9df6a0b))
  (segment (start 146.75 114.1) (end 146.75 116.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 361ac9a8-6aed-4c86-abd0-436db3391cca))
  (segment (start 147.353553 155.35) (end 148 155.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3678948c-681a-4f50-8e9b-0a567fde6cb5))
  (segment (start 145.25 164.1) (end 145.25 163.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 369947bf-e3ad-404b-a143-4cf852540f12))
  (segment (start 146 138.85) (end 148 138.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 36f17d1c-3b35-4210-ac48-02184012d10f))
  (segment (start 154.75 162.1) (end 154.75 162.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3722200f-2db7-4985-9598-f53b25fb346f))
  (segment (start 152 151.35) (end 153.146446 151.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 37926d01-9259-4477-8be2-7c6e84734749))
  (segment (start 148.75 106.1) (end 148.75 108.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 37f480b4-76fd-41a4-996d-8ff08e5c4594))
  (segment (start 155.25 78.1) (end 155.25 80.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 382ad24b-55c0-46d1-a1ce-5c65720956ea))
  (segment (start 148.646446 162.85) (end 148.75 162.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 38334291-1179-485e-90cf-098e99081d60))
  (segment (start 148 79.35) (end 147.353553 79.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3872ca2d-029a-41a9-953f-6350fb156167))
  (segment (start 148 28.85) (end 146.853553 28.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 38859d36-9403-4f54-ad01-4877df9d74d9))
  (segment (start 148 89.35) (end 150 89.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 38b1ebe3-874f-4997-a2a0-b0335d8baf93))
  (segment (start 144.75 167.246446) (end 144.853553 167.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 38bce750-6e5e-4263-97f4-05d634a57776))
  (segment (start 154.75 86.1) (end 154.75 85.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 38e6102e-243b-4ffa-9e60-6342375641d3))
  (segment (start 147.25 153.453553) (end 147.353553 153.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3904611d-3dd7-43d9-8d7b-2a6308b7f7ec))
  (segment (start 145.25 156.1) (end 145.25 158.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 39662d8b-04a2-44bb-9c90-676430be9670))
  (segment (start 149.25 129.246446) (end 149.25 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 396d151f-442a-4c7d-9e5f-30d0c65aa8e4))
  (segment (start 152.75 164.1) (end 152.75 166.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 39a30bad-fafe-4cbd-b449-9cd4bef117e8))
  (segment (start 152.853553 162.85) (end 152.75 162.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 39f89e19-2939-49ab-8921-fd7319aba424))
  (segment (start 150 146.85) (end 152 146.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3a38e623-ad71-4410-8e07-3f0c5a8bcdbe))
  (segment (start 145.25 32.1) (end 145.25 34.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3a58e34e-c9b2-405f-ad9d-1a94684e757a))
  (segment (start 154 142.85) (end 154.646446 142.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3aee9a2f-bc84-454b-b3bf-db29a3018fa7))
  (segment (start 151.25 78.1) (end 151.25 76.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3afe9b44-1459-4a06-a148-6e70e632dbe5))
  (segment (start 146.75 108.1) (end 146.75 110.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3c17a4c7-dd13-4b41-a35a-29bba87aa436))
  (segment (start 152.75 91.453553) (end 152.646446 91.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3c5bde92-c4a8-4c6a-8f89-2b1eeca216b3))
  (segment (start 144.75 62.1) (end 144.75 64.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3c5cb466-0f2b-43a7-971e-01284334b8eb))
  (segment (start 150.646446 130.85) (end 150 130.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3c6caa29-49c5-4e06-be05-ec0008623096))
  (segment (start 150.75 130.1) (end 150.75 130.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3c738d39-7275-40e3-be9c-0f3af97b7ff2))
  (segment (start 154.646446 95.35) (end 154.75 95.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3cb519b4-33d5-4252-bb7f-8d83fc4cd420))
  (segment (start 147.25 82.1) (end 147.25 84.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3ce0b518-11b5-40e5-8423-a70589649bed))
  (segment (start 152.646446 91.35) (end 152 91.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3d13ef28-4dbd-4c3a-a85c-33608d073893))
  (segment (start 146.75 94.953553) (end 146.75 96.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3d16eb09-559b-4c57-80de-73e634678cde))
  (segment (start 153.25 34.1) (end 153.25 36.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3d2647b8-d112-4655-bc6e-a60442dd237d))
  (segment (start 150.75 54.1) (end 150.75 56.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3d604b18-cc0f-4722-bed2-f6fc4b8b02b4))
  (segment (start 151.25 64.099999) (end 151.25 66.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3d67a946-45bb-40c3-8128-0596561ee770))
  (segment (start 153.25 136.1) (end 153.25 134.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3d82bd4d-4722-45a3-baa6-80b7ad20ffe8))
  (segment (start 150.75 158.953553) (end 150.75 160.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3dda12f2-60fe-4b3f-8184-0bec480c401e))
  (segment (start 153.353553 163.35) (end 153.25 163.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3de8c055-286d-4e2d-8d36-292403239b3f))
  (segment (start 146 27.35) (end 145.353553 27.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3de98d16-97a5-4c9b-bb52-4b05d77468b7))
  (segment (start 147.25 161.246446) (end 147.25 160.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3e22b5b3-2486-4d41-b099-578ab596e49b))
  (segment (start 153.25 161.246446) (end 153.25 160.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3e3b0c48-6288-4c14-b414-8129b7e0be65))
  (segment (start 154.75 134.1) (end 154.75 133.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3e4fc176-7993-4af3-b72e-0a61c35fb945))
  (segment (start 145.25 89.453553) (end 145.353553 89.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3ebd80fe-843b-4438-a4ef-b6aa440ac9f5))
  (segment (start 149.25 50.1) (end 149.25 52.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3ec3576e-fbfb-41fb-87fa-1e2e7b61ecdd))
  (segment (start 155.25 86.1) (end 155.25 84.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3f0298ed-730b-4b1b-8612-a0d371b667bd))
  (segment (start 152.75 72.1) (end 152.75 73.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3f373bc8-ea94-43ab-abf1-2fac1c3cef5e))
  (segment (start 147.353553 136.85) (end 148 136.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3f4c843a-732d-4687-b4f8-5b98b9b30ac6))
  (segment (start 152.75 140.746446) (end 152.75 140.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 3fd9a512-d291-4482-b6b7-831eec061e51))
  (segment (start 148.75 47.453553) (end 148.646446 47.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 400133e4-05b2-4922-8525-34dec7cce7d6))
  (segment (start 154.75 157.453553) (end 154.646446 157.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4002c0ec-65e8-488d-bec1-d54664e41a62))
  (segment (start 147.353553 61.35) (end 147.25 61.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 405dd246-8b70-4bec-9dc4-d7c96f2418d5))
  (segment (start 153.25 112.1) (end 153.25 114.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4079425b-4c8c-49f0-9d3c-0f78916de7fa))
  (segment (start 152.75 72.1) (end 152.75 71.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 409950ff-dba2-4283-9f91-c80af8f782e8))
  (segment (start 155.146446 26.85) (end 154 26.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 40afc1c7-3117-4caa-9d99-55e51760bc9f))
  (segment (start 155.25 140.1) (end 155.25 142.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 410f8989-c494-48ea-ae81-02b50f39ae22))
  (segment (start 150.75 50.1) (end 150.75 52.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 41376a47-cfe6-4936-841a-3705890fb454))
  (segment (start 149.25 92.953553) (end 149.146446 92.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 41c449ed-15d9-4178-a7dc-82f6ca282ac1))
  (segment (start 145.25 56.1) (end 145.25 58.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 41f733e2-1c79-4411-9a95-52e2b0a8b784))
  (segment (start 151.146446 39.35) (end 151.25 39.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4204c291-4abe-4e91-8b35-77fbc38a3566))
  (segment (start 152 146.85) (end 154 146.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 420e9ff4-dc8e-4299-a602-e7e07e36b72b))
  (segment (start 154.75 150.1) (end 154.75 152.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4226dc8e-4fe3-4534-a18b-47a13c2e03fd))
  (segment (start 145.25 104.1) (end 145.25 106.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 42d8fd90-fe2f-4e4e-a111-0878431bf291))
  (segment (start 155.146446 74.85) (end 154 74.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 42df6a89-4ae4-45d2-aa83-2023a0842f04))
  (segment (start 150.75 102.1) (end 150.75 104.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 42e93ef5-7cf6-4255-aed8-dff1ed5993c2))
  (segment (start 155.25 144.953553) (end 155.146446 144.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 42f7e35a-8f77-4ba1-ac15-315e35880d51))
  (segment (start 150 135.35) (end 152 135.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 431d4a72-17a4-43ea-a72c-a3361a1828ff))
  (segment (start 152.75 106.1) (end 152.75 108.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 43223df8-0ddf-4a95-a797-51da40b7edae))
  (segment (start 152 150.85) (end 152.646446 150.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 43286409-95b6-47b3-88cf-20581ee50576))
  (segment (start 146.75 48.1) (end 146.75 50.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 433d8d74-64e8-44dc-a1c2-f27a9aef282d))
  (segment (start 153.25 150.1) (end 153.25 148.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4353dcd8-1375-44ad-9b11-a3466fdc0593))
  (segment (start 152 56.85) (end 151.353553 56.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 43665bc6-37e4-4ff2-bf07-746edce0fec8))
  (segment (start 150 31.35) (end 149.353553 31.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4369a6b1-b1f6-48c6-b3d5-97bbd1652378))
  (segment (start 149.25 48.1) (end 149.25 46.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 43b1f1c9-b23c-4163-9a31-023027472b1d))
  (segment (start 148 77.35) (end 150 77.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 43c24c8f-8b87-49e0-9112-686e3be088c3))
  (segment (start 150.646446 94.85) (end 150 94.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 43e14bc4-f058-4109-9d45-6377a3c7f34c))
  (segment (start 154.646446 152.85) (end 154.75 152.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 44337686-b11a-4a75-a05a-b778752ad882))
  (segment (start 147.25 62.1) (end 147.25 64.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 44946a22-90b9-41d5-b0e6-f6513647e8e8))
  (segment (start 152.75 32.1) (end 152.75 34.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4498c742-97da-4b4a-8953-0d254daa0bf1))
  (segment (start 145.25 133.453553) (end 145.25 134.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 44ab428b-ef27-4d6e-8984-e33ba32cb10f))
  (segment (start 148 139.35) (end 150 139.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 44e352b7-75ca-4094-8846-100beb61ca37))
  (segment (start 152.75 92.1) (end 152.75 91.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 44f811c1-8656-4f08-a6bd-67740ce04dde))
  (segment (start 145.25 154.1) (end 145.25 156.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 451eff46-f5fc-4616-90e8-aaa6de463e64))
  (segment (start 155.25 26.953553) (end 155.146446 26.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 454fd1d9-89e6-4736-a266-1576f3375eaf))
  (segment (start 146 26.85) (end 148 26.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 455fc268-4e86-4634-aee6-560afd0b5e0e))
  (segment (start 152.05 169.15) (end 147.8 169.15) (width 0.25) (layer "F.Cu") (net 17) (tstamp 45717721-171a-48d2-bf62-29acdf069897))
  (segment (start 148 155.35) (end 150 155.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4585e513-4f4a-40c4-991a-1b4cccdb0516))
  (segment (start 148 148.85) (end 150 148.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 45de5098-7ee7-4f07-a19d-f86b34583cd0))
  (segment (start 145.25 28.1) (end 145.25 30.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 46182d17-a0f5-4cfd-b365-7b9a8ce9d047))
  (segment (start 145.25 147.453553) (end 145.25 148.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 464f1e1f-41bb-497a-959a-a345e6fecc67))
  (segment (start 155.25 158.1) (end 155.25 156.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 46e914c8-b3c7-4685-a4b6-c01637334b0a))
  (segment (start 154.75 142.746446) (end 154.75 142.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 46f57ca3-862b-4102-af96-11022106c13c))
  (segment (start 154 162.85) (end 152.853553 162.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 476c81f0-24b6-4157-970b-ba972b4308c2))
  (segment (start 147.25 124.1) (end 147.25 126.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4787ec37-02fd-46c3-94fc-0a330daae4eb))
  (segment (start 146 59.35) (end 148 59.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 47996d58-aabe-41b0-a7cd-2b2045e87699))
  (segment (start 145.25 108.1) (end 145.25 110.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 47e8dcfd-ae71-4d20-942e-c3134e66b201))
  (segment (start 150.75 132.746446) (end 150.75 132.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 47f86aa4-5113-44d7-a14b-d42aaa8c8b10))
  (segment (start 155.146446 154.85) (end 154 154.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 480410de-55db-4570-accb-f32492314f35))
  (segment (start 154.75 167.246446) (end 154.853553 167.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 480e8384-98fa-4290-86bb-e3f0003e0e40))
  (segment (start 150.75 64.099999) (end 150.75 66.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4850b526-fb85-4300-862f-276f48629cc6))
  (segment (start 152.75 34.1) (end 152.75 36.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 485c0cc1-a966-4f29-b1f2-3610665c5048))
  (segment (start 153.25 160.1) (end 153.25 158.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 485d9558-7c0b-4a8d-92d2-15f99f69820b))
  (segment (start 146.75 36.953553) (end 146.75 37.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 48690377-1928-4938-8480-c8f768497e32))
  (segment (start 147.146446 65.349999) (end 147.25 65.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 48736eb2-6022-4006-b8f1-c0858fe92ef2))
  (segment (start 152.75 139.453553) (end 152.75 140.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 487b3a6b-0534-4511-a4a1-005440aeeab2))
  (segment (start 150 84.85) (end 150.646446 84.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 48bf6837-0c0d-4aa0-a3dd-ad1d2eec87da))
  (segment (start 155.25 58.1) (end 155.25 60.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 48d30897-3629-467f-bddf-6d982ad2617e))
  (segment (start 150 70.85) (end 152 70.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 48d3f397-b406-4819-acda-6b7a4ea1977a))
  (segment (start 145.25 84.1) (end 145.25 86.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 48d530ff-49d2-4e46-a0bb-93bf8f6877d1))
  (segment (start 154.75 90.1) (end 154.75 92.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 496972ee-b6d7-479f-ac10-844007c4cf0c))
  (segment (start 146.75 82.1) (end 146.75 84.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 49ce48af-fb6b-4ece-8b03-b2ff07f8d1ad))
  (segment (start 149.25 100.1) (end 149.25 102.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 49de9c15-ba72-4392-8ed7-8261e563b394))
  (segment (start 153.25 138.1) (end 153.25 140.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 49ebde47-b2b4-46cc-a485-5602ca20b4ba))
  (segment (start 149.25 116.1) (end 149.25 118.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 49f7148d-fc38-45e5-b740-0b635b554a4b))
  (segment (start 146.853553 28.85) (end 146.75 28.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4aa1cdd8-fb7b-493c-81b5-684d1944d172))
  (segment (start 153.25 72.1) (end 153.25 70.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4aa38d90-dacf-470e-b6a6-d9df56aa762f))
  (segment (start 155.25 148.1) (end 155.25 150.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4aab94c3-9781-406c-a7b6-83d1c57d84eb))
  (segment (start 148 134.85) (end 150 134.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4ab605de-fcfe-4334-9a7b-177302775073))
  (segment (start 153.146446 39.35) (end 153.25 39.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4aca8eb7-caf3-402f-b382-3eb537bd3fe8))
  (segment (start 152 74.85) (end 154 74.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4b5df591-9b60-4a70-ad5a-0196b6d60087))
  (segment (start 148 134.85) (end 146.853553 134.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4b95e84b-47ba-4a29-8643-0e62924338f5))
  (segment (start 144.75 92.1) (end 144.75 94.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4bd6ce84-f0e1-43a8-becd-609c5700e518))
  (segment (start 150 43.35) (end 152 43.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4bdfcb67-148e-46a4-b6a4-63f864d8275a))
  (segment (start 155.25 32.1) (end 155.25 34.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4c3c5379-cd0d-4d78-b857-fe248ed4ba7c))
  (segment (start 155.25 102.1) (end 155.25 104.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4c6aa082-97f8-4980-9f17-8aa7a469ac4c))
  (segment (start 154.646446 89.35) (end 154 89.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4c9f8d7a-5715-400a-934f-c8231d0c5083))
  (segment (start 150 43.35) (end 149.353553 43.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4d15eb39-6b69-4353-ae96-48f38368444f))
  (segment (start 144.75 48.1) (end 144.75 50.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4d515114-938c-476c-a820-b326ffc83032))
  (segment (start 144.75 32.1) (end 144.75 34.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4da8cc2f-5106-426c-a3a1-4336d95df3e8))
  (segment (start 146 40.85) (end 144.853553 40.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4dbbc15c-8921-4eac-acd0-188e0039d849))
  (segment (start 155.25 88.953553) (end 155.146446 88.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4dc81370-b560-4276-93e3-6b91a79bb04d))
  (segment (start 149.25 62.1) (end 149.25 64.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4dd680ee-8fb7-4280-9d46-19efa21223b2))
  (segment (start 149.25 35.453553) (end 149.353553 35.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4de7ce3c-fb44-4e4d-bb51-105553648698))
  (segment (start 150 141.35) (end 152 141.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4e1ed95d-8715-4021-8da5-e8ec79ac65e5))
  (segment (start 146.75 72.1) (end 146.75 73.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4e37c814-dfbb-4b90-a17c-51d3802e1e8f))
  (segment (start 147.25 114.1) (end 147.25 116.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4e4119fb-c680-42ea-a6e4-af92fe4b35ae))
  (segment (start 151.25 130.1) (end 151.25 132.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4e652e4e-8105-4465-834f-1923cd31b447))
  (segment (start 155.25 118.1) (end 155.25 120.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4e8a2f8e-ad74-4e48-9989-b2482595ce65))
  (segment (start 147.25 154.1) (end 147.25 153.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4eb03402-fda8-4d84-93b3-9025c82e1bc1))
  (segment (start 148 66.849999) (end 148.646446 66.849999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4ecffc94-9459-4152-b807-6b4454419086))
  (segment (start 149.146446 37.35) (end 149.25 37.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4f43b3d6-3cba-4557-8925-4f5de9ba0209))
  (segment (start 146.75 120.1) (end 146.75 122.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4fa66452-946d-4960-8cb4-389d21536b86))
  (segment (start 148 94.85) (end 146.853553 94.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4fdcfa86-62fb-4204-8b99-5791e8bf2484))
  (segment (start 154.75 28.1) (end 154.75 27.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 4ff51b66-96bc-47ea-9f4b-9016a2570872))
  (segment (start 144.75 67.246446) (end 144.853553 67.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 50195776-ffaf-4126-9457-f6888e0970df))
  (segment (start 152.853553 133.35) (end 154 133.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 502d7819-4149-4699-98f7-5f8c86f71fe0))
  (segment (start 149.25 158.1) (end 149.25 160.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 50414bc3-42c5-4f78-8bcf-d8e6d745fdd4))
  (segment (start 154.75 80.1) (end 154.75 80.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 50673c84-fd56-4d54-b3ca-7b010a314fac))
  (segment (start 148 94.85) (end 150 94.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 506cdffa-3c49-4987-8527-311c8ae163fb))
  (segment (start 148 29.35) (end 147.353553 29.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 507703fe-5ee0-42ff-be29-f8c9c2bfe441))
  (segment (start 150 34.85) (end 150.646446 34.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 51193a0e-649c-4eed-be6f-a250beccc4ee))
  (segment (start 148 93.35) (end 149.146446 93.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 51235af0-842f-4523-914f-896d17b38ba6))
  (segment (start 150 138.85) (end 152 138.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5126f7e6-18ec-4a2c-87af-77b601fba1f5))
  (segment (start 146.646446 141.35) (end 146 141.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5190691c-cc2d-4418-b3c3-8a7eeb99a13f))
  (segment (start 147.25 84.746446) (end 147.25 84.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 51ff8866-7fb2-4180-8f9b-b8d8bdedea2c))
  (segment (start 148.75 112.1) (end 148.75 114.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 524a3d57-127e-40bc-aaa8-f17378f9a87c))
  (segment (start 154 87.35) (end 155.146446 87.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 527bbce5-a7a0-4ab7-956b-7c1b9b1a6d39))
  (segment (start 154.853553 131.35) (end 155.146446 131.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 52f735ab-fe73-4177-b09a-46141b80f08d))
  (segment (start 148 154.85) (end 147.353553 154.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 533a93a5-c459-4c01-9acc-5f1b0133b065))
  (segment (start 146.75 143.246446) (end 146.853553 143.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 53513803-e07a-45c1-b64d-854ebc81811f))
  (segment (start 146.75 129.246446) (end 146.853553 129.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 53721fd6-3c43-46d3-8322-af6f942ec57c))
  (segment (start 150.646446 84.85) (end 150.75 84.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 53b02879-0180-44bf-8a36-04aaecf245b5))
  (segment (start 154.75 46.1) (end 154.75 48.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 53b239e2-da57-44c2-8e4f-8251933aa782))
  (segment (start 152 155.35) (end 154 155.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 542e135a-2ff6-4103-a645-b223343add28))
  (segment (start 150.75 96.746446) (end 150.75 96.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 54607608-06d4-4ec5-a3e0-ae9212e0481f))
  (segment (start 148.75 83.246446) (end 148.853553 83.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 54fdd74a-26ea-48d8-822c-aadfc03c947a))
  (segment (start 152.75 30.1) (end 152.75 29.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 55235ab8-003a-4560-ae3f-0b1b573b47fd))
  (segment (start 146.853553 57.35) (end 148 57.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 552bb44f-8515-444a-beda-3a96dba20102))
  (segment (start 154 95.35) (end 153.353553 95.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 554c0932-e907-4d77-a208-d935064cfeac))
  (segment (start 154 153.35) (end 155.146446 153.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 554f1ef0-8724-4b56-9fe7-8c99b093a9e2))
  (segment (start 152 57.35) (end 150 57.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 55529001-088a-457a-9aa9-be7b5cbc4262))
  (segment (start 152.75 98.1) (end 152.75 100.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 55a420cc-3ca0-488f-b12e-e37a016eff81))
  (segment (start 154.646446 80.85) (end 154 80.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 55e4079f-89ca-4403-9e08-a953426dca8a))
  (segment (start 151.353553 37.35) (end 151.25 37.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 560600be-17db-431f-a0c2-10199e125aa0))
  (segment (start 152.75 166.1) (end 152.75 168.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 563cf84d-7d9a-4cab-befa-e0d0af465bb0))
  (segment (start 155.25 134.1) (end 155.25 136.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5659ddd9-09ec-41c5-8ca2-c5e6ad49c994))
  (segment (start 145.353553 59.35) (end 146 59.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 56617235-d7a9-409f-82aa-2a14a971db9d))
  (segment (start 154.646446 27.35) (end 154 27.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 56620488-7306-418e-927b-e2c2db5bbe1c))
  (segment (start 146.75 86.1) (end 146.75 87.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5666f5c0-85e7-4cc0-ba82-f59e1a36c411))
  (segment (start 152.85 169.25) (end 152.85 170.8) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5677c26e-9c36-43d8-9efe-89df1d0a316a))
  (segment (start 145.25 96.1) (end 145.25 98.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 56a04238-eeca-43c4-b243-e2b748acc21b))
  (segment (start 148.75 45.246446) (end 148.853553 45.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 56a2dc6a-6d65-4741-9b29-3e8fbc8f1797))
  (segment (start 153.25 58.1) (end 153.25 56.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 56d42d8b-0ee0-4b0e-9b1a-01ff46cbb45e))
  (segment (start 150 148.85) (end 152 148.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 56dcaa2f-5b2f-45f9-be3f-97678b595082))
  (segment (start 150.646446 166.85) (end 150.75 166.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 56fab2cc-0448-483c-8f3f-511b5efb9c0d))
  (segment (start 147.25 150.1) (end 147.25 152.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5703ed69-7f8f-45a0-ac4b-ebd2c7ef25dc))
  (segment (start 145.25 122.1) (end 145.25 124.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 57663d20-1667-454f-b1de-420967b6981c))
  (segment (start 150.75 77.453553) (end 150.646446 77.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5767582f-c2af-4852-8d1f-d6ed88b8d671))
  (segment (start 152.75 132.1) (end 152.75 133.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 57935938-5dbd-4ba0-8142-24e90f81d8ab))
  (segment (start 152.75 112.1) (end 152.75 114.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5798d865-e921-4790-8abe-cd6214a0008a))
  (segment (start 148 149.35) (end 150 149.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 579ba6a7-f7f6-4a51-b1cd-31bc2140aab5))
  (segment (start 152.646446 29.35) (end 152 29.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 57a3abca-a984-4c6e-a403-d9586741d4c0))
  (segment (start 147.25 65.246446) (end 147.25 64.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 57dc27d8-892e-446b-b876-8d643ae76bb3))
  (segment (start 144.75 131.246446) (end 144.853553 131.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 581e3965-fd8b-46f8-8a17-008d491d8bc1))
  (segment (start 155.25 132.953553) (end 155.146446 132.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 583f620d-3288-41a5-a5c9-e0b1868481e5))
  (segment (start 145.353553 147.35) (end 145.25 147.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 58551d3a-3ed5-4918-98fd-068c1c3a3b76))
  (segment (start 155.146446 155.35) (end 155.25 155.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 588013fe-a2a1-47a8-ad98-1f7093a36065))
  (segment (start 147.25 32.1) (end 147.25 34.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5889cbf9-684e-42dc-949c-80c8b75b3f9f))
  (segment (start 155.25 76.1) (end 155.25 78.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 58930ee2-eec7-4631-98ff-d1594c5e6b3f))
  (segment (start 144.75 42.1) (end 144.75 44.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5906f3dc-a3eb-48fa-bbed-086de6369972))
  (segment (start 147.353553 154.85) (end 147.25 154.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 59310f14-a3da-4e5f-b796-9838b416e9f7))
  (segment (start 144.853553 68.85) (end 144.75 68.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 59435360-2b7a-45c1-8c4d-a2d9a3b8bb8b))
  (segment (start 154.75 146.1) (end 154.75 145.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 595fa5b3-13d1-44de-8c72-f1bf1513de50))
  (segment (start 147.25 54.1) (end 147.25 56.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 596eb131-77cc-41eb-8739-2589010921a9))
  (segment (start 146.75 30.1) (end 146.75 32.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5990574b-cf15-47cb-a4f0-3e81dc9bf0ef))
  (segment (start 147.25 44.1) (end 147.25 46.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5992e276-5d18-405a-adc3-a639f9e67472))
  (segment (start 154.75 68.746446) (end 154.646446 68.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 59b08d96-ca72-48f2-8e2e-ed8146d28881))
  (segment (start 147.25 34.1) (end 147.25 34.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5a348f80-445e-40de-b1cd-c9af61ff732f))
  (segment (start 152.75 71.453553) (end 152.646446 71.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5a369be2-6277-41c4-b9c9-04647f8ce93d))
  (segment (start 145.25 69.453553) (end 145.25 70.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5a9e28bc-0cd6-4285-be61-a915e0ae39bc))
  (segment (start 152.75 92.1) (end 152.75 93.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5aa5af84-dade-45b8-aa46-8057af8591a7))
  (segment (start 149.25 110.1) (end 149.25 112.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5b7181fd-5911-4e48-a053-89c5d17df7bf))
  (segment (start 148 148.85) (end 146.853553 148.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5b8c56a5-631b-4dbd-a4b6-ed05291379e9))
  (segment (start 147.25 152.746446) (end 147.25 152.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5b95e4d8-bef2-4f9f-8a2a-e7b9a747d378))
  (segment (start 151.25 46.1) (end 151.25 48.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5bc26a2a-3be1-4e33-a91d-67c177c2e55a))
  (segment (start 154.75 64.099999) (end 154.75 66.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5bef63c6-a44c-44e3-89f8-01154b1e890f))
  (segment (start 151.146446 97.35) (end 151.25 97.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5c3c82d4-8394-4d13-ba47-843ee28e4981))
  (segment (start 146.75 54.1) (end 146.75 56.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5c53c29a-3591-42fd-aaca-9f67d4dd5963))
  (segment (start 148 61.35) (end 147.353553 61.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5c9b5846-1e53-44be-b6b5-0149b0fd4392))
  (segment (start 154.646446 147.35) (end 154.75 147.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5cbb8b14-e598-4081-8396-a8506e0e0988))
  (segment (start 148 88.85) (end 150 88.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5d2224c6-caed-4b40-a451-bd10f89d0d72))
  (segment (start 148 152.85) (end 147.353553 152.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5d8b40c2-0118-4fd2-96fe-36d27678c38f))
  (segment (start 150.75 110.1) (end 150.75 112.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5daab3cf-57bf-4b4b-89b9-5cd5bac3b955))
  (segment (start 150.75 59.453553) (end 150.646446 59.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5df2f5cf-b8e5-46b9-97ee-081e004c9393))
  (segment (start 146 68.85) (end 144.853553 68.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5df57d39-e777-4c02-a2ad-fca479dea4b6))
  (segment (start 152.75 30.1) (end 152.75 32.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5e2d1de6-f0b1-4cb3-b6ed-4f350f7a595e))
  (segment (start 150.646446 164.85) (end 150 164.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5e4512ec-a61b-41ef-b766-7cff8cefcbe5))
  (segment (start 150 139.35) (end 152 139.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5e66ad47-5c58-4222-9190-5deab58318b5))
  (segment (start 154.75 158.1) (end 154.75 157.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5eb0aada-a885-4aa8-b56e-7196f6724373))
  (segment (start 145.25 60.1) (end 145.25 59.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5eb7a112-e103-41c7-b365-b64aafde1dc6))
  (segment (start 146.75 126.1) (end 146.75 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5f280668-2f5a-41ea-af2a-20800bae7fb0))
  (segment (start 153.25 52.1) (end 153.25 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5f327231-163d-42a0-ad3c-866d105e55b0))
  (segment (start 148 131.35) (end 150 131.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5f3cdd18-9ad2-4cca-97c1-095ffa17312a))
  (segment (start 146 144.85) (end 148 144.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5f6a2f0c-2a25-4c4a-848b-bff23d2fa57f))
  (segment (start 155.146446 73.35) (end 155.25 73.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5f742696-a878-45cf-8cfc-75aabb9ce682))
  (segment (start 154 51.35) (end 153.353553 51.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5f7eff7c-5947-44ce-9e82-39b2347d2486))
  (segment (start 150.75 114.1) (end 150.75 116.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5fba18c8-3b89-44cf-b62a-1fe8c6f7eccf))
  (segment (start 149.25 114.1) (end 149.25 116.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 5fd6b34a-de70-4782-8545-c8343a5e9349))
  (segment (start 155.25 98.1) (end 155.25 100.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6006b00f-dfe7-49be-ab20-204dde4027f4))
  (segment (start 150.853553 36.85) (end 150.75 36.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 60419aa3-6ed0-4532-af6d-568f1c931d07))
  (segment (start 151.146446 72.85) (end 150 72.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 604c5e47-d879-49ba-81c5-1c2197e1458c))
  (segment (start 153.25 104.1) (end 153.25 106.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 60c28332-70b1-4fc1-a575-8517489144b5))
  (segment (start 144.75 72.1) (end 144.75 74.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 60f4efdb-658f-4b93-84e5-722d8da3ac65))
  (segment (start 154.646446 85.35) (end 154 85.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 610d0e22-0dfb-4054-a385-008ede8f2836))
  (segment (start 150 131.35) (end 150.646446 131.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 613d13ab-a4e4-4419-b89a-2034737fe15f))
  (segment (start 152.75 168.45) (end 152.05 169.15) (width 0.25) (layer "F.Cu") (net 17) (tstamp 617da90d-be86-48d1-b55f-45f16ced8a40))
  (segment (start 153.25 44.1) (end 153.25 42.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 618066bc-9662-4f04-a0c7-31fa68978e54))
  (segment (start 151.25 91.453553) (end 151.353553 91.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 61c1e1ed-6d97-410b-a56d-d7a5eb4ea187))
  (segment (start 145.25 116.1) (end 145.25 118.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 61f04517-4e7c-4834-be45-7c593a25c784))
  (segment (start 152.75 108.1) (end 152.75 110.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6201057d-0543-4a9f-a590-1fc499a8de7f))
  (segment (start 146 89.35) (end 148 89.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 62af501b-77a5-4e6d-9b67-0655cf8ef066))
  (segment (start 148.75 55.246446) (end 148.853553 55.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6330d723-9865-41ae-b996-eea64805cd32))
  (segment (start 144.75 138.1) (end 144.75 139.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 63a51171-71c9-435e-9798-2bf5413c9749))
  (segment (start 150.75 52.1) (end 150.75 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 63b081fc-8abb-489d-8a74-01407c6dbb24))
  (segment (start 151.25 85.246446) (end 151.25 84.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 63b08b1e-0a6b-4554-9ece-949a8f0e5541))
  (segment (start 153.25 98.1) (end 153.25 100.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 63b83457-2321-42c2-850c-60c235d34584))
  (segment (start 154.646446 75.35) (end 154 75.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6405b630-4115-40cc-8855-4d17d60dfa6d))
  (segment (start 148 163.35) (end 149.146446 163.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 64afb1a7-0df2-4452-9f39-1c2c8ba2a1d4))
  (segment (start 154.75 98.1) (end 154.75 100.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 64e63653-bdbd-4493-9f44-335c29736c07))
  (segment (start 150.75 48.1) (end 150.75 50.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 650f23f4-92b2-4363-934d-0b3b948f3606))
  (segment (start 148.75 72.1) (end 148.75 72.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 651fed38-9a86-4f3a-ae46-966b0e71d28b))
  (segment (start 144.75 39.246446) (end 144.853553 39.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 65370754-bca7-4ff1-aa8c-4f4d8e12fced))
  (segment (start 153.25 168.85) (end 152.85 169.25) (width 0.25) (layer "F.Cu") (net 17) (tstamp 653af35a-8876-49c1-8cfc-1f3d09aa2c17))
  (segment (start 152 142.85) (end 154 142.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 654111b0-ea03-470b-948d-8cbb4dccafea))
  (segment (start 145.25 64.099999) (end 145.25 66.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 65763144-ede2-45b4-ad22-e51a9b977574))
  (segment (start 154.75 147.453553) (end 154.75 148.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 65b9b42d-c334-4e77-bee7-16fdf1545786))
  (segment (start 144.75 124.1) (end 144.75 126.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 65d5d6e5-20a1-4fe6-84fd-45c45565d9da))
  (segment (start 148 58.85) (end 150 58.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 65fa08b4-0553-48a1-902a-3d2343a1e088))
  (segment (start 152.646446 37.35) (end 152.75 37.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 66151056-1d7a-4e09-83d4-327f57eb15ae))
  (segment (start 151.25 48.1) (end 151.25 50.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6629ed11-679d-4b44-b739-ba8951fcb0e2))
  (segment (start 155.25 146.1) (end 155.25 144.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 662fbc9e-a6a6-45b9-b7af-175eacc3bb44))
  (segment (start 153.146446 141.35) (end 153.25 141.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 669a0500-64db-4fea-9524-861b1b6e8c08))
  (segment (start 153.25 58.1) (end 153.25 60.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 66b8e155-8255-48e8-a0fb-5959178e6604))
  (segment (start 146.75 96.1) (end 146.75 98.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 66c62d23-8617-474e-ab60-beb6cadd918e))
  (segment (start 152.646446 138.85) (end 152 138.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 671bb111-67aa-4ccc-8fee-26237bbe83a8))
  (segment (start 147.25 98.1) (end 147.25 100.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 678fc725-3217-448e-8f77-25e09edc4548))
  (segment (start 154.75 146.746446) (end 154.646446 146.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 67942f6d-80b1-4ab4-b842-5c2699d9eaec))
  (segment (start 153.146446 28.85) (end 152 28.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6818e060-d142-47d7-b9aa-3f920050fa9d))
  (segment (start 152.646446 140.85) (end 152.75 140.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6831a162-9cd5-4e06-9dcb-4e88eac88852))
  (segment (start 150 90.85) (end 152 90.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 686b342c-b687-477c-b6a2-01ade7c8469a))
  (segment (start 146.75 62.1) (end 146.75 64.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 68950f1e-a53e-4110-a8dc-e9e5754abc6d))
  (segment (start 148 164.85) (end 150 164.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 689d7ca3-365b-4a72-8a7f-64f99a78653e))
  (segment (start 148.75 48.1) (end 148.75 47.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 68a0e275-73aa-4486-bbfa-c1bd52502a65))
  (segment (start 144.75 84.1) (end 144.75 86.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 68a496eb-22af-409d-af8c-35eb99737ce6))
  (segment (start 146.853553 36.85) (end 146.75 36.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 68f48af0-00de-4ca2-9972-4d25597dded1))
  (segment (start 144.75 154.1) (end 144.75 156.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 69266cad-9e4e-41c5-adc2-aa1050ffc166))
  (segment (start 154.75 76.1) (end 154.75 78.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 699d6073-84a2-429b-90ea-b2bf2052e13d))
  (segment (start 144.75 132.953553) (end 144.75 134.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 69a16081-4cde-4ed7-9cd7-4334922d79b6))
  (segment (start 147.353553 86.85) (end 148 86.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 69a2933c-4543-4ba0-bc91-24c22f7fbb9d))
  (segment (start 145.25 124.1) (end 145.25 126.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 69a35e5d-ca26-4377-b6f3-f71e0d3de01e))
  (segment (start 152.646446 43.35) (end 152 43.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 69d9cab6-beee-4cc4-b341-57fe0dff3f54))
  (segment (start 153.25 134.953553) (end 153.146446 134.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 69f734b2-865e-439f-9650-94947facea8d))
  (segment (start 147.25 112.1) (end 147.25 114.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6a112f44-8007-4b9f-af74-5ec06302e4e6))
  (segment (start 146.75 142.1) (end 146.75 143.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6a384855-1e5b-4137-ac33-e7a21cb4f3e0))
  (segment (start 152.75 160.1) (end 152.75 159.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6a446d32-480f-44e7-b4c5-2376d3137e86))
  (segment (start 154.75 110.1) (end 154.75 112.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6a6d6ac8-8bbc-48b7-9805-482489ed6b31))
  (segment (start 147.25 50.1) (end 147.25 52.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6a825d04-32bb-43df-8259-502ce1859db9))
  (segment (start 155.25 68.1) (end 155.25 70.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6ab47a29-b53c-49fb-97ab-54fa095a4a6b))
  (segment (start 155.25 46.1) (end 155.25 48.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6b400abd-7385-4210-9cb9-f250c1c8e029))
  (segment (start 153.25 39.246446) (end 153.25 38.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6b619b00-47dd-4e86-b4d8-1455b3960afa))
  (segment (start 152.75 84.1) (end 152.75 85.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6b7289c1-9e09-4e70-bba2-6b6a2a155c4d))
  (segment (start 145.25 74.1) (end 145.25 74.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6b9507ac-130d-45ec-bfeb-3f71b31c624b))
  (segment (start 153.25 96.1) (end 153.25 98.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6bef441e-2a36-44c8-9459-fdd9a3185eed))
  (segment (start 152 27.35) (end 154 27.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6c486a27-d926-439f-a608-c4d9f73dfa91))
  (segment (start 151.146446 30.85) (end 150 30.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6c4cc8a5-fb6c-461c-9add-50b896a24b25))
  (segment (start 154.75 140.1) (end 154.75 142.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6c79b97d-d7f0-40bb-a3d9-14054948c229))
  (segment (start 144.75 40.953553) (end 144.75 42.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6c7ec40e-868b-420a-9c56-8a78ddda3cc4))
  (segment (start 153.146446 55.35) (end 153.25 55.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6ca7f352-904d-4695-b079-451c9d7913a0))
  (segment (start 150 145.35) (end 152 145.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6cbdbfea-9395-448a-933d-e3ac6fd7afe2))
  (segment (start 150.646446 31.35) (end 150 31.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6cc01445-240a-4fba-8a98-8ed41465a973))
  (segment (start 146 147.35) (end 148 147.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6cd5d628-a27c-4ebe-b057-34aa229a0341))
  (segment (start 154.75 28.1) (end 154.75 30.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6d17110a-6016-4cdd-9af1-47a22c472eb9))
  (segment (start 152.75 69.246446) (end 152.853553 69.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6d28c5d2-b51e-4ba4-b729-55fa73076d02))
  (segment (start 146.75 122.1) (end 146.75 124.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6d4f5b57-2ddd-4e03-be5f-0f4ebf730b4b))
  (segment (start 154 48.85) (end 154.646446 48.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6d995744-a74a-49a9-bbd8-d20ead4b0b48))
  (segment (start 154.646446 81.35) (end 154.75 81.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6da2f63f-4238-4d64-aa84-2a6d06f0b568))
  (segment (start 147.353553 92.85) (end 148 92.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6da7aa02-b2bd-40c1-897c-a174f9aa12e5))
  (segment (start 155.25 110.1) (end 155.25 112.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6db28f99-5bc1-4bdf-ad90-c8a620a83ac6))
  (segment (start 146 26.85) (end 144.853553 26.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6dcec12a-8d45-4df9-bb1b-5e4698dfab2d))
  (segment (start 152.75 37.453553) (end 152.75 38.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6de9bdaa-8b4a-4734-b606-44917a59f735))
  (segment (start 146.75 118.1) (end 146.75 120.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6e252761-b330-47ed-b911-308db56efc6d))
  (segment (start 147.25 142.1) (end 147.25 142.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6e7a1317-183c-449a-9f09-0f3a2ad97807))
  (segment (start 154.75 32.1) (end 154.75 34.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6e831db8-ccd5-47bf-a3a5-27a5da7b1727))
  (segment (start 147.353553 128.85) (end 148 128.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6e9db5b7-45b0-48c4-b08e-16e13bf93594))
  (segment (start 145.25 52.1) (end 145.25 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6f1098b4-b21f-4062-b1a1-2aa2522417f0))
  (segment (start 148 95.35) (end 150 95.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6f22d7d9-7373-4248-99b8-a590be5784c4))
  (segment (start 148.646446 72.85) (end 148 72.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6f31b322-5bed-4372-89e4-de3082e59700))
  (segment (start 154.75 94.746446) (end 154.646446 94.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6f4b8fab-7c07-49e8-8f8e-048299b480ff))
  (segment (start 149.353553 43.35) (end 149.25 43.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6f6ff25a-6b8f-4962-a554-4e487f320cca))
  (segment (start 148 95.35) (end 147.353553 95.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6f7d59d4-d8a8-41a7-9b05-579c18996b13))
  (segment (start 153.25 72.746446) (end 153.353553 72.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6f97312e-3088-4297-95eb-81e58d2450dc))
  (segment (start 149.25 160.1) (end 149.25 162.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 6ffbb622-dd45-4283-aa39-7e114d94e255))
  (segment (start 153.25 158.953553) (end 153.146446 158.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 70317665-a5c1-4648-b768-91778fccf684))
  (segment (start 145.25 136.1) (end 145.25 138.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7047640a-b0cb-4f47-9b97-759b34e224ef))
  (segment (start 148 36.85) (end 148.646446 36.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7092cc63-a52a-42bc-87a1-31aef384e4c0))
  (segment (start 152.75 29.453553) (end 152.646446 29.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 70a8941b-4b44-481f-a7c2-2bb65d89c86b))
  (segment (start 149.25 31.453553) (end 149.25 32.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 715136d7-2b49-479d-afd6-80770004ae01))
  (segment (start 146 167.35) (end 148 167.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 71578c45-47ca-4726-a924-eb1d049a1305))
  (segment (start 153.25 95.453553) (end 153.25 96.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 71591b94-5e38-45fe-ad40-663eecad500b))
  (segment (start 147.25 86.1) (end 147.25 85.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 71607e3b-fab7-4455-854f-e1b68ce64935))
  (segment (start 154.646446 142.85) (end 154.75 142.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 71736358-76df-41e1-a1c8-cdea886a10ea))
  (segment (start 150 87.35) (end 152 87.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 717594c0-09f6-4a43-8374-00f38e7cc5a3))
  (segment (start 150.75 94.746446) (end 150.646446 94.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 71a95749-f888-410e-a371-a30110d52bc9))
  (segment (start 146 77.35) (end 145.353553 77.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 71f770d0-3ed9-468d-908e-ec572815786a))
  (segment (start 154.75 114.1) (end 154.75 116.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 72214976-c054-4693-a452-196e7fb80ce1))
  (segment (start 150 38.85) (end 150.646446 38.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 722e4347-5f46-48f8-8eca-a7948e60115f))
  (segment (start 155.146446 156.85) (end 154 156.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 726bb9de-a114-4b48-92b7-5bfaa0506866))
  (segment (start 155.25 104.1) (end 155.25 106.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 72742766-e951-4dda-80e1-b9e9a4be60cf))
  (segment (start 154.75 40.746446) (end 154.646446 40.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 728ca613-d5f1-4a80-81e2-3c2a7ad89238))
  (segment (start 145.25 110.1) (end 145.25 112.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 729bbf14-5344-432f-87b4-f55a8531a678))
  (segment (start 146.853553 137.35) (end 148 137.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 733154a7-1e26-472e-9d96-7b3ff32ed8f1))
  (segment (start 152.75 62.1) (end 152.75 64.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 73845f6c-87c3-4cee-8eb4-7f01fe49edfc))
  (segment (start 154 50.85) (end 152.853553 50.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 73ee1fbf-711f-4e09-9368-2f910f208221))
  (segment (start 147.25 126.1) (end 147.25 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 740994e3-0fc9-4770-bc89-3452af306f65))
  (segment (start 152.75 82.1) (end 152.75 84.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 741efa80-50e3-4b5e-b57d-5befc8249679))
  (segment (start 153.25 81.453553) (end 153.25 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 74230e55-d71c-47f3-a916-d0632702e106))
  (segment (start 152.75 64.099999) (end 152.75 66.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 744b4d47-967e-4ab6-8a04-3ef465a0e9cc))
  (segment (start 151.25 94.1) (end 151.25 96.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 74912b71-6af1-4de5-8da7-f070bd552735))
  (segment (start 155.146446 49.35) (end 155.25 49.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 74cc7c05-e18a-4be1-8ecb-05f983a83ba8))
  (segment (start 144.75 36.1) (end 144.75 38.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 74d9c3e7-2881-440e-8713-0b158fafdb28))
  (segment (start 146.75 150.1) (end 146.75 152.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 74f19713-918b-45a8-995d-2c26d8305cfa))
  (segment (start 148 144.85) (end 150 144.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7508479f-4ca8-4d40-9132-7032d506376e))
  (segment (start 152.75 100.1) (end 152.75 102.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 75290a2c-f7c5-448f-b0ea-3163d4008cad))
  (segment (start 146 162.85) (end 145.353553 162.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7549b420-ff7e-4143-9292-c1b7fc54aa6a))
  (segment (start 146.75 65.246446) (end 146.853553 65.349999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7593b3a1-06bc-4bbc-bd4a-a04c71ddd144))
  (segment (start 149.25 99.453553) (end 149.25 100.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 75a2e3fa-4907-4010-932b-3e74fefff68b))
  (segment (start 152.75 58.1) (end 152.75 57.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 75aae92d-e66c-490e-be74-e23b005e4144))
  (segment (start 152.75 38.1) (end 152.75 39.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 76084563-8ca8-4703-ac0f-bd348534825c))
  (segment (start 153.25 116.1) (end 153.25 118.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 763dabac-d319-412b-b914-93dc1f7ef974))
  (segment (start 154.75 75.453553) (end 154.646446 75.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7670da13-6f12-49c8-949e-b313ef59711a))
  (segment (start 147.25 95.453553) (end 147.25 96.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 771de527-acdc-43d2-99be-c3d8642205a4))
  (segment (start 155.25 143.246446) (end 155.25 142.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 775f24f0-ed60-444b-a9d0-f5a80799c13d))
  (segment (start 144.75 98.1) (end 144.75 100.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7776ccb6-c1ff-47c1-9725-701682dca36e))
  (segment (start 148 164.85) (end 146.853553 164.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 778738ff-6a3f-49bd-9117-a8bd3e6cca5e))
  (segment (start 148.75 141.246446) (end 148.853553 141.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 77d0ff01-765e-46c7-be75-77d8fe840122))
  (segment (start 147.146446 140.85) (end 146 140.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 77eadca8-3118-4541-b61e-6e88c4c3df5f))
  (segment (start 151.353553 91.35) (end 152 91.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 786788a0-657d-4fcb-9c50-23646278e5e7))
  (segment (start 155.25 112.1) (end 155.25 114.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 789cb727-755d-49f5-b67c-0ace2657a603))
  (segment (start 147.353553 47.35) (end 148 47.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 78b50995-834b-4a44-a40a-0c0733e0d574))
  (segment (start 150 88.85) (end 152 88.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 78b922ea-b798-4997-b8a1-502a65717040))
  (segment (start 148 84.85) (end 150 84.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 78e51221-ff82-4786-a25b-438b57083bae))
  (segment (start 152.75 133.246446) (end 152.853553 133.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7921ae69-e381-45a1-bde1-f23e0329e74e))
  (segment (start 145.25 59.453553) (end 145.353553 59.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 79305abf-82ff-4e32-86ef-4720d7db2a01))
  (segment (start 154.75 95.453553) (end 154.75 96.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7944a98b-9064-4b9a-823c-ef9a769f7ba4))
  (segment (start 148.75 151.246446) (end 148.853553 151.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 799a5a01-12a2-4115-b77d-ffa5ee437061))
  (segment (start 154.75 148.1) (end 154.75 150.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 79b72709-2bf0-4b41-84e0-3d19cbfc4e2e))
  (segment (start 153.25 126.1) (end 153.25 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 79c82afe-2342-4468-9102-b4461e259dcf))
  (segment (start 152.75 168.1) (end 152.75 168.45) (width 0.25) (layer "F.Cu") (net 17) (tstamp 79cb4e98-f4d7-49e4-9622-ad7712c4085e))
  (segment (start 150.75 162.1) (end 150.75 164.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7a12847a-638d-4afd-8478-9591b17c7291))
  (segment (start 144.75 110.1) (end 144.75 112.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7a6caf9c-0048-49c8-b6aa-abe31ec83d97))
  (segment (start 154 163.35) (end 153.353553 163.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7a8c8c3c-1d91-4dba-9609-a0d584fe7d02))
  (segment (start 144.853553 132.85) (end 144.75 132.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7ab0de5b-4b2f-4fe2-a8da-e5d631c70f69))
  (segment (start 155.25 80.1) (end 155.25 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7ad8af84-7e73-4eb6-9364-d7c0b51cd07b))
  (segment (start 146.75 50.1) (end 146.75 52.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7b10d842-421b-46b6-b560-fec144c6cafc))
  (segment (start 154.75 116.1) (end 154.75 118.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7b30f8a6-5160-46ce-98b0-579c57a94510))
  (segment (start 149.146446 60.85) (end 148 60.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7b49f560-5559-4190-a996-1e537b8c1c89))
  (segment (start 155.25 155.246446) (end 155.25 154.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7b8e2188-ee1b-40d0-af2e-297e352abefc))
  (segment (start 145.353553 27.35) (end 145.25 27.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7b9dffdd-1268-4964-9762-ba8cb04b28e5))
  (segment (start 148 39.35) (end 150 39.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7bd08c1e-9227-48a8-b9b1-78e63da04400))
  (segment (start 148.75 32.1) (end 148.75 33.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7bfa8904-efef-4f93-8b3c-47551e96c07d))
  (segment (start 149.25 33.246446) (end 149.25 32.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7cd087f7-6bcb-4899-8a40-0ddea6684489))
  (segment (start 147.25 86.746446) (end 147.353553 86.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7d221268-900e-4ae7-bc3a-90eb17dbd438))
  (segment (start 152 86.85) (end 154 86.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7d22dac8-fb20-43a9-9ce3-a81d5e92349f))
  (segment (start 154.75 145.453553) (end 154.646446 145.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7d34f291-4c1d-4365-974d-b942be0b11d4))
  (segment (start 146.75 86.1) (end 146.75 84.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7d640942-a366-4f30-a3e5-140c00327f05))
  (segment (start 149.25 55.246446) (end 149.25 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7d646a7d-f2a1-43ba-8663-7e33fbf8fea4))
  (segment (start 150 134.85) (end 152 134.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7d84efbe-c437-4f2a-8dc0-53806dc47df1))
  (segment (start 146.853553 94.85) (end 146.75 94.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7dcb69f0-54f5-41e7-b608-eba88dc61e9c))
  (segment (start 154.75 34.1) (end 154.75 36.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7dd295c9-a91b-4613-8a5f-2413f339bde2))
  (segment (start 153.25 84.746446) (end 153.353553 84.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7e1b0eb7-5008-46fd-a567-e36e2a35c088))
  (segment (start 144.75 96.1) (end 144.75 98.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7e66382a-ec88-45b7-9d6b-627079f365fb))
  (segment (start 150.75 120.1) (end 150.75 122.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7e7d53c2-1f7b-4087-8e55-9015466a61dc))
  (segment (start 152.75 122.1) (end 152.75 124.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7e89f096-4009-4bec-a4aa-1ee03b6aff65))
  (segment (start 154.646446 163.35) (end 154.75 163.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7ebcb0cf-02d4-4e66-bfef-ffd1be900767))
  (segment (start 148.75 104.1) (end 148.75 106.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7ee1f5a7-dabb-4e51-bc2b-1d5db463fad4))
  (segment (start 148.75 82.1) (end 148.75 83.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7efaffba-fa22-46bd-906c-8051c4caf7ff))
  (segment (start 150 156.85) (end 148.853553 156.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7efe0bfe-a160-4f4c-849f-c9dfe0333ea1))
  (segment (start 152.75 162.953553) (end 152.75 164.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7f4ec80e-3c28-4921-9fb7-8998847e473b))
  (segment (start 147.353553 142.85) (end 148 142.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7f729d3d-7d38-42fb-a5a4-898dbe3a57ff))
  (segment (start 152 75.35) (end 152.646446 75.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7f7b81b7-317a-4244-b74e-5dfa46965eed))
  (segment (start 153.353553 51.35) (end 153.25 51.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 7fa149f2-11f0-4f85-ae91-1c699910cf98))
  (segment (start 155.25 87.246446) (end 155.25 86.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 80044dd6-a476-40af-b7cc-21c6a1e4bb9b))
  (segment (start 144.75 164.1) (end 144.75 162.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 800e978e-79ad-441a-9588-5f0f47074704))
  (segment (start 152.75 46.1) (end 152.75 48.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 80106d1f-e7cc-4deb-a7cb-2eb7668da359))
  (segment (start 152.853553 55.35) (end 153.146446 55.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 80236a01-841c-4947-bc3b-6bf0e0411537))
  (segment (start 153.25 82.1) (end 153.25 84.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 80759bda-6ce0-4618-8cc6-a625fdd58362))
  (segment (start 153.25 90.953553) (end 153.146446 90.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 80d6baa4-b451-49ba-9ea8-2986bf22b58e))
  (segment (start 150 86.85) (end 152 86.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 814d9ff8-4856-40ea-a2a3-889078652d13))
  (segment (start 155.146446 83.35) (end 155.25 83.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8185624e-184d-4fc7-8c66-53c330c8e51b))
  (segment (start 150.75 118.1) (end 150.75 120.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 818a64db-f994-4e04-b09a-c7e7147361cb))
  (segment (start 150 144.85) (end 152 144.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8196b295-8007-4d2d-87b5-2af47593aac5))
  (segment (start 148.75 72.746446) (end 148.646446 72.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 81d51cd1-e343-4d68-83f8-090d5496226f))
  (segment (start 150 167.35) (end 151.146446 167.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 81fbcc09-6dcd-4881-95b9-a4ae84684d41))
  (segment (start 146 76.85) (end 144.853553 76.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 820d62be-591a-4eb2-be1e-f071ceb7fe89))
  (segment (start 152.75 96.1) (end 152.75 98.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 821e22a3-7f63-4a74-8541-f17fb96a1402))
  (segment (start 147.25 142.746446) (end 147.353553 142.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 822b30fd-bc6d-4b14-a91d-b5537d93caad))
  (segment (start 149.25 120.1) (end 149.25 122.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8247f4ea-5a64-4169-a9eb-c80002671226))
  (segment (start 153.25 70.953553) (end 153.146446 70.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 826ebd0b-14db-46e1-bd1e-4453042e9748))
  (segment (start 155.25 73.246446) (end 155.25 72.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8292ef37-ed71-449f-afdc-57002608850e))
  (segment (start 146.853553 90.85) (end 146.75 90.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 82a7a3cc-fda3-456b-a6b1-5b8cf2e22a21))
  (segment (start 152.75 85.246446) (end 152.853553 85.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 82ca34e5-bee7-415a-b2c5-50a7c94c6a38))
  (segment (start 150 97.35) (end 151.146446 97.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 82dbc5a6-8a80-400b-8a6b-0760beadc1e5))
  (segment (start 147.25 52.1) (end 147.25 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 83305217-f545-429d-9e09-a14cf16e6cfe))
  (segment (start 152 145.35) (end 154 145.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8375f1f4-a12e-4531-8f03-556051f837d3))
  (segment (start 144.75 164.1) (end 144.75 166.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 84313bc5-8670-4659-bbf0-9b1ccde0bc6e))
  (segment (start 144.75 158.1) (end 144.75 160.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 84bc1c23-07ee-4a07-ac9f-54e37d6b8e7f))
  (segment (start 150.75 32.1) (end 150.75 31.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 84e85090-ac60-4aa0-8c2c-f17dc956a633))
  (segment (start 148 57.35) (end 150 57.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 85b2c023-670a-434e-a70c-e0393d75e576))
  (segment (start 154 80.85) (end 152.853553 80.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 85f123b8-4ee3-466f-b7f2-f7c9df6370d0))
  (segment (start 148 91.35) (end 147.353553 91.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8623c7fc-f3c4-4a27-8158-bb8e4b8af448))
  (segment (start 144.75 90.1) (end 144.75 92.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 863b02f5-43d8-4763-95eb-0e25e1da6993))
  (segment (start 149.25 46.953553) (end 149.146446 46.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8640304e-6502-4868-81d4-a06737eab20c))
  (segment (start 148.853553 30.85) (end 148.75 30.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 86af8251-5708-463b-9a21-31489899bffb))
  (segment (start 146.75 154.1) (end 146.75 152.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 86cf131e-d0a5-4e5e-893a-777dcce11f90))
  (segment (start 150 39.35) (end 151.146446 39.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 86de4dc2-d478-4191-86d3-354e96af4c7c))
  (segment (start 150.75 95.453553) (end 150.75 96.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8736f7ae-9232-4c48-9420-70cc9e9b720e))
  (segment (start 145.25 66.099999) (end 145.25 66.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 873b0d24-0a61-4454-baf7-b46222f62fcd))
  (segment (start 148 87.35) (end 150 87.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 87440b09-c284-4513-8fd9-de9472bcbf5f))
  (segment (start 148 145.35) (end 150 145.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 879f6d47-5fa2-4219-bb23-78b142a8f881))
  (segment (start 155.146446 88.85) (end 154 88.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 87a4d2b7-e2f8-43c1-a131-ca788d0fc299))
  (segment (start 145.25 130.1) (end 145.25 130.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 87baa198-b52f-4b0a-b53d-8d4438a4822d))
  (segment (start 150.75 56.746446) (end 150.646446 56.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 87fe904d-f6f4-443d-bcd2-eefc2816ce4a))
  (segment (start 146.75 137.246446) (end 146.853553 137.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 880af1b1-ce65-402e-8ca9-a4846ce11d49))
  (segment (start 154.75 69.453553) (end 154.75 70.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 88216909-ed2a-4834-9ebb-7e29a907bb8f))
  (segment (start 151.146446 137.35) (end 151.25 137.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8823d8bd-c986-40b2-88c9-d0cdf237f266))
  (segment (start 153.25 55.246446) (end 153.25 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 88523f35-061a-4991-926b-adb8a690a315))
  (segment (start 150.646446 59.35) (end 150 59.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 887f379b-5883-4fc0-8587-f3508f07a402))
  (segment (start 145.25 148.1) (end 145.25 150.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 893ee172-b1a9-49c3-b8d9-25e11ce454eb))
  (segment (start 151.25 56.746446) (end 151.25 56.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 897f1c5f-4b46-4252-ab94-2736ff57dabb))
  (segment (start 150.75 160.1) (end 150.75 162.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8985e1a4-5593-4d18-90bd-d4b2aa1b3e72))
  (segment (start 144.75 160.1) (end 144.75 162.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 89cbb219-03ae-44a5-a59e-fe8ae8f24f94))
  (segment (start 152.75 50.953553) (end 152.75 52.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 89dd886e-15d8-44cd-a381-25dbc5cd3487))
  (segment (start 148 90.85) (end 146.853553 90.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 89e98052-535e-4ab7-92af-d7247668d5d8))
  (segment (start 155.25 134.1) (end 155.25 132.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8a189b82-01b2-4c0b-a624-29eec78d45fe))
  (segment (start 150.75 92.1) (end 150.75 94.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8a6226e0-d117-4c02-8d45-62d0cc047661))
  (segment (start 152.853553 69.35) (end 154 69.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8a68d9a5-5de6-4ded-a8ab-9637f44a2226))
  (segment (start 155.25 40.1) (end 155.25 42.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8adafa34-5d1c-4722-9912-5a6b6d949258))
  (segment (start 147.146446 161.35) (end 147.25 161.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8be64e7d-245a-46ce-a00f-f626480b3a74))
  (segment (start 153.25 120.1) (end 153.25 122.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8bf6d2a2-ec00-471b-8ac6-9e8a70919ea2))
  (segment (start 151.25 114.1) (end 151.25 116.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8c25ad6d-3949-4fb9-9594-2efcf515c484))
  (segment (start 146 68.85) (end 148 68.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8c582dad-e5db-474a-9978-9b6db931d407))
  (segment (start 150 151.35) (end 152 151.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8c6e5af9-a863-4c74-bc37-44636526c97d))
  (segment (start 155.25 83.246446) (end 155.25 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8ca5c8c1-56a7-4b5e-9f18-d338ef60992b))
  (segment (start 153.25 30.1) (end 153.25 32.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8cbb11b1-6caf-430a-b1ed-4cdd8b08d04c))
  (segment (start 147.25 120.1) (end 147.25 122.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8cc43512-c9ca-4ade-bb60-a7cd3f9a6b77))
  (segment (start 146.853553 134.85) (end 146.75 134.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8cde54e6-1f26-4f94-8b0c-3544c9216bae))
  (segment (start 154.75 126.1) (end 154.75 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8cece3f0-f5a4-40d3-89eb-c6a0e437aba4))
  (segment (start 146.75 156.1) (end 146.75 154.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8cfedd5a-d549-4c8b-b76f-fb16c8dacd37))
  (segment (start 148.853553 55.35) (end 149.146446 55.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8d0d263d-7e37-4d9c-8415-a80828603cc0))
  (segment (start 154 94.85) (end 152.853553 94.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8d47c9e9-ec6d-41e4-85ac-b76a4d5fd269))
  (segment (start 146.853553 143.35) (end 148 143.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8d752980-f82b-4cb9-97cf-5c8d855d0123))
  (segment (start 155.25 62.1) (end 155.25 64.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8da5446d-a2e6-4564-894e-3e72d6d0b069))
  (segment (start 148 91.35) (end 150 91.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8dadd8a3-a2b6-4fa3-bf17-3360b3d697ce))
  (segment (start 145.25 38.1) (end 145.25 38.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8df424f1-d790-4399-8adb-4cabb3dfae6c))
  (segment (start 150 41.35) (end 152 41.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8e0fe0a3-8083-46df-9b98-e164f44340d1))
  (segment (start 153.25 42.953553) (end 153.146446 42.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8e24477f-7765-48bc-a752-e31b982b2d24))
  (segment (start 148 36.85) (end 146.853553 36.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8e3e8ee1-e663-4290-81c2-8a6c2dac2b7c))
  (segment (start 148 166.85) (end 150 166.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8e791f06-111e-4e7e-a21b-bed28ecfc9d7))
  (segment (start 146.75 87.246446) (end 146.853553 87.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8e99cd19-5607-42c2-bcb5-eaf995b9a7e2))
  (segment (start 155.25 52.1) (end 155.25 50.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8ec49906-6ec1-4452-84bf-fa4c4328e0e7))
  (segment (start 155.146446 84.85) (end 154 84.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8ed779de-80cc-4c92-a1a7-7df28d5f0500))
  (segment (start 146 146.85) (end 148 146.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8f10a22e-e06a-4dc5-a526-217e4e04cb19))
  (segment (start 146.853553 60.85) (end 146.75 60.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8f1dc00b-3714-487f-a939-ecb692008162))
  (segment (start 148 56.85) (end 150 56.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8f7bfb23-4cbd-4338-93fc-61e044e7b2f1))
  (segment (start 148.853553 97.35) (end 150 97.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 900445d9-1483-47fd-bb3f-da4f12a1e786))
  (segment (start 144.75 82.1) (end 144.75 84.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9023a262-fae1-4eb6-b549-d1fe78a281de))
  (segment (start 153.25 110.1) (end 153.25 112.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 90c45619-12b3-4223-bc90-f66224e47c17))
  (segment (start 150.75 124.1) (end 150.75 126.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 90d21d9a-98ab-47f0-82ce-577d79b2567c))
  (segment (start 148.75 64.099999) (end 148.75 66.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 90e336ab-72bb-4659-9576-d23e83c64e03))
  (segment (start 145.25 150.1) (end 145.25 152.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9108e11d-6655-4978-b19e-4becbeea7d4a))
  (segment (start 146.75 134.953553) (end 146.75 136.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 910d41c6-95c3-42ba-9ea8-879d54d5b974))
  (segment (start 154.75 108.1) (end 154.75 110.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 91259d2d-6fec-4bc5-bbcb-88fcc289cb2a))
  (segment (start 150 140.85) (end 152 140.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 918a7f94-a27e-498e-baec-220fc2f47e98))
  (segment (start 150 28.85) (end 152 28.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9190d7dd-d385-4cd9-ba7f-1dad3824ea74))
  (segment (start 148.75 108.1) (end 148.75 110.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 91962594-bf78-4feb-8e1e-65bc1e3e632d))
  (segment (start 146.75 32.1) (end 146.75 34.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 921c43f3-428c-4e74-932f-50e42c6a8e8d))
  (segment (start 152.75 57.453553) (end 152.646446 57.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 92557954-5b72-4bcb-96c2-9d4e7cb4a3fc))
  (segment (start 154.646446 146.85) (end 154 146.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 92676bc3-eab0-4003-ae26-c87d68dfbbe5))
  (segment (start 147.353553 152.85) (end 147.25 152.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 929845ea-4dd8-4c55-bcec-84cd87e95fb9))
  (segment (start 150.75 131.453553) (end 150.75 132.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 92b6710e-35bf-4c4d-96a9-425d88ce588b))
  (segment (start 155.25 106.1) (end 155.25 108.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 92b918cc-fe86-4742-a616-c746c67a8800))
  (segment (start 154.75 104.1) (end 154.75 106.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 92b95451-8011-4050-b454-3c428b58af84))
  (segment (start 149.25 37.246446) (end 149.25 36.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 92f421f4-fbfc-498c-8639-a45b6e30b499))
  (segment (start 148.646446 47.35) (end 148 47.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 92fb62de-40fb-4cce-9154-ff07b12a3c54))
  (segment (start 155.25 70.1) (end 155.25 72.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 92fb914f-3959-4765-a142-f5e6d1cb58ce))
  (segment (start 151.25 164.1) (end 151.25 166.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 934a4a2c-7e79-4111-b0ad-190f54e7b8e5))
  (segment (start 147.25 92.746446) (end 147.353553 92.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 93684ccd-d220-43fc-9048-ebcb85cf5df1))
  (segment (start 154.646446 48.85) (end 154.75 48.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 93c657d1-47b5-4f29-ae71-0e133c67df7e))
  (segment (start 154.853553 83.35) (end 155.146446 83.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 93f1b4c2-c7d4-44c6-9903-5dc454da6eab))
  (segment (start 149.25 104.1) (end 149.25 106.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 940c6bb8-5260-4bfe-847b-3b60b9cbc9b1))
  (segment (start 153.25 148.953553) (end 153.146446 148.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 943b8bd5-6705-4ad7-aba3-9247c2f71632))
  (segment (start 151.25 72.953553) (end 151.146446 72.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9445c39f-6fb0-479f-b8a2-159bbf4d5427))
  (segment (start 147.25 56.1) (end 147.25 56.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 944d2532-8b94-4585-af35-f592c507726e))
  (segment (start 155.25 138.1) (end 155.25 140.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 949aa64c-0ad5-4586-9c05-61cd9d3d2b88))
  (segment (start 144.75 28.1) (end 144.75 30.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 949c7fa0-4d7d-4a0e-801b-21968f033741))
  (segment (start 155.25 64.099999) (end 155.25 66.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 94d21e4a-57c1-47ae-af78-52f161c772d8))
  (segment (start 152.75 73.246446) (end 152.853553 73.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 95113a65-0403-477f-aa5c-21c5828e04b3))
  (segment (start 153.25 44.1) (end 153.25 46.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 95221e84-d3ff-4d89-a745-883ebf65225e))
  (segment (start 144.75 78.1) (end 144.75 80.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 956b6539-0ba0-4805-885f-55d394fdddfd))
  (segment (start 152.75 36.1) (end 152.75 36.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 95bc7f65-f048-4b89-8a46-4b532ea60420))
  (segment (start 150 29.35) (end 152 29.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 966ba6ba-6d3f-4f54-85b8-e494b08d69ac))
  (segment (start 144.853553 40.85) (end 144.75 40.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9676884b-605b-4a66-b786-d87301cbe6cc))
  (segment (start 144.75 90.1) (end 144.75 88.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 967c9e94-edbc-4e24-8527-5535e7451552))
  (segment (start 151.146446 73.35) (end 151.25 73.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 969589a5-d468-43e6-b2f1-ad9cf9bcd7fe))
  (segment (start 144.75 145.246446) (end 144.853553 145.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 97071c68-d59c-4f71-a11b-535a44b452d9))
  (segment (start 146.853553 42.85) (end 146.75 42.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9730edf3-29d4-4d39-adf0-c0744f315120))
  (segment (start 155.25 100.1) (end 155.25 102.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 97957173-4add-4370-b43b-dcbb2f484f3e))
  (segment (start 150.75 31.453553) (end 150.646446 31.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 97df45e4-a3a1-4901-9bea-b1e47aa2f8a0))
  (segment (start 146.853553 165.35) (end 148 165.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9818493e-f9f7-4868-97db-7c2150ffbf1a))
  (segment (start 152 87.35) (end 154 87.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 98260856-dd74-461a-b764-615038d3db79))
  (segment (start 148.75 52.1) (end 148.75 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 986e38d5-8615-4d0c-b13c-49250d7d219a))
  (segment (start 150 74.85) (end 152 74.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9889d16a-ed7b-42e5-9644-38c9f4201b3d))
  (segment (start 152.75 55.246446) (end 152.853553 55.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 98a22033-3828-4f9e-8fb1-3214feb57b91))
  (segment (start 146 146.85) (end 144.853553 146.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 98a5bc04-50fc-4a44-9145-4270221f6103))
  (segment (start 152.75 114.1) (end 152.75 116.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 99e14617-c9e8-4d5c-aca3-4c9b22bd89da))
  (segment (start 145.25 162.746446) (end 145.25 162.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9a0ca219-4128-4f18-aac0-972932d78a51))
  (segment (start 144.75 134.1) (end 144.75 136.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9a422a91-566f-4056-908d-06bf846fe4ee))
  (segment (start 151.146446 85.35) (end 151.25 85.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9a4b7049-e0ce-44f1-af98-302ebdbecd68))
  (segment (start 148.853553 156.85) (end 148.75 156.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9a5c1396-8767-4608-a64f-5af6f8c1bd41))
  (segment (start 148 27.35) (end 150 27.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9aa45075-dd4d-40d6-a68b-b74425e0aafc))
  (segment (start 154.75 70.1) (end 154.75 72.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9b03102d-0169-478f-ad2a-c00058cbafb2))
  (segment (start 147.353553 95.35) (end 147.25 95.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9b77cbab-9cc4-42d8-8f78-23c15bdacc70))
  (segment (start 152.75 149.453553) (end 152.646446 149.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9b82a757-0db1-45d6-8201-640f3ceceb12))
  (segment (start 152 37.35) (end 151.353553 37.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9b90ccdb-f89b-4320-a2a9-055b93f1e55b))
  (segment (start 150 75.35) (end 152 75.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9ba91bc3-9770-40fe-906b-d817c9abe76e))
  (segment (start 148 46.85) (end 147.353553 46.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9bb0349a-8420-492d-8fb0-5622b92944b1))
  (segment (start 152.853553 93.35) (end 153.146446 93.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9bb0afa5-81e5-4c5e-aee6-6001650f5553))
  (segment (start 151.25 54.1) (end 151.25 56.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9bea728a-2777-4600-9c52-5a1b830b8822))
  (segment (start 152.75 126.1) (end 152.75 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9c1bf6a3-cb66-4c86-b8b0-d466bb78e2eb))
  (segment (start 151.25 110.1) (end 151.25 112.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9c247869-30a0-4b79-b782-8cddf146a599))
  (segment (start 151.25 73.246446) (end 151.25 72.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9c3a8cbd-731d-41a3-805c-fa840d1c61bf))
  (segment (start 150 166.85) (end 150.646446 166.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9c6217e8-ce85-43cf-9c8a-1b4f8b96ea13))
  (segment (start 154.646446 40.85) (end 154 40.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9c7898fc-0405-4bc7-8836-1d60fa70e6eb))
  (segment (start 151.25 46.1) (end 151.25 44.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9c87a0ba-10e4-4c6e-b485-df12bf8901a1))
  (segment (start 154.646446 72.85) (end 154.75 72.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9cb0f10a-9aee-40e7-be5b-e91c97051f33))
  (segment (start 155.146446 153.35) (end 155.25 153.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9cc2dfb0-d294-424d-83c4-823734ac9e4f))
  (segment (start 151.25 106.1) (end 151.25 108.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9d5c4f11-1fad-47db-bbf0-7c68f8ed5842))
  (segment (start 146.75 37.246446) (end 146.853553 37.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9d5e43bf-4762-42da-a445-315422419ffb))
  (segment (start 155.25 74.953553) (end 155.146446 74.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9d69d72f-4440-4196-bb63-685753e33466))
  (segment (start 154.75 72.746446) (end 154.75 72.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9de27b0b-1199-4381-9f63-70b5f4c48bbc))
  (segment (start 146 69.35) (end 148 69.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9df4e881-befc-4d51-b279-8f4162a1653e))
  (segment (start 153.25 141.246446) (end 153.25 140.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9dfef983-6c39-4241-a02d-4adbe43883f4))
  (segment (start 150.75 62.1) (end 150.75 64.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9e3a8d8f-9dc6-4eaa-b6b2-f4c071cf6fc6))
  (segment (start 149.25 126.1) (end 149.25 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9e914dbd-1df8-41d2-b834-6765ff157d75))
  (segment (start 154.75 100.1) (end 154.75 102.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9ea706b1-6b7b-4824-a521-f457fad7670c))
  (segment (start 146 67.35) (end 148 67.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9ed8fb1e-60d8-430c-b5c1-fcf71b91fd2a))
  (segment (start 150 73.35) (end 151.146446 73.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9edb59a2-e770-4427-8829-5512242c21ad))
  (segment (start 145.25 60.1) (end 145.25 62.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9fb4d346-8c64-42df-a864-0cf978ccfd92))
  (segment (start 153.25 60.1) (end 153.25 62.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9fd087a1-9da8-4e87-ab3f-0c78b6e810d1))
  (segment (start 152.75 110.1) (end 152.75 112.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp 9fda4589-50ec-4c2c-b30d-28627fc3131d))
  (segment (start 145.25 48.1) (end 145.25 50.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a04af3e5-72eb-442d-8f93-f2a87ed10503))
  (segment (start 148.75 36.746446) (end 148.75 36.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a04c637d-a602-4a3b-8492-6ab1e25d42d7))
  (segment (start 155.25 60.1) (end 155.25 62.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a0653c9e-4ecf-4777-a68b-c4127147c499))
  (segment (start 154.75 128.1) (end 154.75 130.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a07b1411-c07e-411c-ae40-447522be7a0d))
  (segment (start 153.25 64.099999) (end 153.25 66.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp a08f00c8-0219-466b-b508-0bdaaa3bbdca))
  (segment (start 152.75 58.1) (end 152.75 60.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a0c9465f-b2ee-4825-8c8b-48309f280e66))
  (segment (start 144.75 54.1) (end 144.75 56.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a0fd4427-bb7f-4cec-a6db-fde79a9aea0b))
  (segment (start 151.25 167.246446) (end 151.25 166.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a1336e83-ab4e-487b-8b64-05221d48658a))
  (segment (start 151.25 124.1) (end 151.25 126.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a13b81d9-a953-4c6e-8337-b52445edeee8))
  (segment (start 148.646446 61.35) (end 148 61.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp a15a85e8-9ea3-4ec4-bd38-f574aba8af49))
  (segment (start 152.75 116.1) (end 152.75 118.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a1dede75-13a2-497d-943c-8f97dc68aea4))
  (segment (start 145.25 80.1) (end 145.25 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a23f0663-694c-48ed-8190-dbf797b92713))
  (segment (start 149.25 62.1) (end 149.25 60.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp a2514d6e-db4a-44da-9b96-c035c8cf24ce))
  (segment (start 153.146446 151.35) (end 153.25 151.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp a28090d7-bcd7-44d9-985b-621faf521670))
  (segment (start 154.75 138.1) (end 154.75 140.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a298b46a-02bd-4a4c-8ad9-c838ce115fe2))
  (segment (start 149.353553 31.35) (end 149.25 31.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp a2a5e5d3-54c2-4d3d-ae77-c4f5309224c6))
  (segment (start 154 41.35) (end 154.646446 41.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp a30530f3-b14f-40d1-90ce-67b1cc68d837))
  (segment (start 146.75 128.1) (end 146.75 129.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp a31c27e3-e685-40ec-8afb-8b16fbfa1d2c))
  (segment (start 154.75 112.1) (end 154.75 114.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a3232652-489c-45eb-9831-cd09a2e96f78))
  (segment (start 155.25 167.246446) (end 155.25 166.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a334e09c-6a5b-4dc6-8e8b-0c165e46cb1f))
  (segment (start 150.75 100.1) (end 150.75 99.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp a35d0376-0441-4560-b19e-1a2e48ae02fa))
  (segment (start 155.25 158.1) (end 155.25 160.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a361b497-3008-406f-a570-961b58a4ca06))
  (segment (start 147.25 47.453553) (end 147.353553 47.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp a3879767-340d-48ca-a575-d9142ecd3951))
  (segment (start 151.25 60.1) (end 151.25 58.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp a3c17588-adb5-464e-a900-eedeff550964))
  (segment (start 149.146446 33.35) (end 149.25 33.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp a4304566-1e87-4ae5-88bb-966912605d8f))
  (segment (start 155.25 94.1) (end 155.25 96.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a4669476-f4d8-4cbb-918b-4dd88a99a033))
  (segment (start 155.25 154.953553) (end 155.146446 154.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp a4848939-aa04-4226-bfaa-04f5c05d4537))
  (segment (start 155.25 122.1) (end 155.25 124.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a49e381e-db79-4cce-bc5d-6bf2ec43e9f2))
  (segment (start 154.75 44.1) (end 154.75 46.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a4f306b1-eee7-4007-984a-cd24150c2acf))
  (segment (start 150.75 112.1) (end 150.75 114.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a5088000-298f-46ca-9053-8ac2cbff7e8c))
  (segment (start 155.25 84.953553) (end 155.146446 84.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp a58e2fe2-723c-46fb-92fb-2d8a8dff01e7))
  (segment (start 150 42.85) (end 148.853553 42.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp a5bb1616-8f9c-421c-9bec-c742ecf4c0c5))
  (segment (start 154.646446 94.85) (end 154 94.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp a5c66335-44ee-4b40-bf35-ab460418f067))
  (segment (start 146.75 92.1) (end 146.75 93.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp a5c8af03-2fe9-4744-be52-18ee8ef6eb84))
  (segment (start 150.646446 96.85) (end 150.75 96.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp a62311d9-fa43-4437-9c87-ca967c15edee))
  (segment (start 153.353553 84.85) (end 154 84.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp a6820d09-9eb2-488a-9a11-8335d2b38c54))
  (segment (start 152.75 43.453553) (end 152.646446 43.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp a69ab1bd-8059-4cb1-a144-67ee1d26fe26))
  (segment (start 144.853553 146.85) (end 144.75 146.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp a6acbde1-6019-4714-9436-472f52de26e9))
  (segment (start 147.25 72.1) (end 147.25 70.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp a6e50f67-dbe9-415b-8af5-25a230da3663))
  (segment (start 151.25 116.1) (end 151.25 118.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a721a3d8-80bc-42e6-b7ea-cf7b91855c44))
  (segment (start 144.75 26.953553) (end 144.75 28.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a76184ac-e219-4207-a184-14b4f3acbdfe))
  (segment (start 153.25 56.953553) (end 153.146446 56.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp a78de32a-2f1f-4b44-9b58-6bee6b2f04f8))
  (segment (start 154.75 38.1) (end 154.75 40.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a7b11b06-54cb-4b5f-a881-f72c50ec4d1e))
  (segment (start 146 139.35) (end 148 139.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp a7f49ffd-488e-44ce-b637-3a6eb5f5ce4f))
  (segment (start 145.25 102.1) (end 145.25 104.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a83390f6-2f54-4364-aaea-55339a072c22))
  (segment (start 147.25 34.746446) (end 147.353553 34.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp a8867ae3-decc-43c0-8d41-879edbebae07))
  (segment (start 148.75 110.1) (end 148.75 112.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a8c9cadd-d5be-43fe-abad-9a9f5e1d40aa))
  (segment (start 144.853553 139.35) (end 146 139.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp a8e707ba-1506-4f8a-9c12-4697fa1f33fc))
  (segment (start 151.146446 98.85) (end 150 98.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp a8fb5bd5-3a6a-4b8c-9693-7630ddfd6ae0))
  (segment (start 150 73.35) (end 148 73.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp a921b363-2301-4f36-9dbb-b9bbfd3df09f))
  (segment (start 148.853553 150.85) (end 148.75 150.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp a95ebc0c-d461-40c0-9a9f-85bfd1ebf6ab))
  (segment (start 146 132.85) (end 144.853553 132.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp a968417f-49c8-4936-bc4e-f19dbcf5e5b3))
  (segment (start 145.25 141.453553) (end 145.25 142.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a9c49895-220e-4f66-8469-7c3a51b52fa7))
  (segment (start 151.25 133.246446) (end 151.25 132.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp a9d55ec4-04ec-4d21-ba06-2c8638d4b69b))
  (segment (start 152 159.35) (end 151.353553 159.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp aa2924c5-8ff6-40e8-b757-2ada2b1332b0))
  (segment (start 146 141.35) (end 145.353553 141.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp aa461b4b-97dc-4769-8d14-2270cf9eb78e))
  (segment (start 148.75 44.1) (end 148.75 45.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp aa483767-246a-4e04-b0ba-bdef81f8d7aa))
  (segment (start 150 143.35) (end 152 143.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp aa9b3691-b910-45d5-af8c-d914c48ab02e))
  (segment (start 147.25 100.1) (end 147.25 102.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp aaa988b1-fe68-4329-bbf1-b3bfbcb22df7))
  (segment (start 148.75 118.1) (end 148.75 120.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ab57b256-f7c4-4d52-8b52-f3e034304d93))
  (segment (start 145.25 144.1) (end 145.25 144.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp ab9409aa-a552-485e-8d3a-32a1ec377933))
  (segment (start 146.75 93.246446) (end 146.853553 93.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ab9453aa-69df-47fe-8ba9-e0b1190c1669))
  (segment (start 147.146446 42.85) (end 146.853553 42.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp abb7f5a0-3093-4db0-a0c2-4894003dba96))
  (segment (start 146 77.35) (end 148 77.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp abc73579-a519-4d77-942e-422b5e60eea4))
  (segment (start 147.353553 46.85) (end 147.25 46.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp abcf5ecd-d16a-4dcc-9412-2166e4fd54ba))
  (segment (start 148 133.35) (end 150 133.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp abd79b64-948b-4073-a450-22ef439e25df))
  (segment (start 150 165.35) (end 150.646446 165.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ac43d805-21bd-4977-8152-2c1273055d6b))
  (segment (start 147.25 106.1) (end 147.25 108.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ac62bf11-e6cc-4cba-824e-c02e4c2cfafe))
  (segment (start 148.75 102.1) (end 148.75 104.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ac825330-d6bb-43f6-afc0-571d8509dd92))
  (segment (start 155.25 96.1) (end 155.25 98.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp accaa0d4-7375-469b-b936-36f366e1aea0))
  (segment (start 145.25 90.1) (end 145.25 92.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp acd7ef02-92af-483b-a41d-996961eb05e7))
  (segment (start 147.25 156.1) (end 147.25 155.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp acfffac8-b0c9-44a9-bc20-b0309e1ce7f4))
  (segment (start 152.646446 57.35) (end 152 57.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ad049972-f4b4-497c-af38-8411c13c43ee))
  (segment (start 151.25 62.1) (end 151.25 64.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp ad1efd1c-ece9-49c6-b4af-4094a017b680))
  (segment (start 146.853553 148.85) (end 146.75 148.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp ad4514c1-a6c4-4c2d-94a9-23b094686116))
  (segment (start 146.75 70.953553) (end 146.75 72.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ad4d3643-5890-4f99-91eb-ca28d08cb070))
  (segment (start 146.75 56.1) (end 146.75 57.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp ad56f5d5-e671-4505-afc4-f8f2f30e08f9))
  (segment (start 145.25 70.1) (end 145.25 72.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ad625b2a-3c1f-46d8-8a2c-87cf6c31dd25))
  (segment (start 148.853553 45.35) (end 150 45.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ad70ca18-2051-4201-b76b-fcc879892c71))
  (segment (start 151.25 66.099999) (end 151.25 68.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp adcb5b2f-481f-41d2-962e-444971afc784))
  (segment (start 145.353553 163.35) (end 146 163.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ae8cc774-6a5a-440c-bcfd-9a2c8fa477ef))
  (segment (start 152.75 128.1) (end 152.75 130.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp aec555ef-7c3f-429c-878d-ec9937177cc8))
  (segment (start 148.853553 151.35) (end 150 151.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp af112d4f-a1f4-4085-8b5f-2432ecbb88f5))
  (segment (start 144.75 102.1) (end 144.75 104.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp af299cfd-4942-454a-b7af-f097645ab507))
  (segment (start 154.75 86.746446) (end 154.75 86.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp af8e4e28-c9f3-4592-8a42-b0ff962b304c))
  (segment (start 152.75 130.1) (end 152.75 132.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp afa27b4a-20b4-4f35-956b-702831bb441d))
  (segment (start 150 27.35) (end 152 27.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp afbbea1a-9c2e-4699-aa50-32311f90a7a5))
  (segment (start 145.25 138.1) (end 145.25 138.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp afc9e41a-7203-41f1-979e-2a82f42d73dc))
  (segment (start 144.75 112.1) (end 144.75 114.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp afda2203-e62a-4260-8f7b-98fbda45a040))
  (segment (start 155.25 136.1) (end 155.25 138.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp affc0486-3a99-478c-9ceb-3ebf293ed690))
  (segment (start 155.25 108.1) (end 155.25 110.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b0135be6-abec-4579-99ec-6c8fbaceb61e))
  (segment (start 154.75 162.746446) (end 154.646446 162.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b08d12c9-c6cf-4702-a17b-4cf037e52e37))
  (segment (start 149.353553 157.35) (end 149.25 157.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp b098ad73-8059-46e4-94dc-02db948407c7))
  (segment (start 153.353553 68.85) (end 154 68.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b0a129d8-ed47-4e7b-81d0-bc742dc640a3))
  (segment (start 146 145.35) (end 148 145.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp b1314e22-0b7e-4f92-832f-68890864865f))
  (segment (start 154.646446 86.85) (end 154.75 86.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp b19a87ff-04cf-4616-9e98-07abfe6422e0))
  (segment (start 146.75 141.453553) (end 146.646446 141.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp b1da71c4-8c00-4fa4-b60b-c0b9299a7a82))
  (segment (start 155.146446 144.85) (end 154 144.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b1db0360-3b89-42ff-9f65-7f5bb11da791))
  (segment (start 149.25 80.1) (end 149.25 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b2633692-0031-41f6-98f3-b93baba789e1))
  (segment (start 150.75 60.1) (end 150.75 62.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b2966697-bcb9-41df-b983-d0b86e748b57))
  (segment (start 151.25 98.953553) (end 151.146446 98.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b2d33b83-574b-4486-a1f3-b8772e16fdf1))
  (segment (start 154.75 90.1) (end 154.75 89.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp b32895c2-e03b-4c70-9425-c641d3b54135))
  (segment (start 151.25 136.953553) (end 151.146446 136.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b3d06ff5-c33d-4e9e-8f94-f261a923df64))
  (segment (start 153.146446 148.85) (end 152 148.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b4250aa0-bf24-4d26-ace8-37456d242b9a))
  (segment (start 148.75 66.746446) (end 148.75 66.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp b4477e77-183b-4d9a-8eb2-901aad434132))
  (segment (start 147.25 158.1) (end 147.25 160.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b45b0b28-ea88-4d98-a4b9-1b88c9af1d10))
  (segment (start 144.75 52.1) (end 144.75 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b46ab509-5a59-44b6-822a-1524f76eb316))
  (segment (start 144.853553 67.35) (end 146 67.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp b488388a-bfab-4b07-8e3e-9b84c6600eba))
  (segment (start 145.25 138.746446) (end 145.353553 138.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b49eafbf-7ea8-45ef-bae5-98942d197aa2))
  (segment (start 151.146446 76.85) (end 150 76.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b4afe817-fd6d-44ba-8d20-a9a800f65a7a))
  (segment (start 154 86.85) (end 154.646446 86.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b4d97327-0d93-4edc-971f-c095b0b0b9d1))
  (segment (start 150 140.85) (end 148.853553 140.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b4dec080-0566-413f-935b-01fd02bb97d9))
  (segment (start 148 128.85) (end 148.646446 128.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b5105a73-24e0-458a-9439-c899a735f4eb))
  (segment (start 145.25 36.1) (end 145.25 38.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b541aff5-dcc6-42c8-9441-9e87b6ce4319))
  (segment (start 147.25 136.1) (end 147.25 136.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp b547ff8f-9e38-4d8a-8af7-447e1591b180))
  (segment (start 154.646446 68.85) (end 154 68.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b54d9792-ffd5-47bd-831e-f6b259063422))
  (segment (start 155.25 126.1) (end 155.25 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b5cc1314-1714-49ec-9ae5-fee4ad8e9c6a))
  (segment (start 145.25 152.1) (end 145.25 154.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b5d94d59-0748-42d1-ac21-e72cf7fc0835))
  (segment (start 146.853553 73.35) (end 148 73.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp b63ab02f-6e23-40ba-bd22-b07042658078))
  (segment (start 144.75 139.246446) (end 144.853553 139.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp b6411117-1270-4ac7-956e-4c42a4334095))
  (segment (start 145.25 82.1) (end 145.25 84.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b6603161-bad0-42a8-a4cc-d8f02f41aa08))
  (segment (start 153.25 128.1) (end 153.25 130.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b6776650-9678-4757-9713-ff964459cf42))
  (segment (start 154 69.35) (end 154.646446 69.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp b6cf1f3c-6285-4b15-bbd4-cd8d6bdcc4f0))
  (segment (start 144.75 104.1) (end 144.75 106.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b70321e7-8335-4043-a5e6-97c940d34221))
  (segment (start 155.25 116.1) (end 155.25 118.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b70821cd-a30a-4d0b-8ec7-0f319cbd513b))
  (segment (start 150 89.35) (end 152 89.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp b722c389-8ee7-46c6-981f-107446ece7f2))
  (segment (start 153.25 168.1) (end 153.25 168.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b74a313e-74b5-4132-8266-074c2abc8328))
  (segment (start 145.353553 141.35) (end 145.25 141.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp b76a77c9-f885-4a7d-a1bf-ec62d2fbe5a1))
  (segment (start 150 26.85) (end 152 26.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b7be0e4c-db35-4744-bbba-3c6dd1a82875))
  (segment (start 153.25 28.953553) (end 153.146446 28.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b7ca5b34-96fa-4d50-b2a9-45e9c6c76f59))
  (segment (start 154.75 102.1) (end 154.75 104.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b7d02d77-fe91-4f16-8aa7-712ca7205648))
  (segment (start 154 147.35) (end 154.646446 147.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp b8698ef5-8ab7-4be9-b089-090eb1f14a9a))
  (segment (start 151.146446 136.85) (end 150 136.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b8a421b9-abc9-4eff-a026-f7944920562c))
  (segment (start 145.25 41.453553) (end 145.25 42.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b8b4b00b-5ac2-4cad-8cc5-e1bd569f288c))
  (segment (start 152.853553 49.35) (end 154 49.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp b8bd8066-8e49-4f5f-86a8-a59d7f56f379))
  (segment (start 149.25 83.246446) (end 149.25 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b8cabf6b-a09b-41c7-9c3b-a713cb7f912b))
  (segment (start 153.25 68.746446) (end 153.353553 68.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b8e2a10d-66b8-4f4e-b721-efd8d2c4748a))
  (segment (start 155.25 124.1) (end 155.25 126.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b91630ed-0d4f-412a-9b55-0b925108b3e5))
  (segment (start 148 86.85) (end 150 86.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp b92ab538-2d06-42b5-b7d5-521406747042))
  (segment (start 151.25 118.1) (end 151.25 120.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp b98a7e18-1241-492b-853a-39de43c903d2))
  (segment (start 152.75 44.1) (end 152.75 43.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp ba22ab63-aabe-46d6-abae-447256633aea))
  (segment (start 152.75 160.1) (end 152.75 161.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp ba468530-f4f1-48e7-bffa-734aa1ca35d3))
  (segment (start 154.75 83.246446) (end 154.853553 83.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ba47b5fe-24b7-4780-b0bf-b08a97c8600b))
  (segment (start 146 88.85) (end 148 88.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp bab33fcc-c992-4519-bf4c-e9e9b2146c83))
  (segment (start 147.25 136.746446) (end 147.353553 136.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp bb0c1b7f-baa4-45e9-908c-e0a9c31ade69))
  (segment (start 151.25 35.246446) (end 151.25 34.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp bb17f608-f936-4b11-886a-311a9ed21896))
  (segment (start 146 166.85) (end 148 166.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp bb413418-a0dc-48af-8841-067255201d34))
  (segment (start 146.75 160.1) (end 146.75 161.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp bb78817a-3908-41fd-a453-66078033c590))
  (segment (start 152.75 94.953553) (end 152.75 96.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp bbcc1f21-09e3-4e53-8adb-f6bb21bf403d))
  (segment (start 150 70.85) (end 148.853553 70.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp bbcd34b8-a293-4fc8-93c1-ed44246a88ee))
  (segment (start 144.75 94.1) (end 144.75 96.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp bc7ab120-e347-4dbb-a1f1-cb2b68c836da))
  (segment (start 150.75 34.746446) (end 150.75 34.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp bc8b4783-c15d-4e4a-b574-0819264f1abf))
  (segment (start 149.25 36.1) (end 149.25 35.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp bccff068-7f12-49cb-992f-477c138dcd46))
  (segment (start 155.25 146.1) (end 155.25 148.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp bd30fccc-9a41-46d1-ad04-2e702f460584))
  (segment (start 146.853553 70.85) (end 146.75 70.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp bda522a0-5860-45a7-9226-a858d4b272e4))
  (segment (start 151.25 159.453553) (end 151.25 160.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp bdca7dda-fb73-41e9-afc2-f8466aa44c15))
  (segment (start 146.75 98.1) (end 146.75 100.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp bdd3966b-ac94-4b6c-bb04-d8656e41f04e))
  (segment (start 150 137.35) (end 151.146446 137.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp bead2cd5-e8eb-41b2-864d-b5429941268c))
  (segment (start 144.75 108.1) (end 144.75 110.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp beb67289-84b1-4460-b299-d9ca5b85c783))
  (segment (start 153.353553 81.35) (end 153.25 81.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp bec93f8d-c73b-4319-9cd9-56d485415a06))
  (segment (start 150 40.85) (end 152 40.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp becd94c9-10f8-4d56-b1d9-386a3d7e7186))
  (segment (start 148.75 126.1) (end 148.75 128.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp bef328a5-ae69-40dc-a0bf-09846a24d5f5))
  (segment (start 147.353553 149.35) (end 147.25 149.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp bf09fc3e-7c10-402a-9cb7-b33fa701886d))
  (segment (start 150.75 94.1) (end 150.75 94.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp bf11b6ab-14f5-473e-89be-62d08370e37d))
  (segment (start 149.25 64.099999) (end 149.25 66.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp bf57f8ee-19c3-4a30-b236-b100fb9b4d35))
  (segment (start 146.75 161.246446) (end 146.853553 161.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp bf80bec6-bfd2-4375-90a2-07832186908d))
  (segment (start 149.25 80.1) (end 149.25 78.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp bf9b72d6-0ba7-4dfa-baf7-9cbb33a8e11d))
  (segment (start 152.75 44.1) (end 152.75 46.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp bf9ff805-4a2b-4382-aa09-bfe222166ee6))
  (segment (start 148 153.35) (end 150 153.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp bfabbf41-c950-4b50-beef-949392af28dd))
  (segment (start 150.646446 68.85) (end 150.75 68.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp bfe1a03c-06ec-443c-b45e-ff3f36ed0b5f))
  (segment (start 145.353553 41.35) (end 145.25 41.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp bffbf4b6-1004-4d27-9a64-ac39a9b3f588))
  (segment (start 153.25 92.1) (end 153.25 90.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp c027cb43-4950-4765-8a80-17c9370b2a59))
  (segment (start 145.25 142.1) (end 145.25 144.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c0376015-569c-41bf-8262-d1b92aecced7))
  (segment (start 149.353553 99.35) (end 149.25 99.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp c06dd687-2246-4f21-a927-d551539e59c9))
  (segment (start 152.646446 36.85) (end 152 36.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c07f3b26-3d93-44a0-9a93-fdc2ca1256cb))
  (segment (start 152.75 104.1) (end 152.75 106.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c0c6f41a-60f1-4c0b-b9dd-e044757e4a1e))
  (segment (start 150.646446 38.85) (end 150.75 38.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp c0c91729-d68f-4929-861f-145bff08c83c))
  (segment (start 148 143.35) (end 150 143.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp c0f298d3-f029-439f-a976-2446dae9bdd8))
  (segment (start 148 165.35) (end 150 165.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp c0fe5058-81ad-40e2-9411-5765160da0d5))
  (segment (start 152 41.35) (end 154 41.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp c1058436-ef37-4376-ba26-78554522a7b1))
  (segment (start 148.853553 83.35) (end 149.146446 83.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp c126acb5-2eed-46ba-9286-26eecf0ba9e1))
  (segment (start 150.75 46.1) (end 150.75 48.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c138c2d6-7cdb-484a-9797-24764d9b0190))
  (segment (start 152.75 79.246446) (end 152.853553 79.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp c19093be-039c-403a-b787-87f9bebba833))
  (segment (start 147.25 140.953553) (end 147.146446 140.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c190eb6c-6e67-4f6f-b7e2-9c685de2ef10))
  (segment (start 146 76.85) (end 148 76.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c1a37b7d-3d18-49b6-9fc0-8139571b2b6c))
  (segment (start 148 68.85) (end 150 68.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c21241de-28ea-4544-8d2c-e4d32a04e949))
  (segment (start 144.75 128.1) (end 144.75 130.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c22f54d9-61c7-4dbf-ab5e-4a4434e7c2dc))
  (segment (start 148 28.85) (end 150 28.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c27999f4-6807-4b9e-9288-e4687733c81a))
  (segment (start 152 26.85) (end 154 26.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c2868c58-fd43-4fec-8f50-ab31656ee998))
  (segment (start 148.75 158.1) (end 148.75 160.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c28718b2-9f29-467c-ae46-4314ab0eec58))
  (segment (start 150 142.85) (end 152 142.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c2dd1135-fe42-4cba-9cd5-4b069f637ad9))
  (segment (start 146.853553 87.35) (end 148 87.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp c2f55b95-1522-4f7d-89af-d9cfbdb824ab))
  (segment (start 153.353553 75.35) (end 154 75.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp c33cf8f2-0ca2-45ef-b939-3df46753b92f))
  (segment (start 151.25 44.953553) (end 151.146446 44.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c3a66f43-b29d-4bbc-9657-13cc98321047))
  (segment (start 152.75 39.246446) (end 152.853553 39.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp c3b69a1b-ffa9-4e2d-969e-a63990afe996))
  (segment (start 146 38.85) (end 148 38.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c3fb0c82-36ef-4059-bdcb-6ac400b45803))
  (segment (start 154.75 160.1) (end 154.75 162.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c41edc14-de6b-423e-a441-9732aa21ad80))
  (segment (start 145.25 166.746446) (end 145.353553 166.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c46cf844-7326-470e-af63-d4a088f9357c))
  (segment (start 149.25 60.953553) (end 149.146446 60.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c4a8b10d-49cd-4987-a69f-7552e64fb6c1))
  (segment (start 155.146446 131.35) (end 155.25 131.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp c4d7f0dc-ee13-4be2-9bc5-ff620a7b3ef3))
  (segment (start 147.25 128.746446) (end 147.353553 128.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c4e23e0a-8308-44a0-a64a-abee9307db4c))
  (segment (start 147.353553 56.85) (end 148 56.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c4ee8e6c-0e29-4761-9c7e-eb466e634ecc))
  (segment (start 149.146446 163.35) (end 149.25 163.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp c52e1455-2f8d-4d4c-8f76-119f4d89c471))
  (segment (start 145.25 128.1) (end 145.25 130.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c5985697-00d7-494a-9376-b15e8b11d90d))
  (segment (start 151.25 92.1) (end 151.25 91.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp c59954f3-f37e-4b1d-8e0d-00b68dca979c))
  (segment (start 153.353553 132.85) (end 154 132.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c59f3d57-9ac5-4c91-bf40-3ce85421c54a))
  (segment (start 146.75 148.953553) (end 146.75 150.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c5c7b22c-795d-4171-9e4f-f846c5e7091f))
  (segment (start 147.25 154.746446) (end 147.25 154.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c5e493f4-78df-45e5-bc5e-31db91b66c64))
  (segment (start 153.25 79.246446) (end 153.25 78.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c6190eb3-c337-40a4-8242-01f4917ec650))
  (segment (start 151.25 92.1) (end 151.25 94.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c66fc0c8-3bd9-4f84-9d1b-909fb8f41880))
  (segment (start 147.353553 85.35) (end 148 85.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp c68427d3-6013-459d-8868-f698e9b7e9c0))
  (segment (start 148 60.85) (end 146.853553 60.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c69de3cd-7922-4c7a-8619-8f99d0d7be11))
  (segment (start 148.75 162.746446) (end 148.75 162.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c6b0c1bb-e5ec-4375-9dd7-e011a8be349a))
  (segment (start 155.146446 132.85) (end 154 132.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c6c3d691-19f0-4ce5-b3b3-a3191fdffafa))
  (segment (start 149.353553 72.85) (end 149.25 72.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp c6caa056-470d-426a-962d-01ad391871b9))
  (segment (start 153.146446 70.85) (end 152 70.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c73c183f-92b2-4696-a03b-04d06c6e75e0))
  (segment (start 147.25 102.1) (end 147.25 104.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c797b1d2-415e-4501-8be7-9647aaa86750))
  (segment (start 153.25 66.099999) (end 153.25 68.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c7ae442f-b758-4f28-b689-8c6c3a475d65))
  (segment (start 149.25 102.1) (end 149.25 104.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c7fedcef-9a74-47f4-84b0-23bacaf56187))
  (segment (start 150 95.35) (end 150.646446 95.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp c810419c-8fdd-4f86-a017-2b39d0dae5cd))
  (segment (start 152 141.35) (end 153.146446 141.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp c8454158-5bfb-46f5-8db3-4c88becf5946))
  (segment (start 155.25 164.1) (end 155.25 166.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c861a2c5-47be-47f5-a54e-8054ccf3248a))
  (segment (start 154.75 92.1) (end 154.75 94.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c8a13eb8-7782-4519-8e64-cf44eb40912c))
  (segment (start 151.25 60.1) (end 151.25 62.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c8e5f5ac-c9e4-48a0-882b-f7b8e09ace04))
  (segment (start 153.25 75.453553) (end 153.353553 75.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp c8e96374-b5bf-4844-aece-04fd4ea099ae))
  (segment (start 147.25 96.1) (end 147.25 98.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c9261fec-15f2-4086-a6bf-26b21a3a2a82))
  (segment (start 147.353553 153.35) (end 148 153.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp c960f8bc-181e-4324-957d-9e63b0f9bebd))
  (segment (start 154.75 96.1) (end 154.75 98.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c96777b6-cf14-4879-b52a-db1e4b19e3c5))
  (segment (start 148.75 96.953553) (end 148.75 97.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp c96f76fe-9390-44e4-929c-f7f16a022d53))
  (segment (start 147.25 91.453553) (end 147.25 92.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c9a150f0-f948-47ab-bad7-b9377f34c306))
  (segment (start 154.75 36.1) (end 154.75 38.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c9a95f74-7bde-41a2-8078-dc413f58a14d))
  (segment (start 155.146446 50.85) (end 154 50.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp c9e1e476-4b87-46ce-96bd-d358382f081b))
  (segment (start 146.75 104.1) (end 146.75 106.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp c9f44db4-2dba-4208-86ca-03e8f297a75d))
  (segment (start 152.75 78.1) (end 152.75 79.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp c9f7e4d7-603d-4860-8b03-78dd9a6b7de4))
  (segment (start 147.25 46.746446) (end 147.25 46.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ca077e1d-b367-447a-bd06-813fd59fa5b0))
  (segment (start 144.75 118.1) (end 144.75 120.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ca0f904f-e5c1-4385-9cdf-4d1ff57228e3))
  (segment (start 145.25 164.1) (end 145.25 166.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp cac263af-b310-4725-9d79-eb3373d8a33f))
  (segment (start 145.353553 88.85) (end 145.25 88.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp cad6a497-ac7d-49d2-9feb-7912fd90af0c))
  (segment (start 144.75 122.1) (end 144.75 124.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp caf191c6-e891-40ec-8b40-8ddefb117d30))
  (segment (start 150.646446 77.35) (end 150 77.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp caf91c64-60c6-4752-8a93-58ea519df2aa))
  (segment (start 147.25 70.953553) (end 147.146446 70.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp cb001556-a22a-4de1-89dc-85f24f5dacc5))
  (segment (start 150.75 38.746446) (end 150.75 38.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp cb40a42b-fb1b-4a62-bf3c-8ccec28c9ce4))
  (segment (start 150.646446 56.85) (end 150 56.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp cb683725-4dde-425a-9003-086de915c639))
  (segment (start 153.146446 42.85) (end 152 42.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp cb830f63-bfa0-42d1-8d04-807954354628))
  (segment (start 154.75 68.1) (end 154.75 68.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp cbbce02e-d332-43d3-9c4c-81e1b4a7fe20))
  (segment (start 155.25 44.1) (end 155.25 46.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp cbd96b8b-dd0f-4213-bd97-7662e60bef1f))
  (segment (start 150.646446 95.35) (end 150.75 95.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp cc640ebf-67b7-47cb-a420-61a17c34b1a2))
  (segment (start 154.75 80.746446) (end 154.646446 80.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp cd11cf46-d949-4d9a-a860-1cff134f8a1e))
  (segment (start 153.146446 79.35) (end 153.25 79.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp cd46d7e5-c6d7-4382-a683-a97b95b54581))
  (segment (start 150 153.35) (end 152 153.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp cd9284d8-7ebc-4932-b22b-7abdc41c494a))
  (segment (start 145.353553 69.35) (end 145.25 69.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp cdc83c27-8083-4057-9574-85a7cabe53ea))
  (segment (start 152.75 49.246446) (end 152.853553 49.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp cdf5a3f0-70fb-4516-8ad8-930241218fba))
  (segment (start 154.646446 162.85) (end 154 162.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp ce17519a-27f9-4a8b-944f-fe400902b1ef))
  (segment (start 152.646446 149.35) (end 152 149.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ce5b2973-3c18-4ce6-afaa-11dd8c3ee635))
  (segment (start 151.25 112.1) (end 151.25 114.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ce7e8d4d-52b2-43a1-8324-793a61d2409d))
  (segment (start 146 27.35) (end 148 27.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ceaeccbc-e9c1-4a69-8fa2-833e4703cb85))
  (segment (start 155.25 114.1) (end 155.25 116.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp cef6b213-c8f8-451f-b99c-5742ecc94e55))
  (segment (start 148.853553 98.85) (end 148.75 98.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp cf4e10fc-2c54-406f-90a9-8818dbc3f049))
  (segment (start 146 132.85) (end 148 132.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp cf640b92-e164-46f2-a8f1-5a4be43eb3b8))
  (segment (start 148 135.35) (end 150 135.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp d025416c-3c3d-446e-a113-a1ea71f9b854))
  (segment (start 150 157.35) (end 152 157.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp d04dd43f-0cd2-43e4-8c4d-b948df8509b0))
  (segment (start 146.75 60.953553) (end 146.75 62.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d0a80e22-887f-4ed0-9738-6f8067a5d00f))
  (segment (start 155.25 50.953553) (end 155.146446 50.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp d0e34af7-d1a8-4471-92a3-5d575d153f65))
  (segment (start 149.25 67.246446) (end 149.25 66.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp d0f4664f-20a3-4f82-9caf-b53e5b7bf582))
  (segment (start 148 84.85) (end 147.353553 84.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp d18eb6b8-6883-42fe-bc4d-d4774c4c2a7c))
  (segment (start 154.75 94.1) (end 154.75 94.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp d1acd149-0fd0-4128-8bbe-a428413a2bab))
  (segment (start 152.75 138.746446) (end 152.646446 138.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp d1e27ea8-09bf-454c-9a04-621476fdb096))
  (segment (start 148.646446 36.85) (end 148.75 36.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp d215bce7-5bc5-46fc-84ed-be38beb88352))
  (segment (start 151.146446 58.85) (end 150 58.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp d2291cba-efd2-45e3-9959-bf2cf8ce397e))
  (segment (start 153.25 84.1) (end 153.25 84.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp d25ca5d0-9238-4b21-a5f5-caa02431b7dd))
  (segment (start 150.75 106.1) (end 150.75 108.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d2e3641d-4084-4cd8-892d-0487c0bede04))
  (segment (start 152.75 60.1) (end 152.75 62.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d2e92d44-262e-4f8b-b9ee-1c698c41eb58))
  (segment (start 145.25 78.1) (end 145.25 80.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d2efd9b5-851a-459c-a132-4b7a569f007b))
  (segment (start 150.75 32.1) (end 150.75 34.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d37c4660-c3cc-42d0-81d0-5b2799070ad7))
  (segment (start 152.75 150.1) (end 152.75 149.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp d3ab88bd-5a75-455f-997e-fdb82aab0a61))
  (segment (start 149.25 106.1) (end 149.25 108.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d3c44b64-9baa-4675-a3c8-3489bf4230c2))
  (segment (start 144.75 116.1) (end 144.75 118.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d3c9cb76-82d5-4bd1-9930-235c5e0c9667))
  (segment (start 154.75 164.1) (end 154.75 166.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d4249f16-7335-42ac-9f71-73d6331d7f82))
  (segment (start 148 135.35) (end 147.353553 135.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp d47a976f-d104-4cbd-b71c-8721516528af))
  (segment (start 150 150.85) (end 152 150.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp d49aaae5-aedf-49fc-93de-a425eb25df87))
  (segment (start 145.25 27.453553) (end 145.25 28.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d49c79bb-5b3b-4cc0-bbdf-e4ec51687519))
  (segment (start 145.353553 144.85) (end 146 144.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp d4a261c8-493d-45f2-94cc-aa0e55aa65c5))
  (segment (start 147.353553 135.35) (end 147.25 135.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp d4b300e8-78c5-42f0-b32b-0443c75f9498))
  (segment (start 148.75 160.1) (end 148.75 162.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d4cb4e09-5f98-43e3-ab43-660c06fc4e01))
  (segment (start 154.75 122.1) (end 154.75 124.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d4d226fe-3312-4e2b-a4af-8aefd667158b))
  (segment (start 150.75 108.1) (end 150.75 110.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d4e4137e-7061-4e68-80c2-b8231933121c))
  (segment (start 151.25 100.1) (end 151.25 98.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp d509973b-db7f-426a-b260-360b4304f647))
  (segment (start 146.75 158.1) (end 146.75 160.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d54259c9-8b04-4c5b-b6aa-9cc9febcfc4c))
  (segment (start 146.75 78.953553) (end 146.75 80.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d55bd798-4d86-4f29-895f-9f1ba82c53bb))
  (segment (start 151.353553 56.85) (end 151.25 56.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp d5639abe-6f86-4ab4-8f2c-205c5453796b))
  (segment (start 153.146446 90.85) (end 152 90.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp d5e9d4ae-92bc-477c-82c5-a85769335389))
  (segment (start 146 69.35) (end 145.353553 69.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp d612f456-9654-4091-a900-db598d5c41ff))
  (segment (start 150.75 164.1) (end 150.75 164.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp d6181a20-23f3-443e-9997-e2e56e57879a))
  (segment (start 154 143.35) (end 155.146446 143.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp d63861a9-ba84-4c15-bdf4-0e4cf645f42d))
  (segment (start 144.75 60.1) (end 144.75 58.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d64418bf-4aef-4b21-9814-a4e8ae40ef84))
  (segment (start 152 153.35) (end 154 153.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp d693c076-05e1-495c-bb13-59a05155ff8d))
  (segment (start 144.75 140.953553) (end 144.75 142.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d6cd5b1b-21b4-4908-a69b-2efb35e8a976))
  (segment (start 150 42.85) (end 152 42.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp d6da9088-9f5e-4aee-a5b9-648982e18665))
  (segment (start 152.75 120.1) (end 152.75 122.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d6dc4ef4-c40c-4413-9f7d-4cbd935b29bb))
  (segment (start 150 85.35) (end 151.146446 85.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp d6f836af-6996-411c-b565-4b62fe6c775f))
  (segment (start 153.25 130.1) (end 153.25 132.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d71117f1-0fad-4ecd-97b8-9041ef93bf6b))
  (segment (start 148.75 35.453553) (end 148.75 36.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d734bc83-49c1-4b6c-a5e3-99d5c303e4a9))
  (segment (start 153.25 51.453553) (end 153.25 52.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d79cdaf9-bd56-4dc1-a85a-f8459557a288))
  (segment (start 152 40.85) (end 154 40.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp d811fda9-ad31-4ae2-9a5c-195ec08bec68))
  (segment (start 148 40.85) (end 150 40.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp d8285d63-cffe-42ac-9000-00c16e913812))
  (segment (start 155.25 54.1) (end 155.25 56.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d843936a-5806-4b58-a277-54bf2a63a790))
  (segment (start 145.353553 89.35) (end 146 89.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp d87841d4-b342-4621-954e-c3e7b201fc7d))
  (segment (start 148.75 116.1) (end 148.75 118.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d87a315a-df39-4e83-b746-150658a5e5a9))
  (segment (start 149.25 118.1) (end 149.25 120.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d896305e-9355-4f4b-a130-d24eb8a1f1b4))
  (segment (start 148.853553 70.85) (end 148.75 70.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp d89d0c42-3e0b-4f5c-86ce-aa0600806768))
  (segment (start 150.75 82.1) (end 150.75 84.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d8edfc9b-7fa9-4b8a-82a7-aa3484c4c785))
  (segment (start 145.25 58.746446) (end 145.25 58.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d8fb6e40-7714-4a85-8efe-4d5ce2529448))
  (segment (start 149.146446 55.35) (end 149.25 55.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp d935bc3b-e1b9-4165-8e52-7453a135b8e8))
  (segment (start 153.146446 56.85) (end 152 56.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp d9546646-2615-45e4-98e8-f76a542f2866))
  (segment (start 145.25 30.1) (end 145.25 32.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp d9688a7c-b30d-4267-8f91-08e7df5d7e53))
  (segment (start 150.75 80.1) (end 150.75 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp da06c3e8-0101-4a84-8349-810865eebb4f))
  (segment (start 152.75 66.099999) (end 152.75 68.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp da484948-41ef-4f9d-a801-48c340023747))
  (segment (start 146.853553 93.35) (end 148 93.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp daec652d-118e-4932-9312-1009d266e690))
  (segment (start 154.75 166.1) (end 154.75 167.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp daff7f45-b73e-4b1b-a82a-6af805813be0))
  (segment (start 148.853553 33.35) (end 149.146446 33.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp db0ff14c-ef27-4515-a195-3b1d3c0b902f))
  (segment (start 155.25 153.246446) (end 155.25 152.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp db2be27d-4916-4e6c-89ff-1fd62ba22ce1))
  (segment (start 155.146446 87.35) (end 155.25 87.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp db676e55-3321-4a5a-957b-90c7cebd3d11))
  (segment (start 148 90.85) (end 150 90.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp db6f46df-bd16-4654-ac8c-fc3b1de58f2a))
  (segment (start 147.353553 34.85) (end 148 34.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp dbc50a09-9a25-4313-b6cc-f8c222846333))
  (segment (start 150 72.85) (end 149.353553 72.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp dbc77af2-08cf-4a7d-93c7-054aebb617e8))
  (segment (start 145.25 90.1) (end 145.25 89.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp dc11ba49-f25c-4dcd-a88d-4dfc4322600f))
  (segment (start 152.853553 85.35) (end 154 85.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp dca87546-0aa2-4454-ae7f-8290c6bad3eb))
  (segment (start 144.75 144.1) (end 144.75 145.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp dcf1c3a5-8e60-4c13-9074-1eb62e8454dc))
  (segment (start 151.25 97.246446) (end 151.25 96.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp dd419c07-a6db-4cc9-99af-565430ef1416))
  (segment (start 148 129.35) (end 149.146446 129.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp dd4c26b3-3162-41a1-865a-bfb786d8c1cb))
  (segment (start 152.853553 39.35) (end 153.146446 39.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp dd5d3636-8d37-4350-a266-903f5d0ba5c9))
  (segment (start 152 37.35) (end 152.646446 37.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp dd681426-0531-4aa3-a00f-0fd5cae341a7))
  (segment (start 144.75 74.1) (end 144.75 75.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp ddad4188-8a8c-456e-916d-ef8ae97f73f0))
  (segment (start 144.75 38.1) (end 144.75 39.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp ddf38ff2-2b99-4365-b078-cdfa8258142e))
  (segment (start 147.25 92.1) (end 147.25 92.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp de11993e-7535-47e4-b741-47a419e32fbe))
  (segment (start 145.353553 162.85) (end 145.25 162.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp de1987f2-27b3-49ec-8ecf-093e866b1a62))
  (segment (start 148.75 98.953553) (end 148.75 100.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp de56fe94-244b-481d-ae44-df7f7d92018d))
  (segment (start 150 152.85) (end 152 152.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp de7cef1f-502e-4c9c-b399-f609fcbbe2a7))
  (segment (start 153.25 102.1) (end 153.25 104.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp deced30e-e249-4dbc-892e-4c5a12342f1f))
  (segment (start 148.646446 35.35) (end 148.75 35.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp dedac942-39e1-448b-9fab-10b1148f30df))
  (segment (start 145.25 118.1) (end 145.25 120.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp def4acfe-3eb4-4523-912b-39db53ae9380))
  (segment (start 148.75 140.953553) (end 148.75 141.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp def8b54b-1488-43af-9cb9-bb35ac1f8a23))
  (segment (start 148.75 120.1) (end 148.75 122.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp df20b673-e8a7-4d00-bbc7-d91eb78e8a0f))
  (segment (start 155.25 156.953553) (end 155.146446 156.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp df2d9cfa-d686-4810-bd57-4bd71a685c0a))
  (segment (start 151.25 78.1) (end 151.25 80.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp df3fc9b5-b5e7-4a8e-aa46-8b1f2c667c74))
  (segment (start 147.25 85.453553) (end 147.353553 85.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp df4ef9c2-42ac-4b85-88b8-92fcc3fec47a))
  (segment (start 148.75 124.1) (end 148.75 126.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp df6afc36-ebe6-4eb0-8234-57fd253962a8))
  (segment (start 148.75 54.1) (end 148.75 55.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp df837f36-75a2-4f44-8296-cda587e1c3db))
  (segment (start 155.25 66.099999) (end 155.25 68.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp df9b6099-3f91-4bfb-aed6-b2711a7fec06))
  (segment (start 151.25 104.1) (end 151.25 106.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp dfd6b6b7-0db7-4278-aac8-377edd012dd6))
  (segment (start 155.25 160.1) (end 155.25 162.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp dff58384-81e5-4680-bd40-f9bf66e7d25f))
  (segment (start 145.353553 66.849999) (end 146 66.849999) (width 0.25) (layer "F.Cu") (net 17) (tstamp e01b4eb9-8aee-43ad-b038-259b15741814))
  (segment (start 150 155.35) (end 152 155.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp e05d7a21-226c-4469-a064-2049f5c8c94a))
  (segment (start 148 75.35) (end 150 75.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp e070e521-27df-4a39-b31f-84e1f36e2778))
  (segment (start 154.75 85.453553) (end 154.646446 85.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp e0c00e6c-6e8f-475f-b9ed-1340b46eff84))
  (segment (start 155.25 56.1) (end 155.25 58.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e0ce5793-b8a5-422e-a15d-cef9ecd4d809))
  (segment (start 146.853553 161.35) (end 147.146446 161.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp e13cedbc-0b8d-4d08-abfa-d08c24a55499))
  (segment (start 146.853553 78.85) (end 146.75 78.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp e1401daa-d3db-4896-b9c0-c86d48e46708))
  (segment (start 153.25 151.246446) (end 153.25 150.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e1451821-d24d-4a29-a950-758454e8b773))
  (segment (start 154.75 40.1) (end 154.75 40.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp e1a2e2c8-5183-4171-afbb-bf00c8b713f4))
  (segment (start 147.25 142.1) (end 147.25 140.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp e1c1e3e9-2011-47dd-93e4-262f04837a37))
  (segment (start 147.25 110.1) (end 147.25 112.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e1d9964c-099e-41d4-9d32-3424aa3614fa))
  (segment (start 148.75 156.953553) (end 148.75 158.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e2213c23-69cf-4d1f-8fe6-fff4bd055485))
  (segment (start 145.25 88.746446) (end 145.25 88.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e253d856-52b8-4106-b4cc-ff46ef55183c))
  (segment (start 148.75 61.453553) (end 148.646446 61.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp e27491cf-2eec-48a3-ba6a-5666116d0e58))
  (segment (start 148.646446 128.85) (end 148.75 128.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp e30cd03a-9f5e-4f17-a198-8655c6698f1e))
  (segment (start 150.75 84.746446) (end 150.75 84.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e312083e-d881-49b6-9fe1-f2bccaf9866d))
  (segment (start 153.25 136.1) (end 153.25 138.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e32d76cf-72c6-4798-bd6b-38f40ce92714))
  (segment (start 148 35.35) (end 148.646446 35.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp e33034fc-5a27-43ea-b328-89ad1f0e4117))
  (segment (start 154 81.35) (end 154.646446 81.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp e3adc972-6f66-477c-8e21-8ab48bba40bc))
  (segment (start 153.25 164.1) (end 153.25 166.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e3bd8289-9a40-46da-a352-d6aef10efc9c))
  (segment (start 145.25 77.453553) (end 145.25 78.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e3c190b2-f7ac-4a44-b435-3f10c9cd464e))
  (segment (start 145.25 34.1) (end 145.25 36.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e3f4f968-0339-48e4-aa80-77fef97eae9b))
  (segment (start 153.25 108.1) (end 153.25 110.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e3fed902-d445-45e9-8065-2b9144fd0a48))
  (segment (start 148.75 80.1) (end 148.75 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e4257d8a-9e5e-49d3-a980-776181bbe08b))
  (segment (start 145.25 62.1) (end 145.25 64.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp e42aed94-a749-4cdc-a83a-1ae9b7bf29b4))
  (segment (start 150.75 130.746446) (end 150.646446 130.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp e4b27311-0941-4bc0-b03e-70c9a21717c5))
  (segment (start 152 147.35) (end 154 147.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp e4c0f361-1cb5-482f-8998-df47d3e7c04e))
  (segment (start 145.25 98.1) (end 145.25 100.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e5084c6d-7718-4136-86ad-f9d9dbea833a))
  (segment (start 147.353553 72.85) (end 148 72.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp e5406e01-820f-4c85-8fd6-932bbcd08b8f))
  (segment (start 150 35.35) (end 151.146446 35.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp e5a89805-7e9e-4416-b204-a1f1f62a5eb1))
  (segment (start 151.25 32.1) (end 151.25 30.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp e5b1aafb-df3a-46b1-b2a3-477e74158fd9))
  (segment (start 151.25 30.953553) (end 151.146446 30.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp e5c764ac-829a-43a3-8f36-fc072dc9a0e8))
  (segment (start 146.75 28.953553) (end 146.75 30.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e5cfb6e5-d74b-48e0-97f7-d8936de8b83b))
  (segment (start 153.25 36.1) (end 153.25 38.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e5d85066-6955-4a0a-86a3-c64d86120541))
  (segment (start 144.75 46.1) (end 144.75 48.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e5f35c64-436d-4f33-b348-fda6fb381953))
  (segment (start 147.353553 84.85) (end 147.25 84.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp e6193b2d-1f67-4e87-837f-960a3c1270cc))
  (segment (start 150.75 99.453553) (end 150.646446 99.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp e69839e6-8afb-4443-805a-404945808d08))
  (segment (start 155.25 34.1) (end 155.25 36.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e6ab7284-7cd6-41ae-a770-9313d9576b72))
  (segment (start 151.25 39.246446) (end 151.25 38.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e6aed9f7-a7ab-40b9-a20e-b63ee5fef314))
  (segment (start 152 144.85) (end 154 144.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp e6b01796-0113-4eec-a540-f2aa7753274f))
  (segment (start 150 98.85) (end 148.853553 98.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp e6d0102b-53df-4dbb-bcf0-74fa44a9ab08))
  (segment (start 149.25 48.1) (end 149.25 50.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e6fb6fcd-4164-4f2c-92a0-7a11b9557681))
  (segment (start 146.853553 65.349999) (end 147.146446 65.349999) (width 0.25) (layer "F.Cu") (net 17) (tstamp e7233ba5-082f-4908-bd4a-7c1355d895b6))
  (segment (start 154.75 78.1) (end 154.75 80.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e757061d-5e6a-4688-b344-5578658c2d83))
  (segment (start 148 154.85) (end 150 154.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp e7615848-ddf1-4ad9-ba56-60ad45ceb9e8))
  (segment (start 150.75 165.453553) (end 150.75 166.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e7a65c5c-4e1b-4406-8ab4-82f2bb8f0114))
  (segment (start 145.353553 74.85) (end 146 74.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp e7b05b00-68c8-4a88-a535-09960fe5bf50))
  (segment (start 152.75 118.1) (end 152.75 120.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e7b48ef6-69a4-440b-b4d4-00a8d20cb2b9))
  (segment (start 145.25 74.746446) (end 145.353553 74.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp e8423fea-bc3a-4572-a2d7-3a9e0e2acf16))
  (segment (start 145.353553 130.85) (end 146 130.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp e855112c-53cf-4fb1-ac21-b5d336b0d8a2))
  (segment (start 148 78.85) (end 146.853553 78.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp e91e0474-25bd-45a4-b36c-49aa9169349f))
  (segment (start 150 150.85) (end 148.853553 150.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp e9565740-3c78-4d31-95fb-230ba8ba6237))
  (segment (start 155.25 76.1) (end 155.25 74.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp e987e981-f896-4775-987a-64ae8996192e))
  (segment (start 154.75 56.1) (end 154.75 58.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp e9c42e56-40c9-450a-8277-5a2240d7fbac))
  (segment (start 154 72.85) (end 154.646446 72.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp ea384251-ee8c-43a6-bfa3-e5a02e650850))
  (segment (start 145.353553 133.35) (end 145.25 133.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp ea4c3c0f-3a71-4deb-8ab5-aa6e675f3860))
  (segment (start 150.75 164.746446) (end 150.646446 164.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp ea95f694-4bd8-446d-8fac-586519615517))
  (segment (start 146 40.85) (end 148 40.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp eacdb129-636f-40b3-a8b1-ae9d642b9ef7))
  (segment (start 150 157.35) (end 149.353553 157.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ebb00a69-b4b5-4744-bb8b-c5eeb576c731))
  (segment (start 144.853553 76.85) (end 144.75 76.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp ebca01b0-5f8b-4c44-ab4a-00c0e2f896c5))
  (segment (start 144.75 148.1) (end 144.75 150.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ebf434f0-3fda-4e55-bf2b-b5b0b5cc8a25))
  (segment (start 152.853553 161.35) (end 153.146446 161.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ec4e05dd-c6b3-4a8a-ae3f-0bdc843e46de))
  (segment (start 146 74.85) (end 148 74.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp ec62b930-2c55-4667-8fd3-21332133b193))
  (segment (start 153.25 132.746446) (end 153.353553 132.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp ed898094-e364-454c-b8e1-caed20763afe))
  (segment (start 145.353553 166.85) (end 146 166.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp edbeeca7-9404-4d63-87d5-cfadbad3064b))
  (segment (start 147.25 72.746446) (end 147.353553 72.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp ee4ab6f9-f1a6-4df6-9c73-2d5786d9107b))
  (segment (start 148.75 100.1) (end 148.75 102.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ee910fb0-db16-4c9d-9599-99497e0ae3c7))
  (segment (start 150 147.35) (end 152 147.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ee9a75d9-cc6a-4ef7-b410-7ef37377867c))
  (segment (start 150.75 122.1) (end 150.75 124.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp eea54b4f-58a8-401f-9841-05ad5ce20983))
  (segment (start 154 73.35) (end 155.146446 73.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp eeaddc47-2f84-4fd2-b8ca-b7515263e16c))
  (segment (start 152.75 76.1) (end 152.75 78.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp eee6aa59-2f08-4120-b422-5a276302c162))
  (segment (start 147.25 29.453553) (end 147.25 30.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ef0645c2-d9dc-4469-92d2-4ed32248b542))
  (segment (start 154.75 52.1) (end 154.75 51.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp ef16582b-f2ef-44a4-bdc0-d8b67ec0d64c))
  (segment (start 148.75 42.953553) (end 148.75 44.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ef169624-05e5-4522-8421-110bde6254b5))
  (segment (start 154.75 62.1) (end 154.75 64.099999) (width 0.25) (layer "F.Cu") (net 17) (tstamp ef2e8477-d0ee-4e65-b7df-93594b10dec6))
  (segment (start 152.75 159.453553) (end 152.646446 159.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ef46b1e2-f1e8-410e-afb7-2204af2004fd))
  (segment (start 150 91.35) (end 150.646446 91.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ef4a452d-35f7-4234-a164-114271f7f51b))
  (segment (start 152.75 138.1) (end 152.75 138.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp ef4d332c-3c14-4a5b-8a94-5b2bd415f216))
  (segment (start 152.75 80.953553) (end 152.75 82.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ef5457de-96c4-4cfc-ba22-26f11f42e1c3))
  (segment (start 153.25 163.453553) (end 153.25 164.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp ef70767b-0e06-4ff1-b6ed-735670b8e29a))
  (segment (start 144.853553 167.35) (end 146 167.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp f02fc605-ac5b-42df-8c36-02413d10a80e))
  (segment (start 153.25 72.1) (end 153.25 72.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp f070aed4-7c4d-4a98-8594-e94d43ef2fca))
  (segment (start 145.25 114.1) (end 145.25 116.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f0942f71-d686-4a73-8370-0d133c8e2037))
  (segment (start 152 88.85) (end 154 88.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp f0b9cc55-e020-4fe0-9e1a-05761b53e6d8))
  (segment (start 146 133.35) (end 148 133.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp f10223be-427c-429f-b3d1-1a114970b877))
  (segment (start 150 156.85) (end 152 156.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp f13057f1-1ec1-4ffa-8847-92895939968f))
  (segment (start 149.146446 83.35) (end 149.25 83.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp f131fb4a-b646-4fc2-89b1-4a123a20bdff))
  (segment (start 149.25 44.1) (end 149.25 44.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp f160cf6f-bf57-4fac-8653-10822b8c700e))
  (segment (start 144.75 114.1) (end 144.75 116.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f1d87952-6f0c-46cf-a5d8-3adeea09213e))
  (segment (start 151.146446 69.35) (end 151.25 69.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp f1e32f9d-7b77-430b-9499-bb80d6549bbb))
  (segment (start 146.75 156.1) (end 146.75 158.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f1e94072-2262-4d38-9678-9e557939d385))
  (segment (start 146.75 106.1) (end 146.75 108.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f22c1092-0d50-4fbf-885a-abfe524dfd9d))
  (segment (start 154.75 52.1) (end 154.75 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f2cedcb4-94f9-42fe-86b6-2a515caa2239))
  (segment (start 152.853553 94.85) (end 152.75 94.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp f2fbd1df-17c2-425a-bf32-b9734bc12f51))
  (segment (start 151.25 122.1) (end 151.25 124.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f31d8c68-b757-412c-9c69-7d3930637258))
  (segment (start 154.75 146.1) (end 154.75 146.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp f32234a3-db66-469e-aafb-41fbf9488c97))
  (segment (start 151.25 32.1) (end 151.25 34.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f32ecc42-fbc0-4fdc-9a43-9f67ce569373))
  (segment (start 146.75 44.1) (end 146.75 46.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f367ae19-8c04-4a29-8f76-96edf28ec063))
  (segment (start 148 41.35) (end 150 41.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp f36829dc-d8b3-4a6c-a9da-22f8c5641554))
  (segment (start 154.853553 167.35) (end 155.146446 167.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp f3789332-1a30-4e08-a956-bedfff3735cb))
  (segment (start 153.146446 134.85) (end 152 134.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp f3bbc5d3-7be4-4fae-94d6-e4c21988217c))
  (segment (start 145.353553 77.35) (end 145.25 77.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp f3e8a3b8-ebbe-44ce-9413-8bbefef8dd9b))
  (segment (start 146 66.849999) (end 148 66.849999) (width 0.25) (layer "F.Cu") (net 17) (tstamp f478b377-4318-41b6-a5e8-0383975ee3c4))
  (segment (start 148.75 48.1) (end 148.75 50.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f47c82ce-03b8-47ba-a714-3b156c044fe7))
  (segment (start 148 34.85) (end 150 34.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp f4b6a741-995e-4395-94a0-6cb8bff2b815))
  (segment (start 150 30.85) (end 148.853553 30.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp f50844c7-1b10-4aa0-9f08-4d1e1141e6a6))
  (segment (start 148.75 97.246446) (end 148.853553 97.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp f57f27e8-a096-4981-b054-e4a8182190a7))
  (segment (start 145.353553 38.85) (end 146 38.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp f587fbce-8d4d-413d-8561-cddccd7def9f))
  (segment (start 148 26.85) (end 150 26.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp f5b88aa5-e150-4be6-8947-27db69856533))
  (segment (start 154.646446 157.35) (end 154 157.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp f5eca8b2-9840-4f35-b471-e77fbb28d74c))
  (segment (start 150.646446 34.85) (end 150.75 34.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp f5f4ecd5-e628-4efa-9ac3-69f669063a7c))
  (segment (start 146.853553 129.35) (end 148 129.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp f5f94037-a00e-4103-8a9c-eccbe5b1ea13))
  (segment (start 147.25 156.1) (end 147.25 158.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f60def70-6a33-4daa-ab6d-bceb6336375b))
  (segment (start 145.25 100.1) (end 145.25 102.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f6aebf11-c9f3-43b1-9ede-76d8ffa41e30))
  (segment (start 146 162.85) (end 148 162.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp f6f3970c-a812-4b8a-a6de-35c70c8520f6))
  (segment (start 145.25 92.1) (end 145.25 94.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f6fd3be3-3064-4657-860b-f008beb0ee17))
  (segment (start 144.75 66.099999) (end 144.75 67.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp f73d1b17-2468-4dca-8af8-6cf6aeedb4cd))
  (segment (start 146.75 90.953553) (end 146.75 92.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f7508a9f-1932-408d-a949-a0f778ec69a4))
  (segment (start 146.75 110.1) (end 146.75 112.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f77e4a46-0e4d-4ae5-97f9-b32eecfa0340))
  (segment (start 146 147.35) (end 145.353553 147.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp f7c2d2c3-4e66-4a7c-8870-b0294dd5d774))
  (segment (start 149.25 93.246446) (end 149.25 92.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp f873098e-b7cf-4cb3-8763-1938e655c989))
  (segment (start 154.75 124.1) (end 154.75 126.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f8b6ff93-f778-40cd-bcf0-156cf7a3f7b4))
  (segment (start 148.75 30.953553) (end 148.75 32.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f8c81693-8b18-4964-8558-aefe44d4489f))
  (segment (start 145.353553 138.85) (end 146 138.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp f8e42042-f7ef-4598-997d-513859d903fd))
  (segment (start 146.853553 37.35) (end 148 37.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp f904cde6-4c3d-4229-b90d-caa6a2f4b933))
  (segment (start 147.25 61.453553) (end 147.25 62.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f905576c-e4f9-4213-adc0-78d32cab8d57))
  (segment (start 148 142.85) (end 150 142.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp f909f504-07dd-421a-b4f2-53210c95d25d))
  (segment (start 150.75 116.1) (end 150.75 118.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f9221310-a126-4c88-afb2-f4c429052ed9))
  (segment (start 148.75 70.953553) (end 148.75 72.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f938758d-b22f-4cb0-8ab4-4381bcfc3ae0))
  (segment (start 148 137.35) (end 150 137.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp f9af40a1-2040-48e3-9f79-706679eb8da0))
  (segment (start 155.25 52.1) (end 155.25 54.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp f9c000ae-8736-47bd-a2f6-9688eda3763d))
  (segment (start 144.853553 39.35) (end 146 39.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp f9d0e0e6-9665-45da-b199-221961fdb380))
  (segment (start 146.75 136.1) (end 146.75 137.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp fa626656-7750-47f6-a7c9-8aadd021964f))
  (segment (start 154.75 51.453553) (end 154.646446 51.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp fa714e07-938b-4bd6-804a-f5107adea853))
  (segment (start 145.25 94.1) (end 145.25 96.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp faad16b3-9f45-4b49-8574-386c37dbabae))
  (segment (start 154 49.35) (end 155.146446 49.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp fb3ee16c-07d1-4008-9971-40f7b4974682))
  (segment (start 147.353553 91.35) (end 147.25 91.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp fb619fa8-129a-4d81-9c60-5ba9b07a7729))
  (segment (start 144.75 34.1) (end 144.75 36.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp fb7e934f-efde-45cf-8619-29ff5e7d6cab))
  (segment (start 147.25 86.1) (end 147.25 86.746446) (width 0.25) (layer "F.Cu") (net 17) (tstamp fb8598b4-fc5a-41c9-85a0-3abb776b05d7))
  (segment (start 148 85.35) (end 150 85.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp fb87faa3-418c-4eba-ada9-8e877bade582))
  (segment (start 154.75 27.453553) (end 154.646446 27.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp fbcff7fa-4548-4d80-8b98-2655b6806115))
  (segment (start 144.75 86.1) (end 144.75 88.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp fc3ccb86-365f-49c0-8acf-5e8657be8ef5))
  (segment (start 146.75 164.953553) (end 146.75 165.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp fc69472e-1308-4763-b5bc-3f58453214df))
  (segment (start 144.75 30.1) (end 144.75 32.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp fc78426b-4b4c-4047-802a-0d69470ac4dd))
  (segment (start 146 58.85) (end 145.353553 58.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp fca25d1f-3e87-448c-ae5b-3b41a1911846))
  (segment (start 154 163.35) (end 154.646446 163.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp fcb0c2ad-71eb-462a-9b1c-9049b429d2d7))
  (segment (start 149.25 112.1) (end 149.25 114.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp fcc6ea5d-ce98-47b1-8ab1-ca0f68e2ea8f))
  (segment (start 144.75 56.1) (end 144.75 58.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp fd0fd669-f679-4855-bb80-be63e62e4f24))
  (segment (start 149.25 163.246446) (end 149.25 162.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp fd113653-4091-4038-b3e5-71d75d03ca41))
  (segment (start 144.853553 26.85) (end 144.75 26.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp fd64e77d-5d69-4d33-a9a1-548f9015b931))
  (segment (start 155.25 120.1) (end 155.25 122.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp fdd77442-b8a0-41b3-876b-44d29d86168b))
  (segment (start 152 89.35) (end 154 89.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp fde7e273-9072-4604-a873-0321099ea63d))
  (segment (start 149.146446 129.35) (end 149.25 129.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp fdee620e-72f8-4f2f-99e0-4b04869732a2))
  (segment (start 148.75 80.1) (end 148.75 79.453553) (width 0.25) (layer "F.Cu") (net 17) (tstamp fdf6d29b-4fb6-4681-a543-f839e1b1e553))
  (segment (start 152.75 75.453553) (end 152.75 76.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp fdfa8470-e330-4a56-9a4a-f753f90e32c5))
  (segment (start 147.25 118.1) (end 147.25 120.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp fdfc0340-33f7-4884-9d91-a2b2e7fb15fa))
  (segment (start 152.75 36.746446) (end 152.646446 36.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp fdfd28c5-b770-4756-a374-9e3fd4e4ca4b))
  (segment (start 155.25 42.1) (end 155.25 44.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp fe094280-7b7f-4879-a47f-b2facbb99b01))
  (segment (start 146 58.85) (end 148 58.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp fe27a418-8c1d-459c-bc8a-072087d571e2))
  (segment (start 148.853553 42.85) (end 148.75 42.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp fe2afd99-f687-462b-a8e6-af1280744b25))
  (segment (start 154.75 42.1) (end 154.75 44.1) (width 0.25) (layer "F.Cu") (net 17) (tstamp fe9f8115-1855-4812-898f-b299f367efea))
  (segment (start 151.25 137.246446) (end 151.25 136.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp fed43534-0106-44d4-a228-fd0e192c2076))
  (segment (start 155.25 90.1) (end 155.25 88.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp ff3765cf-9834-488f-8aa5-96b1f89f3c91))
  (segment (start 148.853553 96.85) (end 148.75 96.953553) (width 0.25) (layer "F.Cu") (net 17) (tstamp ff5a1afa-96d5-4156-9590-37a9d77af7aa))
  (segment (start 152.75 54.1) (end 152.75 55.246446) (width 0.25) (layer "F.Cu") (net 17) (tstamp ff84d65a-c77b-4b29-8c4f-063a7618dac9))
  (segment (start 152 158.85) (end 150.853553 158.85) (width 0.25) (layer "F.Cu") (net 17) (tstamp ffad751b-4636-4942-a5df-63866671bf46))
  (segment (start 152.646446 159.35) (end 152 159.35) (width 0.25) (layer "F.Cu") (net 17) (tstamp ffbf0245-d28f-4f13-aa98-c18983090623))

)