-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbom_ibom.html
4405 lines (3984 loc) · 205 KB
/
bom_ibom.html
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
<!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-hole-color: #CCCCCC;
--pad-color-highlight: #D04040;
--pad-color-highlight-both: #D0D040;
--pad-color-highlight-marked: #44a344;
--pin1-outline-color: #ffb629;
--pin1-outline-color-highlight: #ffb629;
--pin1-outline-color-highlight-both: #fcbb39;
--pin1-outline-color-highlight-marked: #fdbe41;
--silkscreen-edge-color: #aa4;
--silkscreen-polygon-color: #4aa;
--silkscreen-text-color: #4aa;
--fabrication-edge-color: #907651;
--fabrication-polygon-color: #907651;
--fabrication-text-color: #a27c24;
--track-color: #def5f1;
--track-color-highlight: #D04040;
--zone-color: #def5f1;
--zone-color-highlight: #d0404080;
}
html,
body {
margin: 0px;
height: 100%;
font-family: Verdana, sans-serif;
}
.dark.topmostdiv {
--pcb-edge-color: #eee;
--pad-color: #808080;
--pin1-outline-color: #ffa800;
--pin1-outline-color-highlight: #ccff00;
--track-color: #42524f;
--zone-color: #42524f;
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");
}
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");
}
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");
}
button#bom-grouped-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cg stroke='%23000' stroke-linejoin='round' class='layer'%3E%3Crect width='29' height='29' x='1.5' y='1.5' stroke-width='2' fill='%23fff' rx='5' ry='5'/%3E%3Cpath stroke-linecap='square' stroke-width='2' d='M6 10h4m4 0h5m4 0h3M6.1 22h3m3.9 0h5m4 0h4m-16-8h4m4 0h4'/%3E%3Cpath stroke-linecap='null' d='M5 17.5h22M5 26.6h22M5 5.5h22'/%3E%3C/g%3E%3C/svg%3E");
}
button#bom-ungrouped-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cg stroke='%23000' stroke-linejoin='round' class='layer'%3E%3Crect width='29' height='29' x='1.5' y='1.5' stroke-width='2' fill='%23fff' rx='5' ry='5'/%3E%3Cpath stroke-linecap='square' stroke-width='2' d='M6 10h4m-4 8h3m-3 8h4'/%3E%3Cpath stroke-linecap='null' d='M5 13.5h22m-22 8h22M5 5.5h22'/%3E%3C/g%3E%3C/svg%3E");
}
button#bom-netlist-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cg fill='none' stroke='%23000' class='layer'%3E%3Crect width='29' height='29' x='1.5' y='1.5' stroke-width='2' fill='%23fff' rx='5' ry='5'/%3E%3Cpath stroke-width='2' d='M6 26l6-6v-8m13.8-6.3l-6 6v8'/%3E%3Ccircle cx='11.8' cy='9.5' r='2.8' stroke-width='2'/%3E%3Ccircle cx='19.8' cy='22.8' r='2.8' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
}
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;
margin: 10px 10px 10px 0px;
}
.dark .button-container {
filter: invert(1);
}
.button-container button {
background-size: 32px 32px;
background-position: 5px 5px;
background-repeat: no-repeat;
}
@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;
position: relative;
}
.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.checked {
color: #1cb53d;
}
.dark .bom tr.checked {
color: #2cce54;
}
.bom tr {
transition: background-color 0.2s;
}
.bom .numCol {
width: 30px;
}
.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;
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;
}
.statsbtn {
background-color: white;
border: none;
background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h28v24H4V6zm0 8h28v8H4m9-16v24h10V5.8' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E");
background-position: center;
background-repeat: no-repeat;
}
.iobtn {
background-color: white;
border: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M3 33v-7l6.8-7h16.5l6.7 7v7H3zM3.2 26H33M21 9l5-5.9 5 6h-2.5V15h-5V9H21zm-4.9 0l-5 6-5-6h2.5V3h5v6h2.5z'/%3E%3Cpath fill='none' stroke='%23000' d='M6.1 29.5H10'/%3E%3C/svg%3E");
background-position: center;
background-repeat: no-repeat;
}
.visbtn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23333' d='M2.5 4.5h5v15h-5zM9.5 4.5h5v15h-5zM16.5 4.5h5v15h-5z'/%3E%3C/svg%3E");
background-position: center;
background-repeat: no-repeat;
padding: 15px;
}
#vismenu-content {
left: 0px;
font-family: Verdana, sans-serif;
}
.dark .statsbtn,
.dark .savebtn,
.dark .menubtn,
.dark .iobtn,
.dark .visbtn {
filter: invert(1);
}
.flexbox {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}
.savebtn {
background-color: #d6d6d6;
width: auto;
height: 30px;
flex-grow: 1;
margin: 5px;
border-radius: 4px;
}
.savebtn:active {
background-color: #0a0;
color: white;
}
.dark .savebtn:active {
/* This will be inverted */
background-color: #b3b;
}
.stats {
border-collapse: collapse;
font-size: 12pt;
table-layout: fixed;
width: 100%;
min-width: 450px;
}
.dark .stats td {
border: 1px solid #bbb;
}
.stats td {
border: 1px solid black;
padding: 5px;
word-wrap: break-word;
text-align: center;
position: relative;
}
#checkbox-stats div {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
#checkbox-stats .bar {
background-color: rgba(28, 251, 0, 0.6);
}
.menu {
position: relative;
display: inline-block;
margin: 10px 10px 10px 0px;
}
.menu-content {
font-size: 12pt !important;
text-align: left !important;
font-weight: normal !important;
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,
.menu:hover .iobtn,
.menu:hover .statsbtn {
background-color: #eee;
}
.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);
}
.menu-textbox.invalid,
.dark .menu-textbox.invalid {
color: red;
}
.dark .menu-textbox {
background-color: #222;
color: #eee;
}
.radio-container {
margin: 4px;
}
.topmostdiv {
width: 100%;
height: 100%;
background-color: white;
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;
}
#frontcanvas,
#backcanvas {
touch-action: none;
}
.placeholder {
border: 1px dashed #9f9fda !important;
background-color: #edf2f7 !important;
}
.dragging {
z-index: 999;
}
.dark .dragging>table>tbody>tr {
background-color: #252c30;
}
.dark .placeholder {
filter: invert(1);
}
.column-spacer {
top: 0;
left: 0;
width: calc(100% - 4px);
position: absolute;
cursor: pointer;
user-select: none;
height: 100%;
}
.column-width-handle {
top: 0;
right: 0;
width: 4px;
position: absolute;
cursor: col-resize;
user-select: none;
height: 100%;
}
.column-width-handle:hover {
background-color: #4f99bd;
}
.help-link {
border: 1px solid #0278a4;
padding-inline: 0.3rem;
border-radius: 3px;
cursor: pointer;
}
.dark .help-link {
border: 1px solid #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}}});
///////////////////////////////////////////////
///////////////////////////////////////////////
///////////////////////////////////////////////
///////////////////////////////////////////////
/*!
* PEP v0.4.3 | https://github.com/jquery/PEP
* Copyright jQuery Foundation and other contributors | http://jquery.org/license
*/
!function(a,b){"object"==typeof exports&&"undefined"!=typeof module?module.exports=b():"function"==typeof define&&define.amd?define(b):a.PointerEventsPolyfill=b()}(this,function(){"use strict";function a(a,b){b=b||Object.create(null);var c=document.createEvent("Event");c.initEvent(a,b.bubbles||!1,b.cancelable||!1);
for(var d,e=2;e<m.length;e++)d=m[e],c[d]=b[d]||n[e];c.buttons=b.buttons||0;
var f=0;return f=b.pressure&&c.buttons?b.pressure:c.buttons?.5:0,c.x=c.clientX,c.y=c.clientY,c.pointerId=b.pointerId||0,c.width=b.width||0,c.height=b.height||0,c.pressure=f,c.tiltX=b.tiltX||0,c.tiltY=b.tiltY||0,c.twist=b.twist||0,c.tangentialPressure=b.tangentialPressure||0,c.pointerType=b.pointerType||"",c.hwTimestamp=b.hwTimestamp||0,c.isPrimary=b.isPrimary||!1,c}function b(){this.array=[],this.size=0}function c(a,b,c,d){this.addCallback=a.bind(d),this.removeCallback=b.bind(d),this.changedCallback=c.bind(d),A&&(this.observer=new A(this.mutationWatcher.bind(this)))}function d(a){return"body /shadow-deep/ "+e(a)}function e(a){return'[touch-action="'+a+'"]'}function f(a){return"{ -ms-touch-action: "+a+"; touch-action: "+a+"; }"}function g(){if(F){D.forEach(function(a){String(a)===a?(E+=e(a)+f(a)+"\n",G&&(E+=d(a)+f(a)+"\n")):(E+=a.selectors.map(e)+f(a.rule)+"\n",G&&(E+=a.selectors.map(d)+f(a.rule)+"\n"))});var a=document.createElement("style");a.textContent=E,document.head.appendChild(a)}}function h(){if(!window.PointerEvent){if(window.PointerEvent=a,window.navigator.msPointerEnabled){var b=window.navigator.msMaxTouchPoints;Object.defineProperty(window.navigator,"maxTouchPoints",{value:b,enumerable:!0}),u.registerSource("ms",_)}else Object.defineProperty(window.navigator,"maxTouchPoints",{value:0,enumerable:!0}),u.registerSource("mouse",N),void 0!==window.ontouchstart&&u.registerSource("touch",V);u.register(document)}}function i(a){if(!u.pointermap.has(a)){var b=new Error("InvalidPointerId");throw b.name="InvalidPointerId",b}}function j(a){for(var b=a.parentNode;b&&b!==a.ownerDocument;)b=b.parentNode;if(!b){var c=new Error("InvalidStateError");throw c.name="InvalidStateError",c}}function k(a){var b=u.pointermap.get(a);return 0!==b.buttons}function l(){window.Element&&!Element.prototype.setPointerCapture&&Object.defineProperties(Element.prototype,{setPointerCapture:{value:W},releasePointerCapture:{value:X},hasPointerCapture:{value:Y}})}
var m=["bubbles","cancelable","view","detail","screenX","screenY","clientX","clientY","ctrlKey","altKey","shiftKey","metaKey","button","relatedTarget","pageX","pageY"],n=[!1,!1,null,null,0,0,0,0,!1,!1,!1,!1,0,null,0,0],o=window.Map&&window.Map.prototype.forEach,p=o?Map:b;b.prototype={set:function(a,b){return void 0===b?this["delete"](a):(this.has(a)||this.size++,void(this.array[a]=b))},has:function(a){return void 0!==this.array[a]},"delete":function(a){this.has(a)&&(delete this.array[a],this.size--)},get:function(a){return this.array[a]},clear:function(){this.array.length=0,this.size=0},forEach:function(a,b){return this.array.forEach(function(c,d){a.call(b,c,d,this)},this)}};var q=["bubbles","cancelable","view","detail","screenX","screenY","clientX","clientY","ctrlKey","altKey","shiftKey","metaKey","button","relatedTarget","buttons","pointerId","width","height","pressure","tiltX","tiltY","pointerType","hwTimestamp","isPrimary","type","target","currentTarget","which","pageX","pageY","timeStamp"],r=[!1,!1,null,null,0,0,0,0,!1,!1,!1,!1,0,null,0,0,0,0,0,0,0,"",0,!1,"",null,null,0,0,0,0],s={pointerover:1,pointerout:1,pointerenter:1,pointerleave:1},t="undefined"!=typeof SVGElementInstance,u={pointermap:new p,eventMap:Object.create(null),captureInfo:Object.create(null),eventSources:Object.create(null),eventSourceList:[],registerSource:function(a,b){var c=b,d=c.events;d&&(d.forEach(function(a){c[a]&&(this.eventMap[a]=c[a].bind(c))},this),this.eventSources[a]=c,this.eventSourceList.push(c))},register:function(a){for(var b,c=this.eventSourceList.length,d=0;d<c&&(b=this.eventSourceList[d]);d++)
b.register.call(b,a)},unregister:function(a){for(var b,c=this.eventSourceList.length,d=0;d<c&&(b=this.eventSourceList[d]);d++)
b.unregister.call(b,a)},contains:function(a,b){try{return a.contains(b)}catch(c){return!1}},down:function(a){a.bubbles=!0,this.fireEvent("pointerdown",a)},move:function(a){a.bubbles=!0,this.fireEvent("pointermove",a)},up:function(a){a.bubbles=!0,this.fireEvent("pointerup",a)},enter:function(a){a.bubbles=!1,this.fireEvent("pointerenter",a)},leave:function(a){a.bubbles=!1,this.fireEvent("pointerleave",a)},over:function(a){a.bubbles=!0,this.fireEvent("pointerover",a)},out:function(a){a.bubbles=!0,this.fireEvent("pointerout",a)},cancel:function(a){a.bubbles=!0,this.fireEvent("pointercancel",a)},leaveOut:function(a){this.out(a),this.propagate(a,this.leave,!1)},enterOver:function(a){this.over(a),this.propagate(a,this.enter,!0)},eventHandler:function(a){if(!a._handledByPE){var b=a.type,c=this.eventMap&&this.eventMap[b];c&&c(a),a._handledByPE=!0}},listen:function(a,b){b.forEach(function(b){this.addEvent(a,b)},this)},unlisten:function(a,b){b.forEach(function(b){this.removeEvent(a,b)},this)},addEvent:function(a,b){a.addEventListener(b,this.boundHandler)},removeEvent:function(a,b){a.removeEventListener(b,this.boundHandler)},makeEvent:function(b,c){this.captureInfo[c.pointerId]&&(c.relatedTarget=null);var d=new a(b,c);return c.preventDefault&&(d.preventDefault=c.preventDefault),d._target=d._target||c.target,d},fireEvent:function(a,b){var c=this.makeEvent(a,b);return this.dispatchEvent(c)},cloneEvent:function(a){for(var b,c=Object.create(null),d=0;d<q.length;d++)b=q[d],c[b]=a[b]||r[d],!t||"target"!==b&&"relatedTarget"!==b||c[b]instanceof SVGElementInstance&&(c[b]=c[b].correspondingUseElement);return a.preventDefault&&(c.preventDefault=function(){a.preventDefault()}),c},getTarget:function(a){var b=this.captureInfo[a.pointerId];return b?a._target!==b&&a.type in s?void 0:b:a._target},propagate:function(a,b,c){for(var d=a.target,e=[];d!==document&&!d.contains(a.relatedTarget);) if(e.push(d),d=d.parentNode,!d)return;c&&e.reverse(),e.forEach(function(c){a.target=c,b.call(this,a)},this)},setCapture:function(b,c,d){this.captureInfo[b]&&this.releaseCapture(b,d),this.captureInfo[b]=c,this.implicitRelease=this.releaseCapture.bind(this,b,d),document.addEventListener("pointerup",this.implicitRelease),document.addEventListener("pointercancel",this.implicitRelease);var e=new a("gotpointercapture");e.pointerId=b,e._target=c,d||this.asyncDispatchEvent(e)},releaseCapture:function(b,c){var d=this.captureInfo[b];if(d){this.captureInfo[b]=void 0,document.removeEventListener("pointerup",this.implicitRelease),document.removeEventListener("pointercancel",this.implicitRelease);var e=new a("lostpointercapture");e.pointerId=b,e._target=d,c||this.asyncDispatchEvent(e)}},dispatchEvent:/*scope.external.dispatchEvent || */function(a){var b=this.getTarget(a);if(b)return b.dispatchEvent(a)},asyncDispatchEvent:function(a){requestAnimationFrame(this.dispatchEvent.bind(this,a))}};u.boundHandler=u.eventHandler.bind(u);var v={shadow:function(a){if(a)return a.shadowRoot||a.webkitShadowRoot},canTarget:function(a){return a&&Boolean(a.elementFromPoint)},targetingShadow:function(a){var b=this.shadow(a);if(this.canTarget(b))return b},olderShadow:function(a){var b=a.olderShadowRoot;if(!b){var c=a.querySelector("shadow");c&&(b=c.olderShadowRoot)}return b},allShadows:function(a){for(var b=[],c=this.shadow(a);c;)b.push(c),c=this.olderShadow(c);return b},searchRoot:function(a,b,c){if(a){var d,e,f=a.elementFromPoint(b,c);for(e=this.targetingShadow(f);e;){if(d=e.elementFromPoint(b,c)){var g=this.targetingShadow(d);return this.searchRoot(g,b,c)||d} e=this.olderShadow(e)} return f}},owner:function(a){
for(var b=a;b.parentNode;)b=b.parentNode;
return b.nodeType!==Node.DOCUMENT_NODE&&b.nodeType!==Node.DOCUMENT_FRAGMENT_NODE&&(b=document),b},findTarget:function(a){var b=a.clientX,c=a.clientY,d=this.owner(a.target);
return d.elementFromPoint(b,c)||(d=document),this.searchRoot(d,b,c)}},w=Array.prototype.forEach.call.bind(Array.prototype.forEach),x=Array.prototype.map.call.bind(Array.prototype.map),y=Array.prototype.slice.call.bind(Array.prototype.slice),z=Array.prototype.filter.call.bind(Array.prototype.filter),A=window.MutationObserver||window.WebKitMutationObserver,B="[touch-action]",C={subtree:!0,childList:!0,attributes:!0,attributeOldValue:!0,attributeFilter:["touch-action"]};c.prototype={watchSubtree:function(a){
//
this.observer&&v.canTarget(a)&&this.observer.observe(a,C)},enableOnSubtree:function(a){this.watchSubtree(a),a===document&&"complete"!==document.readyState?this.installOnLoad():this.installNewSubtree(a)},installNewSubtree:function(a){w(this.findElements(a),this.addElement,this)},findElements:function(a){return a.querySelectorAll?a.querySelectorAll(B):[]},removeElement:function(a){this.removeCallback(a)},addElement:function(a){this.addCallback(a)},elementChanged:function(a,b){this.changedCallback(a,b)},concatLists:function(a,b){return a.concat(y(b))},
installOnLoad:function(){document.addEventListener("readystatechange",function(){"complete"===document.readyState&&this.installNewSubtree(document)}.bind(this))},isElement:function(a){return a.nodeType===Node.ELEMENT_NODE},flattenMutationTree:function(a){
var b=x(a,this.findElements,this);
return b.push(z(a,this.isElement)),b.reduce(this.concatLists,[])},mutationWatcher:function(a){a.forEach(this.mutationHandler,this)},mutationHandler:function(a){if("childList"===a.type){var b=this.flattenMutationTree(a.addedNodes);b.forEach(this.addElement,this);var c=this.flattenMutationTree(a.removedNodes);c.forEach(this.removeElement,this)}else"attributes"===a.type&&this.elementChanged(a.target,a.oldValue)}};var D=["none","auto","pan-x","pan-y",{rule:"pan-x pan-y",selectors:["pan-x pan-y","pan-y pan-x"]}],E="",F=window.PointerEvent||window.MSPointerEvent,G=!window.ShadowDOMPolyfill&&document.head.createShadowRoot,H=u.pointermap,I=25,J=[1,4,2,8,16],K=!1;try{K=1===new MouseEvent("test",{buttons:1}).buttons}catch(L){}
var M,N={POINTER_ID:1,POINTER_TYPE:"mouse",events:["mousedown","mousemove","mouseup","mouseover","mouseout"],register:function(a){u.listen(a,this.events)},unregister:function(a){u.unlisten(a,this.events)},lastTouches:[],
isEventSimulatedFromTouch:function(a){for(var b,c=this.lastTouches,d=a.clientX,e=a.clientY,f=0,g=c.length;f<g&&(b=c[f]);f++){
var h=Math.abs(d-b.x),i=Math.abs(e-b.y);if(h<=I&&i<=I)return!0}},prepareEvent:function(a){var b=u.cloneEvent(a),c=b.preventDefault;return b.preventDefault=function(){a.preventDefault(),c()},b.pointerId=this.POINTER_ID,b.isPrimary=!0,b.pointerType=this.POINTER_TYPE,b},prepareButtonsForMove:function(a,b){var c=H.get(this.POINTER_ID);
0!==b.which&&c?a.buttons=c.buttons:a.buttons=0,b.buttons=a.buttons},mousedown:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=H.get(this.POINTER_ID),c=this.prepareEvent(a);K||(c.buttons=J[c.button],b&&(c.buttons|=b.buttons),a.buttons=c.buttons),H.set(this.POINTER_ID,a),b&&0!==b.buttons?u.move(c):u.down(c)}},mousemove:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=this.prepareEvent(a);K||this.prepareButtonsForMove(b,a),b.button=-1,H.set(this.POINTER_ID,a),u.move(b)}},mouseup:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=H.get(this.POINTER_ID),c=this.prepareEvent(a);if(!K){var d=J[c.button];
c.buttons=b?b.buttons&~d:0,a.buttons=c.buttons}H.set(this.POINTER_ID,a),
c.buttons&=~J[c.button],0===c.buttons?u.up(c):u.move(c)}},mouseover:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=this.prepareEvent(a);K||this.prepareButtonsForMove(b,a),b.button=-1,H.set(this.POINTER_ID,a),u.enterOver(b)}},mouseout:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=this.prepareEvent(a);K||this.prepareButtonsForMove(b,a),b.button=-1,u.leaveOut(b)}},cancel:function(a){var b=this.prepareEvent(a);u.cancel(b),this.deactivateMouse()},deactivateMouse:function(){H["delete"](this.POINTER_ID)}},O=u.captureInfo,P=v.findTarget.bind(v),Q=v.allShadows.bind(v),R=u.pointermap,S=2500,T=200,U="touch-action",V={events:["touchstart","touchmove","touchend","touchcancel"],register:function(a){M.enableOnSubtree(a)},unregister:function(){},elementAdded:function(a){var b=a.getAttribute(U),c=this.touchActionToScrollType(b);c&&(a._scrollType=c,u.listen(a,this.events),
Q(a).forEach(function(a){a._scrollType=c,u.listen(a,this.events)},this))},elementRemoved:function(a){a._scrollType=void 0,u.unlisten(a,this.events),
Q(a).forEach(function(a){a._scrollType=void 0,u.unlisten(a,this.events)},this)},elementChanged:function(a,b){var c=a.getAttribute(U),d=this.touchActionToScrollType(c),e=this.touchActionToScrollType(b);
d&&e?(a._scrollType=d,Q(a).forEach(function(a){a._scrollType=d},this)):e?this.elementRemoved(a):d&&this.elementAdded(a)},scrollTypes:{EMITTER:"none",XSCROLLER:"pan-x",YSCROLLER:"pan-y",SCROLLER:/^(?:pan-x pan-y)|(?:pan-y pan-x)|auto$/},touchActionToScrollType:function(a){var b=a,c=this.scrollTypes;return"none"===b?"none":b===c.XSCROLLER?"X":b===c.YSCROLLER?"Y":c.SCROLLER.exec(b)?"XY":void 0},POINTER_TYPE:"touch",firstTouch:null,isPrimaryTouch:function(a){return this.firstTouch===a.identifier},setPrimaryTouch:function(a){
(0===R.size||1===R.size&&R.has(1))&&(this.firstTouch=a.identifier,this.firstXY={X:a.clientX,Y:a.clientY},this.scrolling=!1,this.cancelResetClickCount())},removePrimaryPointer:function(a){a.isPrimary&&(this.firstTouch=null,this.firstXY=null,this.resetClickCount())},clickCount:0,resetId:null,resetClickCount:function(){var a=function(){this.clickCount=0,this.resetId=null}.bind(this);this.resetId=setTimeout(a,T)},cancelResetClickCount:function(){this.resetId&&clearTimeout(this.resetId)},typeToButtons:function(a){var b=0;return"touchstart"!==a&&"touchmove"!==a||(b=1),b},touchToPointer:function(a){var b=this.currentTouchEvent,c=u.cloneEvent(a),d=c.pointerId=a.identifier+2;c.target=O[d]||P(c),c.bubbles=!0,c.cancelable=!0,c.detail=this.clickCount,c.button=0,c.buttons=this.typeToButtons(b.type),c.width=2*(a.radiusX||a.webkitRadiusX||0),c.height=2*(a.radiusY||a.webkitRadiusY||0),c.pressure=a.force||a.webkitForce||.5,c.isPrimary=this.isPrimaryTouch(a),c.pointerType=this.POINTER_TYPE,
c.altKey=b.altKey,c.ctrlKey=b.ctrlKey,c.metaKey=b.metaKey,c.shiftKey=b.shiftKey;
var e=this;return c.preventDefault=function(){e.scrolling=!1,e.firstXY=null,b.preventDefault()},c},processTouches:function(a,b){var c=a.changedTouches;this.currentTouchEvent=a;for(var d,e=0;e<c.length;e++)d=c[e],b.call(this,this.touchToPointer(d))},
shouldScroll:function(a){if(this.firstXY){var b,c=a.currentTarget._scrollType;if("none"===c)
b=!1;else if("XY"===c)
b=!0;else{var d=a.changedTouches[0],e=c,f="Y"===c?"X":"Y",g=Math.abs(d["client"+e]-this.firstXY[e]),h=Math.abs(d["client"+f]-this.firstXY[f]);
b=g>=h}return this.firstXY=null,b}},findTouch:function(a,b){for(var c,d=0,e=a.length;d<e&&(c=a[d]);d++)if(c.identifier===b)return!0},
vacuumTouches:function(a){var b=a.touches;
if(R.size>=b.length){var c=[];R.forEach(function(a,d){
if(1!==d&&!this.findTouch(b,d-2)){var e=a.out;c.push(e)}},this),c.forEach(this.cancelOut,this)}},touchstart:function(a){this.vacuumTouches(a),this.setPrimaryTouch(a.changedTouches[0]),this.dedupSynthMouse(a),this.scrolling||(this.clickCount++,this.processTouches(a,this.overDown))},overDown:function(a){R.set(a.pointerId,{target:a.target,out:a,outTarget:a.target}),u.enterOver(a),u.down(a)},touchmove:function(a){this.scrolling||(this.shouldScroll(a)?(this.scrolling=!0,this.touchcancel(a)):(a.preventDefault(),this.processTouches(a,this.moveOverOut)))},moveOverOut:function(a){var b=a,c=R.get(b.pointerId);
if(c){var d=c.out,e=c.outTarget;u.move(b),d&&e!==b.target&&(d.relatedTarget=b.target,b.relatedTarget=e,
d.target=e,b.target?(u.leaveOut(d),u.enterOver(b)):(
b.target=e,b.relatedTarget=null,this.cancelOut(b))),c.out=b,c.outTarget=b.target}},touchend:function(a){this.dedupSynthMouse(a),this.processTouches(a,this.upOut)},upOut:function(a){this.scrolling||(u.up(a),u.leaveOut(a)),this.cleanUpPointer(a)},touchcancel:function(a){this.processTouches(a,this.cancelOut)},cancelOut:function(a){u.cancel(a),u.leaveOut(a),this.cleanUpPointer(a)},cleanUpPointer:function(a){R["delete"](a.pointerId),this.removePrimaryPointer(a)},
dedupSynthMouse:function(a){var b=N.lastTouches,c=a.changedTouches[0];
if(this.isPrimaryTouch(c)){
var d={x:c.clientX,y:c.clientY};b.push(d);var e=function(a,b){var c=a.indexOf(b);c>-1&&a.splice(c,1)}.bind(null,b,d);setTimeout(e,S)}}};M=new c(V.elementAdded,V.elementRemoved,V.elementChanged,V);var W,X,Y,Z=u.pointermap,$=window.MSPointerEvent&&"number"==typeof window.MSPointerEvent.MSPOINTER_TYPE_MOUSE,_={events:["MSPointerDown","MSPointerMove","MSPointerUp","MSPointerOut","MSPointerOver","MSPointerCancel","MSGotPointerCapture","MSLostPointerCapture"],register:function(a){u.listen(a,this.events)},unregister:function(a){u.unlisten(a,this.events)},POINTER_TYPES:["","unavailable","touch","pen","mouse"],prepareEvent:function(a){var b=a;return $&&(b=u.cloneEvent(a),b.pointerType=this.POINTER_TYPES[a.pointerType]),b},cleanup:function(a){Z["delete"](a)},MSPointerDown:function(a){Z.set(a.pointerId,a);var b=this.prepareEvent(a);u.down(b)},MSPointerMove:function(a){var b=this.prepareEvent(a);u.move(b)},MSPointerUp:function(a){var b=this.prepareEvent(a);u.up(b),this.cleanup(a.pointerId)},MSPointerOut:function(a){var b=this.prepareEvent(a);u.leaveOut(b)},MSPointerOver:function(a){var b=this.prepareEvent(a);u.enterOver(b)},MSPointerCancel:function(a){var b=this.prepareEvent(a);u.cancel(b),this.cleanup(a.pointerId)},MSLostPointerCapture:function(a){var b=u.makeEvent("lostpointercapture",a);u.dispatchEvent(b)},MSGotPointerCapture:function(a){var b=u.makeEvent("gotpointercapture",a);u.dispatchEvent(b)}},aa=window.navigator;aa.msPointerEnabled?(W=function(a){i(a),j(this),k(a)&&(u.setCapture(a,this,!0),this.msSetPointerCapture(a))},X=function(a){i(a),u.releaseCapture(a,!0),this.msReleasePointerCapture(a)}):(W=function(a){i(a),j(this),k(a)&&u.setCapture(a,this)},X=function(a){i(a),u.releaseCapture(a)}),Y=function(a){return!!u.captureInfo[a]},g(),h(),l();var ba={dispatcher:u,Installer:c,PointerEvent:a,PointerMap:p,targetFinding:v};return ba});
///////////////////////////////////////////////
///////////////////////////////////////////////
var config = {"dark_mode": false, "show_pads": true, "show_fabrication": false, "show_silkscreen": true, "highlight_pin1": true, "redraw_on_drag": true, "board_rotation": 0.0, "checkboxes": "Sourced,Placed", "bom_view": "left-right", "layer_view": "FB", "fields": ["Value", "Footprint"]}
///////////////////////////////////////////////
///////////////////////////////////////////////
var pcbdata = {"edges_bbox": {"minx": 60.148, "miny": 31.446, "maxx": 86.283, "maxy": 55.549}, "edges": [{"type": "polygon", "pos": [0, 0], "angle": 0, "polygons": [[[86.233, 31.496], [60.198, 31.496], [60.198, 55.499], [86.233, 55.499]]], "width": 0.1, "filled": 0}], "drawings": {"silkscreen": {"F": [{"thickness": 0.15, "svgpath": "M84.562904,32.944333L84.181952,33.211M84.562904,33.401476L83.762904,33.401476L83.762904,33.096714L83.801,33.020523L83.839095,32.982428L83.915285,32.944333L84.029571,32.944333L84.105761,32.982428L84.143857,33.020523L84.181952,33.096714L84.181952,33.401476M83.762904,32.677666L83.762904,32.182428L84.067666,32.449095L84.067666,32.334809L84.105761,32.258619L84.143857,32.220523L84.220047,32.182428L84.410523,32.182428L84.486714,32.220523L84.524809,32.258619L84.562904,32.334809L84.562904,32.56338L84.524809,32.639571L84.486714,32.677666", "ref": 1}, {"type": "segment", "start": [81.560936, 33.501], "end": [82.015064, 33.501], "width": 0.12}, {"type": "segment", "start": [81.560936, 32.031], "end": [82.015064, 32.031], "width": 0.12}, {"thickness": 0.15, "svgpath": "M77.450904,53.727333L77.069952,53.994M77.450904,54.184476L76.650904,54.184476L76.650904,53.879714L76.689,53.803523L76.727095,53.765428L76.803285,53.727333L76.917571,53.727333L76.993761,53.765428L77.031857,53.803523L77.069952,53.879714L77.069952,54.184476M77.450904,52.965428L77.450904,53.422571M77.450904,53.194L76.650904,53.194L76.76519,53.27019L76.84138,53.34638L76.879476,53.422571", "ref": 1}, {"type": "segment", "start": [75.030064, 52.859], "end": [74.575936, 52.859], "width": 0.12}, {"type": "segment", "start": [75.030064, 54.329], "end": [74.575936, 54.329], "width": 0.12}, {"thickness": 0.15, "svgpath": "M75.926904,32.944333L75.545952,33.211M75.926904,33.401476L75.126904,33.401476L75.126904,33.096714L75.165,33.020523L75.203095,32.982428L75.279285,32.944333L75.393571,32.944333L75.469761,32.982428L75.507857,33.020523L75.545952,33.096714L75.545952,33.401476M75.126904,32.220523L75.126904,32.601476L75.507857,32.639571L75.469761,32.601476L75.431666,32.525285L75.431666,32.334809L75.469761,32.258619L75.507857,32.220523L75.584047,32.182428L75.774523,32.182428L75.850714,32.220523L75.888809,32.258619L75.926904,32.334809L75.926904,32.525285L75.888809,32.601476L75.850714,32.639571", "ref": 1}, {"type": "segment", "start": [77.623936, 33.501], "end": [78.078064, 33.501], "width": 0.12}, {"type": "segment", "start": [77.623936, 32.031], "end": [78.078064, 32.031], "width": 0.12}, {"thickness": 0.15, "svgpath": "M68.814904,32.944333L68.433952,33.211M68.814904,33.401476L68.014904,33.401476L68.014904,33.096714L68.053,33.020523L68.091095,32.982428L68.167285,32.944333L68.281571,32.944333L68.357761,32.982428L68.395857,33.020523L68.433952,33.096714L68.433952,33.401476M68.014904,32.677666L68.014904,32.144333L68.814904,32.48719", "ref": 1}, {"type": "segment", "start": [66.370564, 33.501], "end": [65.916436, 33.501], "width": 0.12}, {"type": "segment", "start": [66.370564, 32.031], "end": [65.916436, 32.031], "width": 0.12}, {"thickness": 0.15, "svgpath": "M61.157,34.905904L61.157,34.105904L61.347476,34.105904L61.461761,34.144L61.537952,34.22019L61.576047,34.29638L61.614142,34.448761L61.614142,34.563047L61.576047,34.715428L61.537952,34.791619L61.461761,34.867809L61.347476,34.905904L61.157,34.905904M61.918904,34.677333L62.299857,34.677333M61.842714,34.905904L62.10938,34.105904L62.376047,34.905904M62.528428,34.105904L62.985571,34.105904M62.757,34.905904L62.757,34.105904M63.214142,34.677333L63.595095,34.677333M63.137952,34.905904L63.404619,34.105904L63.671285,34.905904", "val": 1}, {"type": "segment", "start": [64.081, 33.771], "end": [64.081, 31.851], "width": 0.12}, {"type": "segment", "start": [61.221, 33.771], "end": [64.081, 33.771], "width": 0.12}, {"type": "segment", "start": [64.081, 31.851], "end": [61.221, 31.851], "width": 0.12}, {"thickness": 0.15, "svgpath": "M73.386904,32.944333L73.005952,33.211M73.386904,33.401476L72.586904,33.401476L72.586904,33.096714L72.625,33.020523L72.663095,32.982428L72.739285,32.944333L72.853571,32.944333L72.929761,32.982428L72.967857,33.020523L73.005952,33.096714L73.005952,33.401476M72.853571,32.258619L73.386904,32.258619M72.548809,32.449095L73.120238,32.639571L73.120238,32.144333", "ref": 1}, {"type": "segment", "start": [70.384936, 33.501], "end": [70.839064, 33.501], "width": 0.12}, {"type": "segment", "start": [70.384936, 32.031], "end": [70.839064, 32.031], "width": 0.12}, {"thickness": 0.15, "svgpath": "M71.755095,38.56838L71.755095,39.377904L71.802714,39.473142L71.850333,39.520761L71.945571,39.56838L72.136047,39.56838L72.231285,39.520761L72.278904,39.473142L72.326523,39.377904L72.326523,38.56838M73.326523,39.56838L72.755095,39.56838M73.040809,39.56838L73.040809,38.56838L72.945571,38.711238L72.850333,38.806476L72.755095,38.854095", "ref": 1}, {"type": "segment", "start": [68.075, 51.554], "end": [60.455, 51.554], "width": 0.12}, {"type": "segment", "start": [84.695, 49.434], "end": [84.695, 51.554], "width": 0.12}, {"type": "segment", "start": [60.455, 51.554], "end": [60.455, 35.314], "width": 0.12}, {"type": "segment", "start": [84.695, 35.314], "end": [84.695, 37.434], "width": 0.12}, {"type": "segment", "start": [84.075, 35.314], "end": [84.695, 35.314], "width": 0.12}, {"type": "segment", "start": [60.455, 35.314], "end": [68.075, 35.314], "width": 0.12}, {"type": "segment", "start": [68.075, 51.554], "end": [68.075, 52.164], "width": 0.12}, {"type": "segment", "start": [84.695, 51.554], "end": [84.075, 51.554], "width": 0.12}, {"thickness": 0.15, "svgpath": "M61.671333,53.955904L61.671333,53.155904L61.976095,53.155904L62.052285,53.194L62.09038,53.232095L62.128476,53.308285L62.128476,53.422571L62.09038,53.498761L62.052285,53.536857L61.976095,53.574952L61.671333,53.574952M62.395142,53.155904L62.585619,53.955904L62.738,53.384476L62.89038,53.955904L63.080857,53.155904M63.842761,53.955904L63.576095,53.574952M63.385619,53.955904L63.385619,53.155904L63.69038,53.155904L63.766571,53.194L63.804666,53.232095L63.842761,53.308285L63.842761,53.422571L63.804666,53.498761L63.766571,53.536857L63.69038,53.574952L63.385619,53.574952", "val": 1}, {"type": "segment", "start": [64.316, 54.554], "end": [67.176, 54.554], "width": 0.12}, {"type": "segment", "start": [67.176, 52.634], "end": [64.316, 52.634], "width": 0.12}, {"type": "segment", "start": [64.316, 52.634], "end": [64.316, 54.554], "width": 0.12}, {"thickness": 0.15, "svgpath": "M72.878904,53.727333L72.497952,53.994M72.878904,54.184476L72.078904,54.184476L72.078904,53.879714L72.117,53.803523L72.155095,53.765428L72.231285,53.727333L72.345571,53.727333L72.421761,53.765428L72.459857,53.803523L72.497952,53.879714L72.497952,54.184476M72.155095,53.422571L72.117,53.384476L72.078904,53.308285L72.078904,53.117809L72.117,53.041619L72.155095,53.003523L72.231285,52.965428L72.307476,52.965428L72.421761,53.003523L72.878904,53.460666L72.878904,52.965428", "ref": 1}, {"type": "segment", "start": [70.331064, 52.859], "end": [69.876936, 52.859], "width": 0.12}, {"type": "segment", "start": [70.331064, 54.329], "end": [69.876936, 54.329], "width": 0.12}], "B": [{"thickness": 0.15, "svgpath": "M67.233666,52.304904L67.233666,51.504904L66.928904,51.504904L66.852714,51.543L66.814619,51.581095L66.776523,51.657285L66.776523,51.771571L66.814619,51.847761L66.852714,51.885857L66.928904,51.923952L67.233666,51.923952M66.509857,51.504904L66.31938,52.304904L66.167,51.733476L66.014619,52.304904L65.824142,51.504904M65.062238,52.304904L65.328904,51.923952M65.51938,52.304904L65.51938,51.504904L65.214619,51.504904L65.138428,51.543L65.100333,51.581095L65.062238,51.657285L65.062238,51.771571L65.100333,51.847761L65.138428,51.885857L65.214619,51.923952L65.51938,51.923952"}, {"thickness": 0.15, "svgpath": "M81.118571,53.998L80.69,53.998M81.204285,54.255142L80.904285,53.355142L80.604285,54.255142"}, {"thickness": 0.15, "svgpath": "M72.349285,53.271L72.435,53.228142L72.563571,53.228142L72.692142,53.271L72.777857,53.356714L72.820714,53.442428L72.863571,53.613857L72.863571,53.742428L72.820714,53.913857L72.777857,53.999571L72.692142,54.085285L72.563571,54.128142L72.477857,54.128142L72.349285,54.085285L72.306428,54.042428L72.306428,53.742428L72.477857,53.742428M71.920714,54.128142L71.920714,53.228142L71.406428,54.128142L71.406428,53.228142M70.977857,54.128142L70.977857,53.228142L70.763571,53.228142L70.635,53.271L70.549285,53.356714L70.506428,53.442428L70.463571,53.613857L70.463571,53.742428L70.506428,53.913857L70.549285,53.999571L70.635,54.085285L70.763571,54.128142L70.977857,54.128142"}, {"thickness": 0.15, "svgpath": "M77.980142,53.228142L78.408714,53.228142L78.451571,53.656714L78.408714,53.613857L78.323,53.571L78.108714,53.571L78.023,53.613857L77.980142,53.656714L77.937285,53.742428L77.937285,53.956714L77.980142,54.042428L78.023,54.085285L78.108714,54.128142L78.323,54.128142L78.408714,54.085285L78.451571,54.042428M77.680142,53.228142L77.380142,54.128142L77.080142,53.228142"}, {"thickness": 0.15, "svgpath": "M62.151214,41.352285L62.151214,41.652285M62.622642,41.780857L62.622642,41.352285L61.722642,41.352285L61.722642,41.780857M62.579785,42.123714L62.622642,42.252285L62.622642,42.466571L62.579785,42.552285L62.536928,42.595142L62.451214,42.638L62.3655,42.638L62.279785,42.595142L62.236928,42.552285L62.194071,42.466571L62.151214,42.295142L62.108357,42.209428L62.0655,42.166571L61.979785,42.123714L61.894071,42.123714L61.808357,42.166571L61.7655,42.209428L61.722642,42.295142L61.722642,42.509428L61.7655,42.638M62.622642,43.023714L61.722642,43.023714L61.722642,43.366571L61.7655,43.452285L61.808357,43.495142L61.894071,43.538L62.022642,43.538L62.108357,43.495142L62.151214,43.452285L62.194071,43.366571L62.194071,43.023714M62.279785,43.923714L62.279785,44.609428M62.622642,45.509428L62.622642,44.995142M62.622642,45.252285L61.722642,45.252285L61.851214,45.166571L61.936928,45.080857L61.979785,44.995142M61.808357,45.852285L61.7655,45.895142L61.722642,45.980857L61.722642,46.195142L61.7655,46.280857L61.808357,46.323714L61.894071,46.366571L61.979785,46.366571L62.108357,46.323714L62.622642,45.809428L62.622642,46.366571M62.151214,47.052285L62.151214,46.752285M62.622642,46.752285L61.722642,46.752285L61.722642,47.180857M64.071642,41.866571L63.643071,41.566571M64.071642,41.352285L63.171642,41.352285L63.171642,41.695142L63.2145,41.780857L63.257357,41.823714L63.343071,41.866571L63.471642,41.866571L63.557357,41.823714L63.600214,41.780857L63.643071,41.695142L63.643071,41.352285M64.028785,42.209428L64.071642,42.338L64.071642,42.552285L64.028785,42.638L63.985928,42.680857L63.900214,42.723714L63.8145,42.723714L63.728785,42.680857L63.685928,42.638L63.643071,42.552285L63.600214,42.380857L63.557357,42.295142L63.5145,42.252285L63.428785,42.209428L63.343071,42.209428L63.257357,42.252285L63.2145,42.295142L63.171642,42.380857L63.171642,42.595142L63.2145,42.723714M63.471642,43.495142L64.071642,43.495142M63.128785,43.280857L63.771642,43.066571L63.771642,43.623714M63.557357,44.095142L63.5145,44.009428L63.471642,43.966571L63.385928,43.923714L63.343071,43.923714L63.257357,43.966571L63.2145,44.009428L63.171642,44.095142L63.171642,44.266571L63.2145,44.352285L63.257357,44.395142L63.343071,44.438L63.385928,44.438L63.471642,44.395142L63.5145,44.352285L63.557357,44.266571L63.557357,44.095142L63.600214,44.009428L63.643071,43.966571L63.728785,43.923714L63.900214,43.923714L63.985928,43.966571L64.028785,44.009428L64.071642,44.095142L64.071642,44.266571L64.028785,44.352285L63.985928,44.395142L63.900214,44.438L63.728785,44.438L63.643071,44.395142L63.600214,44.352285L63.557357,44.266571M63.171642,45.252285L63.171642,44.823714L63.600214,44.780857L63.557357,44.823714L63.5145,44.909428L63.5145,45.123714L63.557357,45.209428L63.600214,45.252285L63.685928,45.295142L63.900214,45.295142L63.985928,45.252285L64.028785,45.209428L64.071642,45.123714L64.071642,44.909428L64.028785,44.823714L63.985928,44.780857M64.071642,46.366571L63.471642,46.366571M63.171642,46.366571L63.2145,46.323714L63.257357,46.366571L63.2145,46.409428L63.171642,46.366571L63.257357,46.366571M63.471642,46.795142L64.071642,46.795142M63.557357,46.795142L63.5145,46.838L63.471642,46.923714L63.471642,47.052285L63.5145,47.138L63.600214,47.180857L64.071642,47.180857M63.471642,47.480857L63.471642,47.823714M63.171642,47.609428L63.943071,47.609428L64.028785,47.652285L64.071642,47.738L64.071642,47.823714M64.028785,48.466571L64.071642,48.380857L64.071642,48.209428L64.028785,48.123714L63.943071,48.080857L63.600214,48.080857L63.5145,48.123714L63.471642,48.209428L63.471642,48.380857L63.5145,48.466571L63.600214,48.509428L63.685928,48.509428L63.771642,48.080857M64.071642,48.895142L63.471642,48.895142M63.643071,48.895142L63.557357,48.938L63.5145,48.980857L63.471642,49.066571L63.471642,49.152285M63.471642,49.323714L63.471642,49.666571M64.071642,49.452285L63.300214,49.452285L63.2145,49.495142L63.171642,49.580857L63.171642,49.666571M64.071642,50.352285L63.600214,50.352285L63.5145,50.309428L63.471642,50.223714L63.471642,50.052285L63.5145,49.966571M64.028785,50.352285L64.071642,50.266571L64.071642,50.052285L64.028785,49.966571L63.943071,49.923714L63.857357,49.923714L63.771642,49.966571L63.728785,50.052285L63.728785,50.266571L63.685928,50.352285M64.028785,51.166571L64.071642,51.080857L64.071642,50.909428L64.028785,50.823714L63.985928,50.780857L63.900214,50.738L63.643071,50.738L63.557357,50.780857L63.5145,50.823714L63.471642,50.909428L63.471642,51.080857L63.5145,51.166571M64.028785,51.895142L64.071642,51.809428L64.071642,51.638L64.028785,51.552285L63.943071,51.509428L63.600214,51.509428L63.5145,51.552285L63.471642,51.638L63.471642,51.809428L63.5145,51.895142L63.600214,51.938L63.685928,51.938L63.771642,51.509428M66.069642,41.223714L66.969642,41.523714L66.069642,41.823714M66.969642,42.595142L66.969642,42.080857M66.969642,42.338L66.069642,42.338L66.198214,42.252285L66.283928,42.166571L66.326785,42.080857M66.883928,42.980857L66.926785,43.023714L66.969642,42.980857L66.926785,42.938L66.883928,42.980857L66.969642,42.980857M66.069642,43.580857L66.069642,43.666571L66.1125,43.752285L66.155357,43.795142L66.241071,43.838L66.4125,43.880857L66.626785,43.880857L66.798214,43.838L66.883928,43.795142L66.926785,43.752285L66.969642,43.666571L66.969642,43.580857L66.926785,43.495142L66.883928,43.452285L66.798214,43.409428L66.626785,43.366571L66.4125,43.366571L66.241071,43.409428L66.155357,43.452285L66.1125,43.495142L66.069642,43.580857M66.155357,44.909428L66.1125,44.952285L66.069642,45.038L66.069642,45.252285L66.1125,45.338L66.155357,45.380857L66.241071,45.423714L66.326785,45.423714L66.455357,45.380857L66.969642,44.866571L66.969642,45.423714M66.069642,45.980857L66.069642,46.066571L66.1125,46.152285L66.155357,46.195142L66.241071,46.238L66.4125,46.280857L66.626785,46.280857L66.798214,46.238L66.883928,46.195142L66.926785,46.152285L66.969642,46.066571L66.969642,45.980857L66.926785,45.895142L66.883928,45.852285L66.798214,45.809428L66.626785,45.766571L66.4125,45.766571L66.241071,45.809428L66.155357,45.852285L66.1125,45.895142L66.069642,45.980857M66.155357,46.623714L66.1125,46.666571L66.069642,46.752285L66.069642,46.966571L66.1125,47.052285L66.155357,47.095142L66.241071,47.138L66.326785,47.138L66.455357,47.095142L66.969642,46.580857L66.969642,47.138M66.069642,47.438L66.069642,47.995142L66.4125,47.695142L66.4125,47.823714L66.455357,47.909428L66.498214,47.952285L66.583928,47.995142L66.798214,47.995142L66.883928,47.952285L66.926785,47.909428L66.969642,47.823714L66.969642,47.566571L66.926785,47.480857L66.883928,47.438"}, {"thickness": 0.15, "svgpath": "M67.113,33.254904L67.113,32.454904L66.922523,32.454904L66.808238,32.493L66.732047,32.56919L66.693952,32.64538L66.655857,32.797761L66.655857,32.912047L66.693952,33.064428L66.732047,33.140619L66.808238,33.216809L66.922523,33.254904L67.113,33.254904M66.351095,33.026333L65.970142,33.026333M66.427285,33.254904L66.160619,32.454904L65.893952,33.254904M65.741571,32.454904L65.284428,32.454904M65.512999,33.254904L65.512999,32.454904M65.055857,33.026333L64.674904,33.026333M65.132047,33.254904L64.86538,32.454904L64.598714,33.254904"}, {"thickness": 0.15, "svgpath": "M85.601714,53.783714L85.473142,53.826571L85.430285,53.869428L85.387428,53.955142L85.387428,54.083714L85.430285,54.169428L85.473142,54.212285L85.558857,54.255142L85.901714,54.255142L85.901714,53.355142L85.601714,53.355142L85.516,53.398L85.473142,53.440857L85.430285,53.526571L85.430285,53.612285L85.473142,53.698L85.516,53.740857L85.601714,53.783714L85.901714,53.783714"}, {"type": "segment", "start": [64.071, 31.841], "end": [61.211, 31.841], "width": 0.12}, {"type": "segment", "start": [61.211, 33.761], "end": [64.071, 33.761], "width": 0.12}, {"type": "segment", "start": [64.071, 33.761], "end": [64.071, 31.841], "width": 0.12}, {"type": "segment", "start": [64.326, 54.564], "end": [67.186, 54.564], "width": 0.12}, {"type": "segment", "start": [67.186, 52.644], "end": [64.326, 52.644], "width": 0.12}, {"type": "segment", "start": [64.326, 52.644], "end": [64.326, 54.564], "width": 0.12}, {"thickness": 0.15, "svgpath": "M87.352142,37.790523L87.399761,37.742904L87.44738,37.600047L87.44738,37.504809L87.399761,37.361952L87.304523,37.266714L87.209285,37.219095L87.018809,37.171476L86.875952,37.171476L86.685476,37.219095L86.590238,37.266714L86.495,37.361952L86.44738,37.504809L86.44738,37.600047L86.495,37.742904L86.542619,37.790523M86.44738,38.219095L87.256904,38.219095L87.352142,38.266714L87.399761,38.314333L87.44738,38.409571L87.44738,38.600047L87.399761,38.695285L87.352142,38.742904L87.256904,38.790523L86.44738,38.790523M87.44738,39.790523L87.44738,39.219095M87.44738,39.504809L86.44738,39.504809L86.590238,39.409571L86.685476,39.314333L86.733095,39.219095", "ref": 1}, {"type": "segment", "start": [67.945, 32.131], "end": [85.979, 32.131], "width": 0.12}, {"type": "segment", "start": [67.945, 44.577], "end": [67.945, 32.131], "width": 0.12}, {"type": "segment", "start": [85.979, 32.131], "end": [85.979, 44.323], "width": 0.12}, {"type": "polygon", "pos": [64.008, 36.957], "angle": -90.0, "polygons": [[[2.116877, 2.764724], [3.383025, 2.074333], [3.384846, 1.562038], [3.386667, 1.049742], [3.001301, 0.862517], [2.790526, 0.744233], [2.670184, 0.645099], [2.658544, 0.606349], [2.756204, 0.53197], [2.951559, 0.426272], [3.04391, 0.382844], [3.386667, 0.228282], [3.385955, -0.753692], [3.385242, -1.735667], [2.958732, -1.961382], [2.532222, -2.187098], [2.176278, -1.983569], [1.955571, -1.864108], [1.796662, -1.790367], [1.756834, -1.77902], [1.721214, -1.854803], [1.697798, -2.050556], [1.692499, -2.2225], [1.691665, -2.667], [0.909333, -3.090334], [0.572241, -3.267716], [0.281728, -3.411355], [0.075183, -3.503285], [0.0, -3.527314], [-0.123164, -3.493503], [-0.355769, -3.391419], [-0.661039, -3.238198], [-0.908502, -3.10398], [-1.690003, -2.667], [-1.69278, -1.100667], [-1.100666, -1.100667], [-0.57469, -1.100667], [-0.635467, -0.3175], [-0.656467, 0.015334], [-0.662989, 0.266572], [-0.654674, 0.4023], [-0.643244, 0.415066], [-0.591922, 0.31503], [-0.506157, 0.098671], [-0.403589, -0.189211], [-0.393179, -0.219934], [-0.253409, -0.583479], [-0.129647, -0.781514], [-0.013063, -0.816032], [0.105175, -0.689025], [0.233899, -0.402484], [0.247907, -0.364532], [0.389806, 0.016194], [0.484588, 0.237516], [0.539083, 0.300543], [0.56012, 0.206382], [0.554529, -0.043861], [0.53802, -0.3175], [0.486159, -1.100667], [1.016, -1.100667], [1.016, 1.185333], [0.734573, 1.185333], [0.592127, 1.178256], [0.494874, 1.134867], [0.417781, 1.021929], [0.335814, 0.806205], [0.25236, 0.545104], [0.151022, 0.23986], [0.062012, 0.003481], [0.001326, -0.122357], [-0.007325, -0.131527], [-0.059519, -0.074492], [-0.148137, 0.109023], [-0.257282, 0.38445], [-0.301766, 0.508702], [-0.419082, 0.837342], [-0.50633, 1.037477], [-0.587853, 1.140954], [-0.687997, 1.179621], [-0.818987, 1.185333], [-1.100666, 1.185333], [-1.100666, -1.100667], [-1.69278, -1.100667], [-1.693333, -0.788912], [-2.119295, -0.557074], [-2.545257, -0.325237], [-2.521462, 0.64663], [-2.497666, 1.618497], [-1.694762, 2.059689], [-0.856296, 1.603339], [-0.00244, 2.074333], [-0.000508, 2.54], [0.001425, 3.005666], [0.426076, 3.230391], [0.850728, 3.455115]]]}, {"thickness": 0.15, "svgpath": "M62.337904,51.428666L61.956952,51.162M62.337904,50.971523L61.537904,50.971523L61.537904,51.276285L61.576,51.352476L61.614095,51.390571L61.690285,51.428666L61.804571,51.428666L61.880761,51.390571L61.918857,51.352476L61.956952,51.276285L61.956952,50.971523M61.537904,52.11438L61.537904,51.962L61.576,51.885809L61.614095,51.847714L61.72838,51.771523L61.880761,51.733428L62.185523,51.733428L62.261714,51.771523L62.299809,51.809619L62.337904,51.885809L62.337904,52.03819L62.299809,52.11438L62.261714,52.152476L62.185523,52.190571L61.995047,52.190571L61.918857,52.152476L61.880761,52.11438L61.842666,52.03819L61.842666,51.885809L61.880761,51.809619L61.918857,51.771523L61.995047,51.733428", "ref": 1}, {"type": "segment", "start": [61.899436, 54.329], "end": [62.353564, 54.329], "width": 0.12}, {"type": "segment", "start": [61.899436, 52.859], "end": [62.353564, 52.859], "width": 0.12}, {"thickness": 0.15, "svgpath": "M79.952904,47.904476L80.600523,47.904476L80.676714,47.942571L80.714809,47.980666L80.752904,48.056857L80.752904,48.209238L80.714809,48.285428L80.676714,48.323523L80.600523,48.361619L79.952904,48.361619M80.029095,48.704476L79.991,48.742571L79.952904,48.818761L79.952904,49.009238L79.991,49.085428L80.029095,49.123523L80.105285,49.161619L80.181476,49.161619L80.295761,49.123523L80.752904,48.66638L80.752904,49.161619", "ref": 1}, {"type": "segment", "start": [76.967, 52.065], "end": [76.967, 50.805], "width": 0.12}, {"type": "segment", "start": [73.207, 45.245], "end": [76.967, 45.245], "width": 0.12}, {"type": "segment", "start": [70.957, 52.065], "end": [76.967, 52.065], "width": 0.12}, {"type": "segment", "start": [76.967, 45.245], "end": [76.967, 46.505], "width": 0.12}, {"thickness": 0.15, "svgpath": "M68.230714,46.475666L68.268809,46.437571L68.306904,46.323285L68.306904,46.247095L68.268809,46.132809L68.192619,46.056619L68.116428,46.018523L67.964047,45.980428L67.849761,45.980428L67.69738,46.018523L67.62119,46.056619L67.545,46.132809L67.506904,46.247095L67.506904,46.323285L67.545,46.437571L67.583095,46.475666M68.306904,47.237571L68.306904,46.780428M68.306904,47.009L67.506904,47.009L67.62119,46.932809L67.69738,46.856619L67.735476,46.780428", "ref": 1}, {"type": "segment", "start": [68.836, 47.011252], "end": [68.836, 46.488748], "width": 0.12}, {"type": "segment", "start": [70.306, 47.011252], "end": [70.306, 46.488748], "width": 0.12}, {"thickness": 0.15, "svgpath": "M68.230714,50.031666L68.268809,49.993571L68.306904,49.879285L68.306904,49.803095L68.268809,49.688809L68.192619,49.612619L68.116428,49.574523L67.964047,49.536428L67.849761,49.536428L67.69738,49.574523L67.62119,49.612619L67.545,49.688809L67.506904,49.803095L67.506904,49.879285L67.545,49.993571L67.583095,50.031666M67.583095,50.336428L67.545,50.374523L67.506904,50.450714L67.506904,50.64119L67.545,50.71738L67.583095,50.755476L67.659285,50.793571L67.735476,50.793571L67.849761,50.755476L68.306904,50.298333L68.306904,50.793571", "ref": 1}, {"type": "segment", "start": [70.306, 50.105748], "end": [70.306, 50.628252], "width": 0.12}, {"type": "segment", "start": [68.836, 50.105748], "end": [68.836, 50.628252], "width": 0.12}]}, "fabrication": {"F": [{"thickness": 0.15, "svgpath": "M81.192761,34.86838L80.621333,34.86838M80.907047,34.86838L80.907047,33.86838L80.811809,34.011238L80.716571,34.106476L80.621333,34.154095M81.811809,33.86838L81.907047,33.86838L82.002285,33.916L82.049904,33.963619L82.097523,34.058857L82.145142,34.249333L82.145142,34.487428L82.097523,34.677904L82.049904,34.773142L82.002285,34.820761L81.907047,34.86838L81.811809,34.86838L81.716571,34.820761L81.668952,34.773142L81.621333,34.677904L81.573714,34.487428L81.573714,34.249333L81.621333,34.058857L81.668952,33.963619L81.716571,33.916L81.811809,33.86838M82.573714,34.86838L82.573714,33.86838M82.668952,34.487428L82.954666,34.86838M82.954666,34.201714L82.573714,34.582666", "val": 1}, {"thickness": 0.08, "svgpath": "M81.704666,32.99219L81.538,32.754095M81.418952,32.99219L81.418952,32.49219L81.609428,32.49219L81.657047,32.516L81.680857,32.539809L81.704666,32.587428L81.704666,32.658857L81.680857,32.706476L81.657047,32.730285L81.609428,32.754095L81.418952,32.754095M81.871333,32.49219L82.180857,32.49219L82.01419,32.682666L82.085619,32.682666L82.133238,32.706476L82.157047,32.730285L82.180857,32.777904L82.180857,32.896952L82.157047,32.944571L82.133238,32.96838L82.085619,32.99219L81.942761,32.99219L81.895142,32.96838L81.871333,32.944571"}, {"type": "segment", "start": [82.788, 32.141], "end": [82.788, 33.391], "width": 0.1}, {"type": "segment", "start": [80.788, 32.141], "end": [82.788, 32.141], "width": 0.1}, {"type": "segment", "start": [80.788, 33.391], "end": [80.788, 32.141], "width": 0.1}, {"type": "segment", "start": [82.788, 33.391], "end": [80.788, 33.391], "width": 0.1}, {"thickness": 0.15, "svgpath": "M74.207761,52.39638L73.636333,52.39638M73.922047,52.39638L73.922047,51.39638L73.826809,51.539238L73.731571,51.634476L73.636333,51.682095M74.826809,51.39638L74.922047,51.39638L75.017285,51.444L75.064904,51.491619L75.112523,51.586857L75.160142,51.777333L75.160142,52.015428L75.112523,52.205904L75.064904,52.301142L75.017285,52.348761L74.922047,52.39638L74.826809,52.39638L74.731571,52.348761L74.683952,52.301142L74.636333,52.205904L74.588714,52.015428L74.588714,51.777333L74.636333,51.586857L74.683952,51.491619L74.731571,51.444L74.826809,51.39638M75.588714,52.39638L75.588714,51.39638M75.683952,52.015428L75.969666,52.39638M75.969666,51.729714L75.588714,52.110666", "val": 1}, {"thickness": 0.08, "svgpath": "M74.719666,53.82019L74.553,53.582095M74.433952,53.82019L74.433952,53.32019L74.624428,53.32019L74.672047,53.344L74.695857,53.367809L74.719666,53.415428L74.719666,53.486857L74.695857,53.534476L74.672047,53.558285L74.624428,53.582095L74.433952,53.582095M75.195857,53.82019L74.910142,53.82019M75.053,53.82019L75.053,53.32019L75.00538,53.391619L74.957761,53.439238L74.910142,53.463047"}, {"type": "segment", "start": [75.803, 54.219], "end": [73.803, 54.219], "width": 0.1}, {"type": "segment", "start": [75.803, 52.969], "end": [75.803, 54.219], "width": 0.1}, {"type": "segment", "start": [73.803, 54.219], "end": [73.803, 52.969], "width": 0.1}, {"type": "segment", "start": [73.803, 52.969], "end": [75.803, 52.969], "width": 0.1}, {"thickness": 0.15, "svgpath": "M77.80338,33.86838L77.898619,33.86838L77.993857,33.916L78.041476,33.963619L78.089095,34.058857L78.136714,34.249333L78.136714,34.487428L78.089095,34.677904L78.041476,34.773142L77.993857,34.820761L77.898619,34.86838L77.80338,34.86838L77.708142,34.820761L77.660523,34.773142L77.612904,34.677904L77.565285,34.487428L77.565285,34.249333L77.612904,34.058857L77.660523,33.963619L77.708142,33.916L77.80338,33.86838", "val": 1}, {"thickness": 0.08, "svgpath": "M77.767666,32.99219L77.601,32.754095M77.481952,32.99219L77.481952,32.49219L77.672428,32.49219L77.720047,32.516L77.743857,32.539809L77.767666,32.587428L77.767666,32.658857L77.743857,32.706476L77.720047,32.730285L77.672428,32.754095L77.481952,32.754095M78.220047,32.49219L77.981952,32.49219L77.958142,32.730285L77.981952,32.706476L78.029571,32.682666L78.148619,32.682666L78.196238,32.706476L78.220047,32.730285L78.243857,32.777904L78.243857,32.896952L78.220047,32.944571L78.196238,32.96838L78.148619,32.99219L78.029571,32.99219L77.981952,32.96838L77.958142,32.944571"}, {"type": "segment", "start": [78.851, 33.391], "end": [76.851, 33.391], "width": 0.1}, {"type": "segment", "start": [76.851, 33.391], "end": [76.851, 32.141], "width": 0.1}, {"type": "segment", "start": [76.851, 32.141], "end": [78.851, 32.141], "width": 0.1}, {"type": "segment", "start": [78.851, 32.141], "end": [78.851, 33.391], "width": 0.1}, {"thickness": 0.08, "svgpath": "M66.060166,32.99219L65.8935,32.754095M65.774452,32.99219L65.774452,32.49219L65.964928,32.49219L66.012547,32.516L66.036357,32.539809L66.060166,32.587428L66.060166,32.658857L66.036357,32.706476L66.012547,32.730285L65.964928,32.754095L65.774452,32.754095M66.226833,32.49219L66.560166,32.49219L66.34588,32.99219"}, {"type": "segment", "start": [65.1435, 33.391], "end": [65.1435, 32.141], "width": 0.1}, {"type": "segment", "start": [67.1435, 33.391], "end": [65.1435, 33.391], "width": 0.1}, {"type": "segment", "start": [65.1435, 32.141], "end": [67.1435, 32.141], "width": 0.1}, {"type": "segment", "start": [67.1435, 32.141], "end": [67.1435, 33.391], "width": 0.1}, {"type": "segment", "start": [62.921, 33.411], "end": [63.221, 33.111], "width": 0.1}, {"type": "segment", "start": [63.221, 33.111], "end": [63.221, 32.211], "width": 0.1}, {"type": "segment", "start": [61.221, 33.411], "end": [62.921, 33.411], "width": 0.1}, {"type": "segment", "start": [61.221, 32.211], "end": [61.221, 33.411], "width": 0.1}, {"type": "segment", "start": [63.221, 32.211], "end": [61.221, 32.211], "width": 0.1}, {"thickness": 0.15, "svgpath": "M70.56438,33.86838L70.659619,33.86838L70.754857,33.916L70.802476,33.963619L70.850095,34.058857L70.897714,34.249333L70.897714,34.487428L70.850095,34.677904L70.802476,34.773142L70.754857,34.820761L70.659619,34.86838L70.56438,34.86838L70.469142,34.820761L70.421523,34.773142L70.373904,34.677904L70.326285,34.487428L70.326285,34.249333L70.373904,34.058857L70.421523,33.963619L70.469142,33.916L70.56438,33.86838", "val": 1}, {"thickness": 0.08, "svgpath": "M70.528666,32.99219L70.362,32.754095M70.242952,32.99219L70.242952,32.49219L70.433428,32.49219L70.481047,32.516L70.504857,32.539809L70.528666,32.587428L70.528666,32.658857L70.504857,32.706476L70.481047,32.730285L70.433428,32.754095L70.242952,32.754095M70.957238,32.658857L70.957238,32.99219M70.83819,32.46838L70.719142,32.825523L71.028666,32.825523"}, {"type": "segment", "start": [69.612, 33.391], "end": [69.612, 32.141], "width": 0.1}, {"type": "segment", "start": [69.612, 32.141], "end": [71.612, 32.141], "width": 0.1}, {"type": "segment", "start": [71.612, 32.141], "end": [71.612, 33.391], "width": 0.1}, {"type": "segment", "start": [71.612, 33.391], "end": [69.612, 33.391], "width": 0.1}, {"thickness": 0.15, "svgpath": "M65.841571,46.624476L65.841571,46.291142M66.36538,46.148285L66.36538,46.624476L65.36538,46.624476L65.36538,46.148285M66.317761,45.767333L66.36538,45.624476L66.36538,45.38638L66.317761,45.291142L66.270142,45.243523L66.174904,45.195904L66.079666,45.195904L65.984428,45.243523L65.936809,45.291142L65.88919,45.38638L65.841571,45.576857L65.793952,45.672095L65.746333,45.719714L65.651095,45.767333L65.555857,45.767333L65.460619,45.719714L65.413,45.672095L65.36538,45.576857L65.36538,45.338761L65.413,45.195904M66.36538,44.767333L65.36538,44.767333L65.36538,44.38638L65.413,44.291142L65.460619,44.243523L65.555857,44.195904L65.698714,44.195904L65.793952,44.243523L65.841571,44.291142L65.88919,44.38638L65.88919,44.767333M65.984428,43.767333L65.984428,43.005428M66.36538,42.005428L66.36538,42.576857M66.36538,42.291142L65.36538,42.291142L65.508238,42.38638L65.603476,42.481619L65.651095,42.576857M65.460619,41.624476L65.413,41.576857L65.36538,41.481619L65.36538,41.243523L65.413,41.148285L65.460619,41.100666L65.555857,41.053047L65.651095,41.053047L65.793952,41.100666L66.36538,41.672095L66.36538,41.053047M65.841571,40.291142L65.841571,40.624476M66.36538,40.624476L65.36538,40.624476L65.36538,40.148285", "val": 1}, {"thickness": 0.15, "svgpath": "M71.22738,43.705904L72.036904,43.705904L72.132142,43.658285L72.179761,43.610666L72.22738,43.515428L72.22738,43.324952L72.179761,43.229714L72.132142,43.182095L72.036904,43.134476L71.22738,43.134476M72.22738,42.134476L72.22738,42.705904M72.22738,42.42019L71.22738,42.42019L71.370238,42.515428L71.465476,42.610666L71.513095,42.705904"}, {"type": "segment", "start": [84.575, 35.434], "end": [84.575, 51.434], "width": 0.1}, {"type": "segment", "start": [68.575, 51.434], "end": [60.575, 51.434], "width": 0.1}, {"type": "segment", "start": [69.075, 50.934], "end": [68.575, 51.434], "width": 0.1}, {"type": "segment", "start": [69.575, 51.434], "end": [69.075, 50.934], "width": 0.1}, {"type": "segment", "start": [60.575, 51.434], "end": [60.575, 35.434], "width": 0.1}, {"type": "segment", "start": [60.575, 35.434], "end": [84.575, 35.434], "width": 0.1}, {"type": "segment", "start": [84.575, 51.434], "end": [69.575, 51.434], "width": 0.1}, {"type": "segment", "start": [65.176, 54.194], "end": [67.176, 54.194], "width": 0.1}, {"type": "segment", "start": [67.176, 52.994], "end": [65.476, 52.994], "width": 0.1}, {"type": "segment", "start": [67.176, 54.194], "end": [67.176, 52.994], "width": 0.1}, {"type": "segment", "start": [65.176, 53.294], "end": [65.176, 54.194], "width": 0.1}, {"type": "segment", "start": [65.476, 52.994], "end": [65.176, 53.294], "width": 0.1}, {"thickness": 0.15, "svgpath": "M69.508761,52.39638L68.937333,52.39638M69.223047,52.39638L69.223047,51.39638L69.127809,51.539238L69.032571,51.634476L68.937333,51.682095M70.127809,51.39638L70.223047,51.39638L70.318285,51.444L70.365904,51.491619L70.413523,51.586857L70.461142,51.777333L70.461142,52.015428L70.413523,52.205904L70.365904,52.301142L70.318285,52.348761L70.223047,52.39638L70.127809,52.39638L70.032571,52.348761L69.984952,52.301142L69.937333,52.205904L69.889714,52.015428L69.889714,51.777333L69.937333,51.586857L69.984952,51.491619L70.032571,51.444L70.127809,51.39638M70.889714,52.39638L70.889714,51.39638M70.984952,52.015428L71.270666,52.39638M71.270666,51.729714L70.889714,52.110666", "val": 1}, {"thickness": 0.08, "svgpath": "M70.020666,53.82019L69.854,53.582095M69.734952,53.82019L69.734952,53.32019L69.925428,53.32019L69.973047,53.344L69.996857,53.367809L70.020666,53.415428L70.020666,53.486857L69.996857,53.534476L69.973047,53.558285L69.925428,53.582095L69.734952,53.582095M70.211142,53.367809L70.234952,53.344L70.282571,53.32019L70.401619,53.32019L70.449238,53.344L70.473047,53.367809L70.496857,53.415428L70.496857,53.463047L70.473047,53.534476L70.187333,53.82019L70.496857,53.82019"}, {"type": "segment", "start": [71.104, 52.969], "end": [71.104, 54.219], "width": 0.1}, {"type": "segment", "start": [69.104, 52.969], "end": [71.104, 52.969], "width": 0.1}, {"type": "segment", "start": [69.104, 54.219], "end": [69.104, 52.969], "width": 0.1}, {"type": "segment", "start": [71.104, 54.219], "end": [69.104, 54.219], "width": 0.1}], "B": [{"thickness": 0.15, "svgpath": "M70.68338,35.219L70.20719,34.885666M70.68338,34.647571L69.68338,34.647571L69.68338,35.028523L69.731,35.123761L69.778619,35.17138L69.873857,35.219L70.016714,35.219L70.111952,35.17138L70.159571,35.123761L70.20719,35.028523L70.20719,34.647571M70.016714,36.076142L70.68338,36.076142M69.635761,35.838047L70.350047,35.599952L70.350047,36.219M70.68338,37.123761L70.68338,36.552333M70.68338,36.838047L69.68338,36.838047L69.826238,36.742809L69.921476,36.647571L69.969095,36.552333M70.68338,38.076142L70.68338,37.504714M70.68338,37.790428L69.68338,37.790428L69.826238,37.69519L69.921476,37.599952L69.969095,37.504714M70.397666,38.457095L70.397666,38.933285M70.68338,38.361857L69.68338,38.69519L70.68338,39.028523M69.68338,39.552333L69.68338,39.647571L69.731,39.742809L69.778619,39.790428L69.873857,39.838047L70.064333,39.885666L70.302428,39.885666L70.492904,39.838047L70.588142,39.790428L70.635761,39.742809L70.68338,39.647571L70.68338,39.552333L70.635761,39.457095L70.588142,39.409476L70.492904,39.361857L70.302428,39.314238L70.064333,39.314238L69.873857,39.361857L69.778619,39.409476L69.731,39.457095L69.68338,39.552333M70.68338,40.838047L70.68338,40.266619M70.68338,40.552333L69.68338,40.552333L69.826238,40.457095L69.921476,40.361857L69.969095,40.266619", "val": 1}, {"thickness": 0.15, "svgpath": "M72.366142,37.028523L72.413761,36.980904L72.46138,36.838047L72.46138,36.742809L72.413761,36.599952L72.318523,36.504714L72.223285,36.457095L72.032809,36.409476L71.889952,36.409476L71.699476,36.457095L71.604238,36.504714L71.509,36.599952L71.46138,36.742809L71.46138,36.838047L71.509,36.980904L71.556619,37.028523M71.46138,37.457095L72.270904,37.457095L72.366142,37.504714L72.413761,37.552333L72.46138,37.647571L72.46138,37.838047L72.413761,37.933285L72.366142,37.980904L72.270904,38.028523L71.46138,38.028523M72.46138,39.028523L72.46138,38.457095M72.46138,38.742809L71.46138,38.742809L71.604238,38.647571L71.699476,38.552333L71.747095,38.457095"}, {"type": "polygon", "pos": [0, 0], "angle": 0, "polygons": [[[68.453, 44.323], [85.471, 44.323], [85.471, 32.639], [68.453, 32.639]]], "width": 0.1, "filled": 0}, {"thickness": 0.15, "svgpath": "M63.412214,51.39638L62.793166,51.39638L63.1265,51.777333L62.983642,51.777333L62.888404,51.824952L62.840785,51.872571L62.793166,51.967809L62.793166,52.205904L62.840785,52.301142L62.888404,52.348761L62.983642,52.39638L63.269357,52.39638L63.364595,52.348761L63.412214,52.301142M62.459833,51.39638L61.840785,51.39638L62.174119,51.777333L62.031261,51.777333L61.936023,51.824952L61.888404,51.872571L61.840785,51.967809L61.840785,52.205904L61.888404,52.301142L61.936023,52.348761L62.031261,52.39638L62.316976,52.39638L62.412214,52.348761L62.459833,52.301142M61.221738,51.39638L61.1265,51.39638L61.031261,51.444L60.983642,51.491619L60.936023,51.586857L60.888404,51.777333L60.888404,52.015428L60.936023,52.205904L60.983642,52.301142L61.031261,52.348761L61.1265,52.39638L61.221738,52.39638L61.316976,52.348761L61.364595,52.301142L61.412214,52.205904L61.459833,52.015428L61.459833,51.777333L61.412214,51.586857L61.364595,51.491619L61.316976,51.444L61.221738,51.39638", "val": 1}, {"thickness": 0.08, "svgpath": "M62.209833,53.82019L62.3765,53.582095M62.495547,53.82019L62.495547,53.32019L62.305071,53.32019L62.257452,53.344L62.233642,53.367809L62.209833,53.415428L62.209833,53.486857L62.233642,53.534476L62.257452,53.558285L62.305071,53.582095L62.495547,53.582095M61.781261,53.32019L61.8765,53.32019L61.924119,53.344L61.947928,53.367809L61.995547,53.439238L62.019357,53.534476L62.019357,53.724952L61.995547,53.772571L61.971738,53.79638L61.924119,53.82019L61.82888,53.82019L61.781261,53.79638L61.757452,53.772571L61.733642,53.724952L61.733642,53.605904L61.757452,53.558285L61.781261,53.534476L61.82888,53.510666L61.924119,53.510666L61.971738,53.534476L61.995547,53.558285L62.019357,53.605904"}, {"type": "segment", "start": [63.1265, 54.219], "end": [63.1265, 52.969], "width": 0.1}, {"type": "segment", "start": [63.1265, 52.969], "end": [61.1265, 52.969], "width": 0.1}, {"type": "segment", "start": [61.1265, 52.969], "end": [61.1265, 54.219], "width": 0.1}, {"type": "segment", "start": [61.1265, 54.219], "end": [63.1265, 54.219], "width": 0.1}, {"thickness": 0.15, "svgpath": "M79.93,48.680666L79.453809,48.680666M80.025238,48.96638L79.691904,47.96638L79.358571,48.96638M79.025238,48.96638L79.025238,47.96638L78.691904,48.680666L78.358571,47.96638L78.358571,48.96638M77.93,48.918761L77.787142,48.96638L77.549047,48.96638L77.453809,48.918761L77.40619,48.871142L77.358571,48.775904L77.358571,48.680666L77.40619,48.585428L77.453809,48.537809L77.549047,48.49019L77.739523,48.442571L77.834761,48.394952L77.88238,48.347333L77.93,48.252095L77.93,48.156857L77.88238,48.061619L77.834761,48.014L77.739523,47.96638L77.501428,47.96638L77.358571,48.014M76.40619,48.96638L76.977619,48.96638M76.691904,48.96638L76.691904,47.96638L76.787142,48.109238L76.88238,48.204476L76.977619,48.252095M75.453809,48.96638L76.025238,48.96638M75.739523,48.96638L75.739523,47.96638L75.834761,48.109238L75.93,48.204476L76.025238,48.252095M74.501428,48.96638L75.072857,48.96638M74.787142,48.96638L74.787142,47.96638L74.88238,48.109238L74.977619,48.204476L75.072857,48.252095M74.168095,47.96638L73.501428,47.96638L73.93,48.96638M73.120476,48.585428L72.358571,48.585428M71.977619,47.96638L71.358571,47.96638L71.691904,48.347333L71.549047,48.347333L71.453809,48.394952L71.40619,48.442571L71.358571,48.537809L71.358571,48.775904L71.40619,48.871142L71.453809,48.918761L71.549047,48.96638L71.834761,48.96638L71.93,48.918761L71.977619,48.871142M70.93,48.871142L70.88238,48.918761L70.93,48.96638L70.977619,48.918761L70.93,48.871142L70.93,48.96638M70.549047,47.96638L69.93,47.96638L70.263333,48.347333L70.120476,48.347333L70.025238,48.394952L69.977619,48.442571L69.93,48.537809L69.93,48.775904L69.977619,48.871142L70.025238,48.918761L70.120476,48.96638L70.40619,48.96638L70.501428,48.918761L70.549047,48.871142", "val": 1}, {"thickness": 0.12, "svgpath": "M74.618904,48.045476L75.266523,48.045476L75.342714,48.083571L75.380809,48.121666L75.418904,48.197857L75.418904,48.350238L75.380809,48.426428L75.342714,48.464523L75.266523,48.502619L74.618904,48.502619M74.695095,48.845476L74.657,48.883571L74.618904,48.959761L74.618904,49.150238L74.657,49.226428L74.695095,49.264523L74.771285,49.302619L74.847476,49.302619L74.961761,49.264523L75.418904,48.80738L75.418904,49.302619"}, {"type": "segment", "start": [76.907, 52.005], "end": [76.907, 45.305], "width": 0.1}, {"type": "segment", "start": [73.207, 51.005], "end": [74.207, 52.005], "width": 0.1}, {"type": "segment", "start": [73.207, 45.305], "end": [76.907, 45.305], "width": 0.1}, {"type": "segment", "start": [73.207, 51.005], "end": [73.207, 45.305], "width": 0.1}, {"type": "segment", "start": [74.207, 52.005], "end": [76.907, 52.005], "width": 0.1}, {"thickness": 0.15, "svgpath": "M68.34338,46.107142L68.34338,45.535714M68.34338,45.821428L67.34338,45.821428L67.486238,45.72619L67.581476,45.630952L67.629095,45.535714M67.34338,46.72619L67.34338,46.821428L67.391,46.916666L67.438619,46.964285L67.533857,47.011904L67.724333,47.059523L67.962428,47.059523L68.152904,47.011904L68.248142,46.964285L68.295761,46.916666L68.34338,46.821428L68.34338,46.72619L68.295761,46.630952L68.248142,46.583333L68.152904,46.535714L67.962428,46.488095L67.724333,46.488095L67.533857,46.535714L67.438619,46.583333L67.391,46.630952L67.34338,46.72619M67.676714,47.916666L68.34338,47.916666M67.676714,47.488095L68.200523,47.488095L68.295761,47.535714L68.34338,47.630952L68.34338,47.773809L68.295761,47.869047L68.248142,47.916666", "val": 1}, {"thickness": 0.08, "svgpath": "M69.749571,46.666666L69.77338,46.642857L69.79719,46.571428L69.79719,46.523809L69.77338,46.45238L69.725761,46.404761L69.678142,46.380952L69.582904,46.357142L69.511476,46.357142L69.416238,46.380952L69.368619,46.404761L69.321,46.45238L69.29719,46.523809L69.29719,46.571428L69.321,46.642857L69.344809,46.666666M69.79719,47.142857L69.79719,46.857142M69.79719,47L69.29719,47L69.368619,46.95238L69.416238,46.904761L69.440047,46.857142"}, {"type": "segment", "start": [70.196, 45.75], "end": [68.946, 45.75], "width": 0.1}, {"type": "segment", "start": [68.946, 47.75], "end": [70.196, 47.75], "width": 0.1}, {"type": "segment", "start": [70.196, 47.75], "end": [70.196, 45.75], "width": 0.1}, {"type": "segment", "start": [68.946, 45.75], "end": [68.946, 47.75], "width": 0.1}, {"thickness": 0.15, "svgpath": "M71.70338,49.724142L71.70338,49.152714M71.70338,49.438428L70.70338,49.438428L70.846238,49.34319L70.941476,49.247952L70.989095,49.152714M70.70338,50.34319L70.70338,50.438428L70.751,50.533666L70.798619,50.581285L70.893857,50.628904L71.084333,50.676523L71.322428,50.676523L71.512904,50.628904L71.608142,50.581285L71.655761,50.533666L71.70338,50.438428L71.70338,50.34319L71.655761,50.247952L71.608142,50.200333L71.512904,50.152714L71.322428,50.105095L71.084333,50.105095L70.893857,50.152714L70.798619,50.200333L70.751,50.247952L70.70338,50.34319M71.036714,51.533666L71.70338,51.533666M71.036714,51.105095L71.560523,51.105095L71.655761,51.152714L71.70338,51.247952L71.70338,51.390809L71.655761,51.486047L71.608142,51.533666", "val": 1}, {"thickness": 0.08, "svgpath": "M69.749571,50.283666L69.77338,50.259857L69.79719,50.188428L69.79719,50.140809L69.77338,50.06938L69.725761,50.021761L69.678142,49.997952L69.582904,49.974142L69.511476,49.974142L69.416238,49.997952L69.368619,50.021761L69.321,50.06938L69.29719,50.140809L69.29719,50.188428L69.321,50.259857L69.344809,50.283666M69.344809,50.474142L69.321,50.497952L69.29719,50.545571L69.29719,50.664619L69.321,50.712238L69.344809,50.736047L69.392428,50.759857L69.440047,50.759857L69.511476,50.736047L69.79719,50.450333L69.79719,50.759857"}, {"type": "segment", "start": [70.196, 51.367], "end": [70.196, 49.367], "width": 0.1}, {"type": "segment", "start": [68.946, 49.367], "end": [68.946, 51.367], "width": 0.1}, {"type": "segment", "start": [68.946, 51.367], "end": [70.196, 51.367], "width": 0.1}, {"type": "segment", "start": [70.196, 49.367], "end": [68.946, 49.367], "width": 0.1}]}}, "footprints": [{"ref": "R3", "bbox": {"pos": [81.788, 32.766], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [80.8755, 32.766], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [82.7005, 32.766], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R1", "bbox": {"pos": [74.803, 53.594], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [75.7155, 53.594], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [73.8905, 53.594], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R5", "bbox": {"pos": [77.851, 32.766], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [76.9385, 32.766], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [78.7635, 32.766], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R7", "bbox": {"pos": [66.1435, 32.766], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [67.056, 32.766], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [65.231, 32.766], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "J4", "bbox": {"pos": [62.221, 32.811], "relpos": [-1.92, -1.02], "size": [3.795, 2.05], "angle": 180.0}, "pads": [{"layers": ["F", "B"], "pos": [63.246, 32.811], "size": [1.15, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "th", "drillshape": "circle", "drillsize": [0.6, 0.6], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F", "B"], "pos": [61.196, 32.811], "size": [1.15, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "th", "drillshape": "circle", "drillsize": [0.6, 0.6], "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R4", "bbox": {"pos": [70.612, 32.766], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [69.6995, 32.766], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [71.5245, 32.766], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "U1", "bbox": {"pos": [72.575, 43.434], "relpos": [-9.075, -12.225], "size": [18.15, 25.35], "angle": 90.0}, "pads": [{"layers": ["F"], "pos": [69.075, 51.034], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [84.575, 46.434], "size": [1.0, 1.8], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [84.575, 44.434], "size": [1.0, 1.8], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [84.575, 42.434], "size": [1.0, 1.8], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [84.575, 40.434], "size": [1.0, 1.8], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [84.575, 38.434], "size": [1.0, 1.8], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [83.075, 35.834], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [81.075, 35.834], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [79.075, 35.834], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [77.075, 35.834], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [75.075, 35.834], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [71.075, 51.034], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [73.075, 35.834], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [71.075, 35.834], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [69.075, 35.834], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [73.075, 51.034], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [75.075, 51.034], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [77.075, 51.034], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [79.075, 51.034], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [81.075, 51.034], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [83.075, 51.034], "size": [2.5, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [84.575, 48.434], "size": [1.0, 1.8], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "J3", "bbox": {"pos": [66.176, 53.594], "relpos": [-1.92, -1.02], "size": [3.795, 2.05], "angle": 0.0}, "pads": [{"layers": ["F", "B"], "pos": [65.151, 53.594], "size": [1.15, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "th", "drillshape": "circle", "drillsize": [0.6, 0.6], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F", "B"], "pos": [67.201, 53.594], "size": [1.15, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "th", "drillshape": "circle", "drillsize": [0.6, 0.6], "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R2", "bbox": {"pos": [70.104, 53.594], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [71.0165, 53.594], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [69.1915, 53.594], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "CU1", "bbox": {"pos": [68.453, 32.639], "relpos": [-0.568, -17.586], "size": [12.658, 18.154], "angle": -90.0}, "pads": [{"layers": ["B"], "pos": [69.215, 43.053], "size": [2.286, 1.524], "angle": 270.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["B"], "pos": [71.755, 43.053], "size": [2.286, 1.524], "angle": 270.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["B"], "pos": [74.295, 43.053], "size": [2.286, 1.524], "angle": 270.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["B"], "pos": [76.835, 43.053], "size": [2.286, 1.524], "angle": 270.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["B"], "pos": [79.375, 43.053], "size": [2.286, 1.524], "angle": 270.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["B"], "pos": [81.915, 43.053], "size": [2.286, 1.524], "angle": 270.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["B"], "pos": [84.455, 43.053], "size": [2.286, 1.524], "angle": 270.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "B"}, {"ref": "J2", "bbox": {"pos": [76.041, 53.848], "relpos": [-1.143, -2.762], "size": [2.286, 3.524], "angle": 90.0}, "pads": [{"layers": ["B"], "pos": [76.041, 53.848], "size": [2.286, 1.524], "angle": 90.0, "shape": "roundrect", "radius": 0.381, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["B"], "pos": [74.041, 53.848], "size": [2.286, 1.524], "angle": 90.0, "shape": "roundrect", "radius": 0.381, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "B"}, {"ref": "G***", "bbox": {"pos": [64.008, 36.957], "relpos": [-2.545257, -3.527314], "size": [5.931924, 6.982429], "angle": -90.0}, "pads": [], "drawings": [], "layer": "B"}, {"ref": "R6", "bbox": {"pos": [62.1265, 53.594], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 0.0}, "pads": [{"layers": ["B"], "pos": [61.214, 53.594], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["B"], "pos": [63.039, 53.594], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "B"}, {"ref": "U2", "bbox": {"pos": [75.057, 48.655], "relpos": [-4.425, -3.625], "size": [8.85, 7.25], "angle": 0.0}, "pads": [{"layers": ["B"], "pos": [71.907, 50.955], "size": [2.0, 1.5], "angle": 0.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["B"], "pos": [78.207, 48.655], "size": [2.0, 3.8], "angle": 0.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["B"], "pos": [71.907, 48.655], "size": [2.0, 1.5], "angle": 0.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["B"], "pos": [71.907, 46.355], "size": [2.0, 1.5], "angle": 0.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "B"}, {"ref": "J1", "bbox": {"pos": [84.328, 53.848], "relpos": [-1.143, -2.762], "size": [2.286, 3.524], "angle": 90.0}, "pads": [{"layers": ["B"], "pos": [84.328, 53.848], "size": [2.286, 1.524], "angle": 90.0, "shape": "roundrect", "radius": 0.381, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["B"], "pos": [82.328, 53.848], "size": [2.286, 1.524], "angle": 90.0, "shape": "roundrect", "radius": 0.381, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "B"}, {"ref": "C1", "bbox": {"pos": [69.571, 46.75], "relpos": [-1.725, -1.005], "size": [3.45, 2.01], "angle": 90.0}, "pads": [{"layers": ["B"], "pos": [69.571, 47.7], "size": [1.0, 1.45], "angle": 90.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["B"], "pos": [69.571, 45.8], "size": [1.0, 1.45], "angle": 90.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "B"}, {"ref": "C2", "bbox": {"pos": [69.571, 50.367], "relpos": [-1.725, -1.005], "size": [3.45, 2.01], "angle": -90.0}, "pads": [{"layers": ["B"], "pos": [69.571, 49.417], "size": [1.0, 1.45], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["B"], "pos": [69.571, 51.317], "size": [1.0, 1.45], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "B"}], "metadata": {"title": "esp8266_pzem16_ac", "revision": "", "company": "", "date": "2023-02-28 18:11:44"}, "bom": {"both": [[["C1", 15], ["C2", 16]], [["R1", 1], ["R2", 8], ["R3", 0]], [["R4", 5], ["R5", 2]], [["R6", 12], ["R7", 3]], [["U1", 6]], [["U2", 13]], [["CU1", 9]], [["J1", 14]], [["J2", 10]], [["J3", 7]], [["J4", 4]]], "skipped": [11], "fields": {"0": ["10k", "R_0805_2012Metric"], "1": ["10k", "R_0805_2012Metric"], "2": ["0", "R_0805_2012Metric"], "3": ["330", "R_0805_2012Metric"], "4": ["DATA", "my_LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder"], "5": ["0", "R_0805_2012Metric"], "6": ["ESP-12F", "ESP-12E"], "7": ["PWR", "my_LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder"], "8": ["10k", "R_0805_2012Metric"], "9": ["R411A01", "R411A01"], "10": ["PWR", "2pin_pad"], "12": ["330", "R_0805_2012Metric"], "13": ["AMS1117-3.3", "SOT-223-3_TabPin2"], "14": ["RS485", "2pin_pad"], "15": ["10u", "C_0805_2012Metric"], "16": ["10u", "C_0805_2012Metric"]}, "F": [[["R1", 1], ["R2", 8], ["R3", 0]], [["R4", 5], ["R5", 2]], [["R7", 3]], [["U1", 6]], [["J3", 7]], [["J4", 4]]], "B": [[["C1", 15], ["C2", 16]], [["R6", 12]], [["U2", 13]], [["CU1", 9]], [["J1", 14]], [["J2", 10]]]}, "font_data": {}, "ibom_version": "v2.5.0"}
///////////////////////////////////////////////
///////////////////////////////////////////////
/* 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 saveBomTable(output) {
var text = '';
for (var node of bomhead.childNodes[0].childNodes) {
if (node.firstChild) {
text += (output == 'csv' ? `"${node.firstChild.nodeValue}"` : node.firstChild.nodeValue);
}
if (node != bomhead.childNodes[0].lastChild) {
text += (output == 'csv' ? ',' : '\t');
}
}
text += '\n';
for (var row of bombody.childNodes) {
for (var cell of row.childNodes) {
let val = '';
for (var node of cell.childNodes) {
if (node.nodeName == "INPUT") {
if (node.checked) {
val += '✓';
}
} else if (node.nodeName == "MARK") {
val += node.firstChild.nodeValue;
} else {
val += node.nodeValue;
}
}
if (output == 'csv') {
val = val.replace(/\"/g, '\"\"'); // pair of double-quote characters
if (isNumeric(val)) {
val = +val; // use number
} else {
val = `"${val}"`; // enclosed within double-quote
}
}
text += val;
if (cell != row.lastChild) {
text += (output == 'csv' ? ',' : '\t');
}
}
text += '\n';
}
if (output != 'clipboard') {
// To file: csv or txt
var blob = new Blob([text], {
type: `text/${output}`