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

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Interactive BOM for KiCAD</title>
  <style type="text/css">
:root {
  --pcb-edge-color: black;
  --pad-color: #878787;
  --pad-color-highlight: #D04040;
  --pin1-outline-color: #ffb629;
  --pin1-outline-color-highlight: #b4ff03;
}

html, body {
  margin: 0px;
  height: 100%;
  font-family: Verdana, sans-serif;
}

.dark {
  --pcb-edge-color: #eee;
  --pad-color: #808080;
  --pin1-outline-color: #ffa800;
  --pin1-outline-color-highlight: #ccff00;
  background-color: #252c30;
  color: #eee;
}

button {
  background-color: #eee;
  border: 1px solid #888;
  color: black;
  height: 44px;
  width: 44px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight: bolder;
}

.dark button {
  /* This will be inverted */
  background-color: #c3b7b5;
}

button.depressed {
  background-color: #0a0;
  color: white;
}

.dark button.depressed {
  /* This will be inverted */
  background-color: #b3b;
}

button:focus {
  outline: 0;
}

button#tb-btn {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.47 8.47'%3E%3Crect transform='translate(0 -288.53)' ry='1.17' y='288.8' x='.27' height='7.94' width='7.94' fill='%23f9f9f9'/%3E%3Cg transform='translate(0 -288.53)'%3E%3Crect width='7.94' height='7.94' x='.27' y='288.8' ry='1.17' fill='none' stroke='%23000' stroke-width='.4' stroke-linejoin='round'/%3E%3Cpath d='M1.32 290.12h5.82M1.32 291.45h5.82' fill='none' stroke='%23000' stroke-width='.4'/%3E%3Cpath d='M4.37 292.5v4.23M.26 292.63H8.2' fill='none' stroke='%23000' stroke-width='.3'/%3E%3Ctext font-weight='700' font-size='3.17' font-family='sans-serif'%3E%3Ctspan x='1.35' y='295.73'%3EF%3C/tspan%3E%3Ctspan x='5.03' y='295.68'%3EB%3C/tspan%3E%3C/text%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: 32px 32px;
  background-position: 5px 5px;
  background-repeat: no-repeat;
}

button#lr-btn {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.47 8.47'%3E%3Crect transform='translate(0 -288.53)' ry='1.17' y='288.8' x='.27' height='7.94' width='7.94' fill='%23f9f9f9'/%3E%3Cg transform='translate(0 -288.53)'%3E%3Crect width='7.94' height='7.94' x='.27' y='288.8' ry='1.17' fill='none' stroke='%23000' stroke-width='.4' stroke-linejoin='round'/%3E%3Cpath d='M1.06 290.12H3.7m-2.64 1.33H3.7m-2.64 1.32H3.7m-2.64 1.3H3.7m-2.64 1.33H3.7' fill='none' stroke='%23000' stroke-width='.4'/%3E%3Cpath d='M4.37 288.8v7.94m0-4.11h3.96' fill='none' stroke='%23000' stroke-width='.3'/%3E%3Ctext font-weight='700' font-size='3.17' font-family='sans-serif'%3E%3Ctspan x='5.11' y='291.96'%3EF%3C/tspan%3E%3Ctspan x='5.03' y='295.68'%3EB%3C/tspan%3E%3C/text%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: 32px 32px;
  background-position: 5px 5px;
  background-repeat: no-repeat;
}

button#bom-btn {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.47 8.47'%3E%3Crect transform='translate(0 -288.53)' ry='1.17' y='288.8' x='.27' height='7.94' width='7.94' fill='%23f9f9f9'/%3E%3Cg transform='translate(0 -288.53)' fill='none' stroke='%23000' stroke-width='.4'%3E%3Crect width='7.94' height='7.94' x='.27' y='288.8' ry='1.17' stroke-linejoin='round'/%3E%3Cpath d='M1.59 290.12h5.29M1.59 291.45h5.33M1.59 292.75h5.33M1.59 294.09h5.33M1.59 295.41h5.33'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 32px 32px;
  background-position: 5px 5px;
  background-repeat: no-repeat;
}

button#copy {
  background-image: url("data:image/svg+xml,%3Csvg height='48' viewBox='0 0 48 48' width='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h48v48h-48z' fill='none'/%3E%3Cpath d='M32 2h-24c-2.21 0-4 1.79-4 4v28h4v-28h24v-4zm6 8h-22c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h22c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm0 32h-22v-28h22v28z'/%3E%3C/svg%3E");
  background-position: 6px 6px;
  background-repeat: no-repeat;
  background-size: 26px 26px;
  border-radius: 6px;
  height: 40px;
  width: 40px;
  margin: 10px 5px;
}

button#copy:active {
    box-shadow: inset 0px 0px 5px #6c6c6c;
}

textarea.clipboard-temp {
  position: fixed;
  top: 0;
  left: 0;
  width: 2em;
  height: 2em;
  padding: 0;
  border: None;
  outline: None;
  box-shadow: None;
  background: transparent;
}

.left-most-button {
  border-right: 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.middle-button {
  border-right: 0;
}

.right-most-button {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.button-container {
  font-size: 0;
}

.dark .button-container {
  filter: invert(1);
}

@media print {
  .hideonprint {
    display: none;
  }
}

canvas {
  cursor: crosshair;
}

canvas:active {
  cursor: grabbing;
}

.fileinfo {
  width: 100%;
  max-width: 1000px;
  border: none;
  padding: 5px;
}

.fileinfo .title {
  font-size: 20pt;
  font-weight: bold;
}

.fileinfo td {
  overflow: hidden;
  white-space: nowrap;
  max-width: 1px;
  width: 50%;
  text-overflow: ellipsis;
}

.bom {
  border-collapse: collapse;
  font-family: Consolas, "DejaVu Sans Mono", Monaco, monospace;
  font-size: 10pt;
  table-layout: fixed;
  width: 100%;
  margin-top: 1px;
}

.bom th, .bom td {
  border: 1px solid black;
  padding: 5px;
  word-wrap: break-word;
  text-align: center;
  position: relative;
}

.dark .bom th, .dark .bom td {
  border: 1px solid #777;
}

.bom th {
  background-color: #CCCCCC;
  background-clip: padding-box;
}

.dark .bom th {
  background-color: #3b4749;
}

.bom tr.highlighted:nth-child(n) {
  background-color: #cfc;
}

.dark .bom tr.highlighted:nth-child(n) {
  background-color: #226022;
}

.bom tr:nth-child(even) {
  background-color: #f2f2f2;
}

.dark .bom tr:nth-child(even) {
  background-color: #313b40;
}

.bom tr {
  transition: background-color 0.2s;
}

.bom .numCol {
  width: 25px;
}

.bom .Description {
  width: 10%;
}

.bom .Part {
  width: 10%;
}

.bom .Value {
  width: 15%;
}

.bom .Quantity {
  width: 65px;
}

.bom th .sortmark {
  position: absolute;
  right: 1px;
  top: 1px;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #221 transparent;
  transform-origin: 50% 85%;
  transition: opacity 0.2s, transform 0.4s;
}

.dark .bom th .sortmark {
  filter: invert(1);
}

.bom th .sortmark.none {
  opacity: 0;
}

.bom th .sortmark.desc {
  transform: rotate(180deg);
}

.bom th:hover .sortmark.none {
  opacity: 0.5;
}

.bom .bom-checkbox {
  width: 30px;
  position: relative;
  user-select: none;
  -moz-user-select: none;
}

.bom .bom-checkbox:before {
  content: "";
  position: absolute;
  border-width: 15px;
  border-style: solid;
  border-color: #51829f transparent transparent transparent;
  visibility: hidden;
  top: -15px;
}

.bom .bom-checkbox:after {
  content: "Double click to set/unset all";
  position: absolute;
  color: white;
  top: -35px;
  left: -26px;
  background: #51829f;
  padding: 5px 15px;
  border-radius: 8px;
  white-space: nowrap;
  visibility: hidden;
}

.bom .bom-checkbox:hover:before, .bom .bom-checkbox:hover:after {
  visibility: visible;
  transition: visibility 0.2s linear 1s;
}

.split {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: inherit;
}

.split.split-horizontal, .gutter.gutter-horizontal {
  height: 100%;
  float: left;
}

.gutter {
  background-color: #ddd;
  background-repeat: no-repeat;
  background-position: 50%;
  transition: background-color 0.3s;
}

.dark .gutter {
  background-color: #777;
}

.gutter.gutter-horizontal {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
  cursor: ew-resize;
  width: 5px;
}

.gutter.gutter-vertical {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=');
  cursor: ns-resize;
  height: 5px;
}

.searchbox {
  float: left;
  height: 40px;
  margin: 10px 5px;
  padding: 12px 32px;
  font-family: Consolas, "DejaVu Sans Mono", Monaco, monospace;
  font-size: 18px;
  box-sizing: border-box;
  border: 1px solid #888;
  border-radius: 6px;
  outline: none;
  background-color: #eee;
  transition: background-color 0.2s, border 0.2s;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABNklEQVQ4T8XSMUvDQBQH8P/LElFa/AIZHcTBQSz0I/gFstTBRR2KUC4ldDxw7h0Bl3RRUATxi4iiODgoiLNrbQYp5J6cpJJqomkX33Z37/14d/dIa33MzDuYI4johOI4XhyNRteO46zNYjDzAxE1yBZprVeZ+QbAUhXEGJMA2Ox2u4+fQIa0mPmsCgCgJYQ4t7lfgF0opQYAdv9ABkKI/UnOFCClXKjX61cA1osQY8x9kiRNKeV7IWA3oyhaSdP0FkAtjxhj3hzH2RBCPOf3pzqYHCilfAAX+URm9oMguPzeWSGQvUcMYC8rOBJCHBRdqxTo9/vbRHRqi8bj8XKv1xvODbiuW2u32/bvf0SlDv4XYOY7z/Mavu+nM1+BmQ+NMc0wDF/LprP0DbTWW0T00ul0nn4b7Q87+X4Qmfiq2wAAAABJRU5ErkJggg==');
  background-position: 10px 10px;
  background-repeat: no-repeat;
}

.dark .searchbox {
  background-color: #111;
  color: #eee;
}

.searchbox::placeholder {
  color: #ccc;
}

.dark .searchbox::placeholder {
  color: #666;
}

.filter {
  width: calc(60% - 64px);
}

.reflookup {
  width: calc(40% - 10px);
}

input[type=text]:focus {
  background-color: white;
  border: 1px solid #333;
}

.dark input[type=text]:focus {
  background-color: #333;
  border: 1px solid #ccc;
}

mark.highlight {
  background-color: #5050ff;
  color: #fff;
  padding: 2px;
  border-radius: 6px;
}

.dark mark.highlight {
  background-color: #76a6da;
  color: #111;
}

.menubtn {
  background-color: white;
  font-size: 16px;
  border: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 20 20'%3E%3Cpath fill='none' d='M0 0h20v20H0V0z'/%3E%3Cpath d='M15.95 10.78c.03-.25.05-.51.05-.78s-.02-.53-.06-.78l1.69-1.32c.15-.12.19-.34.1-.51l-1.6-2.77c-.1-.18-.31-.24-.49-.18l-1.99.8c-.42-.32-.86-.58-1.35-.78L12 2.34c-.03-.2-.2-.34-.4-.34H8.4c-.2 0-.36.14-.39.34l-.3 2.12c-.49.2-.94.47-1.35.78l-1.99-.8c-.18-.07-.39 0-.49.18l-1.6 2.77c-.1.18-.06.39.1.51l1.69 1.32c-.04.25-.07.52-.07.78s.02.53.06.78L2.37 12.1c-.15.12-.19.34-.1.51l1.6 2.77c.1.18.31.24.49.18l1.99-.8c.42.32.86.58 1.35.78l.3 2.12c.04.2.2.34.4.34h3.2c.2 0 .37-.14.39-.34l.3-2.12c.49-.2.94-.47 1.35-.78l1.99.8c.18.07.39 0 .49-.18l1.6-2.77c.1-.18.06-.39-.1-.51l-1.67-1.32zM10 13c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
}

.dark .menubtn {
  filter: invert(1);
}

.menu {
  position: relative;
  display: inline-block;
}

.menu-content {
  display: none;
  position: absolute;
  background-color: white;
  right: 0;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 100;
  padding: 8px;
}

.dark .menu-content {
  background-color: #111;
}

.menu:hover .menu-content {
  display: block;
}

.menu:hover .menubtn {
  background-color: #eee;
}

.dark .menu:hover .menubtn {}

.menu-label {
  display: inline-block;
  padding: 8px;
  border: 1px solid #ccc;
  border-top: 0;
  width: calc(100% - 18px);
}

.menu-label-top {
  border-top: 1px solid #ccc;
}

.menu-textbox {
  float: left;
  height: 24px;
  margin: 10px 5px;
  padding: 5px 5px;
  font-family: Consolas, "DejaVu Sans Mono", Monaco, monospace;
  font-size: 14px;
  box-sizing: border-box;
  border: 1px solid #888;
  border-radius: 4px;
  outline: none;
  background-color: #eee;
  transition: background-color 0.2s, border 0.2s;
  width: calc(100% - 10px);
}

.dark .menu-textbox {
  background-color: #222;
  color: #eee;
}

#topmostdiv {
  transition: background-color 0.3s;
}

#top {
  height: 78px;
  border-bottom: 2px solid black;
}

.dark #top {
  border-bottom: 2px solid #ccc;
}

#dbg {
  display: block;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #aaa;
}

::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  margin: 3px 0;
  padding: 0;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
  border-radius: 3px;
}

.slider:hover {
  opacity: 1;
}

.slider:focus {
  outline: none;
}

.slider::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #d3d3d3;
  border-radius: 3px;
  border: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #0a0;
  cursor: pointer;
  margin-top: -4px;
}

.dark .slider::-webkit-slider-thumb {
  background: #3d3;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #0a0;
  cursor: pointer;
}

.slider::-moz-range-track {
  height: 8px;
  background: #d3d3d3;
  border-radius: 3px;
}

.dark .slider::-moz-range-thumb {
  background: #3d3;
}

.slider::-ms-track {
  width: 100%;
  height: 8px;
  border-width: 3px 0;
  background: transparent;
  border-color: transparent;
  color: transparent;
  transition: opacity .2s;
}

.slider::-ms-fill-lower {
  background: #d3d3d3;
  border: none;
  border-radius: 3px;
}

.slider::-ms-fill-upper {
  background: #d3d3d3;
  border: none;
  border-radius: 3px;
}

.slider::-ms-thumb {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #0a0;
  cursor: pointer;
  margin: 0;
}

.shameless-plug {
  font-size: 0.8em;
  text-align: center;
  display: block;
}

a {
  color: #0278a4;
}

.dark a {
  color: #00b9fd;
}

  </style>
  <script type="text/javascript" >
///////////////////////////////////////////////
/*
  Split.js - v1.3.5
  MIT License
  https://github.com/nathancahill/Split.js
*/
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Split=t()}(this,function(){"use strict";var e=window,t=e.document,n="addEventListener",i="removeEventListener",r="getBoundingClientRect",s=function(){return!1},o=e.attachEvent&&!e[n],a=["","-webkit-","-moz-","-o-"].filter(function(e){var n=t.createElement("div");return n.style.cssText="width:"+e+"calc(9px)",!!n.style.length}).shift()+"calc",l=function(e){return"string"==typeof e||e instanceof String?t.querySelector(e):e};return function(u,c){function z(e,t,n){var i=A(y,t,n);Object.keys(i).forEach(function(t){return e.style[t]=i[t]})}function h(e,t){var n=B(y,t);Object.keys(n).forEach(function(t){return e.style[t]=n[t]})}function f(e){var t=E[this.a],n=E[this.b],i=t.size+n.size;t.size=e/this.size*i,n.size=i-e/this.size*i,z(t.element,t.size,this.aGutterSize),z(n.element,n.size,this.bGutterSize)}function m(e){var t;this.dragging&&((t="touches"in e?e.touches[0][b]-this.start:e[b]-this.start)<=E[this.a].minSize+M+this.aGutterSize?t=E[this.a].minSize+this.aGutterSize:t>=this.size-(E[this.b].minSize+M+this.bGutterSize)&&(t=this.size-(E[this.b].minSize+this.bGutterSize)),f.call(this,t),c.onDrag&&c.onDrag())}function g(){var e=E[this.a].element,t=E[this.b].element;this.size=e[r]()[y]+t[r]()[y]+this.aGutterSize+this.bGutterSize,this.start=e[r]()[G]}function d(){var t=this,n=E[t.a].element,r=E[t.b].element;t.dragging&&c.onDragEnd&&c.onDragEnd(),t.dragging=!1,e[i]("mouseup",t.stop),e[i]("touchend",t.stop),e[i]("touchcancel",t.stop),t.parent[i]("mousemove",t.move),t.parent[i]("touchmove",t.move),delete t.stop,delete t.move,n[i]("selectstart",s),n[i]("dragstart",s),r[i]("selectstart",s),r[i]("dragstart",s),n.style.userSelect="",n.style.webkitUserSelect="",n.style.MozUserSelect="",n.style.pointerEvents="",r.style.userSelect="",r.style.webkitUserSelect="",r.style.MozUserSelect="",r.style.pointerEvents="",t.gutter.style.cursor="",t.parent.style.cursor=""}function S(t){var i=this,r=E[i.a].element,o=E[i.b].element;!i.dragging&&c.onDragStart&&c.onDragStart(),t.preventDefault(),i.dragging=!0,i.move=m.bind(i),i.stop=d.bind(i),e[n]("mouseup",i.stop),e[n]("touchend",i.stop),e[n]("touchcancel",i.stop),i.parent[n]("mousemove",i.move),i.parent[n]("touchmove",i.move),r[n]("selectstart",s),r[n]("dragstart",s),o[n]("selectstart",s),o[n]("dragstart",s),r.style.userSelect="none",r.style.webkitUserSelect="none",r.style.MozUserSelect="none",r.style.pointerEvents="none",o.style.userSelect="none",o.style.webkitUserSelect="none",o.style.MozUserSelect="none",o.style.pointerEvents="none",i.gutter.style.cursor=j,i.parent.style.cursor=j,g.call(i)}function v(e){e.forEach(function(t,n){if(n>0){var i=F[n-1],r=E[i.a],s=E[i.b];r.size=e[n-1],s.size=t,z(r.element,r.size,i.aGutterSize),z(s.element,s.size,i.bGutterSize)}})}function p(){F.forEach(function(e){e.parent.removeChild(e.gutter),E[e.a].element.style[y]="",E[e.b].element.style[y]=""})}void 0===c&&(c={});var y,b,G,E,w=l(u[0]).parentNode,D=e.getComputedStyle(w).flexDirection,U=c.sizes||u.map(function(){return 100/u.length}),k=void 0!==c.minSize?c.minSize:100,x=Array.isArray(k)?k:u.map(function(){return k}),L=void 0!==c.gutterSize?c.gutterSize:10,M=void 0!==c.snapOffset?c.snapOffset:30,O=c.direction||"horizontal",j=c.cursor||("horizontal"===O?"ew-resize":"ns-resize"),C=c.gutter||function(e,n){var i=t.createElement("div");return i.className="gutter gutter-"+n,i},A=c.elementStyle||function(e,t,n){var i={};return"string"==typeof t||t instanceof String?i[e]=t:i[e]=o?t+"%":a+"("+t+"% - "+n+"px)",i},B=c.gutterStyle||function(e,t){return n={},n[e]=t+"px",n;var n};"horizontal"===O?(y="width","clientWidth",b="clientX",G="left","paddingLeft"):"vertical"===O&&(y="height","clientHeight",b="clientY",G="top","paddingTop");var F=[];return E=u.map(function(e,t){var i,s={element:l(e),size:U[t],minSize:x[t]};if(t>0&&(i={a:t-1,b:t,dragging:!1,isFirst:1===t,isLast:t===u.length-1,direction:O,parent:w},i.aGutterSize=L,i.bGutterSize=L,i.isFirst&&(i.aGutterSize=L/2),i.isLast&&(i.bGutterSize=L/2),"row-reverse"===D||"column-reverse"===D)){var a=i.a;i.a=i.b,i.b=a}if(!o&&t>0){var c=C(t,O);h(c,L),c[n]("mousedown",S.bind(i)),c[n]("touchstart",S.bind(i)),w.insertBefore(c,s.element),i.gutter=c}0===t||t===u.length-1?z(s.element,s.size,L/2):z(s.element,s.size,L);var f=s.element[r]()[y];return f<s.minSize&&(s.minSize=f),t>0&&F.push(i),s}),o?{setSizes:v,destroy:p}:{setSizes:v,getSizes:function(){return E.map(function(e){return e.size})},collapse:function(e){if(e===F.length){var t=F[e-1];g.call(t),o||f.call(t,t.size-t.bGutterSize)}else{var n=F[e];g.call(n),o||f.call(n,n.aGutterSize)}},destroy:p}}});

///////////////////////////////////////////////

///////////////////////////////////////////////
var config = {"redraw_on_drag": true, "highlight_pin1": false, "extra_fields": [], "dark_mode": false, "bom_view": "left-right", "board_rotation": 0.0, "checkboxes": "Sourced,Placed", "show_silkscreen": true, "layer_view": "FB"}
///////////////////////////////////////////////

