summaryrefslogtreecommitdiff
path: root/hw1/hw1.kicad_pcb
blob: 649cf93bd78ba849ca8a2da1086a7b8c726e47cb (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
(kicad_pcb (version 4) (host pcbnew 4.0.6)

  (general
    (links 87)
    (no_connects 24)
    (area 119.9355 72.949999 186.303001 126.440001)
    (thickness 1.6)
    (drawings 17)
    (tracks 288)
    (zones 0)
    (modules 35)
    (nets 37)
  )

  (page A4)
  (title_block
    (title "libopencm3-test hardware")
    (date 2017-10-31)
    (rev 1)
  )

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

  (setup
    (last_trace_width 0.25)
    (user_trace_width 0.152)
    (user_trace_width 0.25)
    (user_trace_width 0.4)
    (user_trace_width 0.5)
    (user_trace_width 0.75)
    (trace_clearance 0.2)
    (zone_clearance 0.25)
    (zone_45_only yes)
    (trace_min 0.152)
    (segment_width 0.15)
    (edge_width 0.15)
    (via_size 0.6)
    (via_drill 0.4)
    (via_min_size 0.4)
    (via_min_drill 0.3)
    (uvia_size 0.3)
    (uvia_drill 0.1)
    (uvias_allowed no)
    (uvia_min_size 0.2)
    (uvia_min_drill 0.1)
    (pcb_text_width 0.3)
    (pcb_text_size 1.5 1.5)
    (mod_edge_width 0.15)
    (mod_text_size 1 1)
    (mod_text_width 0.15)
    (pad_size 1.2 1.2)
    (pad_drill 0.6)
    (pad_to_mask_clearance 0)
    (aux_axis_origin 123.1265 126.365)
    (grid_origin 110.998 126.365)
    (visible_elements FFFEFFFF)
    (pcbplotparams
      (layerselection 0x00020_00000000)
      (usegerberextensions false)
      (excludeedgelayer true)
      (linewidth 0.100000)
      (plotframeref false)
      (viasonmask false)
      (mode 1)
      (useauxorigin false)
      (hpglpennumber 1)
      (hpglpenspeed 20)
      (hpglpendiameter 15)
      (hpglpenoverlay 2)
      (psnegative false)
      (psa4output false)
      (plotreference true)
      (plotvalue true)
      (plotinvisibletext false)
      (padsonsilk false)
      (subtractmaskfromsilk false)
      (outputformat 1)
      (mirror false)
      (drillshape 0)
      (scaleselection 1)
      (outputdirectory ""))
  )

  (net 0 "")
  (net 1 +5V)
  (net 2 GND)
  (net 3 +3V3)
  (net 4 /NRST)
  (net 5 /ADC_IN1)
  (net 6 /I2C_SDA)
  (net 7 /I2C_SCL)
  (net 8 /SPI_CS)
  (net 9 /SPI_MOSI)
  (net 10 /SPI_MISO)
  (net 11 /SPI_SCK)
  (net 12 /USB_DM)
  (net 13 /USB_DP)
  (net 14 "Net-(P10-Pad6)")
  (net 15 /SWCLK)
  (net 16 /SWDIO)
  (net 17 /SWO)
  (net 18 /DAC1_OUT)
  (net 19 /DAC2_OUT)
  (net 20 /UART_TX_OUT)
  (net 21 /UART_RX_OUT)
  (net 22 "Net-(JP1-Pad2)")
  (net 23 "Net-(JP2-Pad2)")
  (net 24 /VLCD)
  (net 25 "Net-(C9-Pad1)")
  (net 26 "Net-(C10-Pad1)")
  (net 27 "Net-(JP3-Pad2)")
  (net 28 "Net-(J2-Pad1)")
  (net 29 "Net-(J4-Pad1)")
  (net 30 "Net-(J5-Pad1)")
  (net 31 "Net-(J7-Pad1)")
  (net 32 "Net-(J8-Pad1)")
  (net 33 "Net-(J9-Pad1)")
  (net 34 "Net-(J3-Pad1)")
  (net 35 "Net-(J10-Pad1)")
  (net 36 "Net-(J11-Pad1)")

  (net_class Default "This is the default net class."
    (clearance 0.2)
    (trace_width 0.25)
    (via_dia 0.6)
    (via_drill 0.4)
    (uvia_dia 0.3)
    (uvia_drill 0.1)
    (add_net /ADC_IN1)
    (add_net /DAC1_OUT)
    (add_net /DAC2_OUT)
    (add_net /I2C_SCL)
    (add_net /I2C_SDA)
    (add_net /NRST)
    (add_net /SPI_CS)
    (add_net /SPI_MISO)
    (add_net /SPI_MOSI)
    (add_net /SPI_SCK)
    (add_net /SWCLK)
    (add_net /SWDIO)
    (add_net /SWO)
    (add_net /UART_RX_OUT)
    (add_net /UART_TX_OUT)
    (add_net /USB_DM)
    (add_net /USB_DP)
    (add_net /VLCD)
    (add_net GND)
    (add_net "Net-(C10-Pad1)")
    (add_net "Net-(C9-Pad1)")
    (add_net "Net-(J10-Pad1)")
    (add_net "Net-(J11-Pad1)")
    (add_net "Net-(J2-Pad1)")
    (add_net "Net-(J3-Pad1)")
    (add_net "Net-(J4-Pad1)")
    (add_net "Net-(J5-Pad1)")
    (add_net "Net-(J7-Pad1)")
    (add_net "Net-(J8-Pad1)")
    (add_net "Net-(J9-Pad1)")
    (add_net "Net-(JP1-Pad2)")
    (add_net "Net-(JP2-Pad2)")
    (add_net "Net-(JP3-Pad2)")
    (add_net "Net-(P10-Pad6)")
  )

  (net_class power ""
    (clearance 0.2)
    (trace_width 0.4)
    (via_dia 0.6)
    (via_drill 0.4)
    (uvia_dia 0.3)
    (uvia_drill 0.1)
    (add_net +3V3)
    (add_net +5V)
  )

  (module Socket_Arduino_Uno:Socket_Strip_Arduino_1x08 locked (layer F.Cu) (tedit 5A456C75) (tstamp 551AF9EA)
    (at 138.938 123.825)
    (descr "Through hole socket strip")
    (tags "socket strip")
    (path /56D70129)
    (fp_text reference P1 (at 8.89 -2.54) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value Power (at 8.89 -4.064) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -1.75 -1.75) (end -1.75 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 19.55 -1.75) (end 19.55 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.75 -1.75) (end 19.55 -1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.75 1.75) (end 19.55 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.27 1.27) (end 19.05 1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start 19.05 1.27) (end 19.05 -1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start 19.05 -1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start -1.55 1.55) (end 0 1.55) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start 0 -1.55) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
    (fp_line (start -1.55 -1.55) (end -1.55 1.55) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole oval (at 0 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 2 thru_hole oval (at 2.54 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 3 thru_hole oval (at 5.08 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 4 thru_hole oval (at 7.62 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 27 "Net-(JP3-Pad2)"))
    (pad 5 thru_hole oval (at 10.16 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 6 thru_hole oval (at 12.7 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (pad 7 thru_hole oval (at 15.24 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (pad 8 thru_hole oval (at 17.78 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (model ${KIPRJMOD}/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wrl
      (at (xyz 0.35 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 180))
    )
  )

  (module Socket_Arduino_Uno:Socket_Strip_Arduino_1x06 locked (layer F.Cu) (tedit 5A456C7B) (tstamp 551AF9FF)
    (at 161.798 123.825)
    (descr "Through hole socket strip")
    (tags "socket strip")
    (path /56D70DD8)
    (fp_text reference P2 (at 6.604 -2.54) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value Analog (at 6.604 -4.064) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -1.75 -1.75) (end -1.75 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 14.45 -1.75) (end 14.45 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.75 -1.75) (end 14.45 -1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.75 1.75) (end 14.45 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.27 1.27) (end 13.97 1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start 13.97 1.27) (end 13.97 -1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start 13.97 -1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start -1.55 1.55) (end 0 1.55) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start 0 -1.55) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
    (fp_line (start -1.55 -1.55) (end -1.55 1.55) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole oval (at 0 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 18 /DAC1_OUT))
    (pad 2 thru_hole oval (at 2.54 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 19 /DAC2_OUT))
    (pad 3 thru_hole oval (at 5.08 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 5 /ADC_IN1))
    (pad 4 thru_hole oval (at 7.62 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 5 thru_hole oval (at 10.16 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 6 /I2C_SDA))
    (pad 6 thru_hole oval (at 12.7 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 7 /I2C_SCL))
    (model ${KIPRJMOD}/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wrl
      (at (xyz 0.25 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 180))
    )
  )

  (module Socket_Arduino_Uno:Socket_Strip_Arduino_1x10 locked (layer F.Cu) (tedit 5A456C6E) (tstamp 551AFA18)
    (at 129.794 75.565)
    (descr "Through hole socket strip")
    (tags "socket strip")
    (path /56D721E0)
    (fp_text reference P3 (at 11.43 2.794) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value Digital (at 11.43 4.318) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -1.75 -1.75) (end -1.75 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 24.65 -1.75) (end 24.65 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.75 -1.75) (end 24.65 -1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.75 1.75) (end 24.65 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.27 1.27) (end 24.13 1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start 24.13 1.27) (end 24.13 -1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start 24.13 -1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start -1.55 1.55) (end 0 1.55) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start 0 -1.55) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
    (fp_line (start -1.55 -1.55) (end -1.55 1.55) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole oval (at 0 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 2 thru_hole oval (at 2.54 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 3 thru_hole oval (at 5.08 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 8 /SPI_CS))
    (pad 4 thru_hole oval (at 7.62 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 9 /SPI_MOSI))
    (pad 5 thru_hole oval (at 10.16 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 10 /SPI_MISO))
    (pad 6 thru_hole oval (at 12.7 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 11 /SPI_SCK))
    (pad 7 thru_hole oval (at 15.24 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 2 GND))
    (pad 8 thru_hole oval (at 17.78 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 9 thru_hole oval (at 20.32 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 10 thru_hole oval (at 22.86 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (model ${KIPRJMOD}/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wrl
      (at (xyz 0.45 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 180))
    )
  )

  (module Socket_Arduino_Uno:Socket_Strip_Arduino_1x08 locked (layer F.Cu) (tedit 5A456C59) (tstamp 551AFA2F)
    (at 156.718 75.565)
    (descr "Through hole socket strip")
    (tags "socket strip")
    (path /56D7164F)
    (fp_text reference P4 (at 8.89 2.794) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value Digital (at 8.89 4.318) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -1.75 -1.75) (end -1.75 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 19.55 -1.75) (end 19.55 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.75 -1.75) (end 19.55 -1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.75 1.75) (end 19.55 1.75) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.27 1.27) (end 19.05 1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start 19.05 1.27) (end 19.05 -1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start 19.05 -1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start -1.55 1.55) (end 0 1.55) (layer F.SilkS) (width 0.15))
    (fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
    (fp_line (start 0 -1.55) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
    (fp_line (start -1.55 -1.55) (end -1.55 1.55) (layer F.SilkS) (width 0.15))
    (pad 1 thru_hole oval (at 0 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 20 /UART_TX_OUT))
    (pad 2 thru_hole oval (at 2.54 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
      (net 21 /UART_RX_OUT))
    (pad 3 thru_hole oval (at 5.08 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 4 thru_hole oval (at 7.62 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 5 thru_hole oval (at 10.16 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 6 thru_hole oval (at 12.7 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 7 thru_hole oval (at 15.24 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (pad 8 thru_hole oval (at 17.78 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS))
    (model ${KIPRJMOD}/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wrl
      (at (xyz 0.35 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 180))
    )
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer F.Cu) (tedit 58AA848B) (tstamp 59F7BF21)
    (at 152.3365 108.966 90)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /58CF4B65)
    (attr smd)
    (fp_text reference C1 (at 0 -1.25 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100n (at 0 1.5 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 -1.25 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 -0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0 90) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 2 smd rect (at 0.95 0 90) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 4 /NRST))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer F.Cu) (tedit 58AA848B) (tstamp 59F7BF27)
    (at 153.924 108.966 270)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /58CF43FF)
    (attr smd)
    (fp_text reference C2 (at 0 -1.25 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100n (at 0 1.5 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 -1.25 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 -0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0 270) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 3 +3V3))
    (pad 2 smd rect (at 0.95 0 270) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer F.Cu) (tedit 58AA848B) (tstamp 59F7BF2D)
    (at 143.51 103.759 180)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /58CF69A9)
    (attr smd)
    (fp_text reference C3 (at 0 -1.25 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100n (at 0 1.5 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 -1.25 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 -0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0 180) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 3 +3V3))
    (pad 2 smd rect (at 0.95 0 180) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer F.Cu) (tedit 58AA848B) (tstamp 59F7BF33)
    (at 146.304 95.25 180)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /58CF69F1)
    (attr smd)
    (fp_text reference C4 (at 0 -1.25 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100n (at 0 1.5 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 -1.25 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 -0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0 180) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 3 +3V3))
    (pad 2 smd rect (at 0.95 0 180) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer F.Cu) (tedit 58AA848B) (tstamp 59F7BF39)
    (at 158.115 96.647 90)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /58CF6A3A)
    (attr smd)
    (fp_text reference C5 (at 0 -1.25 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100n (at 0 1.5 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 -1.25 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 -0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0 90) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 3 +3V3))
    (pad 2 smd rect (at 0.95 0 90) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Connectors:USB_Micro-B (layer F.Cu) (tedit 5543E447) (tstamp 59F7BF54)
    (at 125.9205 90.932 270)
    (descr "Micro USB Type B Receptacle")
    (tags "USB USB_B USB_micro USB_OTG")
    (path /58CF10AD)
    (attr smd)
    (fp_text reference P10 (at 0 -3.24 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value CONTROL (at 0 5.01 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -4.6 -2.59) (end 4.6 -2.59) (layer F.CrtYd) (width 0.05))
    (fp_line (start 4.6 -2.59) (end 4.6 4.26) (layer F.CrtYd) (width 0.05))
    (fp_line (start 4.6 4.26) (end -4.6 4.26) (layer F.CrtYd) (width 0.05))
    (fp_line (start -4.6 4.26) (end -4.6 -2.59) (layer F.CrtYd) (width 0.05))
    (fp_line (start -4.35 4.03) (end 4.35 4.03) (layer F.SilkS) (width 0.12))
    (fp_line (start -4.35 -2.38) (end 4.35 -2.38) (layer F.SilkS) (width 0.12))
    (fp_line (start 4.35 -2.38) (end 4.35 4.03) (layer F.SilkS) (width 0.12))
    (fp_line (start 4.35 2.8) (end -4.35 2.8) (layer F.SilkS) (width 0.12))
    (fp_line (start -4.35 4.03) (end -4.35 -2.38) (layer F.SilkS) (width 0.12))
    (pad 1 smd rect (at -1.3 -1.35) (size 1.35 0.4) (layers F.Cu F.Paste F.Mask)
      (net 1 +5V))
    (pad 2 smd rect (at -0.65 -1.35) (size 1.35 0.4) (layers F.Cu F.Paste F.Mask)
      (net 12 /USB_DM))
    (pad 3 smd rect (at 0 -1.35) (size 1.35 0.4) (layers F.Cu F.Paste F.Mask)
      (net 13 /USB_DP))
    (pad 4 smd rect (at 0.65 -1.35) (size 1.35 0.4) (layers F.Cu F.Paste F.Mask))
    (pad 5 smd rect (at 1.3 -1.35) (size 1.35 0.4) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 6 thru_hole oval (at -2.5 -1.35) (size 0.95 1.25) (drill oval 0.55 0.85) (layers *.Cu *.Mask)
      (net 14 "Net-(P10-Pad6)"))
    (pad 6 thru_hole oval (at 2.5 -1.35) (size 0.95 1.25) (drill oval 0.55 0.85) (layers *.Cu *.Mask)
      (net 14 "Net-(P10-Pad6)"))
    (pad 6 thru_hole oval (at -3.5 1.35) (size 1.55 1) (drill oval 1.15 0.5) (layers *.Cu *.Mask)
      (net 14 "Net-(P10-Pad6)"))
    (pad 6 thru_hole oval (at 3.5 1.35) (size 1.55 1) (drill oval 1.15 0.5) (layers *.Cu *.Mask)
      (net 14 "Net-(P10-Pad6)"))
  )

  (module Housings_QFP:TQFP-48_7x7mm_Pitch0.5mm (layer F.Cu) (tedit 54130A77) (tstamp 59F7C113)
    (at 151.785 100.997 90)
    (descr "48 LEAD TQFP 7x7mm (see MICREL TQFP7x7-48LD-PL-1.pdf)")
    (tags "QFP 0.5")
    (path /58CEFE92)
    (attr smd)
    (fp_text reference U1 (at 0 -6 90) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value STM32L151C6TxA (at 0 6 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 0 90) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -2.5 -3.5) (end 3.5 -3.5) (layer F.Fab) (width 0.15))
    (fp_line (start 3.5 -3.5) (end 3.5 3.5) (layer F.Fab) (width 0.15))
    (fp_line (start 3.5 3.5) (end -3.5 3.5) (layer F.Fab) (width 0.15))
    (fp_line (start -3.5 3.5) (end -3.5 -2.5) (layer F.Fab) (width 0.15))
    (fp_line (start -3.5 -2.5) (end -2.5 -3.5) (layer F.Fab) (width 0.15))
    (fp_line (start -5.25 -5.25) (end -5.25 5.25) (layer F.CrtYd) (width 0.05))
    (fp_line (start 5.25 -5.25) (end 5.25 5.25) (layer F.CrtYd) (width 0.05))
    (fp_line (start -5.25 -5.25) (end 5.25 -5.25) (layer F.CrtYd) (width 0.05))
    (fp_line (start -5.25 5.25) (end 5.25 5.25) (layer F.CrtYd) (width 0.05))
    (fp_line (start -3.625 -3.625) (end -3.625 -3.2) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.625 -3.625) (end 3.625 -3.1) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.625 3.625) (end 3.625 3.1) (layer F.SilkS) (width 0.15))
    (fp_line (start -3.625 3.625) (end -3.625 3.1) (layer F.SilkS) (width 0.15))
    (fp_line (start -3.625 -3.625) (end -3.1 -3.625) (layer F.SilkS) (width 0.15))
    (fp_line (start -3.625 3.625) (end -3.1 3.625) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.625 3.625) (end 3.1 3.625) (layer F.SilkS) (width 0.15))
    (fp_line (start 3.625 -3.625) (end 3.1 -3.625) (layer F.SilkS) (width 0.15))
    (fp_line (start -3.625 -3.2) (end -5 -3.2) (layer F.SilkS) (width 0.15))
    (pad 1 smd rect (at -4.35 -2.75 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 24 /VLCD))
    (pad 2 smd rect (at -4.35 -2.25 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask))
    (pad 3 smd rect (at -4.35 -1.75 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask))
    (pad 4 smd rect (at -4.35 -1.25 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask))
    (pad 5 smd rect (at -4.35 -0.75 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 25 "Net-(C9-Pad1)"))
    (pad 6 smd rect (at -4.35 -0.25 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 26 "Net-(C10-Pad1)"))
    (pad 7 smd rect (at -4.35 0.25 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 4 /NRST))
    (pad 8 smd rect (at -4.35 0.75 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 9 smd rect (at -4.35 1.25 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 3 +3V3))
    (pad 10 smd rect (at -4.35 1.75 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 35 "Net-(J10-Pad1)"))
    (pad 11 smd rect (at -4.35 2.25 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 36 "Net-(J11-Pad1)"))
    (pad 12 smd rect (at -4.35 2.75 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 20 /UART_TX_OUT))
    (pad 13 smd rect (at -2.75 4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 21 /UART_RX_OUT))
    (pad 14 smd rect (at -2.25 4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 18 /DAC1_OUT))
    (pad 15 smd rect (at -1.75 4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 19 /DAC2_OUT))
    (pad 16 smd rect (at -1.25 4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 5 /ADC_IN1))
    (pad 17 smd rect (at -0.75 4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask))
    (pad 18 smd rect (at -0.25 4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 28 "Net-(J2-Pad1)"))
    (pad 19 smd rect (at 0.25 4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 34 "Net-(J3-Pad1)"))
    (pad 20 smd rect (at 0.75 4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask))
    (pad 21 smd rect (at 1.25 4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 29 "Net-(J4-Pad1)"))
    (pad 22 smd rect (at 1.75 4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 30 "Net-(J5-Pad1)"))
    (pad 23 smd rect (at 2.25 4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 24 smd rect (at 2.75 4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 3 +3V3))
    (pad 25 smd rect (at 4.35 2.75 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 8 /SPI_CS))
    (pad 26 smd rect (at 4.35 2.25 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 11 /SPI_SCK))
    (pad 27 smd rect (at 4.35 1.75 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 10 /SPI_MISO))
    (pad 28 smd rect (at 4.35 1.25 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 9 /SPI_MOSI))
    (pad 29 smd rect (at 4.35 0.75 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 31 "Net-(J7-Pad1)"))
    (pad 30 smd rect (at 4.35 0.25 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 32 "Net-(J8-Pad1)"))
    (pad 31 smd rect (at 4.35 -0.25 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 33 "Net-(J9-Pad1)"))
    (pad 32 smd rect (at 4.35 -0.75 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 12 /USB_DM))
    (pad 33 smd rect (at 4.35 -1.25 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 13 /USB_DP))
    (pad 34 smd rect (at 4.35 -1.75 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 16 /SWDIO))
    (pad 35 smd rect (at 4.35 -2.25 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 36 smd rect (at 4.35 -2.75 90) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 3 +3V3))
    (pad 37 smd rect (at 2.75 -4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 15 /SWCLK))
    (pad 38 smd rect (at 2.25 -4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask))
    (pad 39 smd rect (at 1.75 -4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 17 /SWO))
    (pad 40 smd rect (at 1.25 -4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask))
    (pad 41 smd rect (at 0.75 -4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask))
    (pad 42 smd rect (at 0.25 -4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask))
    (pad 43 smd rect (at -0.25 -4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask))
    (pad 44 smd rect (at -0.75 -4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 45 smd rect (at -1.25 -4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 7 /I2C_SCL))
    (pad 46 smd rect (at -1.75 -4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 6 /I2C_SDA))
    (pad 47 smd rect (at -2.25 -4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 48 smd rect (at -2.75 -4.35 180) (size 1.3 0.25) (layers F.Cu F.Paste F.Mask)
      (net 3 +3V3))
    (model Housings_QFP.3dshapes/TQFP-48_7x7mm_Pitch0.5mm.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Socket_Strips:Socket_Strip_Angled_2x05_Pitch2.54mm (layer F.Cu) (tedit 588DE958) (tstamp 5A0F5F85)
    (at 173.228 104.013 180)
    (descr "Through hole angled socket strip, 2x05, 2.54mm pitch, 8.51mm socket length, double rows")
    (tags "Through hole angled socket strip THT 2x05 2.54mm double row")
    (path /58CF048F)
    (fp_text reference P9 (at -5.65 -2.27 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value FX2LA (at -5.65 12.43 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -4.06 -1.27) (end -4.06 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 1.27) (end -12.57 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -12.57 1.27) (end -12.57 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -12.57 -1.27) (end -4.06 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 0 -0.32) (end 0 0.32) (layer F.Fab) (width 0.1))
    (fp_line (start 0 0.32) (end -4.06 0.32) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 0.32) (end -4.06 -0.32) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 -0.32) (end 0 -0.32) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 1.27) (end -4.06 3.81) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 3.81) (end -12.57 3.81) (layer F.Fab) (width 0.1))
    (fp_line (start -12.57 3.81) (end -12.57 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -12.57 1.27) (end -4.06 1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 0 2.22) (end 0 2.86) (layer F.Fab) (width 0.1))
    (fp_line (start 0 2.86) (end -4.06 2.86) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 2.86) (end -4.06 2.22) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 2.22) (end 0 2.22) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 3.81) (end -4.06 6.35) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 6.35) (end -12.57 6.35) (layer F.Fab) (width 0.1))
    (fp_line (start -12.57 6.35) (end -12.57 3.81) (layer F.Fab) (width 0.1))
    (fp_line (start -12.57 3.81) (end -4.06 3.81) (layer F.Fab) (width 0.1))
    (fp_line (start 0 4.76) (end 0 5.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0 5.4) (end -4.06 5.4) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 5.4) (end -4.06 4.76) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 4.76) (end 0 4.76) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 6.35) (end -4.06 8.89) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 8.89) (end -12.57 8.89) (layer F.Fab) (width 0.1))
    (fp_line (start -12.57 8.89) (end -12.57 6.35) (layer F.Fab) (width 0.1))
    (fp_line (start -12.57 6.35) (end -4.06 6.35) (layer F.Fab) (width 0.1))
    (fp_line (start 0 7.3) (end 0 7.94) (layer F.Fab) (width 0.1))
    (fp_line (start 0 7.94) (end -4.06 7.94) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 7.94) (end -4.06 7.3) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 7.3) (end 0 7.3) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 8.89) (end -4.06 11.43) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 11.43) (end -12.57 11.43) (layer F.Fab) (width 0.1))
    (fp_line (start -12.57 11.43) (end -12.57 8.89) (layer F.Fab) (width 0.1))
    (fp_line (start -12.57 8.89) (end -4.06 8.89) (layer F.Fab) (width 0.1))
    (fp_line (start 0 9.84) (end 0 10.48) (layer F.Fab) (width 0.1))
    (fp_line (start 0 10.48) (end -4.06 10.48) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 10.48) (end -4.06 9.84) (layer F.Fab) (width 0.1))
    (fp_line (start -4.06 9.84) (end 0 9.84) (layer F.Fab) (width 0.1))
    (fp_line (start -4 -1.33) (end -4 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 1.27) (end -12.63 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start -12.63 1.27) (end -12.63 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -12.63 -1.33) (end -4 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -3.57 -0.38) (end -4 -0.38) (layer F.SilkS) (width 0.12))
    (fp_line (start -3.57 0.38) (end -4 0.38) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.03 -0.38) (end -1.51 -0.38) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.03 0.38) (end -1.51 0.38) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 -1.15) (end -12.63 -1.15) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 -1.03) (end -12.63 -1.03) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 -0.91) (end -12.63 -0.91) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 -0.79) (end -12.63 -0.79) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 -0.67) (end -12.63 -0.67) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 -0.55) (end -12.63 -0.55) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 -0.43) (end -12.63 -0.43) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 -0.31) (end -12.63 -0.31) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 -0.19) (end -12.63 -0.19) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 -0.07) (end -12.63 -0.07) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 0.05) (end -12.63 0.05) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 0.17) (end -12.63 0.17) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 0.29) (end -12.63 0.29) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 0.41) (end -12.63 0.41) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 0.53) (end -12.63 0.53) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 0.65) (end -12.63 0.65) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 0.77) (end -12.63 0.77) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 0.89) (end -12.63 0.89) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 1.01) (end -12.63 1.01) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 1.13) (end -12.63 1.13) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 1.25) (end -12.63 1.25) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 1.37) (end -12.63 1.37) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 1.27) (end -4 3.81) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 3.81) (end -12.63 3.81) (layer F.SilkS) (width 0.12))
    (fp_line (start -12.63 3.81) (end -12.63 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start -12.63 1.27) (end -4 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start -3.57 2.16) (end -4 2.16) (layer F.SilkS) (width 0.12))
    (fp_line (start -3.57 2.92) (end -4 2.92) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.03 2.16) (end -1.51 2.16) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.03 2.92) (end -1.51 2.92) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 3.81) (end -4 6.35) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 6.35) (end -12.63 6.35) (layer F.SilkS) (width 0.12))
    (fp_line (start -12.63 6.35) (end -12.63 3.81) (layer F.SilkS) (width 0.12))
    (fp_line (start -12.63 3.81) (end -4 3.81) (layer F.SilkS) (width 0.12))
    (fp_line (start -3.57 4.7) (end -4 4.7) (layer F.SilkS) (width 0.12))
    (fp_line (start -3.57 5.46) (end -4 5.46) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.03 4.7) (end -1.51 4.7) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.03 5.46) (end -1.51 5.46) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 6.35) (end -4 8.89) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 8.89) (end -12.63 8.89) (layer F.SilkS) (width 0.12))
    (fp_line (start -12.63 8.89) (end -12.63 6.35) (layer F.SilkS) (width 0.12))
    (fp_line (start -12.63 6.35) (end -4 6.35) (layer F.SilkS) (width 0.12))
    (fp_line (start -3.57 7.24) (end -4 7.24) (layer F.SilkS) (width 0.12))
    (fp_line (start -3.57 8) (end -4 8) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.03 7.24) (end -1.51 7.24) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.03 8) (end -1.51 8) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 8.89) (end -4 11.49) (layer F.SilkS) (width 0.12))
    (fp_line (start -4 11.49) (end -12.63 11.49) (layer F.SilkS) (width 0.12))
    (fp_line (start -12.63 11.49) (end -12.63 8.89) (layer F.SilkS) (width 0.12))
    (fp_line (start -12.63 8.89) (end -4 8.89) (layer F.SilkS) (width 0.12))
    (fp_line (start -3.57 9.78) (end -4 9.78) (layer F.SilkS) (width 0.12))
    (fp_line (start -3.57 10.54) (end -4 10.54) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.03 9.78) (end -1.51 9.78) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.03 10.54) (end -1.51 10.54) (layer F.SilkS) (width 0.12))
    (fp_line (start 0 -1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.27 -1.27) (end 1.27 0) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.55 -1.55) (end 1.55 11.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.55 11.7) (end -12.85 11.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -12.85 11.7) (end -12.85 -1.55) (layer F.CrtYd) (width 0.05))
    (fp_line (start -12.85 -1.55) (end 1.55 -1.55) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 6 /I2C_SDA))
    (pad 2 thru_hole oval (at -2.54 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 7 /I2C_SCL))
    (pad 3 thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 20 /UART_TX_OUT))
    (pad 4 thru_hole oval (at -2.54 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 21 /UART_RX_OUT))
    (pad 5 thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 9 /SPI_MOSI))
    (pad 6 thru_hole oval (at -2.54 5.08 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 10 /SPI_MISO))
    (pad 7 thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 11 /SPI_SCK))
    (pad 8 thru_hole oval (at -2.54 7.62 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 8 /SPI_CS))
    (pad 9 thru_hole oval (at 0 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask))
    (pad 10 thru_hole oval (at -2.54 10.16 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 2 GND))
    (model Socket_Strips.3dshapes/Socket_Strip_Angled_2x05_Pitch2.54mm.wrl
      (at (xyz -0.05 -0.2 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 270))
    )
  )

  (module TO_SOT_Packages_SMD:SOT-23-5_HandSoldering (layer F.Cu) (tedit 583F3A3F) (tstamp 5A0F5F92)
    (at 136.3345 86.0425)
    (descr "5-pin SOT23 package")
    (tags "SOT-23-5 hand-soldering")
    (path /59F7B611)
    (attr smd)
    (fp_text reference U2 (at 0 -2.9) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value MIC550x-3.3YM5 (at 0 2.9) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.9 1.61) (end 0.9 1.61) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.9 -0.9) (end -0.25 -1.55) (layer F.Fab) (width 0.1))
    (fp_line (start 0.9 -1.55) (end -0.25 -1.55) (layer F.Fab) (width 0.1))
    (fp_line (start -0.9 -0.9) (end -0.9 1.55) (layer F.Fab) (width 0.1))
    (fp_line (start 0.9 1.55) (end -0.9 1.55) (layer F.Fab) (width 0.1))
    (fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer F.Fab) (width 0.1))
    (fp_line (start -2.38 -1.8) (end 2.38 -1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.38 -1.8) (end -2.38 1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start 2.38 1.8) (end 2.38 -1.8) (layer F.CrtYd) (width 0.05))
    (fp_line (start 2.38 1.8) (end -2.38 1.8) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -1.35 -0.95) (size 1.56 0.65) (layers F.Cu F.Paste F.Mask)
      (net 1 +5V))
    (pad 2 smd rect (at -1.35 0) (size 1.56 0.65) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 3 smd rect (at -1.35 0.95) (size 1.56 0.65) (layers F.Cu F.Paste F.Mask)
      (net 1 +5V))
    (pad 4 smd rect (at 1.35 0.95) (size 1.56 0.65) (layers F.Cu F.Paste F.Mask))
    (pad 5 smd rect (at 1.35 -0.95) (size 1.56 0.65) (layers F.Cu F.Paste F.Mask)
      (net 3 +3V3))
    (model TO_SOT_Packages_SMD.3dshapes\SOT-23-5.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603_HandSoldering (layer F.Cu) (tedit 58AAD9E8) (tstamp 5A0F62A3)
    (at 167.894 114.681)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5A0F8D14)
    (attr smd)
    (fp_text reference R1 (at 0 -1.45) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 4k7 (at 0 1.55) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 -1.45) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.5 0.68) (end -0.5 0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.5 -0.68) (end 0.5 -0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.96 -0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.96 -0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.95 0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.95 0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -1.1 0) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 3 +3V3))
    (pad 2 smd rect (at 1.1 0) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 22 "Net-(JP1-Pad2)"))
    (model Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Resistors_SMD:R_0603_HandSoldering (layer F.Cu) (tedit 58AAD9E8) (tstamp 5A0F62A9)
    (at 172.466 114.681)
    (descr "Resistor SMD 0603, hand soldering")
    (tags "resistor 0603")
    (path /5A0F8EF5)
    (attr smd)
    (fp_text reference R2 (at 0 -1.45) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 4k7 (at 0 1.55) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 -1.45) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.5 0.68) (end -0.5 0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start -0.5 -0.68) (end 0.5 -0.68) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.96 -0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.96 -0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.95 0.7) (end 1.95 -0.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.95 0.7) (end -1.96 0.7) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -1.1 0) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 3 +3V3))
    (pad 2 smd rect (at 1.1 0) (size 1.2 0.9) (layers F.Cu F.Paste F.Mask)
      (net 23 "Net-(JP2-Pad2)"))
    (model Resistors_SMD.3dshapes/R_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer F.Cu) (tedit 58AA848B) (tstamp 5A0F67DC)
    (at 146.4335 107.2515)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /5A0FB867)
    (attr smd)
    (fp_text reference C6 (at 0 -1.25) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 100n (at 0 1.5) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 -1.25) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 -0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (pad 2 smd rect (at 0.95 0) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 24 /VLCD))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer F.Cu) (tedit 58AA848B) (tstamp 5A0F6D33)
    (at 132.715 86.106 270)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /5A0FC76D)
    (attr smd)
    (fp_text reference C7 (at 0 -1.25 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 1u (at 0 1.5 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 -1.25 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 -0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0 270) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 1 +5V))
    (pad 2 smd rect (at 0.95 0 270) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer F.Cu) (tedit 58AA848B) (tstamp 5A0F6D39)
    (at 140.2715 86.2965 270)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /5A0FC660)
    (attr smd)
    (fp_text reference C8 (at 0 -1.25 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 1u (at 0 1.5 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 -1.25 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 -0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0 270) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 3 +3V3))
    (pad 2 smd rect (at 0.95 0 270) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer F.Cu) (tedit 58AA848B) (tstamp 5A1B1F86)
    (at 146.685 112.141 270)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /5A137455)
    (attr smd)
    (fp_text reference C9 (at 0 -1.25 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 18pf (at 0 1.5 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 -1.25 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 -0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0 270) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 25 "Net-(C9-Pad1)"))
    (pad 2 smd rect (at 0.95 0 270) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Capacitors_SMD:C_0603_HandSoldering (layer F.Cu) (tedit 58AA848B) (tstamp 5A1B1F8C)
    (at 149.479 115.316 180)
    (descr "Capacitor SMD 0603, hand soldering")
    (tags "capacitor 0603")
    (path /5A1373B8)
    (attr smd)
    (fp_text reference C10 (at 0 -1.25 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value 18pf (at 0 1.5 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text user %R (at 0 -1.25 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -0.8 0.4) (end -0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 0.4) (end -0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start 0.8 -0.4) (end 0.8 0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.8 -0.4) (end 0.8 -0.4) (layer F.Fab) (width 0.1))
    (fp_line (start -0.35 -0.6) (end 0.35 -0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start 0.35 0.6) (end -0.35 0.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.8 -0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.8 -0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end 1.8 -0.65) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.8 0.65) (end -1.8 0.65) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -0.95 0 180) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 26 "Net-(C10-Pad1)"))
    (pad 2 smd rect (at 0.95 0 180) (size 1.2 0.75) (layers F.Cu F.Paste F.Mask)
      (net 2 GND))
    (model Capacitors_SMD.3dshapes/C_0603.wrl
      (at (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (module Crystals:Crystal_SMD_SeikoEpson_FA238-4pin_3.2x2.5mm (layer F.Cu) (tedit 5873B462) (tstamp 5A1B1F94)
    (at 149.479 112.268 270)
    (descr "crystal Epson Toyocom FA-238 series http://www.mouser.com/ds/2/137/1721499-465440.pdf, 3.2x2.5mm^2 package")
    (tags "SMD SMT crystal")
    (path /5A137095)
    (attr smd)
    (fp_text reference Y1 (at 0 -2.45 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value Crystal_GND24_Small (at 0 2.45 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -1.5 -1.25) (end 1.5 -1.25) (layer F.Fab) (width 0.1))
    (fp_line (start 1.5 -1.25) (end 1.6 -1.15) (layer F.Fab) (width 0.1))
    (fp_line (start 1.6 -1.15) (end 1.6 1.15) (layer F.Fab) (width 0.1))
    (fp_line (start 1.6 1.15) (end 1.5 1.25) (layer F.Fab) (width 0.1))
    (fp_line (start 1.5 1.25) (end -1.5 1.25) (layer F.Fab) (width 0.1))
    (fp_line (start -1.5 1.25) (end -1.6 1.15) (layer F.Fab) (width 0.1))
    (fp_line (start -1.6 1.15) (end -1.6 -1.15) (layer F.Fab) (width 0.1))
    (fp_line (start -1.6 -1.15) (end -1.5 -1.25) (layer F.Fab) (width 0.1))
    (fp_line (start -1.6 0.25) (end -0.6 1.25) (layer F.Fab) (width 0.1))
    (fp_line (start -2 -1.6) (end -2 1.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -2 1.6) (end 2 1.6) (layer F.SilkS) (width 0.12))
    (fp_line (start -2.1 -1.7) (end -2.1 1.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start -2.1 1.7) (end 2.1 1.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 2.1 1.7) (end 2.1 -1.7) (layer F.CrtYd) (width 0.05))
    (fp_line (start 2.1 -1.7) (end -2.1 -1.7) (layer F.CrtYd) (width 0.05))
    (pad 1 smd rect (at -1.1 0.8 270) (size 1.4 1.2) (layers F.Cu F.Mask)
      (net 25 "Net-(C9-Pad1)"))
    (pad 2 smd rect (at 1.1 0.8 270) (size 1.4 1.2) (layers F.Cu F.Mask))
    (pad 3 smd rect (at 1.1 -0.8 270) (size 1.4 1.2) (layers F.Cu F.Mask)
      (net 26 "Net-(C10-Pad1)"))
    (pad 4 smd rect (at -1.1 -0.8 270) (size 1.4 1.2) (layers F.Cu F.Mask))
    (model Crystals.3dshapes/Crystal_SMD_SeikoEpson_FA238-4pin_3.2x2.5mm.wrl
      (at (xyz 0 0 0))
      (scale (xyz 0.24 0.24 0.24))
      (rotate (xyz 0 0 0))
    )
  )

  (module Measurement_Points:Measurement_Point_Round-TH_Small (layer F.Cu) (tedit 5A457D60) (tstamp 5A43A0A2)
    (at 163.0045 98.044)
    (descr "Mesurement Point, Square, Trough Hole,  DM 1.5mm, Drill 0.8mm,")
    (tags "Mesurement Point Round Trough Hole 1.5mm Drill 0.8mm")
    (path /5A43D04F)
    (attr virtual)
    (fp_text reference J2 (at 1.905 -0.0635) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value TEST_1P (at 0 2) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 0 0) (end 1 0) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole circle (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
      (net 28 "Net-(J2-Pad1)"))
  )

  (module Measurement_Points:Measurement_Point_Round-TH_Small (layer F.Cu) (tedit 5A457D62) (tstamp 5A43A0A7)
    (at 163.0045 91.694)
    (descr "Mesurement Point, Square, Trough Hole,  DM 1.5mm, Drill 0.8mm,")
    (tags "Mesurement Point Round Trough Hole 1.5mm Drill 0.8mm")
    (path /5A43D40B)
    (attr virtual)
    (fp_text reference J4 (at 1.905 0) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value TEST_1P (at 0 2) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 0 0) (end 1 0) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole circle (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
      (net 29 "Net-(J4-Pad1)"))
  )

  (module Measurement_Points:Measurement_Point_Round-TH_Small (layer F.Cu) (tedit 5A457D71) (tstamp 5A43A0B6)
    (at 145.796 83.6295)
    (descr "Mesurement Point, Square, Trough Hole,  DM 1.5mm, Drill 0.8mm,")
    (tags "Mesurement Point Round Trough Hole 1.5mm Drill 0.8mm")
    (path /5A43EE7B)
    (attr virtual)
    (fp_text reference J7 (at 2.032 -0.0635) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value TEST_1P (at 0 2) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 0 0) (end 1 0) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole circle (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
      (net 31 "Net-(J7-Pad1)"))
  )

  (module Measurement_Points:Measurement_Point_Round-TH_Small (layer F.Cu) (tedit 5A457D65) (tstamp 5A43A3E3)
    (at 163.0045 88.392)
    (descr "Mesurement Point, Square, Trough Hole,  DM 1.5mm, Drill 0.8mm,")
    (tags "Mesurement Point Round Trough Hole 1.5mm Drill 0.8mm")
    (path /5A43D49D)
    (attr virtual)
    (fp_text reference J5 (at 2.2225 0.0635) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value TEST_1P (at 0 2) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 0 0) (end 1 0) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole circle (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
      (net 30 "Net-(J5-Pad1)"))
  )

  (module Measurement_Points:Measurement_Point_Round-TH_Small (layer F.Cu) (tedit 5A457D6D) (tstamp 5A43A3E8)
    (at 145.796 86.1695)
    (descr "Mesurement Point, Square, Trough Hole,  DM 1.5mm, Drill 0.8mm,")
    (tags "Mesurement Point Round Trough Hole 1.5mm Drill 0.8mm")
    (path /5A43F060)
    (attr virtual)
    (fp_text reference J8 (at 1.778 -0.127) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value TEST_1P (at 0 2) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 0 0) (end 1 0) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole circle (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
      (net 32 "Net-(J8-Pad1)"))
  )

  (module Measurement_Points:Measurement_Point_Round-TH_Small (layer F.Cu) (tedit 5A457D69) (tstamp 5A43A3ED)
    (at 145.796 88.7095)
    (descr "Mesurement Point, Square, Trough Hole,  DM 1.5mm, Drill 0.8mm,")
    (tags "Mesurement Point Round Trough Hole 1.5mm Drill 0.8mm")
    (path /5A43F0E2)
    (attr virtual)
    (fp_text reference J9 (at 1.9685 0.127) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value TEST_1P (at 0 2) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 0 0) (end 1 0) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole circle (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
      (net 33 "Net-(J9-Pad1)"))
  )

  (module Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm (layer F.Cu) (tedit 5862ED52) (tstamp 5A43BFD3)
    (at 135.4455 91.821 180)
    (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x02 2.54mm single row")
    (path /5A36EBE0)
    (fp_text reference J1 (at 0 -2.39 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value CONN_01X02 (at 0 4.93 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.Fab) (width 0.1))
    (fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -1.39 1.27) (end -1.39 3.93) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.39 3.93) (end 1.39 3.93) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.39 3.93) (end 1.39 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.39 1.27) (end -1.39 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.39 0) (end -1.39 -1.39) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.39 -1.39) (end 0 -1.39) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.6 -1.6) (end -1.6 4.1) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.6 4.1) (end 1.6 4.1) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.6 4.1) (end 1.6 -1.6) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.6 -1.6) (end -1.6 -1.6) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 13 /USB_DP))
    (pad 2 thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 12 /USB_DM))
    (model Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl
      (at (xyz 0 -0.05 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 90))
    )
  )

  (module Measurement_Points:Measurement_Point_Round-TH_Small (layer F.Cu) (tedit 5A457D5B) (tstamp 5A43BFD8)
    (at 163.0045 95.885 180)
    (descr "Mesurement Point, Square, Trough Hole,  DM 1.5mm, Drill 0.8mm,")
    (tags "Mesurement Point Round Trough Hole 1.5mm Drill 0.8mm")
    (path /5A43D328)
    (attr virtual)
    (fp_text reference J3 (at -2.032 0 180) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value TEST_1P (at 0 2 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 0 0) (end 1 0) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole circle (at 0 0 180) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask)
      (net 34 "Net-(J3-Pad1)"))
  )

  (module Measurement_Points:Measurement_Point_Round-TH_Small (layer F.Cu) (tedit 5A457B4A) (tstamp 5A43BFE0)
    (at 158.9405 110.49)
    (descr "Mesurement Point, Square, Trough Hole,  DM 1.5mm, Drill 0.8mm,")
    (tags "Mesurement Point Round Trough Hole 1.5mm Drill 0.8mm")
    (path /5A43FB1F)
    (attr virtual)
    (fp_text reference J10 (at 2.6035 0.0635) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value TEST_1P (at 0 2) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 0 0) (end 1 0) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole circle (at 0 0) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
      (net 35 "Net-(J10-Pad1)"))
  )

  (module Measurement_Points:Measurement_Point_Round-TH_Small (layer F.Cu) (tedit 5A457B3A) (tstamp 5A43BFE5)
    (at 158.6865 108.2675)
    (descr "Mesurement Point, Square, Trough Hole,  DM 1.5mm, Drill 0.8mm,")
    (tags "Mesurement Point Round Trough Hole 1.5mm Drill 0.8mm")
    (path /5A43FBC5)
    (attr virtual)
    (fp_text reference J11 (at 2.54 0) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value TEST_1P (at 0 2) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_circle (center 0 0) (end 1 0) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole circle (at 0 0) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
      (net 36 "Net-(J11-Pad1)"))
  )

  (module Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm (layer F.Cu) (tedit 5A456CA2) (tstamp 5A43C79D)
    (at 169.037 120.015 180)
    (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x02 2.54mm single row")
    (path /5A0F91B9)
    (fp_text reference JP1 (at 0 -2.39 180) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value Jumper_NC_Small (at 0 4.93 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.Fab) (width 0.1))
    (fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -1.39 1.27) (end -1.39 3.93) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.39 3.93) (end 1.39 3.93) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.39 3.93) (end 1.39 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.39 1.27) (end -1.39 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.39 0) (end -1.39 -1.39) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.39 -1.39) (end 0 -1.39) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.6 -1.6) (end -1.6 4.1) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.6 4.1) (end 1.6 4.1) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.6 4.1) (end 1.6 -1.6) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.6 -1.6) (end -1.6 -1.6) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 6 /I2C_SDA))
    (pad 2 thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 22 "Net-(JP1-Pad2)"))
    (model Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl
      (at (xyz 0 -0.05 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 90))
    )
  )

  (module Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm (layer F.Cu) (tedit 5A456CAA) (tstamp 5A43C7A2)
    (at 172.339 120.015 180)
    (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x02 2.54mm single row")
    (path /5A0F9269)
    (fp_text reference JP2 (at 0 -2.39 180) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value Jumper_NC_Small (at 0 4.93 180) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.Fab) (width 0.1))
    (fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -1.39 1.27) (end -1.39 3.93) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.39 3.93) (end 1.39 3.93) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.39 3.93) (end 1.39 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.39 1.27) (end -1.39 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.39 0) (end -1.39 -1.39) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.39 -1.39) (end 0 -1.39) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.6 -1.6) (end -1.6 4.1) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.6 4.1) (end 1.6 4.1) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.6 4.1) (end 1.6 -1.6) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.6 -1.6) (end -1.6 -1.6) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 7 /I2C_SCL))
    (pad 2 thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 23 "Net-(JP2-Pad2)"))
    (model Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl
      (at (xyz 0 -0.05 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 90))
    )
  )

  (module Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm (layer F.Cu) (tedit 5A456CDB) (tstamp 5A43C7A7)
    (at 148.082 118.999 270)
    (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
    (tags "Through hole pin header THT 1x02 2.54mm single row")
    (path /5A36E60E)
    (fp_text reference JP3 (at 0 -2.39 270) (layer F.SilkS) hide
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value Jumper_NC_Small (at 0 4.93 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -1.27 -1.27) (end -1.27 3.81) (layer F.Fab) (width 0.1))
    (fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 3.81) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -1.39 1.27) (end -1.39 3.93) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.39 3.93) (end 1.39 3.93) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.39 3.93) (end 1.39 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.39 1.27) (end -1.39 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.39 0) (end -1.39 -1.39) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.39 -1.39) (end 0 -1.39) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.6 -1.6) (end -1.6 4.1) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.6 4.1) (end 1.6 4.1) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.6 4.1) (end 1.6 -1.6) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.6 -1.6) (end -1.6 -1.6) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 3 +3V3))
    (pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 27 "Net-(JP3-Pad2)"))
    (model Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl
      (at (xyz 0 -0.05 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 90))
    )
  )

  (module Socket_Strips:Socket_Strip_Straight_1x06_Pitch2.54mm (layer F.Cu) (tedit 588DE956) (tstamp 5A43C7AC)
    (at 137.541 101.219 270)
    (descr "Through hole straight socket strip, 1x06, 2.54mm pitch, single row")
    (tags "Through hole socket strip THT 1x06 2.54mm single row")
    (path /59F7E088)
    (fp_text reference P11 (at 0 -2.33 270) (layer F.SilkS)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_text value CONN_01X06 (at 0 15.03 270) (layer F.Fab)
      (effects (font (size 1 1) (thickness 0.15)))
    )
    (fp_line (start -1.27 -1.27) (end -1.27 13.97) (layer F.Fab) (width 0.1))
    (fp_line (start -1.27 13.97) (end 1.27 13.97) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 13.97) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer F.Fab) (width 0.1))
    (fp_line (start -1.33 1.27) (end -1.33 14.03) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 14.03) (end 1.33 14.03) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.33 14.03) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start 1.33 1.27) (end -1.33 1.27) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
    (fp_line (start -1.55 -1.55) (end -1.55 14.25) (layer F.CrtYd) (width 0.05))
    (fp_line (start -1.55 14.25) (end 1.55 14.25) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.55 14.25) (end 1.55 -1.55) (layer F.CrtYd) (width 0.05))
    (fp_line (start 1.55 -1.55) (end -1.55 -1.55) (layer F.CrtYd) (width 0.05))
    (pad 1 thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 3 +3V3))
    (pad 2 thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 15 /SWCLK))
    (pad 3 thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 2 GND))
    (pad 4 thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 16 /SWDIO))
    (pad 5 thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 4 /NRST))
    (pad 6 thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
      (net 17 /SWO))
    (model Socket_Strips.3dshapes/Socket_Strip_Straight_1x06_Pitch2.54mm.wrl
      (at (xyz 0 -0.25 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 270))
    )
  )

  (gr_text 3v3 (at 137.541 98.298 90) (layer F.SilkS)
    (effects (font (size 0.7 0.7) (thickness 0.12)))
  )
  (gr_text SWCLK (at 134.9375 98.425 90) (layer F.SilkS)
    (effects (font (size 0.7 0.7) (thickness 0.12)))
  )
  (gr_text GND (at 132.5245 98.425 90) (layer F.SilkS)
    (effects (font (size 0.7 0.7) (thickness 0.12)))
  )
  (gr_text SWDIO (at 129.921 98.298 90) (layer F.SilkS)
    (effects (font (size 0.7 0.7) (thickness 0.12)))
  )
  (gr_text nRST (at 127.381 98.3615 90) (layer F.SilkS)
    (effects (font (size 0.7 0.7) (thickness 0.12)))
  )
  (gr_text SWO (at 124.714 98.3615 90) (layer F.SilkS)
    (effects (font (size 0.7 0.7) (thickness 0.12)))
  )
  (gr_text "I2C PullUps" (at 170.7515 111.76) (layer F.SilkS)
    (effects (font (size 0.7 0.7) (thickness 0.175)))
  )
  (gr_text SCL (at 174.752 118.618 90) (layer F.SilkS)
    (effects (font (size 0.7 0.7) (thickness 0.175)))
  )
  (gr_text SDA (at 166.6875 118.491 90) (layer F.SilkS)
    (effects (font (size 0.7 0.7) (thickness 0.175)))
  )
  (gr_text "3v3 JOIN TGT" (at 139.827 119.1895) (layer F.SilkS)
    (effects (font (size 0.7 0.7) (thickness 0.175)))
  )
  (gr_text DP (at 137.8585 91.948) (layer F.SilkS)
    (effects (font (size 0.7 0.7) (thickness 0.12)))
  )
  (gr_text DM (at 137.795 89.154) (layer F.SilkS)
    (effects (font (size 0.7 0.7) (thickness 0.12)))
  )
  (gr_text ESDwat? (at 131.699 90.6145 90) (layer F.SilkS)
    (effects (font (size 0.7 0.7) (thickness 0.12)))
  )
  (gr_line (start 177.038 126.365) (end 177.038 73.025) (angle 90) (layer Edge.Cuts) (width 0.15))
  (gr_line (start 123.1 126.365) (end 177.038 126.365) (angle 90) (layer Edge.Cuts) (width 0.15))
  (gr_line (start 123.1 73.025) (end 123.1 126.365) (angle 90) (layer Edge.Cuts) (width 0.15))
  (gr_line (start 177.038 73.025) (end 123.1 73.025) (angle 90) (layer Edge.Cuts) (width 0.15))

  (segment (start 134.9845 85.0925) (end 135.956 85.0925) (width 0.25) (layer F.Cu) (net 1))
  (segment (start 135.7655 86.9925) (end 134.9845 86.9925) (width 0.25) (layer F.Cu) (net 1) (tstamp 5A2EFAC2))
  (segment (start 136.3345 86.4235) (end 135.7655 86.9925) (width 0.25) (layer F.Cu) (net 1) (tstamp 5A2EFAC1))
  (segment (start 136.3345 85.471) (end 136.3345 86.4235) (width 0.25) (layer F.Cu) (net 1) (tstamp 5A2EFABF))
  (segment (start 135.956 85.0925) (end 136.3345 85.471) (width 0.25) (layer F.Cu) (net 1) (tstamp 5A2EFABE))
  (segment (start 134.9845 85.0925) (end 132.7785 85.0925) (width 0.4) (layer F.Cu) (net 1))
  (segment (start 132.7785 85.0925) (end 132.715 85.156) (width 0.4) (layer F.Cu) (net 1) (tstamp 5A2EFABB))
  (segment (start 127.2705 89.632) (end 129.316 89.632) (width 0.4) (layer F.Cu) (net 1) (status 10))
  (segment (start 131.633 85.156) (end 132.715 85.156) (width 0.4) (layer F.Cu) (net 1) (tstamp 5A2EFAB8))
  (segment (start 131.064 85.725) (end 131.633 85.156) (width 0.4) (layer F.Cu) (net 1) (tstamp 5A2EFAB7))
  (segment (start 131.064 87.884) (end 131.064 85.725) (width 0.4) (layer F.Cu) (net 1) (tstamp 5A2EFAB5))
  (segment (start 129.316 89.632) (end 131.064 87.884) (width 0.4) (layer F.Cu) (net 1) (tstamp 5A2EFAB4))
  (segment (start 152.535 105.347) (end 152.535 104.148) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 152.535 104.148) (end 152.527 104.14) (width 0.25) (layer F.Cu) (net 2) (tstamp 5A43C2F6))
  (segment (start 146.3635 103.247) (end 145.9865 102.87) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 147.435 103.247) (end 146.3635 103.247) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 149.535 95.2425) (end 149.225 94.9325) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 149.535 96.647) (end 149.535 95.2425) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 156.7905 98.7425) (end 157.861 98.7425) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 156.135 98.747) (end 156.786 98.747) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 156.786 98.747) (end 156.7905 98.7425) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 147.435 101.747) (end 146.0065 101.747) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 146.0065 101.747) (end 145.161 100.9015) (width 0.25) (layer F.Cu) (net 2))
  (segment (start 142.875 86.8045) (end 142.875 95.885) (width 0.5) (layer B.Cu) (net 3))
  (via (at 142.875 86.8045) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 141.417 85.3465) (end 142.875 86.8045) (width 0.5) (layer F.Cu) (net 3) (tstamp 5A2EFADE))
  (segment (start 140.2715 85.3465) (end 141.417 85.3465) (width 0.5) (layer F.Cu) (net 3))
  (segment (start 142.875 95.885) (end 137.541 101.219) (width 0.5) (layer B.Cu) (net 3) (tstamp 5A441CC5))
  (segment (start 153.924 108.016) (end 155.1965 108.016) (width 0.4) (layer F.Cu) (net 3))
  (segment (start 158.115 111.887) (end 158.115 118.999) (width 0.4) (layer B.Cu) (net 3) (tstamp 5A2EFE2F))
  (segment (start 156.5275 110.2995) (end 158.115 111.887) (width 0.4) (layer B.Cu) (net 3) (tstamp 5A2EFE2E))
  (via (at 156.5275 110.2995) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 156.5275 109.347) (end 156.5275 110.2995) (width 0.4) (layer F.Cu) (net 3) (tstamp 5A2EFE2B))
  (segment (start 155.1965 108.016) (end 156.5275 109.347) (width 0.4) (layer F.Cu) (net 3) (tstamp 5A2EFE23))
  (segment (start 147.254 95.25) (end 147.193 95.311) (width 0.4) (layer F.Cu) (net 3))
  (segment (start 147.193 95.311) (end 147.193 97.028) (width 0.4) (layer F.Cu) (net 3) (tstamp 5A2EFC90))
  (via (at 147.193 97.028) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 147.193 97.028) (end 146.939 97.028) (width 0.4) (layer B.Cu) (net 3) (tstamp 5A1B4A5C))
  (segment (start 137.6845 85.0925) (end 140.0175 85.0925) (width 0.5) (layer F.Cu) (net 3))
  (segment (start 140.0175 85.0925) (end 140.2715 85.3465) (width 0.5) (layer F.Cu) (net 3) (tstamp 5A2EFADB))
  (segment (start 171.366 114.681) (end 169.9055 113.2205) (width 0.5) (layer F.Cu) (net 3))
  (segment (start 169.9055 113.2205) (end 166.751 113.2205) (width 0.5) (layer F.Cu) (net 3) (tstamp 5A2EF172))
  (segment (start 158.115 118.999) (end 163.8935 113.2205) (width 0.5) (layer B.Cu) (net 3))
  (via (at 166.751 113.2205) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 163.8935 113.2205) (end 166.751 113.2205) (width 0.5) (layer B.Cu) (net 3) (tstamp 5A2EF15A))
  (segment (start 137.541 108.458) (end 148.082 118.999) (width 0.5) (layer B.Cu) (net 3) (tstamp 5A2EEAC7))
  (segment (start 137.541 101.219) (end 137.541 108.458) (width 0.5) (layer B.Cu) (net 3))
  (segment (start 148.082 118.999) (end 158.115 118.999) (width 0.5) (layer B.Cu) (net 3) (tstamp 5A2EEADC))
  (segment (start 166.751 113.2205) (end 166.751 114.638) (width 0.5) (layer F.Cu) (net 3) (tstamp 5A2EF16D))
  (segment (start 166.751 114.638) (end 166.794 114.681) (width 0.5) (layer F.Cu) (net 3) (tstamp 5A2EF16E))
  (segment (start 156.21 97.028) (end 156.779 97.597) (width 0.25) (layer F.Cu) (net 3))
  (segment (start 146.939 97.028) (end 156.21 97.028) (width 0.5) (layer B.Cu) (net 3) (tstamp 5A1B4A2C))
  (via (at 156.21 97.028) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 156.779 97.597) (end 158.115 97.597) (width 0.25) (layer F.Cu) (net 3) (tstamp 5A2EEF22))
  (segment (start 156.135 98.247) (end 157.465 98.247) (width 0.25) (layer F.Cu) (net 3))
  (segment (start 157.465 98.247) (end 158.115 97.597) (width 0.25) (layer F.Cu) (net 3) (tstamp 5A2EEF1F))
  (segment (start 146.939 97.028) (end 145.923 97.028) (width 0.5) (layer B.Cu) (net 3) (tstamp 5A1B4A5F))
  (segment (start 144.46 102.6135) (end 144.46 103.759) (width 0.4) (layer F.Cu) (net 3) (tstamp 5A1B49F6) (status 20))
  (segment (start 144.399 102.5525) (end 144.46 102.6135) (width 0.4) (layer F.Cu) (net 3) (tstamp 5A1B49F5))
  (via (at 144.399 102.5525) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 3))
  (segment (start 140.1445 85.2195) (end 140.2715 85.3465) (width 0.4) (layer F.Cu) (net 3) (status 30))
  (segment (start 149.035 96.647) (end 149.035 95.949) (width 0.25) (layer F.Cu) (net 3))
  (segment (start 148.336 95.25) (end 147.254 95.25) (width 0.25) (layer F.Cu) (net 3) (tstamp 5A1B2431) (status 20))
  (segment (start 149.035 95.949) (end 148.336 95.25) (width 0.25) (layer F.Cu) (net 3) (tstamp 5A1B242F))
  (segment (start 147.435 103.747) (end 144.472 103.747) (width 0.25) (layer F.Cu) (net 3) (status 20))
  (segment (start 144.472 103.747) (end 144.46 103.759) (width 0.25) (layer F.Cu) (net 3) (tstamp 5A1B2429) (status 30))
  (segment (start 153.035 105.347) (end 153.035 106.934) (width 0.25) (layer F.Cu) (net 3))
  (segment (start 153.924 107.823) (end 153.924 108.016) (width 0.25) (layer F.Cu) (net 3) (tstamp 5A1B240E))
  (segment (start 153.035 106.934) (end 153.924 107.823) (width 0.25) (layer F.Cu) (net 3) (tstamp 5A1B240A))
  (segment (start 147.425 95.079) (end 147.254 95.25) (width 0.25) (layer F.Cu) (net 3) (tstamp 5A1191BA) (status 30))
  (segment (start 144.48 103.739) (end 144.46 103.759) (width 0.25) (layer F.Cu) (net 3) (tstamp 5A10BD95) (status 30))
  (segment (start 143.0655 101.219) (end 144.399 102.5525) (width 0.5) (layer B.Cu) (net 3) (tstamp 5A1B49EE))
  (segment (start 141.732 101.219) (end 140.3985 101.219) (width 0.5) (layer B.Cu) (net 3) (tstamp 5A1B4A3B))
  (segment (start 145.923 97.028) (end 141.732 101.219) (width 0.5) (layer B.Cu) (net 3) (tstamp 5A1B4A2D))
  (segment (start 140.3985 101.219) (end 143.0655 101.219) (width 0.5) (layer B.Cu) (net 3) (tstamp 5A1B4A41))
  (segment (start 137.541 101.219) (end 140.3985 101.219) (width 0.5) (layer B.Cu) (net 3))
  (segment (start 152.035 105.347) (end 152.035 107.7145) (width 0.25) (layer F.Cu) (net 4))
  (segment (start 152.035 107.7145) (end 152.3365 108.016) (width 0.25) (layer F.Cu) (net 4))
  (segment (start 152.035 105.347) (end 152.035 104.156) (width 0.25) (layer F.Cu) (net 4))
  (segment (start 128.397 105.664) (end 127.381 104.648) (width 0.25) (layer F.Cu) (net 4) (tstamp 5A1B2495))
  (segment (start 147.193 105.664) (end 128.397 105.664) (width 0.25) (layer F.Cu) (net 4) (tstamp 5A1B248D))
  (segment (start 148.971 103.886) (end 147.193 105.664) (width 0.25) (layer F.Cu) (net 4) (tstamp 5A1B2489))
  (segment (start 151.765 103.886) (end 148.971 103.886) (width 0.25) (layer F.Cu) (net 4) (tstamp 5A1B2484))
  (segment (start 152.035 104.156) (end 151.765 103.886) (width 0.25) (layer F.Cu) (net 4) (tstamp 5A1B2481))
  (segment (start 127.381 101.219) (end 127.381 104.648) (width 0.25) (layer B.Cu) (net 4))
  (via (at 127.381 104.648) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 4))
  (segment (start 166.878 123.825) (end 162.687 119.634) (width 0.25) (layer F.Cu) (net 5))
  (segment (start 159.905 102.247) (end 156.135 102.247) (width 0.25) (layer F.Cu) (net 5) (tstamp 5A11F07C))
  (segment (start 162.687 105.029) (end 159.905 102.247) (width 0.25) (layer F.Cu) (net 5) (tstamp 5A11F074))
  (segment (start 162.687 119.634) (end 162.687 105.029) (width 0.25) (layer F.Cu) (net 5) (tstamp 5A11F06D))
  (segment (start 147.435 102.747) (end 151.507 102.747) (width 0.25) (layer F.Cu) (net 6) (tstamp 5A2EEB57))
  (segment (start 151.511 102.743) (end 151.507 102.747) (width 0.25) (layer F.Cu) (net 6) (tstamp 5A2EED13))
  (segment (start 153.2255 102.743) (end 151.511 102.743) (width 0.25) (layer F.Cu) (net 6) (tstamp 5A2EED12))
  (via (at 153.2255 102.743) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 6))
  (segment (start 161.798 102.743) (end 153.2255 102.743) (width 0.25) (layer B.Cu) (net 6) (tstamp 5A2EED05))
  (via (at 161.798 102.743) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 6))
  (segment (start 161.925 102.743) (end 161.798 102.743) (width 0.25) (layer F.Cu) (net 6) (tstamp 5A2EECF6))
  (segment (start 173.228 104.013) (end 173.228 114.808) (width 0.25) (layer B.Cu) (net 6))
  (segment (start 174.117 121.285) (end 171.958 123.444) (width 0.25) (layer B.Cu) (net 6) (tstamp 5A1B223C))
  (segment (start 174.117 115.697) (end 174.117 121.285) (width 0.25) (layer B.Cu) (net 6) (tstamp 5A1B2238))
  (segment (start 173.228 114.808) (end 174.117 115.697) (width 0.25) (layer B.Cu) (net 6) (tstamp 5A1B2235))
  (segment (start 171.958 123.444) (end 171.958 123.825) (width 0.25) (layer B.Cu) (net 6) (tstamp 5A1B2240))
  (segment (start 171.958 123.825) (end 171.958 122.936) (width 0.25) (layer F.Cu) (net 6))
  (segment (start 171.958 122.936) (end 169.037 120.015) (width 0.25) (layer F.Cu) (net 6) (tstamp 5A121551))
  (segment (start 163.576 104.394) (end 161.925 102.743) (width 0.25) (layer F.Cu) (net 6))
  (segment (start 163.576 117.2845) (end 163.576 104.394) (width 0.25) (layer F.Cu) (net 6) (tstamp 5A2EEB15))
  (segment (start 166.3065 120.015) (end 163.576 117.2845) (width 0.25) (layer F.Cu) (net 6) (tstamp 5A2EEB10))
  (segment (start 166.3065 120.015) (end 169.037 120.015) (width 0.25) (layer F.Cu) (net 6))
  (segment (start 147.435 102.247) (end 149.6575 102.247) (width 0.25) (layer F.Cu) (net 7) (tstamp 5A2EEC06))
  (segment (start 151.118 102.247) (end 149.6575 102.247) (width 0.25) (layer F.Cu) (net 7) (tstamp 5A2EED2B))
  (segment (start 151.5745 101.7905) (end 151.118 102.247) (width 0.25) (layer F.Cu) (net 7) (tstamp 5A2EED2A))
  (via (at 151.5745 101.7905) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 7))
  (segment (start 151.638 101.854) (end 151.5745 101.7905) (width 0.25) (layer B.Cu) (net 7) (tstamp 5A2EED20))
  (segment (start 162.687 101.854) (end 151.638 101.854) (width 0.25) (layer B.Cu) (net 7) (tstamp 5A2EED1F))
  (via (at 162.687 101.854) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 7))
  (segment (start 162.7505 101.854) (end 162.687 101.854) (width 0.25) (layer F.Cu) (net 7) (tstamp 5A2EED18))
  (segment (start 175.768 104.013) (end 175.768 115.443) (width 0.25) (layer F.Cu) (net 7))
  (segment (start 175.768 115.443) (end 174.371 116.84) (width 0.25) (layer F.Cu) (net 7) (tstamp 5A1B21D0))
  (segment (start 174.498 123.825) (end 174.498 122.174) (width 0.25) (layer F.Cu) (net 7))
  (segment (start 164.465 103.5685) (end 162.7505 101.854) (width 0.25) (layer F.Cu) (net 7))
  (segment (start 171.069 118.745) (end 167.1955 118.745) (width 0.25) (layer F.Cu) (net 7) (tstamp 5A2EEBE3))
  (segment (start 167.1955 118.745) (end 164.465 116.0145) (width 0.25) (layer F.Cu) (net 7) (tstamp 5A2EEBE6))
  (segment (start 164.465 116.0145) (end 164.465 103.5685) (width 0.25) (layer F.Cu) (net 7) (tstamp 5A2EEBE8))
  (segment (start 171.069 118.745) (end 172.339 120.015) (width 0.25) (layer F.Cu) (net 7))
  (segment (start 174.371 117.983) (end 172.339 120.015) (width 0.25) (layer F.Cu) (net 7) (tstamp 5A1B21DC))
  (segment (start 174.371 116.84) (end 174.371 117.983) (width 0.25) (layer F.Cu) (net 7) (tstamp 5A1B21D6))
  (segment (start 174.498 122.174) (end 172.339 120.015) (width 0.25) (layer F.Cu) (net 7) (tstamp 5A12154C))
  (segment (start 175.768 96.393) (end 174.498 95.123) (width 0.25) (layer B.Cu) (net 8))
  (segment (start 164.084 95.123) (end 147.447 78.486) (width 0.25) (layer B.Cu) (net 8) (tstamp 5A2EFB69))
  (segment (start 174.498 95.123) (end 164.084 95.123) (width 0.25) (layer B.Cu) (net 8) (tstamp 5A2EFB60))
  (segment (start 154.535 96.647) (end 154.535 85.574) (width 0.25) (layer F.Cu) (net 8))
  (segment (start 137.795 78.486) (end 134.874 75.565) (width 0.25) (layer B.Cu) (net 8) (tstamp 5A11EFD7))
  (segment (start 147.447 78.486) (end 137.795 78.486) (width 0.25) (layer B.Cu) (net 8) (tstamp 5A11EFD6))
  (via (at 147.447 78.486) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 8))
  (segment (start 154.535 85.574) (end 147.447 78.486) (width 0.25) (layer F.Cu) (net 8) (tstamp 5A11EFCC))
  (segment (start 173.228 98.933) (end 169.418 98.933) (width 0.25) (layer B.Cu) (net 9))
  (segment (start 153.035 100.584) (end 153.035 96.647) (width 0.25) (layer F.Cu) (net 9) (tstamp 5A1B22F8))
  (segment (start 152.908 100.711) (end 153.035 100.584) (width 0.25) (layer F.Cu) (net 9) (tstamp 5A1B22F7))
  (via (at 152.908 100.711) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 9))
  (segment (start 167.64 100.711) (end 152.908 100.711) (width 0.25) (layer B.Cu) (net 9) (tstamp 5A1B22E3))
  (segment (start 169.418 98.933) (end 167.64 100.711) (width 0.25) (layer B.Cu) (net 9) (tstamp 5A1B22D5))
  (segment (start 153.035 96.647) (end 153.035 87.378796) (width 0.25) (layer F.Cu) (net 9))
  (segment (start 139.642002 77.793002) (end 137.414 75.565) (width 0.25) (layer F.Cu) (net 9) (tstamp 5A11EFA8))
  (segment (start 143.449206 77.793002) (end 139.642002 77.793002) (width 0.25) (layer F.Cu) (net 9) (tstamp 5A11EFA5))
  (segment (start 153.035 87.378796) (end 143.449206 77.793002) (width 0.25) (layer F.Cu) (net 9) (tstamp 5A11EF9C))
  (segment (start 175.768 98.933) (end 175.768 98.806) (width 0.25) (layer B.Cu) (net 10))
  (segment (start 175.768 98.806) (end 174.625 97.663) (width 0.25) (layer B.Cu) (net 10) (tstamp 5A1B2332))
  (segment (start 174.625 97.663) (end 169.291 97.663) (width 0.25) (layer B.Cu) (net 10) (tstamp 5A1B2336))
  (segment (start 169.291 97.663) (end 166.878 100.076) (width 0.25) (layer B.Cu) (net 10) (tstamp 5A1B233B))
  (segment (start 166.878 100.076) (end 153.797 100.076) (width 0.25) (layer B.Cu) (net 10) (tstamp 5A1B2342))
  (via (at 153.797 100.076) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 10))
  (segment (start 153.797 100.076) (end 153.535 99.814) (width 0.25) (layer F.Cu) (net 10) (tstamp 5A1B234F))
  (segment (start 153.535 99.814) (end 153.535 96.647) (width 0.25) (layer F.Cu) (net 10) (tstamp 5A1B2350))
  (segment (start 153.535 96.647) (end 153.535 87.242398) (width 0.25) (layer F.Cu) (net 10))
  (segment (start 141.732 77.343) (end 139.954 75.565) (width 0.25) (layer F.Cu) (net 10) (tstamp 5A11EF74))
  (segment (start 143.635602 77.343) (end 141.732 77.343) (width 0.25) (layer F.Cu) (net 10) (tstamp 5A11EF60))
  (segment (start 153.535 87.242398) (end 143.635602 77.343) (width 0.25) (layer F.Cu) (net 10) (tstamp 5A119493))
  (segment (start 173.228 96.393) (end 169.037 96.393) (width 0.25) (layer B.Cu) (net 11))
  (segment (start 154.035 98.79) (end 154.035 96.647) (width 0.25) (layer F.Cu) (net 11) (tstamp 5A1B2393))
  (segment (start 154.559 99.314) (end 154.035 98.79) (width 0.25) (layer F.Cu) (net 11) (tstamp 5A1B2392))
  (via (at 154.559 99.314) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 11))
  (segment (start 166.116 99.314) (end 154.559 99.314) (width 0.25) (layer B.Cu) (net 11) (tstamp 5A1B238A))
  (segment (start 169.037 96.393) (end 166.116 99.314) (width 0.25) (layer B.Cu) (net 11) (tstamp 5A1B2386))
  (segment (start 142.494 75.565) (end 154.035 87.106) (width 0.25) (layer F.Cu) (net 11))
  (segment (start 154.035 87.106) (end 154.035 96.647) (width 0.25) (layer F.Cu) (net 11) (tstamp 5A119485))
  (segment (start 135.4455 90.282) (end 149.845 90.282) (width 0.25) (layer F.Cu) (net 12))
  (segment (start 149.845 90.282) (end 151.035 91.472) (width 0.25) (layer F.Cu) (net 12) (tstamp 5A11F089))
  (segment (start 151.035 91.472) (end 151.035 96.647) (width 0.25) (layer F.Cu) (net 12) (tstamp 5A11F090))
  (segment (start 127.2705 90.282) (end 135.4455 90.282) (width 0.25) (layer F.Cu) (net 12) (status 10))
  (segment (start 135.4455 89.7255) (end 135.4455 90.282) (width 0.25) (layer F.Cu) (net 12))
  (segment (start 135.4455 91.821) (end 135.4455 90.932) (width 0.25) (layer F.Cu) (net 13))
  (segment (start 135.446595 90.930905) (end 135.446595 90.924886) (width 0.25) (layer F.Cu) (net 13) (tstamp 5A441C04))
  (segment (start 135.4455 90.932) (end 135.446595 90.930905) (width 0.25) (layer F.Cu) (net 13) (tstamp 5A441C02))
  (segment (start 127.2705 90.932) (end 149.479 90.932) (width 0.25) (layer F.Cu) (net 13) (status 10))
  (segment (start 150.535 91.988) (end 149.479 90.932) (width 0.25) (layer F.Cu) (net 13) (tstamp 5A11F094))
  (segment (start 150.535 91.988) (end 150.535 96.647) (width 0.25) (layer F.Cu) (net 13))
  (segment (start 127.2705 90.932) (end 127.277614 90.924886) (width 0.25) (layer F.Cu) (net 13) (tstamp 5A441BF4) (status 30))
  (segment (start 127.277614 90.924886) (end 135.446595 90.924886) (width 0.25) (layer F.Cu) (net 13) (tstamp 5A441BF8) (status 10))
  (segment (start 135.446595 90.924886) (end 127.2705 90.932) (width 0.25) (layer F.Cu) (net 13) (status 20))
  (segment (start 127.2705 93.582) (end 127.2705 93.432) (width 0.25) (layer F.Cu) (net 14) (status 30))
  (segment (start 127.2705 88.282) (end 127.2705 88.432) (width 0.25) (layer F.Cu) (net 14) (status 30))
  (segment (start 135.001 99.568) (end 135.001 101.219) (width 0.25) (layer F.Cu) (net 15) (tstamp 5A121212))
  (segment (start 136.322 98.247) (end 135.001 99.568) (width 0.25) (layer F.Cu) (net 15) (tstamp 5A121211))
  (segment (start 147.435 98.247) (end 136.322 98.247) (width 0.25) (layer F.Cu) (net 15))
  (segment (start 129.921 101.219) (end 137.3505 93.7895) (width 0.25) (layer F.Cu) (net 16))
  (segment (start 150.035 94.663) (end 150.035 96.647) (width 0.25) (layer F.Cu) (net 16) (tstamp 5A121224))
  (segment (start 149.1615 93.7895) (end 150.035 94.663) (width 0.25) (layer F.Cu) (net 16) (tstamp 5A121221))
  (segment (start 137.3505 93.7895) (end 149.1615 93.7895) (width 0.25) (layer F.Cu) (net 16) (tstamp 5A121218))
  (segment (start 127 103.378) (end 124.841 101.219) (width 0.25) (layer F.Cu) (net 17) (tstamp 5A121257))
  (segment (start 139.827 103.378) (end 127 103.378) (width 0.25) (layer F.Cu) (net 17) (tstamp 5A12124F))
  (segment (start 147.435 99.247) (end 143.958 99.247) (width 0.25) (layer F.Cu) (net 17))
  (segment (start 143.958 99.247) (end 139.827 103.378) (width 0.25) (layer F.Cu) (net 17) (tstamp 5A121246))
  (segment (start 161.798 123.825) (end 160.782 122.809) (width 0.25) (layer F.Cu) (net 18))
  (segment (start 159.127 103.247) (end 156.135 103.247) (width 0.25) (layer F.Cu) (net 18) (tstamp 5A11F050))
  (segment (start 160.782 104.902) (end 159.127 103.247) (width 0.25) (layer F.Cu) (net 18) (tstamp 5A11F04D))
  (segment (start 160.782 122.809) (end 160.782 104.902) (width 0.25) (layer F.Cu) (net 18) (tstamp 5A11F047))
  (segment (start 156.135 102.747) (end 159.389 102.747) (width 0.25) (layer F.Cu) (net 19))
  (segment (start 161.671 121.158) (end 164.338 123.825) (width 0.25) (layer F.Cu) (net 19) (tstamp 5A11F068))
  (segment (start 161.671 105.029) (end 161.671 121.158) (width 0.25) (layer F.Cu) (net 19) (tstamp 5A11F061))
  (segment (start 159.389 102.747) (end 161.671 105.029) (width 0.25) (layer F.Cu) (net 19) (tstamp 5A11F05A))
  (segment (start 164.211 123.825) (end 164.338 123.825) (width 0.25) (layer F.Cu) (net 19) (tstamp 5A10B5E0))
  (segment (start 164.465 87.63) (end 164.465 101.727) (width 0.25) (layer F.Cu) (net 20))
  (segment (start 156.718 75.565) (end 156.718 79.883) (width 0.25) (layer F.Cu) (net 20))
  (segment (start 156.718 79.883) (end 164.465 87.63) (width 0.25) (layer F.Cu) (net 20) (tstamp 5A120F94))
  (segment (start 164.465 101.727) (end 167.132 104.394) (width 0.25) (layer F.Cu) (net 20) (tstamp 5A2EEE16))
  (segment (start 154.535 105.347) (end 157.4805 105.347) (width 0.25) (layer F.Cu) (net 20))
  (segment (start 171.8945 101.473) (end 173.228 101.473) (width 0.25) (layer F.Cu) (net 20) (tstamp 5A2EED7F))
  (segment (start 168.9735 104.394) (end 171.8945 101.473) (width 0.25) (layer F.Cu) (net 20) (tstamp 5A2EED73))
  (segment (start 167.132 104.394) (end 168.9735 104.394) (width 0.25) (layer F.Cu) (net 20) (tstamp 5A2EED72))
  (via (at 167.132 104.394) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 20))
  (segment (start 165.4175 106.1085) (end 167.132 104.394) (width 0.25) (layer B.Cu) (net 20) (tstamp 5A2EED64))
  (segment (start 158.242 106.1085) (end 165.4175 106.1085) (width 0.25) (layer B.Cu) (net 20) (tstamp 5A2EED63))
  (via (at 158.242 106.1085) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 20))
  (segment (start 157.4805 105.347) (end 158.242 106.1085) (width 0.25) (layer F.Cu) (net 20) (tstamp 5A2EED5B))
  (segment (start 163.83 104.775) (end 165.862 102.743) (width 0.25) (layer B.Cu) (net 21))
  (segment (start 157.6585 103.747) (end 158.6865 104.775) (width 0.25) (layer F.Cu) (net 21) (tstamp 5A2EED85))
  (via (at 158.6865 104.775) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 21))
  (segment (start 158.6865 104.775) (end 163.83 104.775) (width 0.25) (layer B.Cu) (net 21) (tstamp 5A2EED8C))
  (segment (start 156.135 103.747) (end 157.6585 103.747) (width 0.25) (layer F.Cu) (net 21))
  (via (at 168.656 102.743) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 21))
  (segment (start 165.862 102.743) (end 168.656 102.743) (width 0.25) (layer B.Cu) (net 21) (tstamp 5A2EEE2D))
  (segment (start 165.735 87.503) (end 165.735 99.822) (width 0.25) (layer F.Cu) (net 21))
  (segment (start 165.735 87.503) (end 159.258 81.026) (width 0.25) (layer F.Cu) (net 21) (tstamp 5A12106D))
  (segment (start 159.258 75.565) (end 159.258 81.026) (width 0.25) (layer F.Cu) (net 21) (tstamp 5A121076))
  (segment (start 168.656 102.743) (end 171.1325 100.2665) (width 0.25) (layer F.Cu) (net 21) (tstamp 5A2EED95))
  (segment (start 171.1325 100.2665) (end 174.5615 100.2665) (width 0.25) (layer F.Cu) (net 21) (tstamp 5A2EEDA8))
  (segment (start 174.5615 100.2665) (end 175.768 101.473) (width 0.25) (layer F.Cu) (net 21) (tstamp 5A2EEDB1))
  (segment (start 165.735 99.822) (end 168.656 102.743) (width 0.25) (layer F.Cu) (net 21) (tstamp 5A2EEE20))
  (segment (start 169.037 117.475) (end 169.037 114.724) (width 0.25) (layer F.Cu) (net 22))
  (segment (start 169.037 114.724) (end 168.994 114.681) (width 0.25) (layer F.Cu) (net 22) (tstamp 5A1B2458))
  (segment (start 172.339 117.475) (end 172.339 117.094) (width 0.25) (layer F.Cu) (net 23))
  (segment (start 172.339 117.094) (end 173.566 115.867) (width 0.25) (layer F.Cu) (net 23) (tstamp 5A1B245B))
  (segment (start 173.566 115.867) (end 173.566 114.681) (width 0.25) (layer F.Cu) (net 23) (tstamp 5A1B245C))
  (segment (start 149.035 105.347) (end 149.035 106.489) (width 0.25) (layer F.Cu) (net 24))
  (segment (start 149.035 106.489) (end 148.2725 107.2515) (width 0.25) (layer F.Cu) (net 24))
  (segment (start 148.2725 107.2515) (end 147.3835 107.2515) (width 0.25) (layer F.Cu) (net 24))
  (segment (start 148.679 108.623) (end 148.679 111.168) (width 0.25) (layer F.Cu) (net 25))
  (segment (start 148.679 111.168) (end 146.708 111.168) (width 0.25) (layer F.Cu) (net 25))
  (segment (start 146.708 111.168) (end 146.685 111.191) (width 0.25) (layer F.Cu) (net 25) (tstamp 5A1B23FE))
  (segment (start 151.035 105.347) (end 151.035 106.267) (width 0.25) (layer F.Cu) (net 25))
  (segment (start 151.035 106.267) (end 148.679 108.623) (width 0.25) (layer F.Cu) (net 25) (tstamp 5A1B23D8))
  (segment (start 150.279 113.368) (end 150.279 115.166) (width 0.25) (layer F.Cu) (net 26))
  (segment (start 150.279 115.166) (end 150.429 115.316) (width 0.25) (layer F.Cu) (net 26))
  (segment (start 151.535 112.112) (end 150.279 113.368) (width 0.25) (layer F.Cu) (net 26))
  (segment (start 151.535 105.347) (end 151.535 112.112) (width 0.25) (layer F.Cu) (net 26))
  (segment (start 146.558 123.825) (end 146.558 122.309) (width 0.5) (layer F.Cu) (net 27))
  (segment (start 146.558 122.309) (end 145.542 121.293) (width 0.5) (layer F.Cu) (net 27))
  (segment (start 145.542 121.293) (end 145.542 118.999) (width 0.5) (layer F.Cu) (net 27))
  (segment (start 156.135 101.247) (end 159.8015 101.247) (width 0.25) (layer F.Cu) (net 28))
  (segment (start 159.8015 101.247) (end 163.0045 98.044) (width 0.25) (layer F.Cu) (net 28) (tstamp 5A43A102))
  (segment (start 163.0045 91.694) (end 161.7345 92.964) (width 0.25) (layer F.Cu) (net 29))
  (segment (start 161.7345 94.869) (end 161.7345 96.393) (width 0.25) (layer F.Cu) (net 29) (tstamp 5A43A26A))
  (segment (start 159.333 99.747) (end 156.135 99.747) (width 0.25) (layer F.Cu) (net 29) (tstamp 5A43A174))
  (segment (start 161.7345 96.393) (end 160.9725 97.155) (width 0.25) (layer F.Cu) (net 29) (tstamp 5A43A15D))
  (segment (start 160.9725 97.155) (end 160.9725 98.1075) (width 0.25) (layer F.Cu) (net 29) (tstamp 5A43A15F))
  (segment (start 160.9725 98.1075) (end 159.333 99.747) (width 0.25) (layer F.Cu) (net 29) (tstamp 5A43A166))
  (segment (start 161.7345 92.964) (end 161.7345 94.869) (width 0.25) (layer F.Cu) (net 29) (tstamp 5A43A2CE))
  (segment (start 159.071 99.247) (end 156.135 99.247) (width 0.25) (layer F.Cu) (net 30))
  (segment (start 160.401 97.917) (end 159.071 99.247) (width 0.25) (layer F.Cu) (net 30))
  (segment (start 160.401 97.028) (end 160.401 97.917) (width 0.25) (layer F.Cu) (net 30) (tstamp 5A43A281))
  (segment (start 161.163 90.8685) (end 161.163 96.266) (width 0.25) (layer F.Cu) (net 30) (tstamp 5A43A2D7))
  (segment (start 161.163 90.678) (end 161.163 90.8685) (width 0.25) (layer F.Cu) (net 30) (tstamp 5A43A279))
  (segment (start 161.163 96.266) (end 160.401 97.028) (width 0.25) (layer F.Cu) (net 30) (tstamp 5A43A27F))
  (segment (start 161.163 90.2335) (end 161.163 90.678) (width 0.25) (layer F.Cu) (net 30) (tstamp 5A43A2F8))
  (segment (start 163.0045 88.392) (end 161.163 90.2335) (width 0.25) (layer F.Cu) (net 30))
  (segment (start 149.987 85.217) (end 148.3995 83.6295) (width 0.25) (layer F.Cu) (net 31))
  (segment (start 152.535 87.765) (end 149.987 85.217) (width 0.25) (layer F.Cu) (net 31) (tstamp 5A43C2D2))
  (segment (start 152.535 96.647) (end 152.535 87.765) (width 0.25) (layer F.Cu) (net 31))
  (segment (start 148.3995 83.6295) (end 145.796 83.6295) (width 0.25) (layer F.Cu) (net 31) (tstamp 5A441C6D))
  (segment (start 149.9235 86.741) (end 149.352 86.1695) (width 0.25) (layer F.Cu) (net 32))
  (segment (start 152.035 88.8525) (end 149.9235 86.741) (width 0.25) (layer F.Cu) (net 32) (tstamp 5A43A43C))
  (segment (start 152.035 96.647) (end 152.035 88.8525) (width 0.25) (layer F.Cu) (net 32))
  (segment (start 149.352 86.1695) (end 145.796 86.1695) (width 0.25) (layer F.Cu) (net 32) (tstamp 5A441C77))
  (segment (start 145.796 88.7095) (end 150.114 88.7095) (width 0.25) (layer F.Cu) (net 33))
  (segment (start 151.535 90.1305) (end 151.535 96.647) (width 0.25) (layer F.Cu) (net 33) (tstamp 5A441C88))
  (segment (start 150.114 88.7095) (end 151.535 90.1305) (width 0.25) (layer F.Cu) (net 33) (tstamp 5A441C81))
  (segment (start 161.4805 97.409) (end 163.0045 95.885) (width 0.25) (layer F.Cu) (net 34) (tstamp 5A43A10A))
  (segment (start 161.4805 98.3615) (end 161.4805 97.409) (width 0.25) (layer F.Cu) (net 34) (tstamp 5A43A108))
  (segment (start 159.095 100.747) (end 161.4805 98.3615) (width 0.25) (layer F.Cu) (net 34) (tstamp 5A43A106))
  (segment (start 156.135 100.747) (end 159.095 100.747) (width 0.25) (layer F.Cu) (net 34))
  (segment (start 153.535 105.347) (end 153.535 106.672) (width 0.25) (layer F.Cu) (net 35))
  (segment (start 155.5115 107.061) (end 158.9405 110.49) (width 0.25) (layer F.Cu) (net 35) (tstamp 5A43C306))
  (segment (start 153.924 107.061) (end 155.5115 107.061) (width 0.25) (layer F.Cu) (net 35) (tstamp 5A43C301))
  (segment (start 153.535 106.672) (end 153.924 107.061) (width 0.25) (layer F.Cu) (net 35) (tstamp 5A43C2FC))
  (segment (start 154.035 105.347) (end 154.035 106.467998) (width 0.25) (layer F.Cu) (net 36))
  (segment (start 156.972 106.553) (end 158.6865 108.2675) (width 0.25) (layer F.Cu) (net 36) (tstamp 5A43C325))
  (segment (start 154.120002 106.553) (end 156.972 106.553) (width 0.25) (layer F.Cu) (net 36) (tstamp 5A43C320))
  (segment (start 154.035 106.467998) (end 154.120002 106.553) (width 0.25) (layer F.Cu) (net 36) (tstamp 5A43C319))

  (zone (net 2) (net_name GND) (layer B.Cu) (tstamp 5A1C824E) (hatch edge 0.508)
    (connect_pads (clearance 0.508))
    (min_thickness 0.254)
    (fill (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
    (polygon
      (pts
        (xy 123.063 73.787) (xy 123.063 125.603) (xy 176.276 125.5395) (xy 176.276 80.2005) (xy 176.276 73.787)
      )
    )
  )
  (zone (net 2) (net_name GND) (layer F.Cu) (tstamp 5A1C84E5) (hatch edge 0.508)
    (connect_pads (clearance 0.25))
    (min_thickness 0.25)
    (fill (arc_segments 16) (thermal_gap 0.25) (thermal_bridge_width 0.3))
    (polygon
      (pts
        (xy 176.276 125.603) (xy 123.063 125.603) (xy 123.063 73.787) (xy 176.276 73.787)
      )
    )
  )
)