summaryrefslogtreecommitdiff
path: root/prototype/mech_pcbs/stator_top_pcb/stator_top_pcb.kicad_pcb
blob: 0c4adb3373190c83d9d412756980883fb18e121d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
(kicad_pcb (version 20201002) (generator pcbnew)

  (general
    (thickness 1.6)
  )

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

  (setup
    (grid_origin 150 100)
    (pcbplotparams
      (layerselection 0x00010fc_ffffffff)
      (usegerberextensions false)
      (usegerberattributes true)
      (usegerberadvancedattributes true)
      (creategerberjobfile true)
      (svguseinch false)
      (svgprecision 6)
      (excludeedgelayer true)
      (linewidth 0.100000)
      (plotframeref false)
      (viasonmask false)
      (mode 1)
      (useauxorigin false)
      (hpglpennumber 1)
      (hpglpenspeed 20)
      (hpglpendiameter 15.000000)
      (psnegative false)
      (psa4output false)
      (plotreference true)
      (plotvalue true)
      (plotinvisibletext false)
      (sketchpadsonfab false)
      (subtractmaskfromsilk false)
      (outputformat 1)
      (mirror false)
      (drillshape 0)
      (scaleselection 1)
      (outputdirectory "gerber")
    )
  )


  (net 0 "")

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp 073950fb-9912-412a-a4c5-b695af34aa09)
    (at 176.67 97.46)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ac16564f-52d4-4319-aa93-9394421e4ecf)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 12caadd5-dbe7-4429-ab65-8485b9644aab)
    )
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 52afa32a-4416-42b4-9706-b3a29551610d))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8d6d66ac-06bc-4a1b-a3e1-785345cd6937))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b6b0537f-ea3d-4630-9d5b-0fb54c6f6307))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bca9d3b3-ba47-4ee3-bd8f-40e4abd872dc))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp de137d53-2d99-48e4-bcc9-098d3749b911))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2ceb1d5e-4f9e-4504-9ff2-18b3924e3cb0))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 501fe4ba-db62-4557-af2b-07b1ece767ca))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7250b2fa-9701-4843-a3e2-27019e0eb696))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d0834d35-bf1a-4de6-b64b-15d77cce1f80))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d6bf3083-e97f-4a57-b37b-c38d220a80c6))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7c309d9f-c5cd-409b-9040-bddcc7f64140))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 86813771-a649-4a94-a77e-31de2b7f4dad))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 96572984-8f73-4545-a345-75e667ff43f1))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bbe14e02-7846-4cdb-b06f-0d85a8335e89))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f1c1535e-e638-4b19-b9bd-01c894096754))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 056e0c78-e856-469f-bd49-f49c7f257d48))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 54b67637-f608-45ac-9b38-f089707f0b67))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6248ed0b-07df-436c-b7cd-39fc9cae7ce2))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c1e4f152-0748-484c-ba38-023d9c70079a))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e8e0b590-0532-4803-9ca1-b6720cb51dfc))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5fd11a7b-bcf5-431d-afba-9247eeddbc6d))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 77f53227-e0a0-47fe-b3b7-b45f261a2d74))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 83518fd7-2230-4eaf-8383-a2ffc03a05bb))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 978a9421-daa8-4fb8-aaae-65c9730645f8))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bce72253-1263-4c46-b733-63dc498d1230))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp 1330de8e-9c6e-4ea4-b623-bf21ce262705)
    (at 163.97 103.81)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d4129e63-3132-4d6a-a031-bd3978611fa0)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp c006945a-80dd-4979-a573-e98742c0bd6b)
    )
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 34b125d3-bbc7-404c-a2b3-2d0df42f1a2e))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 60c0f51d-4958-4056-9a73-d237c7c538e7))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6a12f88b-a8ea-4b30-b514-1a4ee9bce43c))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7089fc1f-2756-4a97-90a8-00849584c5ad))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b054ac6b-c7ef-44f4-ab90-1dd07e252575))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 264858d8-114e-43d1-99f7-b62384b9f606))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 61c521b9-eae9-4f5f-b37a-20768330be42))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 86c19990-836b-4729-ac5d-18c2ce65f71c))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8b801af1-f16f-4c35-9d10-9cbd7a596834))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ba83001d-54f8-4695-93ba-30780ab63a65))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 43e2e620-4682-4159-a674-793252b39f9b))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 72db82be-725f-4ae8-9529-f7e29881ab17))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7f298021-6c2c-4819-89b1-88d51f8231e5))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 96350dfa-58d2-4d44-8d0a-f4e4c6c3c3f6))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bc659d61-491a-4c54-9c7c-7991187365ca))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b6ee8f19-5e4d-4b46-b104-a3fdd011418a))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bcbb34df-3c38-4c11-9eaa-e45d422f4623))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cd73d432-9fca-474c-83bf-2f388b33ef22))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cfdde6ac-e846-4ebd-aa4e-30127d1b66a4))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e5eb98f2-94f7-4f59-b5c3-396d6390f491))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4fff3a8d-d917-4a0e-8e45-5a992826528d))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5a0336fc-e47b-483d-80c6-7cb96bd85897))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5a721182-eb9f-421a-b7a4-854813b82dfc))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 61f7de99-79ca-4af6-884a-10894ba50ae0))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fa8b233a-b344-4914-a699-670b1c1a3c76))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp 15402474-7a5c-4969-86c8-3bae548338c0)
    (at 181.75 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4696fbfb-2f1a-4f7c-ae56-472e5482e0b4)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8bf80086-2d5f-4d63-9d21-2aca63dc6562)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 09ee97c4-eeaa-4204-9a2c-8b205fa83851))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1edbf43d-19d2-4b5e-9164-ec440e1480c2))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a96b3654-fe5a-41cf-a5aa-df5952cbd182))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp db840a4b-e647-4406-bc0c-ca9cc9cccfd0))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e6834648-c7b4-4bda-9edc-f7b5cef6b414))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7685c1e8-ea11-4ef6-b590-5dd67496788e))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9bc2f242-3fd5-4b9d-9e7a-ea951df2927b))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp be338145-aa46-4768-8098-fb00713c31c0))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d2019205-7fe0-4fbe-8039-c5664b3fde83))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f30085e0-6429-49c2-8f8e-d05b04be1939))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 13538d25-0298-4923-a0bf-db481d67f9af))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 29f3c7dd-93dc-4acb-a9f4-03f9a96935f6))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6243d7d0-9905-4624-af05-cefdb1f87754))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 80ed8ab2-c7e3-4426-bc40-1279fccc7111))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a57a00ee-43fa-4f86-ac37-8743c69c1fef))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0d7c60ec-acd6-473f-baa8-f1abc61e8f3e))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 461e2d5e-12ad-4355-8047-1603df467cce))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 58370fbd-0141-4f71-859b-ebe0db5ef842))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 777de9c0-30b2-4f2b-93d3-35b67089cacf))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d7139f61-56e4-4f7f-9fce-66bc0227bd3f))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2160c3d4-b724-4e45-8d61-3013800ff49c))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 26d65552-c949-41e6-9e9a-b1a2c8284e77))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 47bbfb07-bc8b-46a8-b5a0-09e152bfc4d1))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 47f56674-cb51-4d9f-9166-d0abf7784237))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c1503cc3-2843-45d2-abf6-fe5c203333c2))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "F.Cu") (tedit 5F805ECF) (tstamp 1560403d-c87d-4f18-b16f-69015b6ecd2e)
    (at 133.49 105.08)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b8f14b9b-ce43-4020-a2da-a8f10378cb79)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 1 unlocked) (layer "F.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d3d8915e-fe99-4a51-aa5a-28ed980ccb75)
    )
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 074508dc-798c-4a5c-9bf3-c070ae9af1b4))
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1afda8d8-9621-40f4-8ff0-1e61fd1b1a62))
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4953ab04-5f62-430f-9512-76f1337487c5))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a1f9d419-049b-4b41-a3ca-ac91e987f843))
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d642992d-d95f-457d-908d-9f5188d28807))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 635457fa-27d7-47d9-a964-7662c56a36f5))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8c67533e-d6df-434b-8195-307d7d2d46a3))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c3888114-759d-4034-b87e-dcba08414ec8))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c5dced0c-da51-4cd7-b943-ffbe1719b4bb))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e7665576-4eb7-4358-93f2-5f89685d91bd))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0d8ed7bc-e257-4762-9cca-fb23126101d0))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 32b42844-a27a-4e83-8601-d513d3cfbba6))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ad95240f-49af-40b4-8836-9ac594d0ca95))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cde608f4-76b9-4fb7-9d99-fc9213264a96))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cf6c23f8-bdb1-49a9-acf6-c9fdf5e2e691))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0960f30c-425d-4f06-9f43-4c958888830d))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 30dae5ff-94ed-419e-a57e-555b79dcde99))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a22e4911-4fcb-4a74-bb95-563d291a8713))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b6622ce6-74c9-4be6-a618-52f7ecedef16))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dccf5495-ba70-4117-b9f2-1750276e59b2))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2ab260cf-e637-4e9c-aaf9-f4f21c9389f9))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 39f044ab-8d3f-4acb-973a-d173bf6cac58))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4e64d943-70b8-4dab-b863-130f38341966))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 75d3dede-4931-485d-aefb-046804e63e91))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ff173414-b9e1-4185-8ecb-51c68aad7a0e))
  )

  (module "common_footprints:8mm_base" (layer "F.Cu") (tedit 5F75A806) (tstamp 29f86daa-5218-49c7-a59e-8aae0ede4016)
    (at 111.3 100 -90)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 -90 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp abcc6a5d-6b5d-4a5e-bc18-5ec0528147c2)
    )
    (fp_text value "8mm_base" (at 0 1 -90 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 28915dff-a490-40a7-b9e1-a2f7ce3c83e3)
    )
    (fp_rect (start 7.5 -0.8) (end -7.5 0.8) (layer "F.SilkS") (width 0.12) (tstamp 79cfba64-59e3-4427-a58e-0402bab8e0df))
    (fp_rect (start -4 0.8) (end 4 -0.8) (layer "Dwgs.User") (width 0.1) (tstamp 887fd9bd-352d-4c9e-913b-bf80206b43d2))
    (pad "1" smd rect (at -5 1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 76d97cf7-1d16-4321-9fee-ccee3918fb0d))
    (pad "2" smd rect (at -2.5 1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 3afd50fa-5987-46b4-89d8-74b1c640a6db))
    (pad "3" smd rect (at 0 1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 32c6ec52-8304-4347-8052-189b080e86a4))
    (pad "4" smd rect (at 2.5 1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp a5d1226e-5753-48a1-a77a-07b3b90c16b9))
    (pad "5" smd rect (at 5 1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp c066ff05-f0aa-42e8-82bc-93d91aa64743))
    (pad "6" smd rect (at 5 -1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 17bb7b64-7622-4905-946d-d4163abc065d))
    (pad "7" smd rect (at 2.5 -1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 5c0288a9-c2a2-40f3-b3de-96c8d5fae2f6))
    (pad "8" smd rect (at 0 -1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp b6ff1ae0-8eba-4b13-985a-82c1ecbc27c9))
    (pad "9" smd rect (at -2.5 -1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 173d41af-fc60-43a2-ab08-38e0c5c8b433))
    (pad "10" smd rect (at -5 -1.8 270) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp a71593f4-6fb4-46c0-9896-367bdd32e524))
    (pad "11" smd rect (at -2.5 1.8 270) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp 9bd51e86-9020-44f3-8068-9246263ae32b))
    (pad "12" smd rect (at 0 1.8 270) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp 3c522ca6-041c-44f4-a988-6fd4db050c65))
    (pad "13" smd rect (at 2.5 1.8 270) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp 370fa44a-07ad-4796-aed7-55a5a7b3723e))
    (pad "14" smd rect (at 2.5 -1.8 270) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp 871f475d-67e0-465a-b9a6-9197af289dce))
    (pad "15" smd rect (at 0 -1.8 270) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp 76134abd-6171-4340-a5be-efd4e33995db))
    (pad "16" smd rect (at -2.5 -1.8 270) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp e2124fce-3bca-4ea8-92f5-ddd80fd83c1f))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp 2c5db827-6f8a-4ea0-b5c5-972a431ffbec)
    (at 170.32 103.81)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8687b777-769c-411a-ac5a-40a2d9a7f6b2)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 575d78ef-9e36-4dea-92a9-cae62186a701)
    )
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 21375ab7-4330-4a46-b4a2-d28952fc7579))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 63bd16de-abb1-436e-a70e-130e3c023a0f))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 88adea75-9d50-466b-b229-092829eb3dc8))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b4a93eaf-0488-43be-bd2c-8fb6a6a2cae1))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fe2324a1-e76a-497c-8427-43595973b7f8))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 157b52b1-051d-4685-9f37-8e81284a5933))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6747c898-0e42-4df0-b48b-2136dd100f16))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bc143f4c-b3ce-4f23-9ebe-22d86875f24b))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dd36e767-b184-45cc-a7f0-0db7ddb8245a))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e8602449-5823-4676-98ff-68c0fcc3455c))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 66481d2d-9607-453c-a2bf-7e6b4296384a))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8754bf60-9720-4261-aae2-09d8cd40d03e))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bda73b44-62c9-405c-bfd8-af204400201f))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ea8ce460-cbfa-4945-b8ba-af35419602d4))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fe5650c9-462e-4612-8a9f-57fec5f946e2))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0b2e2aeb-f481-488a-a440-70d4ed75027d))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2b19d01d-5f6a-4356-bc84-de63b361fe88))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 94f359cc-4684-4d00-9534-31d71f3f0267))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a0011aac-7448-4a38-bb41-e08432a4c9c2))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a266d0e7-9ace-487f-a19c-83239ea052e7))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0966799d-a7aa-463f-b7de-452833bcc08d))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 52bd5267-b4dd-44e3-958f-8254b6e631ea))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5fadcbf9-1f14-470b-869a-d44cb3a953b9))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 658c985a-8ea3-4c1d-b641-33cd6cdbddcd))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e3783e5f-a528-48f3-8e49-6650626443c4))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp 2e124a51-0e95-440f-b46c-8edc0ae38543)
    (at 170.32 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 40ef1ac3-71ee-4fd2-9ae6-a9eae0ddfbb6)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 98b266d2-514b-46cc-96a2-8de2c9d49bff)
    )
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5be5252e-f1d3-4f67-a536-dbf25524a8e0))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 756a0d0d-e142-4c84-9e26-c387ca4665e2))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7d52afac-2206-4c71-b9da-f788c2de34bf))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ac5e1ab3-8e2d-4d6a-9c01-c1c0304a71bc))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e07a59ef-e6db-4e6c-b51c-f1c0d5fe6d6d))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 116905d0-6175-43d7-b3a6-a9d7a44eeffd))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4259718f-2ea4-4abf-ae95-2461a59a1bec))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 81077c10-359b-489d-b106-f9ef79c54130))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a628da77-84af-4d12-99e7-ef276742a70a))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dde3a50a-6e48-439a-9b8e-09ba15ffefe4))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2b99390b-1684-4441-a065-2a6b9cd88bf1))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 44509e90-a625-4050-9a78-3ddf140e0221))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4c1c9e18-082b-4c46-834e-d99f73509be7))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7e0f864d-1043-4314-a51f-03b5703b5b9d))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cdc46607-1518-4b51-ae1b-c6b28db05ca9))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 54908f37-8abb-4dd7-a405-ebd7e330eb6e))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8c850e87-668d-4df2-96d0-6d09417315c1))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8d6f8dc7-44a9-4a71-a5ab-1d869daf11d0))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b61ec0fb-171a-4baf-b303-f7b510882d71))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f4abe666-0294-4cea-a9e7-982b58202a36))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 342065f8-e35e-419c-a428-fb1785041a68))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 55d3959c-ed2f-48fe-a08f-14870b7798dd))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6c1597be-1d35-4d1a-bffc-a3e2505b675b))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 83f1cf79-a047-47a8-bcf5-ba00065d8d75))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d95b8aa3-199c-44a1-9452-1c8db5b0bce7))
  )

  (module "common_footprints:8mm_base" (layer "F.Cu") (tedit 5F75A806) (tstamp 5224b49a-a946-47a2-a624-ef50b86544b8)
    (at 188.7 100 90)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 90 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 390ee007-e2ef-43cf-801a-39a02e644429)
    )
    (fp_text value "8mm_base" (at 0 1 90 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 1b90a110-ba30-42dd-b23c-701a1b3de047)
    )
    (fp_rect (start 7.5 -0.8) (end -7.5 0.8) (layer "F.SilkS") (width 0.12) (tstamp 1db9fc2e-ac6d-4fac-8896-2332424a1e20))
    (fp_rect (start -4 0.8) (end 4 -0.8) (layer "Dwgs.User") (width 0.1) (tstamp b411e7ce-ad77-46dc-9620-c3b1abb2a02a))
    (pad "1" smd rect (at -5 1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 4068b327-2ef2-443b-99ed-d50864c8185c))
    (pad "2" smd rect (at -2.5 1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp acacdf40-f3c3-4cdc-a88b-b16737a3458e))
    (pad "3" smd rect (at 0 1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 661bf4ae-8bea-4958-888b-b1136bfdcbc5))
    (pad "4" smd rect (at 2.5 1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 272e0d08-33f8-4e7d-9dcf-cc2ddc37db8a))
    (pad "5" smd rect (at 5 1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 3c0b2959-9a66-4c65-942b-feead5e49c43))
    (pad "6" smd rect (at 5 -1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp a45ae410-c19e-48c1-81c7-d2d88ec9411a))
    (pad "7" smd rect (at 2.5 -1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 0dc251a2-8853-4fea-a472-1b6e8f144104))
    (pad "8" smd rect (at 0 -1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 1f3a9cac-b35d-45f4-84cb-5aeb4fbbf796))
    (pad "9" smd rect (at -2.5 -1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 34fe2713-8378-4421-9bb2-ae0e5277ef79))
    (pad "10" smd rect (at -5 -1.8 90) (size 1.8 3) (layers "F.Cu" "F.Mask") (tstamp 104d770d-e576-4a73-9c36-f45b571a4fa0))
    (pad "11" smd rect (at -2.5 1.8 90) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp ed04f422-3321-43d1-96a2-80ffa955450b))
    (pad "12" smd rect (at 0 1.8 90) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp 94a276a6-d53a-4e98-bf13-1a59b218b4f3))
    (pad "13" smd rect (at 2.5 1.8 90) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp 13076f15-4239-4f5a-9fa4-7fb0a39353af))
    (pad "14" smd rect (at 2.5 -1.8 90) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp 1a19b898-a432-42b9-874e-657efca0e684))
    (pad "15" smd rect (at 0 -1.8 90) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp e1256e8c-c399-4c3e-8da5-1695097733e5))
    (pad "16" smd rect (at -2.5 -1.8 90) (size 1.8 3) (layers "B.Cu" "B.Mask")
      (solder_mask_margin 0.1) (tstamp b197518d-2bac-4e29-83bf-a521485113eb))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "F.Cu") (tedit 5F805ECF) (tstamp 60abde2a-b5a2-4744-964b-9b22a6533050)
    (at 123.33 94.92)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 5d9e7310-cdec-4889-a649-4637cafa5338)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 1 unlocked) (layer "F.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp bd084343-36fb-4ea5-9024-12377c81aa5a)
    )
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 06bb01f3-e74b-4e73-8836-8456733a25b1))
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 492f0c04-69e8-4106-b940-22578842cfac))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5c87fe45-35b3-4353-a0d3-254211712d8c))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 78470b69-08a4-4daf-84cc-46b211f51ec3))
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a1d71970-d1ab-4915-a464-9d3589b78f60))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1d90bbae-9878-4866-97b7-7f9585e79e1f))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3cba1d7f-5f8b-40cb-ab2d-9b9309ef506f))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 66c7b3b0-fb6a-41c4-9462-c796ae38e6c6))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bbd8b7b1-3c8b-465f-8376-9b1948ac7dc6))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dd6ef473-01ea-4db5-a3f3-41014f1d80e1))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0b65952e-ecf8-473f-8948-bba3c27d0a78))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2de1bed5-c6c1-41f5-ab05-e7e76eea977b))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cf39f682-252e-4e10-92c1-214058eb7fed))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e84347b3-9f80-42a9-bcb0-53b7caf8f216))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f580b397-fb1b-4b99-bae2-d84f9a713bf3))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3a420b36-19de-4a5d-b42b-dfeb25b47340))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 59a64fd4-62d4-4d10-b1eb-c98e1deef8ca))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c3fce3cf-3d88-4ff5-a2de-e1671b0ef929))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cc41d2d2-3e89-42dd-b9af-737f76186a82))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cc583ccb-be10-4162-b3e5-3029bb3812ed))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 421fad19-ab73-43d8-b2f7-5acdb710cb5d))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 48b3c71e-5943-483a-9f49-1f4ec72d529f))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ca98d0f5-96f3-4e33-ab1f-8010009106de))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ee9c41ff-25c9-44d2-9b5f-2549d3c4b40f))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f48b7afc-13c3-472d-9e70-c34981de021e))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp 69931ee1-ffc7-4468-aa31-543dcb37a263)
    (at 181.75 97.46)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp fb9b6b6a-9f00-497d-9fd8-39df7bfdf53a)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 9637d2c4-776c-470f-9261-0c2a8caba975)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5f3eb111-089f-4d55-b5f3-b314807d7d94))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 81f0946c-70c6-407b-8deb-9b0f33a6d90e))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 96830e93-75b6-4954-8253-b7064b03097b))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e0062111-e991-4221-99ff-869b72c277e6))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e3607de5-22d1-4809-b102-c5fbf5a61bf1))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 91297eed-f81f-4648-88a9-4b9794912b9b))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c25b83fd-1f7c-4aa0-8438-a63de2e9841c))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c2c99d6d-ac57-41bf-891a-6be2a9c59215))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d35d66ee-3ba5-48e7-b824-29687862ae41))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ff8b46ab-bc64-4dae-8672-3f4e6acb674e))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2f814915-9991-4f54-8ab3-9a05c1983c7f))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c0c39abe-2613-47a7-909b-caa394fa19cd))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp de071f51-294c-45bc-864f-d6e5bf50e832))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e2436326-0da5-408b-9c9d-b914c0d5370c))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f3d4fb7e-5844-49b4-b9a4-b6435e9d43bb))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 23b1b4e3-8c4c-4adf-b961-0f9637e43d48))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 47bc12bd-8ceb-4995-a4df-5c133b232167))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7dfe85d1-d567-4d6b-8237-5e6354bb5714))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8b1c87aa-bc31-4697-8eac-e4c149669538))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp aa4385fa-1f52-4b93-a234-0fdeb76478d2))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 426c510b-bf28-4652-9c19-b4a5af87cf61))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4b07a10a-a2fe-4cc3-ab3c-dfdf86b4e144))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 68e6326c-7a5e-4179-99db-5f142f057dc6))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8d60566f-a119-4cbc-829e-95bd26ac57cb))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ac31194a-9eb9-4f5c-bde0-29b9f86d19d6))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp 709f808c-6f95-4d3c-83a4-cb6540762448)
    (at 170.32 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0a6ef8e7-cf8a-437f-a8a7-d5ce58d00aac)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4ba85ef5-144e-4924-b561-aff2b5c64ff0)
    )
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3283fe04-f3ab-421d-9895-b1e8ced68eee))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 37055375-0dba-4b30-9e2c-810fdba1c3ca))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4017c973-c4cc-4769-ba44-0f985e23bb61))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7dc3bf6b-4aea-4cc8-81f2-dd1c55dcb73e))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9579d5b4-d4b5-4ce6-9cf4-026d18ddb597))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6fce2700-d6bb-4339-918f-10cd1fc249d4))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9fb93568-09ed-4472-9d68-fbfbbaeec032))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b9578eeb-3716-4bed-ae81-d123c0190ab1))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp de4d7415-c005-446d-84ce-eb5372c1f24a))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e75de6f9-2ea8-4765-8e8c-b6fcf124bbd8))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 08f04ca3-cdd5-4dcc-b3f5-343b798f2c51))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 270f3607-3a3c-4d25-82cc-e78e7ae09524))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9de22599-05ad-49ec-ace9-877314390380))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d35ff2b0-ece0-4c9f-8e05-213389af5fb0))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fce77ae9-f385-47a3-b008-627b81bd5054))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 054def8b-60ab-42b3-b090-956cb3f12fe2))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 35f14528-bffa-4b5e-8d47-89ed19dec844))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 482453e0-7e47-40a6-83fd-231414f564ae))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 64b03bcc-822d-4a83-be7e-b8e126623af6))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b5552f3b-1ebd-4ca0-90e0-e3eb0344b8eb))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 20ba7fee-1c67-4cd4-a172-edc3974c277c))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 640863f9-dc6a-4a9a-a915-47b42468ba6d))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bc36287b-f7f3-451e-95ce-3a12f6091830))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c541ac35-83be-4f07-bc10-0d5934e32a4e))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f3089539-f0a8-4850-b37b-d2f113bce4bd))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp 7a7ceddc-24eb-4707-96b3-29789f036784)
    (at 170.32 97.46)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp cbe38f88-22b0-49b2-9894-34b8ee55be10)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7f7eec48-5d91-4d66-a927-d8c2daf7d453)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0e20ce18-4881-4d50-b3d2-bbeabae924e5))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2cd1915f-be09-4dc2-8b8b-e91ff65ac3cd))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4402fa44-3763-4189-89b0-446d365377c7))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 539045a0-461b-4a3f-b022-cc6162106013))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5488c991-f8ec-4bd7-8824-a960f7c9f7e0))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 00085bbe-c568-4b04-9582-5ba406786968))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4200bf87-5cc8-437c-be42-92c1ecee1394))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a9b65fb8-8fa7-47e6-b498-dde494451251))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d1859896-75b0-47d5-8464-de664d2008ee))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d2c20eb2-a231-4387-947b-ef85c07988cc))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2eac7f61-4289-4eb6-af25-479ee40fdf11))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4ae93d79-e250-49ed-bb46-8c58620afd9f))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4fbb65fa-c422-44a4-96cb-88859c255013))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6f861a48-33c8-43e4-a8dc-a60a956bf5b7))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f4da7679-6ea4-4183-9264-bd8783ea329f))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0f941361-5726-4d3d-b26d-a8f0a511c1d6))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3fce5f29-a1d6-4d40-9ccf-70bf1cd468a6))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ecef6e20-94ae-4885-b275-51c59e55189f))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f2baeee0-4a60-4ef9-93af-08bb6a81bcb4))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f4abcc0b-90a9-444d-bd25-05a615a2cee4))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 09623071-af83-4c95-b641-6c08e32ad5a6))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 609ca61b-f4e4-4746-9e46-652ae94e54f9))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7a8919fb-c3ea-4418-ad08-03a05f62988b))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b2664398-d103-417b-868b-e0c30cfe3e25))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fefe71dd-2fbc-49ce-8856-9d866804476b))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp a5b52e5e-d6bc-46a0-9c57-a5226ebde068)
    (at 163.97 97.46)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 98618f45-94b8-4b70-b5a9-1a5520de2cb8)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4d6365a8-47cd-4bcf-a0bc-223f62027eaa)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0943f901-a874-4a8b-8a2e-9014dfd8164a))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0bdc3d8d-d409-42bb-b766-ea75dd060e04))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4e3662c7-6a1e-4c67-be11-a84748879e42))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5615d73c-6083-45b6-a931-8fc28d114410))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b918da5f-cc2d-42ea-bd2c-e3a9cc8a7f03))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 08a1c670-d1a9-4b7e-a655-50249d855e8b))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 138beb6a-91a9-4fbb-8a65-750d7668b8fa))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5882a620-d38e-4b97-a433-f4e3a5aa6426))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6bcc0ecc-23d0-443a-9c83-24753e1b28f3))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f189b45a-a90d-4ffc-8f7f-0d406de9ab85))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 51e46228-7cbb-49c4-bb28-9c42ad7a9454))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 600f24fa-959f-43a5-bd67-1ee5a8c63919))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8f8429be-d2d9-414d-8c28-e3d808125741))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e9cb0c0e-1676-456c-ab07-a10c96b25773))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f0c33880-bd7f-4b8a-bee0-55093a76f154))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 052242e0-84c6-4749-8378-248ec94fae93))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1781fe65-30a3-4059-ac2f-c1de684f95df))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 520f26a8-c10b-4f17-a195-60589eb1430b))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 71c3520f-1106-4bce-b2aa-b94710614361))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 91878d74-ea18-47e6-bec4-16cfbc9896aa))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0fe79af1-27a6-4ee3-9197-6c06c0d73f65))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 10be7289-f6dd-4825-82fb-261ba0aa7360))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3f489c5c-f646-4a76-954f-505cf4b4eac4))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d25d0880-d635-42d4-90d9-fa6462bcbc97))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e96ffbe5-4fcb-4371-bb6e-73acc82f65df))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp aa085c72-4714-4817-a670-1750bd14910a)
    (at 176.67 103.81)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a2c47c5d-3d05-4e1a-9c2a-cd364334f790)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 78464bc3-9177-4635-8061-ab926f554ab4)
    )
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0b1466db-3d9b-4ffc-9b7e-75323490b728))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1724c10c-432e-49d2-b794-de7699fded88))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9b8caf03-dc17-457d-907c-c192a2933817))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b390c23e-d2a7-488a-856f-b14d169bd8ce))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ce47da9e-f9d3-449a-8a4c-b12a73915f8c))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3e668d6a-5747-493d-a329-d456fb0f339f))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5a3697e0-7a5f-420d-b596-c60eeae523b9))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 842fb38b-c906-4c91-83be-a9f87b2a4f4d))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cdb71305-6d3b-4ba1-afd3-b64cefaf9986))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp db36e362-536c-4063-a890-b05db06b2f89))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0082e1de-f6c6-4750-b898-748144b56629))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 28b46565-d3dd-4721-bc8d-5cb883aad1ce))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3b514ab7-3db5-43d8-abcb-894e0c63e154))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5ca0d3ea-260f-46cc-b09b-ba4fe06deac5))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 703d3a0e-52ca-49c7-bb60-9beade739c0f))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 27df1896-5c19-4414-97a3-93e7fe53c110))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 633ad61e-015c-448c-bacb-f850b61e4ee9))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 906d6d12-3f64-437d-b724-5466ac643970))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bbdd5a42-2658-4a96-81b4-bc20d3975199))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f3e8ade7-f5b1-4c90-9600-7d9e27c0c64a))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 08b15fd4-9dba-4c6e-b921-127323ac4b3d))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1cee841f-a553-4154-a583-6cb4b60f6735))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c4719fac-4602-4f6b-9b7c-fa5a6db994d2))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cad1946c-c72d-4f0e-9a54-39f383cb4453))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e6a156d8-3120-4a42-9e8b-0b1dead5afad))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp ab1c94d8-c1e3-4120-ad0b-cfd3ec47d8c7)
    (at 181.75 103.81)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a30298d1-ca96-4ab7-9df7-52eba8e57ad0)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp aa9f09ba-7106-4076-b80f-e5a03972fc9c)
    )
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 01b75afb-5141-4c71-ba3a-97707b6146db))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1bf4f1e5-77f9-4e9c-8067-e3c937b16d8d))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3a61f075-0321-4a77-947e-e5cc54b53052))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e76e87cb-c9f9-45ca-a07f-f3ae5f5d52ef))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fd1ab4be-5ca9-49f1-90b7-319948ea612b))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 03d60789-f72c-49b9-9e9d-0c668c8799eb))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 546fc7ef-8bf6-4370-a3e1-f786d3f7f138))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6e24f529-b9ae-4d91-8b9a-4a8d11fd5c8c))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 85d98bf1-efb4-43a6-a094-066b0d08e989))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b8a753a4-bb6c-487c-91ad-7b64151ca29d))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 007a591a-ce44-4662-b194-e5013a1bbb48))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 076b8b76-c97b-400c-a489-9748e21c7032))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b252f71f-81b0-4f54-8a4f-cad40dcbd201))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f75256fb-9b73-4e84-a46d-e6105395d4dd))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f970cfd8-9a80-4dfd-b6ad-a7a40a1b895c))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 39af3d09-607f-4745-af28-8fa5ee601609))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3cc25fbb-2b12-4a17-b2e6-5f11040b183a))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6ea444ac-d3d6-4354-abd9-b8e5aff50dd8))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 94781e81-da07-4452-ba4f-937ff8be1809))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c4d40be0-67e4-4f0d-ac5a-9232df25c321))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0cc9f8d1-bb9f-420e-a25d-3cbfb0b7a837))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3a9c3d5f-9843-4753-a1d6-59035b8cfbb5))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9a383f5f-2715-4ec1-bd56-f5edad1aa744))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d7f71cd2-0065-4181-adcf-f26cb4fc849e))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp da5f30dd-ebb1-4a81-b08a-30944352e7ab))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp b5700cef-afc4-447f-a64c-5bb3a6ff4bdb)
    (at 163.97 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b73d6b38-051e-4dbc-a8fa-48f07dc3aee1)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp bddeeb1a-00a1-4c70-a320-33b3151d15a3)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0a46af5a-bd6b-441d-8651-4fa9743d4b0a))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1fe20a76-2fe4-48ad-a6c4-105418d1d62c))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 20c0476e-bbea-4ac0-bc92-3ee9fe31e5f1))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 37ab1de0-451a-481c-8079-7f18a89c1760))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c2b8749d-5473-44fb-994f-26ecde22ed59))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 23e17b30-045b-4759-b877-75f5970f4bb4))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 40001dcb-4b3f-42de-a9dd-f2f7a505f093))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5255bb0a-c127-4707-832b-6e7a2d510527))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c7e46970-0ea6-4a75-bd3a-d9019e819c2b))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f6aab9e5-2d3d-46e9-800e-c80b77ce3e16))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2103a10c-eb58-409c-98ba-2da2d90ac070))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 23e778b5-600f-485c-9950-ebfb5c1cc255))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b1ebfc29-dc70-42f9-92ef-a5bfcc7381ab))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b3b4b24c-e56d-486a-9d00-93c8b2097328))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d2cd0268-4972-44f4-8e28-de1ce5891984))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 201e38c1-9ab3-4d49-b811-8c1376f6ee90))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 477f64d8-ee23-4b5d-9506-0df942567624))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cbaaa038-da30-4506-9f0e-33ee16cb6390))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d189e282-96c4-40a0-93be-7afc04b35933))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ed057181-8f38-4169-8f79-28c61646fe57))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 24698d0d-f253-448a-bdaa-20de5896294e))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4cec691a-c6e3-4b5c-b5c1-fb67e5727c7b))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7aefbb8f-8615-4bb1-8c6f-a3e615204c9b))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7bd9c3cf-895b-4821-b888-b967fefc84ed))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b27f79cf-693b-4581-b861-5698d84be35a))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp bd7b6236-f3fa-4950-af05-7e39fdd4c7cb)
    (at 181.75 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f0563e45-86f3-4ff7-9a7c-79a7d1c38e9f)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7e9302b1-ea11-4b2b-9828-835e14e1ab13)
    )
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 064886c9-588a-45f9-94a9-1df337f77899))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 37c25dfc-8dce-4f03-9183-ccf71ef1e2f7))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 64b33fcf-403e-4589-b991-2370abde7499))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 654be602-0e1a-4de2-be50-4d8fe6eaa77e))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fe19fbd9-724d-4f83-8b1b-2b4c6994a26d))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 02fd7ec0-6475-4429-a65c-2fdae3a3e888))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 23de4459-d2fa-46f1-b0b7-9e37d7f292d6))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dee4eebf-f557-4e52-a351-85a7dabc02af))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ef21e68b-9aae-4d5d-a01d-a272c810b5f7))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f78b72f1-0968-4a54-b976-111ad34d3a19))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0ed5bb00-eb78-427f-b5d4-dc7377e6abab))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5eb720e9-8a38-4a83-83df-f9aa7a02cbc0))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6237b6a6-6b33-4ae6-b64b-25067b057d79))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a8b836eb-c105-44a3-98ce-14f8a71129bb))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp af43fb2a-a1b7-496c-a1fe-93fd8fd21c7f))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0400314b-4163-46f0-8320-cf9bb39bf1fd))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 149880b4-3668-409b-9ac2-5287ae7fbe0a))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3977beb7-2a2e-4111-b5a5-a6b68f313eab))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 40588668-6e9e-4036-bf02-6be77471e889))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 55d5f2c6-3af7-4c53-b529-27b551b76d4f))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0eb37a03-8b45-402a-ba9a-f45c140dfa65))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1064dd38-94d0-4094-8b75-1177b3db75c7))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4a411671-c46c-4283-a5ee-a867886f1d15))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a1e8ebbf-9202-4022-adc4-5532db69bee4))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dd5cdfc9-6d89-4b1e-922f-ac0c51b3e1f8))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "F.Cu") (tedit 5F805ECF) (tstamp c85b31a6-cd7b-4fff-89df-c6b9f765b872)
    (at 133.49 94.92)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 1a87afaf-8dbb-44f5-8800-13cfad4e4f2e)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 1 unlocked) (layer "F.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 2714133b-ff63-491b-bb75-370839be2b51)
    )
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 33d84bdd-ed5e-4439-a938-9324999c2f9d))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5c540598-c5fc-449c-92b9-df9579dacc0f))
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7f4c5f2e-5772-459b-a7de-a9232e2df4bc))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ec7cdff7-44c1-42dd-82d0-da68b3d4512f))
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f6dd4a29-64b6-4d68-837e-f702d507571d))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 35578d08-e333-42e0-94b3-f634a98a770b))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 43e9dd65-e18d-4b88-b2f6-24e2329c862a))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c226b9d1-b479-4cff-b4ad-bb57bf6bffb8))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp eeeef646-5cc7-4b94-8aeb-a74458bb01bc))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp eef00bd6-26cf-4e8d-b863-b8a9c4893bec))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 012eae2f-2bff-43eb-8542-18bb9caafba4))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 027c3e75-1ae2-4cb4-a534-d39d1f09c07c))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 37740545-bb83-4e85-a455-216e8446e192))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d2359c51-b307-491d-8a04-e9c6c9c06f6c))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d4449396-52cb-40de-9fde-ddd4b83646ca))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4abac71c-4e22-4f24-8063-65e013d602d7))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4d31586c-655f-4266-b79e-c712cb087b55))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5960233f-512b-479c-8f3f-af459dd138ad))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8865a80f-f7ba-4d2c-9fbc-e42967d09683))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 949368d8-3d9e-4206-a7e0-d373720e78cf))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9b726a36-156c-4bef-a725-736dfef74b75))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c6879b76-b73a-47fc-a320-09256867bc79))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ddef0d06-8b2e-4496-a65a-3a6957ef5ac5))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e257b6f4-8ea5-414b-b728-4d6b0b11efd8))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ec47c0ec-2db4-46fa-b6cf-3f5339a6a430))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp caef6667-845b-4879-ae2b-7a5227a13a2a)
    (at 176.67 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d63c8fd5-3b17-421b-b53d-f245e5cd1fc1)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 566e78e9-375a-4872-a854-76d55e7b42a8)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3a1818bf-5513-45d7-83b2-9f7c8ddb4544))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3a270749-d994-44f9-991d-3b586ed1f051))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8fe93279-bd12-41c9-b6e4-ad967b7a0b67))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b4ce552b-d876-4b1d-8594-7d6bdf57638c))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e6eaeb39-d6b6-451e-9937-c600ec4a9296))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 30344cbd-e3a2-4133-a8fc-50875f1ee5b6))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8463be45-b902-4a56-aeec-25cfda4ccb6b))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 98c1f9c6-8b4d-4cd1-857d-7e5e8d618626))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bff1f35b-1a27-4177-bcd7-21209aaea176))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fa7e2deb-529b-49a2-8be9-6ba29411b85b))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3b8745d6-1874-4eba-996c-757f178e1822))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 50a44a83-0862-4558-b6b3-42d7be49f514))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 56487e76-e70e-4223-8fee-5fb11474ec70))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 66d383cf-6450-4eb4-bb76-5ac8cf7d027e))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f39427d9-cd23-4b87-8b9d-1a9a696a44bc))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 516e5662-ddf8-46ab-8c26-0912fcee1a0f))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7e553c44-c1fd-4913-840d-033f6ff51976))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7fce8325-a12a-4b95-8817-de583fd212cc))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bc86d4e4-2c47-47fd-8dd6-b62bbb8d99d2))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d711b898-3662-4f21-a7a2-65f7dbb21fa0))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5e6269ca-25b3-4606-be7f-7d0927098000))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9ab75334-fe87-45f4-897a-05e6bc755548))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9bca6214-b549-4b45-9f22-2ccc6cad8f06))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cbbae1a8-17a0-47c7-b709-ab22193328f0))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f0ef8f5b-ee80-4e91-b655-4b35f3c457d3))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp ded11d9c-6f70-4344-939a-98e5b1f3536d)
    (at 176.67 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp bffd5b22-649d-4acf-8643-073f449cfe5b)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d67a0f6b-c425-41fb-a759-c0c7e85f307b)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 539b9e92-69b5-4a24-85de-d1613caa7acb))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 68500c44-9122-4646-9ac5-43dba5fd148d))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7b0ded94-0710-459b-8189-123a34b5eb78))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cd31b3de-79d9-41d4-a789-cfab542f4699))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d1edeb11-b5e7-4f18-8cdf-66509deb0209))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 18167882-2193-4c9d-977e-2ade441f47a8))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 507cf506-0999-49f4-b3f3-547e00ece513))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 55d9dc76-c091-4e89-97f0-180a041ee0c4))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 854d163c-f4c3-442d-ab5a-4901bbc66c24))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b2578220-7899-4f2d-b5bc-07b308fe5073))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 64ff8610-a863-4cba-9bf7-558a1122b7f9))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c3f22b78-f159-4958-b949-030d75a70f3b))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e132cabc-cd7c-4b15-8ef9-c1104c75daa8))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e5680563-6425-4be4-b048-82d1741f7139))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f95add2d-1af6-41ab-ae95-1dbb8deed12a))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 073e6cca-4da1-4bca-88c4-97a229ad3dbe))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6f3f4cb6-7e15-444e-a74b-aee8b3ae795b))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 75751fbc-9d22-4a40-b2a9-cd953669b599))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cd391053-e35b-4cb5-af47-73699f214154))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d71cef3a-b9e2-44b7-b3ef-487aea8af80f))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 30a11411-f365-4fa3-88ce-df252c4ef8fd))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4501a64e-5697-4a5e-9894-850983a117ba))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 51ff96e6-de21-4e3f-a623-103201d647e8))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 799e8ff7-d9cf-4279-bb06-2d22cd5c5b49))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b0ba8645-4b83-419c-9e7e-0bc8a9130920))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "F.Cu") (tedit 5F805F0D) (tstamp e699147e-859f-454c-9e7f-284da6afccf2)
    (at 163.97 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7b4c72d8-1ee4-4de4-9890-2b3fc64f38c8)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 1 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d1abe540-53eb-4244-b03d-3025a35403c9)
    )
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 120e0a30-0ece-4da3-af38-f3cac1a132da))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3cbb84b2-a76b-4c3d-a0b6-15e8d6138d33))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8008d229-7ef0-4f21-8fc2-43460b4e9e3a))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 94468f41-154e-45e3-a421-01794f7a4035))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e118ca50-d582-4d3c-bb79-a74094ea225f))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 08e6ca38-ccda-4d0c-8304-9842b1091c46))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0b642cb5-e96f-4f27-9de3-0fff173079b8))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a973f885-24e9-424a-9bf1-15b6cb23101b))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e5edfb6d-3e2d-4b81-89bc-67757b78b7ff))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ea9e96f9-d2e4-4739-8576-965c209f15f8))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 22579382-0a7d-4efa-aa15-118173dffe81))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3dc30fb7-3ba1-4f4c-ae7a-6468ed5d1f8e))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3e850ba4-1091-435f-855a-eac6f482a440))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a3d04138-0e54-4de7-a108-ea8dac0249e5))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d3ffb86c-19a5-4542-9389-d88bf6b94611))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3084f812-c446-4f2e-84e9-2a731f39a0a3))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 76c1beb9-2742-43e2-9252-1ba1017b235c))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp aa7e348e-072f-4246-b0f6-59143c43483a))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bd1ed738-ab8b-47b7-9788-d8444bbba7f4))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cb61d5fe-0811-4685-b411-411256e31f12))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1dbe6c1f-d198-46b1-bc9d-c7c29613c8db))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2ee2013c-ac97-47bf-a1c5-439d066b8016))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp aaddf484-2941-4c12-9f60-6d51c2bf5a5f))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp af317d83-1b51-4c16-a256-bbb8169fd192))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b5a0d573-d20e-4fdf-ad9c-d4c0ed034498))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "F.Cu") (tedit 5F805ECF) (tstamp ea5ab526-1da8-441c-92ac-7b07d4ac7fbd)
    (at 123.33 105.08)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 -0.5 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 60ab5494-ec53-413c-a7ca-2f9be621629d)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 1 unlocked) (layer "F.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp c2568d85-7e82-44d8-9f13-11a2399031bb)
    )
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 20cd49d1-9374-4e02-9be5-f713fc2da97d))
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3b24735b-98e3-4352-ae5c-9d220a168ca4))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b462d826-f0fd-4883-a5c3-b855c3567cdd))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp eb1eca59-ea80-483b-b02a-d10614c8356c))
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fd847ca4-e92d-4865-a45f-0340dc479c71))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4193112a-96f6-413c-a2ed-281946375ec4))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4a413a15-70c3-4e4a-b5e0-7ac57ee56dae))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 787dacac-1fff-4353-9acd-95a7785789b5))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8906c54f-1d42-45f7-b8fa-b581a1abe724))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 94e480ea-d18b-43d8-b490-8545092129d4))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 234209a2-0454-4b46-8d25-e1b723e9a983))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 395ad59a-e3ed-459f-99cd-0ae8a2e6a6c5))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 472ec4f2-5bdb-4b39-b08b-fb6a51431da8))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c85b6921-95bc-44cf-acef-42ddf183a67a))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e11e3f12-68d3-4f16-b000-71a3c7b5467d))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 07cfbf41-e240-4797-b954-93b71c25e729))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 23e2d74d-61e6-4c06-9f4d-5ef982bc4de8))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 429c190f-3c14-4aed-97d1-596af7abea54))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 71bc8153-a1b0-4383-9445-f6d4c303b524))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7556da35-be87-40ed-a573-dd37c3c7b70e))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2205d210-07ef-4436-8abe-5063cfc334e4))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9069cde1-17dc-4999-9e47-ac3ed04f45df))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 97a2f530-abc2-4c65-a308-eea07cfa6c81))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b6123f9e-f909-4fa2-bcf5-afc7e12bd0f5))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d9b9e43a-2dba-4aa9-a237-574b1390af62))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp 007bdf42-5296-406e-83d3-aad2438af236)
    (at 170.32 102.54)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp ba79af29-b708-46f7-905f-8280eb40c649)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 8c4108df-b6f3-4adb-aa04-b4aec56a7eca)
    )
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 060443ac-11df-4d53-9dbd-cde0538cd1b7))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 67620b4f-43bb-49c6-b269-8590ee38ddec))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8c748dfe-91fb-43a1-812e-169b52f528cb))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9b2fec77-6da8-4c6d-b71d-ab352cd4ad06))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9ebdd126-20ce-45ab-a8fe-4e0ab1805b08))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 528ebcf2-3109-4333-b4ac-55c58a19cb83))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8590ac80-3428-4f52-8369-3721131c16eb))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8b281300-91cd-4f4d-b503-dc97f5d05d3e))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8c8e5e22-42d7-4ba1-b8c5-7c722fa96d6e))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d0f2411e-74f6-4e88-bd69-9fd230c691e8))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 21cec7c2-d264-4725-82c4-6de0e410a5e9))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 75cff0dd-1c9e-4a9d-bb3e-4158e44bdbf2))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 95096ef4-b69e-4806-b690-5987ebf00adc))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 958f3036-6ab2-434b-bda8-a56241a219cf))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e1f5d26e-26c4-4433-ac5c-b00201eed13e))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 025c0133-1f1e-48a6-a760-aeccadad261e))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1bbc7bf6-6370-49cc-b9e5-354e81335b78))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2c90919d-bb1c-4019-a089-262c981dbd5a))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7181108c-17b4-4a8a-8df6-93cca0f61f3e))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e064dd4d-c9a2-4bcc-991a-8f22bd01d144))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 41c5ef00-9923-42ae-97ce-fcd4156a103a))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 60be6a74-9023-4162-86ec-80534e211c89))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6a63bd49-0a16-4f01-9793-ac6823859fef))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a517791b-4716-4de0-b709-759abaf2cb86))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c53165a6-3af0-411f-b51f-41b067192e3f))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp 0b6e861e-aef1-4c60-ba0d-3fc670977fd3)
    (at 176.67 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp b4ac1961-adb8-406b-a13e-ae27d720328f)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 786dabfa-243d-43aa-823a-2fa4f72cca57)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 41f69f00-7aa0-4048-870b-013d8efff358))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 575d0153-41dc-4638-80f1-80e2533c7e99))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7f733420-50e2-4d29-b535-fa883d3fed01))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9289b895-729b-4b64-8c51-ae9d92b68b7f))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b497c3f0-9a9f-4391-9504-faeaf99b93b2))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0a1a90f6-38d2-4498-bbd2-a57e64e9f46c))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 19c8fee4-1d90-406f-95cb-7e04af447fdf))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 80a7b945-30fe-479e-afae-7d11cae90556))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ca390216-136f-4f66-8304-8695ba1519fa))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e1750958-cbd1-4f54-9d3d-c8cb0e1f3be4))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4d12e910-8921-4bca-9b3f-3afaad59a520))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 79877eea-d966-4e3c-9216-47cc5897f1a4))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9fd1fb0c-416e-4d5e-91ef-6a580e063713))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d0a78fad-ec3c-4ed1-8b25-761f1194c3c3))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ef7eceaf-32b1-4316-b09a-46c54a7a4234))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0a19c96f-6675-4c5e-b6a4-4ce41455ad44))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2528be55-2a26-4b5d-966c-0a3e622031e0))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6e4535d2-450a-451e-beaa-7195a0ce9136))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d1625b29-c7ea-4127-923d-a4ffb68b93b0))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ef9ea825-57b7-4026-94ad-4f7eee94f14f))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0de31060-1465-419b-b480-9ba7894db1aa))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 99ec8277-e9c9-45cc-a0a8-104f3366cadc))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b7123ff7-76ba-49ff-a758-df94195869c5))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d20dc362-f987-4d96-949e-13a319d894de))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f38678ea-43c0-4e56-9d5e-f03953e201cc))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp 1071b367-8a9f-4357-be39-7807878031e5)
    (at 181.75 96.19)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 05994b52-49be-4e84-ada3-5bf1fe0acfdb)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 33c68946-894a-43d9-a960-4c467764284b)
    )
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0ab6be01-4ebd-4e75-98db-91f4c0b1be56))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 465c9392-dc36-4230-866b-5713784ae037))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 67a5d83d-90bd-46d7-af44-4ce0e28f4bda))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6ffcea68-6e1e-4c8f-b728-d0909a10518d))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 895c4b6e-5cbd-4f1c-a3ea-08028039b6fb))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 13aeaecf-bdd1-43ca-b8c4-4dd05dd45206))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 17b7316b-1879-4cff-809a-b753f0daa8e1))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 375f5f9b-dcb4-4f1f-b0e6-c65e29840cc7))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 587531ef-d11c-4ae8-9fea-edc5de024f11))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c15bba44-62f0-42f4-8a36-506a9c3be979))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 17cded6b-4004-4080-87e8-dd1256de7ce0))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1c6edf1d-a915-4c50-9f74-d6893cb8e185))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 41d70e71-2a0b-46d3-b950-3e37f57ebcf9))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6acf25cb-13ae-49cd-a87b-fc5d7f00c11a))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9b576758-0995-4b4c-a7d6-6d9350e7c2c3))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 40bd32b2-5b6f-4de1-82e6-c1898d11582b))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5637ea9d-9d25-4bee-b879-e3bad18aa215))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 596f39ab-2351-4a8d-9508-d06948ffdc16))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp aff249a3-1679-4313-9117-d9daacc86f97))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c48626ce-0774-4aee-82a6-c6564f3b14c9))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1f3479f1-13ba-44e7-9958-0e56d79f7627))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7587c4c3-72c3-472f-b4c7-8140eb5735a9))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b9649732-82e1-4e7b-bf8e-18b1f00c8027))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bbbab366-c07b-4ebc-8bc9-6a86908ca3c0))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c63222e3-3e25-4c6e-a431-963f51736920))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp 15e8ccff-b1c5-4aea-984f-8293afbd69da)
    (at 181.75 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp dbe4c2f4-4938-4a11-adfb-2bd0fc217d23)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 89f9a542-5a67-4855-8661-420fd445fb86)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 62a61327-6b75-4d0b-abb3-f814eb6764b9))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6ac4bbd2-5236-41b1-b3a1-337124cb3d52))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7c0f481a-da3a-4456-b87e-a373f774e028))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ef1d93c9-a384-485f-bc17-ee7c80b65dac))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp efa46152-f4c5-4894-ab10-c2d359bf6c6f))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 659f68df-8d74-43a5-b70e-04786960cdd6))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c594b24a-cd62-4fb8-bc97-16d6699a0aae))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c94a3a02-1d37-4ef1-9d52-9946cc668e2c))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cb06a956-6efc-488e-9109-92e7e9e4afc3))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f6587435-6fb6-4c30-9df3-eeff531ae0f0))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 135a315d-deff-4953-a206-ae9cb2b81926))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8209ec5c-7842-4a27-8a0a-009c30325363))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 863accb5-d5c4-412a-8ec3-d08c1a82c05b))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d4e0bbba-4db3-4ce9-8520-396db2332b62))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e167c4c3-b93a-4871-bf71-c3e94f3344f3))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 42f6166f-0469-444c-bc65-072056496243))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a818613c-65ac-4485-96af-af1381b82c4f))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cafece3a-f62c-4f4a-a7db-de8421da4a01))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cc16c33b-77e4-4a9b-8673-28d97f54976b))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f3191ff2-9e2d-4c3f-bdd0-a785da2d1057))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 17602c4e-317c-4b21-8c67-697943c1294f))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 44a0276e-7592-4da4-a532-519ca9f3afeb))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7e87da12-2612-444a-a9b5-f25863eb40f1))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a8a634fd-d756-4f04-8ae0-da12448bd17f))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e7ee4464-a774-48c1-b736-5bfcadfa5dbb))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp 1d63cf9b-111b-4c29-8c11-17cbf7d81d8b)
    (at 181.75 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp b97d0b01-f692-49e8-b192-8b96398e4975)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp a4e85cfb-b98e-4ee3-ac59-a93fb72b3a58)
    )
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 660a1231-d6df-4300-9045-d78c0c14f840))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8b346c77-7f18-465d-b108-735ed98a6cdb))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a887d703-5c98-4058-8028-8476b1c0fa90))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bd590b3d-c5b6-46c9-b8df-e6065574bb5f))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d74689fa-8be9-4a08-9f8f-9ca3dfebe6e5))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 01b7e735-380c-441e-a027-757c6642daf0))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 07fb1109-f472-4850-8d7e-ac18bf57b347))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6c8292d9-6392-43a1-aaaf-61a0a443d928))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8e673c66-6647-44a3-a8c2-5cef5a1a89d3))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ff993d2b-c013-4b14-bacc-2d88570c8ccd))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 35273a8d-5dfb-4d67-8b42-ced64b9ae486))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 53acb12b-ab50-4cbd-af57-86c1c9696cae))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9170103f-9fcc-4b11-8804-33e7f54bd443))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a3a15a54-6c2d-451c-b042-98eb7948fa90))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp be6cc1dd-8985-49fb-8f87-c68b02b63a1c))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 23aa5762-784b-42f6-a1ff-82c8c0c9bb46))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5c6fe93b-3f9b-4443-8ad3-bf36e92fe12e))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c64debb3-3057-42bd-88ad-ca5af950d7d0))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e90d0e48-ac42-4050-83f6-1c09c5af2893))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ea8fc427-15b7-4df9-8cf7-37f1fff2bc55))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3ea8129e-2d0d-4eaa-bc91-5b11eff19110))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6bfce299-a543-4831-abe1-ba11ed7ed671))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a79a672c-e269-4672-83c0-6b052bfc3f26))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a89888b7-ff62-42e9-b750-79d03a860b34))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b894f1bd-d8a2-4c1c-8fd0-a00ad010c942))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp 3601ba0e-78d3-45b3-a94d-449cb97b5ae5)
    (at 163.97 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp acfaa818-0bbf-488b-88f7-f560dc4761a6)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 7d80c964-e3e9-4372-8c51-88a18175d644)
    )
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2efd0ed4-92ef-4e19-8541-a4677a46d955))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3b8352e0-e59b-4265-8ca1-554c2b797758))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 563c39ec-2c5b-479d-be4f-a664730a9474))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7e3076b9-9352-4bc7-a4c5-b93f66f302ac))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b9173f60-52a3-4904-8124-e63c157fd415))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0406a42e-5949-477a-9f18-b1fc7b5a883e))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b3a8ebec-e6aa-4fd8-959f-ee26b3610687))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b59d7190-7da5-463c-87fd-61887f8e86de))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ce691a14-1743-487f-846a-ded15302ece9))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fbbc2a30-4e24-4815-ba67-1c7f0d75fb38))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 06696d5e-8546-4c1a-81a2-639c445e2c80))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 26a719ec-f3da-4cc6-9454-cc95a26e11a7))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 47cd65ea-cd28-4f49-9d66-8bef88430331))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b182258a-636d-43ad-9509-b0189f9dc3f5))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp da5e4dc8-1baf-4a60-980a-dc7c2adc097b))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 46ff118c-ba0a-4b73-8799-62cd3a66ac13))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 888f9a71-563b-49c0-850d-72b3eb699319))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a30fd736-5a9a-4b30-8ba0-b8ee8ac8dc50))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c4dc3172-6074-439d-8207-e086bccb4de6))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c5d2d13b-1faa-489f-a5c1-57a7bcc19601))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2ae8b15e-5bf1-42e8-9c77-adbbb4dd03a2))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 47ab9dd7-5eb0-43c3-9895-31368ed43b52))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4ee2af46-ae22-4d9c-a8f7-49c579ee1416))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 939b89c2-778f-4b04-861b-2ce57efcf409))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f6eca3c7-b59c-43ea-84c5-2c162787b3cb))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp 3a7c2606-8fb1-48fe-afd3-ef5f0ab4bd5b)
    (at 163.97 102.54)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp cc7e57cb-1ec9-45f3-b329-0fe84052df82)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 851cfb3f-59b1-479a-9c13-d328341ae3e0)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 04aa7783-5e9e-46fc-82ff-2db1ff30cfa7))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 845dc471-c4c7-46c4-b5bb-8fddc1f648c7))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8ca98b6d-8d3d-4415-9c85-42c2779b8429))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c7154543-24a9-4a86-84ab-4aec4f1969ee))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cd424775-f373-4f16-95d4-05062c036a73))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6830c6ff-177f-472e-82c7-ee58aa47c805))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a91deb8d-8af8-4cd8-84fd-277c5b5c54d7))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cd794b64-4c6f-4f50-80b9-a2608358a328))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e1e335de-3a49-49fc-a753-23e762385e75))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f4b2ddd8-5eb3-4633-9af9-05a206ed1e3d))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1580d7bb-885c-40c2-8472-cbbafd8e21e2))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 56b9d8f2-cc49-447e-91ae-bce216cbbbbc))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 69362a45-1886-4c76-b5f8-2e5a2587fe18))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c6fd4667-367e-4c43-9e28-25813c54fa65))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d9ebd1ee-b155-4cb9-909f-cdd1b7ff80f1))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 17107e00-7ced-4dd3-89bc-db641ff5ce25))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 69328e4b-5127-4839-9fa6-7a17341a2ddd))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8083a312-7380-41c3-a77f-f923decf5fca))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 932d1f8a-1830-42a1-90c1-04993e2fe7b8))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a90c7cf3-4980-4909-ae21-3421345d737b))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3a5dd417-8d4d-426c-8494-f84b85c2bf6c))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a4e9afba-2a09-4ab6-b96b-894854116b2f))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a8507a35-b918-4a32-84b4-4d5aca6de97f))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d9a053f6-174a-40f0-b6f5-2715f7ec56ba))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ea8ae495-83dd-4c07-ba8e-84d3afc3178e))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp 4927d66b-756b-4374-a400-c8761f26e9ef)
    (at 176.67 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 22e7ef8d-65c7-496a-853a-fee8e4a8c2da)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 6523d8d4-3fd6-4c6f-b556-08d33ab4470e)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4b0a104d-1b8a-4936-810e-57ae2b2ce13a))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 805778ba-272c-4299-b770-61cc97602f7a))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8b97db7a-0063-454f-94e5-539811393065))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9bbeb40f-30ea-4175-b095-e2776e53c656))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c875cdcd-5e34-488a-b364-4598d1cd4452))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 69aa7f87-65ec-40db-8326-95ef06a5e88e))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7877674e-f18c-47f7-9a07-be29d44a6e06))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b3cab7ed-5add-49c4-95b3-48bb14d090bf))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c5ff1661-5383-48fe-8c4c-f3429ce361ed))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f6a32e2d-d615-4a45-8b1d-3ebed3ae808e))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0da46677-0516-4b1c-a624-8f3da7f2f9d0))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 128a9510-c451-47c6-a34f-7c1c392e11b8))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 18bbc77c-7bf6-4511-b9e1-886a629a256e))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b771b5d1-94f9-4cc0-bdcd-6c2f6824b316))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cb86bba2-8ec5-4665-9b97-0d6a8009522e))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 09d955e1-2c34-4a46-b323-40d7a1146c8f))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0c42ad23-e1f2-48b8-80cc-9a639bc90a55))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 51ae1f23-cbe4-49f6-baa3-a6052a98cd92))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 58af0f93-5153-451b-9487-c33a41db063f))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 634973b1-776f-48e8-ab2d-4a6f71137d99))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0084545e-0ebe-4898-8927-954d5989826d))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3a27a4c2-2f83-4df1-a025-66545849c9a7))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7a33bd63-7d1b-4272-89b1-9d2816964c62))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ada2c6f0-33a4-4aea-90ba-50700b6b5184))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fe617762-f6d9-437b-9df0-f59a4152abb4))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp 511439c2-2233-4b79-95a4-e2a932ae28a7)
    (at 163.97 96.19)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp f6b58043-1ea2-4f23-aa8b-ef11b318f359)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp e986b644-ff0f-46ee-8370-a7d26b397277)
    )
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4807bf47-8b0f-4a2d-9106-8f08de62e019))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e0803d34-35de-40ba-b9cd-aa959ce87a08))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e0a9ab22-2793-4d97-aaf1-0c69a67f3a62))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f07a45f0-2d36-48ee-9e21-2f9c041ddb35))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f4c7369c-8f0f-407e-91a4-ae99c663e034))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1b3218f6-78f2-4ee0-a34c-ed246d44eb2d))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3be4f891-f7c6-43e8-b0f1-82517547523b))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b17bf8fd-77f5-4779-a73f-77a5271bafb5))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d976e3c7-c33e-40e1-9753-03c53e75c892))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dc69e4bb-dd60-4c09-92ad-3a62f5308400))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 18886bca-5105-4e56-901c-8d32bf90f768))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2f31c5dc-7ae5-43f4-9707-11e4a02e1d7c))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 36bf425a-33d1-4b9e-9f27-715faa8f264c))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c2f6cd1f-6bc9-480f-9ca9-b4e33b13f656))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e3a6d5aa-38d5-4bed-b0aa-26f261dff7ff))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1988c801-663e-40ff-a32d-16da9e1480fe))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4b70facd-927e-461d-848a-7b1cfeab2838))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 647c98e8-9a60-414b-81ff-e51e9164a45b))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c8e4c45a-3386-4f93-8e3b-8e522b0aae3c))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d3d7d2a6-1f26-42d2-ac4e-804c83456190))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2c4d0b7d-260e-415e-b12f-f853a860c8de))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7c181762-905d-49de-b501-8db6d158ba63))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 94bee3b9-7ab6-4aa0-aa78-2e8748126d2e))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a0c3f5cb-cbab-4ce4-afbd-4ee38a7993fe))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a9c403d5-416c-43dd-bc3e-05fcbec115af))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp 5322a721-5e11-422e-9b86-73c7c127eb51)
    (at 170.32 96.19)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 722c8176-47fd-4973-af45-fdf4586d6b29)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp c872a156-64cf-4caf-80f4-961c7c60a5ae)
    )
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6c0c93c0-a26d-4f53-890c-6595be0c38aa))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a044d59c-177e-45a1-a8c4-0d82486201c7))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a3f3d1e6-6381-4565-9afc-c2691848b8f5))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c818c258-a64e-4cc3-8ec1-004d9b806b42))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f3375520-3f69-4797-9844-aa8f156d3b42))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0093931c-8e58-4634-9bea-cba7a81862e4))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 07832009-9788-4c4b-9c63-611ad5c56d0d))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4f957059-c158-44a6-b7f6-415ef1b04ef8))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 97f6e444-db95-4515-95b2-69ad908c95ba))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9f4052b8-0ae5-4bd0-ad3a-a89acbac9f07))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4669ae52-e703-4784-a7dd-382b873e7792))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4bc53fb6-8ad7-4c17-b8ba-69b3d0090569))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 834ea4f3-9837-4318-84af-494d9299bf00))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8a094e8c-ffad-498f-b882-30eea9706583))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d19d74b5-6ac4-4c52-b47a-e4a34af86bca))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 24023dfe-9cf0-46f7-bea4-2b609bbc632e))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8e8468e0-c5d9-459a-a92a-c2b74a972f1a))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a637d332-a534-4fb4-bbca-c969182e0f36))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c7881fcb-768d-4c79-9d21-0fc25f2a1dad))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e4b24d1c-fa6b-4c5b-9b0c-ded4574638b3))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 177270eb-5069-46e4-b099-a68fd9e72184))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 362086d3-9744-4433-91f9-28304a4c3e11))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 51428343-427d-49fb-b5b5-714ae6db2c51))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a3dd48fd-1a16-4226-8140-c6b525eda4bb))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cbaef293-fc46-4974-96b8-fc7b98037acd))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp 67af7d15-546e-46f9-8ab8-0b11464ec697)
    (at 170.32 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp a8188635-ae45-432c-b012-a6c6d18a6357)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp c5e07709-d033-4450-98ed-dafd8ab02cac)
    )
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0fc866e0-079a-4c25-b95d-defae34df150))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 10cbc5ca-1ce4-495e-ae9d-04207d234b0b))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1fbd2fc9-6412-49f7-985a-b4d14f8908d8))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 27a64f8a-6986-4734-b2ac-c7a4c74a71da))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 569f6916-697e-4abe-b67a-db4fb6eec84f))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2a12d7d4-54c6-4ead-a017-7ba2ee47070f))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3e49a544-6d7f-4c75-8a8e-205787887ec1))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 94e9534b-e2f9-4c8a-8955-59211a03e432))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d57ca4b3-1d81-490c-8f23-46bdbf777b14))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp eb5a9630-51dd-47d2-b91b-51b3bd151f92))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2e9c5da2-177a-455c-98a6-41b457a357b9))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 582e0c67-866c-4b80-918f-53fd551f3aae))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c330bfac-8050-4a7e-9071-e12c2ee84b66))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c60bc3c7-f87c-4524-a11f-1e2bb2adc357))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cc986327-3e32-49f8-9bf2-3d0c8c0d7ffa))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1e27b4ba-2cb8-4b97-ab07-d3fa4df4a767))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 45ab074e-ed4a-4aa9-88c5-ac0ee09f35a4))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9cce02b6-09c4-4bb8-b35c-09d400c4721e))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d547883b-fa8e-4658-a428-044cf0b31b8e))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f8b595a6-f355-4f05-af31-5512333ed75b))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 390aaf79-da4e-4087-8c05-fdf17f2c8e50))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d3422358-7629-492e-971b-cd7bd11372b2))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e6ba44e9-5360-4efa-ad31-cdff5b6efec1))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f4cb7cb6-2662-4bec-8776-6be5f83ecc47))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fca6b35f-beda-4f65-9e51-f49813488c10))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "B.Cu") (tedit 5F805ECF) (tstamp 70caebe2-ed4f-49bd-80e1-77178f0a9d7f)
    (at 133.49 105.08)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 9a7dd9dd-0f53-4d10-b52b-4399d25fc6cb)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 -1 unlocked) (layer "B.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 386126f7-14ef-4ce4-a0c6-36e5e3d766e4)
    )
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0ac2d4b8-59ee-4871-ab68-c27f931d220b))
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 10db7fc5-2c24-4487-a68c-29016567fbbf))
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1f940f26-ad9f-4092-9c87-ab3ae642f730))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cbd16a94-6446-41cc-85bc-f4310c8d2a6f))
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e2db03f1-53ed-4d82-8990-2c0b12258d81))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 04d35754-91e6-4653-9912-d3f84acacc74))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6b6d5122-0517-4fa3-b365-a9787a006cee))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8690677f-cd98-4528-8636-f5d800fd2401))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8844b0ad-59dd-4b49-84e2-cdebf137ec49))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e93504ef-8387-45be-9153-8e35a7ab750b))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3ea432bd-783b-4034-9f19-2b1221690947))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 96bdc274-ab90-467c-b9e4-0fbf2159987c))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c1b86b50-403d-471a-8506-f75432427eec))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cbf3360a-1a26-4a4b-be3a-037a5a9c1ec5))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e87eb40c-9777-4a38-958e-54916cf0e179))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 94185511-aa6a-4a75-8d7a-2f25370545cc))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c337eb21-1e04-4966-a592-3a5fd1a91726))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dd14c188-41e5-414d-aa8b-a6d9f7111863))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f660554c-c151-4096-8fad-212d1b908fe6))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f8050fdb-fd43-45f5-802f-1c97b4a9d921))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 088a20b3-2282-4bf3-8bc9-25b052dbec6f))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0e04f745-fb8f-4b94-8e89-561c95879c16))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9b59ca26-8b37-4a2d-a82a-6fad546733ae))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d07188eb-9c5b-4ef4-ab2d-43e51bdfda1b))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e0a482ce-7caf-474f-b8d4-e6d663b673f0))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "B.Cu") (tedit 5F805ECF) (tstamp 9bf6560e-235a-41f3-a019-2f6451a70120)
    (at 123.33 105.08)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 71cbca2b-fc7e-4aea-a254-86783aebf3fa)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 -1 unlocked) (layer "B.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 08e5f1a0-4957-45be-8eea-48499946483d)
    )
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 158ed57b-b0f7-4055-b306-c965abf7f5f6))
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 296861c7-46ea-49f2-940c-02185a411516))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3160fa9b-1f2e-404b-aa9a-5e4b689ffbf4))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 95c8677a-d8a6-4c3a-87fe-eee2bdf7dc07))
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b29d8de1-45d5-40d9-8ed4-f9d044aa78e6))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0967509a-a727-4295-9aef-a52794c3ddd9))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 79bbb7de-3c03-41fd-ba67-f5f68cc45de3))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 860015f2-1808-4429-89eb-584fcae8012f))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 98299b9f-27e9-4ef8-aba7-64723c60f783))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b7cd8647-245f-4efb-8b59-191c18c693a4))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1e90039f-155b-414d-a6a6-25540c533f2a))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2d5ee49b-317a-4f4f-93ae-5a8415f89c29))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 387217ac-1a94-4180-af07-ba39d9499347))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8cd058db-6ddc-4161-a2ee-7ca2a62fcd38))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f93f6ae7-611e-4d05-9802-a7996dd30dd6))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 120f7a94-57bc-4c0f-b6c4-7d7c50af9128))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 17b9eb2d-391f-42a3-aa81-81c8db3811e8))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5a9c0852-40a7-4bde-be5d-e909361fb365))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 93575671-f9cd-41df-92bc-b6e072c2ea2b))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ebeee026-24e6-47b6-8303-ca2d1cc9ca6b))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1fa81e79-0a8a-4fd2-90f8-bcdc490391ff))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3125e545-d35f-4761-bd37-dcaf55663727))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 78f2b111-edd9-4354-8b78-46b1b50aa7e6))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9b7181a8-c76b-4575-871f-8322a6a0d740))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bf53bc12-4b6b-4e8c-9938-0038aebdbf4f))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "B.Cu") (tedit 5F805ECF) (tstamp a6ba91f6-22d7-4673-b4a8-8fe8785551bd)
    (at 123.33 94.92)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp cbe5abe1-564e-475f-861b-b54c506aa598)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 -1 unlocked) (layer "B.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 4ee2db7e-13b9-4ab5-9273-0628fe482118)
    )
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 507fec0f-88ec-428f-9319-87ea27595972))
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 75c141bf-3957-4fc3-9cff-44d953d204bf))
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 781a1870-be08-4fda-b229-27e151182d7b))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 98b27626-068f-4142-9656-e3947c3f6aa2))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ed5163d0-b399-495f-b122-3a198e22283c))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0a50d70a-49d7-4b2b-b0f6-3dda7ea1df8b))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 31f25da0-5f96-4ca0-b4b7-66d9739795ac))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 47b10bf0-0178-45f5-ae49-8d4c75c60eab))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 57e3ede6-6771-40c2-9777-26e9a34f2c36))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9c5c9219-c9ad-4025-95c6-d7e4262d00d1))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1c211af2-b619-4dab-b4b8-f77ef93d7b10))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3cbd0106-3817-42b0-b5a6-aec4fbfb01b6))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 839ee3ba-d412-417d-a792-f024139fb819))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e1462c44-937f-4cef-a7ca-b20b7de447dd))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fafab42b-3ba1-48aa-87cd-1ca21aab4ba6))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2db4f8a9-73b4-4551-9c4b-333a70f3daec))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5acf4b7f-fb09-4340-8836-4a14247b9d1d))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c876925c-5f11-41ec-825c-efff52d9e58a))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ca03bbca-f3e1-4c74-92f1-205a17b3e740))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f172db9e-6a5b-4b82-be26-a5270f5191b9))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 045ea32c-aa93-4cf5-874a-f96e476b6996))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 29d2273b-19f5-46e9-9cd7-9572360545f1))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 916fde03-99d6-4ea9-bd2d-b59b1d8a2586))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 93bdeaa6-2829-4fc3-a35c-83859c2f51f2))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e5f6dfab-ed56-4d5d-b430-556c5da5a219))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp b3fe8ca1-1903-40e8-8ffa-5166eefe1a4f)
    (at 176.67 96.19)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp e067ef92-dd9c-4f89-9d62-469238fb8ae8)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp dd6162ff-c558-4cba-af89-71a7d28d68aa)
    )
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4211296b-fc14-4dca-b41c-254125bdbf13))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 75dbf241-a7b3-4ac4-b031-0b8926590aca))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 88b30052-8b23-45b9-958e-c04665b0460b))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp cbcde2d5-2d43-4f53-a684-b01a34597b2e))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp eecbc970-c827-428d-b60c-a5ef0ad01416))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 044bb2b4-4b5c-447f-af2f-29cbedc66732))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4a897c08-33f6-4f66-815b-4763c44236c1))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8f827946-9d9a-4e9e-bbfb-7d3ea361f39a))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a9aff2b7-6cde-467c-bca4-fe4f223f1495))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b4705c6a-012c-4b55-809b-e2db6d7d3da8))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 25260620-3e18-42c7-96ec-141186a5974a))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 57fb328c-bdff-4c6b-9da8-38f4137cc735))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b1cbef2f-2155-40ef-9dd4-6bc88443e811))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp bee2b33b-dc55-4adb-8672-3bf37bfda9ec))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c8cbc064-18a7-43c6-aabe-8edbce26b985))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 441daa46-a410-4ddc-81f5-53c5213467f1))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 47889788-e882-46bc-8756-8cba3fa7d894))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4c431df5-2f7b-462b-99b3-7ac3e03406d6))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 84968655-23fe-490d-a6f5-87f31205e8fd))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c1c3295b-23e8-49be-bf2f-5d30064de133))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0dd11664-ffe2-467b-8b21-5d8e9bd88291))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4ac004d9-eafc-4078-8469-5e16a57f8d2f))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5ba766f0-22b5-4a50-bf02-d3a0303a1719))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 91c226bc-3b32-4212-9f87-0fb9786a4b35))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f67b793a-259f-4460-8a68-750f286ae893))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp bc2baf99-edca-44fc-8a64-38ed46dec1ba)
    (at 170.32 108.89)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 3e8adba1-d3c0-4ef0-bff8-af3bfdd94e74)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 539c7da3-44af-4782-a7f9-4c0273a562c2)
    )
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4a1023d4-df04-4643-99f7-aa78579a81af))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5832e6e5-f175-456d-88b1-4aa0c036916a))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7fdf7ddf-cfce-4662-8871-6f3d223d7a4a))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8312c713-022e-45a3-85bd-91e3a793e5bd))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b38c3c2b-17cb-42a1-90c4-bb5ccc1f0322))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 064c2626-1c78-40ba-96c5-5ec55d9a9506))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 083dcd91-a60e-4268-a095-5941c1ed085c))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5e9e0318-24bf-40ac-9c00-83964b0bda30))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 695dc0aa-e9f6-4f8c-a430-55b1654c0184))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 71c9d787-0196-431e-a6e4-26e67311585b))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1203c596-0907-46da-916d-00a77641c1ec))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 97ce6c31-98ba-4cac-aede-3f47c9282e61))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d13a62dc-a764-4380-9c1c-520553a98131))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dd58d412-cb61-4fed-983b-f191c193c7ca))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f42418a1-1880-4b0d-87d3-28636e212632))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 00f2ba3c-5e89-454d-ba2d-0a868abfa254))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3bc4a1d4-094e-4d81-9d88-4ff9dcee6522))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4e7c4750-ed05-4f09-9e62-b267d83e344b))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7a571d19-1fb4-4b22-ab23-08cef2ba1f56))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ad85c3ac-9271-40a3-ac0f-61327795c8ee))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7d225a3c-c379-49d7-aa80-88f84dde3038))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7f32cb1f-7a43-4d27-b9af-686fbc2ca04b))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 975c2cbf-d02d-41cf-a8a7-4687c0e91b03))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e3731a98-1c87-4d38-aaa0-76dabb0b599f))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e7a161fd-b722-4b61-9b65-8422c92e7d4b))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp c7331f13-6c96-4a2a-8135-d4f244ca2e0b)
    (at 176.67 102.54)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 98c4bd83-8fe5-4fd7-afe6-76b3130e5cf7)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp b499f6a9-2f5d-4b3f-84dd-a989cef70d15)
    )
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0aa4082d-65fd-4b9f-be5b-5a8f939fa94b))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1ea91437-adc0-4a2f-9cef-294de5ad90ae))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a69de337-df41-4061-b84a-7bb4225ddaa8))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c6012276-5bb3-43bf-bead-f57533aaedf5))
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ff8fc09d-6836-47e0-bdcd-c014c8a08148))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 113c86b9-ee96-4855-8f84-2722c149d4e4))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 487d8fb1-66b7-49b1-af16-3f136ae86dee))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7ea4c1a1-e598-47e2-a299-6b912ff81a0d))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9fc81999-ecd3-42d2-8076-23df802671ac))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b4838d0b-3095-4789-aedb-c33c6fecefaf))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2046b4cc-8a4a-47e7-b0dd-9349610b4cf5))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 68dc7cb4-7be6-4cc0-a6e2-c9ce68d5cefc))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 79847e23-0985-4f29-b16c-c38b42081376))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9bd6ce49-b759-41fe-b110-df395760aa39))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a3b9d6c1-f493-4c00-a598-d8f94b31fcb0))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 681cf2fa-ae1c-49a5-b8ee-b0fb02eef367))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b031cae7-91ef-483f-b037-3b10c3338170))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b3c5d4ef-b42a-465a-a1d0-57bfdf7646a3))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ce288a4e-6362-4922-9fb3-2a2d4592f0fa))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f47a2573-c1c9-4863-ae9d-3acab76e0246))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 39380d4f-e786-4ee3-b3e2-0dde8928b684))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 749995d7-b9eb-42bf-a9c1-1955a7c265fb))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e607c1be-a3fb-488f-871b-d98817b667a4))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ecb2f155-3159-40e6-ac9d-72f40f01e0fb))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f26fe6fb-fd08-46e4-a9c3-27e8f5b97cd8))
  )

  (module "common_footprints:5x5_proto_array_2.54" (layer "B.Cu") (tedit 5F805ECF) (tstamp ebe05ab7-9ae3-4378-ac21-d75320464f2e)
    (at 133.49 94.92)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp de49e8ed-4736-4c97-a704-c6bcd016b708)
    )
    (fp_text value "5x5_proto_array_2.54" (at 0 -1 unlocked) (layer "B.Fab") hide
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp e426d813-4601-4f37-a4a2-23c4c545f5ac)
    )
    (pad "0" smd roundrect (at -5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 73a26e98-d059-4c6f-a23c-d371e9e1125f))
    (pad "0" smd roundrect (at -5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9454564e-e537-4e11-8dca-3f5aea2f6856))
    (pad "0" smd roundrect (at -5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a173d441-481a-4a18-a49e-d0ba5c56e2fa))
    (pad "0" smd roundrect (at -5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a70d9379-8b64-4c1e-858a-0575b2d5d637))
    (pad "0" smd roundrect (at -5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dd0ba25f-0f68-46d0-8b93-55ca04f48814))
    (pad "1" smd roundrect (at -2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 0ed5764d-d607-4a21-b3cc-690466b028f0))
    (pad "1" smd roundrect (at -2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 19e94176-9826-447f-a7d5-e2a8e2d92d6f))
    (pad "1" smd roundrect (at -2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ce74111b-5378-44a4-b256-faa8d903b4d2))
    (pad "1" smd roundrect (at -2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e13c430d-0656-47c6-8e85-aaf5fc6ec78b))
    (pad "1" smd roundrect (at -2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ff4fa06b-8459-4671-8cb8-62e0957430d4))
    (pad "2" smd roundrect (at 0 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 15c908cc-00a2-4924-803a-961be1992602))
    (pad "2" smd roundrect (at 0 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 19174b02-fb35-4125-ae4e-709c5c8528bb))
    (pad "2" smd roundrect (at 0 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 21f3d478-6297-463d-9978-e89812464e23))
    (pad "2" smd roundrect (at 0 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 78ea0bcd-6295-4b1f-8aa3-4370f21b375d))
    (pad "2" smd roundrect (at 0 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ca3b9f68-c4bf-4dac-a1f5-9552d2fc6a72))
    (pad "3" smd roundrect (at 2.54 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1c66cfc4-e165-4d50-8780-afdd59d926e1))
    (pad "3" smd roundrect (at 2.54 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2d849595-431c-41a6-a503-3dc364bbcc9a))
    (pad "3" smd roundrect (at 2.54 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3ae20c36-cdd4-4fd5-b314-2afb59420a4b))
    (pad "3" smd roundrect (at 2.54 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5fbfc5d2-47a4-4cbd-9257-f97ad2e394b8))
    (pad "3" smd roundrect (at 2.54 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dc4aa7cf-d9a9-4437-8e0b-83c32eb929bb))
    (pad "4" smd roundrect (at 5.08 0) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 06753412-5c27-4072-ada8-1ba79355e10b))
    (pad "4" smd roundrect (at 5.08 -2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9f1d04b0-8612-4f8e-b90a-3206d73cf7b3))
    (pad "4" smd roundrect (at 5.08 -5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c999a8c6-a13b-4d3e-a59a-7a3b2f78850d))
    (pad "4" smd roundrect (at 5.08 5.08) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d35581d4-bed9-4d37-a952-6424b0c799ef))
    (pad "4" smd roundrect (at 5.08 2.54) (size 2 2) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp ee206348-f712-4853-9505-75764631dff6))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp f4b1c2bb-d3a0-4132-81ac-0b981911f854)
    (at 181.75 102.54)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 4f20df6f-ea52-4817-8825-deb432ed12cb)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 7fe02298-7387-43d3-9515-09c97433a424)
    )
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3642fae2-baeb-4cee-a1d6-92874a7f8fdf))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 535ee446-e491-44cd-98e4-ea293b747380))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp d47c08d0-62f6-4b1f-ac09-cea64ad11750))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp daa84b88-556a-4fcb-8101-e6d719f05d8e))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e0b2f78d-a3b3-483c-b4f2-ca99a852f54b))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1471b777-9dfd-4992-98c2-610d97d5a2ba))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 8e911a94-e669-46da-9574-65544fef9200))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9240bf16-7212-4f5d-9f6e-1f32afb794c8))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b83e54c7-d6d4-43bd-bf33-8fbac047887a))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dbbb1e46-fc31-495a-adb4-a0b330bae1ec))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 136eb87a-380c-4ed0-9556-08a02a9290d6))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 42f33458-becc-441f-8cf3-d6f41292190f))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 9ce19e93-4a15-48cd-8298-b95367c4de6d))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a9ef622b-5c23-4117-9f6d-e80fc8f389e2))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp c82128e4-350e-4ea0-a3fc-d7d47fadd838))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 62503988-ec9d-4728-aa11-ed80e65e2773))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6666328f-d367-42ab-82fa-85a39721d4fd))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 6ba7c7a8-ebc6-45bc-8ee6-26e39ebd4543))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 92a0ea84-a22b-43d4-880a-ba75b0281464))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp b4432820-dfa9-4e66-a201-00056580bd3d))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 06a5d96b-3e78-438f-a81a-21fd3572c805))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 23d83a19-af01-4d3a-a6dc-e5db3f6d6dd2))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4cc34e96-8a5c-4b94-8cbd-10c1286b1e89))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 58cd75b0-f5f5-4c54-b824-7080cffb5830))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 77a05215-7257-4398-b9e0-1ea3abb8f703))
  )

  (module "common_footprints:5x5_proto_array_1.27" (layer "B.Cu") (tedit 5F805F0D) (tstamp ff6c7b5f-d335-4c8c-9666-4572fa179364)
    (at 163.97 91.11)
    (attr through_hole)
    (fp_text reference "REF**" (at 0 0.5 unlocked) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 9f2cb9aa-eb76-4215-a025-ec1a51d6ac89)
    )
    (fp_text value "5x5_proto_array_1.27" (at 0 -1 unlocked) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 1252ba7e-e0fd-4778-822d-e837f8cedaf2)
    )
    (pad "0" smd roundrect (at -2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 09805f87-ddce-4ed6-9350-3ff80171175c))
    (pad "0" smd roundrect (at -2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2a2af70b-2951-430f-9141-06c3c88fd5b6))
    (pad "0" smd roundrect (at -2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 49cf06db-40e0-41b9-8bba-c74aa526e838))
    (pad "0" smd roundrect (at -2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 49dc961a-3988-4956-b574-f8c3da90443a))
    (pad "0" smd roundrect (at -2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp dd406827-3f13-4b48-a254-14d9935461e3))
    (pad "1" smd roundrect (at -1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 06fecbca-640f-41f9-b7f4-3e15cf6844db))
    (pad "1" smd roundrect (at -1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 15f89c6c-2286-4268-9137-f541443e8397))
    (pad "1" smd roundrect (at -1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 35795d1e-60d6-44cd-b30a-96c2f31f3341))
    (pad "1" smd roundrect (at -1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 3e6e6c9e-8ec0-4e87-ad1d-cf03515aee0c))
    (pad "1" smd roundrect (at -1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 63d11168-67a1-4270-9432-d92ae83e08cd))
    (pad "2" smd roundrect (at 0 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 1d3900a9-2d5c-427b-ae5c-1c013b522731))
    (pad "2" smd roundrect (at 0 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 40faa871-98e9-41ce-9c03-f49b38c16846))
    (pad "2" smd roundrect (at 0 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 504997f1-7e4d-4044-aa3a-2e8d51944a40))
    (pad "2" smd roundrect (at 0 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 73c318eb-a586-456a-ba3a-286a0b984595))
    (pad "2" smd roundrect (at 0 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp a0edf6cb-fd5e-41bf-8ccb-be6033e13bed))
    (pad "3" smd roundrect (at 1.27 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 313610a3-81aa-4518-87c8-58165492dda2))
    (pad "3" smd roundrect (at 1.27 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 4909ba3a-893e-41a8-8e60-d5995458bc16))
    (pad "3" smd roundrect (at 1.27 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 657ea6a1-b14d-47c6-85c3-2e2adadac396))
    (pad "3" smd roundrect (at 1.27 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp e2acc346-c1bd-4324-bccf-05191c213a1d))
    (pad "3" smd roundrect (at 1.27 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp f433fc91-2d9b-4c56-aead-741bf7ae8564))
    (pad "4" smd roundrect (at 2.54 -1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 2f664e05-d1ec-4368-a5e3-13f38f091ad7))
    (pad "4" smd roundrect (at 2.54 -2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 41c45450-c373-446d-af43-20e71044b17c))
    (pad "4" smd roundrect (at 2.54 0) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 5427d119-8b4d-4661-8ed4-7f0b7d233846))
    (pad "4" smd roundrect (at 2.54 2.54) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp 7ee99deb-ac6b-4825-9739-baa28a501077))
    (pad "4" smd roundrect (at 2.54 1.27) (size 1 1) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
      (chamfer_ratio 0.15) (chamfer top_left top_right bottom_left bottom_right) (tstamp fe100063-ebc8-4285-9fda-762382c4ea8b))
  )

  (gr_line (start 189.5 96.546) (end 189.5 103.454) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 04276d55-ac7c-485f-948f-8a774845619c))
  (gr_line (start 188.954 104) (end 188.446 104) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 124dab48-9974-4719-b0f8-643e20046522))
  (gr_circle (center 164.35 100) (end 163 100) (layer "Edge.Cuts") (width 0.16) (tstamp 1acbbb02-4bef-4cde-9eee-a32f18a72ab3))
  (gr_circle (center 142 100) (end 140.65 100) (layer "Edge.Cuts") (width 0.16) (tstamp 1c12fcbf-ccd6-4ab8-9840-28592e24f520))
  (gr_circle (center 175.78 100) (end 174.43 100) (layer "Edge.Cuts") (width 0.16) (tstamp 27906c26-f4c2-47ff-898d-33361faff86c))
  (gr_circle (center 175.78 100) (end 174.43 100) (layer "Edge.Cuts") (width 0.16) (tstamp 306f0e5e-f448-4631-9295-6445deaa48ff))
  (gr_line (start 192.5 87.5) (end 192.5 112.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 30eaf456-8def-42ab-9d03-edd0116b138c))
  (gr_arc (start 110.7 96.2) (end 111.046 96) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp 31fa2f0c-1297-47c3-ab73-306d7f04b2f6))
  (gr_arc (start 188.1 103.8) (end 187.9 103.454) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp 3c098fe5-03a9-4cb7-baa5-aefd3b54145e))
  (gr_line (start 110.5 103.454) (end 110.5 96.546) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 3cc2267e-e4e0-45de-b1b4-057ee5b5dfdf))
  (gr_line (start 111.554 104) (end 111.046 104) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 3fe71b76-7a41-4f49-bca5-00870391ce08))
  (gr_line (start 111.046 96) (end 111.554 96) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 47187d17-b603-4d91-89fb-4f436a49415f))
  (gr_arc (start 189.3 103.8) (end 188.954 104) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp 4fa148bc-29c1-43a0-a673-d3fb0507dce0))
  (gr_arc (start 188.1 96.2) (end 188.446 96) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp 5daa081e-6a4e-44be-a67b-8809dd0a9e3d))
  (gr_arc (start 150 100) (end 158.292 87.5) (angle -67.115) (layer "Edge.Cuts") (width 0.16) (tstamp 67a8d19a-202e-4842-bb8e-8f3dabbf0a2d))
  (gr_circle (center 158 100) (end 156.65 100) (layer "Edge.Cuts") (width 0.16) (tstamp 79f9bcd0-417a-449e-a8cc-db448b9eb862))
  (gr_line (start 188.446 96) (end 188.954 96) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 7ac253c8-bc92-4e06-b379-547f18443b49))
  (gr_line (start 187.9 103.454) (end 187.9 96.546) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 7b2dc936-234c-4ae8-aea9-c5b39abed41a))
  (gr_line (start 141.708 112.5) (end 107.5 112.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 8ec43023-b3b1-4f6e-852b-fbef7d2942f0))
  (gr_line (start 112.1 96.546) (end 112.1 103.454) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp 94fa63f9-fb03-442e-9f58-63e9ca7e5254))
  (gr_arc (start 150 100) (end 141.708 112.5) (angle -67.115) (layer "Edge.Cuts") (width 0.16) (tstamp 9af55458-69d3-4e2b-980e-f8ca0c1a3a24))
  (gr_circle (center 170.7 100) (end 169.35 100) (layer "Edge.Cuts") (width 0.16) (tstamp ac324e9b-43c4-43fa-a8d9-e91d995c135a))
  (gr_arc (start 111.9 103.8) (end 111.554 104) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp b7c53b07-7587-4ec9-a09c-4a8244c5c7bf))
  (gr_line (start 107.5 87.5) (end 141.708 87.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp bc242052-5f2f-4df5-a976-42bfdb520554))
  (gr_arc (start 110.7 103.8) (end 110.5 103.454) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp bdf22f27-602a-4a5c-b8a3-36f187e64d35))
  (gr_line (start 107.5 112.5) (end 107.5 87.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp bf18d8d4-81f8-4108-b597-ab29a149f623))
  (gr_circle (center 150 92) (end 148.65 92) (layer "Edge.Cuts") (width 0.16) (tstamp c626a242-2213-4ebd-8197-361119c13a55))
  (gr_line (start 192.5 112.5) (end 158.292 112.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp cc1e7bfc-df87-4663-95be-ee1b8716c63a))
  (gr_line (start 158.292 87.5) (end 192.5 87.5) (angle 90) (layer "Edge.Cuts") (width 0.16) (tstamp d1fea33c-dd3a-4100-ad4f-3c8b8669c9ef))
  (gr_arc (start 111.9 96.2) (end 112.1 96.546) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp db3080d6-4fa6-4fd9-a9ca-2d665ec35df9))
  (gr_circle (center 150 100) (end 146.9 100) (layer "Edge.Cuts") (width 0.16) (tstamp e1b03682-f89e-44b7-b852-b7c0ea2c6be7))
  (gr_arc (start 189.3 96.2) (end 189.5 96.546) (angle -210) (layer "Edge.Cuts") (width 0.16) (tstamp e1b6f65d-7ddd-434a-a657-d3f69161d886))
  (gr_circle (center 170.7 100) (end 169.35 100) (layer "Edge.Cuts") (width 0.16) (tstamp e5d2c297-6908-4399-bb43-1d66734a34e4))
  (gr_circle (center 164.35 100) (end 163 100) (layer "Edge.Cuts") (width 0.16) (tstamp fd024366-f50e-424c-89c7-0d151d01f365))
  (gr_circle (center 150 108) (end 148.65 108) (layer "Edge.Cuts") (width 0.16) (tstamp ff76c9fc-59af-43d9-b17a-58efbbd4d29c))

)