-
Notifications
You must be signed in to change notification settings - Fork 1
/
ibom.html
2655 lines (2404 loc) · 179 KB
/
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-color-highlight: #D04040;
--pin1-outline-color: #ffb629;
--pin1-outline-color-highlight: #b4ff03;
--silkscreen-edge-color: #aa4;
--silkscreen-polygon-color: #4aa;
--silkscreen-text-color: #4aa;
--fabrication-edge-color: #907651;
--fabrication-polygon-color: #907651;
--fabrication-text-color: #a27c24;
}
html, body {
margin: 0px;
height: 100%;
font-family: Verdana, sans-serif;
}
.dark {
--pcb-edge-color: #eee;
--pad-color: #808080;
--pin1-outline-color: #ffa800;
--pin1-outline-color-highlight: #ccff00;
background-color: #252c30;
color: #eee;
}
button {
background-color: #eee;
border: 1px solid #888;
color: black;
height: 44px;
width: 44px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
font-weight: bolder;
}
.dark button {
/* This will be inverted */
background-color: #c3b7b5;
}
button.depressed {
background-color: #0a0;
color: white;
}
.dark button.depressed {
/* This will be inverted */
background-color: #b3b;
}
button:focus {
outline: 0;
}
button#tb-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.47 8.47'%3E%3Crect transform='translate(0 -288.53)' ry='1.17' y='288.8' x='.27' height='7.94' width='7.94' fill='%23f9f9f9'/%3E%3Cg transform='translate(0 -288.53)'%3E%3Crect width='7.94' height='7.94' x='.27' y='288.8' ry='1.17' fill='none' stroke='%23000' stroke-width='.4' stroke-linejoin='round'/%3E%3Cpath d='M1.32 290.12h5.82M1.32 291.45h5.82' fill='none' stroke='%23000' stroke-width='.4'/%3E%3Cpath d='M4.37 292.5v4.23M.26 292.63H8.2' fill='none' stroke='%23000' stroke-width='.3'/%3E%3Ctext font-weight='700' font-size='3.17' font-family='sans-serif'%3E%3Ctspan x='1.35' y='295.73'%3EF%3C/tspan%3E%3Ctspan x='5.03' y='295.68'%3EB%3C/tspan%3E%3C/text%3E%3C/g%3E%3C/svg%3E%0A");
background-size: 32px 32px;
background-position: 5px 5px;
background-repeat: no-repeat;
}
button#lr-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.47 8.47'%3E%3Crect transform='translate(0 -288.53)' ry='1.17' y='288.8' x='.27' height='7.94' width='7.94' fill='%23f9f9f9'/%3E%3Cg transform='translate(0 -288.53)'%3E%3Crect width='7.94' height='7.94' x='.27' y='288.8' ry='1.17' fill='none' stroke='%23000' stroke-width='.4' stroke-linejoin='round'/%3E%3Cpath d='M1.06 290.12H3.7m-2.64 1.33H3.7m-2.64 1.32H3.7m-2.64 1.3H3.7m-2.64 1.33H3.7' fill='none' stroke='%23000' stroke-width='.4'/%3E%3Cpath d='M4.37 288.8v7.94m0-4.11h3.96' fill='none' stroke='%23000' stroke-width='.3'/%3E%3Ctext font-weight='700' font-size='3.17' font-family='sans-serif'%3E%3Ctspan x='5.11' y='291.96'%3EF%3C/tspan%3E%3Ctspan x='5.03' y='295.68'%3EB%3C/tspan%3E%3C/text%3E%3C/g%3E%3C/svg%3E%0A");
background-size: 32px 32px;
background-position: 5px 5px;
background-repeat: no-repeat;
}
button#bom-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.47 8.47'%3E%3Crect transform='translate(0 -288.53)' ry='1.17' y='288.8' x='.27' height='7.94' width='7.94' fill='%23f9f9f9'/%3E%3Cg transform='translate(0 -288.53)' fill='none' stroke='%23000' stroke-width='.4'%3E%3Crect width='7.94' height='7.94' x='.27' y='288.8' ry='1.17' stroke-linejoin='round'/%3E%3Cpath d='M1.59 290.12h5.29M1.59 291.45h5.33M1.59 292.75h5.33M1.59 294.09h5.33M1.59 295.41h5.33'/%3E%3C/g%3E%3C/svg%3E");
background-size: 32px 32px;
background-position: 5px 5px;
background-repeat: no-repeat;
}
button#copy {
background-image: url("data:image/svg+xml,%3Csvg height='48' viewBox='0 0 48 48' width='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h48v48h-48z' fill='none'/%3E%3Cpath d='M32 2h-24c-2.21 0-4 1.79-4 4v28h4v-28h24v-4zm6 8h-22c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h22c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm0 32h-22v-28h22v28z'/%3E%3C/svg%3E");
background-position: 6px 6px;
background-repeat: no-repeat;
background-size: 26px 26px;
border-radius: 6px;
height: 40px;
width: 40px;
margin: 10px 5px;
}
button#copy:active {
box-shadow: inset 0px 0px 5px #6c6c6c;
}
textarea.clipboard-temp {
position: fixed;
top: 0;
left: 0;
width: 2em;
height: 2em;
padding: 0;
border: None;
outline: None;
box-shadow: None;
background: transparent;
}
.left-most-button {
border-right: 0;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.middle-button {
border-right: 0;
}
.right-most-button {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
.button-container {
font-size: 0;
}
.dark .button-container {
filter: invert(1);
}
@media print {
.hideonprint {
display: none;
}
}
canvas {
cursor: crosshair;
}
canvas:active {
cursor: grabbing;
}
.fileinfo {
width: 100%;
max-width: 1000px;
border: none;
padding: 5px;
}
.fileinfo .title {
font-size: 20pt;
font-weight: bold;
}
.fileinfo td {
overflow: hidden;
white-space: nowrap;
max-width: 1px;
width: 50%;
text-overflow: ellipsis;
}
.bom {
border-collapse: collapse;
font-family: Consolas, "DejaVu Sans Mono", Monaco, monospace;
font-size: 10pt;
table-layout: fixed;
width: 100%;
margin-top: 1px;
}
.bom th, .bom td {
border: 1px solid black;
padding: 5px;
word-wrap: break-word;
text-align: center;
position: relative;
}
.dark .bom th, .dark .bom td {
border: 1px solid #777;
}
.bom th {
background-color: #CCCCCC;
background-clip: padding-box;
}
.dark .bom th {
background-color: #3b4749;
}
.bom tr.highlighted:nth-child(n) {
background-color: #cfc;
}
.dark .bom tr.highlighted:nth-child(n) {
background-color: #226022;
}
.bom tr:nth-child(even) {
background-color: #f2f2f2;
}
.dark .bom tr:nth-child(even) {
background-color: #313b40;
}
.bom tr {
transition: background-color 0.2s;
}
.bom .numCol {
width: 25px;
}
.bom .Description {
width: 10%;
}
.bom .Part {
width: 10%;
}
.bom .Value {
width: 15%;
}
.bom .Quantity {
width: 65px;
}
.bom th .sortmark {
position: absolute;
right: 1px;
top: 1px;
margin-top: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent #221 transparent;
transform-origin: 50% 85%;
transition: opacity 0.2s, transform 0.4s;
}
.dark .bom th .sortmark {
filter: invert(1);
}
.bom th .sortmark.none {
opacity: 0;
}
.bom th .sortmark.desc {
transform: rotate(180deg);
}
.bom th:hover .sortmark.none {
opacity: 0.5;
}
.bom .bom-checkbox {
width: 30px;
position: relative;
user-select: none;
-moz-user-select: none;
}
.bom .bom-checkbox:before {
content: "";
position: absolute;
border-width: 15px;
border-style: solid;
border-color: #51829f transparent transparent transparent;
visibility: hidden;
top: -15px;
}
.bom .bom-checkbox:after {
content: "Double click to set/unset all";
position: absolute;
color: white;
top: -35px;
left: -26px;
background: #51829f;
padding: 5px 15px;
border-radius: 8px;
white-space: nowrap;
visibility: hidden;
}
.bom .bom-checkbox:hover:before, .bom .bom-checkbox:hover:after {
visibility: visible;
transition: visibility 0.2s linear 1s;
}
.split {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow-y: auto;
overflow-x: hidden;
background-color: inherit;
}
.split.split-horizontal, .gutter.gutter-horizontal {
height: 100%;
float: left;
}
.gutter {
background-color: #ddd;
background-repeat: no-repeat;
background-position: 50%;
transition: background-color 0.3s;
}
.dark .gutter {
background-color: #777;
}
.gutter.gutter-horizontal {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
cursor: ew-resize;
width: 5px;
}
.gutter.gutter-vertical {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=');
cursor: ns-resize;
height: 5px;
}
.searchbox {
float: left;
height: 40px;
margin: 10px 5px;
padding: 12px 32px;
font-family: Consolas, "DejaVu Sans Mono", Monaco, monospace;
font-size: 18px;
box-sizing: border-box;
border: 1px solid #888;
border-radius: 6px;
outline: none;
background-color: #eee;
transition: background-color 0.2s, border 0.2s;
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABNklEQVQ4T8XSMUvDQBQH8P/LElFa/AIZHcTBQSz0I/gFstTBRR2KUC4ldDxw7h0Bl3RRUATxi4iiODgoiLNrbQYp5J6cpJJqomkX33Z37/14d/dIa33MzDuYI4johOI4XhyNRteO46zNYjDzAxE1yBZprVeZ+QbAUhXEGJMA2Ox2u4+fQIa0mPmsCgCgJYQ4t7lfgF0opQYAdv9ABkKI/UnOFCClXKjX61cA1osQY8x9kiRNKeV7IWA3oyhaSdP0FkAtjxhj3hzH2RBCPOf3pzqYHCilfAAX+URm9oMguPzeWSGQvUcMYC8rOBJCHBRdqxTo9/vbRHRqi8bj8XKv1xvODbiuW2u32/bvf0SlDv4XYOY7z/Mavu+nM1+BmQ+NMc0wDF/LprP0DbTWW0T00ul0nn4b7Q87+X4Qmfiq2wAAAABJRU5ErkJggg==');
background-position: 10px 10px;
background-repeat: no-repeat;
}
.dark .searchbox {
background-color: #111;
color: #eee;
}
.searchbox::placeholder {
color: #ccc;
}
.dark .searchbox::placeholder {
color: #666;
}
.filter {
width: calc(60% - 64px);
}
.reflookup {
width: calc(40% - 10px);
}
input[type=text]:focus {
background-color: white;
border: 1px solid #333;
}
.dark input[type=text]:focus {
background-color: #333;
border: 1px solid #ccc;
}
mark.highlight {
background-color: #5050ff;
color: #fff;
padding: 2px;
border-radius: 6px;
}
.dark mark.highlight {
background-color: #76a6da;
color: #111;
}
.menubtn {
background-color: white;
font-size: 16px;
border: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 20 20'%3E%3Cpath fill='none' d='M0 0h20v20H0V0z'/%3E%3Cpath d='M15.95 10.78c.03-.25.05-.51.05-.78s-.02-.53-.06-.78l1.69-1.32c.15-.12.19-.34.1-.51l-1.6-2.77c-.1-.18-.31-.24-.49-.18l-1.99.8c-.42-.32-.86-.58-1.35-.78L12 2.34c-.03-.2-.2-.34-.4-.34H8.4c-.2 0-.36.14-.39.34l-.3 2.12c-.49.2-.94.47-1.35.78l-1.99-.8c-.18-.07-.39 0-.49.18l-1.6 2.77c-.1.18-.06.39.1.51l1.69 1.32c-.04.25-.07.52-.07.78s.02.53.06.78L2.37 12.1c-.15.12-.19.34-.1.51l1.6 2.77c.1.18.31.24.49.18l1.99-.8c.42.32.86.58 1.35.78l.3 2.12c.04.2.2.34.4.34h3.2c.2 0 .37-.14.39-.34l.3-2.12c.49-.2.94-.47 1.35-.78l1.99.8c.18.07.39 0 .49-.18l1.6-2.77c.1-.18.06-.39-.1-.51l-1.67-1.32zM10 13c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z'/%3E%3C/svg%3E%0A");
background-position: center;
background-repeat: no-repeat;
}
.dark .menubtn {
filter: invert(1);
}
.menu {
position: relative;
display: inline-block;
}
.menu-content {
display: none;
position: absolute;
background-color: white;
right: 0;
min-width: 300px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 100;
padding: 8px;
}
.dark .menu-content {
background-color: #111;
}
.menu:hover .menu-content {
display: block;
}
.menu:hover .menubtn {
background-color: #eee;
}
.dark .menu:hover .menubtn {}
.menu-label {
display: inline-block;
padding: 8px;
border: 1px solid #ccc;
border-top: 0;
width: calc(100% - 18px);
}
.menu-label-top {
border-top: 1px solid #ccc;
}
.menu-textbox {
float: left;
height: 24px;
margin: 10px 5px;
padding: 5px 5px;
font-family: Consolas, "DejaVu Sans Mono", Monaco, monospace;
font-size: 14px;
box-sizing: border-box;
border: 1px solid #888;
border-radius: 4px;
outline: none;
background-color: #eee;
transition: background-color 0.2s, border 0.2s;
width: calc(100% - 10px);
}
.dark .menu-textbox {
background-color: #222;
color: #eee;
}
#topmostdiv {
transition: background-color 0.3s;
}
#top {
height: 78px;
border-bottom: 2px solid black;
}
.dark #top {
border-bottom: 2px solid #ccc;
}
#dbg {
display: block;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #aaa;
}
::-webkit-scrollbar-thumb {
background: #666;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
.slider {
-webkit-appearance: none;
width: 100%;
margin: 3px 0;
padding: 0;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
border-radius: 3px;
}
.slider:hover {
opacity: 1;
}
.slider:focus {
outline: none;
}
.slider::-webkit-slider-runnable-track {
-webkit-appearance: none;
width: 100%;
height: 8px;
background: #d3d3d3;
border-radius: 3px;
border: none;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
width: 15px;
height: 15px;
border-radius: 50%;
background: #0a0;
cursor: pointer;
margin-top: -4px;
}
.dark .slider::-webkit-slider-thumb {
background: #3d3;
}
.slider::-moz-range-thumb {
width: 15px;
height: 15px;
border-radius: 50%;
background: #0a0;
cursor: pointer;
}
.slider::-moz-range-track {
height: 8px;
background: #d3d3d3;
border-radius: 3px;
}
.dark .slider::-moz-range-thumb {
background: #3d3;
}
.slider::-ms-track {
width: 100%;
height: 8px;
border-width: 3px 0;
background: transparent;
border-color: transparent;
color: transparent;
transition: opacity .2s;
}
.slider::-ms-fill-lower {
background: #d3d3d3;
border: none;
border-radius: 3px;
}
.slider::-ms-fill-upper {
background: #d3d3d3;
border: none;
border-radius: 3px;
}
.slider::-ms-thumb {
width: 15px;
height: 15px;
border-radius: 50%;
background: #0a0;
cursor: pointer;
margin: 0;
}
.shameless-plug {
font-size: 0.8em;
text-align: center;
display: block;
}
a {
color: #0278a4;
}
.dark a {
color: #00b9fd;
}
#frontcanvas, #backcanvas {
touch-action: none;
}
</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 = {"show_fabrication": false, "redraw_on_drag": true, "highlight_pin1": false, "extra_fields": [], "dark_mode": false, "bom_view": "left-right", "board_rotation": 0, "checkboxes": "Placed", "show_silkscreen": true, "show_pads": true, "layer_view": "F"}
///////////////////////////////////////////////
///////////////////////////////////////////////
var pcbdata = {"edges": [{"width": 0.049999999999999996, "endangle": 90.0, "start": [165.75, 62.25], "radius": 1.75, "startangle": 0.0, "type": "arc"}, {"width": 0.049999999999999996, "endangle": 180.0, "start": [127.25, 62.25], "radius": 1.75, "startangle": 90.0, "type": "arc"}, {"width": 0.049999999999999996, "endangle": 270.0, "start": [127.25, 31.0], "radius": 1.75, "startangle": 180.0, "type": "arc"}, {"width": 0.049999999999999996, "endangle": 0.0, "start": [165.75, 31.0], "radius": 1.75, "startangle": -90.0, "type": "arc"}, {"start": [125.5, 62.25], "end": [125.5, 31.0], "type": "segment", "width": 0.049999999999999996}, {"start": [165.75, 64.0], "end": [127.25, 64.0], "type": "segment", "width": 0.049999999999999996}, {"start": [167.5, 31.0], "end": [167.5, 62.25], "type": "segment", "width": 0.049999999999999996}, {"start": [127.25, 29.25], "end": [165.75, 29.25], "type": "segment", "width": 0.049999999999999996}], "bom": {"both": [[3, "10nF", "C_0603_1608Metric", [["C1", 22], ["C3", 20], ["C5", 18]], []], [3, "1uF", "C_0603_1608Metric", [["C2", 21], ["C4", 19], ["C6", 17]], []], [2, "4.7K", "R_0603_1608Metric", [["R1", 11], ["R2", 10]], []], [1, "ICN6211", "QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm", [["U1", 0]], []], [1, "Conn_STM32MP1", "Molex_200528-0200_1x20-1MP_P1.00mm_Horizontal", [["J1", 16]], []], [1, "Conn_VDD1", "PinHeader_1x03_P2.54mm_Vertical", [["J2", 15]], []], [1, "Conn_VDD2", "PinHeader_1x03_P2.54mm_Vertical", [["J3", 14]], []], [1, "Conn_PWR", "PinHeader_1x03_P2.54mm_Vertical", [["J4", 13]], []], [1, "Conn_GPIO", "PinHeader_2x16_P2.54mm_Vertical", [["J5", 12]], []]], "B": [], "skipped": [1, 2, 3, 4, 5, 6, 7, 8, 9], "F": [[3, "10nF", "C_0603_1608Metric", [["C1", 22], ["C3", 20], ["C5", 18]], []], [3, "1uF", "C_0603_1608Metric", [["C2", 21], ["C4", 19], ["C6", 17]], []], [2, "4.7K", "R_0603_1608Metric", [["R1", 11], ["R2", 10]], []], [1, "ICN6211", "QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm", [["U1", 0]], []], [1, "Conn_STM32MP1", "Molex_200528-0200_1x20-1MP_P1.00mm_Horizontal", [["J1", 16]], []], [1, "Conn_VDD1", "PinHeader_1x03_P2.54mm_Vertical", [["J2", 15]], []], [1, "Conn_VDD2", "PinHeader_1x03_P2.54mm_Vertical", [["J3", 14]], []], [1, "Conn_PWR", "PinHeader_1x03_P2.54mm_Vertical", [["J4", 13]], []], [1, "Conn_GPIO", "PinHeader_2x16_P2.54mm_Vertical", [["J5", 12]], []]]}, "silkscreen": {"B": [{"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D0", "thickness": 0.15, "pos": [165.6, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "REF_CLK", "thickness": 0.15, "pos": [165.6, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D2", "thickness": 0.15, "pos": [160.54999999999998, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "EN", "thickness": 0.15, "pos": [163.1, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D23", "thickness": 0.15, "pos": [160.54999999999998, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D1", "thickness": 0.15, "pos": [163.1, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D3", "thickness": 0.15, "pos": [157.95, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D21", "thickness": 0.15, "pos": [155.4, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "DE", "thickness": 0.15, "pos": [152.9, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "PCLK", "thickness": 0.15, "pos": [150.35, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D22", "thickness": 0.15, "pos": [157.95, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D4", "thickness": 0.15, "pos": [155.4, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D6", "thickness": 0.15, "pos": [150.35, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D5", "thickness": 0.15, "pos": [152.9, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D19", "thickness": 0.15, "pos": [140.15, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D8", "thickness": 0.15, "pos": [145.2, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D7", "thickness": 0.15, "pos": [147.75, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "HSYNC", "thickness": 0.15, "pos": [147.75, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D9", "thickness": 0.15, "pos": [142.7, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "VSYNC", "thickness": 0.15, "pos": [145.2, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D20", "thickness": 0.15, "pos": [142.7, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D10", "thickness": 0.15, "pos": [140.15, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D17", "thickness": 0.15, "pos": [135.1, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D11", "thickness": 0.15, "pos": [137.65, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D18", "thickness": 0.15, "pos": [137.65, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D12", "thickness": 0.15, "pos": [135.1, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D16", "thickness": 0.15, "pos": [132.6, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D13", "thickness": 0.15, "pos": [132.6, 36.5], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D15", "thickness": 0.15, "pos": [130.04999999999998, 41.3], "height": 1.0}, {"width": 1.0, "angle": 270.0, "attr": ["mirrored"], "horiz_justify": 0, "text": "D14", "thickness": 0.15, "pos": [130.04999999999998, 36.5], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": ["mirrored"], "horiz_justify": -1, "text": "DSI to RGB LCD\nby arturo182\nFeb 2020", "thickness": 0.15, "pos": [138.35, 59.699999999999996], "height": 1.0}], "F": [{"width": 1.0, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "ICN6211", "thickness": 0.15, "pos": [144.0, 42.8], "height": 1.0}, {"start": [161.0, 45.699999999999996], "end": [161.0, 55.0], "type": "segment", "width": 0.19999999999999998}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "FROM STM", "thickness": 0.15, "pos": [159.9, 50.3], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": -1, "text": "DSI to RGB LCD\nby arturo182\nFeb 2020", "thickness": 0.15, "pos": [126.19999999999999, 59.699999999999996], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 1, "text": "RST", "thickness": 0.15, "pos": [164.4, 54.3], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 1, "text": "BL", "thickness": 0.15, "pos": [164.4, 52.3], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 1, "text": "TE", "thickness": 0.15, "pos": [164.4, 50.3], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 1, "text": "INT", "thickness": 0.15, "pos": [164.4, 48.3], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 1, "text": "VDD", "thickness": 0.15, "pos": [164.4, 46.3], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 1, "text": "D2+", "thickness": 0.15, "pos": [164.4, 44.3], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 1, "text": "D2-", "thickness": 0.15, "pos": [164.4, 42.3], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 1, "text": "D3+", "thickness": 0.15, "pos": [164.4, 40.3], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 1, "text": "D3-", "thickness": 0.15, "pos": [164.4, 38.4], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": -1, "text": "VDSI", "thickness": 0.15, "pos": [134.29999999999998, 53.0], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": -1, "text": "VRGB\nVI2C", "thickness": 0.15, "pos": [134.29999999999998, 49.0], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "1.8V", "thickness": 0.15, "pos": [127.5, 55.3], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "3.3V", "thickness": 0.15, "pos": [132.6, 55.3], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": -1, "text": "GND", "thickness": 0.15, "pos": [129.1, 44.1], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": -1, "text": "1.8V", "thickness": 0.15, "pos": [129.1, 41.5], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": -1, "text": "3.3V", "thickness": 0.15, "pos": [129.1, 39.0], "height": 1.0}, {"start": [140.6, 63.9], "end": [166.0, 63.9], "type": "segment", "width": 0.12}, {"start": [140.6, 63.9], "end": [140.6, 61.0], "type": "segment", "width": 0.12}, {"start": [166.01, 63.9], "end": [166.0, 61.0], "type": "segment", "width": 0.12}, {"start": [142.990705, 45.611090999999995], "end": [142.601796, 46.0], "type": "segment", "width": 0.12}, {"start": [151.398204, 46.0], "end": [151.00929499999998, 45.611090999999995], "type": "segment", "width": 0.12}, {"start": [151.00929499999998, 46.388909], "end": [151.398204, 46.0], "type": "segment", "width": 0.12}, {"start": [147.0, 50.398204], "end": [146.611091, 50.009294999999995], "type": "segment", "width": 0.12}, {"start": [147.38890899999998, 50.009294999999995], "end": [147.0, 50.398204], "type": "segment", "width": 0.12}, {"start": [147.0, 41.601796], "end": [147.38890899999998, 41.990705], "type": "segment", "width": 0.12}, {"start": [146.611091, 41.990705], "end": [147.0, 41.601796], "type": "segment", "width": 0.12}, {"start": [166.2, 38.4], "radius": 0.7, "type": "circle", "width": 0.12}, {"start": [166.2, 40.4], "radius": 0.7, "type": "circle", "width": 0.12}, {"start": [166.2, 42.4], "radius": 0.7, "type": "circle", "width": 0.12}, {"start": [166.2, 44.4], "radius": 0.7, "type": "circle", "width": 0.12}, {"start": [166.2, 46.4], "radius": 0.7, "type": "circle", "width": 0.12}, {"start": [166.2, 54.4], "radius": 0.7, "type": "circle", "width": 0.12}, {"start": [166.2, 52.4], "radius": 0.7, "type": "circle", "width": 0.12}, {"start": [166.2, 50.4], "radius": 0.7, "type": "circle", "width": 0.12}, {"start": [166.2, 48.4], "radius": 0.7, "type": "circle", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R2", "thickness": 0.15, "ref": 1, "pos": [154.0, 54.099999999999994], "height": 1.0}, {"start": [156.562779, 53.589999999999996], "end": [156.237221, 53.589999999999996], "type": "segment", "width": 0.12}, {"start": [156.562779, 54.61], "end": [156.237221, 54.61], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R1", "thickness": 0.15, "ref": 1, "pos": [154.0, 52.599999999999994], "height": 1.0}, {"start": [156.237221, 53.11], "end": [156.562779, 53.11], "type": "segment", "width": 0.12}, {"start": [156.237221, 52.089999999999996], "end": [156.562779, 52.089999999999996], "type": "segment", "width": 0.12}, {"start": [166.92999999999998, 29.669999999999998], "end": [166.92999999999998, 31.0], "type": "segment", "width": 0.12}, {"start": [165.6, 29.669999999999998], "end": [166.92999999999998, 29.669999999999998], "type": "segment", "width": 0.12}, {"start": [166.92999999999998, 32.269999999999996], "end": [166.92999999999998, 34.87], "type": "segment", "width": 0.12}, {"start": [164.32999999999998, 32.269999999999996], "end": [166.92999999999998, 32.269999999999996], "type": "segment", "width": 0.12}, {"start": [164.32999999999998, 29.669999999999998], "end": [164.32999999999998, 32.269999999999996], "type": "segment", "width": 0.12}, {"start": [166.92999999999998, 34.87], "end": [126.16999999999999, 34.87], "type": "segment", "width": 0.12}, {"start": [164.32999999999998, 29.669999999999998], "end": [126.16999999999999, 29.669999999999998], "type": "segment", "width": 0.12}, {"start": [126.16999999999999, 29.669999999999998], "end": [126.16999999999999, 34.87], "type": "segment", "width": 0.12}, {"start": [126.16999999999999, 37.67], "end": [127.5, 37.67], "type": "segment", "width": 0.12}, {"start": [126.16999999999999, 39.0], "end": [126.16999999999999, 37.67], "type": "segment", "width": 0.12}, {"start": [126.16999999999999, 40.269999999999996], "end": [128.82999999999998, 40.269999999999996], "type": "segment", "width": 0.12}, {"start": [128.82999999999998, 40.269999999999996], "end": [128.82999999999998, 45.41], "type": "segment", "width": 0.12}, {"start": [126.16999999999999, 40.269999999999996], "end": [126.16999999999999, 45.41], "type": "segment", "width": 0.12}, {"start": [126.16999999999999, 45.41], "end": [128.82999999999998, 45.41], "type": "segment", "width": 0.12}, {"start": [126.16999999999999, 50.33], "end": [126.16999999999999, 49.0], "type": "segment", "width": 0.12}, {"start": [127.5, 50.33], "end": [126.16999999999999, 50.33], "type": "segment", "width": 0.12}, {"start": [128.76999999999998, 50.33], "end": [128.76999999999998, 47.669999999999995], "type": "segment", "width": 0.12}, {"start": [128.76999999999998, 47.669999999999995], "end": [133.91, 47.669999999999995], "type": "segment", "width": 0.12}, {"start": [128.76999999999998, 50.33], "end": [133.91, 50.33], "type": "segment", "width": 0.12}, {"start": [133.91, 50.33], "end": [133.91, 47.669999999999995], "type": "segment", "width": 0.12}, {"start": [126.16999999999999, 54.33], "end": [126.16999999999999, 53.0], "type": "segment", "width": 0.12}, {"start": [127.5, 54.33], "end": [126.16999999999999, 54.33], "type": "segment", "width": 0.12}, {"start": [128.76999999999998, 54.33], "end": [128.76999999999998, 51.669999999999995], "type": "segment", "width": 0.12}, {"start": [128.76999999999998, 51.669999999999995], "end": [133.91, 51.669999999999995], "type": "segment", "width": 0.12}, {"start": [128.76999999999998, 54.33], "end": [133.91, 54.33], "type": "segment", "width": 0.12}, {"start": [133.91, 54.33], "end": [133.91, 51.669999999999995], "type": "segment", "width": 0.12}, {"start": [165.23999999999998, 57.18], "end": [163.26, 57.18], "type": "segment", "width": 0.12}, {"start": [165.23999999999998, 56.83], "end": [165.23999999999998, 57.18], "type": "segment", "width": 0.12}, {"start": [166.01, 56.83], "end": [165.23999999999998, 56.83], "type": "segment", "width": 0.12}, {"start": [166.01, 58.879999999999995], "end": [166.01, 56.83], "type": "segment", "width": 0.12}, {"start": [166.01, 61.0], "end": [166.01, 60.699999999999996], "type": "segment", "width": 0.12}, {"start": [165.20999999999998, 61.0], "end": [166.01, 61.0], "type": "segment", "width": 0.12}, {"start": [165.20999999999998, 62.3], "end": [165.20999999999998, 61.0], "type": "segment", "width": 0.12}, {"start": [141.39, 62.3], "end": [165.20999999999998, 62.3], "type": "segment", "width": 0.12}, {"start": [141.39, 61.0], "end": [141.39, 62.3], "type": "segment", "width": 0.12}, {"start": [140.59, 61.0], "end": [141.39, 61.0], "type": "segment", "width": 0.12}, {"start": [140.59, 60.699999999999996], "end": [140.59, 61.0], "type": "segment", "width": 0.12}, {"start": [140.59, 56.83], "end": [140.59, 58.879999999999995], "type": "segment", "width": 0.12}, {"start": [141.35999999999999, 56.83], "end": [140.59, 56.83], "type": "segment", "width": 0.12}, {"start": [141.35999999999999, 57.18], "end": [141.35999999999999, 56.83], "type": "segment", "width": 0.12}, {"start": [143.34, 57.18], "end": [141.35999999999999, 57.18], "type": "segment", "width": 0.12}, {"start": [143.34, 56.589999999999996], "end": [143.34, 57.18], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": -45.0, "attr": [], "horiz_justify": 0, "text": "C6", "thickness": 0.15, "ref": 1, "pos": [140.85, 39.449999999999996], "height": 1.0}, {"start": [142.124273, 41.445522], "end": [142.354478, 41.675726999999995], "type": "segment", "width": 0.12}, {"start": [142.845522, 40.724273], "end": [143.075727, 40.954477999999995], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": -45.0, "attr": [], "horiz_justify": 0, "text": "C5", "thickness": 0.15, "ref": 1, "pos": [141.85, 38.449999999999996], "height": 1.0}, {"start": [143.124273, 40.445522], "end": [143.354478, 40.675726999999995], "type": "segment", "width": 0.12}, {"start": [143.845522, 39.724273], "end": [144.075727, 39.954478], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "C4", "thickness": 0.15, "ref": 1, "pos": [138.993153, 50.006847], "height": 1.0}, {"start": [140.988675, 48.732574], "end": [141.21887999999998, 48.502368999999995], "type": "segment", "width": 0.12}, {"start": [140.267426, 48.011325], "end": [140.49763099999998, 47.78112], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "C3", "thickness": 0.15, "ref": 1, "pos": [139.993154, 51.256847], "height": 1.0}, {"start": [141.988675, 49.732574], "end": [142.21887999999998, 49.502368999999995], "type": "segment", "width": 0.12}, {"start": [141.267426, 49.011325], "end": [141.49763099999998, 48.781119999999994], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "C2", "thickness": 0.15, "ref": 1, "pos": [142.75, 53.449999999999996], "height": 1.0}, {"start": [144.745522, 52.175726999999995], "end": [144.975727, 51.945522], "type": "segment", "width": 0.12}, {"start": [144.024273, 51.454477999999995], "end": [144.254478, 51.224273], "type": "segment", "width": 0.12}, {"width": 1.0, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "C1", "thickness": 0.15, "ref": 1, "pos": [143.75, 54.449999999999996], "height": 1.0}, {"start": [145.745522, 53.175726999999995], "end": [145.975727, 52.945522], "type": "segment", "width": 0.12}, {"start": [145.024273, 52.454477999999995], "end": [145.254478, 52.224273], "type": "segment", "width": 0.12}]}, "edges_bbox": {"minx": 125.474999, "miny": 29.224999, "maxx": 167.525001, "maxy": 64.025001}, "font_data": {" ": {"l": [], "w": 0.7619047619047619}, "+": {"l": [[[0.23809523809523814, -0.42857142857142855], [1.0, -0.42857142857142855]], [[0.6190476190476191, -0.047619047619047616], [0.6190476190476191, -0.8095238095238095]]], "w": 1.2380952380952381}, "-": {"l": [[[0.23809523809523814, -0.42857142857142855], [1.0, -0.42857142857142855]]], "w": 1.2380952380952381}, ".": {"l": [[[0.23809523809523808, -0.14285714285714285], [0.2857142857142857, -0.09523809523809523], [0.23809523809523808, -0.047619047619047616], [0.19047619047619047, -0.09523809523809523], [0.23809523809523808, -0.14285714285714285], [0.23809523809523808, -0.047619047619047616]]], "w": 0.47619047619047616}, "1": {"l": [[[0.7619047619047619, -0.047619047619047616], [0.19047619047619047, -0.047619047619047616]], [[0.47619047619047616, -0.047619047619047616], [0.47619047619047616, -1.0476190476190474], [0.38095238095238093, -0.9047619047619047], [0.2857142857142857, -0.8095238095238095], [0.19047619047619047, -0.7619047619047619]]], "w": 0.9523809523809523}, "0": {"l": [[[0.42857142857142855, -1.0476190476190474], [0.5238095238095237, -1.0476190476190474], [0.6190476190476191, -1.0], [0.6666666666666666, -0.9523809523809523], [0.7142857142857142, -0.8571428571428571], [0.7619047619047619, -0.6666666666666666], [0.7619047619047619, -0.42857142857142855], [0.7142857142857142, -0.23809523809523808], [0.6666666666666666, -0.14285714285714285], [0.6190476190476191, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.42857142857142855, -0.047619047619047616], [0.3333333333333333, -0.09523809523809523], [0.2857142857142857, -0.14285714285714285], [0.23809523809523808, -0.23809523809523808], [0.19047619047619047, -0.42857142857142855], [0.19047619047619047, -0.6666666666666666], [0.23809523809523808, -0.8571428571428571], [0.2857142857142857, -0.9523809523809523], [0.3333333333333333, -1.0], [0.42857142857142855, -1.0476190476190474]]], "w": 0.9523809523809523}, "3": {"l": [[[0.14285714285714285, -1.0476190476190474], [0.7619047619047619, -1.0476190476190474], [0.42857142857142855, -0.6666666666666666], [0.5714285714285714, -0.6666666666666666], [0.6666666666666666, -0.6190476190476191], [0.7142857142857142, -0.5714285714285714], [0.7619047619047619, -0.47619047619047616], [0.7619047619047619, -0.23809523809523808], [0.7142857142857142, -0.14285714285714285], [0.6666666666666666, -0.09523809523809523], [0.5714285714285714, -0.047619047619047616], [0.2857142857142857, -0.047619047619047616], [0.19047619047619047, -0.09523809523809523], [0.14285714285714285, -0.14285714285714285]]], "w": 0.9523809523809523}, "2": {"l": [[[0.19047619047619047, -0.9523809523809523], [0.23809523809523808, -1.0], [0.3333333333333333, -1.0476190476190474], [0.5714285714285714, -1.0476190476190474], [0.6666666666666666, -1.0], [0.7142857142857142, -0.9523809523809523], [0.7619047619047619, -0.8571428571428571], [0.7619047619047619, -0.7619047619047619], [0.7142857142857142, -0.6190476190476191], [0.14285714285714285, -0.047619047619047616], [0.7619047619047619, -0.047619047619047616]]], "w": 0.9523809523809523}, "5": {"l": [[[0.7142857142857142, -1.0476190476190474], [0.23809523809523808, -1.0476190476190474], [0.19047619047619047, -0.5714285714285714], [0.23809523809523808, -0.6190476190476191], [0.3333333333333333, -0.6666666666666666], [0.5714285714285714, -0.6666666666666666], [0.6666666666666666, -0.6190476190476191], [0.7142857142857142, -0.5714285714285714], [0.7619047619047619, -0.47619047619047616], [0.7619047619047619, -0.23809523809523808], [0.7142857142857142, -0.14285714285714285], [0.6666666666666666, -0.09523809523809523], [0.5714285714285714, -0.047619047619047616], [0.3333333333333333, -0.047619047619047616], [0.23809523809523808, -0.09523809523809523], [0.19047619047619047, -0.14285714285714285]]], "w": 0.9523809523809523}, "4": {"l": [[[0.6666666666666666, -0.7142857142857142], [0.6666666666666666, -0.047619047619047616]], [[0.42857142857142855, -1.0952380952380951], [0.19047619047619047, -0.38095238095238093], [0.8095238095238095, -0.38095238095238093]]], "w": 0.9523809523809523}, "7": {"l": [[[0.14285714285714285, -1.0476190476190474], [0.8095238095238095, -1.0476190476190474], [0.38095238095238093, -0.047619047619047616]]], "w": 0.9523809523809523}, "6": {"l": [[[0.6666666666666666, -1.0476190476190474], [0.47619047619047616, -1.0476190476190474], [0.38095238095238093, -1.0], [0.3333333333333333, -0.9523809523809523], [0.23809523809523808, -0.8095238095238095], [0.19047619047619047, -0.6190476190476191], [0.19047619047619047, -0.23809523809523808], [0.23809523809523808, -0.14285714285714285], [0.2857142857142857, -0.09523809523809523], [0.38095238095238093, -0.047619047619047616], [0.5714285714285714, -0.047619047619047616], [0.6666666666666666, -0.09523809523809523], [0.7142857142857142, -0.14285714285714285], [0.7619047619047619, -0.23809523809523808], [0.7619047619047619, -0.47619047619047616], [0.7142857142857142, -0.5714285714285714], [0.6666666666666666, -0.6190476190476191], [0.5714285714285714, -0.6666666666666666], [0.38095238095238093, -0.6666666666666666], [0.2857142857142857, -0.6190476190476191], [0.23809523809523808, -0.5714285714285714], [0.19047619047619047, -0.47619047619047616]]], "w": 0.9523809523809523}, "9": {"l": [[[0.2857142857142857, -0.047619047619047616], [0.47619047619047616, -0.047619047619047616], [0.5714285714285714, -0.09523809523809523], [0.6190476190476191, -0.14285714285714285], [0.7142857142857142, -0.2857142857142857], [0.7619047619047619, -0.47619047619047616], [0.7619047619047619, -0.8571428571428571], [0.7142857142857142, -0.9523809523809523], [0.6666666666666666, -1.0], [0.5714285714285714, -1.0476190476190474], [0.38095238095238093, -1.0476190476190474], [0.2857142857142857, -1.0], [0.23809523809523808, -0.9523809523809523], [0.19047619047619047, -0.8571428571428571], [0.19047619047619047, -0.6190476190476191], [0.23809523809523808, -0.5238095238095237], [0.2857142857142857, -0.47619047619047616], [0.38095238095238093, -0.42857142857142855], [0.5714285714285714, -0.42857142857142855], [0.6666666666666666, -0.47619047619047616], [0.7142857142857142, -0.5238095238095237], [0.7619047619047619, -0.6190476190476191]]], "w": 0.9523809523809523}, "8": {"l": [[[0.38095238095238093, -0.6190476190476191], [0.2857142857142857, -0.6666666666666666], [0.23809523809523808, -0.7142857142857142], [0.19047619047619047, -0.8095238095238095], [0.19047619047619047, -0.8571428571428571], [0.23809523809523808, -0.9523809523809523], [0.2857142857142857, -1.0], [0.38095238095238093, -1.0476190476190474], [0.5714285714285714, -1.0476190476190474], [0.6666666666666666, -1.0], [0.7142857142857142, -0.9523809523809523], [0.7619047619047619, -0.8571428571428571], [0.7619047619047619, -0.8095238095238095], [0.7142857142857142, -0.7142857142857142], [0.6666666666666666, -0.6666666666666666], [0.5714285714285714, -0.6190476190476191], [0.38095238095238093, -0.6190476190476191], [0.2857142857142857, -0.5714285714285714], [0.23809523809523808, -0.5238095238095237], [0.19047619047619047, -0.42857142857142855], [0.19047619047619047, -0.23809523809523808], [0.23809523809523808, -0.14285714285714285], [0.2857142857142857, -0.09523809523809523], [0.38095238095238093, -0.047619047619047616], [0.5714285714285714, -0.047619047619047616], [0.6666666666666666, -0.09523809523809523], [0.7142857142857142, -0.14285714285714285], [0.7619047619047619, -0.23809523809523808], [0.7619047619047619, -0.42857142857142855], [0.7142857142857142, -0.5238095238095237], [0.6666666666666666, -0.5714285714285714], [0.5714285714285714, -0.6190476190476191]]], "w": 0.9523809523809523}, "C": {"l": [[[0.8095238095238095, -0.14285714285714285], [0.7619047619047619, -0.09523809523809523], [0.6190476190476191, -0.047619047619047616], [0.5238095238095237, -0.047619047619047616], [0.38095238095238093, -0.09523809523809523], [0.2857142857142857, -0.19047619047619047], [0.23809523809523808, -0.2857142857142857], [0.19047619047619047, -0.47619047619047616], [0.19047619047619047, -0.6190476190476191], [0.23809523809523808, -0.8095238095238095], [0.2857142857142857, -0.9047619047619047], [0.38095238095238093, -1.0], [0.5238095238095237, -1.0476190476190474], [0.6190476190476191, -1.0476190476190474], [0.7619047619047619, -1.0], [0.8095238095238095, -0.9523809523809523]]], "w": 1.0}, "B": {"l": [[[0.5714285714285714, -0.5714285714285714], [0.7142857142857142, -0.5238095238095237], [0.7619047619047619, -0.47619047619047616], [0.8095238095238094, -0.38095238095238093], [0.8095238095238094, -0.23809523809523808], [0.7619047619047619, -0.14285714285714285], [0.7142857142857142, -0.09523809523809523], [0.619047619047619, -0.047619047619047616], [0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.5714285714285714, -1.0476190476190474], [0.6666666666666665, -1.0], [0.7142857142857142, -0.9523809523809523], [0.7619047619047619, -0.8571428571428571], [0.7619047619047619, -0.7619047619047619], [0.7142857142857142, -0.6666666666666666], [0.6666666666666665, -0.6190476190476191], [0.5714285714285714, -0.5714285714285714], [0.23809523809523803, -0.5714285714285714]]], "w": 1.0}, "E": {"l": [[[0.23809523809523808, -0.5714285714285714], [0.5714285714285714, -0.5714285714285714]], [[0.7142857142857142, -0.047619047619047616], [0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474], [0.7142857142857142, -1.0476190476190474]]], "w": 0.9047619047619047}, "D": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.4761904761904761, -1.0476190476190474], [0.619047619047619, -1.0], [0.7142857142857142, -0.9047619047619047], [0.7619047619047619, -0.8095238095238095], [0.8095238095238094, -0.6190476190476191], [0.8095238095238094, -0.47619047619047616], [0.7619047619047619, -0.2857142857142857], [0.7142857142857142, -0.19047619047619047], [0.619047619047619, -0.09523809523809523], [0.4761904761904761, -0.047619047619047616], [0.23809523809523803, -0.047619047619047616]]], "w": 1.0}, "G": {"l": [[[0.7619047619047619, -1.0], [0.6666666666666666, -1.0476190476190474], [0.5238095238095237, -1.0476190476190474], [0.38095238095238093, -1.0], [0.2857142857142857, -0.9047619047619047], [0.23809523809523808, -0.8095238095238095], [0.19047619047619047, -0.6190476190476191], [0.19047619047619047, -0.47619047619047616], [0.23809523809523808, -0.2857142857142857], [0.2857142857142857, -0.19047619047619047], [0.38095238095238093, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.6190476190476191, -0.047619047619047616], [0.7619047619047619, -0.09523809523809523], [0.8095238095238095, -0.14285714285714285], [0.8095238095238095, -0.47619047619047616], [0.6190476190476191, -0.47619047619047616]]], "w": 1.0}, "F": {"l": [[[0.5714285714285714, -0.5714285714285714], [0.23809523809523808, -0.5714285714285714]], [[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474], [0.7142857142857142, -1.0476190476190474]]], "w": 0.8571428571428571}, "I": {"l": [[[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474]]], "w": 0.47619047619047616}, "H": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474]], [[0.23809523809523803, -0.5714285714285714], [0.8095238095238094, -0.5714285714285714]], [[0.8095238095238094, -0.047619047619047616], [0.8095238095238094, -1.0476190476190474]]], "w": 1.0476190476190474}, "K": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474]], [[0.8095238095238094, -0.047619047619047616], [0.3809523809523809, -0.6190476190476191]], [[0.8095238095238094, -1.0476190476190474], [0.23809523809523803, -0.47619047619047616]]], "w": 1.0}, "J": {"l": [[[0.5238095238095237, -1.0476190476190474], [0.5238095238095237, -0.3333333333333333], [0.47619047619047616, -0.19047619047619047], [0.38095238095238093, -0.09523809523809523], [0.23809523809523808, -0.047619047619047616], [0.14285714285714285, -0.047619047619047616]]], "w": 0.7619047619047619}, "M": {"l": [[[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474], [0.5714285714285714, -0.3333333333333333], [0.9047619047619047, -1.0476190476190474], [0.9047619047619047, -0.047619047619047616]]], "w": 1.1428571428571428}, "L": {"l": [[[0.7142857142857142, -0.047619047619047616], [0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474]]], "w": 0.8095238095238095}, "O": {"l": [[[0.4285714285714285, -1.0476190476190474], [0.619047619047619, -1.0476190476190474], [0.7142857142857142, -1.0], [0.8095238095238094, -0.9047619047619047], [0.857142857142857, -0.7142857142857142], [0.857142857142857, -0.38095238095238093], [0.8095238095238094, -0.19047619047619047], [0.7142857142857142, -0.09523809523809523], [0.619047619047619, -0.047619047619047616], [0.4285714285714285, -0.047619047619047616], [0.33333333333333326, -0.09523809523809523], [0.23809523809523803, -0.19047619047619047], [0.1904761904761904, -0.38095238095238093], [0.1904761904761904, -0.7142857142857142], [0.23809523809523803, -0.9047619047619047], [0.33333333333333326, -1.0], [0.4285714285714285, -1.0476190476190474]]], "w": 1.0476190476190474}, "N": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.8095238095238094, -0.047619047619047616], [0.8095238095238094, -1.0476190476190474]]], "w": 1.0476190476190474}, "P": {"l": [[[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.619047619047619, -1.0476190476190474], [0.7142857142857142, -1.0], [0.7619047619047619, -0.9523809523809523], [0.8095238095238094, -0.8571428571428571], [0.8095238095238094, -0.7142857142857142], [0.7619047619047619, -0.6190476190476191], [0.7142857142857142, -0.5714285714285714], [0.619047619047619, -0.5238095238095237], [0.23809523809523803, -0.5238095238095237]]], "w": 1.0}, "S": {"l": [[[0.19047619047619047, -0.09523809523809523], [0.3333333333333333, -0.047619047619047616], [0.5714285714285714, -0.047619047619047616], [0.6666666666666666, -0.09523809523809523], [0.7142857142857142, -0.14285714285714285], [0.7619047619047619, -0.23809523809523808], [0.7619047619047619, -0.3333333333333333], [0.7142857142857142, -0.42857142857142855], [0.6666666666666666, -0.47619047619047616], [0.5714285714285714, -0.5238095238095237], [0.38095238095238093, -0.5714285714285714], [0.2857142857142857, -0.6190476190476191], [0.23809523809523808, -0.6666666666666666], [0.19047619047619047, -0.7619047619047619], [0.19047619047619047, -0.8571428571428571], [0.23809523809523808, -0.9523809523809523], [0.2857142857142857, -1.0], [0.38095238095238093, -1.0476190476190474], [0.6190476190476191, -1.0476190476190474], [0.7619047619047619, -1.0]]], "w": 0.9523809523809523}, "R": {"l": [[[0.8095238095238094, -0.047619047619047616], [0.4761904761904761, -0.5238095238095237]], [[0.23809523809523803, -0.047619047619047616], [0.23809523809523803, -1.0476190476190474], [0.619047619047619, -1.0476190476190474], [0.7142857142857142, -1.0], [0.7619047619047619, -0.9523809523809523], [0.8095238095238094, -0.8571428571428571], [0.8095238095238094, -0.7142857142857142], [0.7619047619047619, -0.6190476190476191], [0.7142857142857142, -0.5714285714285714], [0.619047619047619, -0.5238095238095237], [0.23809523809523803, -0.5238095238095237]]], "w": 1.0}, "U": {"l": [[[0.23809523809523803, -1.0476190476190474], [0.23809523809523803, -0.23809523809523808], [0.28571428571428564, -0.14285714285714285], [0.33333333333333326, -0.09523809523809523], [0.4285714285714285, -0.047619047619047616], [0.619047619047619, -0.047619047619047616], [0.7142857142857142, -0.09523809523809523], [0.7619047619047619, -0.14285714285714285], [0.8095238095238094, -0.23809523809523808], [0.8095238095238094, -1.0476190476190474]]], "w": 1.0476190476190474}, "T": {"l": [[[0.09523809523809523, -1.0476190476190474], [0.6666666666666666, -1.0476190476190474]], [[0.38095238095238093, -0.047619047619047616], [0.38095238095238093, -1.0476190476190474]]], "w": 0.7619047619047619}, "W": {"l": [[[0.14285714285714285, -1.0476190476190474], [0.38095238095238093, -0.047619047619047616], [0.5714285714285714, -0.7619047619047619], [0.7619047619047619, -0.047619047619047616], [1.0, -1.0476190476190474]]], "w": 1.1428571428571428}, "V": {"l": [[[0.09523809523809523, -1.0476190476190474], [0.42857142857142855, -0.047619047619047616], [0.7619047619047619, -1.0476190476190474]]], "w": 0.8571428571428571}, "Y": {"l": [[[0.42857142857142855, -0.5238095238095237], [0.42857142857142855, -0.047619047619047616]], [[0.09523809523809523, -1.0476190476190474], [0.42857142857142855, -0.5238095238095237], [0.7619047619047619, -1.0476190476190474]]], "w": 0.8571428571428571}, "_": {"l": [[[0.0, 0.047619047619047616], [0.7619047619047619, 0.047619047619047616]]], "w": 0.7619047619047619}, "a": {"l": [[[0.6666666666666666, -0.047619047619047616], [0.6666666666666666, -0.5714285714285714], [0.6190476190476191, -0.6666666666666666], [0.5238095238095237, -0.7142857142857142], [0.3333333333333333, -0.7142857142857142], [0.23809523809523808, -0.6666666666666666]], [[0.6666666666666666, -0.09523809523809523], [0.5714285714285714, -0.047619047619047616], [0.3333333333333333, -0.047619047619047616], [0.23809523809523808, -0.09523809523809523], [0.19047619047619047, -0.19047619047619047], [0.19047619047619047, -0.2857142857142857], [0.23809523809523808, -0.38095238095238093], [0.3333333333333333, -0.42857142857142855], [0.5714285714285714, -0.42857142857142855], [0.6666666666666666, -0.47619047619047616]]], "w": 0.9047619047619047}, "b": {"l": [[[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -1.0476190476190474]], [[0.23809523809523808, -0.6666666666666666], [0.3333333333333333, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142], [0.6190476190476191, -0.6666666666666666], [0.6666666666666666, -0.6190476190476191], [0.7142857142857142, -0.5238095238095237], [0.7142857142857142, -0.23809523809523808], [0.6666666666666666, -0.14285714285714285], [0.6190476190476191, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.3333333333333333, -0.047619047619047616], [0.23809523809523808, -0.09523809523809523]]], "w": 0.9047619047619047}, "e": {"l": [[[0.6190476190476191, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.3333333333333333, -0.047619047619047616], [0.23809523809523808, -0.09523809523809523], [0.19047619047619047, -0.19047619047619047], [0.19047619047619047, -0.5714285714285714], [0.23809523809523808, -0.6666666666666666], [0.3333333333333333, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142], [0.6190476190476191, -0.6666666666666666], [0.6666666666666666, -0.5714285714285714], [0.6666666666666666, -0.47619047619047616], [0.19047619047619047, -0.38095238095238093]]], "w": 0.8571428571428571}, "o": {"l": [[[0.38095238095238093, -0.047619047619047616], [0.2857142857142857, -0.09523809523809523], [0.23809523809523808, -0.14285714285714285], [0.19047619047619047, -0.23809523809523808], [0.19047619047619047, -0.5238095238095237], [0.23809523809523808, -0.6190476190476191], [0.2857142857142857, -0.6666666666666666], [0.38095238095238093, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142], [0.6190476190476191, -0.6666666666666666], [0.6666666666666666, -0.6190476190476191], [0.7142857142857142, -0.5238095238095237], [0.7142857142857142, -0.23809523809523808], [0.6666666666666666, -0.14285714285714285], [0.6190476190476191, -0.09523809523809523], [0.5238095238095237, -0.047619047619047616], [0.38095238095238093, -0.047619047619047616]]], "w": 0.9047619047619047}, "n": {"l": [[[0.23809523809523808, -0.7142857142857142], [0.23809523809523808, -0.047619047619047616]], [[0.23809523809523808, -0.6190476190476191], [0.2857142857142857, -0.6666666666666666], [0.38095238095238093, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142], [0.6190476190476191, -0.6666666666666666], [0.6666666666666666, -0.5714285714285714], [0.6666666666666666, -0.047619047619047616]]], "w": 0.9047619047619047}, "r": {"l": [[[0.23809523809523808, -0.047619047619047616], [0.23809523809523808, -0.7142857142857142]], [[0.23809523809523808, -0.5238095238095237], [0.2857142857142857, -0.6190476190476191], [0.3333333333333333, -0.6666666666666666], [0.42857142857142855, -0.7142857142857142], [0.5238095238095237, -0.7142857142857142]]], "w": 0.6190476190476191}, "u": {"l": [[[0.6666666666666666, -0.7142857142857142], [0.6666666666666666, -0.047619047619047616]], [[0.23809523809523808, -0.7142857142857142], [0.23809523809523808, -0.19047619047619047], [0.2857142857142857, -0.09523809523809523], [0.38095238095238093, -0.047619047619047616], [0.5238095238095237, -0.047619047619047616], [0.6190476190476191, -0.09523809523809523], [0.6666666666666666, -0.14285714285714285]]], "w": 0.9047619047619047}, "t": {"l": [[[0.09523809523809523, -0.7142857142857142], [0.47619047619047616, -0.7142857142857142]], [[0.23809523809523808, -1.0476190476190474], [0.23809523809523808, -0.19047619047619047], [0.2857142857142857, -0.09523809523809523], [0.38095238095238093, -0.047619047619047616], [0.47619047619047616, -0.047619047619047616]]], "w": 0.5714285714285714}, "y": {"l": [[[0.14285714285714285, -0.7142857142857142], [0.38095238095238093, -0.047619047619047616]], [[0.6190476190476191, -0.7142857142857142], [0.38095238095238093, -0.047619047619047616], [0.2857142857142857, 0.19047619047619047], [0.23809523809523808, 0.23809523809523808], [0.14285714285714285, 0.2857142857142857]]], "w": 0.7619047619047619}}, "modules": [{"layer": "F", "center": [147.0, 46.0], "pads": [{"layers": [], "angle": -45.0, "pos": [148.979899, 46.0], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -45.0, "pos": [147.989949, 45.010051], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -45.0, "pos": [147.0, 44.020101], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -45.0, "pos": [147.989949, 46.989948999999996], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -45.0, "pos": [147.0, 46.0], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -45.0, "pos": [146.010051, 45.010051], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -45.0, "pos": [147.0, 47.979898999999996], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -45.0, "pos": [146.010051, 46.989948999999996], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": [], "angle": -45.0, "pos": [145.02010099999998, 46.0], "shape": "roundrect", "radius": 0.25, "offset": [0.0, 0.0], "type": "smd", "size": [1.13, 1.13]}, {"layers": ["F"], "angle": -45.0, "pos": [147.0, 46.0], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [4.2, 4.2]}, {"layers": ["F"], "angle": -45.0, "pos": [143.3584, 45.46967], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [143.641243, 45.186827], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [143.924086, 44.903984], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [144.206928, 44.621142], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [144.489771, 44.338299], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [144.772614, 44.055456], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [145.055456, 43.772614], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [145.338299, 43.489771], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [145.621142, 43.206928], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [145.90398399999998, 42.924085999999996], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [146.186827, 42.641242999999996], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [146.46966999999998, 42.358399999999996], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [147.53033, 42.358399999999996], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [147.813173, 42.641242999999996], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [148.096016, 42.924085999999996], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [148.37885799999998, 43.206928], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [148.661701, 43.489771], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [148.94454399999998, 43.772614], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [149.227386, 44.055456], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [149.51022899999998, 44.338299], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [149.793072, 44.621142], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [150.07591399999998, 44.903984], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [150.358757, 45.186827], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [150.64159999999998, 45.46967], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [150.64159999999998, 46.53033], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [150.358757, 46.813173], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [150.07591399999998, 47.096016], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [149.793072, 47.378858], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [149.51022899999998, 47.661701], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [149.227386, 47.944544], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [148.94454399999998, 48.227385999999996], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [148.661701, 48.510228999999995], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [148.37885799999998, 48.793071999999995], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [148.096016, 49.075914], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [147.813173, 49.358757], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [147.53033, 49.6416], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.19999999999999998, 0.85]}, {"layers": ["F"], "angle": -45.0, "pos": [146.46966999999998, 49.6416], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [146.186827, 49.358757], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [145.90398399999998, 49.075914], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [145.621142, 48.793071999999995], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [145.338299, 48.510228999999995], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [145.055456, 48.227385999999996], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [144.772614, 47.944544], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [144.489771, 47.661701], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [144.206928, 47.378858], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [143.924086, 47.096016], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [143.641243, 46.813173], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "type": "smd", "size": [0.85, 0.19999999999999998]}, {"layers": ["F"], "angle": -45.0, "pos": [143.3584, 46.53033], "shape": "roundrect", "radius": 0.049999999999999996, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.85, 0.19999999999999998]}], "drawings": [], "ref": "U1", "bbox": {"pos": [141.855546, 40.855546], "size": [10.288908, 10.288908]}}, {"layer": "F", "center": [166.2, 38.4], "pads": [{"layers": ["F"], "angle": -0.0, "pos": [166.2, 38.4], "shape": "circle", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.0, 1.0]}], "drawings": [], "ref": "TP9", "bbox": {"pos": [165.17499899999999, 37.374998999999995], "size": [2.050002, 2.050002]}}, {"layer": "F", "center": [166.2, 40.4], "pads": [{"layers": ["F"], "angle": -0.0, "pos": [166.2, 40.4], "shape": "circle", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.0, 1.0]}], "drawings": [], "ref": "TP8", "bbox": {"pos": [165.17499899999999, 39.374998999999995], "size": [2.050002, 2.050002]}}, {"layer": "F", "center": [166.2, 42.4], "pads": [{"layers": ["F"], "angle": -0.0, "pos": [166.2, 42.4], "shape": "circle", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.0, 1.0]}], "drawings": [], "ref": "TP7", "bbox": {"pos": [165.17499899999999, 41.374998999999995], "size": [2.050002, 2.050002]}}, {"layer": "F", "center": [166.2, 44.4], "pads": [{"layers": ["F"], "angle": -0.0, "pos": [166.2, 44.4], "shape": "circle", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.0, 1.0]}], "drawings": [], "ref": "TP6", "bbox": {"pos": [165.17499899999999, 43.374998999999995], "size": [2.050002, 2.050002]}}, {"layer": "F", "center": [166.2, 46.4], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [166.2, 46.4], "shape": "circle", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.0, 1.0]}], "drawings": [], "ref": "TP5", "bbox": {"pos": [165.17499899999999, 45.374998999999995], "size": [2.050002, 2.050002]}}, {"layer": "F", "center": [166.2, 54.4], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [166.2, 54.4], "shape": "circle", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.0, 1.0]}], "drawings": [], "ref": "TP4", "bbox": {"pos": [165.17499899999999, 53.374998999999995], "size": [2.050002, 2.050002]}}, {"layer": "F", "center": [166.2, 52.4], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [166.2, 52.4], "shape": "circle", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.0, 1.0]}], "drawings": [], "ref": "TP3", "bbox": {"pos": [165.17499899999999, 51.374998999999995], "size": [2.050002, 2.050002]}}, {"layer": "F", "center": [166.2, 50.4], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [166.2, 50.4], "shape": "circle", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.0, 1.0]}], "drawings": [], "ref": "TP2", "bbox": {"pos": [165.17499899999999, 49.374998999999995], "size": [2.050002, 2.050002]}}, {"layer": "F", "center": [166.2, 48.4], "pads": [{"layers": ["F"], "angle": -270.0, "pos": [166.2, 48.4], "shape": "circle", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [1.0, 1.0]}], "drawings": [], "ref": "TP1", "bbox": {"pos": [165.17499899999999, 47.374998999999995], "size": [2.050002, 2.050002]}}, {"layer": "F", "center": [156.4, 54.099999999999994], "pads": [{"layers": ["F"], "angle": -180.0, "pos": [155.61249999999998, 54.099999999999994], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.95]}, {"layers": ["F"], "angle": -180.0, "pos": [157.1875, 54.099999999999994], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.875, 0.95]}], "drawings": [], "ref": "R2", "bbox": {"pos": [154.89499899999998, 53.344998999999994], "size": [3.010002, 1.5100019999999998]}}, {"layer": "F", "center": [156.4, 52.599999999999994], "pads": [{"layers": ["F"], "angle": -0.0, "pos": [157.1875, 52.599999999999994], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.95]}, {"layers": ["F"], "angle": -0.0, "pos": [155.61249999999998, 52.599999999999994], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.875, 0.95]}], "drawings": [], "ref": "R1", "bbox": {"pos": [154.89499899999998, 51.844998999999994], "size": [3.010002, 1.5100019999999998]}}, {"layer": "F", "center": [165.6, 31.0], "pads": [{"layers": ["F", "B"], "angle": -270.0, "pos": [127.5, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [127.5, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [130.04, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [130.04, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [132.57999999999998, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [132.57999999999998, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [135.12, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [135.12, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [137.66, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [137.66, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [140.2, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [140.2, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [142.73999999999998, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [142.73999999999998, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [145.28, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [145.28, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [147.82, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [147.82, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [150.35999999999999, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [150.35999999999999, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [152.9, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [152.9, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [155.44, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [155.44, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [157.98, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [157.98, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [160.51999999999998, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [160.51999999999998, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [163.06, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [163.06, 31.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [165.6, 33.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -270.0, "pos": [165.6, 31.0], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J5", "bbox": {"pos": [125.674999, 29.174999], "size": [41.750001999999995, 6.200002]}}, {"layer": "F", "center": [127.5, 39.0], "pads": [{"layers": ["F", "B"], "angle": -0.0, "pos": [127.5, 44.08], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [127.5, 41.54], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -0.0, "pos": [127.5, 39.0], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J4", "bbox": {"pos": [125.674999, 37.174999], "size": [3.6500019999999997, 8.700002]}}, {"layer": "F", "center": [127.5, 49.0], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [132.57999999999998, 49.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [130.04, 49.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [127.5, 49.0], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J3", "bbox": {"pos": [125.674999, 47.174999], "size": [8.700002, 3.6500019999999997]}}, {"layer": "F", "center": [127.5, 53.0], "pads": [{"layers": ["F", "B"], "angle": -90.0, "pos": [132.57999999999998, 53.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [130.04, 53.0], "drillsize": [1.0, 1.0], "shape": "oval", "offset": [0.0, 0.0], "drillshape": "circle", "type": "th", "size": [1.7, 1.7]}, {"layers": ["F", "B"], "angle": -90.0, "pos": [127.5, 53.0], "drillsize": [1.0, 1.0], "shape": "rect", "offset": [0.0, 0.0], "drillshape": "circle", "pin1": 1, "type": "th", "size": [1.7, 1.7]}], "drawings": [], "ref": "J2", "bbox": {"pos": [125.674999, 51.174999], "size": [8.700002, 3.6500019999999997]}}, {"layer": "F", "center": [153.29999999999998, 58.0], "pads": [{"layers": ["F"], "angle": -0.0, "pos": [162.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [161.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [160.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [159.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [158.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [157.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [156.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [155.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [154.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [153.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [152.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [151.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [150.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [149.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [148.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [147.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [146.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [145.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [144.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [143.79999999999998, 57.089999999999996], "shape": "rect", "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.39999999999999997, 1.0]}, {"layers": ["F"], "angle": -0.0, "pos": [165.6, 59.79], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [2.0, 1.3]}, {"layers": ["F"], "angle": -0.0, "pos": [141.0, 59.79], "shape": "rect", "offset": [0.0, 0.0], "type": "smd", "size": [2.0, 1.3]}], "drawings": [], "ref": "J1", "bbox": {"pos": [139.474999, 56.064999], "size": [27.650001999999997, 6.650002]}}, {"layer": "F", "center": [142.6, 41.199999999999996], "pads": [{"layers": ["F"], "angle": -315.0, "pos": [143.156847, 41.756847], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.95]}, {"layers": ["F"], "angle": -315.0, "pos": [142.043153, 40.643153], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.875, 0.95]}], "drawings": [], "ref": "C6", "bbox": {"pos": [141.012293, 39.612293], "size": [3.175414, 3.175414]}}, {"layer": "F", "center": [143.6, 40.199999999999996], "pads": [{"layers": ["F"], "angle": -315.0, "pos": [144.156847, 40.756847], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.95]}, {"layers": ["F"], "angle": -315.0, "pos": [143.043153, 39.643153], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.875, 0.95]}], "drawings": [], "ref": "C5", "bbox": {"pos": [142.012293, 38.612293], "size": [3.175414, 3.175414]}}, {"layer": "F", "center": [140.743153, 48.256847], "pads": [{"layers": ["F"], "angle": -45.0, "pos": [141.29999999999998, 47.699999999999996], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.95]}, {"layers": ["F"], "angle": -45.0, "pos": [140.186306, 48.813694], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.875, 0.95]}], "drawings": [], "ref": "C4", "bbox": {"pos": [139.15544599999998, 46.66914], "size": [3.175414, 3.175414]}}, {"layer": "F", "center": [141.743153, 49.256847], "pads": [{"layers": ["F"], "angle": -45.0, "pos": [142.29999999999998, 48.699999999999996], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.95]}, {"layers": ["F"], "angle": -45.0, "pos": [141.186306, 49.813694], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.875, 0.95]}], "drawings": [], "ref": "C3", "bbox": {"pos": [140.15544599999998, 47.66914], "size": [3.175414, 3.175414]}}, {"layer": "F", "center": [144.5, 51.699999999999996], "pads": [{"layers": ["F"], "angle": -45.0, "pos": [145.056847, 51.143153], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.95]}, {"layers": ["F"], "angle": -45.0, "pos": [143.943153, 52.256847], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.875, 0.95]}], "drawings": [], "ref": "C2", "bbox": {"pos": [142.912293, 50.112293], "size": [3.175414, 3.175414]}}, {"layer": "F", "center": [145.5, 52.699999999999996], "pads": [{"layers": ["F"], "angle": -45.0, "pos": [146.056847, 52.143153], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "type": "smd", "size": [0.875, 0.95]}, {"layers": ["F"], "angle": -45.0, "pos": [144.943153, 53.256847], "shape": "roundrect", "radius": 0.21875, "offset": [0.0, 0.0], "pin1": 1, "type": "smd", "size": [0.875, 0.95]}], "drawings": [], "ref": "C1", "bbox": {"pos": [143.912293, 51.112293], "size": [3.175414, 3.175414]}}], "fabrication": {"B": [], "F": [{"width": 1.0, "val": 1, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "ICN6211", "thickness": 0.15, "pos": [150.054701, 49.054700999999994], "height": 1.0}, {"width": 1.0, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "U1", "thickness": 0.15, "pos": [147.0, 46.0], "height": 1.0}, {"start": [143.464466, 46.707107], "end": [143.464466, 45.292893], "type": "segment", "width": 0.09999999999999999}, {"start": [147.0, 50.242641], "end": [143.464466, 46.707107], "type": "segment", "width": 0.09999999999999999}, {"start": [151.242641, 46.0], "end": [147.0, 50.242641], "type": "segment", "width": 0.09999999999999999}, {"start": [147.0, 41.757359], "end": [151.242641, 46.0], "type": "segment", "width": 0.09999999999999999}, {"start": [143.464466, 45.292893], "end": [147.0, 41.757359], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "TP_DSI_D3-", "thickness": 0.15, "pos": [166.2, 39.949999999999996], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "TP9", "thickness": 0.15, "pos": [166.2, 36.949999999999996], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "TP_DSI_D3+", "thickness": 0.15, "pos": [166.2, 41.949999999999996], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "TP8", "thickness": 0.15, "pos": [166.2, 38.949999999999996], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "TP_DSI_D2-", "thickness": 0.15, "pos": [166.2, 43.949999999999996], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "TP7", "thickness": 0.15, "pos": [166.2, 40.949999999999996], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "TP_DSI_D2+", "thickness": 0.15, "pos": [166.2, 45.949999999999996], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "TP6", "thickness": 0.15, "pos": [166.2, 42.949999999999996], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "TP_STM_VDD", "thickness": 0.15, "pos": [164.65, 46.4], "height": 1.0}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "TP5", "thickness": 0.15, "pos": [167.65, 46.4], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "TP_STM_RST", "thickness": 0.15, "pos": [164.65, 54.4], "height": 1.0}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "TP4", "thickness": 0.15, "pos": [167.65, 54.4], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "TP_STM_BL", "thickness": 0.15, "pos": [164.65, 52.4], "height": 1.0}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "TP3", "thickness": 0.15, "pos": [167.65, 52.4], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "TP_STM_TE", "thickness": 0.15, "pos": [164.65, 50.4], "height": 1.0}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "TP2", "thickness": 0.15, "pos": [167.65, 50.4], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "TP_STM_INT", "thickness": 0.15, "pos": [164.65, 48.4], "height": 1.0}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "TP1", "thickness": 0.15, "pos": [167.65, 48.4], "height": 1.0}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "4.7K", "thickness": 0.15, "pos": [156.4, 52.669999999999995], "height": 1.0}, {"width": 0.39999999999999997, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R2", "thickness": 0.06, "pos": [156.4, 54.099999999999994], "height": 0.39999999999999997}, {"start": [155.6, 53.699999999999996], "end": [157.2, 53.699999999999996], "type": "segment", "width": 0.09999999999999999}, {"start": [155.6, 54.5], "end": [155.6, 53.699999999999996], "type": "segment", "width": 0.09999999999999999}, {"start": [157.2, 54.5], "end": [155.6, 54.5], "type": "segment", "width": 0.09999999999999999}, {"start": [157.2, 53.699999999999996], "end": [157.2, 54.5], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "4.7K", "thickness": 0.15, "pos": [156.4, 54.029999999999994], "height": 1.0}, {"width": 0.39999999999999997, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "R1", "thickness": 0.06, "pos": [156.4, 52.599999999999994], "height": 0.39999999999999997}, {"start": [157.2, 53.0], "end": [155.6, 53.0], "type": "segment", "width": 0.09999999999999999}, {"start": [157.2, 52.199999999999996], "end": [157.2, 53.0], "type": "segment", "width": 0.09999999999999999}, {"start": [155.6, 52.199999999999996], "end": [157.2, 52.199999999999996], "type": "segment", "width": 0.09999999999999999}, {"start": [155.6, 53.0], "end": [155.6, 52.199999999999996], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Conn_GPIO", "thickness": 0.15, "pos": [125.16999999999999, 32.269999999999996], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J5", "thickness": 0.15, "pos": [146.54999999999998, 32.269999999999996], "height": 1.0}, {"start": [165.6, 29.73], "end": [166.87, 31.0], "type": "segment", "width": 0.09999999999999999}, {"start": [126.22999999999999, 29.73], "end": [165.6, 29.73], "type": "segment", "width": 0.09999999999999999}, {"start": [126.22999999999999, 34.809999999999995], "end": [126.22999999999999, 29.73], "type": "segment", "width": 0.09999999999999999}, {"start": [166.87, 34.809999999999995], "end": [126.22999999999999, 34.809999999999995], "type": "segment", "width": 0.09999999999999999}, {"start": [166.87, 31.0], "end": [166.87, 34.809999999999995], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "Conn_PWR", "thickness": 0.15, "pos": [127.5, 46.41], "height": 1.0}, {"width": 1.0, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "J4", "thickness": 0.15, "pos": [127.5, 41.54], "height": 1.0}, {"start": [126.22999999999999, 38.364999999999995], "end": [126.865, 37.73], "type": "segment", "width": 0.09999999999999999}, {"start": [126.22999999999999, 45.35], "end": [126.22999999999999, 38.364999999999995], "type": "segment", "width": 0.09999999999999999}, {"start": [128.76999999999998, 45.35], "end": [126.22999999999999, 45.35], "type": "segment", "width": 0.09999999999999999}, {"start": [128.76999999999998, 37.73], "end": [128.76999999999998, 45.35], "type": "segment", "width": 0.09999999999999999}, {"start": [126.865, 37.73], "end": [128.76999999999998, 37.73], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Conn_VDD2", "thickness": 0.15, "pos": [134.91, 49.0], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J3", "thickness": 0.15, "pos": [130.04, 49.0], "height": 1.0}, {"start": [126.865, 50.269999999999996], "end": [126.22999999999999, 49.635], "type": "segment", "width": 0.09999999999999999}, {"start": [133.85, 50.269999999999996], "end": [126.865, 50.269999999999996], "type": "segment", "width": 0.09999999999999999}, {"start": [133.85, 47.73], "end": [133.85, 50.269999999999996], "type": "segment", "width": 0.09999999999999999}, {"start": [126.22999999999999, 47.73], "end": [133.85, 47.73], "type": "segment", "width": 0.09999999999999999}, {"start": [126.22999999999999, 49.635], "end": [126.22999999999999, 47.73], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 90.0, "attr": [], "horiz_justify": 0, "text": "Conn_VDD1", "thickness": 0.15, "pos": [134.91, 53.0], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J2", "thickness": 0.15, "pos": [130.04, 53.0], "height": 1.0}, {"start": [126.865, 54.269999999999996], "end": [126.22999999999999, 53.635], "type": "segment", "width": 0.09999999999999999}, {"start": [133.85, 54.269999999999996], "end": [126.865, 54.269999999999996], "type": "segment", "width": 0.09999999999999999}, {"start": [133.85, 51.73], "end": [133.85, 54.269999999999996], "type": "segment", "width": 0.09999999999999999}, {"start": [126.22999999999999, 51.73], "end": [133.85, 51.73], "type": "segment", "width": 0.09999999999999999}, {"start": [126.22999999999999, 53.635], "end": [126.22999999999999, 51.73], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "Conn_STM32MP1", "thickness": 0.15, "pos": [153.29999999999998, 63.39], "height": 1.0}, {"width": 1.0, "angle": 0.0, "attr": [], "horiz_justify": 0, "text": "J1", "thickness": 0.15, "pos": [153.29999999999998, 59.39], "height": 1.0}, {"start": [165.1, 62.19], "end": [165.1, 58.19], "type": "segment", "width": 0.09999999999999999}, {"start": [141.5, 62.19], "end": [165.1, 62.19], "type": "segment", "width": 0.09999999999999999}, {"start": [141.5, 58.19], "end": [141.5, 62.19], "type": "segment", "width": 0.09999999999999999}, {"start": [165.1, 58.19], "end": [141.5, 58.19], "type": "segment", "width": 0.09999999999999999}, {"start": [143.79999999999998, 58.04], "end": [144.29999999999998, 57.29], "type": "segment", "width": 0.09999999999999999}, {"start": [143.29999999999998, 57.29], "end": [143.79999999999998, 58.04], "type": "segment", "width": 0.09999999999999999}, {"start": [165.9, 56.94], "end": [165.35, 56.94], "type": "segment", "width": 0.09999999999999999}, {"start": [165.9, 60.89], "end": [165.9, 56.94], "type": "segment", "width": 0.09999999999999999}, {"start": [140.7, 60.89], "end": [165.9, 60.89], "type": "segment", "width": 0.09999999999999999}, {"start": [140.7, 56.94], "end": [140.7, 60.89], "type": "segment", "width": 0.09999999999999999}, {"start": [141.25, 56.94], "end": [140.7, 56.94], "type": "segment", "width": 0.09999999999999999}, {"start": [141.25, 57.29], "end": [141.25, 56.94], "type": "segment", "width": 0.09999999999999999}, {"start": [165.35, 57.29], "end": [141.25, 57.29], "type": "segment", "width": 0.09999999999999999}, {"start": [165.35, 56.94], "end": [165.35, 57.29], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": -45.0, "attr": [], "horiz_justify": 0, "text": "1uF", "thickness": 0.15, "pos": [141.58883699999998, 42.211163], "height": 1.0}, {"width": 0.39999999999999997, "angle": -45.0, "attr": [], "horiz_justify": 0, "text": "C6", "thickness": 0.06, "pos": [142.6, 41.199999999999996], "height": 0.39999999999999997}, {"start": [142.88284299999998, 42.048528], "end": [141.751472, 40.917156999999996], "type": "segment", "width": 0.09999999999999999}, {"start": [143.44852799999998, 41.482842999999995], "end": [142.88284299999998, 42.048528], "type": "segment", "width": 0.09999999999999999}, {"start": [142.31715699999998, 40.351472], "end": [143.44852799999998, 41.482842999999995], "type": "segment", "width": 0.09999999999999999}, {"start": [141.751472, 40.917156999999996], "end": [142.31715699999998, 40.351472], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": -45.0, "attr": [], "horiz_justify": 0, "text": "10nF", "thickness": 0.15, "pos": [142.58883699999998, 41.211163], "height": 1.0}, {"width": 0.39999999999999997, "angle": -45.0, "attr": [], "horiz_justify": 0, "text": "C5", "thickness": 0.06, "pos": [143.6, 40.199999999999996], "height": 0.39999999999999997}, {"start": [143.88284299999998, 41.048528], "end": [142.751472, 39.917156999999996], "type": "segment", "width": 0.09999999999999999}, {"start": [144.44852799999998, 40.482842999999995], "end": [143.88284299999998, 41.048528], "type": "segment", "width": 0.09999999999999999}, {"start": [143.31715699999998, 39.351472], "end": [144.44852799999998, 40.482842999999995], "type": "segment", "width": 0.09999999999999999}, {"start": [142.751472, 39.917156999999996], "end": [143.31715699999998, 39.351472], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "1uF", "thickness": 0.15, "pos": [141.754316, 49.26801], "height": 1.0}, {"width": 0.39999999999999997, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "C4", "thickness": 0.06, "pos": [140.743153, 48.256847], "height": 0.39999999999999997}, {"start": [141.591681, 47.974004], "end": [140.46031, 49.105374999999995], "type": "segment", "width": 0.09999999999999999}, {"start": [141.025996, 47.408319], "end": [141.591681, 47.974004], "type": "segment", "width": 0.09999999999999999}, {"start": [139.894625, 48.53969], "end": [141.025996, 47.408319], "type": "segment", "width": 0.09999999999999999}, {"start": [140.46031, 49.105374999999995], "end": [139.894625, 48.53969], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "10nF", "thickness": 0.15, "pos": [142.754316, 50.26801], "height": 1.0}, {"width": 0.39999999999999997, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "C3", "thickness": 0.06, "pos": [141.743153, 49.256847], "height": 0.39999999999999997}, {"start": [142.591681, 48.974004], "end": [141.46031, 50.105374999999995], "type": "segment", "width": 0.09999999999999999}, {"start": [142.025996, 48.408319], "end": [142.591681, 48.974004], "type": "segment", "width": 0.09999999999999999}, {"start": [140.894625, 49.53969], "end": [142.025996, 48.408319], "type": "segment", "width": 0.09999999999999999}, {"start": [141.46031, 50.105374999999995], "end": [140.894625, 49.53969], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "1uF", "thickness": 0.15, "pos": [145.51116299999998, 52.711163], "height": 1.0}, {"width": 0.39999999999999997, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "C2", "thickness": 0.06, "pos": [144.5, 51.699999999999996], "height": 0.39999999999999997}, {"start": [145.348528, 51.417156999999996], "end": [144.217157, 52.548528], "type": "segment", "width": 0.09999999999999999}, {"start": [144.78284299999999, 50.851472], "end": [145.348528, 51.417156999999996], "type": "segment", "width": 0.09999999999999999}, {"start": [143.65147199999998, 51.982842999999995], "end": [144.78284299999999, 50.851472], "type": "segment", "width": 0.09999999999999999}, {"start": [144.217157, 52.548528], "end": [143.65147199999998, 51.982842999999995], "type": "segment", "width": 0.09999999999999999}, {"width": 1.0, "val": 1, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "10nF", "thickness": 0.15, "pos": [146.51116299999998, 53.711163], "height": 1.0}, {"width": 0.39999999999999997, "angle": 45.0, "attr": [], "horiz_justify": 0, "text": "C1", "thickness": 0.06, "pos": [145.5, 52.699999999999996], "height": 0.39999999999999997}, {"start": [146.348528, 52.417156999999996], "end": [145.217157, 53.548528], "type": "segment", "width": 0.09999999999999999}, {"start": [145.78284299999999, 51.851472], "end": [146.348528, 52.417156999999996], "type": "segment", "width": 0.09999999999999999}, {"start": [144.65147199999998, 52.982842999999995], "end": [145.78284299999999, 51.851472], "type": "segment", "width": 0.09999999999999999}, {"start": [145.217157, 53.548528], "end": [144.65147199999998, 52.982842999999995], "type": "segment", "width": 0.09999999999999999}]}, "metadata": {"date": "2020-02-23 19:03:41", "company": "", "revision": "", "title": "ICN6211_breakout"}}
///////////////////////////////////////////////
///////////////////////////////////////////////
/* Utility functions */
var storagePrefix = 'KiCad_HTML_BOM__' + pcbdata.metadata.title + '__' +
pcbdata.metadata.revision + '__';
var storage;
function initStorage(key) {
try {
window.localStorage.getItem("blank");
storage = window.localStorage;
} catch (e) {
// localStorage not available
}
if (!storage) {
try {
window.sessionStorage.getItem("blank");
storage = window.sessionStorage;
} catch (e) {
// sessionStorage also not available
}
}
}
function readStorage(key) {
if (storage) {
return storage.getItem(storagePrefix + '#' + key);
} else {
return null;
}
}
function writeStorage(key, value) {
if (storage) {
storage.setItem(storagePrefix + '#' + key, value);
}
}
function fancyDblClickHandler(el, onsingle, ondouble) {
return function() {
if (el.getAttribute("data-dblclick") == null) {
el.setAttribute("data-dblclick", 1);
setTimeout(function() {
if (el.getAttribute("data-dblclick") == 1) {
onsingle();
}
el.removeAttribute("data-dblclick");
}, 200);
} else {
el.removeAttribute("data-dblclick");
ondouble();
}
}
}
function smoothScrollToRow(rowid) {
document.getElementById(rowid).scrollIntoView({
behavior: "smooth",
block: "center",
inline: "nearest"
});
}
function focusInputField(input) {
input.scrollIntoView(false);
input.focus();
input.select();
}
function copyToClipboard() {
var text = '';
for (var node of bomhead.childNodes[0].childNodes) {
if (node.firstChild) {
text = text + node.firstChild.nodeValue;
}
if (node != bomhead.childNodes[0].lastChild) {
text += '\t';
}
}
text += '\n';
for (var row of bombody.childNodes) {
for (var cell of row.childNodes) {
for (var node of cell.childNodes) {
if (node.nodeName == "INPUT") {
if (node.checked) {
text = text + '✓';
}
} else if (node.nodeName == "MARK") {
text = text + node.firstChild.nodeValue;
} else {
text = text + node.nodeValue;
}
}
if (cell != row.lastChild) {
text += '\t';
}
}
text += '\n';
}
var textArea = document.createElement("textarea");
textArea.classList.add('clipboard-temp');
textArea.value = text;
document.body.appendChild(textArea);
textArea.focus();
textArea.select();
try {
if (document.execCommand('copy')) {
console.log('Bom copied to clipboard.');
}
} catch (err) {
console.log('Can not copy to clipboard.');
}
document.body.removeChild(textArea);
}
function removeGutterNode(node) {
for (var i = 0; i < node.childNodes.length; i++) {
if (node.childNodes[i].classList &&
node.childNodes[i].classList.contains("gutter")) {
node.removeChild(node.childNodes[i]);
break;
}
}
}
function cleanGutters() {
removeGutterNode(document.getElementById("bot"));
removeGutterNode(document.getElementById("canvasdiv"));
}
var units = {
prefixes: {
giga: ["G", "g", "giga", "Giga", "GIGA"],
mega: ["M", "mega", "Mega", "MEGA"],
kilo: ["K", "k", "kilo", "Kilo", "KILO"],
milli: ["m", "milli", "Milli", "MILLI"],
micro: ["U", "u", "micro", "Micro", "MICRO", "μ", "µ"], // different utf8 μ
nano: ["N", "n", "nano", "Nano", "NANO"],
pico: ["P", "p", "pico", "Pico", "PICO"],
},
unitsShort: ["R", "r", "Ω", "F", "f", "H", "h"],
unitsLong: [
"OHM", "Ohm", "ohm", "ohms",
"FARAD", "Farad", "farad",
"HENRY", "Henry", "henry"
],
getMultiplier: function(s) {
if (this.prefixes.giga.includes(s)) return 1e9;
if (this.prefixes.mega.includes(s)) return 1e6;
if (this.prefixes.kilo.includes(s)) return 1e3;
if (this.prefixes.milli.includes(s)) return 1e-3;
if (this.prefixes.micro.includes(s)) return 1e-6;
if (this.prefixes.nano.includes(s)) return 1e-9;
if (this.prefixes.pico.includes(s)) return 1e-12;
return 1;
},
valueRegex: null,
}
function initUtils() {
var allPrefixes = units.prefixes.giga
.concat(units.prefixes.mega)
.concat(units.prefixes.kilo)
.concat(units.prefixes.milli)
.concat(units.prefixes.micro)
.concat(units.prefixes.nano)
.concat(units.prefixes.pico);
var allUnits = units.unitsShort.concat(units.unitsLong);
units.valueRegex = new RegExp("^([0-9\.]+)" +
"\\s*(" + allPrefixes.join("|") + ")?" +
"(" + allUnits.join("|") + ")?" +
"(\\b.*)?$", "");
units.valueAltRegex = new RegExp("^([0-9]*)" +
"(" + units.unitsShort.join("|") + ")?" +
"([GgMmKkUuNnPp])?" +
"([0-9]*)" +
"(\\b.*)?$", "");
for (var bom_type of ["both", "F", "B"]) {
for (var row of pcbdata.bom[bom_type]) {
row.push(parseValue(row[1], row[3][0][0]));
}
}
}
function parseValue(val, ref) {
var inferUnit = (unit, ref) => {
if (unit) {
unit = unit.toLowerCase();
if (unit == 'Ω' || unit == "ohm" || unit == "ohms") {
unit = 'r';
}
unit = unit[0];
} else {
ref = /^([a-z]+)\d+$/i.exec(ref);
if (ref) {
ref = ref[1].toLowerCase();
if (ref == "c") unit = 'f';
else if (ref == "l") unit = 'h';
else if (ref == "r" || ref == "rv") unit = 'r';
else unit = null;
}
}
return unit;
};
val = val.replace(/,/g, "");
var match = units.valueRegex.exec(val);
var unit;
if (match) {
val = parseFloat(match[1]);
if (match[2]) {
val = val * units.getMultiplier(match[2]);
}
unit = inferUnit(match[3], ref);
if (!unit) return null;
else return {
val: val,
unit: unit,
extra: match[4],
}
}
match = units.valueAltRegex.exec(val);
if (match && (match[1] || match[4])) {
val = parseFloat(match[1] + "." + match[4]);
if (match[3]) {
val = val * units.getMultiplier(match[3]);
}
unit = inferUnit(match[2], ref);
if (!unit) return null;
else return {
val: val,
unit: unit,
extra: match[5],
}
}
return null;
}
function valueCompare(a, b, stra, strb) {
if (a === null && b === null) {
// Failed to parse both values, compare them as strings.
if (stra != strb) return stra > strb ? 1 : -1;
else return 0;
} else if (a === null) {
return 1;
} else if (b === null) {
return -1;
} else {
if (a.unit != b.unit) return a.unit > b.unit ? 1 : -1;
else if (a.val != b.val) return a.val > b.val ? 1 : -1;
else if (a.extra != b.extra) return a.extra > b.extra ? 1 : -1;
else return 0;
}
}
///////////////////////////////////////////////
///////////////////////////////////////////////
/* PCB rendering code */
var redrawOnDrag = true;
var boardRotation = 0;
var renderPads = true;
var renderReferences = true;
var renderValues = true;
var renderDnpOutline = false;
function deg2rad(deg) {
return deg * Math.PI / 180;
}
function calcFontPoint(linepoint, text, offsetx, offsety, tilt) {
var point = [
linepoint[0] * text.width + offsetx,
linepoint[1] * text.height + offsety
];
// Adding half a line height here is technically a bug
// but pcbnew currently does the same, text is slightly shifted.
point[0] -= (point[1] + text.height * 0.5) * tilt;
return point;
}
function drawtext(ctx, text, color, flip) {
if ("ref" in text && !renderReferences) return;
if ("val" in text && !renderValues) return;
ctx.save();
ctx.fillStyle = color;
ctx.strokeStyle = color;
ctx.lineCap = "round";
ctx.lineWidth = text.thickness;
if (text.svgpath) {
ctx.stroke(new Path2D(text.svgpath));
ctx.restore();
return;
}
ctx.translate(...text.pos);
var angle = -text.angle;
if (text.attr.includes("mirrored")) {
ctx.scale(-1, 1);
angle = -angle;
}
var tilt = 0;
if (text.attr.includes("italic")) {
tilt = 0.125;
}