summaryrefslogblamecommitdiff
path: root/KiCAD/Cryptech Alpha.net
blob: 45defa31ab23a2c48c8dd8b3b68e917d31925af1 (plain) (tree)
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
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327


                                                                                                             

                                














































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                               
                        

















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                 
                               





                               
                               
                               
                               
                               
                               















                               
                              
                             
                              


                              




                                              

                              


                                         
                              


                               
                                          

                               



                                         
                             
                             
                              
                                         

                              



                                          
                             



                              
                               

                             








                                









                                  
                             



                                  


                               



                               





                               
                               
                               
                               
                               
                               
                             

                               
                              




                                  
                               





                                   
                                   






                                   

                                  











                                    

                                    











                                   

                                   










                                   
                                  









                                    
                                   



                               
                                   

                                   
                                  












                                   
                             
                                


                              
                              
                              





                              

                              

                              
                                

                              
                              

                             




                               
                             

                              
                              





                              
                              


                               
                              



                              
                              
                             

                              

                              
                                 




                               

                              
                             

                                 
                                  
                              
                              


                              

                               
                              



                                

                                

                                

                              


                               

                              
                              
                             
                                

                              

                               

                              

                              


                                 



































                                 
                                  





























































































































                                  
                             











                                   
                                   






















                                   
                              











                               
                               


























                                 
                             
                             
                             

                             
                             
                             
                              


                              
















                                               
                               




                                   
                                   
                               







                                   

                              








                              
                              



                              
                              
















                              
                               



                              
                              






                              

                              

                              


                                   
                             





                                  








                                 






                               
                              
                              













                                   
                               

                                  
                                  
                              
                                  
                              






                                   
                                






                                
                               

                                






                                


                                


                               



                               







                               
                              

                                 
                               




                                 
                               




                               
                              

                               






                                 


                                 




                               
                              



                              
                              



                              
                              
                              

                              






                                                     
                               
                             
                             


                               
                                                     
                               
                             
                              

                               



                                                    
                              
                              
                              
                                                     

                              


                                           
                              
                             





                                                      

                               
                                  

                                  



                                           

                                
                                           

                                



                                           

                               







                                                       

                                  




                                                     

                               






                                                        
                              
                             
                               
                                  



                               
                              


                               
                              




                                 
                              
                               
                               
                                
                                          

                               
                                              
                                 
                              
                               
                                              
                                
                              
                               
                                   
                              
                              
                                 
                                    
                              
                                 
                               
                                    
                              

                                 
                                  
                              

                                  
                                  
                              
                              
                                  



                                    

                                




                                   
                              

                                 
                                  
                                 
                              

                                    

                                  



                                          

                               
                                       

                                 



                                       

                                

                                       

                               
                                          
                               
                             
                               

                                 

                                 
                                          
                              
                               
                              

                                 

                              
                                 
                             
                              
                                 





















                                                    

                               












                                          

                                 
                                

                                 



                                  
                             


                               


                                                

                               
                                                   
                              
                             
                               
                                                   
                             
                              
                               
                                                

                               
                                           
                              
                             

                                  
                              
                             

                               


                                                    

                               
                                    
                              



                              

                              

                              
                              
                              
                               
                                    

                              
                               
                              
                                 

                               
                                                 
                             

                              




                                                  

                              



                                 
                                

                               

                                           

                              












                                                      

                               




















                                                

                                



                                                

                                 
                                      

                                 











                                       
                             
                              


                                                        

                               




                                                        
                              


                               


                                            
                              


                              

                               





                               
                                         
                              


                               
                              

                                 
                                                      
                             
                              
                              

                                                      

                              
                                           
                              
                             
                              
                                           
                             
                              
                              
                                                     

                               









                                                    

                                   
                                         

                                 






                                               













                                                   

                               
                                                   

                               
                                                   

                               















                                                   
                               


                                           
                               


                                             








                                             



                                                 

                                





                                                   

                                



                                                   

                                
                                                  
                               


                                       

                               



                                      
                                              
                              
                               




























                                                        
                               


                                            
                                
                                            
                                
                                            
                                
                                            
                                


                                            
                                
                                            
                                
                                            
                                
                                            
                                
                                            
                                
                                            
                                
                                            
                                
                                            
                                
                                            
                                
                                            
                                


                                            
                                
                                                        
                              







                                                             

                                
                                                              

                                










                                                               


                               
                                                      

                                



                                        
                              





                                                            

                                

                                         
                                 




                                                            
                                
                                
                               
                                                            
                              


                                                      

                               
                                              
                                  
                                               
                                   
                                              
                                  
                                               
                                   
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                               
                                   
                                              
                                  
                                              
                                  
                                              
                                  
                                               
                                   
                                               
                                   
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                               
                                   
                                               
                                   
                                              
                                  
                                              
                                  
                                               
                                   
                                               
                                   
                                              
                                  
                                          
                               
                              


                               


                               













                                                         
                              

                                                

                                
                                                          
                                 



                                                          
                              




                                            

                                 















                                                          
                              






                                                          
                              

                                    

                                    



                                                          
                              
                               
                              

                                                          


                                 
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                               
                                   
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                               
                                   
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   



                                               
                                   
                                                
                                    
                                  

                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   
                                               
                                   



                                          

                                  



                                    

                                    



                                              
                                  
                                             
                                 
                                              
                                  
                                            
                                
                                            
                                
                                              
                                  
                                              
                                  
                                             
                                 
                                             
                                 
                                             
                                 
                                              
                                  
                                              
                                  
                                             
                                 
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                             
                                 
                                            
                                
                                             
                                 
                                             
                                 
                                             
                                 
                                             
                                 
                                             
                                 
                                             
                                 
                                             
                                 
                                             
                                 
                                             
                                 
                                             
                                 
                                             
                                 
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                             
                                 
                                             
                                 
                                             
                                 
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                              
                                  
                                  

                                   
                                  

                                    









                                     

                                    















                                       

                                   




                                           

                               
                              

                               

                               
                               
                              









                                            
                               
                              
                              




                                            

                               
                                            
                               
                               
                              




                                           
                              
                               
                               
                              
                               
                               


                               
                               























                                            
                              
                              




                               
                              
                               
                              


                                   
                               







                                         
                             
                              

                                



                                             

                                    



                                             

                                 
                                             

                                 
                                        

                                    









                                          

                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    



                                        

                                   
                                        

                                    
                                        

                                   












                                        

                                    
                                        

                                   
                                        

                                   



                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                           

                                   
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                
                                    
                                                 
                                     
                                                
                                    
                                                
                                    
                                                
                                    





















                                                          


                               







                                   

                               
                               

                               



                                   




                               
                               
                               


                               
                              









                                            
                               
                               
                               

                               
                               

                               
                               
                               



                               


                                            
                                
                                            
                                
                                            
                                
                                            
                               








                                            
                              
                              
                               

                              
                               

                               

                               

                                            
                                
                                            
                                
                                            
                                
                                            
                                
                                            
                                

                                         

                               


                                     

                              







                                            

                                
                                             

                                
                                             

                                 
                                 
                              
                                    
                                

                                 

                                   


                                 
                                  
                              
                                
                               
                                 
                                




                                  
                                   



                                 
                             



                                   

                                  

                                  

                             


                                  
                             



                                   
                                 
                             
                             

                                    
                              
                              
                                   

                                  
                              



                                    
                              
                                
                                   

                                  



                                    

                                  

                                   

                                  
                                   
                              
                              
                                  

                                  
                              
                              


                                    
                              


                                  
                              



                                    
                              
                              
                                

                                    



                                  
                                  

                              


                                   
                              



                                   
                              
                                   


                                  
                                   
                                
                              

                                 
                              

                                
                                   
                                  
                              




                                   

                                 

                                   
                                 



                                  
                                  
                                 
                              

                                  
                                  




                                  

                                   


                                  

                                  

                                  
                                 
                              
                              
                                    
                                  

                                 


                                    
                                   



                                  

                                   
                                  

                                  
                                  

                                    
                                  

                                  
                                  
                                   



                                  
                                 



                                   
                              
                                 


                                   
                                  
                              



                                  

                                


                                    

                                  
                                 

                                 

                              

                                    
                                   
                                
                              
                               
                                 
                              
                                



                                    
                              
                                   


                                 
                                   

                                
(export (version D)
  (design
    (source "D:\\DATA\\YandexDisk\\DEV\\CrypTech\\git\\user\\shatov\\alpha_rev04\\KiCAD\\Cryptech Alpha.sch")
    (date "21.06.2020 23:41:12")
    (tool "Eeschema (5.1.6)-1")
    (sheet (number 1) (name /) (tstamps /)
      (title_block
        (title)
        (company)
        (rev)
        (date)
        (source "Cryptech Alpha.sch")
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 2) (name /Introduction/) (tstamps /57D8469B/)
      (title_block
        (title rev02_00)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_00.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 3) (name /Power/) (tstamps /57D84708/)
      (title_block
        (title rev02_01)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_01.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 4) (name "/Entropy source/") (tstamps /57D8488D/)
      (title_block
        (title rev02_02)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_02.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 5) (name "/STM32 configuration/") (tstamps /57D84936/)
      (title_block
        (title rev02_03)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_03.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 6) (name "/STM32 power/") (tstamps /57D849FD/)
      (title_block
        (title rev02_04)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_04.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 7) (name /SDRAM/) (tstamps /57D84B22/)
      (title_block
        (title rev02_06)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_06.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 8) (name "/Keystore memory/") (tstamps /57D84C13/)
      (title_block
        (title rev02_07)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_07.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 9) (name "/Real Time Clock/") (tstamps /57D84C55/)
      (title_block
        (title rev02_08)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_08.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 10) (name "/User USB UART/") (tstamps /57D84CB3/)
      (title_block
        (title rev02_09)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_09.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 11) (name "/MGMT USB UART/") (tstamps /57D84E30/)
      (title_block
        (title rev02_10)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_10.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 12) (name "/Tamper MCU/") (tstamps /57D84FAD/)
      (title_block
        (title rev02_11)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_11.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 13) (name "/Master Key Memory/") (tstamps /57D8509E/)
      (title_block
        (title rev02_12)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_12.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 14) (name "/Config interface/") (tstamps /57D85134/)
      (title_block
        (title rev02_13)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_13.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 15) (name /Unused/) (tstamps /57D85217/)
      (title_block
        (title rev02_14)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_14.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 16) (name "/Config memory/") (tstamps /57D85260/)
      (title_block
        (title rev02_15)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_15.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 17) (name "/Unused banks/") (tstamps /57D85319/)
      (title_block
        (title rev02_16)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_16.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 18) (name "/FMC interface/") (tstamps /57D85338/)
      (title_block
        (title rev02_17)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_17.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 19) (name "/STM32 IO/") (tstamps /57D85391/)
      (title_block
        (title rev02_05)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_05.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 20) (name "/Power: 1V8 3V3/") (tstamps /57D853B0/)
      (title_block
        (title rev02_18)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_18.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 21) (name /GPIO/) (tstamps /57D854CB/)
      (title_block
        (title rev02_19)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_19.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 22) (name "/MKM interface/") (tstamps /57D8556F/)
      (title_block
        (title rev02_20)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_20.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 23) (name "/PWR and GND/") (tstamps /57D8559C/)
      (title_block
        (title rev02_21)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_21.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 24) (name "/Core and AUX bypass/") (tstamps /57D855DE/)
      (title_block
        (title rev02_22)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_22.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 25) (name "/VCCO bypass/") (tstamps /57D8583B/)
      (title_block
        (title rev02_23)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_23.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 26) (name "/Power: 1V0/") (tstamps /57D85A75/)
      (title_block
        (title rev02_24)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_24.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value ""))))
    (sheet (number 27) (name "/Power sequencing/") (tstamps /57D85B19/)
      (title_block
        (title rev02_25)
        (company)
        (rev)
        (date "15 10 2016")
        (source rev02_25.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value "")))))
  (components
    (comp (ref LOGO1)
      (value ~)
      (libsource (lib Cryptech_Alpha) (part OSHW-LOGOL-COPPER) (description ""))
      (sheetpath (names /Introduction/) (tstamps /57D8469B/))
      (tstamp 580240DE))
    (comp (ref C11)
      (value 0.01uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240C4))
    (comp (ref C6)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240C3))
    (comp (ref C4)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240C2))
    (comp (ref C2)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240C1))
    (comp (ref C3)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240C0))
    (comp (ref C8)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240BF))
    (comp (ref Q1)
      (value 2N7002P,235)
      (footprint Cryptech_Alpha_Footprints:SOT-23)
      (libsource (lib Cryptech_Alpha) (part 2N7002) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240BE))
    (comp (ref R6)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240BD))
    (comp (ref R5)
      (value 1k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240BC))
    (comp (ref JP2)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:PLS-2)
      (libsource (lib Cryptech_Alpha) (part JP1Q) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240BB))
    (comp (ref C7)
      (value 4.7uF)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240BA))
    (comp (ref C13)
      (value 4.7uF)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240B9))
    (comp (ref U2)
      (value LT3060ITS8-15#TRMPBF)
      (footprint Cryptech_Alpha_Footprints:TSOT-8-23)
      (libsource (lib Cryptech_Alpha) (part LT3060ITS8-15) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240B8))
    (comp (ref U1)
      (value LMZ13608TZ*)
      (footprint Cryptech_Alpha_Footprints:NDY)
      (libsource (lib Cryptech_Alpha) (part LMZ13608) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240B7))
    (comp (ref C5)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240B6))
    (comp (ref C12)
      (value 0.01uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240B5))
    (comp (ref JP1)
      (value 694106301002)
      (footprint Cryptech_Alpha_Footprints:694106301002)
      (libsource (lib Cryptech_Alpha) (part POWER_JACKSMD) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240B4))
    (comp (ref C9)
      (value 330uF)
      (footprint Cryptech_Alpha_Footprints:C_D)
      (libsource (lib Cryptech_Alpha) (part CP_E-035X080) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240B3))
    (comp (ref C10)
      (value 330uF)
      (footprint Cryptech_Alpha_Footprints:C_D)
      (libsource (lib Cryptech_Alpha) (part CP_E-035X080) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240B2))
    (comp (ref R7)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240B1))
    (comp (ref R3)
      (value 100)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240B0))
    (comp (ref R2)
      (value 4.64k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240AF))
    (comp (ref R1)
      (value 56k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240AE))
    (comp (ref C1)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240AD))
    (comp (ref R8)
      (value 6.3k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240AC))
    (comp (ref R9)
      (value 1.21k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names /Power/) (tstamps /57D84708/))
      (tstamp 580240AB))
    (comp (ref C16)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 580240A3))
    (comp (ref S1)
      (value "SHIELDING CABINET")
      (footprint Cryptech_Alpha_Footprints:WE-SHC_36103205_NO_CREAM)
      (libsource (lib Cryptech_Alpha) (part WE-SHC) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 580240A2))
    (comp (ref Q2)
      (value BC818-40LT1G)
      (footprint Cryptech_Alpha_Footprints:SOT-23)
      (libsource (lib Cryptech_Alpha) (part BC818*SMD) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 580240A1))
    (comp (ref T1)
      (value BC847BLT3G)
      (footprint Cryptech_Alpha_Footprints:SOT-23)
      (libsource (lib Cryptech_Alpha) (part BC818*SMD) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 580240A0))
    (comp (ref T2)
      (value BC847BLT3G)
      (footprint Cryptech_Alpha_Footprints:SOT-23)
      (libsource (lib Cryptech_Alpha) (part BC818*SMD) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 5802409F))
    (comp (ref TP1)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:B1,27)
      (libsource (lib Cryptech_Alpha) (part TPB1,27) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 5802409E))
    (comp (ref TP2)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:B1,27)
      (libsource (lib Cryptech_Alpha) (part TPB1,27) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 5802409D))
    (comp (ref U3)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:SOT-23-5)
      (libsource (lib Cryptech_Alpha) (part MC74HC1G14DTT1G) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 5802409C))
    (comp (ref C14)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 5802409B))
    (comp (ref R10)
      (value 470)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 5802409A))
    (comp (ref R11)
      (value 1k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 58024099))
    (comp (ref C15)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 58024098))
    (comp (ref R12)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 58024097))
    (comp (ref R13)
      (value 1k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 58024096))
    (comp (ref D1)
      (value BAT54LT1G)
      (footprint Cryptech_Alpha_Footprints:SOT-23)
      (libsource (lib Cryptech_Alpha) (part BAT54) (description ""))
      (sheetpath (names "/Entropy source/") (tstamps /57D8488D/))
      (tstamp 58024095))
    (comp (ref C18)
      (value 5pF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 58024089))
    (comp (ref Q3)
      (value ABM8G-25.000MHZ-4Y-T3)
      (footprint Cryptech_Alpha_Footprints:CRYSTAL_3.2X2.5)
      (libsource (lib Cryptech_Alpha) (part XTAL-4-3225) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 58024088))
    (comp (ref C19)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 58024087))
    (comp (ref U4)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:TSQFP50P3000X3000X160-208N)
      (libsource (lib Cryptech_Alpha) (part STM32F429BIT6_2) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 58024086))
    (comp (ref J1)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:PLS-6)
      (libsource (lib Cryptech_Alpha) (part STM32-SWD) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 58024085))
    (comp (ref R93)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 58024084))
    (comp (ref R92)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 58024083))
    (comp (ref R16)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 58024082))
    (comp (ref R94)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 58024081))
    (comp (ref C17)
      (value 5pF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 58024080))
    (comp (ref R15)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 5802407F))
    (comp (ref C20)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 5802407E))
    (comp (ref R14)
      (value 0)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 5802407D))
    (comp (ref LED3)
      (value LTST-C193TBKT-5A)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 5802407C))
    (comp (ref LED1)
      (value LTST-C191KGKT)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 5802407B))
    (comp (ref LED4)
      (value LTST-C191KSKT)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 5802407A))
    (comp (ref LED2)
      (value LTST-C191KRKT)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names "/STM32 configuration/") (tstamps /57D84936/))
      (tstamp 58024079))
    (comp (ref C26)
      (value 10uF)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0805) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 5802406E))
    (comp (ref C31)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 5802406D))
    (comp (ref C32)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 5802406C))
    (comp (ref C30)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 5802406B))
    (comp (ref C29)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 5802406A))
    (comp (ref C28)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024069))
    (comp (ref C46)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024068))
    (comp (ref C44)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024067))
    (comp (ref C42)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024066))
    (comp (ref C40)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024065))
    (comp (ref C38)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024064))
    (comp (ref C27)
      (value 10uF)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0805) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024063))
    (comp (ref C36)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024062))
    (comp (ref C34)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024061))
    (comp (ref C21)
      (value 1uF)
      (footprint Cryptech_Alpha_Footprints:C_0603)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024060))
    (comp (ref C24)
      (value 2.2uF)
      (footprint Cryptech_Alpha_Footprints:C_0603)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 5802405F))
    (comp (ref C22)
      (value 2.2uF)
      (footprint Cryptech_Alpha_Footprints:C_0603)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 5802405E))
    (comp (ref C23)
      (value 2.2uF)
      (footprint Cryptech_Alpha_Footprints:C_0603)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 5802405D))
    (comp (ref C25)
      (value 2.2uF)
      (footprint Cryptech_Alpha_Footprints:C_0603)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 5802405C))
    (comp (ref R32)
      (value 0)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 5802405B))
    (comp (ref U4_2)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:TSQFP50P3000X3000X160-208N)
      (libsource (lib Cryptech_Alpha) (part STM32F429BIT6_3) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 5802405A))
    (comp (ref C45)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024059))
    (comp (ref C43)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024058))
    (comp (ref C41)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024057))
    (comp (ref C39)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024056))
    (comp (ref C37)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024055))
    (comp (ref C35)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024054))
    (comp (ref C33)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/STM32 power/") (tstamps /57D849FD/))
      (tstamp 58024053))
    (comp (ref U5)
      (value IS45S32160F*)
      (footprint Cryptech_Alpha_Footprints:TSSOP50P1180X120-86N)
      (libsource (lib Cryptech_Alpha) (part IS45S32160F) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024046))
    (comp (ref C57)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024045))
    (comp (ref C55)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024044))
    (comp (ref C53)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024043))
    (comp (ref U6)
      (value IS45S32160F*)
      (footprint Cryptech_Alpha_Footprints:TSSOP50P1180X120-86N)
      (libsource (lib Cryptech_Alpha) (part IS45S32160F) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024042))
    (comp (ref C67)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024041))
    (comp (ref C65)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024040))
    (comp (ref C63)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 5802403F))
    (comp (ref C61)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 5802403E))
    (comp (ref C62)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 5802403D))
    (comp (ref C60)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 5802403C))
    (comp (ref C56)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 5802403B))
    (comp (ref C59)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 5802403A))
    (comp (ref C58)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024039))
    (comp (ref C68)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024038))
    (comp (ref C66)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024037))
    (comp (ref C64)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024036))
    (comp (ref C54)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024035))
    (comp (ref C52)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024034))
    (comp (ref C50)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024033))
    (comp (ref C51)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024032))
    (comp (ref C49)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024031))
    (comp (ref C48)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 58024030))
    (comp (ref C47)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /SDRAM/) (tstamps /57D84B22/))
      (tstamp 5802402F))
    (comp (ref IC1)
      (value N25Q128A13ESE*)
      (footprint Cryptech_Alpha_Footprints:SO08)
      (libsource (lib Cryptech_Alpha) (part N25Q128A13ES) (description ""))
      (sheetpath (names "/Keystore memory/") (tstamps /57D84C13/))
      (tstamp 5802402B))
    (comp (ref R18)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Keystore memory/") (tstamps /57D84C13/))
      (tstamp 5802402A))
    (comp (ref C69)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Keystore memory/") (tstamps /57D84C13/))
      (tstamp 58024029))
    (comp (ref R17)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Keystore memory/") (tstamps /57D84C13/))
      (tstamp 58024028))
    (comp (ref U7)
      (value MCP79412-I_SN)
      (footprint Cryptech_Alpha_Footprints:SOIC127P600X175-8N)
      (libsource (lib Cryptech_Alpha) (part MCP79412-I_SN) (description ""))
      (sheetpath (names "/Real Time Clock/") (tstamps /57D84C55/))
      (tstamp 58024021))
    (comp (ref C71)
      (value 5pF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Real Time Clock/") (tstamps /57D84C55/))
      (tstamp 58024020))
    (comp (ref C70)
      (value 5pF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Real Time Clock/") (tstamps /57D84C55/))
      (tstamp 5802401F))
    (comp (ref X1)
      (value ABS07-32.768KHZ-T)
      (footprint Cryptech_Alpha_Footprints:XTAL3215)
      (libsource (lib Cryptech_Alpha) (part XTAL-3.2X1.5) (description ""))
      (sheetpath (names "/Real Time Clock/") (tstamps /57D84C55/))
      (tstamp 5802401E))
    (comp (ref R21)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Real Time Clock/") (tstamps /57D84C55/))
      (tstamp 5802401D))
    (comp (ref R20)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Real Time Clock/") (tstamps /57D84C55/))
      (tstamp 5802401C))
    (comp (ref R19)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Real Time Clock/") (tstamps /57D84C55/))
      (tstamp 5802401B))
    (comp (ref U8)
      (value FT232HL-REEL)
      (footprint Cryptech_Alpha_Footprints:LQFP-48)
      (libsource (lib Cryptech_Alpha) (part FT232H_SERIAL) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58024000))
    (comp (ref C82)
      (value 4.7uF)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FFF))
    (comp (ref C83)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FFE))
    (comp (ref C79)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FFD))
    (comp (ref C77)
      (value 10uF)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0805) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FFC))
    (comp (ref C81)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FFB))
    (comp (ref C80)
      (value 10uF)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0805) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FFA))
    (comp (ref C84)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FF9))
    (comp (ref C85)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FF8))
    (comp (ref C86)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FF7))
    (comp (ref FB2)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:L_0603)
      (libsource (lib Cryptech_Alpha) (part FERRITE_0603MP) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FF6))
    (comp (ref R23)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FF5))
    (comp (ref FB1)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:L_0603)
      (libsource (lib Cryptech_Alpha) (part FERRITE_0603MP) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FF4))
    (comp (ref CN1)
      (value 690-005-299-043)
      (footprint Cryptech_Alpha_Footprints:USB-MINIB)
      (libsource (lib Cryptech_Alpha) (part USBMINIB) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FF3))
    (comp (ref IC5)
      (value RCLAMP0502A.TCT)
      (footprint Cryptech_Alpha_Footprints:RCLAMP0502A)
      (libsource (lib Cryptech_Alpha) (part RCLAMP0502ASC-89) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FF2))
    (comp (ref R86)
      (value 100)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FF1))
    (comp (ref R87)
      (value 100)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FF0))
    (comp (ref J2)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:PLD-6)
      (libsource (lib Cryptech_Alpha) (part M03X2NO_SILK) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FEF))
    (comp (ref C214)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FEE))
    (comp (ref R91)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FED))
    (comp (ref Y1)
      (value ABM8G-12.000MHZ-4Y-T3)
      (footprint Cryptech_Alpha_Footprints:CRYSTAL_3.2X2.5)
      (libsource (lib Cryptech_Alpha) (part CRYSTALTHIN) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FEC))
    (comp (ref C76)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FEB))
    (comp (ref C74)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FEA))
    (comp (ref R22)
      (value 12k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FE9))
    (comp (ref C78)
      (value 5pF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FE8))
    (comp (ref C75)
      (value 5pF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FE7))
    (comp (ref C72)
      (value 4.7uF)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FE6))
    (comp (ref C73)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/User USB UART/") (tstamps /57D84CB3/))
      (tstamp 58023FE5))
    (comp (ref U9)
      (value FT232HL-REEL)
      (footprint Cryptech_Alpha_Footprints:LQFP-48)
      (libsource (lib Cryptech_Alpha) (part FT232H_SERIAL) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FCA))
    (comp (ref C97)
      (value 4.7uF)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FC9))
    (comp (ref C98)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FC8))
    (comp (ref C94)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FC7))
    (comp (ref C92)
      (value 10uF)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0805) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FC6))
    (comp (ref C96)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FC5))
    (comp (ref C95)
      (value 10uF)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0805) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FC4))
    (comp (ref C99)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FC3))
    (comp (ref C100)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FC2))
    (comp (ref C101)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FC1))
    (comp (ref FB4)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:L_0603)
      (libsource (lib Cryptech_Alpha) (part FERRITE_0603MP) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FC0))
    (comp (ref R27)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FBF))
    (comp (ref FB3)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:L_0603)
      (libsource (lib Cryptech_Alpha) (part FERRITE_0603MP) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FBE))
    (comp (ref CN2)
      (value 690-005-299-043)
      (footprint Cryptech_Alpha_Footprints:USB-MINIB)
      (libsource (lib Cryptech_Alpha) (part USBMINIB) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FBD))
    (comp (ref IC6)
      (value RCLAMP0502A.TCT)
      (footprint Cryptech_Alpha_Footprints:RCLAMP0502A)
      (libsource (lib Cryptech_Alpha) (part RCLAMP0502ASC-89) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FBC))
    (comp (ref R88)
      (value 100)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FBB))
    (comp (ref R89)
      (value 100)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FBA))
    (comp (ref J3)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:PLD-6)
      (libsource (lib Cryptech_Alpha) (part M03X2NO_SILK) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FB9))
    (comp (ref C215)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FB8))
    (comp (ref R90)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FB7))
    (comp (ref Y2)
      (value ABM8G-12.000MHZ-4Y-T3)
      (footprint Cryptech_Alpha_Footprints:CRYSTAL_3.2X2.5)
      (libsource (lib Cryptech_Alpha) (part CRYSTALTHIN) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FB6))
    (comp (ref C91)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FB5))
    (comp (ref C89)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FB4))
    (comp (ref R26)
      (value 12k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FB3))
    (comp (ref C93)
      (value 5pF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FB2))
    (comp (ref C90)
      (value 5pF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FB1))
    (comp (ref C87)
      (value 4.7uF)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FB0))
    (comp (ref C88)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/MGMT USB UART/") (tstamps /57D84E30/))
      (tstamp 58023FAF))
    (comp (ref U10)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:LQFP-32)
      (libsource (lib Cryptech_Alpha) (part ATTINY828R-AU) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F9F))
    (comp (ref LED10)
      (value LTST-C191KRKT)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F9E))
    (comp (ref JP5)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:HDR1X10)
      (libsource (lib Cryptech_Alpha) (part M10LOCK) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F9D))
    (comp (ref S2)
      (value EVQPT9A15)
      (footprint Cryptech_Alpha_Footprints:TACTILE_SWITCH)
      (libsource (lib Cryptech_Alpha) (part TACTILE_SWITCH) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F9C))
    (comp (ref JP4)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:PLS-3)
      (libsource (lib Cryptech_Alpha) (part M03LOCK) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F9B))
    (comp (ref C105)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F9A))
    (comp (ref R82)
      (value 15k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F99))
    (comp (ref R96)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F98))
    (comp (ref R95)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F97))
    (comp (ref R31)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F96))
    (comp (ref R97)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F95))
    (comp (ref JP3)
      (value AVR_SPI_PRG_62X3_LOCK)
      (footprint Cryptech_Alpha_Footprints:PLD-6)
      (libsource (lib Cryptech_Alpha) (part AVR_SPI_PRG_62X3_LOCK) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F94))
    (comp (ref R30)
      (value 15k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F93))
    (comp (ref C102)
      (value 10uF)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0805) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F92))
    (comp (ref C104)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F91))
    (comp (ref C103)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F90))
    (comp (ref LED11)
      (value LTST-C193TBKT-5A)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F8F))
    (comp (ref LED9)
      (value LTST-C191KGKT)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F8E))
    (comp (ref LED12)
      (value LTST-C191KSKT)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names "/Tamper MCU/") (tstamps /57D84FAD/))
      (tstamp 58023F8D))
    (comp (ref U12)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:SOIC127P600X175-8N)
      (libsource (lib Cryptech_Alpha) (part 23K640-I_SN) (description ""))
      (sheetpath (names "/Master Key Memory/") (tstamps /57D8509E/))
      (tstamp 58023F82))
    (comp (ref IC4_2)
      (value MC74AC244DW*)
      (footprint Cryptech_Alpha_Footprints:SO20W)
      (libsource (lib Cryptech_Alpha) (part 74*244DW_2) (description ""))
      (sheetpath (names "/Master Key Memory/") (tstamps /57D8509E/))
      (tstamp 58023F81))
    (comp (ref IC4_3)
      (value MC74AC244DW*)
      (footprint Cryptech_Alpha_Footprints:SO20W)
      (libsource (lib Cryptech_Alpha) (part 74*244DW_3) (description ""))
      (sheetpath (names "/Master Key Memory/") (tstamps /57D8509E/))
      (tstamp 58023F80))
    (comp (ref R33)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Master Key Memory/") (tstamps /57D8509E/))
      (tstamp 58023F7F))
    (comp (ref R34)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Master Key Memory/") (tstamps /57D8509E/))
      (tstamp 58023F7E))
    (comp (ref C106)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Master Key Memory/") (tstamps /57D8509E/))
      (tstamp 58023F7D))
    (comp (ref C107)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Master Key Memory/") (tstamps /57D8509E/))
      (tstamp 58023F7C))
    (comp (ref JP6)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:PLS-2)
      (libsource (lib Cryptech_Alpha) (part JP1Q) (description ""))
      (sheetpath (names "/Master Key Memory/") (tstamps /57D8509E/))
      (tstamp 58023F7B))
    (comp (ref R80)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Master Key Memory/") (tstamps /57D8509E/))
      (tstamp 58023F7A))
    (comp (ref R81)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Master Key Memory/") (tstamps /57D8509E/))
      (tstamp 58023F79))
    (comp (ref IC4)
      (value MC74AC244DW*)
      (footprint Cryptech_Alpha_Footprints:SO20W)
      (libsource (lib Cryptech_Alpha) (part 74*244DW_1) (description ""))
      (sheetpath (names "/Master Key Memory/") (tstamps /57D8509E/))
      (tstamp 58023F78))
    (comp (ref U11)
      (value ICE40UP5K-SG48ITR)
      (footprint Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm)
      (datasheet http://www.latticesemi.com/Products/FPGAandCPLD/iCE40Ultra)
      (libsource (lib FPGA_Lattice) (part ICE40UP5K-SG48ITR) (description "iCE40 UltraPlus FPGA, 5280 LUTs, 1.2V, 48-pin QFN"))
      (sheetpath (names "/Master Key Memory/") (tstamps /57D8509E/))
      (tstamp 5EEFEF07))
    (comp (ref R35)
      (value 1k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F6A))
    (comp (ref R39)
      (value 100)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F69))
    (comp (ref SV1)
      (value MA08-1)
      (footprint Cryptech_Alpha_Footprints:PLS-8)
      (libsource (lib Cryptech_Alpha) (part MA08-1) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F68))
    (comp (ref C108)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F67))
    (comp (ref R43)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F66))
    (comp (ref R44)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F65))
    (comp (ref R45)
      (value 10k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F64))
    (comp (ref R62)
      (value 0)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0603) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F63))
    (comp (ref R63)
      (value 0)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0603) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F62))
    (comp (ref R71)
      (value 0)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0603) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F61))
    (comp (ref U13)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_1) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F60))
    (comp (ref R36)
      (value 1k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F5F))
    (comp (ref R37)
      (value 1k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F5E))
    (comp (ref R41)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F5D))
    (comp (ref R40)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F5C))
    (comp (ref Q4)
      (value 2N7002P,235)
      (footprint Cryptech_Alpha_Footprints:SOT-23)
      (libsource (lib Cryptech_Alpha) (part 2N7002) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F5B))
    (comp (ref R42)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F5A))
    (comp (ref LED13)
      (value LTST-C191KRKT)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F59))
    (comp (ref R38)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config interface/") (tstamps /57D85134/))
      (tstamp 58023F58))
    (comp (ref C109)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /Unused/) (tstamps /57D85217/))
      (tstamp 58023F53))
    (comp (ref U13_2)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_8) (description ""))
      (sheetpath (names /Unused/) (tstamps /57D85217/))
      (tstamp 58023F52))
    (comp (ref U13_3)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_11) (description ""))
      (sheetpath (names /Unused/) (tstamps /57D85217/))
      (tstamp 58023F51))
    (comp (ref U13_4)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_12) (description ""))
      (sheetpath (names /Unused/) (tstamps /57D85217/))
      (tstamp 58023F50))
    (comp (ref U13_5)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_13) (description ""))
      (sheetpath (names /Unused/) (tstamps /57D85217/))
      (tstamp 58023F4F))
    (comp (ref U13_6)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_17) (description ""))
      (sheetpath (names /Unused/) (tstamps /57D85217/))
      (tstamp 58023F4E))
    (comp (ref IC3)
      (value N25Q128A13ESE*)
      (footprint Cryptech_Alpha_Footprints:SO08)
      (libsource (lib Cryptech_Alpha) (part N25Q128A13ES) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F42))
    (comp (ref R4)
      (value 0)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F41))
    (comp (ref IC2)
      (value MC74AC244DW*)
      (footprint Cryptech_Alpha_Footprints:SO20W)
      (libsource (lib Cryptech_Alpha) (part 74*244DW_1) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F40))
    (comp (ref IC2_2)
      (value MC74AC244DW*)
      (footprint Cryptech_Alpha_Footprints:SO20W)
      (libsource (lib Cryptech_Alpha) (part 74*244DW_2) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F3F))
    (comp (ref IC2_3)
      (value MC74AC244DW*)
      (footprint Cryptech_Alpha_Footprints:SO20W)
      (libsource (lib Cryptech_Alpha) (part 74*244DW_3) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F3E))
    (comp (ref Q5)
      (value ASFL1-50.000MHZ-EK-T)
      (footprint Cryptech_Alpha_Footprints:ASF)
      (libsource (lib Cryptech_Alpha) (part ASF*) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F3D))
    (comp (ref JP7)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:PLD-6)
      (libsource (lib Cryptech_Alpha) (part M03X2NO_SILK) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F3C))
    (comp (ref R51)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F3B))
    (comp (ref R50)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F3A))
    (comp (ref C111)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F39))
    (comp (ref R49)
      (value 0)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F38))
    (comp (ref C112)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F37))
    (comp (ref C110)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F36))
    (comp (ref R46)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F35))
    (comp (ref R47)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Config memory/") (tstamps /57D85260/))
      (tstamp 58023F34))
    (comp (ref U13_7)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_4) (description ""))
      (sheetpath (names "/Unused banks/") (tstamps /57D85319/))
      (tstamp 58023F31))
    (comp (ref U13_8)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_7) (description ""))
      (sheetpath (names "/Unused banks/") (tstamps /57D85319/))
      (tstamp 58023F30))
    (comp (ref U13_9)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_2) (description ""))
      (sheetpath (names "/FMC interface/") (tstamps /57D85338/))
      (tstamp 58023F2D))
    (comp (ref U13_10)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_6) (description ""))
      (sheetpath (names "/FMC interface/") (tstamps /57D85338/))
      (tstamp 58023F2C))
    (comp (ref U4_3)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:TSQFP50P3000X3000X160-208N)
      (libsource (lib Cryptech_Alpha) (part STM32F429BIT6_4) (description ""))
      (sheetpath (names "/STM32 IO/") (tstamps /57D85391/))
      (tstamp 58024052))
    (comp (ref U4_4)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:TSQFP50P3000X3000X160-208N)
      (libsource (lib Cryptech_Alpha) (part STM32F429BIT6_1) (description ""))
      (sheetpath (names "/STM32 IO/") (tstamps /57D85391/))
      (tstamp 58024051))
    (comp (ref C113)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F19))
    (comp (ref R54)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F18))
    (comp (ref R58)
      (value 205k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F17))
    (comp (ref R59)
      (value 59k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F16))
    (comp (ref R61)
      (value 470)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F15))
    (comp (ref FB6)
      (value BLM31PG330SN1)
      (footprint Cryptech_Alpha_Footprints:L_1206)
      (libsource (lib Cryptech_Alpha) (part BLM31PG330SN1_1206) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F14))
    (comp (ref C115)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F13))
    (comp (ref C116)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F12))
    (comp (ref C118)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F11))
    (comp (ref C117)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F10))
    (comp (ref C119)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F0F))
    (comp (ref R53)
      (value 62k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F0E))
    (comp (ref C120)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F0D))
    (comp (ref U14)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:QFN38)
      (libsource (lib Cryptech_Alpha) (part EN6347QI) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F0C))
    (comp (ref U15)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:QFN38)
      (libsource (lib Cryptech_Alpha) (part EN6347QI) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F0B))
    (comp (ref R52)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F0A))
    (comp (ref R56)
      (value 205k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F09))
    (comp (ref R57)
      (value 147k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F08))
    (comp (ref R60)
      (value 470)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F07))
    (comp (ref FB5)
      (value BLM31PG330SN1)
      (footprint Cryptech_Alpha_Footprints:L_1206)
      (libsource (lib Cryptech_Alpha) (part BLM31PG330SN1_1206) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F06))
    (comp (ref C114)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F05))
    (comp (ref R55)
      (value 62k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V8 3V3/") (tstamps /57D853B0/))
      (tstamp 58023F04))
    (comp (ref SV2)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:PLD-16)
      (libsource (lib Cryptech_Alpha) (part MA08-2) (description ""))
      (sheetpath (names /GPIO/) (tstamps /57D854CB/))
      (tstamp 58023EF9))
    (comp (ref R99)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names /GPIO/) (tstamps /57D854CB/))
      (tstamp 58023EF8))
    (comp (ref R98)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names /GPIO/) (tstamps /57D854CB/))
      (tstamp 58023EF7))
    (comp (ref R64)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names /GPIO/) (tstamps /57D854CB/))
      (tstamp 58023EF6))
    (comp (ref R100)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names /GPIO/) (tstamps /57D854CB/))
      (tstamp 58023EF5))
    (comp (ref SV3)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:PLD-16)
      (libsource (lib Cryptech_Alpha) (part MA08-2) (description ""))
      (sheetpath (names /GPIO/) (tstamps /57D854CB/))
      (tstamp 58023EF4))
    (comp (ref C121)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /GPIO/) (tstamps /57D854CB/))
      (tstamp 58023EF3))
    (comp (ref C122)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names /GPIO/) (tstamps /57D854CB/))
      (tstamp 58023EF2))
    (comp (ref LED17)
      (value LTST-C193TBKT-5A)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names /GPIO/) (tstamps /57D854CB/))
      (tstamp 58023EF1))
    (comp (ref LED15)
      (value LTST-C191KGKT)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names /GPIO/) (tstamps /57D854CB/))
      (tstamp 58023EF0))
    (comp (ref LED16)
      (value LTST-C191KSKT)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names /GPIO/) (tstamps /57D854CB/))
      (tstamp 58023EEF))
    (comp (ref LED14)
      (value LTST-C191KRKT)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names /GPIO/) (tstamps /57D854CB/))
      (tstamp 58023EEE))
    (comp (ref U13_11)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_5) (description ""))
      (sheetpath (names /GPIO/) (tstamps /57D854CB/))
      (tstamp 58023EED))
    (comp (ref R65)
      (value 1k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/MKM interface/") (tstamps /57D8556F/))
      (tstamp 58023EEB))
    (comp (ref R83)
      (value 0)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0603) (description ""))
      (sheetpath (names "/MKM interface/") (tstamps /57D8556F/))
      (tstamp 58023EEA))
    (comp (ref R84)
      (value 0)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0603) (description ""))
      (sheetpath (names "/MKM interface/") (tstamps /57D8556F/))
      (tstamp 58023EE9))
    (comp (ref R85)
      (value 0)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0603) (description ""))
      (sheetpath (names "/MKM interface/") (tstamps /57D8556F/))
      (tstamp 58023EE8))
    (comp (ref U13_12)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_3) (description ""))
      (sheetpath (names "/MKM interface/") (tstamps /57D8556F/))
      (tstamp 58023EE7))
    (comp (ref U13_13)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_9) (description ""))
      (sheetpath (names "/PWR and GND/") (tstamps /57D8559C/))
      (tstamp 58023EE2))
    (comp (ref U13_14)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_10) (description ""))
      (sheetpath (names "/PWR and GND/") (tstamps /57D8559C/))
      (tstamp 58023EE1))
    (comp (ref U13_15)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_14) (description ""))
      (sheetpath (names "/PWR and GND/") (tstamps /57D8559C/))
      (tstamp 58023EE0))
    (comp (ref U13_16)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_15) (description ""))
      (sheetpath (names "/PWR and GND/") (tstamps /57D8559C/))
      (tstamp 58023EDF))
    (comp (ref U13_17)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:BGA484C100P22X22_2300X2300X254)
      (libsource (lib Cryptech_Alpha) (part XC7A200TFBG484_16) (description ""))
      (sheetpath (names "/PWR and GND/") (tstamps /57D8559C/))
      (tstamp 58023EDE))
    (comp (ref C140)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EB1))
    (comp (ref C135)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EB0))
    (comp (ref C138)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EAF))
    (comp (ref C142)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EAE))
    (comp (ref C146)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EAD))
    (comp (ref C150)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EAC))
    (comp (ref C154)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EAB))
    (comp (ref C158)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EAA))
    (comp (ref C162)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EA9))
    (comp (ref C163)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EA8))
    (comp (ref C143)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EA7))
    (comp (ref C125)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EA6))
    (comp (ref C147)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EA5))
    (comp (ref C151)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EA4))
    (comp (ref C155)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EA3))
    (comp (ref C159)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EA2))
    (comp (ref C164)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EA1))
    (comp (ref C144)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023EA0))
    (comp (ref C148)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E9F))
    (comp (ref C152)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E9E))
    (comp (ref C156)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E9D))
    (comp (ref C160)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E9C))
    (comp (ref C133)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E9B))
    (comp (ref C141)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E9A))
    (comp (ref C145)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E99))
    (comp (ref C149)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E98))
    (comp (ref C153)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E97))
    (comp (ref C157)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E96))
    (comp (ref C161)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E95))
    (comp (ref C132)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E94))
    (comp (ref C136)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E93))
    (comp (ref C139)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E92))
    (comp (ref C137)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E91))
    (comp (ref C124)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E90))
    (comp (ref C126)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E8F))
    (comp (ref C123)
      (value 330uF)
      (footprint Cryptech_Alpha_Footprints:C_D)
      (libsource (lib Cryptech_Alpha) (part CP_E-035X080) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E8E))
    (comp (ref C127)
      (value 330uF)
      (footprint Cryptech_Alpha_Footprints:C_D)
      (libsource (lib Cryptech_Alpha) (part CP_E-035X080) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E8D))
    (comp (ref C128)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E8C))
    (comp (ref C130)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E8B))
    (comp (ref C134)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E8A))
    (comp (ref C129)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E89))
    (comp (ref C131)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Core and AUX bypass/") (tstamps /57D855DE/))
      (tstamp 58023E88))
    (comp (ref C181)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E5E))
    (comp (ref C189)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E5D))
    (comp (ref C195)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E5C))
    (comp (ref C201)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E5B))
    (comp (ref C184)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E5A))
    (comp (ref C190)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E59))
    (comp (ref C196)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E58))
    (comp (ref C202)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E57))
    (comp (ref C185)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E56))
    (comp (ref C191)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E55))
    (comp (ref C197)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E54))
    (comp (ref C187)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E53))
    (comp (ref C203)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E52))
    (comp (ref C186)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E51))
    (comp (ref C192)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E50))
    (comp (ref C198)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E4F))
    (comp (ref C204)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E4E))
    (comp (ref C169)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E4D))
    (comp (ref C175)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E4C))
    (comp (ref C176)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E4B))
    (comp (ref C170)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E4A))
    (comp (ref C171)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E49))
    (comp (ref C193)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E48))
    (comp (ref C177)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E47))
    (comp (ref C178)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E46))
    (comp (ref C172)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E45))
    (comp (ref C173)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E44))
    (comp (ref C179)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E43))
    (comp (ref C180)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E42))
    (comp (ref C174)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0805)
      (libsource (lib Cryptech_Alpha) (part C-EUC0603) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E41))
    (comp (ref C165)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E40))
    (comp (ref C166)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E3F))
    (comp (ref C167)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E3E))
    (comp (ref C199)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E3D))
    (comp (ref C168)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E3C))
    (comp (ref C182)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E3B))
    (comp (ref C188)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E3A))
    (comp (ref C194)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E39))
    (comp (ref C200)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E38))
    (comp (ref C183)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/VCCO bypass/") (tstamps /57D8583B/))
      (tstamp 58023E37))
    (comp (ref R66)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V0/") (tstamps /57D85A75/))
      (tstamp 58023E2C))
    (comp (ref C209)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/Power: 1V0/") (tstamps /57D85A75/))
      (tstamp 58023E2B))
    (comp (ref C210)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/Power: 1V0/") (tstamps /57D85A75/))
      (tstamp 58023E2A))
    (comp (ref U16)
      (value EN5364QI)
      (footprint Cryptech_Alpha_Footprints:QFN68)
      (libsource (lib Cryptech_Alpha) (part EN5364QI) (description ""))
      (sheetpath (names "/Power: 1V0/") (tstamps /57D85A75/))
      (tstamp 58023E29))
    (comp (ref C207)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Power: 1V0/") (tstamps /57D85A75/))
      (tstamp 58023E28))
    (comp (ref C205)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/Power: 1V0/") (tstamps /57D85A75/))
      (tstamp 58023E27))
    (comp (ref C206)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_1210)
      (libsource (lib Cryptech_Alpha) (part C-EUC1210) (description ""))
      (sheetpath (names "/Power: 1V0/") (tstamps /57D85A75/))
      (tstamp 58023E26))
    (comp (ref R68)
      (value 150k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V0/") (tstamps /57D85A75/))
      (tstamp 58023E25))
    (comp (ref R69)
      (value 226k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V0/") (tstamps /57D85A75/))
      (tstamp 58023E24))
    (comp (ref C208)
      (value ~)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Power: 1V0/") (tstamps /57D85A75/))
      (tstamp 58023E23))
    (comp (ref FB7)
      (value BLM31PG330SN1)
      (footprint Cryptech_Alpha_Footprints:L_1206)
      (libsource (lib Cryptech_Alpha) (part BLM31PG330SN1_1206) (description ""))
      (sheetpath (names "/Power: 1V0/") (tstamps /57D85A75/))
      (tstamp 58023E22))
    (comp (ref R70)
      (value 100)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V0/") (tstamps /57D85A75/))
      (tstamp 58023E21))
    (comp (ref R67)
      (value 0)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power: 1V0/") (tstamps /57D85A75/))
      (tstamp 58023E20))
    (comp (ref R72)
      (value 100k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E17))
    (comp (ref Q6)
      (value 2N7002P,235)
      (footprint Cryptech_Alpha_Footprints:SOT-23)
      (libsource (lib Cryptech_Alpha) (part 2N7002) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E16))
    (comp (ref LED18)
      (value LTST-C191KGKT)
      (footprint Cryptech_Alpha_Footprints:VD_0603)
      (libsource (lib Cryptech_Alpha) (part LEDCHIP-LED0603) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E15))
    (comp (ref R78)
      (value 330)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E14))
    (comp (ref C211)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E13))
    (comp (ref C212)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E12))
    (comp (ref C213)
      (value 0.1uF)
      (footprint Cryptech_Alpha_Footprints:C_0402)
      (libsource (lib Cryptech_Alpha) (part C-EUC0402) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E11))
    (comp (ref D2)
      (value BAT54LT1G)
      (footprint Cryptech_Alpha_Footprints:SOT-23)
      (libsource (lib Cryptech_Alpha) (part BAT54) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E10))
    (comp (ref R75)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E0F))
    (comp (ref R76)
      (value 100k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E0E))
    (comp (ref D4)
      (value BAT54LT1G)
      (footprint Cryptech_Alpha_Footprints:SOT-23)
      (libsource (lib Cryptech_Alpha) (part BAT54) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E0D))
    (comp (ref R73)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E0C))
    (comp (ref R74)
      (value 100k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E0B))
    (comp (ref D3)
      (value BAT54LT1G)
      (footprint Cryptech_Alpha_Footprints:SOT-23)
      (libsource (lib Cryptech_Alpha) (part BAT54) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E0A))
    (comp (ref R77)
      (value 4.7k)
      (footprint Cryptech_Alpha_Footprints:R_0402)
      (libsource (lib Cryptech_Alpha) (part R-EU_R0402) (description ""))
      (sheetpath (names "/Power sequencing/") (tstamps /57D85B19/))
      (tstamp 58023E09)))
  (libparts
    (libpart (lib Cryptech_Alpha) (part 23K640-I_SN)
      (fields
        (field (name Reference) U)
        (field (name Value) 23K640-I_SN))
      (pins
        (pin (num 1) (name ~CS) (type passive))
        (pin (num 2) (name SO) (type output))
        (pin (num 3) (name NC) (type passive))
        (pin (num 4) (name VSS) (type power_in))
        (pin (num 5) (name SI) (type passive))
        (pin (num 6) (name SCK) (type passive))
        (pin (num 7) (name ~HOLD) (type passive))
        (pin (num 8) (name VCC) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part 2N7002)
      (fields
        (field (name Reference) Q)
        (field (name Value) 2N7002))
      (pins
        (pin (num 1) (name G) (type passive))
        (pin (num 2) (name S) (type passive))
        (pin (num 3) (name D) (type passive))))
    (libpart (lib Cryptech_Alpha) (part 74*244DW_1)
      (fields
        (field (name Reference) IC)
        (field (name Value) 74*244DW_1))
      (pins
        (pin (num 1) (name G) (type passive))
        (pin (num 2) (name A1) (type passive))
        (pin (num 4) (name A2) (type passive))
        (pin (num 6) (name A3) (type passive))
        (pin (num 8) (name A4) (type passive))
        (pin (num 12) (name Y4) (type 3state))
        (pin (num 14) (name Y3) (type 3state))
        (pin (num 16) (name Y2) (type 3state))
        (pin (num 18) (name Y1) (type 3state))))
    (libpart (lib Cryptech_Alpha) (part 74*244DW_2)
      (fields
        (field (name Reference) IC)
        (field (name Value) 74*244DW_2))
      (pins
        (pin (num 3) (name Y4) (type 3state))
        (pin (num 5) (name Y3) (type 3state))
        (pin (num 7) (name Y2) (type 3state))
        (pin (num 9) (name Y1) (type 3state))
        (pin (num 11) (name A1) (type passive))
        (pin (num 13) (name A2) (type passive))
        (pin (num 15) (name A3) (type passive))
        (pin (num 17) (name A4) (type passive))
        (pin (num 19) (name G) (type passive))))
    (libpart (lib Cryptech_Alpha) (part 74*244DW_3)
      (fields
        (field (name Reference) IC)
        (field (name Value) 74*244DW_3))
      (pins
        (pin (num 10) (name GND) (type power_in))
        (pin (num 20) (name VCC) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part ASF*)
      (fields
        (field (name Reference) Q)
        (field (name Value) ASF*))
      (pins
        (pin (num 1) (name OE) (type passive))
        (pin (num 2) (name GND) (type power_in))
        (pin (num 3) (name FO) (type output))
        (pin (num 4) (name VCC) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part ATTINY828R-AU)
      (fields
        (field (name Reference) U)
        (field (name Value) ATTINY828R-AU))
      (pins
        (pin (num 1) (name "(PCINT18/ADC18/TOCC2/RXD/INT1)_PC2") (type passive))
        (pin (num 2) (name "(PCINT19/ADC19/TOCC3/TXD)_PC3") (type passive))
        (pin (num 3) (name "(PCINT20/ADC20/TOCC4)_PC4") (type passive))
        (pin (num 4) (name VCC) (type power_in))
        (pin (num 5) (name GND_2) (type passive))
        (pin (num 6) (name "(PCINT21/ADC21/TOCC5/ICP1/T0)_PC5") (type passive))
        (pin (num 7) (name "(PCINT22/ADC22/CLKI/TOCC6)_PC6") (type passive))
        (pin (num 8) (name "(PCINT23/ADC23/TOCC7/T1)_PC7") (type passive))
        (pin (num 9) (name "(PCINT0/ADC0)_PA0") (type passive))
        (pin (num 10) (name "(PCINT1/ADC1/AIN0)_PA1") (type passive))
        (pin (num 11) (name "(PCINT2/ADC2/AIN1)_PA2") (type passive))
        (pin (num 12) (name "(PCINT3/ADC3)_PA3") (type passive))
        (pin (num 13) (name "(PCINT4/ADC4)_PA4") (type passive))
        (pin (num 14) (name "(PC!INT5/ADC5)_PA5") (type passive))
        (pin (num 15) (name "(PCINT6/ADC6)_PA6") (type passive))
        (pin (num 16) (name "(PCINT7/ADC7)_PA7") (type passive))
        (pin (num 17) (name "PB0_(PCINT8/ADC8)") (type passive))
        (pin (num 18) (name AVCC) (type power_in))
        (pin (num 19) (name "PB1_(PCINT9/ADC9)") (type passive))
        (pin (num 20) (name "PB2_(PCINT10/ADC10)") (type passive))
        (pin (num 21) (name GND) (type passive))
        (pin (num 22) (name "PB3_(PCINT11/ADC11)") (type passive))
        (pin (num 23) (name "PB4_(PCINT12/ADC12)") (type passive))
        (pin (num 24) (name "PB5_(PCINT13/ADC13)") (type passive))
        (pin (num 25) (name "PB6_(PCINT14/ADC14)") (type passive))
        (pin (num 26) (name "PB7_(PCINT15/ADC15)") (type passive))
        (pin (num 27) (name "PD0_(PCINT24/ADC24/SDA/MOSI)") (type passive))
        (pin (num 28) (name "PD1_(PCINT25/ADC25/MISO)") (type passive))
        (pin (num 29) (name "PD2_(!PCINT26/ADC26/RESET/DW)") (type passive))
        (pin (num 30) (name "PD3_(PCINT27/ADC27/SCL/SCK)") (type passive))
        (pin (num 31) (name "PC0_(PCINT16/ADC16/TOCC0/SS/XCK)") (type passive))
        (pin (num 32) (name "PC1_(PCINT17/ADC17/TOCC1/INT0/CLKO)") (type passive))))
    (libpart (lib Cryptech_Alpha) (part AVR_SPI_PRG_62X3_LOCK)
      (fields
        (field (name Reference) JP)
        (field (name Value) AVR_SPI_PRG_62X3_LOCK))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))
        (pin (num 4) (name 4) (type passive))
        (pin (num 5) (name 5) (type passive))
        (pin (num 6) (name 6) (type passive))))
    (libpart (lib Cryptech_Alpha) (part BAT54)
      (fields
        (field (name Reference) D)
        (field (name Value) BAT54))
      (pins
        (pin (num 1) (name A) (type passive))
        (pin (num 3) (name C) (type passive))))
    (libpart (lib Cryptech_Alpha) (part BC818*SMD)
      (fields
        (field (name Reference) T)
        (field (name Value) BC818*SMD))
      (pins
        (pin (num 1) (name B) (type passive))
        (pin (num 2) (name E) (type passive))
        (pin (num 3) (name C) (type passive))))
    (libpart (lib Cryptech_Alpha) (part BLM31PG330SN1_1206)
      (fields
        (field (name Reference) FB)
        (field (name Value) BLM31PG330SN1_1206))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib Cryptech_Alpha) (part C-EUC0402)
      (fields
        (field (name Reference) C)
        (field (name Value) C-EUC0402))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib Cryptech_Alpha) (part C-EUC0603)
      (fields
        (field (name Reference) C)
        (field (name Value) C-EUC0603))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib Cryptech_Alpha) (part C-EUC0805)
      (fields
        (field (name Reference) C)
        (field (name Value) C-EUC0805))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib Cryptech_Alpha) (part C-EUC1210)
      (fields
        (field (name Reference) C)
        (field (name Value) C-EUC1210))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib Cryptech_Alpha) (part CP_E-035X080)
      (fields
        (field (name Reference) C)
        (field (name Value) CP_E-035X080))
      (pins
        (pin (num 1) (name +) (type passive))
        (pin (num 2) (name -) (type passive))))
    (libpart (lib Cryptech_Alpha) (part CRYSTALTHIN)
      (fields
        (field (name Reference) Y)
        (field (name Value) CRYSTALTHIN))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))
        (pin (num 4) (name 4) (type passive))))
    (libpart (lib Cryptech_Alpha) (part EN5364QI)
      (fields
        (field (name Reference) U)
        (field (name Value) EN5364QI))
      (pins
        (pin (num 1) (name PGND) (type power_in))
        (pin (num 2) (name PGND) (type power_in))
        (pin (num 3) (name PGND) (type power_in))
        (pin (num 4) (name PGND) (type power_in))
        (pin (num 5) (name VOUT) (type power_out))
        (pin (num 6) (name VOUT) (type power_in))
        (pin (num 7) (name VOUT) (type power_in))
        (pin (num 8) (name VOUT) (type power_in))
        (pin (num 9) (name VOUT) (type power_in))
        (pin (num 10) (name VOUT) (type power_in))
        (pin (num 11) (name VOUT) (type power_in))
        (pin (num 12) (name VOUT) (type power_in))
        (pin (num 13) (name VOUT) (type power_in))
        (pin (num 14) (name NC) (type passive))
        (pin (num 15) (name NC) (type passive))
        (pin (num 16) (name NC) (type passive))
        (pin (num 17) (name NC) (type passive))
        (pin (num 18) (name NC) (type passive))
        (pin (num 19) (name NC) (type passive))
        (pin (num 20) (name NC) (type passive))
        (pin (num 21) (name NC) (type passive))
        (pin (num 22) (name NC) (type passive))
        (pin (num 23) (name NC) (type passive))
        (pin (num 24) (name NC) (type passive))
        (pin (num 25) (name NC) (type passive))
        (pin (num 26) (name NC) (type passive))
        (pin (num 27) (name PGND) (type power_in))
        (pin (num 28) (name PGND) (type power_in))
        (pin (num 29) (name PGND) (type power_in))
        (pin (num 30) (name PGND) (type power_in))
        (pin (num 31) (name PGND) (type power_in))
        (pin (num 32) (name PGND) (type power_in))
        (pin (num 33) (name PGND) (type power_in))
        (pin (num 34) (name PVIN) (type power_in))
        (pin (num 35) (name PVIN) (type power_in))
        (pin (num 36) (name PVIN) (type power_in))
        (pin (num 37) (name PVIN) (type power_in))
        (pin (num 38) (name PVIN) (type power_in))
        (pin (num 39) (name PVIN) (type power_in))
        (pin (num 40) (name PVIN) (type power_in))
        (pin (num 41) (name PVIN) (type power_in))
        (pin (num 42) (name PVIN) (type power_in))
        (pin (num 43) (name PVIN) (type power_in))
        (pin (num 44) (name NC) (type passive))
        (pin (num 45) (name NC) (type passive))
        (pin (num 46) (name NC) (type passive))
        (pin (num 47) (name NC) (type passive))
        (pin (num 48) (name S_OUT) (type output))
        (pin (num 49) (name S_IN) (type passive))
        (pin (num 50) (name M/S) (type passive))
        (pin (num 51) (name EN_PB) (type passive))
        (pin (num 52) (name ENABLE) (type passive))
        (pin (num 53) (name AVIN) (type power_in))
        (pin (num 54) (name POK) (type output))
        (pin (num 55) (name AGND) (type power_in))
        (pin (num 56) (name VFB) (type passive))
        (pin (num 57) (name EAOUT) (type output))
        (pin (num 58) (name OCP_ADJ) (type passive))
        (pin (num 59) (name SS) (type passive))
        (pin (num 60) (name S_DELAY) (type passive))
        (pin (num 61) (name MAR1) (type passive))
        (pin (num 62) (name MAR2) (type passive))
        (pin (num 63) (name VSENSE) (type passive))
        (pin (num 64) (name PGND) (type power_in))
        (pin (num 65) (name PGND) (type power_in))
        (pin (num 66) (name PGND) (type power_in))
        (pin (num 67) (name PGND) (type power_in))
        (pin (num 68) (name PGND) (type power_in))
        (pin (num PAD69) (name PGND) (type power_in))
        (pin (num PAD70) (name PGND) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part EN6347QI)
      (fields
        (field (name Reference) U)
        (field (name Value) EN6347QI))
      (pins
        (pin (num 1) (name NC) (type passive))
        (pin (num 2) (name NC) (type passive))
        (pin (num 3) (name NC) (type passive))
        (pin (num 4) (name NC) (type passive))
        (pin (num 5) (name VOUT) (type power_out))
        (pin (num 6) (name VOUT) (type power_in))
        (pin (num 7) (name VOUT) (type power_in))
        (pin (num 8) (name VOUT) (type power_in))
        (pin (num 9) (name VOUT) (type power_in))
        (pin (num 10) (name VOUT) (type power_in))
        (pin (num 11) (name VOUT) (type power_in))
        (pin (num 12) (name NC) (type passive))
        (pin (num 13) (name PGND) (type power_in))
        (pin (num 14) (name PGND) (type power_in))
        (pin (num 15) (name PGND) (type power_in))
        (pin (num 16) (name PGND) (type power_in))
        (pin (num 17) (name PGND) (type power_in))
        (pin (num 18) (name PGND) (type power_in))
        (pin (num 19) (name PVIN) (type power_in))
        (pin (num 20) (name PVIN) (type power_in))
        (pin (num 21) (name PVIN) (type power_in))
        (pin (num 22) (name NC) (type passive))
        (pin (num 23) (name NC) (type passive))
        (pin (num 24) (name NC) (type passive))
        (pin (num 25) (name NC) (type passive))
        (pin (num 26) (name LLM/SYNC) (type passive))
        (pin (num 27) (name ENABLE) (type passive))
        (pin (num 28) (name POK) (type output))
        (pin (num 29) (name RLLM) (type passive))
        (pin (num 30) (name SS) (type passive))
        (pin (num 31) (name VFB) (type passive))
        (pin (num 32) (name AGND) (type power_in))
        (pin (num 33) (name AVIN) (type power_in))
        (pin (num 34) (name NC) (type passive))
        (pin (num 35) (name NC) (type passive))
        (pin (num 36) (name NC) (type passive))
        (pin (num 37) (name NC) (type passive))
        (pin (num 38) (name NC) (type passive))
        (pin (num PAD39) (name PGND) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part FERRITE_0603MP)
      (fields
        (field (name Reference) FB)
        (field (name Value) FERRITE_0603MP))
      (pins
        (pin (num 1) (name P$1) (type passive))
        (pin (num 2) (name P$2) (type passive))))
    (libpart (lib Cryptech_Alpha) (part FT232H_SERIAL)
      (fields
        (field (name Reference) U)
        (field (name Value) FT232H_SERIAL))
      (pins
        (pin (num 1) (name XCSI) (type passive))
        (pin (num 2) (name XCSO) (type passive))
        (pin (num 3) (name VPHY) (type power_in))
        (pin (num 4) (name AGND) (type power_in))
        (pin (num 5) (name REF) (type passive))
        (pin (num 6) (name DM) (type passive))
        (pin (num 7) (name DP) (type passive))
        (pin (num 8) (name VPLL) (type power_in))
        (pin (num 9) (name AGND) (type power_in))
        (pin (num 10) (name GND) (type power_in))
        (pin (num 11) (name GND) (type power_in))
        (pin (num 12) (name VCCIO) (type power_in))
        (pin (num 13) (name TXD) (type output))
        (pin (num 14) (name RXD) (type passive))
        (pin (num 15) (name RTS#) (type output))
        (pin (num 16) (name CTS#) (type passive))
        (pin (num 17) (name DTR#) (type output))
        (pin (num 18) (name DSR#) (type passive))
        (pin (num 19) (name DCD#) (type passive))
        (pin (num 20) (name RI#) (type passive))
        (pin (num 21) (name TXDEN) (type output))
        (pin (num 22) (name GND) (type power_in))
        (pin (num 23) (name GND) (type power_in))
        (pin (num 24) (name VCCIO) (type power_in))
        (pin (num 25) (name ACBUS1) (type passive))
        (pin (num 26) (name ACBUS2) (type passive))
        (pin (num 27) (name RXLED#) (type output))
        (pin (num 28) (name TXLED#) (type output))
        (pin (num 29) (name ACBUS5) (type passive))
        (pin (num 30) (name ACBUS6) (type passive))
        (pin (num 31) (name PWRSAV#) (type passive))
        (pin (num 32) (name ACBUS8) (type passive))
        (pin (num 33) (name ACBUS9) (type passive))
        (pin (num 34) (name ~RESET) (type passive))
        (pin (num 35) (name GND) (type power_in))
        (pin (num 36) (name GND) (type power_in))
        (pin (num 37) (name VCCA) (type power_out))
        (pin (num 38) (name VCCORE) (type power_out))
        (pin (num 39) (name VCCD) (type power_out))
        (pin (num 40) (name VREGIN) (type power_in))
        (pin (num 41) (name AGND) (type power_in))
        (pin (num 42) (name TEST) (type passive))
        (pin (num 43) (name EEDATA) (type passive))
        (pin (num 44) (name EECLK) (type output))
        (pin (num 45) (name EECS) (type output))
        (pin (num 46) (name VCCIO) (type power_in))
        (pin (num 47) (name GND) (type power_in))
        (pin (num 48) (name GND) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part IS45S32160F)
      (fields
        (field (name Reference) U)
        (field (name Value) IS45S32160F))
      (pins
        (pin (num 1) (name VDD) (type power_in))
        (pin (num 2) (name DQ0) (type passive))
        (pin (num 3) (name VDDQ) (type power_in))
        (pin (num 4) (name DQ1) (type passive))
        (pin (num 5) (name DQ2) (type passive))
        (pin (num 6) (name VSSQ) (type power_in))
        (pin (num 7) (name DQ3) (type passive))
        (pin (num 8) (name DQ4) (type passive))
        (pin (num 10) (name DQ5) (type passive))
        (pin (num 11) (name DQ6) (type passive))
        (pin (num 12) (name VSSQ) (type power_in))
        (pin (num 13) (name DQ7) (type passive))
        (pin (num 15) (name VDD) (type power_in))
        (pin (num 16) (name DQM0) (type passive))
        (pin (num 17) (name ~WE) (type passive))
        (pin (num 18) (name ~CAS) (type passive))
        (pin (num 19) (name ~RAS) (type passive))
        (pin (num 20) (name ~CS) (type passive))
        (pin (num 21) (name A11) (type passive))
        (pin (num 22) (name BA0) (type passive))
        (pin (num 23) (name BA1) (type passive))
        (pin (num 24) (name A10) (type passive))
        (pin (num 25) (name A0) (type passive))
        (pin (num 26) (name A1) (type passive))
        (pin (num 27) (name A2) (type passive))
        (pin (num 28) (name DQM2) (type passive))
        (pin (num 29) (name VDD) (type power_in))
        (pin (num 31) (name DQ16) (type passive))
        (pin (num 32) (name VSSQ) (type power_in))
        (pin (num 33) (name DQ17) (type passive))
        (pin (num 34) (name DQ18) (type passive))
        (pin (num 35) (name VDDQ) (type power_in))
        (pin (num 36) (name DQ19) (type passive))
        (pin (num 37) (name DQ20) (type passive))
        (pin (num 38) (name VSSQ) (type power_in))
        (pin (num 39) (name DQ21) (type passive))
        (pin (num 40) (name DQ22) (type passive))
        (pin (num 41) (name VDDQ) (type power_in))
        (pin (num 42) (name DQ23) (type passive))
        (pin (num 43) (name VDD) (type power_in))
        (pin (num 44) (name VSS) (type power_in))
        (pin (num 45) (name DQ24) (type passive))
        (pin (num 46) (name VSSQ) (type power_in))
        (pin (num 47) (name DQ25) (type passive))
        (pin (num 48) (name DQ26) (type passive))
        (pin (num 49) (name VDDQ) (type power_in))
        (pin (num 50) (name DQ27) (type passive))
        (pin (num 51) (name DQ28) (type passive))
        (pin (num 52) (name VSSQ) (type power_in))
        (pin (num 53) (name DQ29) (type passive))
        (pin (num 54) (name DQ30) (type passive))
        (pin (num 55) (name VDDQ) (type power_in))
        (pin (num 56) (name DQ31) (type passive))
        (pin (num 58) (name VSS) (type power_in))
        (pin (num 59) (name DQM3) (type passive))
        (pin (num 60) (name A3) (type passive))
        (pin (num 61) (name A4) (type passive))
        (pin (num 62) (name A5) (type passive))
        (pin (num 63) (name A6) (type passive))
        (pin (num 64) (name A7) (type passive))
        (pin (num 65) (name A8) (type passive))
        (pin (num 66) (name A9) (type passive))
        (pin (num 67) (name CKE) (type passive))
        (pin (num 68) (name CLK) (type passive))
        (pin (num 69) (name A12) (type passive))
        (pin (num 71) (name DQM1) (type passive))
        (pin (num 72) (name VSS) (type power_in))
        (pin (num 74) (name DQ8) (type passive))
        (pin (num 75) (name VDDQ) (type power_in))
        (pin (num 76) (name DQ9) (type passive))
        (pin (num 77) (name DQ10) (type passive))
        (pin (num 78) (name VSSQ) (type power_in))
        (pin (num 79) (name DQ11) (type passive))
        (pin (num 80) (name DQ12) (type passive))
        (pin (num 81) (name VDDQ) (type power_in))
        (pin (num 82) (name DQ13) (type passive))
        (pin (num 83) (name DQ14) (type passive))
        (pin (num 84) (name VSSQ) (type power_in))
        (pin (num 85) (name DQ15) (type passive))
        (pin (num 86) (name VSS) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part JP1Q)
      (fields
        (field (name Reference) JP)
        (field (name Value) JP1Q))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib Cryptech_Alpha) (part LEDCHIP-LED0603)
      (fields
        (field (name Reference) LED)
        (field (name Value) LEDCHIP-LED0603))
      (pins
        (pin (num 1) (name A) (type passive))
        (pin (num 2) (name C) (type passive))))
    (libpart (lib Cryptech_Alpha) (part LMZ13608)
      (fields
        (field (name Reference) U)
        (field (name Value) LMZ13608))
      (pins
        (pin (num 1) (name VIN) (type power_in))
        (pin (num 2) (name VIN) (type power_in))
        (pin (num 3) (name AGND) (type power_in))
        (pin (num 4) (name EN) (type passive))
        (pin (num 5) (name AGND) (type power_in))
        (pin (num 6) (name AGND) (type power_in))
        (pin (num 7) (name FB) (type passive))
        (pin (num 8) (name SS/TRK) (type passive))
        (pin (num 9) (name NC) (type passive))
        (pin (num 10) (name VOUT) (type power_out))
        (pin (num 11) (name VOUT) (type power_in))
        (pin (num TP1) (name PGND) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part LT3060ITS8-15)
      (fields
        (field (name Reference) U)
        (field (name Value) LT3060ITS8-15))
      (pins
        (pin (num 1) (name ~SHDN) (type passive))
        (pin (num 2) (name GND) (type power_in))
        (pin (num 3) (name GND) (type power_in))
        (pin (num 4) (name GND) (type power_in))
        (pin (num 5) (name IN) (type power_in))
        (pin (num 6) (name OUT) (type power_out))
        (pin (num 7) (name ADJ) (type passive))
        (pin (num 8) (name REF/BYP) (type passive))))
    (libpart (lib Cryptech_Alpha) (part M03LOCK)
      (fields
        (field (name Reference) JP)
        (field (name Value) M03LOCK))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))))
    (libpart (lib Cryptech_Alpha) (part M03X2NO_SILK)
      (fields
        (field (name Reference) J)
        (field (name Value) M03X2NO_SILK))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))
        (pin (num 4) (name 4) (type passive))
        (pin (num 5) (name 5) (type passive))
        (pin (num 6) (name 6) (type passive))))
    (libpart (lib Cryptech_Alpha) (part M10LOCK)
      (fields
        (field (name Reference) JP)
        (field (name Value) M10LOCK))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))
        (pin (num 4) (name 4) (type passive))
        (pin (num 5) (name 5) (type passive))
        (pin (num 6) (name 6) (type passive))
        (pin (num 7) (name 7) (type passive))
        (pin (num 8) (name 8) (type passive))
        (pin (num 9) (name 9) (type passive))
        (pin (num 10) (name 10) (type passive))))
    (libpart (lib Cryptech_Alpha) (part MA08-1)
      (fields
        (field (name Reference) SV)
        (field (name Value) MA08-1))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))
        (pin (num 4) (name 4) (type passive))
        (pin (num 5) (name 5) (type passive))
        (pin (num 6) (name 6) (type passive))
        (pin (num 7) (name 7) (type passive))
        (pin (num 8) (name 8) (type passive))))
    (libpart (lib Cryptech_Alpha) (part MA08-2)
      (fields
        (field (name Reference) SV)
        (field (name Value) MA08-2))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))
        (pin (num 4) (name 4) (type passive))
        (pin (num 5) (name 5) (type passive))
        (pin (num 6) (name 6) (type passive))
        (pin (num 7) (name 7) (type passive))
        (pin (num 8) (name 8) (type passive))
        (pin (num 9) (name 9) (type passive))
        (pin (num 10) (name 10) (type passive))
        (pin (num 11) (name 11) (type passive))
        (pin (num 12) (name 12) (type passive))
        (pin (num 13) (name 13) (type passive))
        (pin (num 14) (name 14) (type passive))
        (pin (num 15) (name 15) (type passive))
        (pin (num 16) (name 16) (type passive))))
    (libpart (lib Cryptech_Alpha) (part MC74HC1G14DTT1G)
      (fields
        (field (name Reference) U)
        (field (name Value) MC74HC1G14DTT1G))
      (pins
        (pin (num 1) (name NC) (type passive))
        (pin (num 2) (name IN_A) (type passive))
        (pin (num 3) (name GND) (type passive))
        (pin (num 4) (name OUT_Y) (type output))
        (pin (num 5) (name VCC) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part MCP79412-I_SN)
      (fields
        (field (name Reference) U)
        (field (name Value) MCP79412-I_SN))
      (pins
        (pin (num 1) (name X1) (type passive))
        (pin (num 2) (name X2) (type passive))
        (pin (num 3) (name VBAT) (type power_in))
        (pin (num 4) (name VSS) (type power_in))
        (pin (num 5) (name SDA) (type passive))
        (pin (num 6) (name SCL) (type passive))
        (pin (num 7) (name MFP) (type passive))
        (pin (num 8) (name VCC) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part N25Q128A13ES)
      (fields
        (field (name Reference) IC)
        (field (name Value) N25Q128A13ES))
      (pins
        (pin (num 1) (name ~S) (type passive))
        (pin (num 2) (name DQ1) (type passive))
        (pin (num 3) (name ~W/VPP/DQ2) (type passive))
        (pin (num 4) (name VSS) (type passive))
        (pin (num 5) (name DQ0) (type passive))
        (pin (num 6) (name C) (type passive))
        (pin (num 7) (name ~HOLD/DQ3) (type passive))
        (pin (num 8) (name VCC) (type passive))))
    (libpart (lib Cryptech_Alpha) (part OSHW-LOGOL-COPPER)
      (fields
        (field (name Reference) LOGO)
        (field (name Value) OSHW-LOGOL-COPPER)))
    (libpart (lib Cryptech_Alpha) (part POWER_JACKSMD)
      (fields
        (field (name Reference) JP)
        (field (name Value) POWER_JACKSMD))
      (pins
        (pin (num 1) (name PWR) (type power_in))
        (pin (num 2) (name GND) (type power_in))
        (pin (num 3) (name GNDBREAK) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part R-EU_R0402)
      (fields
        (field (name Reference) R)
        (field (name Value) R-EU_R0402))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib Cryptech_Alpha) (part R-EU_R0603)
      (fields
        (field (name Reference) R)
        (field (name Value) R-EU_R0603))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib Cryptech_Alpha) (part RCLAMP0502ASC-89)
      (fields
        (field (name Reference) IC)
        (field (name Value) RCLAMP0502ASC-89))
      (pins
        (pin (num 1) (name OUT1) (type output))
        (pin (num 2) (name GND) (type power_in))
        (pin (num 3) (name OUT2) (type output))
        (pin (num 4) (name IN2) (type passive))
        (pin (num 5) (name VCC) (type power_in))
        (pin (num 6) (name IN1) (type passive))))
    (libpart (lib Cryptech_Alpha) (part STM32-SWD)
      (fields
        (field (name Reference) J)
        (field (name Value) STM32-SWD))
      (pins
        (pin (num 1) (name VCC) (type power_in))
        (pin (num 2) (name SWDCLK) (type passive))
        (pin (num 3) (name GND) (type power_in))
        (pin (num 4) (name SWDIO) (type passive))
        (pin (num 5) (name NRST) (type passive))
        (pin (num 6) (name SWO) (type passive))))
    (libpart (lib Cryptech_Alpha) (part STM32F429BIT6_1)
      (fields
        (field (name Reference) U)
        (field (name Value) STM32F429BIT6_1))
      (pins
        (pin (num 7) (name PI8) (type passive))
        (pin (num 8) (name PC13) (type passive))
        (pin (num 9) (name PC14) (type passive))
        (pin (num 10) (name PC15) (type passive))
        (pin (num 13) (name PI11) (type passive))
        (pin (num 19) (name PI12) (type passive))
        (pin (num 20) (name PI13) (type passive))
        (pin (num 21) (name PI14) (type passive))
        (pin (num 27) (name FMC_NIORD/PF6) (type passive))
        (pin (num 28) (name FMC_NREG/PF7) (type passive))
        (pin (num 29) (name FMC_NIOWR/PF8) (type passive))
        (pin (num 30) (name FMC_CD/PF9) (type passive))
        (pin (num 31) (name FMC_INTR/PF10) (type passive))
        (pin (num 36) (name PC1) (type passive))
        (pin (num 43) (name USART2_CTS/WKUP/PA0) (type passive))
        (pin (num 44) (name USART2_RTS/PA1) (type passive))
        (pin (num 45) (name USART2_TX/PA2) (type passive))
        (pin (num 46) (name FMC_SDCKE0/PH2) (type passive))
        (pin (num 47) (name PH3) (type passive))
        (pin (num 48) (name I2C2_SCL/PH4) (type passive))
        (pin (num 49) (name I2C2_SDA/PH5) (type passive))
        (pin (num 50) (name USART2_RX/PA3) (type passive))
        (pin (num 53) (name PA4) (type passive))
        (pin (num 54) (name SPI1_SCK/PA5) (type passive))
        (pin (num 55) (name SPI1_MISO/PA6) (type passive))
        (pin (num 56) (name SPI1_MOSI/PA7) (type passive))
        (pin (num 57) (name PC4) (type passive))
        (pin (num 58) (name PC5) (type passive))
        (pin (num 61) (name PB0) (type passive))
        (pin (num 62) (name PB1) (type passive))
        (pin (num 64) (name PI15) (type passive))
        (pin (num 65) (name PJ0) (type passive))
        (pin (num 66) (name PJ1) (type passive))
        (pin (num 67) (name PJ2) (type passive))
        (pin (num 68) (name PJ3) (type passive))
        (pin (num 69) (name PJ4) (type passive))
        (pin (num 90) (name PB10) (type passive))
        (pin (num 91) (name PB11) (type passive))
        (pin (num 95) (name PJ5) (type passive))
        (pin (num 96) (name FMC_SDNE1/PH6) (type passive))
        (pin (num 97) (name FMC_SDCKE1/PH7) (type passive))
        (pin (num 104) (name PB12) (type passive))
        (pin (num 105) (name SPI2_SCK/PB13) (type passive))
        (pin (num 106) (name SPI2_MISO/PB14) (type passive))
        (pin (num 107) (name SPI2_MOSI/PB15) (type passive))
        (pin (num 118) (name PJ6) (type passive))
        (pin (num 119) (name PJ7) (type passive))
        (pin (num 120) (name PJ8) (type passive))
        (pin (num 121) (name PJ9) (type passive))
        (pin (num 122) (name PJ10) (type passive))
        (pin (num 123) (name PJ11) (type passive))
        (pin (num 126) (name PK0) (type passive))
        (pin (num 127) (name PK1) (type passive))
        (pin (num 128) (name PK2) (type passive))
        (pin (num 133) (name FMC_INT2/PG6) (type passive))
        (pin (num 134) (name FMC_INT3/PG7) (type passive))
        (pin (num 138) (name PC6) (type passive))
        (pin (num 139) (name PC7) (type passive))
        (pin (num 140) (name SDIO_D0/PC8) (type passive))
        (pin (num 141) (name SDIO_D1/PC9) (type passive))
        (pin (num 142) (name PA8) (type passive))
        (pin (num 143) (name USART1_TX/PA9) (type passive))
        (pin (num 144) (name USART1_RX/PA10) (type passive))
        (pin (num 145) (name USART1_CTS/PA11) (type passive))
        (pin (num 146) (name USART1_RTS/PA12) (type passive))
        (pin (num 161) (name SDIO_D2/PC10) (type passive))
        (pin (num 162) (name SDIO_D3/PC11) (type passive))
        (pin (num 163) (name SDIO_CK/PC12) (type passive))
        (pin (num 166) (name SDIO_CMD/PD2) (type passive))
        (pin (num 174) (name PJ12) (type passive))
        (pin (num 175) (name PJ13) (type passive))
        (pin (num 176) (name PJ14) (type passive))
        (pin (num 177) (name PJ15) (type passive))
        (pin (num 178) (name FMC_NE2/FMC_NCE3/PG9) (type passive))
        (pin (num 179) (name FMC_NCE4_1/FMC_NE3/PG10) (type passive))
        (pin (num 180) (name FMC_NCE4_2/PG11) (type passive))
        (pin (num 181) (name FMC_NE4/PG12) (type passive))
        (pin (num 186) (name PK3) (type passive))
        (pin (num 187) (name PK4) (type passive))
        (pin (num 188) (name PK5) (type passive))
        (pin (num 189) (name PK6) (type passive))
        (pin (num 190) (name PK7) (type passive))
        (pin (num 198) (name PB8/I2C1_SCL) (type passive))
        (pin (num 199) (name PB9/I2C1_SDA) (type passive))))
    (libpart (lib Cryptech_Alpha) (part STM32F429BIT6_2)
      (fields
        (field (name Reference) U)
        (field (name Value) STM32F429BIT6_2))
      (pins
        (pin (num 32) (name OSC_IN/PH0) (type passive))
        (pin (num 33) (name OSC_OUT/PH1) (type passive))
        (pin (num 34) (name NRST) (type passive))
        (pin (num 41) (name VREF+) (type power_in))
        (pin (num 63) (name PB2/BOOT1) (type passive))
        (pin (num 147) (name PA13/JTMS-SWDIO) (type passive))
        (pin (num 159) (name PA14/JTCK-SWCLK) (type passive))
        (pin (num 160) (name PA15/JTDI) (type passive))
        (pin (num 192) (name PB3/JTDO/TRACESWO) (type passive))
        (pin (num 193) (name PB4/NJTRST) (type passive))
        (pin (num 197) (name BOOT0) (type passive))
        (pin (num 203) (name PDR_ON) (type passive))))
    (libpart (lib Cryptech_Alpha) (part STM32F429BIT6_3)
      (fields
        (field (name Reference) U)
        (field (name Value) STM32F429BIT6_3))
      (pins
        (pin (num 6) (name VBAT) (type power_in))
        (pin (num 14) (name VSS) (type power_in))
        (pin (num 15) (name VDD) (type power_in))
        (pin (num 25) (name VSS) (type power_in))
        (pin (num 26) (name VDD) (type power_in))
        (pin (num 39) (name VDD) (type power_in))
        (pin (num 40) (name VSSA) (type power_in))
        (pin (num 42) (name VDDA) (type power_in))
        (pin (num 51) (name VSS) (type power_in))
        (pin (num 52) (name VDD) (type power_in))
        (pin (num 59) (name VDD) (type power_in))
        (pin (num 60) (name VSS) (type power_in))
        (pin (num 72) (name VSS) (type power_in))
        (pin (num 73) (name VDD) (type power_in))
        (pin (num 82) (name VSS) (type power_in))
        (pin (num 83) (name VDD) (type power_in))
        (pin (num 92) (name VCAP1) (type passive))
        (pin (num 93) (name VSS) (type power_in))
        (pin (num 94) (name VDD) (type power_in))
        (pin (num 103) (name VDD) (type power_in))
        (pin (num 114) (name VSS) (type power_in))
        (pin (num 115) (name VDD) (type power_in))
        (pin (num 124) (name VDD) (type power_in))
        (pin (num 125) (name VSS) (type power_in))
        (pin (num 136) (name VSS) (type power_in))
        (pin (num 137) (name VDD) (type power_in))
        (pin (num 148) (name VCAP2) (type passive))
        (pin (num 149) (name VSS) (type power_in))
        (pin (num 150) (name VDD) (type power_in))
        (pin (num 158) (name VDD) (type power_in))
        (pin (num 170) (name VSS) (type power_in))
        (pin (num 171) (name VDD) (type power_in))
        (pin (num 184) (name VSS) (type power_in))
        (pin (num 185) (name VDD) (type power_in))
        (pin (num 202) (name VSS) (type power_in))
        (pin (num 204) (name VDD) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part STM32F429BIT6_4)
      (fields
        (field (name Reference) U)
        (field (name Value) STM32F429BIT6_4))
      (pins
        (pin (num 1) (name FMC_A23/PE2) (type passive))
        (pin (num 2) (name FMC_A19/PE3) (type passive))
        (pin (num 3) (name FMC_A20/PE4) (type passive))
        (pin (num 4) (name FMC_A21/PE5) (type passive))
        (pin (num 5) (name FMC_A22/PE6) (type passive))
        (pin (num 11) (name PI9/FMC_D30) (type passive))
        (pin (num 12) (name PI10/FMC_D31) (type passive))
        (pin (num 16) (name FMC_A0/PF0) (type passive))
        (pin (num 17) (name FMC_A1/PF1) (type passive))
        (pin (num 18) (name FMC_A2/PF2) (type passive))
        (pin (num 22) (name FMC_A3/PF3) (type passive))
        (pin (num 23) (name FMC_A4/PF4) (type passive))
        (pin (num 24) (name FMC_A5/PF5) (type passive))
        (pin (num 35) (name PC0/FMC_SDNWE) (type passive))
        (pin (num 37) (name PC2/FMC_SDNE0) (type passive))
        (pin (num 38) (name PC3/FMC_SDCKE0) (type passive))
        (pin (num 70) (name PF11/FMC_SDNRAS) (type passive))
        (pin (num 71) (name FMC_A6/PF12) (type passive))
        (pin (num 74) (name FMC_A7/PF13) (type passive))
        (pin (num 75) (name FMC_A8/PF14) (type passive))
        (pin (num 76) (name FMC_A9/PF15) (type passive))
        (pin (num 77) (name FMC_A10/PG0) (type passive))
        (pin (num 78) (name FMC_A11/PG1) (type passive))
        (pin (num 79) (name PE7/FMC_D4) (type passive))
        (pin (num 80) (name PE8/FMC_D5) (type passive))
        (pin (num 81) (name PE9/FMC_D6) (type passive))
        (pin (num 84) (name PE10/FMC_D7) (type passive))
        (pin (num 85) (name PE11/FMC_D8) (type passive))
        (pin (num 86) (name PE12/FMC_D9) (type passive))
        (pin (num 87) (name PE13/FMC_D10) (type passive))
        (pin (num 88) (name PE14/FMC_D11) (type passive))
        (pin (num 89) (name PE15/FMC_D12) (type passive))
        (pin (num 98) (name PH8/FMC_D16) (type passive))
        (pin (num 99) (name PH9/FMC_D17) (type passive))
        (pin (num 100) (name PH10/FMC_D18) (type passive))
        (pin (num 101) (name PH11/FMC_D19) (type passive))
        (pin (num 102) (name PH12/FMC_D20) (type passive))
        (pin (num 108) (name PD8/FMC_D13) (type passive))
        (pin (num 109) (name PD9/FMC_D14) (type passive))
        (pin (num 110) (name PD10/FMC_D15) (type passive))
        (pin (num 111) (name FMC_A16/PD11) (type passive))
        (pin (num 112) (name FMC_A17/PD12) (type passive))
        (pin (num 113) (name FMC_A18/PD13) (type passive))
        (pin (num 116) (name PD14/FMC_D0) (type passive))
        (pin (num 117) (name PD15/FMC_D1) (type passive))
        (pin (num 129) (name FMC_A12/PG2) (type passive))
        (pin (num 130) (name FMC_A13/PG3) (type passive))
        (pin (num 131) (name FMC_A14/PG4) (type passive))
        (pin (num 132) (name FMC_A15/PG5) (type passive))
        (pin (num 135) (name PG8/FMC_SDCLK) (type passive))
        (pin (num 151) (name PH13/FMC_D21) (type passive))
        (pin (num 152) (name PH14/FMC_D22) (type passive))
        (pin (num 153) (name PH15/FMC_D23) (type passive))
        (pin (num 154) (name PI0/FMC_D24) (type passive))
        (pin (num 155) (name PI1/FMC_D25) (type passive))
        (pin (num 156) (name PI2/FMC_D26) (type passive))
        (pin (num 157) (name PI3/FMC_D27) (type passive))
        (pin (num 164) (name PD0/FMC_D2) (type passive))
        (pin (num 165) (name PD1/FMC_D3) (type passive))
        (pin (num 167) (name FMC_CLK/PD3) (type passive))
        (pin (num 168) (name FMC_NOE/PD4) (type passive))
        (pin (num 169) (name FMC_NWE/PD5) (type passive))
        (pin (num 172) (name FMC_NWAIT/PD6) (type passive))
        (pin (num 173) (name FMC_NE1/PD7) (type passive))
        (pin (num 182) (name FMC_A24/PG13) (type passive))
        (pin (num 183) (name FMC_A25/PG14) (type passive))
        (pin (num 191) (name PG15/FMC_SDNCAS) (type passive))
        (pin (num 194) (name PB5/FMC_SDCKE1) (type passive))
        (pin (num 195) (name PB6/FMC_SDNE1) (type passive))
        (pin (num 196) (name FMC_NL/PB7) (type passive))
        (pin (num 200) (name FMC_NBL0/PE0) (type passive))
        (pin (num 201) (name FMC_NBL1/PE1) (type passive))
        (pin (num 205) (name FMC_NBL2/PI4) (type passive))
        (pin (num 206) (name FMC_NBL3/PI5) (type passive))
        (pin (num 207) (name PI6/FMC_D28) (type passive))
        (pin (num 208) (name PI7/FMC_D29) (type passive))))
    (libpart (lib Cryptech_Alpha) (part TACTILE_SWITCH)
      (fields
        (field (name Reference) S)
        (field (name Value) TACTILE_SWITCH))
      (pins
        (pin (num A1) (name A1) (type passive))
        (pin (num A2) (name A2) (type passive))
        (pin (num B1) (name B1) (type passive))
        (pin (num B2) (name B2) (type passive))
        (pin (num G1) (name G1) (type power_in))
        (pin (num G2) (name G2) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part TPB1,27)
      (fields
        (field (name Reference) TP)
        (field (name Value) TPB1,27))
      (pins
        (pin (num TP) (name TP) (type passive))))
    (libpart (lib Cryptech_Alpha) (part USBMINIB)
      (fields
        (field (name Reference) CN)
        (field (name Value) USBMINIB))
      (pins
        (pin (num D+) (name D+) (type passive))
        (pin (num D-) (name D-) (type passive))
        (pin (num GND) (name GND) (type power_in))
        (pin (num ID) (name ID) (type passive))
        (pin (num VBUS) (name VBUS) (type power_out))))
    (libpart (lib Cryptech_Alpha) (part WE-SHC)
      (fields
        (field (name Reference) S)
        (field (name Value) WE-SHC))
      (pins
        (pin (num 1) (name GND) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_1)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_1))
      (pins
        (pin (num E12) (name VCCBATT_0) (type passive))
        (pin (num F12) (name VCCO_0) (type passive))
        (pin (num G11) (name DONE_0) (type passive))
        (pin (num L12) (name CCLK_0) (type passive))
        (pin (num N12) (name PROGRAM_B_0) (type passive))
        (pin (num R13) (name TDI_0) (type passive))
        (pin (num T12) (name VCCO_0) (type passive))
        (pin (num T13) (name TMS_0) (type passive))
        (pin (num U8) (name CFGBVS_0) (type passive))
        (pin (num U9) (name M2_0) (type passive))
        (pin (num U10) (name M1_0) (type passive))
        (pin (num U11) (name M0_0) (type passive))
        (pin (num U12) (name INIT_B_0) (type openCol))
        (pin (num U13) (name TDO_0) (type output))
        (pin (num V12) (name TCK_0) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_10)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_10))
      (pins
        (pin (num AA2) (name GND) (type power_in))
        (pin (num AA12) (name GND) (type power_in))
        (pin (num AA22) (name GND) (type power_in))
        (pin (num AB9) (name GND) (type power_in))
        (pin (num AB19) (name GND) (type power_in))
        (pin (num J10) (name GND) (type power_in))
        (pin (num J12) (name GND) (type power_in))
        (pin (num J18) (name GND) (type power_in))
        (pin (num K5) (name GND) (type power_in))
        (pin (num K7) (name GND) (type power_in))
        (pin (num K11) (name GND) (type power_in))
        (pin (num K15) (name GND) (type power_in))
        (pin (num L2) (name GND) (type power_in))
        (pin (num L8) (name GND) (type power_in))
        (pin (num L22) (name GND) (type power_in))
        (pin (num M7) (name GND) (type power_in))
        (pin (num M11) (name GND) (type power_in))
        (pin (num M19) (name GND) (type power_in))
        (pin (num N6) (name GND) (type power_in))
        (pin (num N8) (name GND) (type power_in))
        (pin (num N16) (name GND) (type power_in))
        (pin (num P3) (name GND) (type power_in))
        (pin (num P7) (name GND) (type power_in))
        (pin (num P9) (name GND) (type power_in))
        (pin (num P11) (name GND) (type power_in))
        (pin (num P13) (name GND) (type power_in))
        (pin (num R8) (name GND) (type power_in))
        (pin (num R10) (name GND) (type power_in))
        (pin (num R12) (name GND) (type power_in))
        (pin (num R20) (name GND) (type power_in))
        (pin (num T7) (name GND) (type power_in))
        (pin (num T9) (name GND) (type power_in))
        (pin (num T11) (name GND) (type power_in))
        (pin (num T17) (name GND) (type power_in))
        (pin (num U4) (name GND) (type power_in))
        (pin (num U14) (name GND) (type power_in))
        (pin (num V1) (name GND) (type power_in))
        (pin (num V11) (name GND) (type power_in))
        (pin (num V21) (name GND) (type power_in))
        (pin (num W8) (name GND) (type power_in))
        (pin (num W18) (name GND) (type power_in))
        (pin (num Y5) (name GND) (type power_in))
        (pin (num Y15) (name GND) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_11)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_11))
      (pins
        (pin (num D6) (name MGTAVCC) (type passive))
        (pin (num D10) (name MGTAVCC) (type passive))
        (pin (num E8) (name MGTAVCC) (type passive))
        (pin (num F7) (name MGTAVCC) (type passive))
        (pin (num F9) (name MGTAVCC) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_12)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_12))
      (pins
        (pin (num B5) (name MGTAVTT) (type passive))
        (pin (num B7) (name MGTAVTT) (type passive))
        (pin (num B9) (name MGTAVTT) (type passive))
        (pin (num B11) (name MGTAVTT) (type passive))
        (pin (num C4) (name MGTAVTT) (type passive))
        (pin (num C8) (name MGTAVTT) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_13)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_13))
      (pins
        (pin (num N9) (name DXN_0) (type passive))
        (pin (num N10) (name DXP_0) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_14)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_14))
      (pins
        (pin (num H12) (name VCCAUX) (type passive))
        (pin (num K12) (name VCCAUX) (type passive))
        (pin (num M12) (name VCCAUX) (type passive))
        (pin (num P12) (name VCCAUX) (type passive))
        (pin (num R11) (name VCCAUX) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_15)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_15))
      (pins
        (pin (num J11) (name VCCBRAM) (type passive))
        (pin (num L11) (name VCCBRAM) (type passive))
        (pin (num N11) (name VCCBRAM) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_16)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_16))
      (pins
        (pin (num H8) (name VCCINT) (type passive))
        (pin (num H10) (name VCCINT) (type passive))
        (pin (num J7) (name VCCINT) (type passive))
        (pin (num J9) (name VCCINT) (type passive))
        (pin (num K8) (name VCCINT) (type passive))
        (pin (num L7) (name VCCINT) (type passive))
        (pin (num M8) (name VCCINT) (type passive))
        (pin (num N7) (name VCCINT) (type passive))
        (pin (num P8) (name VCCINT) (type passive))
        (pin (num P10) (name VCCINT) (type passive))
        (pin (num R7) (name VCCINT) (type passive))
        (pin (num R9) (name VCCINT) (type passive))
        (pin (num T8) (name VCCINT) (type passive))
        (pin (num T10) (name VCCINT) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_17)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_17))
      (pins
        (pin (num K9) (name GNDADC_0) (type passive))
        (pin (num K10) (name VCCADC_0) (type passive))
        (pin (num L9) (name VREFN_0) (type passive))
        (pin (num L10) (name VP_0) (type passive))
        (pin (num M9) (name VN_0) (type passive))
        (pin (num M10) (name VREFP_0) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_2)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_2))
      (pins
        (pin (num AA9) (name IO_L8P_T1_13) (type passive))
        (pin (num AA10) (name IO_L9P_T1_DQS_13) (type passive))
        (pin (num AA11) (name IO_L9N_T1_DQS_13) (type passive))
        (pin (num AA13) (name IO_L3P_T0_DQS_13) (type passive))
        (pin (num AA14) (name IO_L5N_T0_13) (type passive))
        (pin (num AA15) (name IO_L4P_T0_13) (type passive))
        (pin (num AA16) (name IO_L1N_T0_13) (type passive))
        (pin (num AA17) (name VCCO_13) (type passive))
        (pin (num AB10) (name IO_L8N_T1_13) (type passive))
        (pin (num AB11) (name IO_L7P_T1_13) (type passive))
        (pin (num AB12) (name IO_L7N_T1_13) (type passive))
        (pin (num AB13) (name IO_L3N_T0_DQS_13) (type passive))
        (pin (num AB14) (name VCCO_13) (type passive))
        (pin (num AB15) (name IO_L4N_T0_13) (type passive))
        (pin (num AB16) (name IO_L2P_T0_13) (type passive))
        (pin (num AB17) (name IO_L2N_T0_13) (type passive))
        (pin (num T14) (name IO_L15P_T2_DQS_13) (type passive))
        (pin (num T15) (name IO_L15N_T2_DQS_13) (type passive))
        (pin (num T16) (name IO_L17P_T2_13) (type passive))
        (pin (num U15) (name IO_L14P_T2_SRCC_13) (type passive))
        (pin (num U16) (name IO_L17N_T2_13) (type passive))
        (pin (num V10) (name IO_L10P_T1_13) (type passive))
        (pin (num V13) (name IO_L13P_T2_MRCC_13) (type passive))
        (pin (num V14) (name IO_L13N_T2_MRCC_13) (type passive))
        (pin (num V15) (name IO_L14N_T2_SRCC_13) (type passive))
        (pin (num V16) (name VCCO_13) (type passive))
        (pin (num W10) (name IO_L10N_T1_13) (type passive))
        (pin (num W11) (name IO_L12P_T1_MRCC_13) (type passive))
        (pin (num W12) (name IO_L12N_T1_MRCC_13) (type passive))
        (pin (num W13) (name VCCO_13) (type passive))
        (pin (num W14) (name IO_L6P_T0_13) (type passive))
        (pin (num W15) (name IO_L16P_T2_13) (type passive))
        (pin (num W16) (name IO_L16N_T2_13) (type passive))
        (pin (num Y10) (name VCCO_13) (type passive))
        (pin (num Y11) (name IO_L11P_T1_SRCC_13) (type passive))
        (pin (num Y12) (name IO_L11N_T1_SRCC_13) (type passive))
        (pin (num Y13) (name IO_L5P_T0_13) (type passive))
        (pin (num Y14) (name IO_L6N_T0_VREF_13) (type passive))
        (pin (num Y16) (name IO_L1P_T0_13) (type passive))
        (pin (num Y17) (name IO_0_13) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_3)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_3))
      (pins
        (pin (num AA18) (name IO_L17P_T2_A14_D30_14) (type passive))
        (pin (num AA19) (name IO_L15P_T2_DQS_RDWR_B_14) (type passive))
        (pin (num AA20) (name IO_L8P_T1_D11_14) (type passive))
        (pin (num AA21) (name IO_L8N_T1_D12_14) (type passive))
        (pin (num AB18) (name IO_L17N_T2_A13_D29_14) (type passive))
        (pin (num AB20) (name IO_L15N_T2_DQS_DOUT_CSO_B_14) (type passive))
        (pin (num AB21) (name IO_L10P_T1_D14_14) (type passive))
        (pin (num AB22) (name IO_L10N_T1_D15_14) (type passive))
        (pin (num M14) (name VCCO_14) (type passive))
        (pin (num N13) (name IO_L23P_T3_A03_D19_14) (type passive))
        (pin (num N14) (name IO_L23N_T3_A02_D18_14) (type passive))
        (pin (num N15) (name IO_25_14) (type passive))
        (pin (num N17) (name IO_L21P_T3_DQS_14) (type passive))
        (pin (num P14) (name IO_L19P_T3_A10_D26_14) (type passive))
        (pin (num P15) (name IO_L22P_T3_A05_D21_14) (type passive))
        (pin (num P16) (name IO_L24P_T3_A01_D17_14) (type passive))
        (pin (num P17) (name IO_L21N_T3_DQS_A06_D22_14) (type passive))
        (pin (num P18) (name VCCO_14) (type passive))
        (pin (num P19) (name IO_L5P_T0_D06_14) (type passive))
        (pin (num P20) (name IO_0_14) (type passive))
        (pin (num P21) (name IO_L2P_T0_D02_14) (type passive))
        (pin (num P22) (name IO_L1P_T0_D00_MOSI_14) (type passive))
        (pin (num R14) (name IO_L19N_T3_A09_D25_VREF_14) (type passive))
        (pin (num R15) (name VCCO_14) (type passive))
        (pin (num R16) (name IO_L22N_T3_A04_D20_14) (type passive))
        (pin (num R17) (name IO_L24N_T3_A00_D16_14) (type passive))
        (pin (num R18) (name IO_L20P_T3_A08_D24_14) (type passive))
        (pin (num R19) (name IO_L5N_T0_D07_14) (type passive))
        (pin (num R21) (name IO_L2N_T0_D03_14) (type passive))
        (pin (num R22) (name IO_L1N_T0_D01_DIN_14) (type passive))
        (pin (num T18) (name IO_L20N_T3_A07_D23_14) (type passive))
        (pin (num T19) (name IO_L6P_T0_FCS_B_14) (type passive))
        (pin (num T20) (name IO_L6N_T0_D08_VREF_14) (type passive))
        (pin (num T21) (name IO_L4P_T0_D04_14) (type passive))
        (pin (num T22) (name VCCO_14) (type passive))
        (pin (num U17) (name IO_L18P_T2_A12_D28_14) (type passive))
        (pin (num U18) (name IO_L18N_T2_A11_D27_14) (type passive))
        (pin (num U19) (name VCCO_14) (type passive))
        (pin (num U20) (name IO_L11P_T1_SRCC_14) (type passive))
        (pin (num U21) (name IO_L4N_T0_D05_14) (type passive))
        (pin (num U22) (name IO_L3P_T0_DQS_PUDC_B_14) (type passive))
        (pin (num V17) (name IO_L16P_T2_CSI_B_14) (type passive))
        (pin (num V18) (name IO_L14P_T2_SRCC_14) (type passive))
        (pin (num V19) (name IO_L14N_T2_SRCC_14) (type passive))
        (pin (num V20) (name IO_L11N_T1_SRCC_14) (type passive))
        (pin (num V22) (name IO_L3N_T0_DQS_EMCCLK_14) (type passive))
        (pin (num W17) (name IO_L16N_T2_A15_D31_14) (type passive))
        (pin (num W19) (name IO_L12P_T1_MRCC_14) (type passive))
        (pin (num W20) (name IO_L12N_T1_MRCC_14) (type passive))
        (pin (num W21) (name IO_L7P_T1_D09_14) (type passive))
        (pin (num W22) (name IO_L7N_T1_D10_14) (type passive))
        (pin (num Y18) (name IO_L13P_T2_MRCC_14) (type passive))
        (pin (num Y19) (name IO_L13N_T2_MRCC_14) (type passive))
        (pin (num Y20) (name VCCO_14) (type passive))
        (pin (num Y21) (name IO_L9P_T1_DQS_14) (type passive))
        (pin (num Y22) (name IO_L9N_T1_DQS_D13_14) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_4)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_4))
      (pins
        (pin (num G13) (name IO_L1N_T0_AD0N_15) (type passive))
        (pin (num G15) (name IO_L2P_T0_AD8P_15) (type passive))
        (pin (num G16) (name IO_L2N_T0_AD8N_15) (type passive))
        (pin (num G17) (name IO_L4P_T0_15) (type passive))
        (pin (num G18) (name IO_L4N_T0_15) (type passive))
        (pin (num G19) (name VCCO_15) (type passive))
        (pin (num G20) (name IO_L8N_T1_AD10N_15) (type passive))
        (pin (num H13) (name IO_L1P_T0_AD0P_15) (type passive))
        (pin (num H14) (name IO_L3N_T0_DQS_AD1N_15) (type passive))
        (pin (num H15) (name IO_L5N_T0_AD9N_15) (type passive))
        (pin (num H16) (name VCCO_15) (type passive))
        (pin (num H17) (name IO_L6P_T0_15) (type passive))
        (pin (num H18) (name IO_L6N_T0_VREF_15) (type passive))
        (pin (num H19) (name IO_L12N_T1_MRCC_15) (type passive))
        (pin (num H20) (name IO_L8P_T1_AD10P_15) (type passive))
        (pin (num H22) (name IO_L7N_T1_AD2N_15) (type passive))
        (pin (num J13) (name VCCO_15) (type passive))
        (pin (num J14) (name IO_L3P_T0_DQS_AD1P_15) (type passive))
        (pin (num J15) (name IO_L5P_T0_AD9P_15) (type passive))
        (pin (num J16) (name IO_0_15) (type passive))
        (pin (num J17) (name IO_L21N_T3_DQS_A18_15) (type passive))
        (pin (num J19) (name IO_L12P_T1_MRCC_15) (type passive))
        (pin (num J20) (name IO_L11P_T1_SRCC_15) (type passive))
        (pin (num J21) (name IO_L11N_T1_SRCC_15) (type passive))
        (pin (num J22) (name IO_L7P_T1_AD2P_15) (type passive))
        (pin (num K13) (name IO_L19P_T3_A22_15) (type passive))
        (pin (num K14) (name IO_L19N_T3_A21_VREF_15) (type passive))
        (pin (num K16) (name IO_L23N_T3_FWE_B_15) (type passive))
        (pin (num K17) (name IO_L21P_T3_DQS_15) (type passive))
        (pin (num K18) (name IO_L13P_T2_MRCC_15) (type passive))
        (pin (num K19) (name IO_L13N_T2_MRCC_15) (type passive))
        (pin (num K20) (name VCCO_15) (type passive))
        (pin (num K21) (name IO_L9P_T1_DQS_AD3P_15) (type passive))
        (pin (num K22) (name IO_L9N_T1_DQS_AD3N_15) (type passive))
        (pin (num L13) (name IO_L20N_T3_A19_15) (type passive))
        (pin (num L14) (name IO_L22P_T3_A17_15) (type passive))
        (pin (num L15) (name IO_L22N_T3_A16_15) (type passive))
        (pin (num L16) (name IO_L23P_T3_FOE_B_15) (type passive))
        (pin (num L17) (name VCCO_15) (type passive))
        (pin (num L18) (name IO_L16N_T2_A27_15) (type passive))
        (pin (num L19) (name IO_L14P_T2_SRCC_15) (type passive))
        (pin (num L20) (name IO_L14N_T2_SRCC_15) (type passive))
        (pin (num L21) (name IO_L10N_T1_AD11N_15) (type passive))
        (pin (num M13) (name IO_L20P_T3_A20_15) (type passive))
        (pin (num M15) (name IO_L24P_T3_RS1_15) (type passive))
        (pin (num M16) (name IO_L24N_T3_RS0_15) (type passive))
        (pin (num M17) (name IO_25_15) (type passive))
        (pin (num M18) (name IO_L16P_T2_A28_15) (type passive))
        (pin (num M20) (name IO_L18N_T2_A23_15) (type passive))
        (pin (num M21) (name IO_L10P_T1_AD11P_15) (type passive))
        (pin (num M22) (name IO_L15N_T2_DQS_ADV_B_15) (type passive))
        (pin (num N18) (name IO_L17P_T2_A26_15) (type passive))
        (pin (num N19) (name IO_L17N_T2_A25_15) (type passive))
        (pin (num N20) (name IO_L18P_T2_A24_15) (type passive))
        (pin (num N21) (name VCCO_15) (type passive))
        (pin (num N22) (name IO_L15P_T2_DQS_15) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_5)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_5))
      (pins
        (pin (num A13) (name IO_L10P_T1_16) (type passive))
        (pin (num A14) (name IO_L10N_T1_16) (type passive))
        (pin (num A15) (name IO_L9P_T1_DQS_16) (type passive))
        (pin (num A16) (name IO_L9N_T1_DQS_16) (type passive))
        (pin (num A17) (name VCCO_16) (type passive))
        (pin (num A18) (name IO_L17P_T2_16) (type passive))
        (pin (num A19) (name IO_L17N_T2_16) (type passive))
        (pin (num A20) (name IO_L16N_T2_16) (type passive))
        (pin (num A21) (name IO_L21N_T3_DQS_16) (type passive))
        (pin (num B13) (name IO_L8N_T1_16) (type passive))
        (pin (num B14) (name VCCO_16) (type passive))
        (pin (num B15) (name IO_L7P_T1_16) (type passive))
        (pin (num B16) (name IO_L7N_T1_16) (type passive))
        (pin (num B17) (name IO_L11P_T1_SRCC_16) (type passive))
        (pin (num B18) (name IO_L11N_T1_SRCC_16) (type passive))
        (pin (num B20) (name IO_L16P_T2_16) (type passive))
        (pin (num B21) (name IO_L21P_T3_DQS_16) (type passive))
        (pin (num B22) (name IO_L20N_T3_16) (type passive))
        (pin (num C13) (name IO_L8P_T1_16) (type passive))
        (pin (num C14) (name IO_L3P_T0_DQS_16) (type passive))
        (pin (num C15) (name IO_L3N_T0_DQS_16) (type passive))
        (pin (num C17) (name IO_L12N_T1_MRCC_16) (type passive))
        (pin (num C18) (name IO_L13P_T2_MRCC_16) (type passive))
        (pin (num C19) (name IO_L13N_T2_MRCC_16) (type passive))
        (pin (num C20) (name IO_L19N_T3_VREF_16) (type passive))
        (pin (num C21) (name VCCO_16) (type passive))
        (pin (num C22) (name IO_L20P_T3_16) (type passive))
        (pin (num D14) (name IO_L6P_T0_16) (type passive))
        (pin (num D15) (name IO_L6N_T0_VREF_16) (type passive))
        (pin (num D16) (name IO_L5N_T0_16) (type passive))
        (pin (num D17) (name IO_L12P_T1_MRCC_16) (type passive))
        (pin (num D18) (name VCCO_16) (type passive))
        (pin (num D19) (name IO_L14N_T2_SRCC_16) (type passive))
        (pin (num D20) (name IO_L19P_T3_16) (type passive))
        (pin (num D21) (name IO_L23N_T3_16) (type passive))
        (pin (num D22) (name IO_L22N_T3_16) (type passive))
        (pin (num E13) (name IO_L4P_T0_16) (type passive))
        (pin (num E14) (name IO_L4N_T0_16) (type passive))
        (pin (num E15) (name VCCO_16) (type passive))
        (pin (num E16) (name IO_L5P_T0_16) (type passive))
        (pin (num E17) (name IO_L2N_T0_16) (type passive))
        (pin (num E18) (name IO_L15N_T2_DQS_16) (type passive))
        (pin (num E19) (name IO_L14P_T2_SRCC_16) (type passive))
        (pin (num E21) (name IO_L23P_T3_16) (type passive))
        (pin (num E22) (name IO_L22P_T3_16) (type passive))
        (pin (num F13) (name IO_L1P_T0_16) (type passive))
        (pin (num F14) (name IO_L1N_T0_16) (type passive))
        (pin (num F15) (name IO_0_16) (type passive))
        (pin (num F16) (name IO_L2P_T0_16) (type passive))
        (pin (num F18) (name IO_L15P_T2_DQS_16) (type passive))
        (pin (num F19) (name IO_L18P_T2_16) (type passive))
        (pin (num F20) (name IO_L18N_T2_16) (type passive))
        (pin (num F21) (name IO_25_16) (type passive))
        (pin (num F22) (name VCCO_16) (type passive))
        (pin (num G21) (name IO_L24P_T3_16) (type passive))
        (pin (num G22) (name IO_L24N_T3_16) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_6)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_6))
      (pins
        (pin (num AA1) (name IO_L7P_T1_34) (type passive))
        (pin (num AA3) (name IO_L9N_T1_DQS_34) (type passive))
        (pin (num AA4) (name IO_L11N_T1_SRCC_34) (type passive))
        (pin (num AA5) (name IO_L10P_T1_34) (type passive))
        (pin (num AA6) (name IO_L18N_T2_34) (type passive))
        (pin (num AA7) (name VCCO_34) (type passive))
        (pin (num AA8) (name IO_L22P_T3_34) (type passive))
        (pin (num AB1) (name IO_L7N_T1_34) (type passive))
        (pin (num AB2) (name IO_L8N_T1_34) (type passive))
        (pin (num AB3) (name IO_L8P_T1_34) (type passive))
        (pin (num AB4) (name VCCO_34) (type passive))
        (pin (num AB5) (name IO_L10N_T1_34) (type passive))
        (pin (num AB6) (name IO_L20N_T3_34) (type passive))
        (pin (num AB7) (name IO_L20P_T3_34) (type passive))
        (pin (num AB8) (name IO_L22N_T3_34) (type passive))
        (pin (num R2) (name IO_L3N_T0_DQS_34) (type passive))
        (pin (num R3) (name IO_L3P_T0_DQS_34) (type passive))
        (pin (num R4) (name IO_L13P_T2_MRCC_34) (type passive))
        (pin (num R5) (name VCCO_34) (type passive))
        (pin (num R6) (name IO_L17P_T2_34) (type passive))
        (pin (num T1) (name IO_L1P_T0_34) (type passive))
        (pin (num T2) (name VCCO_34) (type passive))
        (pin (num T3) (name IO_0_34) (type passive))
        (pin (num T4) (name IO_L13N_T2_MRCC_34) (type passive))
        (pin (num T5) (name IO_L14P_T2_SRCC_34) (type passive))
        (pin (num T6) (name IO_L17N_T2_34) (type passive))
        (pin (num U1) (name IO_L1N_T0_34) (type passive))
        (pin (num U2) (name IO_L2P_T0_34) (type passive))
        (pin (num U3) (name IO_L6P_T0_34) (type passive))
        (pin (num U5) (name IO_L14N_T2_SRCC_34) (type passive))
        (pin (num U6) (name IO_L16P_T2_34) (type passive))
        (pin (num U7) (name IO_25_34) (type passive))
        (pin (num V2) (name IO_L2N_T0_34) (type passive))
        (pin (num V3) (name IO_L6N_T0_VREF_34) (type passive))
        (pin (num V4) (name IO_L12P_T1_MRCC_34) (type passive))
        (pin (num V5) (name IO_L16N_T2_34) (type passive))
        (pin (num V6) (name VCCO_34) (type passive))
        (pin (num V7) (name IO_L19P_T3_34) (type passive))
        (pin (num V8) (name IO_L21N_T3_DQS_34) (type passive))
        (pin (num V9) (name IO_L21P_T3_DQS_34) (type passive))
        (pin (num W1) (name IO_L5P_T0_34) (type passive))
        (pin (num W2) (name IO_L4P_T0_34) (type passive))
        (pin (num W3) (name VCCO_34) (type passive))
        (pin (num W4) (name IO_L12N_T1_MRCC_34) (type passive))
        (pin (num W5) (name IO_L15N_T2_DQS_34) (type passive))
        (pin (num W6) (name IO_L15P_T2_DQS_34) (type passive))
        (pin (num W7) (name IO_L19N_T3_VREF_34) (type passive))
        (pin (num W9) (name IO_L24P_T3_34) (type passive))
        (pin (num Y1) (name IO_L5N_T0_34) (type passive))
        (pin (num Y2) (name IO_L4N_T0_34) (type passive))
        (pin (num Y3) (name IO_L9P_T1_DQS_34) (type passive))
        (pin (num Y4) (name IO_L11P_T1_SRCC_34) (type passive))
        (pin (num Y6) (name IO_L18P_T2_34) (type passive))
        (pin (num Y7) (name IO_L23N_T3_34) (type passive))
        (pin (num Y8) (name IO_L23P_T3_34) (type passive))
        (pin (num Y9) (name IO_L24N_T3_34) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_7)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_7))
      (pins
        (pin (num A1) (name IO_L1N_T0_AD4N_35) (type passive))
        (pin (num B1) (name IO_L1P_T0_AD4P_35) (type passive))
        (pin (num B2) (name IO_L2N_T0_AD12N_35) (type passive))
        (pin (num C1) (name VCCO_35) (type passive))
        (pin (num C2) (name IO_L2P_T0_AD12P_35) (type passive))
        (pin (num D1) (name IO_L3N_T0_DQS_AD5N_35) (type passive))
        (pin (num D2) (name IO_L4N_T0_35) (type passive))
        (pin (num E1) (name IO_L3P_T0_DQS_AD5P_35) (type passive))
        (pin (num E2) (name IO_L4P_T0_35) (type passive))
        (pin (num E3) (name IO_L6N_T0_VREF_35) (type passive))
        (pin (num F1) (name IO_L5N_T0_AD13N_35) (type passive))
        (pin (num F2) (name VCCO_35) (type passive))
        (pin (num F3) (name IO_L6P_T0_35) (type passive))
        (pin (num F4) (name IO_0_35) (type passive))
        (pin (num G1) (name IO_L5P_T0_AD13P_35) (type passive))
        (pin (num G2) (name IO_L8N_T1_AD14N_35) (type passive))
        (pin (num G3) (name IO_L11N_T1_SRCC_35) (type passive))
        (pin (num G4) (name IO_L12N_T1_MRCC_35) (type passive))
        (pin (num H2) (name IO_L8P_T1_AD14P_35) (type passive))
        (pin (num H3) (name IO_L11P_T1_SRCC_35) (type passive))
        (pin (num H4) (name IO_L12P_T1_MRCC_35) (type passive))
        (pin (num H5) (name IO_L10N_T1_AD15N_35) (type passive))
        (pin (num H6) (name VCCO_35) (type passive))
        (pin (num J1) (name IO_L7N_T1_AD6N_35) (type passive))
        (pin (num J2) (name IO_L9N_T1_DQS_AD7N_35) (type passive))
        (pin (num J3) (name VCCO_35) (type passive))
        (pin (num J4) (name IO_L13N_T2_MRCC_35) (type passive))
        (pin (num J5) (name IO_L10P_T1_AD15P_35) (type passive))
        (pin (num J6) (name IO_L17N_T2_35) (type passive))
        (pin (num K1) (name IO_L7P_T1_AD6P_35) (type passive))
        (pin (num K2) (name IO_L9P_T1_DQS_AD7P_35) (type passive))
        (pin (num K3) (name IO_L14N_T2_SRCC_35) (type passive))
        (pin (num K4) (name IO_L13P_T2_MRCC_35) (type passive))
        (pin (num K6) (name IO_L17P_T2_35) (type passive))
        (pin (num L1) (name IO_L15N_T2_DQS_35) (type passive))
        (pin (num L3) (name IO_L14P_T2_SRCC_35) (type passive))
        (pin (num L4) (name IO_L18N_T2_35) (type passive))
        (pin (num L5) (name IO_L18P_T2_35) (type passive))
        (pin (num L6) (name IO_25_35) (type passive))
        (pin (num M1) (name IO_L15P_T2_DQS_35) (type passive))
        (pin (num M2) (name IO_L16N_T2_35) (type passive))
        (pin (num M3) (name IO_L16P_T2_35) (type passive))
        (pin (num M4) (name VCCO_35) (type passive))
        (pin (num M5) (name IO_L23N_T3_35) (type passive))
        (pin (num M6) (name IO_L23P_T3_35) (type passive))
        (pin (num N1) (name VCCO_35) (type passive))
        (pin (num N2) (name IO_L22N_T3_35) (type passive))
        (pin (num N3) (name IO_L19N_T3_VREF_35) (type passive))
        (pin (num N4) (name IO_L19P_T3_35) (type passive))
        (pin (num N5) (name IO_L24N_T3_35) (type passive))
        (pin (num P1) (name IO_L20N_T3_35) (type passive))
        (pin (num P2) (name IO_L22P_T3_35) (type passive))
        (pin (num P4) (name IO_L21N_T3_DQS_35) (type passive))
        (pin (num P5) (name IO_L21P_T3_DQS_35) (type passive))
        (pin (num P6) (name IO_L24P_T3_35) (type passive))
        (pin (num R1) (name IO_L20P_T3_35) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_8)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_8))
      (pins
        (pin (num A4) (name MGTPTXN3_216) (type passive))
        (pin (num A6) (name MGTPTXN1_216) (type passive))
        (pin (num A8) (name MGTPRXN3_216) (type passive))
        (pin (num A10) (name MGTPRXN1_216) (type passive))
        (pin (num B4) (name MGTPTXP3_216) (type passive))
        (pin (num B6) (name MGTPTXP1_216) (type passive))
        (pin (num B8) (name MGTPRXP3_216) (type passive))
        (pin (num B10) (name MGTPRXP1_216) (type passive))
        (pin (num C5) (name MGTPTXN2_216) (type passive))
        (pin (num C7) (name MGTPTXN0_216) (type passive))
        (pin (num C9) (name MGTPRXN2_216) (type passive))
        (pin (num C11) (name MGTPRXN0_216) (type passive))
        (pin (num D5) (name MGTPTXP2_216) (type passive))
        (pin (num D7) (name MGTPTXP0_216) (type passive))
        (pin (num D9) (name MGTPRXP2_216) (type passive))
        (pin (num D11) (name MGTPRXP0_216) (type passive))
        (pin (num E6) (name MGTREFCLK1N_216) (type passive))
        (pin (num E10) (name MGTREFCLK0N_216) (type passive))
        (pin (num F6) (name MGTREFCLK1P_216) (type passive))
        (pin (num F8) (name MGTRREF_216) (type passive))
        (pin (num F10) (name MGTREFCLK0P_216) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XC7A200TFBG484_9)
      (fields
        (field (name Reference) U)
        (field (name Value) XC7A200TFBG484_9))
      (pins
        (pin (num A2) (name GND) (type power_in))
        (pin (num A3) (name GND) (type power_in))
        (pin (num A5) (name GND) (type power_in))
        (pin (num A7) (name GND) (type power_in))
        (pin (num A9) (name GND) (type power_in))
        (pin (num A11) (name GND) (type power_in))
        (pin (num A12) (name GND) (type power_in))
        (pin (num A22) (name GND) (type power_in))
        (pin (num B3) (name GND) (type power_in))
        (pin (num B12) (name GND) (type power_in))
        (pin (num B19) (name GND) (type power_in))
        (pin (num C3) (name GND) (type power_in))
        (pin (num C6) (name GND) (type power_in))
        (pin (num C10) (name GND) (type power_in))
        (pin (num C12) (name GND) (type power_in))
        (pin (num C16) (name GND) (type power_in))
        (pin (num D3) (name GND) (type power_in))
        (pin (num D4) (name GND) (type power_in))
        (pin (num D8) (name GND) (type power_in))
        (pin (num D12) (name GND) (type power_in))
        (pin (num D13) (name GND) (type power_in))
        (pin (num E4) (name GND) (type power_in))
        (pin (num E5) (name GND) (type power_in))
        (pin (num E7) (name GND) (type power_in))
        (pin (num E9) (name GND) (type power_in))
        (pin (num E11) (name GND) (type power_in))
        (pin (num E20) (name GND) (type power_in))
        (pin (num F5) (name GND) (type power_in))
        (pin (num F11) (name GND) (type power_in))
        (pin (num F17) (name GND) (type power_in))
        (pin (num G5) (name GND) (type power_in))
        (pin (num G6) (name GND) (type power_in))
        (pin (num G7) (name GND) (type power_in))
        (pin (num G8) (name GND) (type power_in))
        (pin (num G9) (name GND) (type power_in))
        (pin (num G10) (name GND) (type power_in))
        (pin (num G12) (name GND) (type power_in))
        (pin (num G14) (name GND) (type power_in))
        (pin (num H1) (name GND) (type power_in))
        (pin (num H7) (name GND) (type power_in))
        (pin (num H9) (name GND) (type power_in))
        (pin (num H11) (name GND) (type power_in))
        (pin (num H21) (name GND) (type power_in))
        (pin (num J8) (name GND) (type power_in))))
    (libpart (lib Cryptech_Alpha) (part XTAL-3.2X1.5)
      (fields
        (field (name Reference) X)
        (field (name Value) XTAL-3.2X1.5))
      (pins
        (pin (num P$1) (name P$1) (type passive))
        (pin (num P$2) (name P$2) (type passive))))
    (libpart (lib Cryptech_Alpha) (part XTAL-4-3225)
      (fields
        (field (name Reference) Q)
        (field (name Value) XTAL-4-3225))
      (pins
        (pin (num 1) (name X1) (type passive))
        (pin (num 2) (name G2) (type power_in))
        (pin (num 3) (name X2) (type passive))
        (pin (num 4) (name G1) (type power_in))))
    (libpart (lib FPGA_Lattice) (part ICE40UP5K-SG48ITR)
      (description "iCE40 UltraPlus FPGA, 5280 LUTs, 1.2V, 48-pin QFN")
      (docs http://www.latticesemi.com/Products/FPGAandCPLD/iCE40Ultra)
      (footprints
        (fp QFN*7x7mm*P0.5mm*EP5.6x5.6mm*))
      (fields
        (field (name Reference) U)
        (field (name Value) ICE40UP5K-SG48ITR)
        (field (name Footprint) Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm))
      (pins
        (pin (num 1) (name VCCIO_2) (type power_in))
        (pin (num 2) (name IOB_6a) (type BiDi))
        (pin (num 3) (name IOB_9b) (type BiDi))
        (pin (num 4) (name IOB_8a) (type BiDi))
        (pin (num 5) (name VCC) (type power_in))
        (pin (num 6) (name IOB_13b) (type BiDi))
        (pin (num 7) (name CDONE) (type openCol))
        (pin (num 8) (name ~CRESET) (type input))
        (pin (num 9) (name IOB_16a) (type BiDi))
        (pin (num 10) (name IOB_18a) (type BiDi))
        (pin (num 11) (name IOB_20a) (type BiDi))
        (pin (num 12) (name IOB_22b) (type BiDi))
        (pin (num 13) (name IOB_24a) (type BiDi))
        (pin (num 14) (name IOB_32a_SPI_SO) (type BiDi))
        (pin (num 15) (name IOB_34a_SPI_SCK) (type BiDi))
        (pin (num 16) (name IOB_35b_SPI_SS) (type BiDi))
        (pin (num 17) (name IOB_33b_SPI_SI) (type BiDi))
        (pin (num 18) (name IOB_31b) (type BiDi))
        (pin (num 19) (name IOB_29b) (type BiDi))
        (pin (num 20) (name IOB_25b_G3) (type BiDi))
        (pin (num 21) (name IOB_23b) (type BiDi))
        (pin (num 22) (name SPI_VCCIO1) (type power_in))
        (pin (num 23) (name IOT_37a) (type BiDi))
        (pin (num 24) (name VPP_2V5) (type power_in))
        (pin (num 25) (name IOT_36b) (type BiDi))
        (pin (num 26) (name IOT_39a) (type BiDi))
        (pin (num 27) (name IOT_38b) (type BiDi))
        (pin (num 28) (name IOT_41a) (type BiDi))
        (pin (num 29) (name VCCPLL) (type power_out))
        (pin (num 30) (name VCC) (type passive))
        (pin (num 31) (name IOT_42b) (type BiDi))
        (pin (num 32) (name IOT_43a) (type BiDi))
        (pin (num 33) (name VCCIO_0) (type power_in))
        (pin (num 34) (name IOT_44b) (type BiDi))
        (pin (num 35) (name IOT_46b_G0) (type BiDi))
        (pin (num 36) (name IOT_48b) (type BiDi))
        (pin (num 37) (name IOT_45a_G1) (type BiDi))
        (pin (num 38) (name IOT_50b) (type BiDi))
        (pin (num 39) (name RGB0) (type openCol))
        (pin (num 40) (name RGB1) (type openCol))
        (pin (num 41) (name RGB2) (type openCol))
        (pin (num 42) (name IOT_51a) (type BiDi))
        (pin (num 43) (name IOT_49a) (type BiDi))
        (pin (num 44) (name IOB_3b_G6) (type BiDi))
        (pin (num 45) (name IOB_5b) (type BiDi))
        (pin (num 46) (name IOB_0a) (type BiDi))
        (pin (num 47) (name IOB_2a) (type BiDi))
        (pin (num 48) (name IOB_4a) (type BiDi))
        (pin (num 49) (name GND) (type power_in)))))
  (libraries
    (library (logical Cryptech_Alpha)
      (uri D:\DATA\YandexDisk\DEV\CrypTech\git\user\shatov\alpha_rev04\KiCAD/Cryptech_Alpha.lib))
    (library (logical FPGA_Lattice)
      (uri D:\SOFT\KiCad\share\kicad\library/FPGA_Lattice.lib)))
  (nets
    (net (code 10) (name "Net-(JP2-Pad2)")
      (node (ref Q1) (pin 3))
      (node (ref JP2) (pin 2)))
    (net (code 11) (name "Net-(Q1-Pad1)")
      (node (ref R5) (pin 2))
      (node (ref R6) (pin 1))
      (node (ref Q1) (pin 1)))
    (net (code 12) (name VCC_5V0)
      (node (ref U16) (pin 34))
      (node (ref U16) (pin 35))
      (node (ref U16) (pin 36))
      (node (ref U16) (pin 37))
      (node (ref U16) (pin 38))
      (node (ref U15) (pin 21))
      (node (ref U14) (pin 21))
      (node (ref U14) (pin 20))
      (node (ref U14) (pin 19))
      (node (ref R54) (pin 2))
      (node (ref C113) (pin 1))
      (node (ref R52) (pin 2))
      (node (ref U15) (pin 33))
      (node (ref C114) (pin 1))
      (node (ref U14) (pin 33))
      (node (ref U15) (pin 20))
      (node (ref U15) (pin 19))
      (node (ref R78) (pin 1))
      (node (ref D2) (pin 3))
      (node (ref R75) (pin 2))
      (node (ref R73) (pin 2))
      (node (ref R77) (pin 2))
      (node (ref R72) (pin 1))
      (node (ref U16) (pin 53))
      (node (ref C205) (pin 1))
      (node (ref C206) (pin 1))
      (node (ref R66) (pin 2))
      (node (ref U16) (pin 43))
      (node (ref U16) (pin 42))
      (node (ref U16) (pin 41))
      (node (ref U16) (pin 40))
      (node (ref U16) (pin 39))
      (node (ref C8) (pin 1))
      (node (ref C10) (pin 1))
      (node (ref R8) (pin 2))
      (node (ref U1) (pin 10))
      (node (ref U1) (pin 11))
      (node (ref C9) (pin 1))
      (node (ref C6) (pin 1)))
    (net (code 13) (name FPGA_ENTROPY_DISABLE)
      (node (ref R5) (pin 1))
      (node (ref U13_11) (pin B18)))
    (net (code 14) (name "Net-(R1-Pad1)")
      (node (ref R2) (pin 2))
      (node (ref R1) (pin 1))
      (node (ref R3) (pin 1)))
    (net (code 15) (name "Net-(U1-Pad9)")
      (node (ref U1) (pin 9)))
    (net (code 16) (name 15V_STABLE)
      (node (ref R11) (pin 1))
      (node (ref U2) (pin 6))
      (node (ref C13) (pin 1))
      (node (ref C11) (pin 2)))
    (net (code 17) (name "Net-(C11-Pad1)")
      (node (ref U2) (pin 7))
      (node (ref C11) (pin 1)))
    (net (code 18) (name "Net-(R3-Pad2)")
      (node (ref U1) (pin 4))
      (node (ref R3) (pin 2)))
    (net (code 19) (name "Net-(R8-Pad1)")
      (node (ref U1) (pin 7))
      (node (ref R9) (pin 2))
      (node (ref R8) (pin 1)))
    (net (code 20) (name "Net-(C5-Pad1)")
      (node (ref C5) (pin 1))
      (node (ref U1) (pin 8)))
    (net (code 21) (name "Net-(C12-Pad2)")
      (node (ref C12) (pin 2))
      (node (ref U2) (pin 8)))
    (net (code 22) (name GND)
      (node (ref U2) (pin 4))
      (node (ref C13) (pin 2))
      (node (ref U1) (pin 3))
      (node (ref SV3) (pin 6))
      (node (ref C7) (pin 2))
      (node (ref U15) (pin 17))
      (node (ref U2) (pin 2))
      (node (ref U2) (pin 3))
      (node (ref SV3) (pin 11))
      (node (ref SV3) (pin 12))
      (node (ref LED14) (pin 2))
      (node (ref LED16) (pin 2))
      (node (ref LED15) (pin 2))
      (node (ref LED17) (pin 2))
      (node (ref SV3) (pin 5))
      (node (ref C122) (pin 2))
      (node (ref C121) (pin 2))
      (node (ref U13_5) (pin N9))
      (node (ref U13_5) (pin N10))
      (node (ref C109) (pin 2))
      (node (ref IC3) (pin 4))
      (node (ref R50) (pin 1))
      (node (ref C111) (pin 2))
      (node (ref C112) (pin 2))
      (node (ref C110) (pin 2))
      (node (ref R47) (pin 2))
      (node (ref IC2_3) (pin 10))
      (node (ref Q5) (pin 2))
      (node (ref U15) (pin 15))
      (node (ref U15) (pin 14))
      (node (ref U15) (pin 13))
      (node (ref U14) (pin PAD39))
      (node (ref U15) (pin 16))
      (node (ref U15) (pin 32))
      (node (ref U15) (pin 18))
      (node (ref C12) (pin 1))
      (node (ref C5) (pin 2))
      (node (ref U1) (pin TP1))
      (node (ref U1) (pin 6))
      (node (ref U14) (pin 15))
      (node (ref U14) (pin 14))
      (node (ref U14) (pin 13))
      (node (ref C120) (pin 2))
      (node (ref R53) (pin 1))
      (node (ref C119) (pin 2))
      (node (ref C116) (pin 2))
      (node (ref U14) (pin 32))
      (node (ref U14) (pin 16))
      (node (ref U14) (pin 18))
      (node (ref U14) (pin 17))
      (node (ref U1) (pin 5))
      (node (ref C115) (pin 2))
      (node (ref R61) (pin 1))
      (node (ref R59) (pin 1))
      (node (ref C113) (pin 2))
      (node (ref R60) (pin 1))
      (node (ref R57) (pin 1))
      (node (ref U15) (pin PAD39))
      (node (ref R55) (pin 1))
      (node (ref C114) (pin 2))
      (node (ref U13_13) (pin C12))
      (node (ref U13_13) (pin C10))
      (node (ref U13_13) (pin B3))
      (node (ref U13_13) (pin B19))
      (node (ref U13_13) (pin B12))
      (node (ref U13_13) (pin A9))
      (node (ref U13_13) (pin C16))
      (node (ref U5) (pin 86))
      (node (ref U5) (pin 84))
      (node (ref U13_13) (pin D4))
      (node (ref U13_13) (pin D3))
      (node (ref U13_13) (pin D13))
      (node (ref U13_13) (pin A7))
      (node (ref U13_13) (pin C6))
      (node (ref U13_13) (pin C3))
      (node (ref U13_13) (pin G6))
      (node (ref U13_13) (pin J8))
      (node (ref U13_13) (pin H9))
      (node (ref U13_13) (pin H7))
      (node (ref U6) (pin 12))
      (node (ref U13_13) (pin H21))
      (node (ref U13_13) (pin H11))
      (node (ref U13_13) (pin H1))
      (node (ref C53) (pin 2))
      (node (ref U13_13) (pin G9))
      (node (ref C55) (pin 2))
      (node (ref U13_14) (pin AB19))
      (node (ref C57) (pin 2))
      (node (ref U13_13) (pin G7))
      (node (ref U13_14) (pin AA12))
      (node (ref U5) (pin 38))
      (node (ref U13_13) (pin G5))
      (node (ref U13_13) (pin G14))
      (node (ref U13_13) (pin G12))
      (node (ref U13_13) (pin G10))
      (node (ref U13_13) (pin F5))
      (node (ref U5) (pin 32))
      (node (ref U13_13) (pin F17))
      (node (ref U13_13) (pin F11))
      (node (ref U13_14) (pin L22))
      (node (ref U13_14) (pin P3))
      (node (ref U13_14) (pin P13))
      (node (ref U13_14) (pin P11))
      (node (ref U13_14) (pin T7))
      (node (ref U5) (pin 78))
      (node (ref U13_14) (pin U14))
      (node (ref U13_14) (pin Y5))
      (node (ref U13_14) (pin Y15))
      (node (ref U5) (pin 72))
      (node (ref U13_14) (pin W8))
      (node (ref U13_14) (pin W18))
      (node (ref U13_14) (pin V21))
      (node (ref U13_14) (pin V11))
      (node (ref U13_14) (pin V1))
      (node (ref U13_14) (pin U4))
      (node (ref U13_14) (pin T9))
      (node (ref U13_14) (pin T17))
      (node (ref U13_14) (pin T11))
      (node (ref U13_14) (pin R8))
      (node (ref U13_14) (pin R20))
      (node (ref U13_14) (pin R12))
      (node (ref U13_14) (pin R10))
      (node (ref U13_14) (pin P9))
      (node (ref U13_14) (pin P7))
      (node (ref U13_13) (pin G8))
      (node (ref U13_14) (pin AA22))
      (node (ref U13_14) (pin AA2))
      (node (ref SV2) (pin 6))
      (node (ref SV2) (pin 5))
      (node (ref SV2) (pin 12))
      (node (ref SV2) (pin 11))
      (node (ref U13_13) (pin A22))
      (node (ref U13_13) (pin A11))
      (node (ref U13_13) (pin A12))
      (node (ref U13_13) (pin A2))
      (node (ref U13_13) (pin A3))
      (node (ref U13_13) (pin A5))
      (node (ref U13_13) (pin D12))
      (node (ref U13_13) (pin E7))
      (node (ref U13_13) (pin E5))
      (node (ref U13_13) (pin E4))
      (node (ref U13_13) (pin E20))
      (node (ref U13_13) (pin E11))
      (node (ref U13_13) (pin D8))
      (node (ref C97) (pin 2))
      (node (ref U9) (pin 9))
      (node (ref J3) (pin 1))
      (node (ref IC6) (pin 2))
      (node (ref U8) (pin 9))
      (node (ref CN2) (pin GND))
      (node (ref C82) (pin 2))
      (node (ref C83) (pin 2))
      (node (ref C79) (pin 2))
      (node (ref C77) (pin 2))
      (node (ref C98) (pin 2))
      (node (ref C81) (pin 2))
      (node (ref C80) (pin 2))
      (node (ref C84) (pin 2))
      (node (ref C85) (pin 2))
      (node (ref C86) (pin 2))
      (node (ref C91) (pin 2))
      (node (ref C88) (pin 2))
      (node (ref C87) (pin 2))
      (node (ref C90) (pin 1))
      (node (ref C93) (pin 1))
      (node (ref CN1) (pin GND))
      (node (ref R26) (pin 2))
      (node (ref C89) (pin 2))
      (node (ref IC5) (pin 2))
      (node (ref Y2) (pin 4))
      (node (ref Y2) (pin 2))
      (node (ref C215) (pin 2))
      (node (ref C101) (pin 2))
      (node (ref C100) (pin 2))
      (node (ref C99) (pin 2))
      (node (ref C95) (pin 2))
      (node (ref J2) (pin 1))
      (node (ref C96) (pin 2))
      (node (ref C92) (pin 2))
      (node (ref C94) (pin 2))
      (node (ref Y1) (pin 2))
      (node (ref Y1) (pin 4))
      (node (ref C76) (pin 2))
      (node (ref C74) (pin 2))
      (node (ref R22) (pin 2))
      (node (ref C78) (pin 1))
      (node (ref C75) (pin 1))
      (node (ref C72) (pin 2))
      (node (ref C73) (pin 2))
      (node (ref C214) (pin 2))
      (node (ref U9) (pin 41))
      (node (ref U9) (pin 10))
      (node (ref U9) (pin 48))
      (node (ref U9) (pin 47))
      (node (ref U9) (pin 42))
      (node (ref U9) (pin 11))
      (node (ref U9) (pin 4))
      (node (ref U9) (pin 22))
      (node (ref U9) (pin 23))
      (node (ref U9) (pin 36))
      (node (ref U9) (pin 35))
      (node (ref IC4_3) (pin 10))
      (node (ref U12) (pin 4))
      (node (ref C106) (pin 2))
      (node (ref C107) (pin 2))
      (node (ref JP6) (pin 1))
      (node (ref R81) (pin 2))
      (node (ref C71) (pin 1))
      (node (ref C70) (pin 1))
      (node (ref U7) (pin 4))
      (node (ref IC1) (pin 4))
      (node (ref U13_6) (pin L9))
      (node (ref U13_6) (pin M10))
      (node (ref R35) (pin 1))
      (node (ref SV1) (pin 6))
      (node (ref R36) (pin 1))
      (node (ref Q4) (pin 2))
      (node (ref R42) (pin 1))
      (node (ref SV1) (pin 8))
      (node (ref C108) (pin 2))
      (node (ref SV1) (pin 7))
      (node (ref U13) (pin E12))
      (node (ref C69) (pin 2))
      (node (ref U10) (pin 21))
      (node (ref JP3) (pin 6))
      (node (ref C105) (pin 2))
      (node (ref LED11) (pin 2))
      (node (ref LED12) (pin 2))
      (node (ref LED9) (pin 2))
      (node (ref U8) (pin 35))
      (node (ref U8) (pin 36))
      (node (ref C103) (pin 2))
      (node (ref C104) (pin 2))
      (node (ref C102) (pin 2))
      (node (ref U8) (pin 23))
      (node (ref U8) (pin 22))
      (node (ref S2) (pin B1))
      (node (ref U8) (pin 4))
      (node (ref LED10) (pin 2))
      (node (ref U8) (pin 41))
      (node (ref U8) (pin 42))
      (node (ref U10) (pin 5))
      (node (ref JP5) (pin 10))
      (node (ref JP4) (pin 3))
      (node (ref S2) (pin G2))
      (node (ref U8) (pin 47))
      (node (ref U8) (pin 48))
      (node (ref S2) (pin G1))
      (node (ref S2) (pin B2))
      (node (ref U13_6) (pin K9))
      (node (ref U8) (pin 10))
      (node (ref U8) (pin 11))
      (node (ref C26) (pin 2))
      (node (ref C42) (pin 2))
      (node (ref C44) (pin 2))
      (node (ref C46) (pin 2))
      (node (ref C28) (pin 2))
      (node (ref C31) (pin 2))
      (node (ref C32) (pin 2))
      (node (ref C30) (pin 2))
      (node (ref C29) (pin 2))
      (node (ref C36) (pin 2))
      (node (ref C27) (pin 2))
      (node (ref C38) (pin 2))
      (node (ref C40) (pin 2))
      (node (ref U4_2) (pin 149))
      (node (ref U4_2) (pin 25))
      (node (ref U4_2) (pin 202))
      (node (ref U4_2) (pin 184))
      (node (ref U4_2) (pin 170))
      (node (ref C178) (pin 2))
      (node (ref C174) (pin 2))
      (node (ref C180) (pin 2))
      (node (ref C179) (pin 2))
      (node (ref U4_2) (pin 14))
      (node (ref C173) (pin 2))
      (node (ref U4_2) (pin 136))
      (node (ref C34) (pin 2))
      (node (ref C172) (pin 2))
      (node (ref C21) (pin 2))
      (node (ref C24) (pin 1))
      (node (ref C177) (pin 2))
      (node (ref C22) (pin 1))
      (node (ref C193) (pin 2))
      (node (ref C23) (pin 1))
      (node (ref U4_2) (pin 125))
      (node (ref U13_14) (pin N8))
      (node (ref C25) (pin 1))
      (node (ref U4_2) (pin 60))
      (node (ref U4_2) (pin 51))
      (node (ref C191) (pin 2))
      (node (ref C201) (pin 2))
      (node (ref C195) (pin 2))
      (node (ref C45) (pin 2))
      (node (ref U4_2) (pin 72))
      (node (ref C189) (pin 2))
      (node (ref U4_2) (pin 82))
      (node (ref C181) (pin 2))
      (node (ref C192) (pin 2))
      (node (ref U4_2) (pin 93))
      (node (ref C175) (pin 2))
      (node (ref C169) (pin 2))
      (node (ref C184) (pin 2))
      (node (ref C204) (pin 2))
      (node (ref C198) (pin 2))
      (node (ref C186) (pin 2))
      (node (ref C203) (pin 2))
      (node (ref C187) (pin 2))
      (node (ref C197) (pin 2))
      (node (ref C35) (pin 2))
      (node (ref C171) (pin 2))
      (node (ref C170) (pin 2))
      (node (ref C183) (pin 2))
      (node (ref C200) (pin 2))
      (node (ref U4_2) (pin 114))
      (node (ref C194) (pin 2))
      (node (ref C188) (pin 2))
      (node (ref C182) (pin 2))
      (node (ref C176) (pin 2))
      (node (ref C168) (pin 2))
      (node (ref C33) (pin 2))
      (node (ref C199) (pin 2))
      (node (ref C167) (pin 2))
      (node (ref C37) (pin 2))
      (node (ref C166) (pin 2))
      (node (ref C39) (pin 2))
      (node (ref C165) (pin 2))
      (node (ref C41) (pin 2))
      (node (ref C185) (pin 2))
      (node (ref C43) (pin 2))
      (node (ref C202) (pin 2))
      (node (ref C196) (pin 2))
      (node (ref C190) (pin 2))
      (node (ref U4_2) (pin 40))
      (node (ref T1) (pin 2))
      (node (ref C8) (pin 2))
      (node (ref C213) (pin 2))
      (node (ref C212) (pin 2))
      (node (ref C211) (pin 2))
      (node (ref S1) (pin 1))
      (node (ref C16) (pin 1))
      (node (ref C3) (pin 2))
      (node (ref C2) (pin 2))
      (node (ref C4) (pin 2))
      (node (ref T2) (pin 2))
      (node (ref U3) (pin 3))
      (node (ref C14) (pin 1))
      (node (ref R6) (pin 2))
      (node (ref Q1) (pin 2))
      (node (ref Q6) (pin 2))
      (node (ref C6) (pin 2))
      (node (ref LED1) (pin 2))
      (node (ref J1) (pin 3))
      (node (ref LED2) (pin 2))
      (node (ref LED4) (pin 2))
      (node (ref LED3) (pin 2))
      (node (ref C20) (pin 2))
      (node (ref R15) (pin 1))
      (node (ref C17) (pin 1))
      (node (ref R2) (pin 1))
      (node (ref U16) (pin 65))
      (node (ref U16) (pin 66))
      (node (ref U16) (pin 67))
      (node (ref U16) (pin 68))
      (node (ref U16) (pin PAD69))
      (node (ref U16) (pin PAD70))
      (node (ref C207) (pin 2))
      (node (ref C205) (pin 2))
      (node (ref C10) (pin 2))
      (node (ref C9) (pin 2))
      (node (ref JP1) (pin 3))
      (node (ref C209) (pin 2))
      (node (ref U16) (pin 33))
      (node (ref U16) (pin 32))
      (node (ref U16) (pin 31))
      (node (ref U16) (pin 30))
      (node (ref U16) (pin 3))
      (node (ref U16) (pin 29))
      (node (ref U16) (pin 28))
      (node (ref U16) (pin 27))
      (node (ref U16) (pin 4))
      (node (ref R9) (pin 1))
      (node (ref JP1) (pin 2))
      (node (ref C1) (pin 2))
      (node (ref C18) (pin 1))
      (node (ref C210) (pin 2))
      (node (ref C19) (pin 2))
      (node (ref U16) (pin 1))
      (node (ref Q3) (pin 4))
      (node (ref U16) (pin 2))
      (node (ref Q3) (pin 2))
      (node (ref C206) (pin 2))
      (node (ref R69) (pin 1))
      (node (ref R70) (pin 1))
      (node (ref U16) (pin 64))
      (node (ref U16) (pin 55))
      (node (ref U6) (pin 72))
      (node (ref U6) (pin 6))
      (node (ref U6) (pin 58))
      (node (ref U6) (pin 52))
      (node (ref C136) (pin 2))
      (node (ref C132) (pin 2))
      (node (ref C61) (pin 2))
      (node (ref U5) (pin 44))
      (node (ref C56) (pin 2))
      (node (ref C60) (pin 2))
      (node (ref C62) (pin 2))
      (node (ref U5) (pin 46))
      (node (ref C63) (pin 2))
      (node (ref C65) (pin 2))
      (node (ref C67) (pin 2))
      (node (ref U6) (pin 86))
      (node (ref U6) (pin 84))
      (node (ref U5) (pin 6))
      (node (ref U13_14) (pin N6))
      (node (ref U13_14) (pin N16))
      (node (ref U13_14) (pin M7))
      (node (ref U13_14) (pin M19))
      (node (ref U13_14) (pin M11))
      (node (ref U13_14) (pin L8))
      (node (ref U13_13) (pin E9))
      (node (ref U13_14) (pin L2))
      (node (ref U13_14) (pin K7))
      (node (ref U13_14) (pin K5))
      (node (ref U13_14) (pin K15))
      (node (ref U13_14) (pin K11))
      (node (ref U13_14) (pin J18))
      (node (ref U13_14) (pin J12))
      (node (ref U5) (pin 58))
      (node (ref U13_14) (pin J10))
      (node (ref U13_14) (pin AB9))
      (node (ref U5) (pin 52))
      (node (ref C59) (pin 2))
      (node (ref C52) (pin 2))
      (node (ref U6) (pin 46))
      (node (ref U6) (pin 44))
      (node (ref U6) (pin 38))
      (node (ref U6) (pin 32))
      (node (ref C50) (pin 2))
      (node (ref U6) (pin 78))
      (node (ref C47) (pin 2))
      (node (ref C48) (pin 2))
      (node (ref C49) (pin 2))
      (node (ref C51) (pin 2))
      (node (ref C54) (pin 2))
      (node (ref C64) (pin 2))
      (node (ref C66) (pin 2))
      (node (ref C68) (pin 2))
      (node (ref C58) (pin 2))
      (node (ref C161) (pin 2))
      (node (ref U5) (pin 12))
      (node (ref C138) (pin 2))
      (node (ref C135) (pin 2))
      (node (ref C140) (pin 2))
      (node (ref C152) (pin 2))
      (node (ref C148) (pin 2))
      (node (ref C144) (pin 2))
      (node (ref C164) (pin 2))
      (node (ref C159) (pin 2))
      (node (ref C155) (pin 2))
      (node (ref C151) (pin 2))
      (node (ref C147) (pin 2))
      (node (ref C125) (pin 2))
      (node (ref C143) (pin 2))
      (node (ref C156) (pin 2))
      (node (ref C157) (pin 2))
      (node (ref C153) (pin 2))
      (node (ref C139) (pin 2))
      (node (ref C149) (pin 2))
      (node (ref C145) (pin 2))
      (node (ref C141) (pin 2))
      (node (ref C133) (pin 2))
      (node (ref C160) (pin 2))
      (node (ref C131) (pin 2))
      (node (ref C129) (pin 2))
      (node (ref C134) (pin 2))
      (node (ref C130) (pin 2))
      (node (ref C128) (pin 2))
      (node (ref C127) (pin 2))
      (node (ref C123) (pin 2))
      (node (ref C126) (pin 2))
      (node (ref C124) (pin 2))
      (node (ref C137) (pin 2))
      (node (ref C146) (pin 2))
      (node (ref C163) (pin 2))
      (node (ref C162) (pin 2))
      (node (ref C158) (pin 2))
      (node (ref C154) (pin 2))
      (node (ref C150) (pin 2))
      (node (ref C142) (pin 2)))
    (net (code 23) (name PWR_18V)
      (node (ref U1) (pin 2))
      (node (ref U1) (pin 1))
      (node (ref R7) (pin 1))
      (node (ref C7) (pin 1))
      (node (ref U2) (pin 5))
      (node (ref C2) (pin 1))
      (node (ref C3) (pin 1))
      (node (ref JP1) (pin 1))
      (node (ref C4) (pin 1))
      (node (ref R1) (pin 2))
      (node (ref C1) (pin 1)))
    (net (code 24) (name /Power/15V_LDO_ENABLE)
      (node (ref U2) (pin 1))
      (node (ref R7) (pin 2))
      (node (ref JP2) (pin 1)))
    (net (code 25) (name "Net-(Q2-Pad3)")
      (node (ref Q2) (pin 3)))
    (net (code 26) (name "Net-(C15-Pad2)")
      (node (ref R12) (pin 1))
      (node (ref T2) (pin 1))
      (node (ref C15) (pin 2))
      (node (ref D1) (pin 1)))
    (net (code 27) (name "Net-(U3-Pad1)")
      (node (ref U3) (pin 1)))
    (net (code 28) (name VCCO_3V3)
      (node (ref U13_12) (pin U19))
      (node (ref U13_12) (pin R15))
      (node (ref U13_12) (pin T22))
      (node (ref C121) (pin 1))
      (node (ref U13_11) (pin F22))
      (node (ref SV2) (pin 1))
      (node (ref SV2) (pin 2))
      (node (ref SV2) (pin 3))
      (node (ref SV2) (pin 4))
      (node (ref U13_11) (pin B14))
      (node (ref C122) (pin 1))
      (node (ref SV3) (pin 1))
      (node (ref SV3) (pin 4))
      (node (ref SV3) (pin 3))
      (node (ref SV3) (pin 2))
      (node (ref U13_11) (pin C21))
      (node (ref U13_11) (pin E15))
      (node (ref U13_11) (pin D18))
      (node (ref U13_11) (pin A17))
      (node (ref U5) (pin 41))
      (node (ref C59) (pin 1))
      (node (ref C50) (pin 1))
      (node (ref C51) (pin 1))
      (node (ref C49) (pin 1))
      (node (ref C48) (pin 1))
      (node (ref C47) (pin 1))
      (node (ref C65) (pin 1))
      (node (ref U6) (pin 81))
      (node (ref C67) (pin 1))
      (node (ref C63) (pin 1))
      (node (ref JP4) (pin 1))
      (node (ref C61) (pin 1))
      (node (ref C62) (pin 1))
      (node (ref C60) (pin 1))
      (node (ref C56) (pin 1))
      (node (ref C52) (pin 1))
      (node (ref U5) (pin 43))
      (node (ref U5) (pin 49))
      (node (ref U5) (pin 55))
      (node (ref U5) (pin 29))
      (node (ref U5) (pin 3))
      (node (ref U5) (pin 35))
      (node (ref C55) (pin 1))
      (node (ref C53) (pin 1))
      (node (ref U6) (pin 1))
      (node (ref U6) (pin 15))
      (node (ref C57) (pin 1))
      (node (ref U5) (pin 75))
      (node (ref U5) (pin 81))
      (node (ref U6) (pin 55))
      (node (ref U5) (pin 1))
      (node (ref U5) (pin 15))
      (node (ref U6) (pin 75))
      (node (ref C105) (pin 1))
      (node (ref U6) (pin 29))
      (node (ref U6) (pin 3))
      (node (ref U6) (pin 35))
      (node (ref U6) (pin 41))
      (node (ref JP5) (pin 1))
      (node (ref U6) (pin 43))
      (node (ref U6) (pin 49))
      (node (ref C58) (pin 1))
      (node (ref C68) (pin 1))
      (node (ref C66) (pin 1))
      (node (ref C64) (pin 1))
      (node (ref C54) (pin 1))
      (node (ref R21) (pin 1))
      (node (ref R20) (pin 1))
      (node (ref R19) (pin 1))
      (node (ref R65) (pin 2))
      (node (ref U13_12) (pin Y20))
      (node (ref U13_12) (pin P18))
      (node (ref U13_12) (pin M14))
      (node (ref U7) (pin 8))
      (node (ref U13_7) (pin K20))
      (node (ref U13_7) (pin J13))
      (node (ref U13_7) (pin H16))
      (node (ref U13_7) (pin G19))
      (node (ref U13_8) (pin N1))
      (node (ref U13_8) (pin M4))
      (node (ref R17) (pin 1))
      (node (ref C69) (pin 1))
      (node (ref R18) (pin 1))
      (node (ref IC1) (pin 8))
      (node (ref IC1) (pin 7))
      (node (ref IC2_3) (pin 20))
      (node (ref R46) (pin 2))
      (node (ref C110) (pin 1))
      (node (ref C112) (pin 1))
      (node (ref R49) (pin 2))
      (node (ref R51) (pin 2))
      (node (ref JP7) (pin 6))
      (node (ref Q5) (pin 4))
      (node (ref C111) (pin 1))
      (node (ref IC3) (pin 8))
      (node (ref IC3) (pin 7))
      (node (ref SV1) (pin 1))
      (node (ref FB6) (pin 2))
      (node (ref U13_8) (pin C1))
      (node (ref U13_7) (pin L17))
      (node (ref U13_8) (pin J3))
      (node (ref C108) (pin 1))
      (node (ref U13_8) (pin H6))
      (node (ref R43) (pin 2))
      (node (ref U13_8) (pin F2))
      (node (ref R44) (pin 2))
      (node (ref R45) (pin 2))
      (node (ref R38) (pin 2))
      (node (ref U13) (pin F12))
      (node (ref U13) (pin T12))
      (node (ref U13_10) (pin AB4))
      (node (ref R40) (pin 2))
      (node (ref U13) (pin U8))
      (node (ref U13_10) (pin V6))
      (node (ref U13_10) (pin W3))
      (node (ref U13_10) (pin T2))
      (node (ref R37) (pin 2))
      (node (ref U13_10) (pin R5))
      (node (ref R41) (pin 2))
      (node (ref U13_9) (pin AA17))
      (node (ref U13_9) (pin W13))
      (node (ref U13_9) (pin Y10))
      (node (ref U13_10) (pin AA7))
      (node (ref U13_9) (pin AB14))
      (node (ref U13_9) (pin V16))
      (node (ref U13_7) (pin N21))
      (node (ref U4_2) (pin 73))
      (node (ref C198) (pin 1))
      (node (ref C204) (pin 1))
      (node (ref C169) (pin 1))
      (node (ref C45) (pin 1))
      (node (ref C175) (pin 1))
      (node (ref U4_2) (pin 94))
      (node (ref C176) (pin 1))
      (node (ref C181) (pin 1))
      (node (ref U4_2) (pin 83))
      (node (ref C189) (pin 1))
      (node (ref C195) (pin 1))
      (node (ref C201) (pin 1))
      (node (ref U4_2) (pin 59))
      (node (ref U4_2) (pin 52))
      (node (ref U4_2) (pin 42))
      (node (ref C190) (pin 1))
      (node (ref U4_2) (pin 39))
      (node (ref C196) (pin 1))
      (node (ref U4_2) (pin 26))
      (node (ref C202) (pin 1))
      (node (ref R91) (pin 1))
      (node (ref C197) (pin 1))
      (node (ref C187) (pin 1))
      (node (ref C203) (pin 1))
      (node (ref C186) (pin 1))
      (node (ref C192) (pin 1))
      (node (ref C179) (pin 1))
      (node (ref C182) (pin 1))
      (node (ref C170) (pin 1))
      (node (ref C171) (pin 1))
      (node (ref C193) (pin 1))
      (node (ref C177) (pin 1))
      (node (ref C178) (pin 1))
      (node (ref C165) (pin 1))
      (node (ref C172) (pin 1))
      (node (ref C21) (pin 1))
      (node (ref C173) (pin 1))
      (node (ref U4_2) (pin 137))
      (node (ref C183) (pin 1))
      (node (ref C180) (pin 1))
      (node (ref U4_2) (pin 15))
      (node (ref C174) (pin 1))
      (node (ref U4_2) (pin 150))
      (node (ref U4_2) (pin 158))
      (node (ref C167) (pin 1))
      (node (ref C43) (pin 1))
      (node (ref C185) (pin 1))
      (node (ref C41) (pin 1))
      (node (ref C191) (pin 1))
      (node (ref C184) (pin 1))
      (node (ref C39) (pin 1))
      (node (ref C166) (pin 1))
      (node (ref C37) (pin 1))
      (node (ref C35) (pin 1))
      (node (ref C199) (pin 1))
      (node (ref C33) (pin 1))
      (node (ref C168) (pin 1))
      (node (ref C188) (pin 1))
      (node (ref U4_2) (pin 124))
      (node (ref C194) (pin 1))
      (node (ref U4_2) (pin 115))
      (node (ref C200) (pin 1))
      (node (ref U4_2) (pin 103))
      (node (ref R90) (pin 1))
      (node (ref C19) (pin 1))
      (node (ref U4) (pin 203))
      (node (ref U4) (pin 41))
      (node (ref J1) (pin 1))
      (node (ref C36) (pin 1))
      (node (ref C32) (pin 1))
      (node (ref C31) (pin 1))
      (node (ref C26) (pin 1))
      (node (ref C46) (pin 1))
      (node (ref C44) (pin 1))
      (node (ref C42) (pin 1))
      (node (ref C40) (pin 1))
      (node (ref C38) (pin 1))
      (node (ref C27) (pin 1))
      (node (ref C30) (pin 1))
      (node (ref C34) (pin 1))
      (node (ref C28) (pin 1))
      (node (ref C29) (pin 1))
      (node (ref U3) (pin 5))
      (node (ref U4_2) (pin 171))
      (node (ref U4_2) (pin 185))
      (node (ref U4_2) (pin 204))
      (node (ref C16) (pin 2))
      (node (ref R13) (pin 2)))
    (net (code 29) (name "/Entropy source/AMPLIFIED")
      (node (ref TP2) (pin TP))
      (node (ref T2) (pin 3))
      (node (ref U3) (pin 2))
      (node (ref R12) (pin 2))
      (node (ref D1) (pin 3))
      (node (ref R13) (pin 1)))
    (net (code 30) (name "/Entropy source/RAW_NOISE")
      (node (ref TP1) (pin TP))
      (node (ref T1) (pin 3))
      (node (ref R10) (pin 1))
      (node (ref R11) (pin 2))
      (node (ref C15) (pin 1)))
    (net (code 31) (name DIGITIZED_NOISE)
      (node (ref U3) (pin 4))
      (node (ref U13_12) (pin W19)))
    (net (code 32) (name "/Entropy source/NOISE_IN")
      (node (ref C14) (pin 2))
      (node (ref R10) (pin 2))
      (node (ref Q2) (pin 2)))
    (net (code 33) (name "/Entropy source/NOISE_OUT")
      (node (ref Q2) (pin 1))
      (node (ref T1) (pin 1)))
    (net (code 34) (name "Net-(U4-Pad160)")
      (node (ref U4) (pin 160)))
    (net (code 35) (name "Net-(C17-Pad2)")
      (node (ref R14) (pin 2))
      (node (ref Q3) (pin 1))
      (node (ref C17) (pin 2)))
    (net (code 36) (name "Net-(U4-Pad192)")
      (node (ref U4) (pin 192)))
    (net (code 37) (name "Net-(U4-Pad193)")
      (node (ref U4) (pin 193)))
    (net (code 38) (name "/STM32 configuration/BOOT0")
      (node (ref U4) (pin 197))
      (node (ref R15) (pin 2)))
    (net (code 39) (name ARM_LED3)
      (node (ref R16) (pin 2))
      (node (ref U4_4) (pin 189)))
    (net (code 40) (name ARM_LED4)
      (node (ref U4_4) (pin 190))
      (node (ref R94) (pin 2)))
    (net (code 41) (name "Net-(LED3-Pad1)")
      (node (ref R93) (pin 1))
      (node (ref LED3) (pin 1)))
    (net (code 42) (name "Net-(LED1-Pad1)")
      (node (ref R92) (pin 1))
      (node (ref LED1) (pin 1)))
    (net (code 43) (name "Net-(LED4-Pad1)")
      (node (ref R16) (pin 1))
      (node (ref LED4) (pin 1)))
    (net (code 44) (name "Net-(LED2-Pad1)")
      (node (ref LED2) (pin 1))
      (node (ref R94) (pin 1)))
    (net (code 45) (name "Net-(U4-Pad63)")
      (node (ref U4) (pin 63)))
    (net (code 46) (name "Net-(J1-Pad6)")
      (node (ref J1) (pin 6)))
    (net (code 47) (name "/STM32 configuration/SWDCLK")
      (node (ref J1) (pin 2))
      (node (ref U4) (pin 159)))
    (net (code 48) (name ARM_LED2)
      (node (ref R92) (pin 2))
      (node (ref U4_4) (pin 188)))
    (net (code 49) (name ARM_LED1)
      (node (ref U4_4) (pin 187))
      (node (ref R93) (pin 2)))
    (net (code 50) (name "/STM32 configuration/NRST")
      (node (ref C20) (pin 1))
      (node (ref J1) (pin 5))
      (node (ref U4) (pin 34)))
    (net (code 51) (name "/STM32 configuration/SWDIO")
      (node (ref J1) (pin 4))
      (node (ref U4) (pin 147)))
    (net (code 52) (name "/STM32 configuration/OSC_IN")
      (node (ref R14) (pin 1))
      (node (ref U4) (pin 32)))
    (net (code 53) (name "/STM32 configuration/OSC_OUT")
      (node (ref C18) (pin 2))
      (node (ref Q3) (pin 3))
      (node (ref U4) (pin 33)))
    (net (code 54) (name 3V3_BATT)
      (node (ref U7) (pin 3))
      (node (ref C106) (pin 1))
      (node (ref R80) (pin 2))
      (node (ref C107) (pin 1))
      (node (ref R30) (pin 2))
      (node (ref U10) (pin 4))
      (node (ref U10) (pin 18))
      (node (ref JP4) (pin 2))
      (node (ref R32) (pin 1))
      (node (ref JP3) (pin 2))
      (node (ref U12) (pin 8))
      (node (ref IC4_3) (pin 20))
      (node (ref R33) (pin 1))
      (node (ref R34) (pin 2))
      (node (ref R82) (pin 2))
      (node (ref C102) (pin 1))
      (node (ref C104) (pin 1))
      (node (ref C103) (pin 1)))
    (net (code 55) (name "Net-(R32-Pad2)")
      (node (ref U4_2) (pin 6))
      (node (ref R32) (pin 2)))
    (net (code 56) (name "/STM32 power/VCAP2")
      (node (ref U4_2) (pin 148))
      (node (ref C24) (pin 2))
      (node (ref C25) (pin 2)))
    (net (code 57) (name "/STM32 power/VCAP1")
      (node (ref U4_2) (pin 92))
      (node (ref C23) (pin 2))
      (node (ref C22) (pin 2)))
    (net (code 58) (name FMC_SDNWE)
      (node (ref U6) (pin 17))
      (node (ref U5) (pin 17))
      (node (ref U4_3) (pin 35)))
    (net (code 59) (name FMC_SDNCAS)
      (node (ref U5) (pin 18))
      (node (ref U4_3) (pin 191))
      (node (ref U6) (pin 18)))
    (net (code 60) (name FMC_SDNRAS)
      (node (ref U5) (pin 19))
      (node (ref U6) (pin 19))
      (node (ref U4_3) (pin 70)))
    (net (code 61) (name FMC_NBL0)
      (node (ref U6) (pin 16))
      (node (ref U5) (pin 16))
      (node (ref U4_3) (pin 200)))
    (net (code 62) (name FMC_NBL1)
      (node (ref U6) (pin 71))
      (node (ref U5) (pin 71))
      (node (ref U4_3) (pin 201)))
    (net (code 63) (name FMC_SDCKE0)
      (node (ref U5) (pin 67))
      (node (ref U4_3) (pin 38)))
    (net (code 64) (name FMC_SDNE0)
      (node (ref U4_3) (pin 37))
      (node (ref U5) (pin 20)))
    (net (code 65) (name FMC_SDCLK)
      (node (ref U6) (pin 68))
      (node (ref U4_3) (pin 135))
      (node (ref U5) (pin 68)))
    (net (code 66) (name FMC_NBL2)
      (node (ref U6) (pin 28))
      (node (ref U4_3) (pin 205))
      (node (ref U5) (pin 28)))
    (net (code 67) (name FMC_NBL3)
      (node (ref U4_3) (pin 206))
      (node (ref U5) (pin 59))
      (node (ref U6) (pin 59)))
    (net (code 68) (name FMC_SDCKE1)
      (node (ref U6) (pin 67))
      (node (ref U4_3) (pin 194)))
    (net (code 69) (name FMC_SDNE1)
      (node (ref U4_3) (pin 195))
      (node (ref U6) (pin 20)))
    (net (code 70) (name "Net-(IC1-Pad3)")
      (node (ref R17) (pin 2))
      (node (ref IC1) (pin 3)))
    (net (code 71) (name KSM_PROM_MISO)
      (node (ref IC1) (pin 2))
      (node (ref U4_4) (pin 55)))
    (net (code 72) (name KSM_PROM_SCLK)
      (node (ref U4_4) (pin 54))
      (node (ref IC1) (pin 6)))
    (net (code 73) (name KSM_PROM_MOSI)
      (node (ref U4_4) (pin 56))
      (node (ref IC1) (pin 5)))
    (net (code 74) (name KSM_PROM_CS_N)
      (node (ref U4_4) (pin 61))
      (node (ref IC1) (pin 1))
      (node (ref R18) (pin 2)))
    (net (code 75) (name "Net-(C70-Pad2)")
      (node (ref X1) (pin P$1))
      (node (ref U7) (pin 1))
      (node (ref C70) (pin 2)))
    (net (code 76) (name RTC_SDA)
      (node (ref R19) (pin 2))
      (node (ref U7) (pin 5))
      (node (ref U4_4) (pin 49)))
    (net (code 77) (name "Net-(C71-Pad2)")
      (node (ref C71) (pin 2))
      (node (ref X1) (pin P$2))
      (node (ref U7) (pin 2)))
    (net (code 78) (name RTC_SCL)
      (node (ref U4_4) (pin 48))
      (node (ref R20) (pin 2))
      (node (ref U7) (pin 6)))
    (net (code 79) (name RTC_MFP)
      (node (ref U7) (pin 7))
      (node (ref R21) (pin 2))
      (node (ref U4_4) (pin 47)))
    (net (code 80) (name "Net-(U8-Pad18)")
      (node (ref U8) (pin 18)))
    (net (code 81) (name "Net-(U8-Pad19)")
      (node (ref U8) (pin 19)))
    (net (code 82) (name "Net-(U8-Pad20)")
      (node (ref U8) (pin 20)))
    (net (code 83) (name "Net-(U8-Pad21)")
      (node (ref U8) (pin 21)))
    (net (code 84) (name "Net-(U8-Pad25)")
      (node (ref U8) (pin 25)))
    (net (code 85) (name "/User USB UART/FT_VCCORE")
      (node (ref C74) (pin 1))
      (node (ref U8) (pin 38)))
    (net (code 86) (name "Net-(U8-Pad45)")
      (node (ref U8) (pin 45)))
    (net (code 87) (name "Net-(U8-Pad44)")
      (node (ref U8) (pin 44)))
    (net (code 88) (name "Net-(U8-Pad43)")
      (node (ref U8) (pin 43)))
    (net (code 89) (name "Net-(U8-Pad26)")
      (node (ref U8) (pin 26)))
    (net (code 90) (name "/User USB UART/FT_VCCA")
      (node (ref C76) (pin 1))
      (node (ref U8) (pin 37)))
    (net (code 91) (name "Net-(U8-Pad32)")
      (node (ref U8) (pin 32)))
    (net (code 92) (name "Net-(U8-Pad31)")
      (node (ref U8) (pin 31)))
    (net (code 93) (name "Net-(U8-Pad30)")
      (node (ref U8) (pin 30)))
    (net (code 94) (name "Net-(U8-Pad29)")
      (node (ref U8) (pin 29)))
    (net (code 95) (name "Net-(U8-Pad28)")
      (node (ref U8) (pin 28)))
    (net (code 96) (name "Net-(U8-Pad27)")
      (node (ref U8) (pin 27)))
    (net (code 97) (name FT_DTR)
      (node (ref U8) (pin 17))
      (node (ref U4_4) (pin 53)))
    (net (code 98) (name FT_CTS)
      (node (ref U8) (pin 16))
      (node (ref U4_4) (pin 44)))
    (net (code 99) (name FT_RTS)
      (node (ref U4_4) (pin 43))
      (node (ref U8) (pin 15)))
    (net (code 100) (name FT_VPLL)
      (node (ref U8) (pin 8))
      (node (ref C80) (pin 1))
      (node (ref FB2) (pin 2))
      (node (ref C81) (pin 1)))
    (net (code 101) (name "Net-(U8-Pad33)")
      (node (ref U8) (pin 33)))
    (net (code 102) (name "/User USB UART/D1_P")
      (node (ref CN1) (pin D+))
      (node (ref IC5) (pin 6)))
    (net (code 103) (name "/User USB UART/FT_RXD1")
      (node (ref R87) (pin 2))
      (node (ref J2) (pin 5))
      (node (ref U8) (pin 14)))
    (net (code 104) (name "/User USB UART/FT_TXD1")
      (node (ref J2) (pin 6))
      (node (ref U8) (pin 13))
      (node (ref R86) (pin 2)))
    (net (code 105) (name "/User USB UART/D1_N")
      (node (ref CN1) (pin D-))
      (node (ref IC5) (pin 4)))
    (net (code 106) (name "Net-(C75-Pad2)")
      (node (ref C75) (pin 2))
      (node (ref Y1) (pin 3))
      (node (ref U8) (pin 1)))
    (net (code 107) (name FT_VPHY)
      (node (ref FB1) (pin 2))
      (node (ref U8) (pin 3))
      (node (ref C77) (pin 1))
      (node (ref C79) (pin 1)))
    (net (code 108) (name "Net-(CN1-PadID)")
      (node (ref CN1) (pin ID)))
    (net (code 109) (name "/User USB UART/FT_RESET")
      (node (ref R23) (pin 1))
      (node (ref U8) (pin 34)))
    (net (code 110) (name FT_VCC3V3)
      (node (ref FB2) (pin 1))
      (node (ref C86) (pin 1))
      (node (ref C85) (pin 1))
      (node (ref C84) (pin 1))
      (node (ref R23) (pin 2))
      (node (ref C83) (pin 1))
      (node (ref C82) (pin 1))
      (node (ref U8) (pin 46))
      (node (ref U8) (pin 39))
      (node (ref U8) (pin 24))
      (node (ref FB1) (pin 1))
      (node (ref U8) (pin 12)))
    (net (code 111) (name FT_VREGIN)
      (node (ref J2) (pin 2))
      (node (ref IC5) (pin 5))
      (node (ref C214) (pin 1))
      (node (ref C73) (pin 1))
      (node (ref CN1) (pin VBUS))
      (node (ref U8) (pin 40))
      (node (ref C72) (pin 1)))
    (net (code 112) (name "/User USB UART/USB_N")
      (node (ref U8) (pin 6))
      (node (ref IC5) (pin 3))
      (node (ref J2) (pin 4)))
    (net (code 113) (name "/User USB UART/USB_P")
      (node (ref U8) (pin 7))
      (node (ref J2) (pin 3))
      (node (ref IC5) (pin 1)))
    (net (code 114) (name "/User USB UART/FT_REF")
      (node (ref R22) (pin 1))
      (node (ref U8) (pin 5)))
    (net (code 115) (name FT_RXD)
      (node (ref R87) (pin 1))
      (node (ref U4_4) (pin 45)))
    (net (code 116) (name FT_TXD)
      (node (ref U4_4) (pin 50))
      (node (ref R86) (pin 1))
      (node (ref R91) (pin 2)))
    (net (code 117) (name "Net-(C78-Pad2)")
      (node (ref C78) (pin 2))
      (node (ref U8) (pin 2))
      (node (ref Y1) (pin 1)))
    (net (code 118) (name "Net-(U9-Pad18)")
      (node (ref U9) (pin 18)))
    (net (code 119) (name "Net-(U9-Pad19)")
      (node (ref U9) (pin 19)))
    (net (code 120) (name "Net-(U9-Pad20)")
      (node (ref U9) (pin 20)))
    (net (code 121) (name "Net-(U9-Pad21)")
      (node (ref U9) (pin 21)))
    (net (code 122) (name "Net-(U9-Pad25)")
      (node (ref U9) (pin 25)))
    (net (code 123) (name "Net-(U9-Pad26)")
      (node (ref U9) (pin 26)))
    (net (code 124) (name "/MGMT USB UART/FT_VCCORE1")
      (node (ref U9) (pin 38))
      (node (ref C89) (pin 1)))
    (net (code 125) (name "Net-(U9-Pad45)")
      (node (ref U9) (pin 45)))
    (net (code 126) (name "Net-(U9-Pad44)")
      (node (ref U9) (pin 44)))
    (net (code 127) (name "Net-(U9-Pad43)")
      (node (ref U9) (pin 43)))
    (net (code 128) (name "Net-(U9-Pad27)")
      (node (ref U9) (pin 27)))
    (net (code 129) (name "Net-(U9-Pad33)")
      (node (ref U9) (pin 33)))
    (net (code 130) (name "Net-(U9-Pad32)")
      (node (ref U9) (pin 32)))
    (net (code 131) (name "Net-(U9-Pad31)")
      (node (ref U9) (pin 31)))
    (net (code 132) (name "Net-(U9-Pad30)")
      (node (ref U9) (pin 30)))
    (net (code 133) (name "Net-(U9-Pad29)")
      (node (ref U9) (pin 29)))
    (net (code 134) (name "Net-(U9-Pad28)")
      (node (ref U9) (pin 28)))
    (net (code 135) (name "/MGMT USB UART/DM_N")
      (node (ref IC6) (pin 4))
      (node (ref CN2) (pin D-)))
    (net (code 136) (name "/MGMT USB UART/DM_P")
      (node (ref CN2) (pin D+))
      (node (ref IC6) (pin 6)))
    (net (code 137) (name FT_MGMT_DTR)
      (node (ref U4_4) (pin 142))
      (node (ref U9) (pin 17)))
    (net (code 138) (name FT_MGMT_CTS)
      (node (ref U4_4) (pin 146))
      (node (ref U9) (pin 16)))
    (net (code 139) (name FT_MGMT_RTS)
      (node (ref U9) (pin 15))
      (node (ref U4_4) (pin 145)))
    (net (code 140) (name FT_MGMT_RXD)
      (node (ref R89) (pin 1))
      (node (ref U4_4) (pin 143)))
    (net (code 141) (name FT_MGMT_TXD)
      (node (ref R88) (pin 1))
      (node (ref U4_4) (pin 144))
      (node (ref R90) (pin 2)))
    (net (code 142) (name FT_MGMT_VPHY)
      (node (ref C92) (pin 1))
      (node (ref U9) (pin 3))
      (node (ref C94) (pin 1))
      (node (ref FB3) (pin 2)))
    (net (code 143) (name "/MGMT USB UART/FT_MGMT_RXD1")
      (node (ref J3) (pin 5))
      (node (ref U9) (pin 14))
      (node (ref R89) (pin 2)))
    (net (code 144) (name "/MGMT USB UART/FT_MGMT_TXD1")
      (node (ref U9) (pin 13))
      (node (ref J3) (pin 6))
      (node (ref R88) (pin 2)))
    (net (code 145) (name FT_MGMT_VPLL)
      (node (ref C95) (pin 1))
      (node (ref U9) (pin 8))
      (node (ref FB4) (pin 2))
      (node (ref C96) (pin 1)))
    (net (code 146) (name "Net-(CN2-PadID)")
      (node (ref CN2) (pin ID)))
    (net (code 147) (name FT_MGMT_VCC3V3)
      (node (ref C99) (pin 1))
      (node (ref R27) (pin 2))
      (node (ref FB3) (pin 1))
      (node (ref U9) (pin 39))
      (node (ref C100) (pin 1))
      (node (ref C101) (pin 1))
      (node (ref C97) (pin 1))
      (node (ref U9) (pin 12))
      (node (ref U9) (pin 24))
      (node (ref FB4) (pin 1))
      (node (ref C98) (pin 1))
      (node (ref U9) (pin 46)))
    (net (code 148) (name FT_MGMT_VREGIN)
      (node (ref IC6) (pin 5))
      (node (ref C88) (pin 1))
      (node (ref U9) (pin 40))
      (node (ref C215) (pin 1))
      (node (ref C87) (pin 1))
      (node (ref CN2) (pin VBUS))
      (node (ref J3) (pin 2)))
    (net (code 149) (name "/MGMT USB UART/USB_MGMT_N")
      (node (ref J3) (pin 4))
      (node (ref IC6) (pin 3))
      (node (ref U9) (pin 6)))
    (net (code 150) (name "/MGMT USB UART/USB_MGMT_P")
      (node (ref IC6) (pin 1))
      (node (ref U9) (pin 7))
      (node (ref J3) (pin 3)))
    (net (code 151) (name "Net-(C90-Pad2)")
      (node (ref C90) (pin 2))
      (node (ref Y2) (pin 3))
      (node (ref U9) (pin 1)))
    (net (code 152) (name "Net-(C93-Pad2)")
      (node (ref U9) (pin 2))
      (node (ref C93) (pin 2))
      (node (ref Y2) (pin 1)))
    (net (code 153) (name "/MGMT USB UART/FT_RESET1")
      (node (ref U9) (pin 34))
      (node (ref R27) (pin 1)))
    (net (code 154) (name "/MGMT USB UART/FT_REF1")
      (node (ref R26) (pin 1))
      (node (ref U9) (pin 5)))
    (net (code 155) (name "/MGMT USB UART/FT_VCCA1")
      (node (ref C91) (pin 1))
      (node (ref U9) (pin 37)))
    (net (code 156) (name AVR_GPIO_FPGA_3)
      (node (ref U13_11) (pin A19))
      (node (ref U10) (pin 26)))
    (net (code 157) (name AVR_GPIO_FPGA_2)
      (node (ref U13_11) (pin A18))
      (node (ref U10) (pin 25)))
    (net (code 158) (name AVR_GPIO_ARM_3)
      (node (ref U10) (pin 22))
      (node (ref U4_4) (pin 90)))
    (net (code 159) (name AVR_GPIO_ARM_2)
      (node (ref U4_4) (pin 91))
      (node (ref U10) (pin 20)))
    (net (code 160) (name MKM_CONTROL_FPGA_DIS)
      (node (ref R81) (pin 1))
      (node (ref IC4_2) (pin 19))
      (node (ref U10) (pin 16)))
    (net (code 161) (name AVR_GPIO_FPGA_1)
      (node (ref U13_11) (pin A20))
      (node (ref U10) (pin 24)))
    (net (code 162) (name AVR_GPIO_FPGA_0)
      (node (ref U13_11) (pin B20))
      (node (ref U10) (pin 23)))
    (net (code 163) (name "/Tamper MCU/AVR_PANIC")
      (node (ref S2) (pin A2))
      (node (ref U10) (pin 13))
      (node (ref R82) (pin 1)))
    (net (code 164) (name "/Tamper MCU/AVR_GPIO_2")
      (node (ref JP5) (pin 4))
      (node (ref U10) (pin 1)))
    (net (code 165) (name "/Tamper MCU/AVR_GPIO_6")
      (node (ref U10) (pin 7))
      (node (ref JP5) (pin 8)))
    (net (code 166) (name "/Tamper MCU/AVR_GPIO_5")
      (node (ref U10) (pin 6))
      (node (ref JP5) (pin 7)))
    (net (code 167) (name "/Tamper MCU/AVR_GPIO_4")
      (node (ref JP5) (pin 6))
      (node (ref U10) (pin 3)))
    (net (code 168) (name "/Tamper MCU/AVR_GPIO_3")
      (node (ref JP5) (pin 5))
      (node (ref U10) (pin 2)))
    (net (code 169) (name AVR_GPIO_ARM_1)
      (node (ref U4_4) (pin 96))
      (node (ref U10) (pin 19)))
    (net (code 170) (name AVR_GPIO_ARM_0)
      (node (ref U4_4) (pin 97))
      (node (ref U10) (pin 17)))
    (net (code 171) (name "/Tamper MCU/AVR_GPIO_7")
      (node (ref JP5) (pin 9))
      (node (ref U10) (pin 8)))
    (net (code 172) (name "/Tamper MCU/AVR_LED3")
      (node (ref R31) (pin 2))
      (node (ref U10) (pin 11)))
    (net (code 173) (name MKM_AVR_MOSI)
      (node (ref U10) (pin 27))
      (node (ref IC4) (pin 6))
      (node (ref JP3) (pin 4)))
    (net (code 174) (name "Net-(S2-PadA1)")
      (node (ref S2) (pin A1)))
    (net (code 175) (name "Net-(LED12-Pad1)")
      (node (ref R31) (pin 1))
      (node (ref LED12) (pin 1)))
    (net (code 176) (name "Net-(LED9-Pad1)")
      (node (ref LED9) (pin 1))
      (node (ref R95) (pin 1)))
    (net (code 177) (name "Net-(LED11-Pad1)")
      (node (ref R96) (pin 1))
      (node (ref LED11) (pin 1)))
    (net (code 178) (name "Net-(LED10-Pad1)")
      (node (ref LED10) (pin 1))
      (node (ref R97) (pin 1)))
    (net (code 179) (name "/Tamper MCU/AVR_LED1")
      (node (ref U10) (pin 9))
      (node (ref R96) (pin 2)))
    (net (code 180) (name "/Tamper MCU/AVR_LED2")
      (node (ref R95) (pin 2))
      (node (ref U10) (pin 10)))
    (net (code 181) (name MKM_AVR_MISO)
      (node (ref JP6) (pin 2))
      (node (ref IC4) (pin 12))
      (node (ref U10) (pin 28))
      (node (ref JP3) (pin 1)))
    (net (code 182) (name "/Tamper MCU/AVR_GPIO_0")
      (node (ref JP5) (pin 2))
      (node (ref U10) (pin 31)))
    (net (code 183) (name "/Tamper MCU/AVR_GPIO_1")
      (node (ref U10) (pin 32))
      (node (ref JP5) (pin 3)))
    (net (code 184) (name "/Tamper MCU/AVR_LED4")
      (node (ref R97) (pin 2))
      (node (ref U10) (pin 12)))
    (net (code 185) (name "/Tamper MCU/AVR_RESET")
      (node (ref U10) (pin 29))
      (node (ref JP3) (pin 5))
      (node (ref R30) (pin 1)))
    (net (code 186) (name MKM_AVR_CS_N)
      (node (ref U10) (pin 14))
      (node (ref IC4) (pin 2)))
    (net (code 187) (name MKM_AVR_SCK)
      (node (ref IC4) (pin 4))
      (node (ref U10) (pin 30))
      (node (ref JP3) (pin 3)))
    (net (code 188) (name MKM_CONTROL_AVR_ENA)
      (node (ref R80) (pin 1))
      (node (ref U10) (pin 15))
      (node (ref IC4) (pin 1)))
    (net (code 189) (name MKM_FPGA_SCK)
      (node (ref IC4_2) (pin 13))
      (node (ref U13_10) (pin V3)))
    (net (code 190) (name MKM_FPGA_CS_N)
      (node (ref IC4_2) (pin 11))
      (node (ref U13_10) (pin W2)))
    (net (code 191) (name "Net-(R33-Pad2)")
      (node (ref R33) (pin 2))
      (node (ref U12) (pin 7)))
    (net (code 192) (name "/Master Key Memory/MKM_SCK")
      (node (ref IC4_2) (pin 7))
      (node (ref U12) (pin 6))
      (node (ref IC4) (pin 16)))
    (net (code 193) (name "/Master Key Memory/MKM_MOSI")
      (node (ref IC4) (pin 14))
      (node (ref IC4_2) (pin 5))
      (node (ref U12) (pin 5)))
    (net (code 194) (name MKM_FPGA_MISO)
      (node (ref U13_10) (pin Y1))
      (node (ref IC4_2) (pin 3)))
    (net (code 195) (name MKM_FPGA_MOSI)
      (node (ref U13_10) (pin W1))
      (node (ref IC4_2) (pin 15)))
    (net (code 196) (name "/Master Key Memory/MKM_MISO")
      (node (ref IC4) (pin 8))
      (node (ref IC4_2) (pin 17))
      (node (ref U12) (pin 2)))
    (net (code 197) (name "Net-(U12-Pad3)")
      (node (ref U12) (pin 3)))
    (net (code 198) (name "Net-(U11-Pad35)")
      (node (ref U11) (pin 35)))
    (net (code 199) (name "Net-(U11-Pad23)")
      (node (ref U11) (pin 23)))
    (net (code 200) (name "Net-(U11-Pad25)")
      (node (ref U11) (pin 25)))
    (net (code 201) (name "Net-(U11-Pad26)")
      (node (ref U11) (pin 26)))
    (net (code 202) (name "Net-(U11-Pad27)")
      (node (ref U11) (pin 27)))
    (net (code 203) (name "Net-(U11-Pad28)")
      (node (ref U11) (pin 28)))
    (net (code 204) (name "Net-(U11-Pad31)")
      (node (ref U11) (pin 31)))
    (net (code 205) (name "Net-(U11-Pad32)")
      (node (ref U11) (pin 32)))
    (net (code 206) (name "Net-(U11-Pad33)")
      (node (ref U11) (pin 33)))
    (net (code 207) (name "Net-(U11-Pad34)")
      (node (ref U11) (pin 34)))
    (net (code 208) (name "Net-(U11-Pad36)")
      (node (ref U11) (pin 36)))
    (net (code 209) (name "Net-(U11-Pad37)")
      (node (ref U11) (pin 37)))
    (net (code 210) (name "Net-(U11-Pad38)")
      (node (ref U11) (pin 38)))
    (net (code 211) (name "Net-(U11-Pad39)")
      (node (ref U11) (pin 39)))
    (net (code 212) (name "Net-(U11-Pad40)")
      (node (ref U11) (pin 40)))
    (net (code 213) (name "Net-(U11-Pad41)")
      (node (ref U11) (pin 41)))
    (net (code 214) (name "Net-(U11-Pad42)")
      (node (ref U11) (pin 42)))
    (net (code 215) (name "Net-(U11-Pad43)")
      (node (ref U11) (pin 43)))
    (net (code 216) (name "/Master Key Memory/MKM_CS_N")
      (node (ref U12) (pin 1))
      (node (ref IC4) (pin 18))
      (node (ref IC4_2) (pin 9))
      (node (ref R34) (pin 1)))
    (net (code 217) (name "/Config interface/FPGA_JTAG_TCK")
      (node (ref U13) (pin V12))
      (node (ref R45) (pin 1))
      (node (ref SV1) (pin 2)))
    (net (code 218) (name "/Config interface/FPGA_CFG_SCLK1")
      (node (ref U13) (pin L12))
      (node (ref R71) (pin 2)))
    (net (code 219) (name "/Config interface/FPGA_PROGRAM_B1")
      (node (ref U13) (pin N12))
      (node (ref R63) (pin 2)))
    (net (code 220) (name "/Config interface/FPGA_INIT_B_INT1")
      (node (ref R62) (pin 2))
      (node (ref U13) (pin U12)))
    (net (code 221) (name FPGA_DONE)
      (node (ref R39) (pin 1))
      (node (ref U4_4) (pin 177)))
    (net (code 222) (name "/Config interface/FPGA_JTAG_TMS")
      (node (ref U13) (pin T13))
      (node (ref SV1) (pin 3))
      (node (ref R44) (pin 1)))
    (net (code 223) (name "/Config interface/FPGA_INIT_B_INT")
      (node (ref Q4) (pin 3))
      (node (ref R62) (pin 1))
      (node (ref R40) (pin 1)))
    (net (code 224) (name "/Config interface/FPGA_M1")
      (node (ref U13) (pin U10))
      (node (ref R36) (pin 2)))
    (net (code 225) (name FPGA_CFG_SCLK)
      (node (ref R71) (pin 1))
      (node (ref IC2_2) (pin 13)))
    (net (code 226) (name FPGA_INIT_B)
      (node (ref R42) (pin 2))
      (node (ref U4_4) (pin 119))
      (node (ref Q4) (pin 1)))
    (net (code 227) (name "Net-(LED13-Pad1)")
      (node (ref LED13) (pin 1))
      (node (ref R38) (pin 1)))
    (net (code 228) (name "/Config interface/FPGA_JTAG_TDO")
      (node (ref U13) (pin U13))
      (node (ref SV1) (pin 5)))
    (net (code 229) (name FPGA_PROGRAM_B)
      (node (ref R41) (pin 1))
      (node (ref U4_4) (pin 120))
      (node (ref R63) (pin 1)))
    (net (code 230) (name "/Config interface/FPGA_M0")
      (node (ref U13) (pin U11))
      (node (ref R37) (pin 1)))
    (net (code 231) (name "/Config interface/FPGA_DONE_INT")
      (node (ref LED13) (pin 2))
      (node (ref U13) (pin G11))
      (node (ref R39) (pin 2)))
    (net (code 232) (name "/Config interface/FPGA_JTAG_TDI")
      (node (ref R43) (pin 1))
      (node (ref SV1) (pin 4))
      (node (ref U13) (pin R13)))
    (net (code 233) (name "/Config interface/FPGA_M2")
      (node (ref U13) (pin U9))
      (node (ref R35) (pin 2)))
    (net (code 234) (name "Net-(U13_6-PadM9)")
      (node (ref U13_6) (pin M9)))
    (net (code 235) (name "Net-(U13_6-PadL10)")
      (node (ref U13_6) (pin L10)))
    (net (code 236) (name "Net-(U13_3-PadD6)")
      (node (ref U13_3) (pin D6)))
    (net (code 237) (name "Net-(U13_3-PadD10)")
      (node (ref U13_3) (pin D10)))
    (net (code 238) (name "Net-(U13_3-PadE8)")
      (node (ref U13_3) (pin E8)))
    (net (code 239) (name "Net-(U13_3-PadF7)")
      (node (ref U13_3) (pin F7)))
    (net (code 240) (name "Net-(U13_3-PadF9)")
      (node (ref U13_3) (pin F9)))
    (net (code 241) (name "Net-(U13_4-PadB5)")
      (node (ref U13_4) (pin B5)))
    (net (code 242) (name "Net-(U13_4-PadB7)")
      (node (ref U13_4) (pin B7)))
    (net (code 243) (name "Net-(U13_4-PadC8)")
      (node (ref U13_4) (pin C8)))
    (net (code 244) (name "Net-(U13_4-PadC4)")
      (node (ref U13_4) (pin C4)))
    (net (code 245) (name "Net-(U13_4-PadB9)")
      (node (ref U13_4) (pin B9)))
    (net (code 246) (name "Net-(U13_4-PadB11)")
      (node (ref U13_4) (pin B11)))
    (net (code 247) (name "Net-(U13_2-PadB8)")
      (node (ref U13_2) (pin B8)))
    (net (code 248) (name "Net-(U13_2-PadE6)")
      (node (ref U13_2) (pin E6)))
    (net (code 249) (name "Net-(U13_2-PadF6)")
      (node (ref U13_2) (pin F6)))
    (net (code 250) (name "Net-(U13_2-PadE10)")
      (node (ref U13_2) (pin E10)))
    (net (code 251) (name "Net-(U13_2-PadF10)")
      (node (ref U13_2) (pin F10)))
    (net (code 252) (name "Net-(U13_2-PadB4)")
      (node (ref U13_2) (pin B4)))
    (net (code 253) (name "Net-(U13_2-PadD5)")
      (node (ref U13_2) (pin D5)))
    (net (code 254) (name "Net-(U13_2-PadD7)")
      (node (ref U13_2) (pin D7)))
    (net (code 255) (name "Net-(U13_2-PadB6)")
      (node (ref U13_2) (pin B6)))
    (net (code 256) (name "Net-(U13_2-PadA4)")
      (node (ref U13_2) (pin A4)))
    (net (code 257) (name "Net-(U13_2-PadC5)")
      (node (ref U13_2) (pin C5)))
    (net (code 258) (name "Net-(U13_2-PadA6)")
      (node (ref U13_2) (pin A6)))
    (net (code 259) (name "Net-(U13_2-PadC7)")
      (node (ref U13_2) (pin C7)))
    (net (code 260) (name "Net-(U13_2-PadD9)")
      (node (ref U13_2) (pin D9)))
    (net (code 261) (name "Net-(U13_2-PadB10)")
      (node (ref U13_2) (pin B10)))
    (net (code 262) (name "Net-(U13_2-PadD11)")
      (node (ref U13_2) (pin D11)))
    (net (code 263) (name "Net-(U13_2-PadA8)")
      (node (ref U13_2) (pin A8)))
    (net (code 264) (name "Net-(U13_2-PadC9)")
      (node (ref U13_2) (pin C9)))
    (net (code 265) (name "Net-(U13_2-PadA10)")
      (node (ref U13_2) (pin A10)))
    (net (code 266) (name "Net-(U13_2-PadC11)")
      (node (ref U13_2) (pin C11)))
    (net (code 267) (name "Net-(U13_2-PadF8)")
      (node (ref U13_2) (pin F8)))
    (net (code 268) (name FPGA_VCCAUX_1V8)
      (node (ref C126) (pin 1))
      (node (ref FB5) (pin 2))
      (node (ref C136) (pin 1))
      (node (ref C132) (pin 1))
      (node (ref C143) (pin 1))
      (node (ref C159) (pin 1))
      (node (ref C155) (pin 1))
      (node (ref C151) (pin 1))
      (node (ref C147) (pin 1))
      (node (ref U13_15) (pin R11))
      (node (ref U13_15) (pin P12))
      (node (ref U13_15) (pin M12))
      (node (ref U13_15) (pin H12))
      (node (ref U13_15) (pin K12))
      (node (ref C139) (pin 1))
      (node (ref U13_6) (pin K10))
      (node (ref C109) (pin 1)))
    (net (code 269) (name FPGA_CFG_CTRL_FPGA_DIS)
      (node (ref U4_4) (pin 21))
      (node (ref JP7) (pin 3)))
    (net (code 270) (name "/Config memory/FPGA_PROM_W_N")
      (node (ref R50) (pin 2))
      (node (ref JP7) (pin 5))
      (node (ref IC3) (pin 3)))
    (net (code 271) (name FPGA_CFG_CTRL_ARM_ENA)
      (node (ref U4_4) (pin 27))
      (node (ref JP7) (pin 1)))
    (net (code 272) (name "/Config memory/FPGA_PROM_MISO")
      (node (ref IC2_2) (pin 17))
      (node (ref IC3) (pin 2))
      (node (ref IC2) (pin 8)))
    (net (code 273) (name "/Config memory/FPGA_PROM_SCLK")
      (node (ref IC2) (pin 16))
      (node (ref IC3) (pin 6))
      (node (ref IC2_2) (pin 7)))
    (net (code 274) (name ARM_FPGA_CFG_MISO)
      (node (ref U4_4) (pin 106))
      (node (ref IC2) (pin 12)))
    (net (code 275) (name FPGA_CFG_MOSI)
      (node (ref IC2_2) (pin 15))
      (node (ref R83) (pin 1)))
    (net (code 276) (name FPGA_CFG_CS_N)
      (node (ref IC2_2) (pin 11))
      (node (ref R85) (pin 1)))
    (net (code 277) (name FPGA_CFG_MISO)
      (node (ref R84) (pin 1))
      (node (ref IC2_2) (pin 3)))
    (net (code 278) (name ARM_FPGA_CFG_CS_N)
      (node (ref IC2) (pin 2))
      (node (ref U4_4) (pin 104)))
    (net (code 279) (name ARM_FPGA_CFG_MOSI)
      (node (ref IC2) (pin 6))
      (node (ref U4_4) (pin 107)))
    (net (code 280) (name ARM_FPGA_CFG_SCLK)
      (node (ref IC2) (pin 4))
      (node (ref U4_4) (pin 105)))
    (net (code 281) (name "/Config memory/SPI_A_TRISTATE")
      (node (ref JP7) (pin 2))
      (node (ref IC2) (pin 1))
      (node (ref R46) (pin 1)))
    (net (code 282) (name "Net-(Q5-Pad3)")
      (node (ref Q5) (pin 3))
      (node (ref R4) (pin 2)))
    (net (code 283) (name "/Config memory/SPI_B_TRISTATE")
      (node (ref R47) (pin 1))
      (node (ref JP7) (pin 4))
      (node (ref IC2_2) (pin 19)))
    (net (code 284) (name FPGA_GCLK)
      (node (ref R4) (pin 1))
      (node (ref U13_11) (pin D17)))
    (net (code 285) (name "Net-(Q5-Pad1)")
      (node (ref Q5) (pin 1))
      (node (ref R49) (pin 1)))
    (net (code 286) (name "/Config memory/FPGA_PROM_CS_N")
      (node (ref R51) (pin 1))
      (node (ref IC2) (pin 18))
      (node (ref IC3) (pin 1))
      (node (ref IC2_2) (pin 9)))
    (net (code 287) (name "/Config memory/FPGA_PROM_MOSI")
      (node (ref IC3) (pin 5))
      (node (ref IC2) (pin 14))
      (node (ref IC2_2) (pin 5)))
    (net (code 288) (name "Net-(U13_7-PadH19)")
      (node (ref U13_7) (pin H19)))
    (net (code 289) (name "Net-(U13_7-PadJ19)")
      (node (ref U13_7) (pin J19)))
    (net (code 290) (name "Net-(U13_7-PadJ20)")
      (node (ref U13_7) (pin J20)))
    (net (code 291) (name "Net-(U13_7-PadJ21)")
      (node (ref U13_7) (pin J21)))
    (net (code 292) (name "Net-(U13_7-PadL21)")
      (node (ref U13_7) (pin L21)))
    (net (code 293) (name "Net-(U13_7-PadM21)")
      (node (ref U13_7) (pin M21)))
    (net (code 294) (name "Net-(U13_7-PadK22)")
      (node (ref U13_7) (pin K22)))
    (net (code 295) (name "Net-(U13_7-PadK21)")
      (node (ref U13_7) (pin K21)))
    (net (code 296) (name "Net-(U13_7-PadH20)")
      (node (ref U13_7) (pin H20)))
    (net (code 297) (name "Net-(U13_7-PadG20)")
      (node (ref U13_7) (pin G20)))
    (net (code 298) (name "Net-(U13_7-PadH22)")
      (node (ref U13_7) (pin H22)))
    (net (code 299) (name "Net-(U13_7-PadH18)")
      (node (ref U13_7) (pin H18)))
    (net (code 300) (name "Net-(U13_7-PadH17)")
      (node (ref U13_7) (pin H17)))
    (net (code 301) (name "Net-(U13_7-PadH15)")
      (node (ref U13_7) (pin H15)))
    (net (code 302) (name "Net-(U13_7-PadJ15)")
      (node (ref U13_7) (pin J15)))
    (net (code 303) (name "Net-(U13_7-PadK18)")
      (node (ref U13_7) (pin K18)))
    (net (code 304) (name "Net-(U13_7-PadK19)")
      (node (ref U13_7) (pin K19)))
    (net (code 305) (name "Net-(U13_7-PadL19)")
      (node (ref U13_7) (pin L19)))
    (net (code 306) (name "Net-(U13_7-PadL20)")
      (node (ref U13_7) (pin L20)))
    (net (code 307) (name "Net-(U13_7-PadN22)")
      (node (ref U13_7) (pin N22)))
    (net (code 308) (name "Net-(U13_7-PadM22)")
      (node (ref U13_7) (pin M22)))
    (net (code 309) (name "Net-(U13_7-PadM18)")
      (node (ref U13_7) (pin M18)))
    (net (code 310) (name "Net-(U13_7-PadL18)")
      (node (ref U13_7) (pin L18)))
    (net (code 311) (name "Net-(U13_8-PadF4)")
      (node (ref U13_8) (pin F4)))
    (net (code 312) (name "Net-(U13_8-PadB1)")
      (node (ref U13_8) (pin B1)))
    (net (code 313) (name "Net-(U13_8-PadA1)")
      (node (ref U13_8) (pin A1)))
    (net (code 314) (name "Net-(U13_8-PadC2)")
      (node (ref U13_8) (pin C2)))
    (net (code 315) (name "Net-(U13_8-PadB2)")
      (node (ref U13_8) (pin B2)))
    (net (code 316) (name "Net-(U13_8-PadE1)")
      (node (ref U13_8) (pin E1)))
    (net (code 317) (name "Net-(U13_8-PadD1)")
      (node (ref U13_8) (pin D1)))
    (net (code 318) (name "Net-(U13_8-PadN5)")
      (node (ref U13_8) (pin N5)))
    (net (code 319) (name "Net-(U13_8-PadL4)")
      (node (ref U13_8) (pin L4)))
    (net (code 320) (name "Net-(U13_7-PadJ22)")
      (node (ref U13_7) (pin J22)))
    (net (code 321) (name "Net-(U13_8-PadL5)")
      (node (ref U13_8) (pin L5)))
    (net (code 322) (name "Net-(U13_8-PadL6)")
      (node (ref U13_8) (pin L6)))
    (net (code 323) (name "Net-(U13_8-PadM1)")
      (node (ref U13_8) (pin M1)))
    (net (code 324) (name "Net-(U13_8-PadM2)")
      (node (ref U13_8) (pin M2)))
    (net (code 325) (name "Net-(U13_8-PadM3)")
      (node (ref U13_8) (pin M3)))
    (net (code 326) (name "Net-(U13_8-PadM5)")
      (node (ref U13_8) (pin M5)))
    (net (code 327) (name "Net-(U13_8-PadM6)")
      (node (ref U13_8) (pin M6)))
    (net (code 328) (name "Net-(U13_8-PadN2)")
      (node (ref U13_8) (pin N2)))
    (net (code 329) (name "Net-(U13_8-PadN3)")
      (node (ref U13_8) (pin N3)))
    (net (code 330) (name "Net-(U13_8-PadN4)")
      (node (ref U13_8) (pin N4)))
    (net (code 331) (name "Net-(U13_7-PadG18)")
      (node (ref U13_7) (pin G18)))
    (net (code 332) (name "Net-(U13_8-PadP1)")
      (node (ref U13_8) (pin P1)))
    (net (code 333) (name "Net-(U13_8-PadP2)")
      (node (ref U13_8) (pin P2)))
    (net (code 334) (name "Net-(U13_8-PadP4)")
      (node (ref U13_8) (pin P4)))
    (net (code 335) (name "Net-(U13_8-PadP5)")
      (node (ref U13_8) (pin P5)))
    (net (code 336) (name "Net-(U13_8-PadP6)")
      (node (ref U13_8) (pin P6)))
    (net (code 337) (name "Net-(U13_8-PadR1)")
      (node (ref U13_8) (pin R1)))
    (net (code 338) (name "Net-(U13_7-PadJ16)")
      (node (ref U13_7) (pin J16)))
    (net (code 339) (name "Net-(U13_7-PadH13)")
      (node (ref U13_7) (pin H13)))
    (net (code 340) (name "Net-(U13_7-PadG13)")
      (node (ref U13_7) (pin G13)))
    (net (code 341) (name "Net-(U13_7-PadG15)")
      (node (ref U13_7) (pin G15)))
    (net (code 342) (name "Net-(U13_7-PadG16)")
      (node (ref U13_7) (pin G16)))
    (net (code 343) (name "Net-(U13_7-PadJ14)")
      (node (ref U13_7) (pin J14)))
    (net (code 344) (name "Net-(U13_7-PadH14)")
      (node (ref U13_7) (pin H14)))
    (net (code 345) (name "Net-(U13_7-PadG17)")
      (node (ref U13_7) (pin G17)))
    (net (code 346) (name "Net-(U13_7-PadN20)")
      (node (ref U13_7) (pin N20)))
    (net (code 347) (name "Net-(U13_7-PadN18)")
      (node (ref U13_7) (pin N18)))
    (net (code 348) (name "Net-(U13_7-PadN19)")
      (node (ref U13_7) (pin N19)))
    (net (code 349) (name "Net-(U13_7-PadM20)")
      (node (ref U13_7) (pin M20)))
    (net (code 350) (name "Net-(U13_7-PadK13)")
      (node (ref U13_7) (pin K13)))
    (net (code 351) (name "Net-(U13_7-PadK14)")
      (node (ref U13_7) (pin K14)))
    (net (code 352) (name "Net-(U13_7-PadM13)")
      (node (ref U13_7) (pin M13)))
    (net (code 353) (name "Net-(U13_7-PadJ17)")
      (node (ref U13_7) (pin J17)))
    (net (code 354) (name "Net-(U13_7-PadL13)")
      (node (ref U13_7) (pin L13)))
    (net (code 355) (name "Net-(U13_7-PadK17)")
      (node (ref U13_7) (pin K17)))
    (net (code 356) (name "Net-(U13_7-PadL14)")
      (node (ref U13_7) (pin L14)))
    (net (code 357) (name "Net-(U13_7-PadL15)")
      (node (ref U13_7) (pin L15)))
    (net (code 358) (name "Net-(U13_7-PadL16)")
      (node (ref U13_7) (pin L16)))
    (net (code 359) (name "Net-(U13_7-PadK16)")
      (node (ref U13_7) (pin K16)))
    (net (code 360) (name "Net-(U13_7-PadM15)")
      (node (ref U13_7) (pin M15)))
    (net (code 361) (name "Net-(U13_7-PadM16)")
      (node (ref U13_7) (pin M16)))
    (net (code 362) (name "Net-(U13_7-PadM17)")
      (node (ref U13_7) (pin M17)))
    (net (code 363) (name "Net-(U13_8-PadG3)")
      (node (ref U13_8) (pin G3)))
    (net (code 364) (name "Net-(U13_8-PadD2)")
      (node (ref U13_8) (pin D2)))
    (net (code 365) (name "Net-(U13_8-PadG1)")
      (node (ref U13_8) (pin G1)))
    (net (code 366) (name "Net-(U13_8-PadF1)")
      (node (ref U13_8) (pin F1)))
    (net (code 367) (name "Net-(U13_8-PadF3)")
      (node (ref U13_8) (pin F3)))
    (net (code 368) (name "Net-(U13_8-PadE3)")
      (node (ref U13_8) (pin E3)))
    (net (code 369) (name "Net-(U13_8-PadK1)")
      (node (ref U13_8) (pin K1)))
    (net (code 370) (name "Net-(U13_8-PadJ1)")
      (node (ref U13_8) (pin J1)))
    (net (code 371) (name "Net-(U13_8-PadH2)")
      (node (ref U13_8) (pin H2)))
    (net (code 372) (name "Net-(U13_8-PadG2)")
      (node (ref U13_8) (pin G2)))
    (net (code 373) (name "Net-(U13_8-PadK2)")
      (node (ref U13_8) (pin K2)))
    (net (code 374) (name "Net-(U13_8-PadJ2)")
      (node (ref U13_8) (pin J2)))
    (net (code 375) (name "Net-(U13_8-PadJ5)")
      (node (ref U13_8) (pin J5)))
    (net (code 376) (name "Net-(U13_8-PadH5)")
      (node (ref U13_8) (pin H5)))
    (net (code 377) (name "Net-(U13_8-PadH3)")
      (node (ref U13_8) (pin H3)))
    (net (code 378) (name "Net-(U13_8-PadE2)")
      (node (ref U13_8) (pin E2)))
    (net (code 379) (name "Net-(U13_8-PadG4)")
      (node (ref U13_8) (pin G4)))
    (net (code 380) (name "Net-(U13_8-PadH4)")
      (node (ref U13_8) (pin H4)))
    (net (code 381) (name "Net-(U13_8-PadK4)")
      (node (ref U13_8) (pin K4)))
    (net (code 382) (name "Net-(U13_8-PadL3)")
      (node (ref U13_8) (pin L3)))
    (net (code 383) (name "Net-(U13_8-PadJ4)")
      (node (ref U13_8) (pin J4)))
    (net (code 384) (name "Net-(U13_8-PadK3)")
      (node (ref U13_8) (pin K3)))
    (net (code 385) (name "Net-(U13_8-PadL1)")
      (node (ref U13_8) (pin L1)))
    (net (code 386) (name "Net-(U13_8-PadK6)")
      (node (ref U13_8) (pin K6)))
    (net (code 387) (name "Net-(U13_8-PadJ6)")
      (node (ref U13_8) (pin J6)))
    (net (code 388) (name "Net-(U13_9-PadV15)")
      (node (ref U13_9) (pin V15)))
    (net (code 389) (name "Net-(U13_9-PadV10)")
      (node (ref U13_9) (pin V10)))
    (net (code 390) (name "Net-(U13_9-PadU16)")
      (node (ref U13_9) (pin U16)))
    (net (code 391) (name "Net-(U13_9-PadU15)")
      (node (ref U13_9) (pin U15)))
    (net (code 392) (name "Net-(U13_9-PadT16)")
      (node (ref U13_9) (pin T16)))
    (net (code 393) (name "Net-(U13_9-PadT15)")
      (node (ref U13_9) (pin T15)))
    (net (code 394) (name "Net-(U13_9-PadT14)")
      (node (ref U13_9) (pin T14)))
    (net (code 395) (name FMC_NOE)
      (node (ref U4_3) (pin 168))
      (node (ref U13_9) (pin W16)))
    (net (code 396) (name "Net-(U13_9-PadW15)")
      (node (ref U13_9) (pin W15)))
    (net (code 397) (name "Net-(U13_9-PadAA10)")
      (node (ref U13_9) (pin AA10)))
    (net (code 398) (name FMC_NE1)
      (node (ref U4_3) (pin 173))
      (node (ref U13_10) (pin V5)))
    (net (code 399) (name "Net-(U13_10-PadY2)")
      (node (ref U13_10) (pin Y2)))
    (net (code 400) (name "Net-(U13_10-PadV7)")
      (node (ref U13_10) (pin V7)))
    (net (code 401) (name "Net-(U13_10-PadT6)")
      (node (ref U13_10) (pin T6)))
    (net (code 402) (name "Net-(U13_10-PadR6)")
      (node (ref U13_10) (pin R6)))
    (net (code 403) (name "Net-(U13_10-PadU6)")
      (node (ref U13_10) (pin U6)))
    (net (code 404) (name "Net-(U13_10-PadW5)")
      (node (ref U13_10) (pin W5)))
    (net (code 405) (name "Net-(U13_10-PadW6)")
      (node (ref U13_10) (pin W6)))
    (net (code 406) (name "Net-(U13_10-PadU5)")
      (node (ref U13_10) (pin U5)))
    (net (code 407) (name "Net-(U13_10-PadT5)")
      (node (ref U13_10) (pin T5)))
    (net (code 408) (name "Net-(U13_10-PadT4)")
      (node (ref U13_10) (pin T4)))
    (net (code 409) (name "Net-(U13_10-PadW4)")
      (node (ref U13_10) (pin W4)))
    (net (code 410) (name "Net-(U13_10-PadW7)")
      (node (ref U13_10) (pin W7)))
    (net (code 411) (name "Net-(U13_10-PadR2)")
      (node (ref U13_10) (pin R2)))
    (net (code 412) (name "Net-(U13_10-PadR3)")
      (node (ref U13_10) (pin R3)))
    (net (code 413) (name "Net-(U13_10-PadY9)")
      (node (ref U13_10) (pin Y9)))
    (net (code 414) (name "Net-(U13_10-PadY8)")
      (node (ref U13_10) (pin Y8)))
    (net (code 415) (name "Net-(U13_9-PadV14)")
      (node (ref U13_9) (pin V14)))
    (net (code 416) (name "Net-(U13_9-PadV13)")
      (node (ref U13_9) (pin V13)))
    (net (code 417) (name "Net-(U13_10-PadU7)")
      (node (ref U13_10) (pin U7)))
    (net (code 418) (name "Net-(U13_10-PadW9)")
      (node (ref U13_10) (pin W9)))
    (net (code 419) (name "Net-(U13_10-PadV9)")
      (node (ref U13_10) (pin V9)))
    (net (code 420) (name "Net-(U13_10-PadV8)")
      (node (ref U13_10) (pin V8)))
    (net (code 421) (name "Net-(U13_10-PadT3)")
      (node (ref U13_10) (pin T3)))
    (net (code 422) (name FPGA_GPIO_LED_1)
      (node (ref R64) (pin 2))
      (node (ref U13_10) (pin T1)))
    (net (code 423) (name FPGA_GPIO_LED_0)
      (node (ref U13_10) (pin U3))
      (node (ref R100) (pin 2)))
    (net (code 424) (name FMC_NWAIT)
      (node (ref U4_3) (pin 172))
      (node (ref U13_10) (pin Y6)))
    (net (code 425) (name FMC_NWE)
      (node (ref U4_3) (pin 169))
      (node (ref U13_10) (pin AA6)))
    (net (code 426) (name FMC_CLK)
      (node (ref U13_9) (pin W11))
      (node (ref U4_3) (pin 167)))
    (net (code 427) (name "Net-(U4_4-Pad118)")
      (node (ref U4_4) (pin 118)))
    (net (code 428) (name "Net-(U4_4-Pad10)")
      (node (ref U4_4) (pin 10)))
    (net (code 429) (name "Net-(U4_4-Pad166)")
      (node (ref U4_4) (pin 166)))
    (net (code 430) (name "Net-(U4_4-Pad9)")
      (node (ref U4_4) (pin 9)))
    (net (code 431) (name "Net-(U4_4-Pad8)")
      (node (ref U4_4) (pin 8)))
    (net (code 432) (name "Net-(U4_4-Pad139)")
      (node (ref U4_4) (pin 139)))
    (net (code 433) (name "Net-(U4_4-Pad138)")
      (node (ref U4_4) (pin 138)))
    (net (code 434) (name "Net-(U4_4-Pad58)")
      (node (ref U4_4) (pin 58)))
    (net (code 435) (name "Net-(U4_4-Pad57)")
      (node (ref U4_4) (pin 57)))
    (net (code 436) (name "Net-(U4_4-Pad36)")
      (node (ref U4_4) (pin 36)))
    (net (code 437) (name "Net-(U4_4-Pad199)")
      (node (ref U4_4) (pin 199)))
    (net (code 438) (name "Net-(U4_4-Pad198)")
      (node (ref U4_4) (pin 198)))
    (net (code 439) (name "Net-(U4_4-Pad62)")
      (node (ref U4_4) (pin 62)))
    (net (code 440) (name "Net-(U4_4-Pad162)")
      (node (ref U4_4) (pin 162)))
    (net (code 441) (name "Net-(U4_4-Pad161)")
      (node (ref U4_4) (pin 161)))
    (net (code 442) (name "Net-(U4_4-Pad141)")
      (node (ref U4_4) (pin 141)))
    (net (code 443) (name "Net-(U4_4-Pad140)")
      (node (ref U4_4) (pin 140)))
    (net (code 444) (name "Net-(U4_4-Pad163)")
      (node (ref U4_4) (pin 163)))
    (net (code 445) (name "Net-(U4_4-Pad95)")
      (node (ref U4_4) (pin 95)))
    (net (code 446) (name "Net-(U4_4-Pad7)")
      (node (ref U4_4) (pin 7)))
    (net (code 447) (name "Net-(U4_4-Pad69)")
      (node (ref U4_4) (pin 69)))
    (net (code 448) (name "Net-(U4_4-Pad68)")
      (node (ref U4_4) (pin 68)))
    (net (code 449) (name "Net-(U4_4-Pad67)")
      (node (ref U4_4) (pin 67)))
    (net (code 450) (name "Net-(U4_4-Pad66)")
      (node (ref U4_4) (pin 66)))
    (net (code 451) (name "Net-(U4_4-Pad65)")
      (node (ref U4_4) (pin 65)))
    (net (code 452) (name "Net-(U4_4-Pad64)")
      (node (ref U4_4) (pin 64)))
    (net (code 453) (name "Net-(U4_4-Pad20)")
      (node (ref U4_4) (pin 20)))
    (net (code 454) (name "Net-(U4_4-Pad28)")
      (node (ref U4_4) (pin 28)))
    (net (code 455) (name "Net-(U4_4-Pad29)")
      (node (ref U4_4) (pin 29)))
    (net (code 456) (name "Net-(U4_4-Pad30)")
      (node (ref U4_4) (pin 30)))
    (net (code 457) (name "Net-(U4_4-Pad31)")
      (node (ref U4_4) (pin 31)))
    (net (code 458) (name "Net-(U4_4-Pad133)")
      (node (ref U4_4) (pin 133)))
    (net (code 459) (name "Net-(U4_4-Pad134)")
      (node (ref U4_4) (pin 134)))
    (net (code 460) (name "Net-(U4_4-Pad178)")
      (node (ref U4_4) (pin 178)))
    (net (code 461) (name "Net-(U4_4-Pad179)")
      (node (ref U4_4) (pin 179)))
    (net (code 462) (name "Net-(U4_4-Pad180)")
      (node (ref U4_4) (pin 180)))
    (net (code 463) (name "Net-(U4_4-Pad181)")
      (node (ref U4_4) (pin 181)))
    (net (code 464) (name "Net-(U4_4-Pad46)")
      (node (ref U4_4) (pin 46)))
    (net (code 465) (name "Net-(U4_4-Pad13)")
      (node (ref U4_4) (pin 13)))
    (net (code 466) (name "Net-(U4_4-Pad19)")
      (node (ref U4_4) (pin 19)))
    (net (code 467) (name "Net-(U4_4-Pad121)")
      (node (ref U4_4) (pin 121)))
    (net (code 468) (name "Net-(U4_4-Pad176)")
      (node (ref U4_4) (pin 176)))
    (net (code 469) (name "Net-(U4_4-Pad126)")
      (node (ref U4_4) (pin 126)))
    (net (code 470) (name "Net-(U4_4-Pad127)")
      (node (ref U4_4) (pin 127)))
    (net (code 471) (name "Net-(U4_4-Pad128)")
      (node (ref U4_4) (pin 128)))
    (net (code 472) (name "Net-(U4_4-Pad186)")
      (node (ref U4_4) (pin 186)))
    (net (code 473) (name FMC_A23)
      (node (ref U13_12) (pin Y22))
      (node (ref U4_3) (pin 1)))
    (net (code 474) (name FMC_A25)
      (node (ref U13_12) (pin AA19))
      (node (ref U4_3) (pin 183)))
    (net (code 475) (name FMC_A24)
      (node (ref U13_12) (pin AB18))
      (node (ref U4_3) (pin 182)))
    (net (code 476) (name FMC_A22)
      (node (ref U13_12) (pin Y21))
      (node (ref U4_3) (pin 5)))
    (net (code 477) (name FMC_A21)
      (node (ref U4_3) (pin 4))
      (node (ref U13_12) (pin AB20)))
    (net (code 478) (name FMC_A20)
      (node (ref U13_12) (pin AB22))
      (node (ref U4_3) (pin 3)))
    (net (code 479) (name FMC_A19)
      (node (ref U13_12) (pin AB21))
      (node (ref U4_3) (pin 2)))
    (net (code 480) (name FMC_NL)
      (node (ref U13_12) (pin W17))
      (node (ref U4_3) (pin 196)))
    (net (code 481) (name FPGA_IRQ_N_3)
      (node (ref U4_4) (pin 175))
      (node (ref U13_11) (pin C14)))
    (net (code 482) (name FPGA_IRQ_N_2)
      (node (ref U4_4) (pin 174))
      (node (ref U13_11) (pin E17)))
    (net (code 483) (name FPGA_IRQ_N_1)
      (node (ref U4_4) (pin 123))
      (node (ref U13_11) (pin F16)))
    (net (code 484) (name FPGA_IRQ_N_0)
      (node (ref U13_11) (pin F14))
      (node (ref U4_4) (pin 122)))
    (net (code 485) (name "Net-(U14-Pad1)")
      (node (ref U14) (pin 34))
      (node (ref U14) (pin 35))
      (node (ref U14) (pin 36))
      (node (ref U14) (pin 37))
      (node (ref U14) (pin 38))
      (node (ref U14) (pin 4))
      (node (ref U14) (pin 2))
      (node (ref U14) (pin 22))
      (node (ref U14) (pin 23))
      (node (ref U14) (pin 12))
      (node (ref U14) (pin 1))
      (node (ref U14) (pin 25))
      (node (ref U14) (pin 3))
      (node (ref U14) (pin 24)))
    (net (code 486) (name "Net-(R53-Pad2)")
      (node (ref R53) (pin 2))
      (node (ref U14) (pin 29)))
    (net (code 487) (name PWR_ENA_VCCO)
      (node (ref C212) (pin 1))
      (node (ref R74) (pin 2))
      (node (ref D3) (pin 1))
      (node (ref U15) (pin 27)))
    (net (code 488) (name "Net-(C118-Pad2)")
      (node (ref U15) (pin 31))
      (node (ref R58) (pin 1))
      (node (ref R59) (pin 2))
      (node (ref C118) (pin 2)))
    (net (code 489) (name "Net-(C115-Pad1)")
      (node (ref U14) (pin 30))
      (node (ref C115) (pin 1)))
    (net (code 490) (name "Net-(R54-Pad1)")
      (node (ref U15) (pin 26))
      (node (ref R54) (pin 1)))
    (net (code 491) (name "Net-(C117-Pad2)")
      (node (ref U14) (pin 31))
      (node (ref C117) (pin 2))
      (node (ref R56) (pin 1))
      (node (ref R57) (pin 2)))
    (net (code 492) (name "Net-(R52-Pad1)")
      (node (ref R52) (pin 1))
      (node (ref U14) (pin 26)))
    (net (code 493) (name "Net-(U15-Pad1)")
      (node (ref U15) (pin 2))
      (node (ref U15) (pin 22))
      (node (ref U15) (pin 23))
      (node (ref U15) (pin 4))
      (node (ref U15) (pin 37))
      (node (ref U15) (pin 38))
      (node (ref U15) (pin 36))
      (node (ref U15) (pin 35))
      (node (ref U15) (pin 34))
      (node (ref U15) (pin 12))
      (node (ref U15) (pin 25))
      (node (ref U15) (pin 3))
      (node (ref U15) (pin 24))
      (node (ref U15) (pin 1)))
    (net (code 494) (name "Net-(C117-Pad1)")
      (node (ref R60) (pin 2))
      (node (ref C117) (pin 1))
      (node (ref R56) (pin 2))
      (node (ref U14) (pin 11))
      (node (ref U14) (pin 10))
      (node (ref C119) (pin 1))
      (node (ref U14) (pin 8))
      (node (ref FB5) (pin 1))
      (node (ref U14) (pin 9))
      (node (ref U14) (pin 7))
      (node (ref U14) (pin 6))
      (node (ref U14) (pin 5)))
    (net (code 495) (name "Net-(C116-Pad1)")
      (node (ref C116) (pin 1))
      (node (ref U15) (pin 30)))
    (net (code 496) (name "Net-(R55-Pad2)")
      (node (ref U15) (pin 29))
      (node (ref R55) (pin 2)))
    (net (code 497) (name "Net-(C118-Pad1)")
      (node (ref R61) (pin 2))
      (node (ref FB6) (pin 1))
      (node (ref U15) (pin 10))
      (node (ref C118) (pin 1))
      (node (ref U15) (pin 5))
      (node (ref U15) (pin 6))
      (node (ref U15) (pin 9))
      (node (ref U15) (pin 8))
      (node (ref C120) (pin 1))
      (node (ref U15) (pin 7))
      (node (ref R58) (pin 2))
      (node (ref U15) (pin 11)))
    (net (code 498) (name POK_VCCO)
      (node (ref U15) (pin 28))
      (node (ref R77) (pin 1))
      (node (ref Q6) (pin 1)))
    (net (code 499) (name POK_VCCAUX)
      (node (ref D3) (pin 3))
      (node (ref R74) (pin 1))
      (node (ref R73) (pin 1))
      (node (ref U14) (pin 28)))
    (net (code 500) (name PWR_ENA_VCCAUX)
      (node (ref D4) (pin 1))
      (node (ref R76) (pin 2))
      (node (ref C213) (pin 1))
      (node (ref U14) (pin 27)))
    (net (code 501) (name "Net-(LED17-Pad1)")
      (node (ref R100) (pin 1))
      (node (ref LED17) (pin 1)))
    (net (code 502) (name FPGA_GPIO_A_2)
      (node (ref SV2) (pin 9))
      (node (ref U13_11) (pin A13)))
    (net (code 503) (name "Net-(LED14-Pad1)")
      (node (ref LED14) (pin 1))
      (node (ref R99) (pin 1)))
    (net (code 504) (name "Net-(LED16-Pad1)")
      (node (ref R98) (pin 1))
      (node (ref LED16) (pin 1)))
    (net (code 505) (name "Net-(LED15-Pad1)")
      (node (ref R64) (pin 1))
      (node (ref LED15) (pin 1)))
    (net (code 506) (name FPGA_GPIO_B_0)
      (node (ref SV3) (pin 7))
      (node (ref U13_11) (pin A16)))
    (net (code 507) (name FPGA_GPIO_LED_3)
      (node (ref U13_12) (pin AA20))
      (node (ref R99) (pin 2)))
    (net (code 508) (name FPGA_GPIO_LED_2)
      (node (ref R98) (pin 2))
      (node (ref U13_12) (pin W22)))
    (net (code 509) (name FPGA_GPIO_A_5)
      (node (ref SV2) (pin 14))
      (node (ref U13_11) (pin B13)))
    (net (code 510) (name FPGA_GPIO_B_5)
      (node (ref SV3) (pin 14))
      (node (ref U13_11) (pin A21)))
    (net (code 511) (name "Net-(U13_11-PadF20)")
      (node (ref U13_11) (pin F20)))
    (net (code 512) (name "Net-(U13_11-PadB17)")
      (node (ref U13_11) (pin B17)))
    (net (code 513) (name "Net-(U13_11-PadD16)")
      (node (ref U13_11) (pin D16)))
    (net (code 514) (name "Net-(U13_11-PadE16)")
      (node (ref U13_11) (pin E16)))
    (net (code 515) (name "Net-(U13_11-PadF13)")
      (node (ref U13_11) (pin F13)))
    (net (code 516) (name "Net-(U13_11-PadF15)")
      (node (ref U13_11) (pin F15)))
    (net (code 517) (name "Net-(U13_11-PadG22)")
      (node (ref U13_11) (pin G22)))
    (net (code 518) (name "Net-(U13_11-PadG21)")
      (node (ref U13_11) (pin G21)))
    (net (code 519) (name "Net-(U13_11-PadF21)")
      (node (ref U13_11) (pin F21)))
    (net (code 520) (name "Net-(U13_11-PadC17)")
      (node (ref U13_11) (pin C17)))
    (net (code 521) (name "Net-(U13_11-PadF19)")
      (node (ref U13_11) (pin F19)))
    (net (code 522) (name "Net-(U13_11-PadF18)")
      (node (ref U13_11) (pin F18)))
    (net (code 523) (name "Net-(U13_11-PadE22)")
      (node (ref U13_11) (pin E22)))
    (net (code 524) (name "Net-(U13_11-PadE21)")
      (node (ref U13_11) (pin E21)))
    (net (code 525) (name "Net-(U13_11-PadE19)")
      (node (ref U13_11) (pin E19)))
    (net (code 526) (name "Net-(U13_11-PadB22)")
      (node (ref U13_11) (pin B22)))
    (net (code 527) (name "Net-(U13_11-PadD15)")
      (node (ref U13_11) (pin D15)))
    (net (code 528) (name "Net-(U13_11-PadD21)")
      (node (ref U13_11) (pin D21)))
    (net (code 529) (name "Net-(U13_11-PadD22)")
      (node (ref U13_11) (pin D22)))
    (net (code 530) (name "Net-(U13_11-PadB21)")
      (node (ref U13_11) (pin B21)))
    (net (code 531) (name "Net-(U13_11-PadE18)")
      (node (ref U13_11) (pin E18)))
    (net (code 532) (name "Net-(U13_11-PadD20)")
      (node (ref U13_11) (pin D20)))
    (net (code 533) (name "Net-(U13_11-PadD19)")
      (node (ref U13_11) (pin D19)))
    (net (code 534) (name "Net-(U13_11-PadC19)")
      (node (ref U13_11) (pin C19)))
    (net (code 535) (name FPGA_GPIO_B_7)
      (node (ref U13_11) (pin C22))
      (node (ref SV3) (pin 16)))
    (net (code 536) (name FPGA_GPIO_B_2)
      (node (ref U13_11) (pin B16))
      (node (ref SV3) (pin 9)))
    (net (code 537) (name FPGA_GPIO_B_1)
      (node (ref SV3) (pin 8))
      (node (ref U13_11) (pin C15)))
    (net (code 538) (name FPGA_GPIO_A_7)
      (node (ref U13_11) (pin B15))
      (node (ref SV2) (pin 16)))
    (net (code 539) (name FPGA_GPIO_A_6)
      (node (ref SV2) (pin 15))
      (node (ref U13_11) (pin A15)))
    (net (code 540) (name FPGA_GPIO_B_6)
      (node (ref SV3) (pin 15))
      (node (ref U13_11) (pin C20)))
    (net (code 541) (name FPGA_GPIO_B_4)
      (node (ref SV3) (pin 13))
      (node (ref U13_11) (pin C18)))
    (net (code 542) (name FPGA_GPIO_B_3)
      (node (ref SV3) (pin 10))
      (node (ref U13_11) (pin D14)))
    (net (code 543) (name FPGA_GPIO_A_0)
      (node (ref SV2) (pin 7))
      (node (ref U13_11) (pin E14)))
    (net (code 544) (name FPGA_GPIO_A_4)
      (node (ref U13_11) (pin C13))
      (node (ref SV2) (pin 13)))
    (net (code 545) (name FPGA_GPIO_A_3)
      (node (ref U13_11) (pin A14))
      (node (ref SV2) (pin 10)))
    (net (code 546) (name FPGA_GPIO_A_1)
      (node (ref U13_11) (pin E13))
      (node (ref SV2) (pin 8)))
    (net (code 547) (name "Net-(U13_12-PadT18)")
      (node (ref U13_12) (pin T18)))
    (net (code 548) (name "Net-(U13_12-PadR19)")
      (node (ref U13_12) (pin R19)))
    (net (code 549) (name "Net-(U13_12-PadR18)")
      (node (ref U13_12) (pin R18)))
    (net (code 550) (name "Net-(U13_12-PadR17)")
      (node (ref U13_12) (pin R17)))
    (net (code 551) (name "Net-(U13_12-PadR16)")
      (node (ref U13_12) (pin R16)))
    (net (code 552) (name "Net-(U13_12-PadR14)")
      (node (ref U13_12) (pin R14)))
    (net (code 553) (name "Net-(U13_12-PadT20)")
      (node (ref U13_12) (pin T20)))
    (net (code 554) (name "Net-(U13_12-PadT21)")
      (node (ref U13_12) (pin T21)))
    (net (code 555) (name "Net-(U13_12-PadU17)")
      (node (ref U13_12) (pin U17)))
    (net (code 556) (name "Net-(U13_12-PadU18)")
      (node (ref U13_12) (pin U18)))
    (net (code 557) (name "Net-(U13_12-PadU21)")
      (node (ref U13_12) (pin U21)))
    (net (code 558) (name "Net-(R65-Pad1)")
      (node (ref U13_12) (pin U22))
      (node (ref R65) (pin 1)))
    (net (code 559) (name "Net-(U13_12-PadV17)")
      (node (ref U13_12) (pin V17)))
    (net (code 560) (name "Net-(U13_12-PadN13)")
      (node (ref U13_12) (pin N13)))
    (net (code 561) (name "Net-(U13_12-PadN14)")
      (node (ref U13_12) (pin N14)))
    (net (code 562) (name "Net-(U13_12-PadN17)")
      (node (ref U13_12) (pin N17)))
    (net (code 563) (name "Net-(U13_12-PadP14)")
      (node (ref U13_12) (pin P14)))
    (net (code 564) (name "Net-(U13_12-PadP15)")
      (node (ref U13_12) (pin P15)))
    (net (code 565) (name "Net-(U13_12-PadP16)")
      (node (ref U13_12) (pin P16)))
    (net (code 566) (name "Net-(U13_12-PadP17)")
      (node (ref U13_12) (pin P17)))
    (net (code 567) (name "Net-(U13_12-PadP19)")
      (node (ref U13_12) (pin P19)))
    (net (code 568) (name "Net-(U13_12-PadP20)")
      (node (ref U13_12) (pin P20)))
    (net (code 569) (name "Net-(U13_12-PadV19)")
      (node (ref U13_12) (pin V19)))
    (net (code 570) (name "Net-(U13_12-PadAA18)")
      (node (ref U13_12) (pin AA18)))
    (net (code 571) (name "Net-(U13_12-PadY19)")
      (node (ref U13_12) (pin Y19)))
    (net (code 572) (name "Net-(U13_12-PadV22)")
      (node (ref U13_12) (pin V22)))
    (net (code 573) (name "Net-(U13_12-PadW21)")
      (node (ref U13_12) (pin W21)))
    (net (code 574) (name "/MKM interface/FPGA_CFG_MISO1")
      (node (ref R84) (pin 2))
      (node (ref U13_12) (pin R22)))
    (net (code 575) (name "/MKM interface/FPGA_CFG_MOSI1")
      (node (ref U13_12) (pin P22))
      (node (ref R83) (pin 2)))
    (net (code 576) (name "/MKM interface/FPGA_CFG_CS_N1")
      (node (ref U13_12) (pin T19))
      (node (ref R85) (pin 2)))
    (net (code 577) (name FPGA_VCCINT_1V0)
      (node (ref C145) (pin 1))
      (node (ref C153) (pin 1))
      (node (ref C149) (pin 1))
      (node (ref C157) (pin 1))
      (node (ref C161) (pin 1))
      (node (ref U13_17) (pin R7))
      (node (ref U13_17) (pin R9))
      (node (ref U13_17) (pin T10))
      (node (ref U13_17) (pin T8))
      (node (ref C140) (pin 1))
      (node (ref U13_17) (pin P8))
      (node (ref U13_17) (pin K8))
      (node (ref C135) (pin 1))
      (node (ref C138) (pin 1))
      (node (ref C142) (pin 1))
      (node (ref C125) (pin 1))
      (node (ref U13_17) (pin J9))
      (node (ref U13_17) (pin J7))
      (node (ref U13_17) (pin H8))
      (node (ref U13_17) (pin H10))
      (node (ref U13_16) (pin N11))
      (node (ref U13_16) (pin L11))
      (node (ref U13_16) (pin J11))
      (node (ref C164) (pin 1))
      (node (ref C144) (pin 1))
      (node (ref C148) (pin 1))
      (node (ref C152) (pin 1))
      (node (ref C156) (pin 1))
      (node (ref U13_17) (pin L7))
      (node (ref U13_17) (pin M8))
      (node (ref U13_17) (pin N7))
      (node (ref U13_17) (pin P10))
      (node (ref C130) (pin 1))
      (node (ref C134) (pin 1))
      (node (ref C129) (pin 1))
      (node (ref C131) (pin 1))
      (node (ref C128) (pin 1))
      (node (ref C160) (pin 1))
      (node (ref C141) (pin 1))
      (node (ref C133) (pin 1))
      (node (ref C162) (pin 1))
      (node (ref C150) (pin 1))
      (node (ref FB7) (pin 2))
      (node (ref C146) (pin 1))
      (node (ref C154) (pin 1))
      (node (ref C158) (pin 1))
      (node (ref C163) (pin 1))
      (node (ref C137) (pin 1))
      (node (ref C124) (pin 1))
      (node (ref C123) (pin 1))
      (node (ref C127) (pin 1)))
    (net (code 578) (name "Net-(U16-Pad14)")
      (node (ref U16) (pin 16))
      (node (ref U16) (pin 18))
      (node (ref U16) (pin 17))
      (node (ref U16) (pin 21))
      (node (ref U16) (pin 23))
      (node (ref U16) (pin 24))
      (node (ref U16) (pin 20))
      (node (ref U16) (pin 26))
      (node (ref U16) (pin 25))
      (node (ref U16) (pin 19))
      (node (ref U16) (pin 22))
      (node (ref U16) (pin 15))
      (node (ref U16) (pin 47))
      (node (ref U16) (pin 46))
      (node (ref U16) (pin 45))
      (node (ref U16) (pin 44))
      (node (ref U16) (pin 14)))
    (net (code 579) (name "Net-(U16-Pad48)")
      (node (ref U16) (pin 48)))
    (net (code 580) (name "Net-(U16-Pad49)")
      (node (ref U16) (pin 49)))
    (net (code 581) (name "Net-(U16-Pad50)")
      (node (ref U16) (pin 50)))
    (net (code 582) (name "Net-(C208-Pad2)")
      (node (ref U16) (pin 56))
      (node (ref C208) (pin 2))
      (node (ref R69) (pin 2))
      (node (ref R68) (pin 1)))
    (net (code 583) (name "Net-(C208-Pad1)")
      (node (ref U16) (pin 6))
      (node (ref U16) (pin 13))
      (node (ref U16) (pin 7))
      (node (ref U16) (pin 8))
      (node (ref U16) (pin 12))
      (node (ref U16) (pin 9))
      (node (ref R68) (pin 2))
      (node (ref C208) (pin 1))
      (node (ref FB7) (pin 1))
      (node (ref R70) (pin 2))
      (node (ref U16) (pin 10))
      (node (ref R67) (pin 2))
      (node (ref C210) (pin 1))
      (node (ref C209) (pin 1))
      (node (ref U16) (pin 11))
      (node (ref U16) (pin 5)))
    (net (code 584) (name "Net-(U16-Pad57)")
      (node (ref U16) (pin 57)))
    (net (code 585) (name "Net-(U16-Pad60)")
      (node (ref U16) (pin 60)))
    (net (code 586) (name "Net-(U16-Pad61)")
      (node (ref U16) (pin 61)))
    (net (code 587) (name "Net-(U16-Pad62)")
      (node (ref U16) (pin 62)))
    (net (code 588) (name "Net-(U16-Pad58)")
      (node (ref U16) (pin 58)))
    (net (code 589) (name PWR_ENA_VCCINT)
      (node (ref U16) (pin 52))
      (node (ref C211) (pin 1))
      (node (ref R72) (pin 2))
      (node (ref D2) (pin 1)))
    (net (code 590) (name POK_VCCINT)
      (node (ref R76) (pin 1))
      (node (ref D4) (pin 3))
      (node (ref R75) (pin 1))
      (node (ref U16) (pin 54)))
    (net (code 591) (name "Net-(R67-Pad1)")
      (node (ref R67) (pin 1))
      (node (ref U16) (pin 63)))
    (net (code 592) (name "Net-(R66-Pad1)")
      (node (ref U16) (pin 51))
      (node (ref R66) (pin 1)))
    (net (code 593) (name "Net-(C207-Pad1)")
      (node (ref U16) (pin 59))
      (node (ref C207) (pin 1)))
    (net (code 594) (name "Net-(LED18-Pad2)")
      (node (ref LED18) (pin 2))
      (node (ref Q6) (pin 3)))
    (net (code 595) (name "Net-(LED18-Pad1)")
      (node (ref R78) (pin 2))
      (node (ref LED18) (pin 1)))
    (net (code 596) (name FMC_D9)
      (node (ref U6) (pin 76))
      (node (ref U13_12) (pin AA21))
      (node (ref U4_3) (pin 86))
      (node (ref U5) (pin 76)))
    (net (code 597) (name FMC_D8)
      (node (ref U13_12) (pin Y18))
      (node (ref U5) (pin 74))
      (node (ref U6) (pin 74))
      (node (ref U4_3) (pin 85)))
    (net (code 598) (name FMC_D7)
      (node (ref U13_9) (pin Y12))
      (node (ref U5) (pin 13))
      (node (ref U4_3) (pin 84))
      (node (ref U6) (pin 13)))
    (net (code 599) (name FMC_D6)
      (node (ref U4_3) (pin 81))
      (node (ref U13_9) (pin Y11))
      (node (ref U6) (pin 11))
      (node (ref U5) (pin 11)))
    (net (code 600) (name FMC_D5)
      (node (ref U4_3) (pin 80))
      (node (ref U13_9) (pin AA11))
      (node (ref U5) (pin 10))
      (node (ref U6) (pin 10)))
    (net (code 601) (name FMC_D4)
      (node (ref U4_3) (pin 79))
      (node (ref U6) (pin 8))
      (node (ref U13_9) (pin AB11))
      (node (ref U5) (pin 8)))
    (net (code 602) (name FMC_D3)
      (node (ref U5) (pin 7))
      (node (ref U13_10) (pin U2))
      (node (ref U6) (pin 7))
      (node (ref U4_3) (pin 165)))
    (net (code 603) (name FMC_D2)
      (node (ref U5) (pin 5))
      (node (ref U6) (pin 5))
      (node (ref U13_10) (pin U1))
      (node (ref U4_3) (pin 164)))
    (net (code 604) (name FMC_D1)
      (node (ref U5) (pin 4))
      (node (ref U13_10) (pin AB6))
      (node (ref U6) (pin 4))
      (node (ref U4_3) (pin 117)))
    (net (code 605) (name FMC_D0)
      (node (ref U4_3) (pin 116))
      (node (ref U5) (pin 2))
      (node (ref U6) (pin 2))
      (node (ref U13_10) (pin AB7)))
    (net (code 606) (name FMC_D10)
      (node (ref U6) (pin 77))
      (node (ref U5) (pin 77))
      (node (ref U13_12) (pin W20))
      (node (ref U4_3) (pin 87)))
    (net (code 607) (name FMC_D11)
      (node (ref U6) (pin 79))
      (node (ref U5) (pin 79))
      (node (ref U4_3) (pin 88))
      (node (ref U13_12) (pin N15)))
    (net (code 608) (name FMC_D12)
      (node (ref U5) (pin 80))
      (node (ref U4_3) (pin 89))
      (node (ref U13_12) (pin U20))
      (node (ref U6) (pin 80)))
    (net (code 609) (name FMC_D13)
      (node (ref U6) (pin 82))
      (node (ref U5) (pin 82))
      (node (ref U4_3) (pin 108))
      (node (ref U13_10) (pin AA1)))
    (net (code 610) (name FMC_D14)
      (node (ref U6) (pin 83))
      (node (ref U5) (pin 83))
      (node (ref U13_10) (pin AB1))
      (node (ref U4_3) (pin 109)))
    (net (code 611) (name FMC_D15)
      (node (ref U13_10) (pin AB2))
      (node (ref U6) (pin 85))
      (node (ref U5) (pin 85))
      (node (ref U4_3) (pin 110)))
    (net (code 612) (name FMC_D16)
      (node (ref U4_3) (pin 98))
      (node (ref U5) (pin 31))
      (node (ref U6) (pin 31))
      (node (ref U13_10) (pin AB3)))
    (net (code 613) (name FMC_D17)
      (node (ref U5) (pin 33))
      (node (ref U6) (pin 33))
      (node (ref U13_10) (pin Y3))
      (node (ref U4_3) (pin 99)))
    (net (code 615) (name FMC_A1)
      (node (ref U5) (pin 26))
      (node (ref U6) (pin 26))
      (node (ref U4_3) (pin 17))
      (node (ref U13_9) (pin AB16)))
    (net (code 616) (name FMC_A2)
      (node (ref U5) (pin 27))
      (node (ref U6) (pin 27))
      (node (ref U4_3) (pin 18))
      (node (ref U13_9) (pin AA16)))
    (net (code 617) (name FMC_A3)
      (node (ref U13_9) (pin Y16))
      (node (ref U6) (pin 60))
      (node (ref U5) (pin 60))
      (node (ref U4_3) (pin 22)))
    (net (code 628) (name FMC_D28)
      (node (ref U6) (pin 51))
      (node (ref U5) (pin 51))
      (node (ref U13_12) (pin V20))
      (node (ref U4_3) (pin 207)))
    (net (code 629) (name FMC_D29)
      (node (ref U6) (pin 53))
      (node (ref U13_12) (pin V18))
      (node (ref U4_3) (pin 208))
      (node (ref U5) (pin 53)))
    (net (code 630) (name FMC_D30)
      (node (ref U5) (pin 54))
      (node (ref U13_12) (pin R21))
      (node (ref U4_3) (pin 11))
      (node (ref U6) (pin 54)))
    (net (code 631) (name FMC_D31)
      (node (ref U13_12) (pin P21))
      (node (ref U4_3) (pin 12))
      (node (ref U6) (pin 56))
      (node (ref U5) (pin 56)))
    (net (code 632) (name FMC_A0)
      (node (ref U5) (pin 25))
      (node (ref U6) (pin 25))
      (node (ref U4_3) (pin 16))
      (node (ref U13_9) (pin Y17)))
    (net (code 633) (name FMC_D27)
      (node (ref U6) (pin 50))
      (node (ref U4_3) (pin 157))
      (node (ref U5) (pin 50))
      (node (ref U13_9) (pin W14)))
    (net (code 638) (name FMC_D26)
      (node (ref U5) (pin 48))
      (node (ref U6) (pin 48))
      (node (ref U4_3) (pin 156))
      (node (ref U13_9) (pin W12)))
    (net (code 639) (name FMC_D25)
      (node (ref U4_3) (pin 155))
      (node (ref U13_10) (pin R4))
      (node (ref U6) (pin 47))
      (node (ref U5) (pin 47)))
    (net (code 640) (name FMC_D24)
      (node (ref U13_9) (pin W10))
      (node (ref U4_3) (pin 154))
      (node (ref U6) (pin 45))
      (node (ref U5) (pin 45)))
    (net (code 641) (name FMC_D23)
      (node (ref U13_10) (pin V4))
      (node (ref U6) (pin 42))
      (node (ref U5) (pin 42))
      (node (ref U4_3) (pin 153)))
    (net (code 642) (name FMC_D22)
      (node (ref U5) (pin 40))
      (node (ref U13_10) (pin AA4))
      (node (ref U6) (pin 40))
      (node (ref U4_3) (pin 152)))
    (net (code 643) (name FMC_D21)
      (node (ref U4_3) (pin 151))
      (node (ref U5) (pin 39))
      (node (ref U13_10) (pin Y4))
      (node (ref U6) (pin 39)))
    (net (code 644) (name FMC_D20)
      (node (ref U4_3) (pin 102))
      (node (ref U6) (pin 37))
      (node (ref U5) (pin 37))
      (node (ref U13_10) (pin AB5)))
    (net (code 645) (name FMC_D19)
      (node (ref U5) (pin 36))
      (node (ref U4_3) (pin 101))
      (node (ref U6) (pin 36))
      (node (ref U13_10) (pin AA5)))
    (net (code 646) (name FMC_D18)
      (node (ref U13_10) (pin AA3))
      (node (ref U4_3) (pin 100))
      (node (ref U6) (pin 34))
      (node (ref U5) (pin 34)))
    (net (code 647) (name FMC_A13)
      (node (ref U4_3) (pin 130))
      (node (ref U13_10) (pin V2)))
    (net (code 653) (name FMC_A18)
      (node (ref U13_10) (pin Y7))
      (node (ref U4_3) (pin 113)))
    (net (code 654) (name FMC_A17)
      (node (ref U4_3) (pin 112))
      (node (ref U13_10) (pin AA8)))
    (net (code 655) (name FMC_A16)
      (node (ref U13_9) (pin AA9))
      (node (ref U4_3) (pin 111)))
    (net (code 656) (name FMC_A15)
      (node (ref U13_10) (pin AB8))
      (node (ref U5) (pin 23))
      (node (ref U4_3) (pin 132))
      (node (ref U6) (pin 23)))
    (net (code 657) (name FMC_A14)
      (node (ref U4_3) (pin 131))
      (node (ref U6) (pin 22))
      (node (ref U13_9) (pin AB12))
      (node (ref U5) (pin 22)))
    (net (code 659) (name FMC_A12)
      (node (ref U6) (pin 69))
      (node (ref U4_3) (pin 129))
      (node (ref U13_9) (pin AB10))
      (node (ref U5) (pin 69)))
    (net (code 660) (name FMC_A11)
      (node (ref U13_9) (pin Y14))
      (node (ref U5) (pin 21))
      (node (ref U4_3) (pin 78))
      (node (ref U6) (pin 21)))
    (net (code 661) (name FMC_A10)
      (node (ref U5) (pin 24))
      (node (ref U4_3) (pin 77))
      (node (ref U6) (pin 24))
      (node (ref U13_9) (pin AA14)))
    (net (code 662) (name FMC_A9)
      (node (ref U5) (pin 66))
      (node (ref U13_9) (pin Y13))
      (node (ref U6) (pin 66))
      (node (ref U4_3) (pin 76)))
    (net (code 663) (name FMC_A8)
      (node (ref U4_3) (pin 75))
      (node (ref U6) (pin 65))
      (node (ref U5) (pin 65))
      (node (ref U13_9) (pin AB15)))
    (net (code 664) (name FMC_A7)
      (node (ref U13_9) (pin AA15))
      (node (ref U4_3) (pin 74))
      (node (ref U5) (pin 64))
      (node (ref U6) (pin 64)))
    (net (code 665) (name FMC_A6)
      (node (ref U6) (pin 63))
      (node (ref U4_3) (pin 71))
      (node (ref U5) (pin 63))
      (node (ref U13_9) (pin AB13)))
    (net (code 666) (name FMC_A5)
      (node (ref U5) (pin 62))
      (node (ref U6) (pin 62))
      (node (ref U13_9) (pin AA13))
      (node (ref U4_3) (pin 24)))
    (net (code 667) (name FMC_A4)
      (node (ref U5) (pin 61))
      (node (ref U13_9) (pin AB17))
      (node (ref U4_3) (pin 23))
      (node (ref U6) (pin 61)))))