///////////////////////////////////////////////
var pcbdata = {"font_data": {" ": {"l": [], "w": 0.7619047619047619}, "1": {"l": [[[0.7619047619047619, -0.047619047619047616], [0.19047619047619047, -0.047619047619047616]], [[0.47619047619047616, -0.047619047619047616], [0.47619047619047616, -1.0476190476190474], [0.38095238095238093, -0.9047619047619047], [0.2857142857142857, -0.8095238095238095], [0.19047619047619047, -0.7619047619047619]]], "w": 0.9523809523809523}, "0": {"l": [[[0.42857142857142855, -1.0476190476190474], [0.5238095238095237, -1.0476190476190474], [0.6190476190476191, -1.0], [0.6666666666666666, -0.9523809523809523], [0.7142857142857142, -0.8571428571428571], [0.7619047619047619, -0.6666666666666666], [0.7619047619047619, -0.42857142857142855], [0.7142857142857142, -0.23809523809523808], [0.6666666666666666, -0.14285714285714285], [0.6190476190476191, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.42857142857142855, -0.047619047619047616], [0.3333333333333333, -0.09523809523809523], [0.2857142857142857, -0.14285714285714285], [0.23809523809523808, -0.23809523809523808], [0.19047619047619047, -0.42857142857142855], [0.19047619047619047, -0.6666666666666666], [0.23809523809523808, -0.8571428571428571], [0.2857142857142857, -0.9523809523809523], [0.3333333333333333, -1.0], [0.42857142857142855, -1.0476190476190474]]], "w": 0.9523809523809523}, "3": {"l": [[[0.14285714285714285, -1.0476190476190474], [0.7619047619047619, -1.0476190476190474], [0.42857142857142855, -0.6666666666666666], [0.5714285714285714, -0.6666666666666666], [0.6666666666666666, -0.6190476190476191], [0.7142857142857142, -0.5714285714285714], [0.7619047619047619, -0.47619047619047616], [0.7619047619047619, -0.23809523809523808], [0.7142857142857142, -0.14285714285714285], [0.6666666666666666, -0.09523809523809523], [0.5714285714285714, -0.047619047619047616], [0.2857142857142857, -0.047619047619047616], [0.19047619047619047, -0.09523809523809523], [0.14285714285714285, -0.14285714285714285]]], "w": 0.9523809523809523}, "2": {"l": [[[0.19047619047619047, -0.9523809523809523], [0.23809523809523808, -1.0], [0.3333333333333333, -1.0476190476190474], [0.5714285714285714, -1.0476190476190474], [0.6666666666666666, -1.0], [0.7142857142857142, -0.9523809523809523], [0.7619047619047619, -0.8571428571428571], [0.7619047619047619, -0.7619047619047619], [0.7142857142857142, -0.6190476190476191], [0.14285714285714285, -0.047619047619047616], [0.7619047619047619, -0.047619047619047616]]], "w": 0.9523809523809523}, "5": {"l": [[[0.7142857142857142, -1.0476190476190474], [0.23809523809523808, -1.0476190476190474], [0.19047619047619047, -0.5714285714285714], [0.23809523809523808, -0.6190476190476191], [0.3333333333333333, -0.6666666666666666], [0.5714285714285714, -0.6666666666666666], [0.6666666666666666, -0.6190476190476191], [0.7142857142857142, -0.5714285714285714], [0.7619047619047619, -0.47619047619047616], [0.7619047619047619, -0.23809523809523808], [0.7142857142857142, -0.14285714285714285], [0.6666666666666666, -0.09523809523809523], [0.5714285714285714, -0.047619047619047616], [0.3333333333333333, -0.047619047619047616], [0.23809523809523808, -0.09523809523809523], [0.19047619047619047, -0.14285714285714285]]], "w": 0.9523809523809523}, "4": {"l": [[[0.6666666666666666, -0.7142857142857142], [0.6666666666666666, -0.047619047619047616]], [[0.42857142857142855, -1.0952380952380951], [0.19047619047619047, -0.38095238095238093], [0.8095238095238095, -0.38095238095238093]]], "w": 0.9523809523809523}, "7": {"l": [[[0.14285714285714285, -1.0476190476190474], [0.8095238095238095, -1.0476190476190474], [0.38095238095238093, -0.047619047619047616]]], "w": 0.9523809523809523}, "6": {"l": [[[0.6666666666666666, -1.0476190476190474], [0.47619047619047616, -1.0476190476190474], [0.38095238095238093, -1.0], [0.3333333333333333, -0.9523809523809523], [0.23809523809523808, -0.8095238095238095], [0.19047619047619047, -0.6190476190476191], [0.19047619047619047, -0.23809523809523808], [0.23809523809523808, -0.14285714285714285], [0.2857142857142857, -0.09523809523809523], [0.38095238095238093, -0.047619047619047616], [0.5714285714285714, -0.047619047619047616], [0.6666666666666666, -0.09523809523809523], [0.7142857142857142, -0.14285714285714285], [0.7619047619047619, -0.23809523809523808], [0.7619047619047619, -0.47619047619047616], [0.7142857142857142, -0.5714285714285714], [0.6666666666666666, -0.6190476190476191], [0.5714285714285714, -0.6666666666666666], [0.38095238095238093, -0.6666666666666666], [0.2857142857142857, -0.6190476190476191], [0.23809523809523808, -0.5714285714285714], [0.19047619047619047, -0.47619047619047616]]], "w": 0.9523809523809523}, "9": {"l": [[[0.2857142857142857, -0.047619047619047616], [0.47619047619047616, -0.047619047619047616], [0.5714285714285714, -0.09523809523809523], [0.6190476190476191, -0.14285714285714285], [0.7142857142857142, -0.2857142857142857], [0.7619047619047619, -0.47619047619047616], [0.7619047619047619, -0.8571428571428571], [0.7142857142857142, -0.9523809523809523], [0.6666666666666666, -1.0], [0.5714285714285714, -1.0476190476190474], [0.38095238095238093, -1.0476190476190474], [0.2857142857142857, -1.0], [0.23809523809523808, -0.9523809523809523], [0.19047619047619047, -0.8571428571428571], [0.19047619047619047, -0.6190476190476191], [0.23809523809523808, -0.5238095238095237], [0.2857142857142857, -0.47619047619047616], [0.38095238095238093, -0.42857142857142855], [0.5714285714285714, -0.42857142857142855], [0.6666666666666666, -0.47619047619047616], [0.7142857142857142, -0.5238095238095237], [0.7619047619047619, -0.6190476190476191]]], "w": 0.9523809523809523}, "8": {"l": [[[0.38095238095238093, -0.6190476190476191], [0.2857142857142857, -0.6666666666666666], [0.23809523809523808, -0.7142857142857142], [0.19047619047619047, -0.8095238095238095], [0.19047619047619047, -0.8571428571428571], [0.23809523809523808, -0.9523809523809523], [0.2857142857142857, -1.0], [0.38095238095238093, -1.0476190476190474], [0.5714285714285714, -1.0476190476190474], [0.6666666666666666, -1.0], [0.7142857142857142, -0.9523809523809523], [0.7619047619047619, -0.8571428571428571], [0.7619047619047619, -0.8095238095238095], [0.7142857142857142, -0.7142857142857142], [0.6666666666666666, -0.6666666666666666], [0.5714285714285714, -0.6190476190476191], [0.38095238095238093, -0.6190476190476191], [0.2857142857142857, -0.5714285714285714], [0.23809523809523808, -0.5238095238095237], [0.19047619047619047, -0.42857142857142855], [0.19047619047619047, -0.23809523809523808], [0.23809523809523808, -0.14285714285714285], [0.2857142857142857, -0.09523809523809523], [0.38095238095238093, -0.047619047619047616], [0.5714285714285714, -0.047619047619047616], [0.6666666666666666, -0.09523809523809523], [0.7142857142857142, -0.14285714285714285], [0.7619047619047619, -0.23809523809523808], [0.7619047619047619, -0.42857142857142855], [0.7142857142857142, -0.5238095238095237], [0.6666666666666666, -0.5714285714285714], [0.5714285714285714, -0.6190476190476191]]], "w": 0.9523809523809523}, "A": {"l": [[[0.19047619047619047, -0.3333333333333333], [0.6666666666666666, -0.3333333333333333]], [[0.09523809523809523, -0.047619047619047616], [0.42857142857142855, -1.0476190476190474], [0.7619047619047619, -0.047619047619047616]]], "w": 0.8571428571428571}, "C": {"l": [[[0.8095238095238095, -0.14285714285714285], [0.7619047619047619, -0.09523809523809523], [0.6190476190476191, -0.047619047619047616], [0.5238095238095237, -0.047619047619047616], [0.38095238095238093, -0.09523809523809523], [0.2857142857142857, -0.19047619047619047], [0.23809523809523808, -0.2857142857142857], [0.19047619047619047, -0.47619047619047616], [0.19047619047619047, -0.6190476190476191], [0.23809523809523808, -0.8095238095238095], [0.2857142857142857, -0.9047619047619047], [0.38095238095238093, -1.0], [0.5238095238095237, -1.0476190476190474], [0.6190476190476191, -1.0476190476190474], [0.7619047619047619, -1.0], [0.8095238095238095, -0.9523809523809523]]], "w": 1.0}, "B": {"l": [[[0.5714285714285714, -0.5714285714285714], [0.7142857142857142, -0.5238095238095237], [0.7619047619047619, -0.47619047619047616], [0.8095238095238094, -0.38095238095238093], [0.8095238095238094, -0.23809523809523808], [0.7619047619047619, -0.14285714285714285], [0.7142857142857142, -0.09523809523809523], [0.619047619047619, -0.047619047619047616], [0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.5714285714285714, -1.0476190476190474], [0.6666666666666665, -1.0], [0.7142857142857142, -0.9523809523809523], [0.7619047619047619, -0.8571428571428571], [0.7619047619047619, -0.7619047619047619], [0.7142857142857142, -0.6666666666666666], [0.6666666666666665, -0.6190476190476191], [0.5714285714285714, -0.5714285714285714], [0.23809523809523803, -0.5714285714285714]]], "w": 1.0}, "D": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.4761904761904761, -1.0476190476190474], [0.619047619047619, -1.0], [0.7142857142857142, -0.9047619047619047], [0.7619047619047619, -0.8095238095238095], [0.8095238095238094, -0.6190476190476191], [0.8095238095238094, -0.47619047619047616], [0.7619047619047619, -0.2857142857142857], [0.7142857142857142, -0.19047619047619047], [0.619047619047619, -0.09523809523809523], [0.4761904761904761, -0.047619047619047616], [0.23809523809523803, -0.047619047619047616]]], "w": 1.0}, "G": {"l": [[[0.7619047619047619, -1.0], [0.6666666666666666, -1.0476190476190474], [0.5238095238095237, -1.0476190476190474], [0.38095238095238093, -1.0], [0.2857142857142857, -0.9047619047619047], [0.23809523809523808, -0.8095238095238095], [0.19047619047619047, -0.6190476190476191], [0.19047619047619047, -0.47619047619047616], [0.23809523809523808, -0.2857142857142857], [0.2857142857142857, -0.19047619047619047], [0.38095238095238093, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.6190476190476191, -0.047619047619047616], [0.7619047619047619, -0.09523809523809523], [0.8095238095238095, -0.14285714285714285], [0.8095238095238095, -0.47619047619047616], [0.6190476190476191, -0.47619047619047616]]], "w": 1.0}, "F": {"l": [[[0.5714285714285714, -0.5714285714285714], [0.23809523809523808, -0.5714285714285714]], [[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474], [0.7142857142857142, -1.0476190476190474]]], "w": 0.8571428571428571}, "I": {"l": [[[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474]]], "w": 0.47619047619047616}, "H": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474]], [[0.23809523809523803, -0.5714285714285714], [0.8095238095238094, -0.5714285714285714]], [[0.8095238095238094, -0.047619047619047616], [0.8095238095238094, -1.0476190476190474]]], "w": 1.0476190476190474}, "K": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474]], [[0.8095238095238094, -0.047619047619047616], [0.3809523809523809, -0.6190476190476191]], [[0.8095238095238094, -1.0476190476190474], [0.23809523809523803, -0.47619047619047616]]], "w": 1.0}, "J": {"l": [[[0.5238095238095237, -1.0476190476190474], [0.5238095238095237, -0.3333333333333333], [0.47619047619047616, -0.19047619047619047], [0.38095238095238093, -0.09523809523809523], [0.23809523809523808, -0.047619047619047616], [0.14285714285714285, -0.047619047619047616]]], "w": 0.7619047619047619}, "L": {"l": [[[0.7142857142857142, -0.047619047619047616], [0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474]]], "w": 0.8095238095238095}, "O": {"l": [[[0.4285714285714285, -1.0476190476190474], [0.619047619047619, -1.0476190476190474], [0.7142857142857142, -1.0], [0.8095238095238094, -0.9047619047619047], [0.857142857142857, -0.7142857142857142], [0.857142857142857, -0.38095238095238093], [0.8095238095238094, -0.19047619047619047], [0.7142857142857142, -0.09523809523809523], [0.619047619047619, -0.047619047619047616], [0.4285714285714285, -0.047619047619047616], [0.33333333333333326, -0.09523809523809523], [0.23809523809523803, -0.19047619047619047], [0.1904761904761904, -0.38095238095238093], [0.1904761904761904, -0.7142857142857142], [0.23809523809523803, -0.9047619047619047], [0.33333333333333326, -1.0], [0.4285714285714285, -1.0476190476190474]]], "w": 1.0476190476190474}, "N": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.8095238095238094, -0.047619047619047616], [0.8095238095238094, -1.0476190476190474]]], "w": 1.0476190476190474}, "P": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.619047619047619, -1.0476190476190474], [0.7142857142857142, -1.0], [0.7619047619047619, -0.9523809523809523], [0.8095238095238094, -0.8571428571428571], [0.8095238095238094, -0.7142857142857142], [0.7619047619047619, -0.6190476190476191], [0.7142857142857142, -0.5714285714285714], [0.619047619047619, -0.5238095238095237], [0.23809523809523803, -0.5238095238095237]]], "w": 1.0}, "S": {"l": [[[0.19047619047619047, -0.09523809523809523], [0.3333333333333333, -0.047619047619047616], [0.5714285714285714, -0.047619047619047616], [0.6666666666666666, -0.09523809523809523], [0.7142857142857142, -0.14285714285714285], [0.7619047619047619, -0.23809523809523808], [0.7619047619047619, -0.3333333333333333], [0.7142857142857142, -0.42857142857142855], [0.6666666666666666, -0.47619047619047616], [0.5714285714285714, -0.5238095238095237], [0.38095238095238093, -0.5714285714285714], [0.2857142857142857, -0.6190476190476191], [0.23809523809523808, -0.6666666666666666], [0.19047619047619047, -0.7619047619047619], [0.19047619047619047, -0.8571428571428571], [0.23809523809523808, -0.9523809523809523], [0.2857142857142857, -1.0], [0.38095238095238093, -1.0476190476190474], [0.6190476190476191, -1.0476190476190474], [0.7619047619047619, -1.0]]], "w": 0.9523809523809523}, "R": {"l": [[[0.8095238095238094, -0.047619047619047616], [0.4761904761904761, -0.5238095238095237]], [[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.619047619047619, -1.0476190476190474], [0.7142857142857142, -1.0], [0.7619047619047619, -0.9523809523809523], [0.8095238095238094, -0.8571428571428571], [0.8095238095238094, -0.7142857142857142], [0.7619047619047619, -0.6190476190476191], [0.7142857142857142, -0.5714285714285714], [0.619047619047619, -0.5238095238095237], [0.23809523809523803, -0.5238095238095237]]], "w": 1.0}, "U": {"l": [[[0.23809523809523803, -1.0476190476190474], [0.23809523809523803, -0.23809523809523808], [0.28571428571428564, -0.14285714285714285], [0.33333333333333326, -0.09523809523809523], [0.4285714285714285, -0.047619047619047616], [0.619047619047619, -0.047619047619047616], [0.7142857142857142, -0.09523809523809523], [0.7619047619047619, -0.14285714285714285], [0.8095238095238094, -0.23809523809523808], [0.8095238095238094, -1.0476190476190474]]], "w": 1.0476190476190474}, "W": {"l": [[[0.14285714285714285, -1.0476190476190474], [0.38095238095238093, -0.047619047619047616], [0.5714285714285714, -0.7619047619047619], [0.7619047619047619, -0.047619047619047616], [1.0, -1.0476190476190474]]], "w": 1.1428571428571428}, "V": {"l": [[[0.09523809523809523, -1.0476190476190474], [0.42857142857142855, -0.047619047619047616], [0.7619047619047619, -1.0476190476190474]]], "w": 0.8571428571428571}, "a": {"l": [[[0.6666666666666666, -0.047619047619047616], [0.6666666666666666, -0.5714285714285714], [0.6190476190476191, -0.6666666666666666], [0.5238095238095237, -0.7142857142857142], [0.3333333333333333, -0.7142857142857142], [0.23809523809523808, -0.6666666666666666]], [[0.6666666666666666, -0.09523809523809523], [0.5714285714285714, -0.047619047619047616], [0.3333333333333333, -0.047619047619047616], [0.23809523809523808, -0.09523809523809523], [0.19047619047619047, -0.19047619047619047], [0.19047619047619047, -0.2857142857142857], [0.23809523809523808, -0.38095238095238093], [0.3333333333333333, -0.42857142857142855], [0.5714285714285714, -0.42857142857142855], [0.6666666666666666, -0.47619047619047616]]], "w": 0.9047619047619047}, "e": {"l": [[[0.6190476190476191, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.3333333333333333, -0.047619047619047616], [0.23809523809523808, -0.09523809523809523], [0.19047619047619047, -0.19047619047619047], [0.19047619047619047, -0.5714285714285714], [0.23809523809523808, -0.6666666666666666], [0.3333333333333333, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142], [0.6190476190476191, -0.6666666666666666], [0.6666666666666666, -0.5714285714285714], [0.6666666666666666, -0.47619047619047616], [0.19047619047619047, -0.38095238095238093]]], "w": 0.8571428571428571}, "i": {"l": [[[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -0.7142857142857142]], [[0.23809523809523808, -1.0476190476190474], [0.19047619047619047, -1.0], [0.23809523809523808, -0.9523809523809523], [0.2857142857142857, -1.0], [0.23809523809523808, -1.0476190476190474], [0.23809523809523808, -0.9523809523809523]]], "w": 0.47619047619047616}, "k": {"l": [[[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474]], [[0.3333333333333333, -0.42857142857142855], [0.6190476190476191, -0.047619047619047616]], [[0.6190476190476191, -0.7142857142857142], [0.23809523809523808, -0.3333333333333333]]], "w": 0.8095238095238095}, "l": {"l": [[[0.38095238095238093, -0.047619047619047616], [0.2857142857142857, -0.09523809523809523], [0.23809523809523808, -0.19047619047619047], [0.23809523809523808, -1.0476190476190474]]], "w": 0.5238095238095237}, "o": {"l": [[[0.38095238095238093, -0.047619047619047616], [0.2857142857142857, -0.09523809523809523], [0.23809523809523808, -0.14285714285714285], [0.19047619047619047, -0.23809523809523808], [0.19047619047619047, -0.5238095238095237], [0.23809523809523808, -0.6190476190476191], [0.2857142857142857, -0.6666666666666666], [0.38095238095238093, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142], [0.6190476190476191, -0.6666666666666666], [0.6666666666666666, -0.6190476190476191], [0.7142857142857142, -0.5238095238095237], [0.7142857142857142, -0.23809523809523808], [0.6666666666666666, -0.14285714285714285], [0.6190476190476191, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.38095238095238093, -0.047619047619047616]]], "w": 0.9047619047619047}, "n": {"l": [[[0.23809523809523808, -0.7142857142857142], [0.23809523809523808, -0.047619047619047616]], [[0.23809523809523808, -0.6190476190476191], [0.2857142857142857, -0.6666666666666666], [0.38095238095238093, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142], [0.6190476190476191, -0.6666666666666666], [0.6666666666666666, -0.5714285714285714], [0.6666666666666666, -0.047619047619047616]]], "w": 0.9047619047619047}, "p": {"l": [[[0.23809523809523808, -0.7142857142857142], [0.23809523809523808, 0.2857142857142857]], [[0.23809523809523808, -0.6666666666666666], [0.3333333333333333, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142], [0.6190476190476191, -0.6666666666666666], [0.6666666666666666, -0.6190476190476191], [0.7142857142857142, -0.5238095238095237], [0.7142857142857142, -0.23809523809523808], [0.6666666666666666, -0.14285714285714285], [0.6190476190476191, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.3333333333333333, -0.047619047619047616], [0.23809523809523808, -0.09523809523809523]]], "w": 0.9047619047619047}, "s": {"l": [[[0.19047619047619047, -0.09523809523809523], [0.2857142857142857, -0.047619047619047616], [0.47619047619047616, -0.047619047619047616], [0.5714285714285714, -0.09523809523809523], [0.6190476190476191, -0.19047619047619047], [0.6190476190476191, -0.23809523809523808], [0.5714285714285714, -0.3333333333333333], [0.47619047619047616, -0.38095238095238093], [0.3333333333333333, -0.38095238095238093], [0.23809523809523808, -0.42857142857142855], [0.19047619047619047, -0.5238095238095237], [0.19047619047619047, -0.5714285714285714], [0.23809523809523808, -0.6666666666666666], [0.3333333333333333, -0.7142857142857142], [0.47619047619047616, -0.7142857142857142], [0.5714285714285714, -0.6666666666666666]]], "w": 0.8095238095238095}, "r": {"l": [[[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -0.7142857142857142]], [[0.23809523809523808, -0.5238095238095237], [0.2857142857142857, -0.6190476190476191], [0.3333333333333333, -0.6666666666666666], [0.42857142857142855, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142]]], "w": 0.6190476190476191}, "u": {"l": [[[0.6666666666666666, -0.7142857142857142], [0.6666666666666666, -0.047619047619047616]], [[0.23809523809523808, -0.7142857142857142], [0.23809523809523808, -0.19047619047619047], [0.2857142857142857, -0.09523809523809523], [0.38095238095238093, -0.047619047619047616], [0.5238095238095237, -0.047619047619047616], [0.6190476190476191, -0.09523809523809523], [0.6666666666666666, -0.14285714285714285]]], "w": 0.9047619047619047}, "t": {"l": [[[0.09523809523809523, -0.7142857142857142], [0.47619047619047616, -0.7142857142857142]], [[0.23809523809523808, -1.0476190476190474], [0.23809523809523808, -0.19047619047619047], [0.2857142857142857, -0.09523809523809523], [0.38095238095238093, -0.047619047619047616], [0.47619047619047616, -0.047619047619047616]]], "w": 0.5714285714285714}, "w": {"l": [[[0.1428571428571428, -0.7142857142857142], [0.33333333333333326, -0.047619047619047616], [0.5238095238095237, -0.5238095238095237], [0.7142857142857142, -0.047619047619047616], [0.9047619047619047, -0.7142857142857142]]], "w": 1.0476190476190474}}, "modules": [{"layer": "B", "center": [41.0, 26.9], "pads": [], "drawings": [], "ref": "G***", "bbox": {"pos": [24.686837999999998, 23.300279], "size": [33.247436, 7.245388999999999]}}, {"layer": "F", "center": [51.699999999999996, 23.7], "pads": [{"layers": ["F"], "angle": -180.0, "pos": [50.05, 23.7], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.8999999999999999, 1.2]}, {"layers": ["F"], "angle": -180.0, "pos": [53.349999999999994, 23.7], "shape": "rect", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.8999999999999999, 1.2]}], "drawings": [], "ref": "D3", "bbox": {"pos": [49.324999, 22.524998999999998], "size": [4.750001999999999, 2.350002]}}, {"layer": "F", "center": [55.9, 24.2], "pads": [{"layers": ["F"], "angle": -0.0, "pos": [57.0, 24.2], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.7999999999999999, 2.6999999999999997]}, {"layers": ["F"], "angle": -0.0, "pos": [54.8, 24.2], "shape": "rect", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.7999999999999999, 2.6999999999999997]}], "drawings": [], "ref": "L1", "bbox": {"pos": [54.074999, 22.374999], "size": [3.6500019999999997, 3.6500019999999997]}}, {"layer": "F", "center": [23.7, 21.099999999999998], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [59.26, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [56.72, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [54.18, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [51.64, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [49.099999999999994, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [46.559999999999995, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [44.019999999999996, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [41.48, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [38.94, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [36.4, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [33.86, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [31.32, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [28.779999999999998, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [26.24, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [23.7, 21.099999999999998], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J3", "bbox": {"pos": [21.874999, 19.274998999999998], "size": [39.200002, 3.6500019999999997]}}, {"layer": "F", "center": [23.7, 36.1], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [59.26, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [56.72, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [54.18, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [51.64, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [49.099999999999994, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [46.559999999999995, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [44.019999999999996, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [41.48, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [38.94, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [36.4, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [33.86, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [31.32, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [28.779999999999998, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [26.24, 36.1], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [23.7, 36.1], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J4", "bbox": {"pos": [21.874999, 34.274999], "size": [39.200002, 3.6500019999999997]}}, {"layer": "F", "center": [54.699999999999996, 32.512], "pads": [{"layers": ["F"], "angle": -180.0, "pos": [52.625, 31.436999999999998], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [1.05, 0.65]}, {"layers": ["F"], "angle": -180.0, "pos": [56.775, 31.436999999999998], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [1.05, 0.65]}, {"layers": ["F"], "angle": -180.0, "pos": [52.625, 33.586999999999996], "shape": "rect", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.05, 0.65]}, {"layers": ["F"], "angle": -180.0, "pos": [56.775, 33.586999999999996], "shape": "rect", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.05, 0.65]}], "drawings": [], "ref": "SW1", "bbox": {"pos": [51.824999, 30.636999], "size": [5.750001999999999, 3.750002]}}, {"layer": "F", "center": [48.3, 24.9], "pads": [{"layers": ["F"], "angle": -90.0, "pos": [48.3, 23.25], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.8999999999999999, 1.2]}, {"layers": ["F"], "angle": -90.0, "pos": [48.3, 26.549999999999997], "shape": "rect", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.8999999999999999, 1.2]}], "drawings": [], "ref": "D4", "bbox": {"pos": [47.124998999999995, 22.524998999999998], "size": [2.350002, 4.750001999999999]}}, {"layer": "F", "center": [33.6, 31.4], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [33.6, 31.884999999999998], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -270.0, "pos": [33.6, 30.915], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "C10", "bbox": {"pos": [33.104999, 30.444999], "size": [0.9900019999999999, 1.910002]}}, {"layer": "F", "center": [45.5, 24.4], "pads": [{"layers": ["F"], "angle": -315.0, "pos": [45.842946999999995, 24.742946999999997], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -315.0, "pos": [45.157053, 24.057053], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "C9", "bbox": {"pos": [44.48505, 23.38505], "size": [2.0299, 2.0299]}}, {"layer": "F", "center": [34.6, 31.4], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [34.6, 31.884999999999998], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -270.0, "pos": [34.6, 30.915], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "C8", "bbox": {"pos": [34.104999, 30.444999], "size": [0.9900019999999999, 1.910002]}}, {"layer": "F", "center": [37.4, 27.299999999999997], "pads": [{"layers": ["F"], "angle": -45.0, "pos": [37.742947, 26.957053], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -45.0, "pos": [37.057052999999996, 27.642947], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "C7", "bbox": {"pos": [36.38505, 26.28505], "size": [2.0299, 2.0299]}}, {"layer": "F", "center": [41.342946999999995, 33.842946999999995], "pads": [{"layers": ["F"], "angle": -135.0, "pos": [41.0, 33.5], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -135.0, "pos": [41.685894, 34.185894], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "C6", "bbox": {"pos": [40.327996999999996, 32.827996999999996], "size": [2.0299, 2.0299]}}, {"layer": "F", "center": [48.0, 29.9], "pads": [{"layers": ["F"], "angle": -225.0, "pos": [47.657053, 30.242946999999997], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -225.0, "pos": [48.342946999999995, 29.557053], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "C5", "bbox": {"pos": [46.98505, 28.88505], "size": [2.0299, 2.0299]}}, {"layer": "F", "center": [55.3, 27.2], "pads": [{"layers": ["F"], "angle": -90.0, "pos": [55.3, 26.715], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -90.0, "pos": [55.3, 27.685], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "C3", "bbox": {"pos": [54.804998999999995, 26.244999], "size": [0.9900019999999999, 1.910002]}}, {"layer": "F", "center": [49.0, 28.2], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [49.0, 28.685], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -270.0, "pos": [49.0, 27.715], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "C2", "bbox": {"pos": [48.504999, 27.244999], "size": [0.9900019999999999, 1.910002]}}, {"layer": "F", "center": [36.9, 30.099999999999998], "pads": [{"layers": ["F"], "angle": -315.0, "pos": [37.242947, 30.442947], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -315.0, "pos": [36.557052999999996, 29.757053], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "R12", "bbox": {"pos": [35.88505, 29.08505], "size": [2.0299, 2.0299]}}, {"layer": "F", "center": [34.199999999999996, 25.4], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [34.199999999999996, 25.884999999999998], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -270.0, "pos": [34.199999999999996, 24.915], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "R11", "bbox": {"pos": [33.704999, 24.444999], "size": [0.9900019999999999, 1.910002]}}, {"layer": "F", "center": [35.199999999999996, 25.399998999999998], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [35.199999999999996, 25.884999], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -270.0, "pos": [35.199999999999996, 24.914998999999998], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "R10", "bbox": {"pos": [34.704999, 24.444998], "size": [0.9900019999999999, 1.910002]}}, {"layer": "F", "center": [31.599999999999998, 31.0], "pads": [{"layers": ["F"], "angle": -0.0, "pos": [32.085, 31.0], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -0.0, "pos": [31.115, 31.0], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "R9", "bbox": {"pos": [30.644999, 30.504998999999998], "size": [1.910002, 0.9900019999999999]}}, {"layer": "F", "center": [31.599999999999998, 26.0], "pads": [{"layers": ["F"], "angle": -0.0, "pos": [32.085, 26.0], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -0.0, "pos": [31.115, 26.0], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "R8", "bbox": {"pos": [30.644999, 25.504998999999998], "size": [1.910002, 0.9900019999999999]}}, {"layer": "F", "center": [52.599999999999994, 30.099999999999998], "pads": [{"layers": ["F"], "angle": -0.0, "pos": [53.085, 30.099999999999998], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -0.0, "pos": [52.114999999999995, 30.099999999999998], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "R7", "bbox": {"pos": [51.644999, 29.604999], "size": [1.910002, 0.9900019999999999]}}, {"layer": "F", "center": [50.9, 29.4], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [50.9, 29.884999999999998], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -270.0, "pos": [50.9, 28.915], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "R6", "bbox": {"pos": [50.404999, 28.444999], "size": [0.9900019999999999, 1.910002]}}, {"layer": "F", "center": [51.245999999999995, 33.1], "pads": [{"layers": ["F"], "angle": -90.0, "pos": [51.245999999999995, 32.615], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -90.0, "pos": [51.245999999999995, 33.585], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "R5", "bbox": {"pos": [50.750999, 32.144999], "size": [0.9900019999999999, 1.910002]}}, {"layer": "F", "center": [29.0, 32.199999999999996], "pads": [{"layers": ["F"], "angle": -0.0, "pos": [29.485, 32.199999999999996], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -0.0, "pos": [28.514999999999997, 32.199999999999996], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "R4", "bbox": {"pos": [28.044998999999997, 31.704998999999997], "size": [1.910002, 0.9900019999999999]}}, {"layer": "F", "center": [29.2, 24.9], "pads": [{"layers": ["F"], "angle": -0.0, "pos": [29.685, 24.9], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -0.0, "pos": [28.715, 24.9], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "R3", "bbox": {"pos": [28.244999, 24.404999], "size": [1.910002, 0.9900019999999999]}}, {"layer": "F", "center": [29.2, 26.0], "pads": [{"layers": ["F"], "angle": -180.0, "pos": [28.715, 26.0], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -180.0, "pos": [29.685, 26.0], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "R2", "bbox": {"pos": [28.244999, 25.504998999999998], "size": [1.910002, 0.9900019999999999]}}, {"layer": "F", "center": [29.0, 31.0], "pads": [{"layers": ["F"], "angle": -180.0, "pos": [28.514999999999997, 31.0], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "type": "smd", "size": [0.59, 0.64]}, {"layers": ["F"], "angle": -180.0, "pos": [29.485, 31.0], "shape": "roundrect", "radius": 0.1475, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.59, 0.64]}], "drawings": [], "ref": "R1", "bbox": {"pos": [28.044998999999997, 30.504998999999998], "size": [1.910002, 0.9900019999999999]}}, {"layer": "F", "center": [34.0, 28.5], "pads": [{"layers": ["F"], "angle": -90.0, "pos": [32.7375, 29.25], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.6749999999999999]}, {"layers": ["F"], "angle": -90.0, "pos": [32.7375, 28.75], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.6749999999999999]}, {"layers": ["F"], "angle": -90.0, "pos": [32.7375, 28.25], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.6749999999999999]}, {"layers": ["F"], "angle": -90.0, "pos": [32.7375, 27.75], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.6749999999999999]}, {"layers": ["F"], "angle": -90.0, "pos": [33.5, 27.237499999999997], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.6749999999999999, 0.25]}, {"layers": ["F"], "angle": -90.0, "pos": [34.0, 27.237499999999997], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.6749999999999999, 0.25]}, {"layers": ["F"], "angle": -90.0, "pos": [34.5, 27.237499999999997], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.6749999999999999, 0.25]}, {"layers": ["F"], "angle": -90.0, "pos": [35.262499999999996, 27.75], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.6749999999999999]}, {"layers": ["F"], "angle": -90.0, "pos": [35.262499999999996, 28.25], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.6749999999999999]}, {"layers": ["F"], "angle": -90.0, "pos": [35.262499999999996, 28.75], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.6749999999999999]}, {"layers": ["F"], "angle": -90.0, "pos": [35.262499999999996, 29.25], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.6749999999999999]}, {"layers": ["F"], "angle": -90.0, "pos": [34.5, 29.7625], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.6749999999999999, 0.25]}, {"layers": ["F"], "angle": -90.0, "pos": [34.0, 29.7625], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.6749999999999999, 0.25]}, {"layers": ["F"], "angle": -90.0, "pos": [33.5, 29.7625], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.6749999999999999, 0.25]}, {"layers": [], "angle": -90.0, "pos": [34.36, 28.139999999999997], "shape": "roundrect", "radius": 0.145, "offset": [0.0, 0.0], "type": "smd", "size": [0.58, 0.58]}, {"layers": [], "angle": -90.0, "pos": [33.64, 28.139999999999997], "shape": "roundrect", "radius": 0.145, "offset": [0.0, 0.0], "type": "smd", "size": [0.58, 0.58]}, {"layers": [], "angle": -90.0, "pos": [34.36, 28.86], "shape": "roundrect", "radius": 0.145, "offset": [0.0, 0.0], "type": "smd", "size": [0.58, 0.58]}, {"layers": [], "angle": -90.0, "pos": [33.64, 28.86], "shape": "roundrect", "radius": 0.145, "offset": [0.0, 0.0], "type": "smd", "size": [0.58, 0.58]}, {"layers": ["F"], "angle": -90.0, "pos": [34.0, 28.5], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.45, 1.45]}], "drawings": [], "ref": "U4", "bbox": {"pos": [32.124998999999995, 26.624999], "size": [3.750002, 3.750002]}}, {"layer": "F", "center": [59.199999999999996, 24.849999999999998], "pads": [{"layers": ["F", "B"], "angle": -0.0, "pos": [59.199999999999996, 32.47], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [59.199999999999996, 29.93], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [59.199999999999996, 27.389999999999997], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [59.199999999999996, 24.849999999999998], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J5", "bbox": {"pos": [57.374998999999995, 23.024998999999998], "size": [12.400001999999999, 11.250002]}}, {"layer": "F", "center": [53.099999999999994, 27.799999999999997], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [53.099999999999994, 28.9], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [1.06, 0.65]}, {"layers": ["F"], "angle": -270.0, "pos": [54.05, 28.9], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [1.06, 0.65]}, {"layers": ["F"], "angle": -270.0, "pos": [52.15, 28.9], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [1.06, 0.65]}, {"layers": ["F"], "angle": -270.0, "pos": [52.15, 26.7], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [1.06, 0.65]}, {"layers": ["F"], "angle": -270.0, "pos": [53.099999999999994, 26.7], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [1.06, 0.65]}, {"layers": ["F"], "angle": -270.0, "pos": [54.05, 26.7], "shape": "rect", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.06, 0.65]}], "drawings": [], "ref": "U3", "bbox": {"pos": [51.274999, 25.874999], "size": [3.6500019999999997, 3.850002]}}, {"layer": "F", "center": [42.699999999999996, 28.589948999999997], "pads": [{"layers": ["F"], "angle": -225.0, "pos": [47.075223, 29.076085], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [46.721669999999996, 29.429637999999997], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [46.368116, 29.783192], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [46.014562999999995, 30.136744999999998], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [45.66101, 30.490298], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [45.307455999999995, 30.843852], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [44.953903, 31.197405], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [44.600349, 31.550959], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [44.246795999999996, 31.904511999999997], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [43.893243, 32.258065], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [43.539688999999996, 32.611619], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [43.186136, 32.965171999999995], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [42.213864, 32.965171999999995], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [41.860310999999996, 32.611619], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [41.506757, 32.258065], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [41.153203999999995, 31.904511999999997], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [40.799651, 31.550959], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [40.446096999999995, 31.197405], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [40.092544, 30.843852], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [39.73899, 30.490298], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [39.385436999999996, 30.136744999999998], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [39.031884, 29.783192], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [38.678329999999995, 29.429637999999997], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [38.324777, 29.076085], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [38.324777, 28.103813], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [38.678329999999995, 27.750259999999997], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [39.031884, 27.396706], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [39.385436999999996, 27.043153], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [39.73899, 26.6896], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [40.092544, 26.336046], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [40.446096999999995, 25.982492999999998], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [40.799651, 25.628939], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [41.153203999999995, 25.275385999999997], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [41.506757, 24.921833], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [41.860310999999996, 24.568279], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [42.213864, 24.214726], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.25, 0.875]}, {"layers": ["F"], "angle": -225.0, "pos": [43.186136, 24.214726], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [43.539688999999996, 24.568279], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [43.893243, 24.921833], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [44.246795999999996, 25.275385999999997], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [44.600349, 25.628939], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [44.953903, 25.982492999999998], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [45.307455999999995, 26.336046], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [45.66101, 26.6896], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [46.014562999999995, 27.043153], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [46.368116, 27.396706], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [46.721669999999996, 27.750259999999997], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.25]}, {"layers": ["F"], "angle": -225.0, "pos": [47.075223, 28.103813], "shape": "roundrect", "radius": 0.0625, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.875, 0.25]}, {"layers": [], "angle": -225.0, "pos": [39.730152, 28.589948999999997], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [40.720101, 29.579898], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [41.710051, 30.569848], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [42.699999999999996, 31.559797], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [40.720101, 27.599999999999998], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [41.710051, 28.589948999999997], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [42.699999999999996, 29.579898], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [43.689949, 30.569848], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [41.710051, 26.610049999999998], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [42.699999999999996, 27.599999999999998], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [43.689949, 28.589948999999997], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [44.679899, 29.579898], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [42.699999999999996, 25.620101], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [43.689949, 26.610049999999998], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [44.679899, 27.599999999999998], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -225.0, "pos": [45.669847999999995, 28.589948999999997], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": ["F"], "angle": -225.0, "pos": [42.699999999999996, 28.589948999999997], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [5.6, 5.6]}], "drawings": [], "ref": "U2", "bbox": {"pos": [36.848439, 22.738388], "size": [11.703121999999999, 11.703121999999999]}}, {"layer": "F", "center": [29.7, 28.5], "pads": [{"layers": ["F"], "angle": -180.0, "pos": [28.599999999999998, 28.5], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [1.06, 0.65]}, {"layers": ["F"], "angle": -180.0, "pos": [28.599999999999998, 29.45], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [1.06, 0.65]}, {"layers": ["F"], "angle": -180.0, "pos": [28.599999999999998, 27.549999999999997], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [1.06, 0.65]}, {"layers": ["F"], "angle": -180.0, "pos": [30.799999999999997, 27.549999999999997], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [1.06, 0.65]}, {"layers": ["F"], "angle": -180.0, "pos": [30.799999999999997, 28.5], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [1.06, 0.65]}, {"layers": ["F"], "angle": -180.0, "pos": [30.799999999999997, 29.45], "shape": "rect", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.06, 0.65]}], "drawings": [], "ref": "U1", "bbox": {"pos": [27.774998999999998, 26.674999], "size": [3.850002, 3.6500019999999997]}}, {"layer": "F", "center": [26.369999, 28.57], "pads": [{"layers": ["F", "B"], "angle": -270.0, "pos": [25.454998999999997, 24.25], "drillsize": [0.6, 1.7], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "oblong", "type": "th", "size": [1.0, 2.1]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [25.454998999999997, 32.89], "drillsize": [0.6, 1.7], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "oblong", "type": "th", "size": [1.0, 2.1]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [21.274998999999998, 24.25], "drillsize": [0.6, 1.2], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "oblong", "type": "th", "size": [1.0, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [21.274998999999998, 32.89], "drillsize": [0.6, 1.2], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "oblong", "type": "th", "size": [1.0, 1.5999999999999999]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [24.924999, 31.459999999999997], "drillsize": [0.65, 0.65], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [0.65, 0.65]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [24.924999, 25.68], "drillsize": [0.65, 0.65], "shape": "circle", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [0.65, 0.65]}, {"layers": ["F"], "angle": -270.0, "pos": [26.369999, 31.77], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.6, 1.45]}, {"layers": ["F"], "angle": -270.0, "pos": [26.369999, 30.97], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.6, 1.45]}, {"layers": ["F"], "angle": -270.0, "pos": [26.369999, 30.32], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.3, 1.45]}, {"layers": ["F"], "angle": -270.0, "pos": [26.369999, 29.82], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.3, 1.45]}, {"layers": ["F"], "angle": -270.0, "pos": [26.369999, 29.32], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.3, 1.45]}, {"layers": ["F"], "angle": -270.0, "pos": [26.369999, 28.82], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.3, 1.45]}, {"layers": ["F"], "angle": -270.0, "pos": [26.369999, 28.32], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.3, 1.45]}, {"layers": ["F"], "angle": -270.0, "pos": [26.369999, 27.82], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.3, 1.45]}, {"layers": ["F"], "angle": -270.0, "pos": [26.369999, 27.32], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.3, 1.45]}, {"layers": ["F"], "angle": -270.0, "pos": [26.369999, 26.82], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.3, 1.45]}, {"layers": ["F"], "angle": -270.0, "pos": [26.369999, 26.169999999999998], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.6, 1.45]}, {"layers": ["F"], "angle": -270.0, "pos": [26.369999, 25.369999999999997], "shape": "rect", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.6, 1.45]}], "drawings": [], "ref": "J1", "bbox": {"pos": [18.599998, 23.75], "size": [8.495001, 9.639999999999999]}}, {"layer": "F", "center": [28.5, 33.6], "pads": [{"layers": ["F"], "angle": -180.0, "pos": [27.7125, 33.6], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.95]}, {"layers": ["F"], "angle": -180.0, "pos": [29.287499999999998, 33.6], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.875, 0.95]}], "drawings": [], "ref": "D2", "bbox": {"pos": [26.994999, 32.804998999999995], "size": [3.0500019999999997, 1.590002]}}, {"layer": "F", "center": [28.5, 23.599999999999998], "pads": [{"layers": ["F"], "angle": -180.0, "pos": [27.7125, 23.599999999999998], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.95]}, {"layers": ["F"], "angle": -180.0, "pos": [29.287499999999998, 23.599999999999998], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.875, 0.95]}], "drawings": [], "ref": "D1", "bbox": {"pos": [26.994999, 22.804999], "size": [3.0500019999999997, 1.590002]}}, {"layer": "F", "center": [56.699999999999996, 27.7], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [56.699999999999996, 28.6375], "shape": "roundrect", "radius": 0.24375, "offset": [0.0, 0.0], "type": "smd", "size": [0.975, 1.4]}, {"layers": ["F"], "angle": -270.0, "pos": [56.699999999999996, 26.7625], "shape": "roundrect", "radius": 0.24375, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.975, 1.4]}], "drawings": [], "ref": "C4", "bbox": {"pos": [55.724999, 25.994999], "size": [1.950002, 3.410002]}}, {"layer": "F", "center": [50.4, 26.599999999999998], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [50.4, 27.537499999999998], "shape": "roundrect", "radius": 0.24375, "offset": [0.0, 0.0], "type": "smd", "size": [0.975, 1.4]}, {"layers": ["F"], "angle": -270.0, "pos": [50.4, 25.662499999999998], "shape": "roundrect", "radius": 0.24375, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.975, 1.4]}], "drawings": [], "ref": "C1", "bbox": {"pos": [49.424999, 24.894999], "size": [1.950002, 3.410002]}}], "edges": [{"width": 0.049999999999999996, "endangle": 90.0, "start": [62.9, 37.1], "radius": 0.3, "startangle": 0.0, "type": "arc"}, {"width": 0.049999999999999996, "endangle": 0.0, "start": [62.9, 20.099999999999998], "radius": 0.3, "startangle": -90.0, "type": "arc"}, {"width": 0.049999999999999996, "endangle": 270.0, "start": [20.3, 20.099999999999998], "radius": 0.3, "startangle": 180.0, "type": "arc"}, {"width": 0.049999999999999996, "endangle": 180.0, "start": [20.3, 37.1], "radius": 0.3, "startangle": 90.0, "type": "arc"}, {"start": [20.0, 37.1], "end": [20.0, 20.099999999999998], "type": "segment", "width": 0.049999999999999996}, {"start": [62.9, 37.4], "end": [20.3, 37.4], "type": "segment", "width": 0.049999999999999996}, {"start": [63.199999999999996, 20.099999999999998], "end": [63.199999999999996, 37.1], "type": "segment", "width": 0.049999999999999996}, {"start": [20.3, 19.8], "end": [62.9, 19.8], "type": "segment", "width": 0.049999999999999996}], "bom": {"both": [[8, "100n", "C_0402_1005Metric", [["C2", 14], ["C3", 13], ["C5", 12], ["C6", 11], ["C7", 10], ["C8", 9], ["C9", 8], ["C10", 7]], []], [2, "10u", "C_0805_2012Metric", [["C1", 36], ["C4", 35]], []], [7, "5k1", "R_0402_1005Metric", [["R1", 26], ["R2", 25], ["R5", 22], ["R7", 20], ["R10", 17], ["R11", 16], ["R12", 15]], []], [2, "R", "R_0402_1005Metric", [["R3", 24], ["R4", 23]], []], [2, "DNP", "R_0402_1005Metric", [["R8", 19], ["R9", 18]], []], [1, "TBD", "R_0402_1005Metric", [["R6", 21]], []], [1, "4u7", "L_Taiyo-Yuden_MD-3030", [["L1", 2]], []], [2, "SS310", "D_SOD-123", [["D3", 1], ["D4", 6]], []], [2, "LED", "LED_0603_1608Metric", [["D1", 34], ["D2", 33]], []], [1, "STM32F072CBUx", "QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm", [["U2", 30]], []], [1, "USBLC6-4", "SOT-23-6", [["U1", 31]], []], [1, "ACT4088", "SOT-23-6", [["U3", 29]], []], [1, "FUSB302BMPX", "WQFN-14-1EP_2.5x2.5mm_P0.5mm_EP1.45x1.45mm", [["U4", 27]], []], [1, "SW_Push", "SW_SPST_PTS810", [["SW1", 5]], []], [1, "LOGO", "otter_laying_3411", [["G***", 0]], []], [1, "SWD", "PinHeader_1x04_P2.54mm_Horizontal", [["J5", 28]], []], [1, "1", "PinHeader_1x15_P2.54mm_Vertical", [["J3", 3]], []], [1, "2", "PinHeader_1x15_P2.54mm_Vertical", [["J4", 4]], []], [1, "USB-c", "USB-C 16Pin", [["J1", 32]], []]], "B": [[1, "LOGO", "otter_laying_3411", [["G***", 0]], []]], "F": [[8, "100n", "C_0402_1005Metric", [["C2", 14], ["C3", 13], ["C5", 12], ["C6", 11], ["C7", 10], ["C8", 9], ["C9", 8], ["C10", 7]], []], [2, "10u", "C_0805_2012Metric", [["C1", 36], ["C4", 35]], []], [7, "5k1", "R_0402_1005Metric", [["R1", 26], ["R2", 25], ["R5", 22], ["R7", 20], ["R10", 17], ["R11", 16], ["R12", 15]], []], [2, "R", "R_0402_1005Metric", [["R3", 24], ["R4", 23]], []], [2, "DNP", "R_0402_1005Metric", [["R8", 19], ["R9", 18]], []], [1, "TBD", "R_0402_1005Metric", [["R6", 21]], []], [1, "4u7", "L_Taiyo-Yuden_MD-3030", [["L1", 2]], []], [2, "SS310", "D_SOD-123", [["D3", 1], ["D4", 6]], []], [2, "LED", "LED_0603_1608Metric", [["D1", 34], ["D2", 33]], []], [1, "STM32F072CBUx", "QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm", [["U2", 30]], []], [1, "USBLC6-4", "SOT-23-6", [["U1", 31]], []], [1, "ACT4088", "SOT-23-6", [["U3", 29]], []], [1, "FUSB302BMPX", "WQFN-14-1EP_2.5x2.5mm_P0.5mm_EP1.45x1.45mm", [["U4", 27]], []], [1, "SW_Push", "SW_SPST_PTS810", [["SW1", 5]], []], [1, "SWD", "PinHeader_1x04_P2.54mm_Horizontal", [["J5", 28]], []], [1, "1", "PinHeader_1x15_P2.54mm_Vertical", [["J3", 3]], []], [1, "2", "PinHeader_1x15_P2.54mm_Vertical", [["J4", 4]], []], [1, "USB-c", "USB-C 16Pin", [["J1", 32]], []]]}, "silkscreen": {"B": [{"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "Jan Henrik 2019", "thickness": 0.09999999999999999, "pos": [49.3, 28.599999999999998], "height": 0.7}, {"width": 2.0, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "Otterpill\n", "thickness": 0.3, "pos": [49.3, 31.2], "height": 2.0}, {"width": 0.7, "angle": 90.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "3V3", "thickness": 0.09999999999999999, "pos": [61.199999999999996, 24.849999999999998], "height": 0.7}, {"width": 0.7, "angle": 90.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "DIO", "thickness": 0.09999999999999999, "pos": [61.199999999999996, 27.4], "height": 0.7}, {"width": 0.7, "angle": 90.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "CLK", "thickness": 0.09999999999999999, "pos": [61.199999999999996, 29.9], "height": 0.7}, {"width": 0.7, "angle": 90.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "GND", "thickness": 0.09999999999999999, "pos": [61.224999999999994, 32.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "GND", "thickness": 0.09999999999999999, "pos": [51.724999999999994, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB0", "thickness": 0.09999999999999999, "pos": [28.875, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB9", "thickness": 0.09999999999999999, "pos": [54.275, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB12", "thickness": 0.09999999999999999, "pos": [31.4, 22.55], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PA6", "thickness": 0.09999999999999999, "pos": [36.475, 22.45], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PA10", "thickness": 0.09999999999999999, "pos": [56.824999999999996, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PA1", "thickness": 0.09999999999999999, "pos": [49.199999999999996, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PA5", "thickness": 0.09999999999999999, "pos": [39.025, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB14", "thickness": 0.09999999999999999, "pos": [23.775, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PA3", "thickness": 0.09999999999999999, "pos": [44.074999999999996, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PA9", "thickness": 0.09999999999999999, "pos": [59.324999999999996, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB15", "thickness": 0.09999999999999999, "pos": [26.325, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PA4", "thickness": 0.09999999999999999, "pos": [41.55, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PA7", "thickness": 0.09999999999999999, "pos": [33.9, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PA2", "thickness": 0.09999999999999999, "pos": [46.6, 22.5], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB7", "thickness": 0.09999999999999999, "pos": [41.475, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "GND", "thickness": 0.09999999999999999, "pos": [56.724999999999994, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB1", "thickness": 0.09999999999999999, "pos": [31.275, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PA8", "thickness": 0.09999999999999999, "pos": [28.775, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB3", "thickness": 0.09999999999999999, "pos": [46.525, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "3V3", "thickness": 0.09999999999999999, "pos": [51.625, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB5", "thickness": 0.09999999999999999, "pos": [54.175, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB4", "thickness": 0.09999999999999999, "pos": [49.074999999999996, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PA15", "thickness": 0.09999999999999999, "pos": [36.425, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB2", "thickness": 0.09999999999999999, "pos": [38.925, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "VIN", "thickness": 0.09999999999999999, "pos": [59.275, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB8", "thickness": 0.09999999999999999, "pos": [33.824999999999996, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB9", "thickness": 0.09999999999999999, "pos": [44.025, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PB13", "thickness": 0.09999999999999999, "pos": [23.674999999999997, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "3V3", "thickness": 0.09999999999999999, "pos": [26.224999999999998, 34.725], "height": 0.7}, {"angle": [0.0], "type": "polygon", "pos": [41.0, 26.9], "polygons": [[[-14.486021, 3.240858], [-14.382202999999999, 3.1883079999999997], [-14.351505999999999, 3.1078349999999997], [-14.398304, 3.0052559999999997], [-14.435666999999999, 2.9633339999999997], [-14.531611999999999, 2.910589], [-14.669210999999999, 2.881475], [-14.814687, 2.878104], [-14.934261, 2.9025879999999997], [-14.977533999999999, 2.929467], [-15.023969999999998, 3.024777], [-15.019972999999998, 3.0691669999999998], [-14.704975999999998, 3.0691669999999998], [-14.697837999999999, 3.016904], [-14.62909, 3.0079119999999997], [-14.545205999999999, 3.0312699999999997], [-14.499599, 3.07108], [-14.501909, 3.09477], [-14.565102999999999, 3.130578], [-14.648302999999999, 3.120348], [-14.704654999999999, 3.069987], [-14.704975999999998, 3.0691669999999998], [-15.019972999999998, 3.0691669999999998], [-15.014287, 3.13229], [-14.952808999999998, 3.212192], [-14.946449999999999, 3.2158439999999997], [-14.855860999999999, 3.2421349999999998], [-14.721888, 3.2577749999999996], [-14.658584, 3.259667], [-14.486021, 3.240858]]]}, {"angle": [0.0], "type": "polygon", "pos": [41.0, 26.9], "polygons": [[[-13.794312, 3.6398919999999997], [-13.082462999999999, 3.612771], [-12.42775, 3.532456], [-11.932295, 3.4275439999999997], [-11.681296, 3.356716], [-11.485975, 3.2810789999999996], [-11.318024999999999, 3.1850989999999997], [-11.14914, 3.0532399999999997], [-10.99752, 2.9145079999999997], [-10.82766, 2.760412], [-10.637208, 2.598923], [-10.463147, 2.461241], [-10.438352, 2.442817], [-10.313791, 2.339998], [-10.151129, 2.189161], [-9.967160999999999, 2.006748], [-9.778680999999999, 1.8092009999999998], [-9.675999, 1.6965009999999998], [-9.497147, 1.497761], [-9.362884, 1.353481], [-9.262175, 1.254292], [-9.183988, 1.190821], [-9.117286, 1.153698], [-9.051036999999999, 1.133551], [-9.003268, 1.1251609999999999], [-8.845483999999999, 1.088512], [-8.693405, 1.0336189999999998], [-8.667332, 1.021183], [-8.607092999999999, 0.992386], [-8.550602999999999, 0.9754879999999999], [-8.482368, 0.9718249999999999], [-8.386894999999999, 0.9827319999999999], [-8.24869, 1.009545], [-8.052259, 1.053601], [-7.910442, 1.086443], [-7.512585, 1.181719], [-7.1202049999999995, 1.282014], [-6.716606, 1.392028], [-6.2850909999999995, 1.5164609999999998], [-5.808965, 1.66001], [-5.271532, 1.8273769999999998], [-5.217639999999999, 1.844384], [-4.507784, 2.060939], [-3.8426289999999996, 2.2483619999999997], [-3.227319, 2.4055139999999997], [-2.666998, 2.531259], [-2.16681, 2.6244579999999997], [-1.731898, 2.6839749999999998], [-1.367407, 2.708672], [-1.3060619999999998, 2.7093339999999997], [-1.129434, 2.704161], [-0.888289, 2.6898679999999997], [-0.6020639999999999, 2.668295], [-0.290194, 2.6412809999999998], [0.027881, 2.6106629999999997], [0.33272599999999997, 2.5782819999999997], [0.604903, 2.5459769999999997], [0.8249759999999999, 2.515586], [0.931333, 2.497643], [1.082767, 2.476758], [1.21657, 2.471549], [1.27278, 2.477175], [1.376226, 2.472112], [1.53722, 2.4220569999999997], [1.7384469999999999, 2.336059], [1.9132209999999998, 2.249307], [2.061538, 2.1585199999999998], [2.2065099999999997, 2.04674], [2.3712489999999997, 1.8970049999999998], [2.4764999999999997, 1.7944579999999999], [2.664011, 1.6146669999999999], [2.8716459999999997, 1.424515], [3.070635, 1.249947], [3.196166, 1.1454419999999998], [3.3912899999999997, 0.987761], [3.6121269999999996, 0.80811], [3.819242, 0.638595], [3.8735, 0.593945], [4.029748, 0.468931], [4.17533, 0.35911], [4.289661, 0.279696], [4.335357999999999, 0.25263599999999997], [4.4166609999999995, 0.199703], [4.542129, 0.10411], [4.693419, -0.019694], [4.825054, -0.133163], [5.040427, -0.309778], [5.265154, -0.47102], [5.469105, -0.595577], [5.506196, -0.614939], [5.703891, -0.717005], [5.928425, -0.836996], [6.133518, -0.950152], [6.146767, -0.9576389999999999], [6.825093, -1.317785], [7.584095, -1.675458], [8.185698, -1.933673], [8.950751, -2.2501539999999998], [10.793624999999999, -2.200265], [11.241004, -2.189441], [11.713229, -2.180325], [12.192321, -2.1731089999999997], [12.660302, -2.167986], [13.099193, -2.165151], [13.491016, -2.164797], [13.817791999999999, -2.167116], [13.843, -2.1674569999999997], [14.195203999999999, -2.172654], [14.475791, -2.177901], [14.697804, -2.184346], [14.874283, -2.193139], [15.018272, -2.205429], [15.142812, -2.222363], [15.260945999999999, -2.245092], [15.385715999999999, -2.274763], [15.530164, -2.312526], [15.550066, -2.3178229999999997], [15.783036999999998, -2.386073], [16.021518999999998, -2.4663839999999997], [16.233636999999998, -2.547508], [16.357774, -2.602869], [16.542338, -2.7016999999999998], [16.704712, -2.8026739999999997], [16.831954, -2.8961509999999997], [16.911122, -2.972489], [16.929273, -3.0220469999999997], [16.926201, -3.0263079999999998], [16.875438, -3.028883], [16.763116, -3.011597], [16.609071, -2.9779], [16.524034, -2.9563539999999997], [16.21162, -2.8968439999999998], [15.832866999999998, -2.862853], [15.401848999999999, -2.85341], [14.932640999999998, -2.86754], [14.439319, -2.904271], [13.935958999999999, -2.9626289999999997], [13.436634999999999, -3.041642], [12.955421999999999, -3.1403369999999997], [12.615333, -3.226559], [12.378221, -3.290393], [12.170912, -3.3403099999999997], [11.975821, -3.378637], [11.775367, -3.407699], [11.551966, -3.429824], [11.288034999999999, -3.4473369999999997], [10.96599, -3.462564], [10.773833, -3.470195], [10.480172999999999, -3.483005], [10.207132999999999, -3.497922], [9.968625, -3.5139479999999996], [9.778565, -3.5300849999999997], [9.650865, -3.545336], [9.609945999999999, -3.553652], [9.472984, -3.578071], [9.277928, -3.5916129999999997], [9.050589, -3.5947199999999997], [8.81678, -3.587833], [8.602311, -3.5713939999999997], [8.432996, -3.545845], [8.382, -3.532644], [8.224526, -3.501112], [7.991917, -3.480698], [7.6930629999999995, -3.4721309999999996], [7.641165999999999, -3.47191], [7.440224, -3.4659069999999996], [7.173489, -3.449245], [6.852525, -3.423307], [6.488897, -3.38948], [6.094169, -3.3491459999999997], [5.679905, -3.303692], [5.257671, -3.254502], [4.83903, -3.20296], [4.435547, -3.150452], [4.058786, -3.0983609999999997], [3.720312, -3.0480739999999997], [3.431689, -3.0009729999999997], [3.204482, -2.9584449999999998], [3.052184, -2.9224319999999997], [2.973646, -2.90645], [2.8949469999999997, -2.911618], [2.794637, -2.94354], [2.651265, -3.007819], [2.5653509999999997, -3.0495959999999998], [2.373389, -3.1348759999999998], [2.172606, -3.2093559999999997], [2.000202, -3.259537], [1.9685, -3.2662169999999997], [1.8521189999999998, -3.279487], [1.655206, -3.291022], [1.3818789999999999, -3.300718], [1.036257, -3.308471], [0.622458, -3.314176], [0.144601, -3.3177309999999998], [-0.111803, -3.318657], [-0.556649, -3.3195029999999996], [-0.924488, -3.3194679999999996], [-1.222974, -3.318288], [-1.459763, -3.315698], [-1.642512, -3.311436], [-1.7788769999999998, -3.3052379999999997], [-1.8765129999999999, -3.2968409999999997], [-1.9430759999999998, -3.28598], [-1.9862229999999998, -3.2723929999999997], [-2.01361, -3.255816], [-2.016803, -3.2530799999999997], [-2.028528, -3.240914], [-2.038185, -3.230206], [-2.050961, -3.2209339999999997], [-2.0720389999999997, -3.213079], [-2.106605, -3.206622], [-2.159843, -3.2015409999999997], [-2.236939, -3.197816], [-2.343076, -3.195429], [-2.483441, -3.1943569999999997], [-2.663218, -3.194582], [-2.8875919999999997, -3.196084], [-3.161748, -3.198841], [-3.490871, -3.2028339999999997], [-3.8801449999999997, -3.208043], [-4.334756, -3.214447], [-4.859888, -3.222028], [-5.460726, -3.230763], [-5.947833999999999, -3.237825], [-6.330578999999999, -3.242175], [-6.698148, -3.244116], [-7.0388329999999995, -3.2437449999999997], [-7.340927, -3.241161], [-7.5927229999999994, -3.236458], [-7.782513, -3.229736], [-7.893428999999999, -3.2217179999999996], [-8.06368, -3.2036029999999998], [-8.173615, -3.199947], [-8.246813999999999, -3.2137979999999997], [-8.306854999999999, -3.2482029999999997], [-8.346751, -3.2802979999999997], [-8.476966, -3.3541149999999997], [-8.643777, -3.401576], [-8.665989999999999, -3.404883], [-8.752746, -3.410821], [-8.913719, -3.416404], [-9.138461, -3.4214719999999996], [-9.416521, -3.425868], [-9.737451, -3.429433], [-10.090802, -3.432009], [-10.466123999999999, -3.4334369999999996], [-10.562166999999999, -3.4335959999999996], [-10.954848, -3.434161], [-11.339728, -3.4348739999999998], [-11.70425, -3.4356999999999998], [-12.035853999999999, -3.4366049999999997], [-12.321981, -3.437553], [-12.550070999999999, -3.4385109999999997], [-12.707566, -3.439443], [-12.721167, -3.439552], [-12.970851, -3.437909], [-13.245472, -3.4302289999999998], [-13.500413, -3.4179519999999997], [-13.597945999999999, -3.411225], [-13.793916, -3.3933609999999996], [-13.920615, -3.37419], [-13.993402, -3.3499299999999996], [-14.027636999999999, -3.316799], [-14.032822999999999, -3.304135], [-14.042015999999998, -3.209568], [-14.001586, -3.12395], [-13.905025, -3.0434859999999997], [-13.745825, -2.96438], [-13.517481, -2.8828359999999997], [-13.213484, -2.795057], [-13.116256, -2.769449], [-12.870823, -2.700652], [-12.614389, -2.620126], [-12.37962, -2.538575], [-12.219484, -2.4755819999999997], [-11.858957, -2.3207009999999997], [-12.000264, -2.123434], [-12.076735999999999, -2.002087], [-12.184199999999999, -1.8095439999999998], [-12.319505, -1.552087], [-12.479498999999999, -1.2359959999999999], [-12.661028, -0.867551], [-12.860942, -0.453034], [-13.076087, 0.0012749999999999999], [-13.204127999999999, 0.275202], [-13.558703, 1.037237], [-13.986602, 1.2353159999999999], [-14.214144999999998, 1.333608], [-14.483319, 1.4392449999999999], [-14.754163, 1.536956], [-14.912289, 1.589021], [-15.221058999999999, 1.6991649999999998], [-15.511623, 1.8283699999999998], [-15.769843, 1.968508], [-15.981580999999998, 2.11145], [-16.132696, 2.2490669999999997], [-16.185803, 2.321176], [-16.240887, 2.462421], [-16.252209999999998, 2.519574], [-16.121423999999998, 2.519574], [-16.085914, 2.433022], [-16.027117, 2.350917], [-15.921111999999999, 2.2450099999999997], [-15.758965, 2.1351199999999997], [-15.534092999999999, 2.0178309999999997], [-15.239915, 1.889726], [-14.869845999999999, 1.747388], [-14.851049, 1.7405], [-14.483087999999999, 1.603195], [-14.186732, 1.485695], [-13.95258, 1.383181], [-13.771231, 1.290837], [-13.633281, 1.203846], [-13.529328999999999, 1.1173899999999999], [-13.449973, 1.026651], [-13.445229, 1.020198], [-13.357066, 0.894457], [-13.284115, 0.7764829999999999], [-13.217229, 0.6475409999999999], [-13.14726, 0.488899], [-13.065057999999999, 0.28182199999999996], [-12.996839, 0.10200999999999999], [-12.942122, -0.04235], [-12.892641999999999, -0.16735799999999998], [-12.842682, -0.284062], [-12.786520999999999, -0.403511], [-12.71844, -0.536756], [-12.632719999999999, -0.6948449999999999], [-12.523641, -0.888828], [-12.385484, -1.1297549999999998], [-12.212531, -1.428675], [-12.138297999999999, -1.5566609999999999], [-11.981276999999999, -1.8235089999999998], [-11.859167, -2.021765], [-11.767555, -2.157817], [-11.702024999999999, -2.238054], [-11.658164, -2.268863], [-11.646136, -2.2689049999999997], [-11.557879999999999, -2.2474529999999997], [-11.439731, -2.2220709999999997], [-11.437597, -2.22164], [-11.34072, -2.189479], [-11.317648, -2.142782], [-11.321361, -2.12988], [-11.370678, -1.9475419999999999], [-11.364234, -1.772854], [-11.345403, -1.688434], [-11.299419, -1.546039], [-11.232501, -1.379313], [-11.153595, -1.206132], [-11.071646999999999, -1.0443719999999999], [-10.995605, -0.9119079999999999], [-10.934414, -0.826616], [-10.902911, -0.804333], [-10.887271, -0.831882], [-10.907397999999999, -0.918229], [-10.965029, -1.068927], [-11.038252, -1.2372079999999999], [-11.120498999999999, -1.4341899999999999], [-11.189143999999999, -1.624318], [-11.235543999999999, -1.782149], [-11.250338, -1.8616249999999999], [-11.254909, -1.9842119999999999], [-11.230117, -2.069426], [-11.16096, -2.155008], [-11.116207, -2.199054], [-11.028426, -2.289678], [-10.973575, -2.358432], [-10.964334, -2.378971], [-10.996347, -2.409941], [-11.06837, -2.408111], [-11.144374, -2.377922], [-11.172879, -2.3532599999999997], [-11.206351999999999, -2.3298989999999997], [-11.26323, -2.326136], [-11.358637, -2.344525], [-11.507702, -2.387622], [-11.654313, -2.434592], [-11.871514999999999, -2.505305], [-12.134592999999999, -2.590595], [-12.408792, -2.679211], [-12.6365, -2.752555], [-12.947313, -2.8556049999999997], [-13.220661999999999, -2.952423], [-13.448324, -3.039644], [-13.622078, -3.1138999999999997], [-13.733702, -3.171827], [-13.774972, -3.2100579999999996], [-13.772105999999999, -3.217465], [-13.704948, -3.241409], [-13.567274999999999, -3.263139], [-13.373223999999999, -3.2819939999999996], [-13.13693, -3.2973149999999998], [-12.872532, -3.30844], [-12.594165, -3.314711], [-12.315968, -3.315466], [-12.052076, -3.3100449999999997], [-11.916834, -3.304121], [-11.683454, -3.2949479999999998], [-11.386066, -3.288515], [-11.04529, -3.2849649999999997], [-10.681745999999999, -3.284442], [-10.316053, -3.287088], [-10.054167, -3.2912109999999997], [-9.616938, -3.298857], [-9.258155, -3.3016189999999996], [-8.971663, -3.2978639999999997], [-8.751304, -3.2859559999999997], [-8.590919999999999, -3.2642629999999997], [-8.484354999999999, -3.231149], [-8.425452, -3.184981], [-8.416236999999999, -3.152745], [-1.8255489999999999, -3.152745], [-1.802752, -3.1702049999999997], [-1.756834, -3.1830369999999997], [-1.6683089999999998, -3.1931749999999997], [-1.5066869999999999, -3.200287], [-1.2834759999999998, -3.204576], [-1.010184, -3.206247], [-0.698319, -3.205504], [-0.35938899999999996, -3.20255], [-0.004902, -3.19759], [0.353635, -3.190826], [0.7047129999999999, -3.1824649999999997], [1.036824, -3.1727079999999996], [1.338461, -3.1617599999999997], [1.598115, -3.149826], [1.8042779999999998, -3.137108], [1.945442, -3.123811], [1.989739, -3.116649], [2.159917, -3.074474], [2.319619, -3.0263229999999997], [2.413073, -2.99137], [2.482099, -2.959495], [2.503698, -2.941672], [2.468285, -2.935882], [2.366275, -2.940107], [2.2177219999999997, -2.9502289999999998], [2.022199, -2.956295], [1.763239, -2.953149], [1.461415, -2.942104], [1.1372989999999998, -2.924474], [0.811465, -2.90157], [0.504486, -2.874704], [0.23693399999999998, -2.8451899999999997], [0.029383, -2.814339], [0.0, -2.8087489999999997], [-0.176177, -2.766625], [-0.33794199999999996, -2.715961], [-0.451435, -2.6674219999999997], [-0.454796, -2.665499], [-0.5920909999999999, -2.585528], [-0.899296, -2.749567], [-1.100218, -2.848432], [-1.332015, -2.95012], [-1.544602, -3.0326649999999997], [-1.545167, -3.032864], [-1.7062419999999998, -3.090805], [-1.796541, -3.128522], [-1.8255489999999999, -3.152745], [-8.416236999999999, -3.152745], [-8.408054, -3.1241239999999997], [-8.426003, -3.046944], [-8.473142, -2.9518079999999998], [-8.514626999999999, -2.882608], [-8.587216999999999, -2.761584], [-8.618924999999999, -2.685765], [-8.614669, -2.629146], [-8.579371, -2.565725], [-8.575650999999999, -2.560034], [-8.492225, -2.463494], [-8.409691, -2.4166749999999997], [-8.352212, -2.428677], [-8.356852, -2.475389], [-8.396371, -2.5324899999999997], [-8.448122, -2.601933], [-8.459586, -2.669378], [-8.427726, -2.758475], [-8.350249999999999, -2.891674], [-8.233834, -3.0792479999999998], [-7.747, -3.10596], [-7.6142319999999994, -3.11021], [-7.406231999999999, -3.112892], [-7.13242, -3.114045], [-6.802217, -3.113711], [-6.42504, -3.111928], [-6.010312, -3.1087369999999996], [-5.567451, -3.10418], [-5.1058769999999996, -3.098295], [-4.7625, -3.093184], [-4.210316, -3.084072], [-3.736173, -3.0753299999999997], [-3.33345, -3.066709], [-2.995523, -3.0579549999999998], [-2.71577, -3.0488199999999996], [-2.4875689999999997, -3.0390509999999997], [-2.3042979999999997, -3.028397], [-2.159332, -3.016607], [-2.046051, -3.003431], [-1.9578309999999999, -2.988617], [-1.947334, -2.986447], [-1.59072, -2.901452], [-1.291539, -2.8056929999999998], [-1.0225629999999999, -2.687388], [-0.756566, -2.534753], [-0.499243, -2.359749], [-0.28759799999999996, -2.218393], [-0.082047, -2.099974], [0.10171, -2.012124], [0.247974, -1.9624769999999998], [0.331178, -1.95603], [0.33094199999999996, -1.982611], [0.262191, -2.0454], [0.130582, -2.1397749999999998], [0.010582999999999999, -2.218039], [-0.147363, -2.3194559999999997], [-0.274814, -2.403699], [-0.357224, -2.460997], [-0.381, -2.481141], [-0.346974, -2.507285], [-0.260775, -2.5565659999999997], [-0.207732, -2.58434], [-0.033303, -2.6562729999999997], [0.184421, -2.713951], [0.454731, -2.758771], [0.786921, -2.7921259999999997], [1.19028, -2.8154109999999997], [1.378668, -2.8223789999999997], [1.814681, -2.829172], [2.1755269999999998, -2.8176479999999997], [2.469121, -2.7857979999999998], [2.703375, -2.731613], [2.886205, -2.653085], [3.025525, -2.5482039999999997], [3.129248, -2.414961], [3.15319, -2.3719099999999997], [3.217367, -2.282513], [3.3042849999999997, -2.200344], [3.390503, -2.143405], [3.452582, -2.1296999999999997], [3.4615289999999996, -2.135084], [3.450072, -2.177231], [3.392247, -2.2552369999999997], [3.352023, -2.299232], [3.270702, -2.394014], [3.222771, -2.4709119999999998], [3.217333, -2.491485], [3.1882639999999998, -2.55082], [3.115299, -2.6362389999999998], [3.080898, -2.669386], [3.0033469999999998, -2.744107], [2.965403, -2.788588], [2.965639, -2.794], [3.012923, -2.799598], [3.1285559999999997, -2.81499], [3.297056, -2.838068], [3.502945, -2.866726], [3.590913, -2.879085], [4.239966, -2.969071], [4.852188, -3.051109], [5.421749999999999, -3.12452], [5.9428209999999995, -3.188631], [6.4095699999999995, -3.2427639999999998], [6.816165, -3.2862449999999996], [7.156777, -3.318397], [7.425573999999999, -3.338545], [7.616725, -3.346012], [7.619999999999999, -3.3460289999999997], [7.846031, -3.352103], [8.070155999999999, -3.3669119999999997], [8.261792999999999, -3.388009], [8.360833, -3.4053419999999996], [8.606183, -3.44354], [8.899341999999999, -3.462992], [9.205404, -3.463021], [9.489462, -3.4429469999999998], [9.5885, -3.429235], [9.719826, -3.4132019999999996], [9.914209999999999, -3.396468], [10.150075, -3.380568], [10.405842, -3.36704], [10.541, -3.361398], [10.792027, -3.349439], [11.032005999999999, -3.3318399999999997], [11.278279, -3.3064649999999998], [11.548186999999999, -3.271177], [11.859074, -3.2238409999999997], [12.228283, -3.16232], [12.403666, -3.131955], [12.890084, -3.047657], [13.304618999999999, -2.977585], [13.658617, -2.920442], [13.963427999999999, -2.8749339999999997], [14.2304, -2.8397669999999997], [14.470880999999999, -2.813644], [14.696219, -2.7952719999999998], [14.917762999999999, -2.783356], [15.146859999999998, -2.7765999999999997], [15.394858, -2.77371], [15.546878999999999, -2.773297], [15.809242, -2.772564], [16.040350999999998, -2.770782], [16.227762, -2.76814], [16.359033, -2.76483], [16.421720999999998, -2.761041], [16.425296, -2.7598689999999997], [16.385918, -2.726346], [16.275375, -2.678711], [16.105271, -2.620681], [15.887210999999999, -2.555971], [15.632797, -2.488299], [15.405678, -2.4333169999999997], [14.753165999999998, -2.282134], [12.170833, -2.3146489999999997], [11.547234999999999, -2.322518], [11.002547, -2.329336], [10.531016, -2.335037], [10.12689, -2.339556], [9.784417999999999, -2.3428269999999998], [9.497848, -2.344785], [9.261428, -2.3453649999999997], [9.069405999999999, -2.3445], [8.916031, -2.342127], [8.79555, -2.338179], [8.702212, -2.332591], [8.630264, -2.325297], [8.573955999999999, -2.316232], [8.527536, -2.305331], [8.485251, -2.292529], [8.441348999999999, -2.277759], [8.424332999999999, -2.272045], [8.163897, -2.1727559999999997], [7.845669, -2.030122], [7.480982, -1.8496869999999999], [7.081170999999999, -1.636995], [6.773333, -1.4643709999999999], [6.515098999999999, -1.3168229999999999], [6.232199, -1.155665], [5.954425, -0.997841], [5.71157, -0.8602949999999999], [5.6514999999999995, -0.8263769999999999], [5.349913, -0.6529699999999999], [5.0803259999999995, -0.489587], [4.829082, -0.326332], [4.582528, -0.153305], [4.327008999999999, 0.039391999999999996], [4.048871, 0.261657], [3.7344579999999996, 0.523388], [3.422552, 0.789381], [3.242985, 0.9415469999999999], [3.020124, 1.127171], [2.777074, 1.327183], [2.536942, 1.522513], [2.4277189999999997, 1.610437], [2.1239179999999998, 1.846736], [1.852107, 2.038451], [1.597009, 2.191143], [1.343341, 2.310374], [1.075824, 2.4017079999999997], [0.779177, 2.4707049999999997], [0.438121, 2.522929], [0.037376, 2.563941], [-0.254, 2.5866249999999997], [-0.781756, 2.61288], [-1.254765, 2.6091439999999997], [-1.6984409999999999, 2.5726839999999997], [-2.1381959999999998, 2.500771], [-2.599442, 2.390672], [-2.9104609999999997, 2.301093], [-3.1224849999999997, 2.239881], [-3.391046, 2.167057], [-3.690041, 2.089439], [-3.993371, 2.013846], [-4.191, 1.966561], [-4.495329, 1.890828], [-4.825400999999999, 1.8013139999999999], [-5.150982, 1.7066869999999998], [-5.441839, 1.61561], [-5.585455, 1.566859], [-5.853444, 1.475838], [-6.146273, 1.382496], [-6.4306399999999995, 1.297107], [-6.673245, 1.229943], [-6.699133, 1.223301], [-6.928510999999999, 1.168361], [-7.194463, 1.109906], [-7.481158, 1.050878], [-7.772767999999999, 0.994216], [-8.053461, 0.9428599999999999], [-8.307407999999999, 0.8997499999999999], [-8.518778, 0.867825], [-8.671743, 0.850026], [-8.723567, 0.847325], [-8.879517, 0.859996], [-9.037851999999999, 0.894662], [-9.183181, 0.9443459999999999], [-9.300112, 1.002073], [-9.373254, 1.060867], [-9.387216, 1.1137519999999999], [-9.364238, 1.137704], [-9.377286999999999, 1.1750369999999999], [-9.442554, 1.26039], [-9.550417999999999, 1.38395], [-9.691258999999999, 1.535904], [-9.855455, 1.706442], [-10.033386, 1.885749], [-10.215432, 2.064015], [-10.391973, 2.231426], [-10.553386999999999, 2.378171], [-10.690054, 2.494437], [-10.710334, 2.510623], [-10.87318, 2.6451089999999997], [-11.047984999999999, 2.798666], [-11.154834, 2.897986], [-11.287329999999999, 3.017414], [-11.412246999999999, 3.106115], [-11.551815, 3.17481], [-11.728266, 3.234222], [-11.963830999999999, 3.2950709999999996], [-11.992168999999999, 3.3018069999999997], [-12.783515, 3.4476389999999997], [-13.577973, 3.510665], [-13.796171999999999, 3.513667], [-14.384901999999999, 3.513667], [-15.119368, 3.262472], [-15.382489, 3.169375], [-15.602056, 3.085466], [-15.767797999999999, 3.015012], [-15.869444, 2.96228], [-15.896167, 2.939717], [-15.946677999999999, 2.8582509999999997], [-16.017794, 2.7477169999999997], [-16.033751, 2.723366], [-16.103835, 2.605021], [-16.121423999999998, 2.519574], [-16.252209999999998, 2.519574], [-16.278869999999998, 2.654124], [-16.287978, 2.744509], [-16.308161, 3.026834], [-15.376142999999999, 3.3337499999999998], [-14.444123999999999, 3.6406669999999997], [-13.794312, 3.6398919999999997]]]}], "F": [{"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PB0", "thickness": 0.09999999999999999, "pos": [28.825, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PB14", "thickness": 0.09999999999999999, "pos": [23.724999999999998, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PB15", "thickness": 0.09999999999999999, "pos": [26.275, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PB12", "thickness": 0.09999999999999999, "pos": [31.349999999999998, 22.45], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PA7", "thickness": 0.09999999999999999, "pos": [33.85, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PA6", "thickness": 0.09999999999999999, "pos": [36.425, 22.55], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PA5", "thickness": 0.09999999999999999, "pos": [38.975, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PA4", "thickness": 0.09999999999999999, "pos": [41.5, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PA3", "thickness": 0.09999999999999999, "pos": [44.025, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PA2", "thickness": 0.09999999999999999, "pos": [46.55, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PA1", "thickness": 0.09999999999999999, "pos": [49.15, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "GND", "thickness": 0.09999999999999999, "pos": [51.675, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PB9", "thickness": 0.09999999999999999, "pos": [54.224999999999994, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PA10", "thickness": 0.09999999999999999, "pos": [56.775, 22.5], "height": 0.7}, {"width": 0.7, "angle": 180.0, "attr": [], "horiz_justify": 0, "text": "PA9", "thickness": 0.09999999999999999, "pos": [59.275, 22.5], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "VIN", "thickness": 0.09999999999999999, "pos": [59.275, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "GND", "thickness": 0.09999999999999999, "pos": [56.724999999999994, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "PB5", "thickness": 0.09999999999999999, "pos": [54.175, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "3V3", "thickness": 0.09999999999999999, "pos": [51.625, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "PB4", "thickness": 0.09999999999999999, "pos": [49.074999999999996, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "PB3", "thickness": 0.09999999999999999, "pos": [46.525, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "PB9", "thickness": 0.09999999999999999, "pos": [44.025, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "PB7", "thickness": 0.09999999999999999, "pos": [41.475, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "PB2", "thickness": 0.09999999999999999, "pos": [38.925, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "PA15", "thickness": 0.09999999999999999, "pos": [36.425, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "PB8", "thickness": 0.09999999999999999, "pos": [33.824999999999996, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "PB1", "thickness": 0.09999999999999999, "pos": [31.275, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "PA8", "thickness": 0.09999999999999999, "pos": [28.775, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "PB13", "thickness": 0.09999999999999999, "pos": [23.674999999999997, 34.725], "height": 0.7}, {"width": 0.7, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "3V3", "thickness": 0.09999999999999999, "pos": [26.224999999999998, 34.725], "height": 0.7}, {"width": 0.7, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "DIO", "thickness": 0.09999999999999999, "pos": [57.849999999999994, 27.4], "height": 0.7}, {"width": 0.7, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "CLK", "thickness": 0.09999999999999999, "pos": [57.849999999999994, 29.9], "height": 0.7}, {"width": 0.7, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "GND", "thickness": 0.09999999999999999, "pos": [57.824999999999996, 32.5], "height": 0.7}, {"width": 0.7, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "CLK", "thickness": 0.09999999999999999, "pos": [61.25, 29.9], "height": 0.7}, {"width": 0.7, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "DIO", "thickness": 0.09999999999999999, "pos": [61.25, 27.4], "height": 0.7}, {"width": 0.7, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "GND", "thickness": 0.09999999999999999, "pos": [61.224999999999994, 32.5], "height": 0.7}, {"width": 0.7, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "3V3", "thickness": 0.09999999999999999, "pos": [61.25, 24.849999999999998], "height": 0.7}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "DFU", "thickness": 0.15, "pos": [54.849999999999994, 30.25], "height": 1.0}, {"width": 1.2, "angle": 0.0, "attr": [], "horiz_justify": -1, "text": "Status", "thickness": 0.15, "pos": [29.9, 33.5], "height": 1.2}, {"width": 1.2, "angle": 0.0, "attr": [], "horiz_justify": -1, "text": "Power", "thickness": 0.15, "pos": [29.9, 23.7], "height": 1.2}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "D3", "thickness": 0.09999999999999999, "pos": [52.05, 25.075], "height": 0.5}, {"start": [53.949999999999996, 24.549999999999997], "end": [50.05, 24.549999999999997], "type": "segment", "width": 0.12}, {"start": [53.949999999999996, 22.849999999999998], "end": [50.05, 22.849999999999998], "type": "segment", "width": 0.12}, {"start": [53.949999999999996, 24.549999999999997], "end": [53.949999999999996, 22.849999999999998], "type": "segment", "width": 0.12}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "L1", "thickness": 0.09999999999999999, "pos": [53.724999999999994, 25.4], "height": 0.5}, {"start": [54.4, 25.799999999999997], "end": [57.4, 25.799999999999997], "type": "segment", "width": 0.12}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "SW1", "thickness": 0.09999999999999999, "pos": [55.324999999999996, 33.8], "height": 0.5}, {"start": [52.5, 34.211999999999996], "end": [56.9, 34.211999999999996], "type": "segment", "width": 0.12}, {"start": [56.9, 34.211999999999996], "end": [56.9, 34.092], "type": "segment", "width": 0.12}, {"start": [56.9, 33.082], "end": [56.9, 31.942], "type": "segment", "width": 0.12}, {"start": [56.9, 30.932], "end": [56.9, 30.811999999999998], "type": "segment", "width": 0.12}, {"start": [56.9, 30.811999999999998], "end": [52.5, 30.811999999999998], "type": "segment", "width": 0.12}, {"start": [52.5, 30.811999999999998], "end": [52.5, 30.932], "type": "segment", "width": 0.12}, {"start": [52.5, 31.942], "end": [52.5, 33.082], "type": "segment", "width": 0.12}, {"start": [52.5, 34.092], "end": [52.5, 34.211999999999996], "type": "segment", "width": 0.12}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "D4", "thickness": 0.09999999999999999, "pos": [46.725, 25.549999999999997], "height": 0.5}, {"start": [47.3, 27.15], "end": [47.3, 23.25], "type": "segment", "width": 0.12}, {"start": [49.3, 27.15], "end": [49.3, 23.25], "type": "segment", "width": 0.12}, {"start": [47.3, 27.15], "end": [49.3, 27.15], "type": "segment", "width": 0.12}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "C10", "thickness": 0.09999999999999999, "pos": [32.475, 31.974999999999998], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "C9", "thickness": 0.09999999999999999, "pos": [46.327315, 23.875], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "C8", "thickness": 0.09999999999999999, "pos": [35.55, 32.1], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "C7", "thickness": 0.09999999999999999, "pos": [36.775, 26.724999999999998], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "C6", "thickness": 0.09999999999999999, "pos": [40.1, 34.05], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "C5", "thickness": 0.09999999999999999, "pos": [48.775, 30.525], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "C3", "thickness": 0.09999999999999999, "pos": [55.324999999999996, 28.45], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "C2", "thickness": 0.09999999999999999, "pos": [49.449999999999996, 29.5], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R12", "thickness": 0.09999999999999999, "pos": [36.275, 31.099999999999998], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R11", "thickness": 0.09999999999999999, "pos": [33.074999999999996, 25.15], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R10", "thickness": 0.09999999999999999, "pos": [36.425, 25.399998999999998], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R9", "thickness": 0.09999999999999999, "pos": [31.224999999999998, 31.825], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R8", "thickness": 0.09999999999999999, "pos": [31.599999999999998, 25.224999999999998], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R7", "thickness": 0.09999999999999999, "pos": [51.625, 30.924999999999997], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R6", "thickness": 0.09999999999999999, "pos": [50.349999999999994, 30.7], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R5", "thickness": 0.09999999999999999, "pos": [50.3, 33.824999999999996], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R4", "thickness": 0.09999999999999999, "pos": [27.575, 32.449999999999996], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R3", "thickness": 0.09999999999999999, "pos": [27.775, 24.924999999999997], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R2", "thickness": 0.09999999999999999, "pos": [28.299999999999997, 26.799999999999997], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R1", "thickness": 0.09999999999999999, "pos": [28.349999999999998, 30.25], "height": 0.5}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "U4", "thickness": 0.09999999999999999, "pos": [35.574999999999996, 30.299999999999997], "height": 0.5}, {"start": [32.64, 29.634999999999998], "end": [32.64, 29.86], "type": "segment", "width": 0.12}, {"start": [35.36, 27.139999999999997], "end": [34.885, 27.139999999999997], "type": "segment", "width": 0.12}, {"start": [35.36, 27.365], "end": [35.36, 27.139999999999997], "type": "segment", "width": 0.12}, {"start": [35.36, 29.86], "end": [34.885, 29.86], "type": "segment", "width": 0.12}, {"start": [35.36, 29.634999999999998], "end": [35.36, 29.86], "type": "segment", "width": 0.12}, {"start": [32.64, 27.139999999999997], "end": [33.115, 27.139999999999997], "type": "segment", "width": 0.12}, {"start": [32.64, 27.365], "end": [32.64, 27.139999999999997], "type": "segment", "width": 0.12}, {"start": [57.93, 23.58], "end": [59.199999999999996, 23.58], "type": "segment", "width": 0.12}, {"start": [57.93, 24.849999999999998], "end": [57.93, 23.58], "type": "segment", "width": 0.12}, {"start": [60.242929, 32.85], "end": [60.64, 32.85], "type": "segment", "width": 0.12}, {"start": [60.242929, 32.089999999999996], "end": [60.64, 32.089999999999996], "type": "segment", "width": 0.12}, {"start": [69.3, 32.85], "end": [63.3, 32.85], "type": "segment", "width": 0.12}, {"start": [69.3, 32.089999999999996], "end": [69.3, 32.85], "type": "segment", "width": 0.12}, {"start": [63.3, 32.089999999999996], "end": [69.3, 32.089999999999996], "type": "segment", "width": 0.12}, {"start": [60.64, 31.2], "end": [63.3, 31.2], "type": "segment", "width": 0.12}, {"start": [60.242929, 30.31], "end": [60.64, 30.31], "type": "segment", "width": 0.12}, {"start": [60.242929, 29.549999999999997], "end": [60.64, 29.549999999999997], "type": "segment", "width": 0.12}, {"start": [69.3, 30.31], "end": [63.3, 30.31], "type": "segment", "width": 0.12}, {"start": [69.3, 29.549999999999997], "end": [69.3, 30.31], "type": "segment", "width": 0.12}, {"start": [63.3, 29.549999999999997], "end": [69.3, 29.549999999999997], "type": "segment", "width": 0.12}, {"start": [60.64, 28.66], "end": [63.3, 28.66], "type": "segment", "width": 0.12}, {"start": [60.242929, 27.77], "end": [60.64, 27.77], "type": "segment", "width": 0.12}, {"start": [60.242929, 27.009999999999998], "end": [60.64, 27.009999999999998], "type": "segment", "width": 0.12}, {"start": [69.3, 27.77], "end": [63.3, 27.77], "type": "segment", "width": 0.12}, {"start": [69.3, 27.009999999999998], "end": [69.3, 27.77], "type": "segment", "width": 0.12}, {"start": [63.3, 27.009999999999998], "end": [69.3, 27.009999999999998], "type": "segment", "width": 0.12}, {"start": [60.64, 26.119999999999997], "end": [63.3, 26.119999999999997], "type": "segment", "width": 0.12}, {"start": [60.309999999999995, 25.23], "end": [60.64, 25.23], "type": "segment", "width": 0.12}, {"start": [60.309999999999995, 24.47], "end": [60.64, 24.47], "type": "segment", "width": 0.12}, {"start": [63.3, 25.13], "end": [69.3, 25.13], "type": "segment", "width": 0.12}, {"start": [63.3, 25.009999999999998], "end": [69.3, 25.009999999999998], "type": "segment", "width": 0.12}, {"start": [63.3, 24.89], "end": [69.3, 24.89], "type": "segment", "width": 0.12}, {"start": [63.3, 24.77], "end": [69.3, 24.77], "type": "segment", "width": 0.12}, {"start": [63.3, 24.65], "end": [69.3, 24.65], "type": "segment", "width": 0.12}, {"start": [63.3, 24.529999999999998], "end": [69.3, 24.529999999999998], "type": "segment", "width": 0.12}, {"start": [69.3, 25.23], "end": [63.3, 25.23], "type": "segment", "width": 0.12}, {"start": [69.3, 24.47], "end": [69.3, 25.23], "type": "segment", "width": 0.12}, {"start": [63.3, 24.47], "end": [69.3, 24.47], "type": "segment", "width": 0.12}, {"start": [63.3, 23.52], "end": [60.64, 23.52], "type": "segment", "width": 0.12}, {"start": [63.3, 33.8], "end": [63.3, 23.52], "type": "segment", "width": 0.12}, {"start": [60.64, 33.8], "end": [63.3, 33.8], "type": "segment", "width": 0.12}, {"start": [60.64, 23.52], "end": [60.64, 33.8], "type": "segment", "width": 0.12}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "U3", "thickness": 0.09999999999999999, "pos": [55.15, 29.299999999999997], "height": 0.5}, {"start": [54.71, 28.7], "end": [54.71, 26.25], "type": "segment", "width": 0.12}, {"start": [51.489999999999995, 26.9], "end": [51.489999999999995, 28.7], "type": "segment", "width": 0.12}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "U2", "thickness": 0.09999999999999999, "pos": [48.0, 27.65], "height": 0.5}, {"start": [47.469435, 28.925825], "end": [47.805310999999996, 28.589948999999997], "type": "segment", "width": 0.12}, {"start": [37.594688999999995, 28.589948999999997], "end": [37.930565, 28.925825], "type": "segment", "width": 0.12}, {"start": [37.930565, 28.254072999999998], "end": [37.594688999999995, 28.589948999999997], "type": "segment", "width": 0.12}, {"start": [42.699999999999996, 23.484638], "end": [43.035875999999995, 23.820514], "type": "segment", "width": 0.12}, {"start": [42.364124, 23.820514], "end": [42.699999999999996, 23.484638], "type": "segment", "width": 0.12}, {"start": [42.699999999999996, 33.69526], "end": [42.364124, 33.359384], "type": "segment", "width": 0.12}, {"start": [43.035875999999995, 33.359384], "end": [42.699999999999996, 33.69526], "type": "segment", "width": 0.12}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "U1", "thickness": 0.09999999999999999, "pos": [31.25, 26.775], "height": 0.5}, {"start": [28.799999999999997, 30.11], "end": [31.25, 30.11], "type": "segment", "width": 0.12}, {"start": [30.599999999999998, 26.889999999999997], "end": [28.799999999999997, 26.889999999999997], "type": "segment", "width": 0.12}, {"start": [26.869999, 32.57], "end": [26.869999, 33.07], "type": "segment", "width": 0.15}, {"start": [26.869999, 24.07], "end": [26.869999, 24.57], "type": "segment", "width": 0.15}, {"start": [24.369999, 24.07], "end": [22.369999, 24.07], "type": "segment", "width": 0.15}, {"start": [22.369999, 33.07], "end": [24.369999, 33.07], "type": "segment", "width": 0.15}, {"start": [20.369999, 33.07], "end": [18.674999, 33.07], "type": "segment", "width": 0.15}, {"start": [18.674999, 24.07], "end": [20.369999, 24.07], "type": "segment", "width": 0.15}, {"start": [18.674999, 33.07], "end": [18.674999, 24.07], "type": "segment", "width": 0.15}, {"start": [29.985, 32.865], "end": [27.7, 32.865], "type": "segment", "width": 0.12}, {"start": [29.985, 34.335], "end": [29.985, 32.865], "type": "segment", "width": 0.12}, {"start": [27.7, 34.335], "end": [29.985, 34.335], "type": "segment", "width": 0.12}, {"start": [29.985, 22.865], "end": [27.7, 22.865], "type": "segment", "width": 0.12}, {"start": [29.985, 24.334999999999997], "end": [29.985, 22.865], "type": "segment", "width": 0.12}, {"start": [27.7, 24.334999999999997], "end": [29.985, 24.334999999999997], "type": "segment", "width": 0.12}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "C4", "thickness": 0.09999999999999999, "pos": [56.849999999999994, 29.775], "height": 0.5}, {"start": [55.989999999999995, 27.441422], "end": [55.989999999999995, 27.958578], "type": "segment", "width": 0.12}, {"start": [57.41, 27.441422], "end": [57.41, 27.958578], "type": "segment", "width": 0.12}, {"width": 0.5, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "C1", "thickness": 0.09999999999999999, "pos": [51.824999999999996, 25.724999999999998], "height": 0.5}, {"start": [49.69, 26.341421999999998], "end": [49.69, 26.858577999999998], "type": "segment", "width": 0.12}, {"start": [51.11, 26.341421999999998], "end": [51.11, 26.858577999999998], "type": "segment", "width": 0.12}]}, "edges_bbox": {"minx": 19.974999, "miny": 19.774998999999998, "maxx": 63.225001, "maxy": 37.425001}, "metadata": {"date": "2019-05-06 17:27:06", "company": "", "revision": "", "title": "OtterPill"}}
///////////////////////////////////////////////

///////////////////////////////////////////////
/* Utility functions */

var storagePrefix = 'KiCad_HTML_BOM__' + pcbdata.metadata.title + '__' +
  pcbdata.metadata.revision + '__';
var storage;

function initStorage(key) {
  try {
    window.localStorage.getItem("blank");
    storage = window.localStorage;
  } catch (e) {
    // localStorage not available
  }
  if (!storage) {
    try {
      window.sessionStorage.getItem("blank");
      storage = window.sessionStorage;
    } catch (e) {
      // sessionStorage also not available
    }
  }
}

function readStorage(key) {
  if (storage) {
    return storage.getItem(storagePrefix + '#' + key);
  } else {
    return null;
  }
}

function writeStorage(key, value) {
  if (storage) {
    storage.setItem(storagePrefix + '#' + key, value);
  }
}

function fancyDblClickHandler(el, onsingle, ondouble) {
  return function() {
    if (el.getAttribute("data-dblclick") == null) {
      el.setAttribute("data-dblclick", 1);
      setTimeout(function() {
        if (el.getAttribute("data-dblclick") == 1) {
          onsingle();
        }
        el.removeAttribute("data-dblclick");
      }, 200);
    } else {
      el.removeAttribute("data-dblclick");
      ondouble();
    }
  }
}

function smoothScrollToRow(rowid) {
  document.getElementById(rowid).scrollIntoView({
    behavior: "smooth",
    block: "center",
    inline: "nearest"
  });
}

function focusInputField(input) {
  input.scrollIntoView(false);
  input.focus();
  input.select();
}

function copyToClipboard() {
  var text = '';
  for (var node of bomhead.childNodes[0].childNodes) {
    if (node.firstChild) {
      text = text + node.firstChild.nodeValue;
    }
    if (node != bomhead.childNodes[0].lastChild) {
      text += '\t';
    }
  }
  text += '\n';
  for (var row of bombody.childNodes) {
    for (var cell of row.childNodes) {
      for (var node of cell.childNodes) {
        if (node.nodeName == "INPUT") {
          if (node.checked) {
            text = text + '✓';
          }
        } else if (node.nodeName == "MARK") {
          text = text + node.firstChild.nodeValue;
        } else {
          text = text + node.nodeValue;
        }
      }
      if (cell != row.lastChild) {
        text += '\t';
      }
    }
    text += '\n';
  }
  var textArea = document.createElement("textarea");
  textArea.classList.add('clipboard-temp');
  textArea.value = text;

  document.body.appendChild(textArea);
  textArea.focus();
  textArea.select();

  try {
    if (document.execCommand('copy')) {
      console.log('Bom copied to clipboard.');
    }
  } catch (err) {
    console.log('Can not copy to clipboard.');
  }

  document.body.removeChild(textArea);
}

function removeGutterNode(node) {
  for (var i = 0; i < node.childNodes.length; i++) {
    if (node.childNodes[i].classList &&
      node.childNodes[i].classList.contains("gutter")) {
      node.removeChild(node.childNodes[i]);
      break;
    }
  }
}

function cleanGutters() {
  removeGutterNode(document.getElementById("bot"));
  removeGutterNode(document.getElementById("canvasdiv"));
}

var units = {
  prefixes: {
    giga: ["G", "g", "giga", "Giga", "GIGA"],
    mega: ["M", "mega", "Mega", "MEGA"],
    kilo: ["K", "k", "kilo", "Kilo", "KILO"],
    milli: ["m", "milli", "Milli", "MILLI"],
    micro: ["U", "u", "micro", "Micro", "MICRO", "μ", "µ"], // different utf8 μ
    nano: ["N", "n", "nano", "Nano", "NANO"],
    pico: ["P", "p", "pico", "Pico", "PICO"],
  },
  unitsShort: ["R", "r", "Ω", "F", "f", "H", "h"],
  unitsLong: [
    "OHM", "Ohm", "ohm", "ohms",
    "FARAD", "Farad", "farad",
    "HENRY", "Henry", "henry"
  ],
  getMultiplier: function(s) {
    if (this.prefixes.giga.includes(s)) return 1e9;
    if (this.prefixes.mega.includes(s)) return 1e6;
    if (this.prefixes.kilo.includes(s)) return 1e3;
    if (this.prefixes.milli.includes(s)) return 1e-3;
    if (this.prefixes.micro.includes(s)) return 1e-6;
    if (this.prefixes.nano.includes(s)) return 1e-9;
    if (this.prefixes.pico.includes(s)) return 1e-12;
    return 1;
  },
  valueRegex: null,
}

function initUtils() {
  var allPrefixes = units.prefixes.giga
                    .concat(units.prefixes.mega)
                    .concat(units.prefixes.kilo)
                    .concat(units.prefixes.milli)
                    .concat(units.prefixes.micro)
                    .concat(units.prefixes.nano)
                    .concat(units.prefixes.pico);
  var allUnits = units.unitsShort.concat(units.unitsLong);
  units.valueRegex = new RegExp("^([0-9\.]+)" +
                         "\\s*(" + allPrefixes.join("|") + ")?" +
                         "(" + allUnits.join("|") + ")?" +
                         "(\\b.*)?$", "");
  units.valueAltRegex = new RegExp("^([0-9]*)" +
                         "(" + units.unitsShort.join("|") + ")?" +
                         "([GgMmKkUuNnPp])?" +
                         "([0-9]*)" +
                         "(\\b.*)?$", "");
  for (var bomtable of Object.values(pcbdata.bom)) {
    for (var row of bomtable) {
      row.push(parseValue(row[1], row[3][0][0]));
    }
  }
}

function parseValue(val, ref) {
  var inferUnit = (unit, ref) => {
    if (unit) {
      unit = unit.toLowerCase();
      if (unit == 'Ω' || unit == "ohm" || unit == "ohms") {
        unit = 'r';
      }
      unit = unit[0];
    } else {
      ref = /^([a-z]+)\d+$/i.exec(ref);
      if (ref) {
        ref = ref[1].toLowerCase();
        if (ref == "c") unit = 'f';
        else if (ref == "l") unit = 'h';
        else if (ref == "r" || ref == "rv") unit = 'r';
        else unit = null;
      }
    }
    return unit;
  };
  val = val.replace(/,/g, "");
  var match = units.valueRegex.exec(val);
  var unit;
  if (match) {
    val = parseFloat(match[1]);
    if (match[2]) {
      val = val * units.getMultiplier(match[2]);
    }
    unit = inferUnit(match[3], ref);
    if (!unit) return null;
    else return {
      val: val,
      unit: unit,
      extra: match[4],
    }
  }
  match = units.valueAltRegex.exec(val);
  if (match && (match[1] || match[4])) {
    val = parseFloat(match[1] + "." + match[4]);
    if (match[3]) {
      val = val * units.getMultiplier(match[3]);
    }
    unit = inferUnit(match[2], ref);
    if (!unit) return null;
    else return {
      val: val,
      unit: unit,
      extra: match[5],
    }
  }
  return null;
}

function valueCompare(a, b, stra, strb) {
  if (a === null && b === null) {
    // Failed to parse both values, compare them as strings.
    if (stra != strb) return stra > strb ? 1 : -1;
    else return 0;
  } else if (a === null) {
    return 1;
  } else if (b === null) {
    return -1;
  } else {
    if (a.unit != b.unit) return a.unit > b.unit ? 1 : -1;
    else if (a.val != b.val) return a.val > b.val ? 1 : -1;
    else if (a.extra != b.extra) return a.extra > b.extra ? 1 : -1;
    else return 0;
  }
}

///////////////////////////////////////////////

///////////////////////////////////////////////
/* PCB rendering code */

var redrawOnDrag = true;
var boardRotation = 0;

function deg2rad(deg) {
  return deg * Math.PI / 180;
}

function calcFontPoint(linepoint, text, offsetx, offsety, tilt) {
  var point = [
    linepoint[0] * text.width + offsetx,
    linepoint[1] * text.height + offsety
  ];
  // Adding half a line height here is technically a bug
  // but pcbnew currently does the same, text is slightly shifted.
  point[0] -= (point[1] + text.height * 0.5) * tilt;
  return point;
}

function drawtext(ctx, text, color, flip) {
  ctx.save();
  ctx.translate(...text.pos);
  var angle = -text.angle;
  if (text.attr.includes("mirrored")) {
    ctx.scale(-1, 1);
    angle = -angle;
  }
  var tilt = 0;
  if (text.attr.includes("italic")) {
    tilt = 0.125;
  }
  var interline = (text.height * 1.5 + text.thickness) / 2;
  var txt = text.text.split("\n");
  // KiCad ignores last empty line.
  if (txt[txt.length-1] == '') txt.pop();
  ctx.rotate(deg2rad(angle));
  ctx.fillStyle = color;
  ctx.strokeStyle = color;
  ctx.lineCap = "round";
  ctx.lineWidth = text.thickness;
  for (var i in txt) {
    var offsety = (-(txt.length - 1) + i * 2) * interline + text.height / 2;
    var lineWidth = 0;
    for (var c of txt[i]) {
      lineWidth += pcbdata.font_data[c].w * text.width;
    }
    var offsetx = 0;
    switch (text.horiz_justify) {
      case -1:
        // Justify left, do nothing
        break;
      case 0:
        // Justify center
        offsetx -= lineWidth / 2;
        break;
      case 1:
        // Justify right
        offsetx -= lineWidth;
        break;
    }
    for (var c of txt[i]) {
      for (var line of pcbdata.font_data[c].l) {
        // Drawing each segment separately instead of
        // polyline because round line caps don't work in joints
        for (var i = 0; i < line.length - 1; i++) {
          ctx.beginPath();
          ctx.moveTo(...calcFontPoint(line[i], text, offsetx, offsety, tilt));
          ctx.lineTo(...calcFontPoint(line[i + 1], text, offsetx, offsety, tilt));
          ctx.stroke();
        }
      }
      offsetx += pcbdata.font_data[c].w * text.width;
    }
  }
  ctx.restore();
}

function drawedge(ctx, scalefactor, edge, color) {
  ctx.strokeStyle = color;
  ctx.lineWidth = Math.max(1 / scalefactor, edge.width);
  ctx.lineCap = "round";
  if (edge.type == "segment") {
    ctx.beginPath();
    ctx.moveTo(...edge.start);
    ctx.lineTo(...edge.end);
    ctx.stroke();
  }
  if (edge.type == "arc") {
    ctx.beginPath();
    ctx.arc(
      ...edge.start,
      edge.radius,
      deg2rad(edge.startangle),
      deg2rad(edge.endangle));
    ctx.stroke();
  }
  if (edge.type == "circle") {
    ctx.beginPath();
    ctx.arc(
      ...edge.start,
      edge.radius,
      0, 2 * Math.PI);
    ctx.closePath();
    ctx.stroke();
  }
}

function drawRoundRect(ctx, color, size, radius, ctxmethod) {
  ctx.beginPath();
  ctx.strokeStyle = color;
  var x = size[0] * -0.5;
  var y = size[1] * -0.5;
  var width = size[0];
  var height = size[1];
  ctx.moveTo(x, 0);
  ctx.arcTo(x, y + height, x + width, y + height, radius);
  ctx.arcTo(x + width, y + height, x + width, y, radius);
  ctx.arcTo(x + width, y, x, y, radius);
  ctx.arcTo(x, y, x, y + height, radius);
  ctx.closePath();
  ctxmethod();
}

function drawOblong(ctx, color, size, ctxmethod) {
  drawRoundRect(ctx, color, size, Math.min(size[0], size[1]) / 2, ctxmethod);
}

function drawPolygons(ctx, color, polygons, ctxmethod) {
  ctx.fillStyle = color;
  for (var polygon of polygons) {
    ctx.beginPath();
    for (var vertex of polygon) {
      ctx.lineTo(...vertex)
    }
    ctx.closePath();
    ctxmethod();
  }
}

function drawPolygonShape(ctx, shape, color) {
  ctx.save();
  ctx.translate(...shape.pos);
  ctx.rotate(deg2rad(-shape.angle));
  drawPolygons(ctx, color, shape.polygons, ctx.fill.bind(ctx));
  ctx.restore();
}

function drawDrawing(ctx, layer, scalefactor, drawing, color) {
  if (["segment", "arc", "circle"].includes(drawing.type)) {
    drawedge(ctx, scalefactor, drawing, color);
  } else if (drawing.type == "polygon") {
    drawPolygonShape(ctx, drawing, color);
  } else {
    drawtext(ctx, drawing, color, layer == "B");
  }
}

function drawCircle(ctx, radius, ctxmethod) {
  ctx.beginPath();
  ctx.arc(0, 0, radius, 0, 2 * Math.PI);
  ctx.closePath();
  ctxmethod();
}

function drawPad(ctx, pad, color, outline) {
  ctx.save();
  ctx.translate(...pad.pos);
  ctx.rotate(deg2rad(pad.angle));
  if (pad.offset) {
    ctx.translate(...pad.offset);
  }
  ctx.fillStyle = color;
  ctx.strokeStyle = color;
  var ctxmethod = outline ? ctx.stroke.bind(ctx) : ctx.fill.bind(ctx);
  if (pad.shape == "rect") {
    var rect = [...pad.size.map(c => -c * 0.5), ...pad.size];
    if (outline) {
      ctx.strokeRect(...rect);
    } else {
      ctx.fillRect(...rect);
    }
  } else if (pad.shape == "oval") {
    drawOblong(ctx, color, pad.size, ctxmethod);
  } else if (pad.shape == "circle") {
    drawCircle(ctx, pad.size[0] / 2, ctxmethod);
  } else if (pad.shape == "roundrect") {
    drawRoundRect(ctx, color, pad.size, pad.radius, ctxmethod);
  } else if (pad.shape == "custom") {
    drawPolygons(ctx, color, pad.polygons, ctxmethod);
  }
  if (pad.type == "th" && !outline) {
    ctx.fillStyle = "#CCCCCC";
    if (pad.drillshape == "oblong") {
      drawOblong(ctx, "#CCCCCC", pad.drillsize, ctxmethod);
    } else {
      drawCircle(ctx, pad.drillsize[0] / 2, ctxmethod);
    }
  }
  ctx.restore();
}

function drawModule(ctx, layer, scalefactor, module, padcolor, outlinecolor, highlight) {
  if (highlight) {
    // draw bounding box
    if (module.layer == layer) {
      ctx.save();
      ctx.globalAlpha = 0.2;
      ctx.translate(...module.bbox.pos);
      ctx.fillStyle = padcolor;
      ctx.fillRect(
        0, 0,
        ...module.bbox.size);
      ctx.globalAlpha = 1;
      ctx.strokeStyle = padcolor;
      ctx.strokeRect(
        0, 0,
        ...module.bbox.size);
      ctx.restore();
    }
  }
  // draw drawings
  for (var drawing of module.drawings) {
    if (drawing.layer == layer) {
      drawDrawing(ctx, layer, scalefactor, drawing.drawing, padcolor);
    }
  }
  // draw pads
  for (var pad of module.pads) {
    if (pad.layers.includes(layer)) {
      drawPad(ctx, pad, padcolor, false);
      if (pad.pin1 && highlightpin1) {
        drawPad(ctx, pad, outlinecolor, true);
      }
    }
  }
}

function drawEdges(canvas, scalefactor) {
  var ctx = canvas.getContext("2d");
  var edgecolor = getComputedStyle(topmostdiv).getPropertyValue('--pcb-edge-color');
  for (var edge of pcbdata.edges) {
    drawedge(ctx, scalefactor, edge, edgecolor);
  }
}

function drawModules(canvas, layer, scalefactor, highlight) {
  var ctx = canvas.getContext("2d");
  ctx.lineWidth = 3 / scalefactor;
  var style = getComputedStyle(topmostdiv);
  var padcolor = style.getPropertyValue('--pad-color');
  var outlinecolor = style.getPropertyValue('--pin1-outline-color');
  if (highlight > 0) {
    padcolor = style.getPropertyValue('--pad-color-highlight');
    outlinecolor = style.getPropertyValue('--pin1-outline-color-highlight');
  }
  for (var i = 0; i < pcbdata.modules.length; i++) {
    var mod = pcbdata.modules[i];
    if (!highlight || highlightedModules.includes(i)) {
      drawModule(ctx, layer, scalefactor, mod, padcolor, outlinecolor, highlight);
    }
  }
}

function drawSilkscreen(canvas, layer, scalefactor) {
  var ctx = canvas.getContext("2d");
  for (var d of pcbdata.silkscreen[layer]) {
    if (["segment", "arc", "circle"].includes(d.type)) {
      drawedge(ctx, scalefactor, d, "#aa4");
    } else if (d.type == "polygon") {
      drawPolygonShape(ctx, d, "#4aa");
    } else {
      drawtext(ctx, d, "#4aa", layer == "B");
    }
  }
}

function clearCanvas(canvas) {
  var ctx = canvas.getContext("2d");
  ctx.save();
  ctx.setTransform(1, 0, 0, 1, 0, 0);
  ctx.clearRect(0, 0, canvas.width, canvas.height);
  ctx.restore();
}

function drawHighlightsOnLayer(canvasdict) {
  clearCanvas(canvasdict.highlight);
  drawModules(canvasdict.highlight, canvasdict.layer,
    canvasdict.transform.s * canvasdict.transform.zoom, true);
}

function drawHighlights() {
  drawHighlightsOnLayer(allcanvas.front);
  drawHighlightsOnLayer(allcanvas.back);
}

function drawBackground(canvasdict) {
  clearCanvas(canvasdict.bg);
  clearCanvas(canvasdict.silk);
  drawEdges(canvasdict.bg, canvasdict.transform.s);
  drawModules(canvasdict.bg, canvasdict.layer,
    canvasdict.transform.s * canvasdict.transform.zoom, false);
  drawSilkscreen(canvasdict.silk, canvasdict.layer, canvasdict.transform.s);
}

function prepareCanvas(canvas, flip, transform) {
  var ctx = canvas.getContext("2d");
  ctx.setTransform(1, 0, 0, 1, 0, 0);
  var fontsize = 1.55;
  ctx.scale(transform.zoom, transform.zoom);
  ctx.translate(transform.panx, transform.pany);
  if (flip) {
    ctx.scale(-1, 1);
  }
  ctx.translate(transform.x, transform.y);
  ctx.rotate(deg2rad(boardRotation));
  ctx.scale(transform.s, transform.s);
}

function prepareLayer(canvasdict) {
  var flip = (canvasdict.layer == "B");
  for (var c of ["bg", "silk", "highlight"]) {
    prepareCanvas(canvasdict[c], flip, canvasdict.transform);
  }
}

function rotateVector(v, angle) {
  angle = deg2rad(angle);
  return [
    v[0] * Math.cos(angle) - v[1] * Math.sin(angle),
    v[0] * Math.sin(angle) + v[1] * Math.cos(angle)
  ];
}

function applyRotation(bbox) {
  var corners = [
    [bbox.minx, bbox.miny],
    [bbox.minx, bbox.maxy],
    [bbox.maxx, bbox.miny],
    [bbox.maxx, bbox.maxy],
  ];
  corners = corners.map((v) => rotateVector(v, boardRotation));
  return {
    minx: corners.reduce((a, v) => Math.min(a, v[0]), Infinity),
    miny: corners.reduce((a, v) => Math.min(a, v[1]), Infinity),
    maxx: corners.reduce((a, v) => Math.max(a, v[0]), -Infinity),
    maxy: corners.reduce((a, v) => Math.max(a, v[1]), -Infinity),
  }
}

function recalcLayerScale(canvasdict) {
  var canvasdivid = {
    "F": "frontcanvas",
    "B": "backcanvas"
  } [canvasdict.layer];
  var width = document.getElementById(canvasdivid).clientWidth * 2;
  var height = document.getElementById(canvasdivid).clientHeight * 2;
  var bbox = applyRotation(pcbdata.edges_bbox);
  var scalefactor = 0.98 * Math.min(
    width / (bbox.maxx - bbox.minx),
    height / (bbox.maxy - bbox.miny)
  );
  if (scalefactor < 0.1) {
    scalefactor = 1;
  }
  canvasdict.transform.s = scalefactor;
  var flip = (canvasdict.layer == "B");
  if (flip) {
    canvasdict.transform.x = -((bbox.maxx + bbox.minx) * scalefactor + width) * 0.5;
  } else {
    canvasdict.transform.x = -((bbox.maxx + bbox.minx) * scalefactor - width) * 0.5;
  }
  canvasdict.transform.y = -((bbox.maxy + bbox.miny) * scalefactor - height) * 0.5;
  for (var c of ["bg", "silk", "highlight"]) {
    canvas = canvasdict[c];
    canvas.width = width;
    canvas.height = height;
    canvas.style.width = (width / 2) + "px";
    canvas.style.height = (height / 2) + "px";
  }
}

function redrawCanvas(layerdict) {
  prepareLayer(layerdict);
  drawBackground(layerdict);
  drawHighlightsOnLayer(layerdict);
}

function resizeCanvas(layerdict) {
  recalcLayerScale(layerdict);
  redrawCanvas(layerdict);
}

function resizeAll() {
  resizeCanvas(allcanvas.front);
  resizeCanvas(allcanvas.back);
}

function bboxScan(layer, x, y) {
  var result = [];
  for (var i = 0; i < pcbdata.modules.length; i++) {
    var module = pcbdata.modules[i];
    if (module.layer == layer) {
      var b = module.bbox;
      if (b.pos[0] <= x && b.pos[0] + b.size[0] >= x &&
        b.pos[1] <= y && b.pos[1] + b.size[1] >= y) {
        result.push(i);
      }
    }
  }
  return result;
}

function handleMouseDown(e, layerdict) {
  if (e.which != 1) {
    return;
  }
  e.preventDefault();
  e.stopPropagation();
  layerdict.transform.mousestartx = e.offsetX;
  layerdict.transform.mousestarty = e.offsetY;
  layerdict.transform.mousedownx = e.offsetX;
  layerdict.transform.mousedowny = e.offsetY;
  layerdict.transform.mousedown = true;
}

function handleMouseClick(e, layerdict) {
  var x = e.offsetX;
  var y = e.offsetY;
  var t = layerdict.transform;
  if (layerdict.layer == "B") {
    x = (2 * x / t.zoom - t.panx + t.x) / -t.s;
  } else {
    x = (2 * x / t.zoom - t.panx - t.x) / t.s;
  }
  y = (2 * y / t.zoom - t.y - t.pany) / t.s;
  var v = rotateVector([x, y], -boardRotation);
  var modules = bboxScan(layerdict.layer, v[0], v[1]);
  if (modules.length > 0) {
    modulesClicked(modules);
  }
}

function handleMouseUp(e, layerdict) {
  e.preventDefault();
  e.stopPropagation();
  if (e.which == 1 &&
    layerdict.transform.mousedown &&
    layerdict.transform.mousedownx == e.offsetX &&
    layerdict.transform.mousedowny == e.offsetY) {
    // This is just a click
    handleMouseClick(e, layerdict);
    layerdict.transform.mousedown = false;
    return;
  }
  if (e.which == 3) {
    // Reset pan and zoom on right click.
    layerdict.transform.panx = 0;
    layerdict.transform.pany = 0;
    layerdict.transform.zoom = 1;
    redrawCanvas(layerdict);
  } else if (!redrawOnDrag) {
    redrawCanvas(layerdict);
  }
  layerdict.transform.mousedown = false;
}

function handleMouseMove(e, layerdict) {
  if (!layerdict.transform.mousedown) {
    return;
  }
  e.preventDefault();
  e.stopPropagation();
  var dx = e.offsetX - layerdict.transform.mousestartx;
  var dy = e.offsetY - layerdict.transform.mousestarty;
  layerdict.transform.panx += 2 * dx / layerdict.transform.zoom;
  layerdict.transform.pany += 2 * dy / layerdict.transform.zoom;
  layerdict.transform.mousestartx = e.offsetX;
  layerdict.transform.mousestarty = e.offsetY;
  if (redrawOnDrag) {
    redrawCanvas(layerdict);
  }
}

function handleMouseWheel(e, layerdict) {
  e.preventDefault();
  e.stopPropagation();
  var t = layerdict.transform;
  var wheeldelta = e.deltaY;
  if (e.deltaMode == 1) {
    // FF only, scroll by lines
    wheeldelta *= 30;
  } else if (e.deltaMode == 2) {
    wheeldelta *= 300;
  }
  var m = Math.pow(1.1, -wheeldelta / 40);
  // Limit amount of zoom per tick.
  if (m > 2) {
    m = 2;
  } else if (m < 0.5) {
    m = 0.5;
  }
  t.zoom *= m;
  var zoomd = (1 - m) / t.zoom;
  t.panx += 2 * e.offsetX * zoomd;
  t.pany += 2 * e.offsetY * zoomd;
  redrawCanvas(layerdict);
}

function addMouseHandlers(div, layerdict) {
  div.onmousedown = function(e) {
    handleMouseDown(e, layerdict);
  };
  div.onmousemove = function(e) {
    handleMouseMove(e, layerdict);
  };
  div.onmouseup = function(e) {
    handleMouseUp(e, layerdict);
  };
  div.onmouseout = function(e) {
    handleMouseUp(e, layerdict);
  }
  div.onwheel = function(e) {
    handleMouseWheel(e, layerdict);
  }
  for (var element of [div, layerdict.bg, layerdict.silk, layerdict.highlight]) {
    element.addEventListener("contextmenu", function(e) {
      e.preventDefault();
    }, false);
  }
}

function setRedrawOnDrag(value) {
  redrawOnDrag = value;
  writeStorage("redrawOnDrag", value);
}

function setBoardRotation(value) {
  boardRotation = value * 5;
  writeStorage("boardRotation", boardRotation);
  document.getElementById("rotationDegree").textContent = boardRotation;
  resizeAll();
}

function initRender() {
  allcanvas = {
    front: {
      transform: {
        x: 0,
        y: 0,
        s: 1,
        panx: 0,
        pany: 0,
        zoom: 1,
        mousestartx: 0,
        mousestarty: 0,
        mousedown: false,
      },
      bg: document.getElementById("F_bg"),
      silk: document.getElementById("F_slk"),
      highlight: document.getElementById("F_hl"),
      layer: "F",
    },
    back: {
      transform: {
        x: 0,
        y: 0,
        s: 1,
        panx: 0,
        pany: 0,
        zoom: 1,
        mousestartx: 0,
        mousestarty: 0,
        mousedown: false,
      },
      bg: document.getElementById("B_bg"),
      silk: document.getElementById("B_slk"),
      highlight: document.getElementById("B_hl"),
      layer: "B",
    }
  };
  addMouseHandlers(document.getElementById("frontcanvas"), allcanvas.front);
  addMouseHandlers(document.getElementById("backcanvas"), allcanvas.back);
}

///////////////////////////////////////////////

///////////////////////////////////////////////
/* DOM manipulation and misc code */

var bomsplit;
var canvassplit;
var canvaslayout = "default";
var bomlayout = "default";
var initDone = false;
var bomSortFunction = null;
var currentSortColumn = null;
var currentSortOrder = null;
var currentHighlightedRowId;
var highlightHandlers = [];
var highlightedModules = [];
var checkboxes = [];
var bomCheckboxes = "";
var highlightpin1 = false;
var lastClicked;

function dbg(html) {
  dbgdiv.innerHTML = html;
}

function setDarkMode(value) {
  if (value) {
    topmostdiv.classList.add("dark");
  } else {
    topmostdiv.classList.remove("dark");
  }
  writeStorage("darkmode", value);
  if (initDone) {
    redrawCanvas(allcanvas.front);
    redrawCanvas(allcanvas.back);
  }
}

function setHighlightPin1(value) {
  writeStorage("highlightpin1", value);
  highlightpin1 = value;
  if (initDone) {
    redrawCanvas(allcanvas.front);
    redrawCanvas(allcanvas.back);
  }
}

function getStoredCheckboxRefs(checkbox) {
  function convert(ref) {
    var intref = parseInt(ref);
    if (isNaN(intref)) {
      for (var i = 0; i < pcbdata.modules.length; i++) {
        if (pcbdata.modules[i].ref == ref) {
          return i;
        }
      }
      return -1;
    } else {
      return intref;
    }
  }
  var existingRefs = readStorage("checkbox_" + checkbox);
  if (!existingRefs) {
    return new Set();
  } else {
    return new Set(existingRefs.split(",").map(r => convert(r)));
  }
}

function getCheckboxState(checkbox, references) {
  var storedRefsSet = getStoredCheckboxRefs(checkbox);
  var currentRefsSet = new Set(references.map(r => r[1]));
  // Get difference of current - stored
  var difference = new Set(currentRefsSet);
  for (ref of storedRefsSet) {
    difference.delete(ref);
  }
  if (difference.size == 0) {
    // All the current refs are stored
    return "checked";
  } else if (difference.size == currentRefsSet.size) {
    // None of the current refs are stored
    return "unchecked";
  } else {
    // Some of the refs are stored
    return "indeterminate";
  }
}

function setBomCheckboxState(checkbox, element, references) {
  var state = getCheckboxState(checkbox, references);
  element.checked = (state == "checked");
  element.indeterminate = (state == "indeterminate");
}

function createCheckboxChangeHandler(checkbox, references) {
  return function() {
    refsSet = getStoredCheckboxRefs(checkbox);
    if (this.checked) {
      // checkbox ticked
      for (var ref of references) {
        refsSet.add(ref[1]);
      }
    } else {
      // checkbox unticked
      for (var ref of references) {
        refsSet.delete(ref[1]);
      }
    }
    writeStorage("checkbox_" + checkbox, [...refsSet].join(","));
  }
}

function createRowHighlightHandler(rowid, refs) {
  return function() {
    if (currentHighlightedRowId) {
      if (currentHighlightedRowId == rowid) {
        return;
      }
      document.getElementById(currentHighlightedRowId).classList.remove("highlighted");
    }
    document.getElementById(rowid).classList.add("highlighted");
    currentHighlightedRowId = rowid;
    highlightedModules = refs.map(r => r[1]);
    drawHighlights();
  }
}

function entryMatches(entry) {
  // check refs
  for (var ref of entry[3]) {
    if (ref[0].toLowerCase().indexOf(filter) >= 0) {
      return true;
    }
  }
  // check extra fields
  for (var i in config.extra_fields) {
    if (entry[4][i].toLowerCase().indexOf(filter) >= 0) {
      return true;
    }
  }
  // check value
  if (entry[1].toLowerCase().indexOf(filter) >= 0) {
    return true;
  }
  // check footprint
  if (entry[2].toLowerCase().indexOf(filter) >= 0) {
    return true;
  }
  return false;
}

function findRefInEntry(entry) {
  return entry[3].filter(r => r[0].toLowerCase() == reflookup);
}

function highlightFilter(s) {
  if (!filter) {
    return s;
  }
  var parts = s.toLowerCase().split(filter);
  if (parts.length == 1) {
    return s;
  }
  var r = "";
  var pos = 0;
  for (var i in parts) {
    if (i > 0) {
      r += '<mark class="highlight">' +
        s.substring(pos, pos + filter.length) +
        '</mark>';
      pos += filter.length;
    }
    r += s.substring(pos, pos + parts[i].length);
    pos += parts[i].length;
  }
  return r;
}

function checkboxSetUnsetAllHandler(checkboxname) {
  return function() {
    var checkboxnum = 0;
    while (checkboxnum < checkboxes.length &&
      checkboxes[checkboxnum].toLowerCase() != checkboxname.toLowerCase()) {
      checkboxnum++;
    }
    if (checkboxnum >= checkboxes.length) {
      return;
    }
    var allset = true;
    var checkbox;
    var row;
    for (row of bombody.childNodes) {
      checkbox = row.childNodes[checkboxnum + 1].childNodes[0];
      if (!checkbox.checked || checkbox.indeterminate) {
        allset = false;
        break;
      }
    }
    for (row of bombody.childNodes) {
      checkbox = row.childNodes[checkboxnum + 1].childNodes[0];
      checkbox.checked = !allset;
      checkbox.indeterminate = false;
      checkbox.onchange();
    }
  }
}

function createColumnHeader(name, cls, comparator) {
  var th = document.createElement("TH");
  th.innerHTML = name;
  th.classList.add(cls);
  th.style.cursor = "pointer";
  var span = document.createElement("SPAN");
  span.classList.add("sortmark");
  span.classList.add("none");
  th.appendChild(span);
  th.onclick = function() {
    if (currentSortColumn && this !== currentSortColumn) {
      // Currently sorted by another column
      currentSortColumn.childNodes[1].classList.remove(currentSortOrder);
      currentSortColumn.childNodes[1].classList.add("none");
      currentSortColumn = null;
      currentSortOrder = null;
    }
    if (currentSortColumn && this === currentSortColumn) {
      // Already sorted by this column
      if (currentSortOrder == "asc") {
        // Sort by this column, descending order
        bomSortFunction = function(a, b) {
          return -comparator(a, b);
        }
        currentSortColumn.childNodes[1].classList.remove("asc");
        currentSortColumn.childNodes[1].classList.add("desc");
        currentSortOrder = "desc";
      } else {
        // Unsort
        bomSortFunction = null;
        currentSortColumn.childNodes[1].classList.remove("desc");
        currentSortColumn.childNodes[1].classList.add("none");
        currentSortColumn = null;
        currentSortOrder = null;
      }
    } else {
      // Sort by this column, ascending order
      bomSortFunction = comparator;
      currentSortColumn = this;
      currentSortColumn.childNodes[1].classList.remove("none");
      currentSortColumn.childNodes[1].classList.add("asc");
      currentSortOrder = "asc";
    }
    populateBomBody();
  }
  return th;
}

function populateBomHeader() {
  while (bomhead.firstChild) {
    bomhead.removeChild(bomhead.firstChild);
  }
  var tr = document.createElement("TR");
  var th = document.createElement("TH");
  th.classList.add("numCol");
  tr.appendChild(th);
  checkboxes = bomCheckboxes.split(",").filter((e) => e);
  var checkboxCompareClosure = function(checkbox) {
    return (a, b) => {
      var stateA = getCheckboxState(checkbox, a[3]);
      var stateB = getCheckboxState(checkbox, b[3]);
      if (stateA > stateB) return -1;
      if (stateA < stateB) return 1;
      return 0;
    }
  }
  for (var checkbox of checkboxes) {
    th = createColumnHeader(
      checkbox, "bom-checkbox", checkboxCompareClosure(checkbox));
    th.onclick = fancyDblClickHandler(
      th, th.onclick.bind(th), checkboxSetUnsetAllHandler(checkbox));
    tr.appendChild(th);
  }
  tr.appendChild(createColumnHeader("References", "References", (a, b) => {
    var i = 0;
    while (i < a[3].length && i < b[3].length) {
      if (a[3][i] != b[3][i]) return a[3][i] > b[3][i] ? 1 : -1;
      i++;
    }
    return a[3].length - b[3].length;
  }));
  // Extra fields
  if (config.extra_fields.length > 0) {
    var extraFieldCompareClosure = function(fieldIndex) {
      return (a, b) => {
        var fa = a[4][fieldIndex];
        var fb = b[4][fieldIndex];
        if (fa != fb) return fa > fb ? 1 : -1;
        else return 0;
      }
    }
    for (var i in config.extra_fields) {
      tr.appendChild(createColumnHeader(
        config.extra_fields[i], "extra", extraFieldCompareClosure(i)));
    }
  }
  tr.appendChild(createColumnHeader("Value", "Value", (a, b) => {
    return valueCompare(a[5], b[5], a[1], b[1]);
  }));
  tr.appendChild(createColumnHeader("Footprint", "Footprint", (a, b) => {
    if (a[2] != b[2]) return a[2] > b[2] ? 1 : -1;
    else return 0;
  }));
  tr.appendChild(createColumnHeader("Quantity", "Quantity", (a, b) => {
    return a[3].length - b[3].length;
  }));
  bomhead.appendChild(tr);
}

function populateBomBody() {
  while (bom.firstChild) {
    bom.removeChild(bom.firstChild);
  }
  highlightHandlers = [];
  currentHighlightedRowId = null;
  var first = true;
  switch (canvaslayout) {
    case 'F':
      bomtable = pcbdata.bom.F;
      break;
    case 'FB':
      bomtable = pcbdata.bom.both;
      break;
    case 'B':
      bomtable = pcbdata.bom.B;
      break;
  }
  if (bomSortFunction) {
    bomtable = bomtable.slice().sort(bomSortFunction);
  }
  for (var i in bomtable) {
    var bomentry = bomtable[i];
    if (filter && !entryMatches(bomentry)) {
      continue;
    }
    var references = bomentry[3];
    if (reflookup) {
      references = findRefInEntry(bomentry);
      if (references.length == 0) {
        continue;
      }
    }
    var tr = document.createElement("TR");
    var td = document.createElement("TD");
    var rownum = +i + 1;
    tr.id = "bomrow" + rownum;
    td.textContent = rownum;
    tr.appendChild(td);
    // Checkboxes
    for (var checkbox of checkboxes) {
      if (checkbox) {
        td = document.createElement("TD");
        var input = document.createElement("input");
        input.type = "checkbox";
        input.onchange = createCheckboxChangeHandler(checkbox, references);
        setBomCheckboxState(checkbox, input, references);
        td.appendChild(input);
        tr.appendChild(td);
      }
    }
    // References
    td = document.createElement("TD");
    td.innerHTML = highlightFilter(references.map(r => r[0]).join(", "));
    tr.appendChild(td);
    // Extra fields
    for (var i in config.extra_fields) {
      td = document.createElement("TD");
      td.innerHTML = highlightFilter(bomentry[4][i]);
      tr.appendChild(td);
    }
    // Value
    td = document.createElement("TD");
    td.innerHTML = highlightFilter(bomentry[1]);
    tr.appendChild(td);
    // Footprint
    td = document.createElement("TD");
    td.innerHTML = highlightFilter(bomentry[2]);
    tr.appendChild(td);
    // Quantity
    td = document.createElement("TD");
    td.textContent = bomentry[3].length;
    tr.appendChild(td);
    bom.appendChild(tr);
    var handler = createRowHighlightHandler(tr.id, references);
    tr.onmousemove = handler;
    highlightHandlers.push({
      id: tr.id,
      handler: handler,
      refs: references
    });
    if ((filter || reflookup) && first) {
      handler();
      first = false;
    }
  }
}

function highlightPreviousRow() {
  if (!currentHighlightedRowId) {
    highlightHandlers[highlightHandlers.length - 1].handler();
  } else {
    if (highlightHandlers.length > 1 &&
      highlightHandlers[0].id == currentHighlightedRowId) {
      highlightHandlers[highlightHandlers.length - 1].handler();
    } else {
      for (var i = 0; i < highlightHandlers.length - 1; i++) {
        if (highlightHandlers[i + 1].id == currentHighlightedRowId) {
          highlightHandlers[i].handler();
          break;
        }
      }
    }
  }
  smoothScrollToRow(currentHighlightedRowId);
}

function highlightNextRow() {
  if (!currentHighlightedRowId) {
    highlightHandlers[0].handler();
  } else {
    if (highlightHandlers.length > 1 &&
      highlightHandlers[highlightHandlers.length - 1].id == currentHighlightedRowId) {
      highlightHandlers[0].handler();
    } else {
      for (var i = 1; i < highlightHandlers.length; i++) {
        if (highlightHandlers[i - 1].id == currentHighlightedRowId) {
          highlightHandlers[i].handler();
          break;
        }
      }
    }
  }
  smoothScrollToRow(currentHighlightedRowId);
}

function populateBomTable() {
  populateBomHeader();
  populateBomBody();
}

function modulesClicked(moduleIndexes) {
  var lastClickedIndex = moduleIndexes.indexOf(lastClicked);
  var index = moduleIndexes[(lastClickedIndex + 1) % moduleIndexes.length];
  for (var handler of highlightHandlers) {
    if (handler.refs.map(r => r[1]).indexOf(index) >= 0) {
      lastClicked = index;
      handler.handler();
      smoothScrollToRow(currentHighlightedRowId);
      break;
    }
  }
}

function updateFilter(input) {
  filter = input.toLowerCase();
  populateBomTable();
}

function updateRefLookup(input) {
  reflookup = input.toLowerCase();
  populateBomTable();
}

function silkscreenVisible(visible) {
  if (visible) {
    allcanvas.front.silk.style.display = "";
    allcanvas.back.silk.style.display = "";
    writeStorage("silkscreenVisible", true);
  } else {
    allcanvas.front.silk.style.display = "none";
    allcanvas.back.silk.style.display = "none";
    writeStorage("silkscreenVisible", false);
  }
}

function changeCanvasLayout(layout) {
  document.getElementById("fl-btn").classList.remove("depressed");
  document.getElementById("fb-btn").classList.remove("depressed");
  document.getElementById("bl-btn").classList.remove("depressed");
  switch (layout) {
    case 'F':
      document.getElementById("fl-btn").classList.add("depressed");
      if (bomlayout != "bom-only") {
        canvassplit.collapse(1);
      }
      break;
    case 'B':
      document.getElementById("bl-btn").classList.add("depressed");
      if (bomlayout != "bom-only") {
        canvassplit.collapse(0);
      }
      break;
    default:
      document.getElementById("fb-btn").classList.add("depressed");
      if (bomlayout != "bom-only") {
        canvassplit.setSizes([50, 50]);
      }
  }
  canvaslayout = layout;
  writeStorage("canvaslayout", layout);
  resizeAll();
  populateBomTable();
}

function populateMetadata() {
  document.getElementById("title").innerHTML = pcbdata.metadata.title;
  document.getElementById("revision").innerHTML = "Rev: " + pcbdata.metadata.revision;
  document.getElementById("company").innerHTML = pcbdata.metadata.company;
  document.getElementById("filedate").innerHTML = pcbdata.metadata.date;
  if (pcbdata.metadata.title != "") {
    document.title = pcbdata.metadata.title + " BOM";
  }
}

function changeBomLayout(layout) {
  document.getElementById("bom-btn").classList.remove("depressed");
  document.getElementById("lr-btn").classList.remove("depressed");
  document.getElementById("tb-btn").classList.remove("depressed");
  switch (layout) {
    case 'bom-only':
      document.getElementById("bom-btn").classList.add("depressed");
      if (bomsplit) {
        bomsplit.destroy();
        bomsplit = null;
        canvassplit.destroy();
        canvassplit = null;
      }
      document.getElementById("frontcanvas").style.display = "none";
      document.getElementById("backcanvas").style.display = "none";
      document.getElementById("bot").style.height = "";
      break;
    case 'top-bottom':
      document.getElementById("tb-btn").classList.add("depressed");
      document.getElementById("frontcanvas").style.display = "";
      document.getElementById("backcanvas").style.display = "";
      document.getElementById("bot").style.height = "calc(100% - 80px)";
      document.getElementById("bomdiv").classList.remove("split-horizontal");
      document.getElementById("canvasdiv").classList.remove("split-horizontal");
      document.getElementById("frontcanvas").classList.add("split-horizontal");
      document.getElementById("backcanvas").classList.add("split-horizontal");
      if (bomsplit) {
        bomsplit.destroy();
        bomsplit = null;
        canvassplit.destroy();
        canvassplit = null;
      }
      bomsplit = Split(['#bomdiv', '#canvasdiv'], {
        sizes: [50, 50],
        onDragEnd: resizeAll,
        direction: "vertical",
        gutterSize: 5
      });
      canvassplit = Split(['#frontcanvas', '#backcanvas'], {
        sizes: [50, 50],
        gutterSize: 5,
        onDragEnd: resizeAll
      });
      break;
    case 'left-right':
      document.getElementById("lr-btn").classList.add("depressed");
      document.getElementById("frontcanvas").style.display = "";
      document.getElementById("backcanvas").style.display = "";
      document.getElementById("bot").style.height = "calc(100% - 80px)";
      document.getElementById("bomdiv").classList.add("split-horizontal");
      document.getElementById("canvasdiv").classList.add("split-horizontal");
      document.getElementById("frontcanvas").classList.remove("split-horizontal");
      document.getElementById("backcanvas").classList.remove("split-horizontal");
      if (bomsplit) {
        bomsplit.destroy();
        bomsplit = null;
        canvassplit.destroy();
        canvassplit = null;
      }
      bomsplit = Split(['#bomdiv', '#canvasdiv'], {
        sizes: [50, 50],
        onDragEnd: resizeAll,
        gutterSize: 5
      });
      canvassplit = Split(['#frontcanvas', '#backcanvas'], {
        sizes: [50, 50],
        gutterSize: 5,
        direction: "vertical",
        onDragEnd: resizeAll
      });
  }
  bomlayout = layout;
  writeStorage("bomlayout", layout);
  changeCanvasLayout(canvaslayout);
}

function focusFilterField() {
  focusInputField(document.getElementById("filter"));
}

function focusRefLookupField() {
  focusInputField(document.getElementById("reflookup"));
}

function toggleBomCheckbox(bomrowid, checkboxnum) {
  if (!bomrowid || checkboxnum > checkboxes.length) {
    return;
  }
  var bomrow = document.getElementById(bomrowid);
  var checkbox = bomrow.childNodes[checkboxnum].childNodes[0];
  checkbox.checked = !checkbox.checked;
  checkbox.indeterminate = false;
  checkbox.onchange();
}

function checkBomCheckbox(bomrowid, checkboxname) {
  var checkboxnum = 0;
  while (checkboxnum < checkboxes.length &&
    checkboxes[checkboxnum].toLowerCase() != checkboxname.toLowerCase()) {
    checkboxnum++;
  }
  if (!bomrowid || checkboxnum >= checkboxes.length) {
    return;
  }
  var bomrow = document.getElementById(bomrowid);
  var checkbox = bomrow.childNodes[checkboxnum + 1].childNodes[0];
  checkbox.checked = true;
  checkbox.indeterminate = false;
  checkbox.onchange();
}

function setBomCheckboxes(value) {
  bomCheckboxes = value;
  writeStorage("bomCheckboxes", value);
  populateBomTable();
}

document.onkeydown = function(e) {
  switch (e.key) {
    case "n":
      if (document.activeElement.type == "text") {
        return;
      }
      if (currentHighlightedRowId !== null) {
        checkBomCheckbox(currentHighlightedRowId, "placed");
        highlightNextRow();
        e.preventDefault();
      }
      break;
    case "ArrowUp":
      highlightPreviousRow();
      e.preventDefault();
      break;
    case "ArrowDown":
      highlightNextRow();
      e.preventDefault();
      break;
    default:
      break;
  }
  if (e.altKey) {
    switch (e.key) {
      case "f":
        focusFilterField();
        e.preventDefault();
        break;
      case "r":
        focusRefLookupField();
        e.preventDefault();
        break;
      case "z":
        changeBomLayout("bom-only");
        e.preventDefault();
        break;
      case "x":
        changeBomLayout("left-right");
        e.preventDefault();
        break;
      case "c":
        changeBomLayout("top-bottom");
        e.preventDefault();
        break;
      case "v":
        changeCanvasLayout("F");
        e.preventDefault();
        break;
      case "b":
        changeCanvasLayout("FB");
        e.preventDefault();
        break;
      case "n":
        changeCanvasLayout("B");
        e.preventDefault();
        break;
      default:
        break;
    }
    if (e.key >= '1' && e.key <= '9') {
      toggleBomCheckbox(currentHighlightedRowId, parseInt(e.key));
    }
  }
}

function initDefaults() {
  bomlayout = readStorage("bomlayout");
  if (bomlayout === null) {
    bomlayout = config.bom_view;
  }
  if (!['bom-only', 'left-right', 'top-bottom'].includes(bomlayout)) {
    bomlayout = config.bom_view;
  }
  canvaslayout = readStorage("canvaslayout");
  if (canvaslayout === null) {
    canvaslayout = config.layer_view;
  }
  bomCheckboxes = readStorage("bomCheckboxes");
  if (bomCheckboxes === null) {
    bomCheckboxes = config.checkboxes;
  }
  document.getElementById("bomCheckboxes").value = bomCheckboxes;

  var b = readStorage("silkscreenVisible");
  if (b === null) {
    b = config.show_silkscreen;
  } else {
    b = (b == "true");
  }
  document.getElementById("silkscreenCheckbox").checked = b;
  silkscreenVisible(b);

  b = readStorage("redrawOnDrag");
  if (b === null) {
    b = config.redraw_on_drag;
  } else {
    b = (b == "true");
  }
  document.getElementById("dragCheckbox").checked = b;
  setRedrawOnDrag(b);

  b = readStorage("darkmode");
  if (b === null) {
    b = config.dark_mode;
  } else {
    b = (b == "true");
  }
  document.getElementById("darkmodeCheckbox").checked = b;
  setDarkMode(b);

  b = readStorage("highlightpin1");
  if (b === null) {
    b = config.highlight_pin1;
  } else {
    b = (b == "true");
  }
  document.getElementById("highlightpin1Checkbox").checked = b;
  setHighlightPin1(b);

  boardRotation = readStorage("boardRotation");
  if (boardRotation === null) {
    boardRotation = config.board_rotation * 5;
  } else {
    boardRotation = parseInt(boardRotation);
  }
  document.getElementById("boardRotation").value = boardRotation / 5;
  document.getElementById("rotationDegree").textContent = boardRotation;
}

window.onload = function(e) {
  initUtils();
  initRender();
  initStorage();
  initDefaults();
  cleanGutters();
  populateMetadata();
  dbgdiv = document.getElementById("dbg");
  bom = document.getElementById("bombody");
  bomhead = document.getElementById("bomhead");
  filter = "";
  reflookup = "";
  initDone = true;
  // Triggers render
  changeBomLayout(bomlayout);
}

window.onresize = resizeAll;
window.matchMedia("print").addListener(resizeAll);

///////////////////////////////////////////////

  </script>
</head>

<body>
<div id="topmostdiv" style="width: 100%; height: 100%">
  <div id="top">
    <div style="float: right;">
      <div class="hideonprint menu" style="float: right; margin: 10px; top: 8px;">
        <button class="menubtn"></button>
        <div class="menu-content">
          <label class="menu-label menu-label-top">
            <input id="darkmodeCheckbox" type="checkbox" onchange="setDarkMode(this.checked)">
            Dark mode
          </label>
          <label class="menu-label">
            <input id="silkscreenCheckbox" type="checkbox" checked onchange="silkscreenVisible(this.checked)">
            Show silkscreen
          </label>
          <label class="menu-label">
            <input id="highlightpin1Checkbox" type="checkbox" onchange="setHighlightPin1(this.checked)">
            Highlight first pin
          </label>
          <label class="menu-label">
            <input id="dragCheckbox" type="checkbox" checked onchange="setRedrawOnDrag(this.checked)">
            Continuous redraw on drag
          </label>
          <label class="menu-label">
            <span>Board rotation</span>
            <span style="float: right"><span id="rotationDegree">0</span>&#176;</span>
            <input id="boardRotation" type="range" min="-36" max="36" value="0" class="slider" oninput="setBoardRotation(this.value)">
          </label>
          <label class="menu-label">
            <div style="margin-left: 5px">Bom checkboxes</div>
            <input id="bomCheckboxes" class="menu-textbox" type=text
                   oninput="setBomCheckboxes(this.value)">
          </label>
          <label class="menu-label">
            <span class="shameless-plug">
              <span>Created using</span>
              <a target="blank" href="https://github.com/openscopeproject/InteractiveHtmlBom">InteractiveHtmlBom</a>
            </span>
          </label>
        </div>
      </div>
      <div class="button-container hideonprint"
           style="float: right; margin: 10px; position: relative; top: 8px">
        <button id="fl-btn" class="left-most-button" onclick="changeCanvasLayout('F')"
                title="Front only">F
        </button>
        <button id="fb-btn" class="middle-button" onclick="changeCanvasLayout('FB')"
                title="Front and Back">FB
        </button>
        <button id="bl-btn" class="right-most-button" onclick="changeCanvasLayout('B')"
                title="Back only">B
        </button>
      </div>
      <div class="button-container hideonprint"
           style="float: right; margin: 10px; position: relative; top: 8px">
        <button id="bom-btn" class="left-most-button" onclick="changeBomLayout('bom-only')"
                title="BOM only"></button>
        <button id="lr-btn" class="middle-button" onclick="changeBomLayout('left-right')"
                title="BOM left, drawings right"></button>
        <button id="tb-btn" class="right-most-button" onclick="changeBomLayout('top-bottom')"
                title="BOM top, drawings bot"></button>
      </div>
    </div>
    <div id="fileinfodiv" style="overflow: auto;">
      <table class="fileinfo">
        <tbody>
          <tr>
            <td id="title" class="title" style="width: 70%">
              Title
            </td>
            <td id="revision" class="title" style="width: 30%">
              Revision
            </td>
          </tr>
          <tr>
            <td id="company">
              Kicad version
            </td>
            <td id="filedate">
              Date
            </td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>
  <div id="bot" class="split" style="height: calc(100% - 80px)">
    <div id="bomdiv" class="split split-horizontal">
      <div style="width: 100%">
        <input id="reflookup" class="searchbox reflookup hideonprint" type="text" placeholder="Ref lookup"
               oninput="updateRefLookup(this.value)">
        <input id="filter" class="searchbox filter hideonprint" type="text" placeholder="Filter"
               oninput="updateFilter(this.value)">
        <div class="button-container hideonprint" style="float: left">
          <button id="copy" title="Copy bom table to clipboard"
               onclick="copyToClipboard()"></button>
        </div>
      </div>
      <div id="dbg"></div>
      <table class="bom">
        <thead id="bomhead">
        </thead>
        <tbody id="bombody">
        </tbody>
      </table>
    </div>
    <div id="canvasdiv" class="split split-horizontal">
      <div id="frontcanvas" class="split" style="overflow: hidden">
        <div style="position: relative; width: 100%; height: 100%;">
          <canvas id="F_bg" style="position: absolute; left: 0; top: 0; z-index: 0;"></canvas>
          <canvas id="F_slk" style="position: absolute; left: 0; top: 0; z-index: 1;"></canvas>
          <canvas id="F_hl" style="position: absolute; left: 0; top: 0; z-index: 2;"></canvas>
        </div>
      </div>
      <div id="backcanvas" class="split" style="overflow: hidden">
        <div style="position: relative; width: 100%; height: 100%;">
          <canvas id="B_bg" style="position: absolute; left: 0; top: 0; z-index: 0;"></canvas>
          <canvas id="B_slk" style="position: absolute; left: 0; top: 0; z-index: 1;"></canvas>
          <canvas id="B_hl" style="position: absolute; left: 0; top: 0; z-index: 2;"></canvas>
        </div>
      </div>
    </div>
  </div>
</div>
</body>

</html>