-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdarkdraw2_logo.ddw
1840 lines (1840 loc) · 187 KB
/
darkdraw2_logo.ddw
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
{"id": "0", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "frame": "", "duration_ms": 50}
{"id": "1", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "frame": "", "duration_ms": 50}
{"id": "2", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "3", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "4", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "5", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "6", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "7", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "8", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "9", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "10", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 70}
{"id": "11", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 70}
{"id": "12", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 70}
{"id": "13", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 70}
{"id": "14", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "15", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "16", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "17", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "18", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "19", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "20", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "21", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "22", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "23", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "24", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "25", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "26", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "27", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "28", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "29", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "30", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "31", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "32", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "33", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "34", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "35", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "36", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "37", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "38", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "39", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "40", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "40-41", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "41", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "42", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "43", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "44", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "45", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "46", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "47", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "48", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "49", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "50", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "51", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "52", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "53", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "54", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "55", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "56", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "57", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "58", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "59", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "60", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "61", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "62", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "63", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "64", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "65", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "66", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "67", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "68", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 50}
{"id": "69", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "70", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "71", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "72", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "73", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "74", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "75", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "76", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "77", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "78", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "79", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "80", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "81", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "82", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "83", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "84", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "85", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "86", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "87", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "88", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "89", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "90", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "91", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "92", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "93", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "94", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "95", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "96", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "97", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "98", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "99", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "100", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "101", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "102", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "103", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "104", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "105", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "106", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "107", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "108", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "109", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "110", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "111", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "112", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "113", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "114", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "115", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "116", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "117", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "118", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "119", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "120", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "121", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "122", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "123", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "124", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "125", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "126", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "127", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "128", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "129", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "130", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "131", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "132", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"id": "133", "type": "frame", "text": "", "color": "", "tags": [], "group": "", "duration_ms": 10}
{"x": 0, "y": 1, "text": "\u012c", "color": "underline", "tags": [], "group": "", "frame": ""}
{"x": 0, "y": 21, "text": "\u012c", "color": "underline", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 1, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 2, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 2, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 5, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 6, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 7, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 8, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 9, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 10, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 11, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 12, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 13, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 14, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 15, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 16, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 17, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 18, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 19, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 20, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 21, "text": "\u012c", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 4, "text": "\u0128", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 3, "text": "\u0128", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 1, "y": 1, "text": "\u00dd", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 2, "y": 1, "text": "\u00b4", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 78, "y": 1, "text": "\u00dd", "color": "245 underline", "tags": [], "group": "", "frame": ""}
{"x": 79, "y": 0, "text": "\u00cd", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 76, "y": 1, "text": "\u00a8", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 77, "y": 1, "text": "`", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 3, "y": 1, "text": "\u00a8", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 5, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 9, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 13, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 17, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 19, "y": 0, "text": "\u01c2", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 21, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 25, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 29, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 33, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 74, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 0, "y": 0, "text": "\u020a", "color": "underline", "tags": [], "group": "", "frame": ""}
{"x": 1, "y": 0, "text": "\u012a", "color": "underline", "tags": [], "group": "", "frame": ""}
{"x": 3, "y": 0, "text": "\u0166", "color": "underline", "tags": [], "group": "", "frame": ""}
{"x": 77, "y": 0, "text": "\u018e", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 76, "y": 0, "text": "\u0166", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 2, "y": 0, "text": "E", "color": "underline", "tags": [], "group": "", "frame": ""}
{"x": 78, "y": 0, "text": "\u012a", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 31, "y": 0, "text": "\u01c2", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 37, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 72, "y": 0, "text": "\u01c2", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 70, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 66, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 62, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 60, "y": 0, "text": "\u01c2", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 58, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 54, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 50, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 48, "y": 0, "text": "\u01c2", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 46, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 42, "y": 0, "text": "\u0166", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 7, "y": 0, "text": "\u01c2", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 39, "y": 0, "text": "\u0166", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 40, "y": 0, "text": "\u0166", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 10, "y": 0, "text": "\u25dc", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 12, "y": 0, "text": "\u25dd", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 14, "y": 0, "text": "\u25dc", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 16, "y": 0, "text": "\u25dd", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 22, "y": 0, "text": "\u25dc", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 24, "y": 0, "text": "\u25dd", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 26, "y": 0, "text": "\u25dc", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 28, "y": 0, "text": "\u25dd", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 34, "y": 0, "text": "\u25dc", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 36, "y": 0, "text": "\u25dd", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 43, "y": 0, "text": "\u25dc", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 45, "y": 0, "text": "\u25dd", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 51, "y": 0, "text": "\u25dc", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 53, "y": 0, "text": "\u25dd", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 55, "y": 0, "text": "\u25dc", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 57, "y": 0, "text": "\u25dd", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 63, "y": 0, "text": "\u25dc", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 65, "y": 0, "text": "\u25dd", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 67, "y": 0, "text": "\u25dc", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 69, "y": 0, "text": "\u25dd", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 1, "y": 6, "text": "\u01c2", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 1, "y": 5, "text": "\u01c0", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 1, "y": 2, "text": "\u01c2", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 1, "y": 4, "text": "\u00a7", "color": "", "tags": [], "group": "", "frame": ""}
{"x": 78, "y": 4, "text": "\u00a7", "color": "underline", "tags": [], "group": "", "frame": ""}
{"x": 1, "y": 3, "text": "\u01c0", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 1, "y": 4, "text": "\u00a7", "color": "139", "tags": [], "group": "", "frame": "1"}
{"x": 1, "y": 4, "text": "\u00a7", "color": "139 bold", "tags": [], "group": "", "frame": "2"}
{"x": 1, "y": 4, "text": "\u00a7", "color": "169", "tags": [], "group": "", "frame": "3"}
{"x": 1, "y": 4, "text": "\u00a7", "color": "169 bold", "tags": [], "group": "", "frame": "4"}
{"x": 1, "y": 4, "text": "\u00a7", "color": "199", "tags": [], "group": "", "frame": "5"}
{"x": 1, "y": 4, "text": "\u00a7", "color": "199 bold", "tags": [], "group": "", "frame": "6"}
{"x": 1, "y": 4, "text": "\u00a7", "color": "200", "tags": [], "group": "", "frame": "7"}
{"x": 1, "y": 4, "text": "\u00a7", "color": "200 bold", "tags": [], "group": "", "frame": "8"}
{"x": 1, "y": 4, "text": "\u00a7", "color": "201", "tags": [], "group": "", "frame": "9"}
{"x": 1, "y": 4, "text": "\u00a7", "color": "201 bold", "tags": [], "group": "", "frame": "10"}
{"x": 2, "y": 4, "text": "\u2733", "color": "201 bold", "tags": [], "group": "", "frame": "10"}
{"x": 2, "y": 4, "text": "\u2733", "color": "201", "tags": [], "group": "", "frame": "9"}
{"x": 2, "y": 4, "text": "\u263c", "color": "200 bold", "tags": [], "group": "", "frame": "8"}
{"x": 2, "y": 4, "text": "\u263c", "color": "200", "tags": [], "group": "", "frame": "7"}
{"x": 2, "y": 4, "text": "*", "color": "199 bold", "tags": [], "group": "", "frame": "6"}
{"x": 2, "y": 4, "text": "*", "color": "199", "tags": [], "group": "", "frame": "5"}
{"x": 2, "y": 4, "text": "\u00d7", "color": "169 bold", "tags": [], "group": "", "frame": "4"}
{"x": 2, "y": 4, "text": "\u00d7", "color": "169", "tags": [], "group": "", "frame": "3"}
{"x": 2, "y": 4, "text": "\u00b7", "color": "139 bold", "tags": [], "group": "", "frame": "2"}
{"x": 2, "y": 4, "text": "\u00b7", "color": "139", "tags": [], "group": "", "frame": "1"}
{"x": 77, "y": 4, "text": "\u00b7", "color": "109", "tags": [], "group": "", "frame": "1"}
{"x": 77, "y": 4, "text": "\u00b7", "color": "109 bold", "tags": [], "group": "", "frame": "2"}
{"x": 77, "y": 4, "text": "\u00d7", "color": "79", "tags": [], "group": "", "frame": "3"}
{"x": 77, "y": 4, "text": "\u00d7", "color": "79 bold", "tags": [], "group": "", "frame": "4"}
{"x": 77, "y": 4, "text": "*", "color": "49", "tags": [], "group": "", "frame": "5"}
{"x": 77, "y": 4, "text": "*", "color": "49 bold", "tags": [], "group": "", "frame": "6"}
{"x": 77, "y": 4, "text": "\u263c", "color": "50", "tags": [], "group": "", "frame": "7"}
{"x": 77, "y": 4, "text": "\u263c", "color": "50 bold", "tags": [], "group": "", "frame": "8"}
{"x": 76, "y": 4, "text": "\u2733", "color": "51", "tags": [], "group": "", "frame": "9"}
{"x": 76, "y": 4, "text": "\u2733", "color": "51 bold", "tags": [], "group": "", "frame": "10"}
{"x": 78, "y": 4, "text": "\u00a7", "color": "109", "tags": [], "group": "", "frame": "1"}
{"x": 78, "y": 4, "text": "\u00a7", "color": "109 bold", "tags": [], "group": "", "frame": "2"}
{"x": 78, "y": 4, "text": "\u00a7", "color": "79", "tags": [], "group": "", "frame": "3"}
{"x": 78, "y": 4, "text": "\u00a7", "color": "79 bold", "tags": [], "group": "", "frame": "4"}
{"x": 78, "y": 4, "text": "\u00a7", "color": "49", "tags": [], "group": "", "frame": "5"}
{"x": 78, "y": 4, "text": "\u00a7", "color": "49 bold", "tags": [], "group": "", "frame": "6"}
{"x": 78, "y": 4, "text": "\u00a7", "color": "50", "tags": [], "group": "", "frame": "7"}
{"x": 78, "y": 4, "text": "\u00a7", "color": "50 bold", "tags": [], "group": "", "frame": "8"}
{"x": 78, "y": 4, "text": "\u00a7", "color": "51", "tags": [], "group": "", "frame": "9"}
{"x": 78, "y": 4, "text": "\u00a7", "color": "51 bold", "tags": [], "group": "", "frame": "10"}
{"x": 3, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 2, "y": 4, "text": "\u2733", "color": "201 bold", "tags": [], "group": "", "frame": "11"}
{"x": 76, "y": 4, "text": "\u2733", "color": "51 bold", "tags": [], "group": "", "frame": "11"}
{"x": 39, "y": 4, "text": "\u2733", "color": "229 bold", "tags": [], "group": "", "frame": "11"}
{"id": "darkdraw", "type": "group", "x": 8, "y": 2, "text": "", "color": "", "tags": ["darkdraw-text"], "group": "", "frame": "12", "rows": [{"x": 29, "y": 0, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}, {"x": 31, "y": 0, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}, {"x": 30, "y": 0, "text": "\u00b8", "color": "249 bold", "tags": [], "group": "", "frame": ""}, {"x": 33, "y": 1, "text": "\u012a", "color": "249 bold", "tags": [], "group": "", "frame": ""}, {"x": 32, "y": 0, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}, {"x": 34, "y": 0, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}, {"x": 33, "y": 0, "text": "\u00b8", "color": "249 bold", "tags": [], "group": "", "frame": ""}, {"x": 29, "y": 3, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}, {"x": 31, "y": 3, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}, {"x": 32, "y": 3, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}, {"x": 34, "y": 3, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}, {"x": 30, "y": 3, "text": "\u013e", "color": "249 bold", "tags": [], "group": "", "frame": ""}, {"x": 33, "y": 3, "text": "\u013e", "color": "249 bold", "tags": [], "group": "", "frame": ""}, {"x": 37, "y": 4, "text": "\u012c", "color": "246", "tags": [], "group": "", "frame": ""}, {"x": 37, "y": 1, "text": "\u00cc", "color": "239", "tags": "[0]", "group": "", "frame": ""}, {"x": 38, "y": 1, "text": "\u00ec", "color": "239", "tags": [], "group": "", "frame": ""}, {"x": 39, "y": 1, "text": "\u0131", "color": "239", "tags": [], "group": "", "frame": ""}, {"x": 40, "y": 1, "text": ",", "color": "239", "tags": [], "group": "", "frame": ""}, {"x": 42, "y": 3, "text": "\u013a", "color": "243", "tags": [], "group": "", "frame": ""}, {"x": 41, "y": 3, "text": "\u00cc", "color": "243", "tags": [], "group": "", "frame": ""}, {"x": 42, "y": 4, "text": "\u0135", "color": "245", "tags": [], "group": "", "frame": ""}, {"x": 40, "y": 4, "text": "\u00b8", "color": "246", "tags": [], "group": "", "frame": ""}, {"x": 37, "y": 3, "text": "\u012a", "color": "244", "tags": [], "group": "", "frame": ""}, {"x": 38, "y": 4, "text": "\u013e", "color": "246", "tags": [], "group": "", "frame": ""}, {"x": 38, "y": 3, "text": "\u013a", "color": "244", "tags": [], "group": "", "frame": ""}, {"x": 40, "y": 3, "text": "`", "color": "244", "tags": [], "group": "", "frame": ""}, {"x": 41, "y": 4, "text": "\u013e", "color": "246", "tags": [], "group": "", "frame": ""}, {"x": 44, "y": 4, "text": "\u012c", "color": "245", "tags": [], "group": "", "frame": ""}, {"x": 44, "y": 3, "text": "\u012a", "color": "243", "tags": [], "group": "", "frame": ""}, {"x": 44, "y": 1, "text": "\u00cc", "color": "238", "tags": "[0]", "group": "", "frame": ""}, {"x": 45, "y": 1, "text": "\u00ec", "color": "238", "tags": [], "group": "", "frame": ""}, {"x": 46, "y": 1, "text": "\u0131", "color": "238", "tags": [], "group": "", "frame": ""}, {"x": 47, "y": 1, "text": ",", "color": "237", "tags": [], "group": "", "frame": ""}, {"x": 48, "y": 3, "text": "\u00cc", "color": "242", "tags": [], "group": "", "frame": ""}, {"x": 45, "y": 4, "text": "\u013e", "color": "245", "tags": [], "group": "", "frame": ""}, {"x": 45, "y": 3, "text": "\u013a", "color": "243", "tags": [], "group": "", "frame": ""}, {"x": 47, "y": 3, "text": "`", "color": "242", "tags": [], "group": "", "frame": ""}, {"x": 46, "y": 4, "text": "\u00ba", "color": "245", "tags": [], "group": "", "frame": ""}, {"x": 49, "y": 3, "text": "\u0135", "color": "242", "tags": [], "group": "", "frame": ""}, {"x": 49, "y": 4, "text": "\u00b4", "color": "244", "tags": [], "group": "", "frame": ""}, {"x": 48, "y": 4, "text": "\u00dd", "color": "244", "tags": [], "group": "", "frame": ""}, {"x": 47, "y": 4, "text": "\u013e", "color": "244", "tags": [], "group": "", "frame": ""}, {"x": 51, "y": 4, "text": "\u012c", "color": "244", "tags": [], "group": "", "frame": ""}, {"x": 51, "y": 3, "text": "\u012a", "color": "241", "tags": [], "group": "", "frame": ""}, {"x": 51, "y": 1, "text": "\u00cc", "color": "237", "tags": "[0]", "group": "", "frame": ""}, {"x": 52, "y": 1, "text": "\u00ec", "color": "237", "tags": [], "group": "", "frame": ""}, {"x": 53, "y": 1, "text": "\u0131", "color": "236", "tags": [], "group": "", "frame": ""}, {"x": 54, "y": 1, "text": ",", "color": "236", "tags": [], "group": "", "frame": ""}, {"x": 56, "y": 3, "text": "\u013a", "color": "240", "tags": [], "group": "", "frame": ""}, {"x": 55, "y": 3, "text": "\u00cc", "color": "241", "tags": [], "group": "", "frame": ""}, {"x": 55, "y": 4, "text": "\u012c", "color": "243", "tags": [], "group": "", "frame": ""}, {"x": 52, "y": 4, "text": "\u013e", "color": "243", "tags": [], "group": "", "frame": ""}, {"x": 52, "y": 3, "text": "\u013a", "color": "241", "tags": [], "group": "", "frame": ""}, {"x": 54, "y": 3, "text": "`", "color": "241", "tags": [], "group": "", "frame": ""}, {"x": 53, "y": 4, "text": "\u00ba", "color": "243", "tags": [], "group": "", "frame": ""}, {"x": 54, "y": 4, "text": "\u00aa", "color": "243", "tags": [], "group": "", "frame": ""}, {"x": 56, "y": 4, "text": "\u0135", "color": "243", "tags": [], "group": "", "frame": ""}, {"x": 58, "y": 4, "text": "\u012c", "color": "242", "tags": [], "group": "", "frame": ""}, {"x": 58, "y": 3, "text": "\u012a", "color": "240", "tags": [], "group": "", "frame": ""}, {"x": 58, "y": 1, "text": "\u00cc", "color": "236", "tags": "[0]", "group": "", "frame": ""}, {"x": 59, "y": 1, "text": "\u00ec", "color": "235", "tags": [], "group": "", "frame": ""}, {"x": 59, "y": 4, "text": "\u013e", "color": "242", "tags": [], "group": "", "frame": ""}, {"x": 62, "y": 4, "text": "\u012c", "color": "241", "tags": [], "group": "", "frame": ""}, {"x": 63, "y": 4, "text": "\u013e", "color": "241", "tags": [], "group": "", "frame": ""}, {"x": 63, "y": 3, "text": "\u013a", "color": "239", "tags": [], "group": "", "frame": ""}, {"x": 60, "y": 4, "text": "\u00da", "color": "242", "tags": [], "group": "", "frame": ""}, {"x": 61, "y": 4, "text": "\u00d9", "color": "242", "tags": [], "group": "", "frame": ""}, {"x": 63, "y": 1, "text": "\u00cd", "color": "235", "tags": [], "group": "", "frame": ""}, {"x": 62, "y": 1, "text": "\u00ed", "color": "235", "tags": [], "group": "", "frame": ""}, {"x": 59, "y": 3, "text": "\u013e", "color": "240", "tags": [], "group": "", "frame": ""}, {"x": 62, "y": 3, "text": "\u013e", "color": "239", "tags": [], "group": "", "frame": ""}, {"x": 51, "y": 5, "text": "\u010e", "color": "246", "tags": [], "group": "", "frame": ""}, {"x": 52, "y": 5, "text": "\u1e84", "color": "246", "tags": [], "group": "", "frame": ""}, {"x": 55, "y": 5, "text": "\u012c", "color": "245", "tags": [], "group": "", "frame": ""}, {"x": 56, "y": 5, "text": "\u1e41", "color": "245", "tags": [], "group": "", "frame": ""}, {"x": 58, "y": 5, "text": "\u1e40", "color": "245", "tags": [], "group": "", "frame": ""}, {"x": 59, "y": 5, "text": "\u0114", "color": "244", "tags": [], "group": "", "frame": ""}, {"x": 62, "y": 5, "text": "\u0158", "color": "244", "tags": [], "group": "", "frame": ""}, {"x": 38, "y": 5, "text": "\u010e", "color": "249", "tags": [], "group": "", "frame": ""}, {"x": 42, "y": 5, "text": "\u00b9", "color": "248", "tags": [], "group": "", "frame": ""}, {"x": 37, "y": 5, "text": "\u00aa", "color": "249", "tags": [], "group": "", "frame": ""}, {"x": 60, "y": 3, "text": ",", "color": "240", "tags": [], "group": "", "frame": ""}, {"x": 61, "y": 3, "text": "\\", "color": "239", "tags": [], "group": "", "frame": ""}, {"x": 63, "y": 5, "text": "\u2661", "color": "243", "tags": [], "group": "", "frame": ""}, {"x": 0, "y": 4, "text": "\u012c", "color": "253", "tags": [], "group": "", "frame": ""}, {"x": 0, "y": 1, "text": "\u00cc", "color": "247 bold", "tags": "[0]", "group": "", "frame": ""}, {"x": 1, "y": 1, "text": "\u00ec", "color": "247", "tags": [], "group": "", "frame": ""}, {"x": 2, "y": 1, "text": "\u0131", "color": "247", "tags": [], "group": "", "frame": ""}, {"x": 3, "y": 1, "text": ",", "color": "246", "tags": [], "group": "", "frame": ""}, {"x": 5, "y": 3, "text": "\u013a", "color": "250", "tags": [], "group": "", "frame": ""}, {"x": 4, "y": 3, "text": "\u00cc", "color": "251", "tags": [], "group": "", "frame": ""}, {"x": 5, "y": 4, "text": "\u0135", "color": "253", "tags": [], "group": "", "frame": ""}, {"x": 3, "y": 4, "text": "\u00b8", "color": "253", "tags": [], "group": "", "frame": ""}, {"x": 0, "y": 3, "text": "\u012a", "color": "251 bold", "tags": [], "group": "", "frame": ""}, {"x": 1, "y": 4, "text": "\u013e", "color": "253", "tags": [], "group": "", "frame": ""}, {"x": 1, "y": 3, "text": "\u013a", "color": "251", "tags": [], "group": "", "frame": ""}, {"x": 3, "y": 3, "text": "`", "color": "251", "tags": [], "group": "", "frame": ""}, {"x": 7, "y": 4, "text": "\u012c", "color": "252", "tags": [], "group": "", "frame": ""}, {"x": 7, "y": 3, "text": "\u012a", "color": "250", "tags": [], "group": "", "frame": ""}, {"x": 7, "y": 1, "text": "\u00cc", "color": "245", "tags": "[0]", "group": "", "frame": ""}, {"x": 8, "y": 1, "text": "\u00ec", "color": "245", "tags": [], "group": "", "frame": ""}, {"x": 9, "y": 1, "text": "\u0131", "color": "245", "tags": [], "group": "", "frame": ""}, {"x": 10, "y": 1, "text": ",", "color": "245", "tags": [], "group": "", "frame": ""}, {"x": 12, "y": 3, "text": "\u013a", "color": "249", "tags": [], "group": "", "frame": ""}, {"x": 11, "y": 3, "text": "\u00cc", "color": "249", "tags": [], "group": "", "frame": ""}, {"x": 11, "y": 4, "text": "\u012c", "color": "252", "tags": [], "group": "", "frame": ""}, {"x": 8, "y": 4, "text": "\u013e", "color": "252", "tags": [], "group": "", "frame": ""}, {"x": 8, "y": 3, "text": "\u013a", "color": "250", "tags": [], "group": "", "frame": ""}, {"x": 10, "y": 3, "text": "`", "color": "250", "tags": [], "group": "", "frame": ""}, {"x": 9, "y": 4, "text": "\u00ba", "color": "252", "tags": [], "group": "", "frame": ""}, {"x": 10, "y": 4, "text": "\u00aa", "color": "252", "tags": [], "group": "", "frame": ""}, {"x": 4, "y": 4, "text": "\u013e", "color": "253", "tags": [], "group": "", "frame": ""}, {"x": 12, "y": 4, "text": "\u0135", "color": "251", "tags": [], "group": "", "frame": ""}, {"x": 14, "y": 4, "text": "\u012c", "color": "251", "tags": [], "group": "", "frame": ""}, {"x": 14, "y": 3, "text": "\u012a", "color": "249", "tags": [], "group": "", "frame": ""}, {"x": 14, "y": 1, "text": "\u00cc", "color": "244", "tags": "[0]", "group": "", "frame": ""}, {"x": 15, "y": 1, "text": "\u00ec", "color": "244", "tags": [], "group": "", "frame": ""}, {"x": 16, "y": 1, "text": "\u0131", "color": "244", "tags": [], "group": "", "frame": ""}, {"x": 17, "y": 1, "text": ",", "color": "243", "tags": [], "group": "", "frame": ""}, {"x": 18, "y": 3, "text": "\u00cc", "color": "248", "tags": [], "group": "", "frame": ""}, {"x": 15, "y": 4, "text": "\u013e", "color": "251", "tags": [], "group": "", "frame": ""}, {"x": 15, "y": 3, "text": "\u013a", "color": "249", "tags": [], "group": "", "frame": ""}, {"x": 17, "y": 3, "text": "`", "color": "248", "tags": [], "group": "", "frame": ""}, {"x": 16, "y": 4, "text": "\u00ba", "color": "251", "tags": [], "group": "", "frame": ""}, {"x": 19, "y": 3, "text": "\u0135", "color": "248", "tags": [], "group": "", "frame": ""}, {"x": 19, "y": 4, "text": "\u00b4", "color": "250", "tags": [], "group": "", "frame": ""}, {"x": 18, "y": 4, "text": "\u00dd", "color": "250", "tags": [], "group": "", "frame": ""}, {"x": 17, "y": 4, "text": "\u013e", "color": "250", "tags": [], "group": "", "frame": ""}, {"x": 21, "y": 4, "text": "\u012c", "color": "250", "tags": [], "group": "", "frame": ""}, {"x": 21, "y": 3, "text": "\u012a", "color": "247", "tags": [], "group": "", "frame": ""}, {"x": 21, "y": 1, "text": "\u00cc", "color": "243", "tags": "[0]", "group": "", "frame": ""}, {"x": 22, "y": 1, "text": "\u00ec", "color": "242", "tags": [], "group": "", "frame": ""}, {"x": 25, "y": 3, "text": "\u00cc", "color": "247", "tags": [], "group": "", "frame": ""}, {"x": 22, "y": 4, "text": "\u013e", "color": "249", "tags": [], "group": "", "frame": ""}, {"x": 22, "y": 3, "text": "\u013a", "color": "247", "tags": [], "group": "", "frame": ""}, {"x": 23, "y": 4, "text": "\u00ba", "color": "249", "tags": [], "group": "", "frame": ""}, {"x": 26, "y": 3, "text": "\u0135", "color": "246", "tags": [], "group": "", "frame": ""}, {"x": 26, "y": 4, "text": "\u00b4", "color": "249", "tags": [], "group": "", "frame": ""}, {"x": 25, "y": 4, "text": "\u00dd", "color": "249", "tags": [], "group": "", "frame": ""}, {"x": 24, "y": 4, "text": "\u013e", "color": "249", "tags": [], "group": "", "frame": ""}, {"x": 5, "y": 5, "text": "\u00b9", "color": "255", "tags": [], "group": "", "frame": ""}, {"x": 0, "y": 5, "text": "\u00aa", "color": "255", "tags": [], "group": "", "frame": ""}, {"x": 23, "y": 5, "text": "\u00b4", "color": "252", "tags": [], "group": "", "frame": ""}, {"x": 24, "y": 5, "text": "`", "color": "251", "tags": [], "group": "", "frame": ""}, {"x": 2, "y": 5, "text": "\u0114", "color": "255", "tags": [], "group": "", "frame": ""}, {"x": 3, "y": 5, "text": "\u0158", "color": "255", "tags": [], "group": "", "frame": ""}, {"x": 4, "y": 5, "text": "\u1e40", "color": "255", "tags": [], "group": "", "frame": ""}, {"x": 7, "y": 5, "text": "\u010c", "color": "254", "tags": [], "group": "", "frame": ""}, {"x": 8, "y": 5, "text": "\u00d5", "color": "254", "tags": [], "group": "", "frame": ""}, {"x": 11, "y": 5, "text": "\u0158", "color": "254", "tags": [], "group": "", "frame": ""}, {"x": 12, "y": 5, "text": "\u00e8", "color": "254", "tags": [], "group": "", "frame": ""}, {"x": 15, "y": 5, "text": "\u0114", "color": "253", "tags": [], "group": "", "frame": ""}, {"x": 22, "y": 5, "text": "\u00da", "color": "252", "tags": [], "group": "", "frame": ""}, {"x": 25, "y": 5, "text": "\u00d1", "color": "251", "tags": [], "group": "", "frame": ""}, {"x": 26, "y": 5, "text": "\u0136", "color": "251", "tags": [], "group": "", "frame": ""}, {"x": 24, "y": 3, "text": "`", "color": "247", "tags": [], "group": "", "frame": ""}, {"x": 19, "y": 5, "text": "t", "color": "252", "tags": [], "group": "", "frame": ""}, {"x": 18, "y": 5, "text": "\u04c1", "color": "253", "tags": [], "group": "", "frame": ""}, {"x": 1, "y": 5, "text": "\u0164", "color": "255", "tags": [], "group": "", "frame": ""}, {"x": 14, "y": 5, "text": "\u0164", "color": "253", "tags": [], "group": "", "frame": ""}, {"x": 21, "y": 5, "text": "\u1e54", "color": "252", "tags": [], "group": "", "frame": ""}, {"x": 39, "y": 5, "text": "\u0114", "color": "248", "tags": [], "group": "", "frame": ""}, {"x": 40, "y": 5, "text": "\u01b2", "color": "248", "tags": [], "group": "", "frame": ""}, {"x": 41, "y": 5, "text": "\u022a", "color": "248", "tags": [], "group": "", "frame": ""}, {"x": 44, "y": 5, "text": "\u0164", "color": "247", "tags": [], "group": "", "frame": ""}, {"x": 45, "y": 5, "text": "\u0164", "color": "247", "tags": [], "group": "", "frame": ""}, {"x": 48, "y": 5, "text": "\u0176", "color": "247", "tags": [], "group": "", "frame": ""}, {"x": 49, "y": 5, "text": "\u015d", "color": "246", "tags": [], "group": "", "frame": ""}, {"x": 30, "y": 1, "text": "\u012a", "color": "249 bold", "tags": [], "group": "", "frame": ""}]}
{"x": 4, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 5, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 6, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 7, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 8, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 9, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 10, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 11, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 12, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 13, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 14, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 15, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 16, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 17, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 18, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 19, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 20, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 21, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 22, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 23, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 24, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 25, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 26, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 27, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 28, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 29, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 30, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 31, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 32, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 33, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 34, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 35, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 36, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 37, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 38, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 41, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 42, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 43, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 44, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 45, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 46, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 47, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 48, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 49, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 50, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 51, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 52, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 53, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 54, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 55, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 56, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 57, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 58, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 59, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 60, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 61, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 62, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 63, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 64, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 65, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 66, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 67, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 68, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 69, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 70, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 71, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 72, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 73, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 74, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 75, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "11"}
{"x": 4, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 5, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 6, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 7, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 8, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 9, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 10, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 11, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 12, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 13, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 14, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 15, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 16, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 17, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 18, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 19, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 20, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 21, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 22, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 23, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 24, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 25, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 26, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 27, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 28, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 29, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 30, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 31, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 32, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 33, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 34, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 35, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 36, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 37, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 38, "y": 4, "text": "\u2501", "color": "201 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 41, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 42, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 43, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 44, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 45, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 46, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 47, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 48, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 49, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 50, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 51, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 52, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 53, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 54, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 55, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 56, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 57, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 58, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 59, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 60, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 61, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 62, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 63, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 64, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 65, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 66, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 67, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 68, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 69, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 70, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 71, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 72, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 73, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 74, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 75, "y": 4, "text": "\u2501", "color": "51 bold", "tags": [], "group": " heavy", "frame": "12"}
{"x": 39, "y": 4, "text": "\u2733", "color": "231 bold", "tags": [], "group": "", "frame": "12"}
{"x": 2, "y": 4, "text": "\u2733", "color": "201 bold", "tags": [], "group": "", "frame": "12"}
{"x": 76, "y": 4, "text": "\u2733", "color": "51 bold", "tags": [], "group": "", "frame": "12"}
{"x": 4, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 5, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 6, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 7, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 14, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 20, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 21, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 28, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 31, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 32, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 35, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 36, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 37, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 42, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 43, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 44, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 51, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 58, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 65, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 68, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 69, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 72, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 73, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 74, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 75, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 2, "y": 4, "text": "\u263c", "color": "200 bold", "tags": [], "group": "", "frame": "13"}
{"x": 3, "y": 4, "text": "\u2500", "color": "200 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 77, "y": 4, "text": "\u263c", "color": "50 bold", "tags": [], "group": "", "frame": "13"}
{"x": 76, "y": 4, "text": "\u2500", "color": "50 bold", "tags": [], "group": " heavy", "frame": "13"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "229 bold", "tags": [], "group": "", "frame": "13"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "230", "tags": [], "group": "", "frame": "14"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "231 bold", "tags": [], "group": "", "frame": "15"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "255", "tags": [], "group": "", "frame": "16"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "254 bold", "tags": [], "group": "", "frame": "17"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "253", "tags": [], "group": "", "frame": "18"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "252 bold", "tags": [], "group": "", "frame": "19"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "251", "tags": [], "group": "", "frame": "20"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "250 bold", "tags": [], "group": "", "frame": "21"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "249", "tags": [], "group": "", "frame": "22"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "248 bold", "tags": [], "group": "", "frame": "23"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "247", "tags": [], "group": "", "frame": "24"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "246 bold", "tags": [], "group": "", "frame": "25"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "245", "tags": [], "group": "", "frame": "26"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "109 bold", "tags": [], "group": "", "frame": "27"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "109 bold", "tags": [], "group": "", "frame": "27"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "79", "tags": [], "group": "", "frame": "28"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "49 bold", "tags": [], "group": "", "frame": "29"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "50", "tags": [], "group": "", "frame": "30"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "51 bold", "tags": [], "group": "", "frame": "31"}
{"x": 38, "y": 3, "text": "\u012a", "color": "249 bold", "tags": [], "group": "", "frame": ""}
{"x": 39, "y": 2, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}
{"x": 38, "y": 2, "text": "\u00b8", "color": "249 bold", "tags": [], "group": "", "frame": ""}
{"x": 41, "y": 3, "text": "\u012a", "color": "249 bold", "tags": [], "group": "", "frame": ""}
{"x": 40, "y": 2, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}
{"x": 42, "y": 2, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}
{"x": 41, "y": 2, "text": "\u00b8", "color": "249 bold", "tags": [], "group": "", "frame": ""}
{"x": 37, "y": 5, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}
{"x": 39, "y": 5, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}
{"x": 40, "y": 5, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}
{"x": 42, "y": 5, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}
{"x": 38, "y": 4, "text": "\u0128", "color": "251 bold", "tags": [], "group": "", "frame": ""}
{"x": 38, "y": 5, "text": "\u013e", "color": "249 bold", "tags": [], "group": "", "frame": ""}
{"x": 41, "y": 5, "text": "\u013e", "color": "249 bold", "tags": [], "group": "", "frame": ""}
{"x": 41, "y": 4, "text": "\u0128", "color": "251 bold", "tags": [], "group": "", "frame": ""}
{"x": 45, "y": 6, "text": "\u012c", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 45, "y": 3, "text": "\u00cc", "color": "239", "tags": "[0]", "group": "", "frame": ""}
{"x": 46, "y": 3, "text": "\u00ec", "color": "239", "tags": [], "group": "", "frame": ""}
{"x": 47, "y": 3, "text": "\u0131", "color": "239", "tags": [], "group": "", "frame": ""}
{"x": 48, "y": 3, "text": ",", "color": "239", "tags": [], "group": "", "frame": ""}
{"x": 49, "y": 4, "text": "\u0140", "color": "241", "tags": [], "group": "", "frame": ""}
{"x": 50, "y": 5, "text": "\u013a", "color": "243", "tags": [], "group": "", "frame": ""}
{"x": 50, "y": 4, "text": "\u00b8", "color": "241", "tags": [], "group": "", "frame": ""}
{"x": 46, "y": 4, "text": "\u00dd", "color": "242", "tags": [], "group": "", "frame": ""}
{"x": 47, "y": 4, "text": "\u00aa", "color": "242", "tags": [], "group": "", "frame": ""}
{"x": 49, "y": 5, "text": "\u00cc", "color": "243", "tags": [], "group": "", "frame": ""}
{"x": 50, "y": 6, "text": "\u0135", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 48, "y": 6, "text": "\u00b8", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 45, "y": 4, "text": "\u012c", "color": "242", "tags": [], "group": "", "frame": ""}
{"x": 45, "y": 5, "text": "\u012a", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 46, "y": 6, "text": "\u013e", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 46, "y": 5, "text": "\u013a", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 48, "y": 5, "text": "`", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 48, "y": 4, "text": "\u00d9", "color": "241", "tags": [], "group": "", "frame": ""}
{"x": 49, "y": 6, "text": "\u013e", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 52, "y": 6, "text": "\u012c", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 52, "y": 5, "text": "\u012a", "color": "243", "tags": [], "group": "", "frame": ""}
{"x": 52, "y": 4, "text": "\u012c", "color": "241", "tags": [], "group": "", "frame": ""}
{"x": 52, "y": 3, "text": "\u00cc", "color": "238", "tags": "[0]", "group": "", "frame": ""}
{"x": 53, "y": 3, "text": "\u00ec", "color": "238", "tags": [], "group": "", "frame": ""}
{"x": 54, "y": 3, "text": "\u0131", "color": "238", "tags": [], "group": "", "frame": ""}
{"x": 55, "y": 3, "text": ",", "color": "237", "tags": [], "group": "", "frame": ""}
{"x": 56, "y": 4, "text": "\u0140", "color": "240", "tags": [], "group": "", "frame": ""}
{"x": 57, "y": 4, "text": "\u00b8", "color": "240", "tags": [], "group": "", "frame": ""}
{"x": 53, "y": 4, "text": "\u00dd", "color": "240", "tags": [], "group": "", "frame": ""}
{"x": 54, "y": 4, "text": "\u00aa", "color": "240", "tags": [], "group": "", "frame": ""}
{"x": 56, "y": 5, "text": "\u00cc", "color": "242", "tags": [], "group": "", "frame": ""}
{"x": 53, "y": 6, "text": "\u013e", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 53, "y": 5, "text": "\u013a", "color": "243", "tags": [], "group": "", "frame": ""}
{"x": 55, "y": 5, "text": "`", "color": "242", "tags": [], "group": "", "frame": ""}
{"x": 55, "y": 4, "text": "\u00d9", "color": "240", "tags": [], "group": "", "frame": ""}
{"x": 54, "y": 6, "text": "\u00ba", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 57, "y": 5, "text": "\u0135", "color": "242", "tags": [], "group": "", "frame": ""}
{"x": 57, "y": 6, "text": "\u00b4", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 56, "y": 6, "text": "\u00dd", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 55, "y": 6, "text": "\u013e", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 59, "y": 6, "text": "\u012c", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 59, "y": 5, "text": "\u012a", "color": "241", "tags": [], "group": "", "frame": ""}
{"x": 59, "y": 4, "text": "\u012c", "color": "239", "tags": [], "group": "", "frame": ""}
{"x": 59, "y": 3, "text": "\u00cc", "color": "237", "tags": "[0]", "group": "", "frame": ""}
{"x": 60, "y": 3, "text": "\u00ec", "color": "237", "tags": [], "group": "", "frame": ""}
{"x": 61, "y": 3, "text": "\u0131", "color": "236", "tags": [], "group": "", "frame": ""}
{"x": 62, "y": 3, "text": ",", "color": "236", "tags": [], "group": "", "frame": ""}
{"x": 63, "y": 4, "text": "\u0140", "color": "238", "tags": [], "group": "", "frame": ""}
{"x": 64, "y": 5, "text": "\u013a", "color": "240", "tags": [], "group": "", "frame": ""}
{"x": 64, "y": 4, "text": "\u00b8", "color": "238", "tags": [], "group": "", "frame": ""}
{"x": 60, "y": 4, "text": "\u00dd", "color": "239", "tags": [], "group": "", "frame": ""}
{"x": 61, "y": 4, "text": "\u00aa", "color": "239", "tags": [], "group": "", "frame": ""}
{"x": 63, "y": 5, "text": "\u00cc", "color": "241", "tags": [], "group": "", "frame": ""}
{"x": 60, "y": 6, "text": "\u013e", "color": "243", "tags": [], "group": "", "frame": ""}
{"x": 60, "y": 5, "text": "\u013a", "color": "241", "tags": [], "group": "", "frame": ""}
{"x": 62, "y": 5, "text": "`", "color": "241", "tags": [], "group": "", "frame": ""}
{"x": 62, "y": 4, "text": "\u00d9", "color": "239", "tags": [], "group": "", "frame": ""}
{"x": 61, "y": 6, "text": "\u00ba", "color": "243", "tags": [], "group": "", "frame": ""}
{"x": 62, "y": 6, "text": "\u00aa", "color": "243", "tags": [], "group": "", "frame": ""}
{"x": 66, "y": 6, "text": "\u012c", "color": "242", "tags": [], "group": "", "frame": ""}
{"x": 66, "y": 5, "text": "\u012a", "color": "240", "tags": [], "group": "", "frame": ""}
{"x": 66, "y": 4, "text": "\u012c", "color": "238", "tags": [], "group": "", "frame": ""}
{"x": 66, "y": 3, "text": "\u00cc", "color": "236", "tags": "[0]", "group": "", "frame": ""}
{"x": 67, "y": 3, "text": "\u00ec", "color": "235", "tags": [], "group": "", "frame": ""}
{"x": 67, "y": 6, "text": "\u013e", "color": "242", "tags": [], "group": "", "frame": ""}
{"x": 70, "y": 6, "text": "\u012c", "color": "241", "tags": [], "group": "", "frame": ""}
{"x": 71, "y": 6, "text": "\u013e", "color": "241", "tags": [], "group": "", "frame": ""}
{"x": 71, "y": 5, "text": "\u013a", "color": "239", "tags": [], "group": "", "frame": ""}
{"x": 68, "y": 6, "text": "\u00da", "color": "242", "tags": [], "group": "", "frame": ""}
{"x": 69, "y": 6, "text": "\u00d9", "color": "242", "tags": [], "group": "", "frame": ""}
{"x": 71, "y": 3, "text": "\u00cd", "color": "235", "tags": [], "group": "", "frame": ""}
{"x": 70, "y": 3, "text": "\u00ed", "color": "235", "tags": [], "group": "", "frame": ""}
{"x": 71, "y": 4, "text": "\u012c", "color": "237", "tags": [], "group": "", "frame": ""}
{"x": 67, "y": 4, "text": "\u013e", "color": "238", "tags": [], "group": "", "frame": ""}
{"x": 70, "y": 4, "text": "\u013e", "color": "237", "tags": [], "group": "", "frame": ""}
{"x": 67, "y": 5, "text": "\u013e", "color": "240", "tags": [], "group": "", "frame": ""}
{"x": 70, "y": 5, "text": "\u013e", "color": "239", "tags": [], "group": "", "frame": ""}
{"x": 59, "y": 7, "text": "\u010e", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 60, "y": 7, "text": "\u1e84", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 63, "y": 7, "text": "\u012c", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 67, "y": 7, "text": "\u0114", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 70, "y": 7, "text": "\u0158", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 46, "y": 7, "text": "\u010e", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 50, "y": 7, "text": "\u00b9", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 45, "y": 7, "text": "\u00aa", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 68, "y": 5, "text": ",", "color": "240", "tags": [], "group": "", "frame": ""}
{"x": 69, "y": 5, "text": "\\", "color": "239", "tags": [], "group": "", "frame": ""}
{"x": 8, "y": 6, "text": "\u012c", "color": "253", "tags": [], "group": "", "frame": ""}
{"x": 8, "y": 3, "text": "\u00cc", "color": "247 bold", "tags": "[0]", "group": "", "frame": ""}
{"x": 9, "y": 3, "text": "\u00ec", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 10, "y": 3, "text": "\u0131", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 11, "y": 3, "text": ",", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 12, "y": 4, "text": "\u0140", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 13, "y": 5, "text": "\u013a", "color": "250", "tags": [], "group": "", "frame": ""}
{"x": 13, "y": 4, "text": "\u00b8", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 9, "y": 4, "text": "\u00dd", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 10, "y": 4, "text": "\u00aa", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 12, "y": 5, "text": "\u00cc", "color": "251", "tags": [], "group": "", "frame": ""}
{"x": 13, "y": 6, "text": "\u0135", "color": "253", "tags": [], "group": "", "frame": ""}
{"x": 11, "y": 6, "text": "\u00b8", "color": "253", "tags": [], "group": "", "frame": ""}
{"x": 8, "y": 5, "text": "\u012a", "color": "251 bold", "tags": [], "group": "", "frame": ""}
{"x": 9, "y": 6, "text": "\u013e", "color": "253", "tags": [], "group": "", "frame": ""}
{"x": 9, "y": 5, "text": "\u013a", "color": "251", "tags": [], "group": "", "frame": ""}
{"x": 11, "y": 5, "text": "`", "color": "251", "tags": [], "group": "", "frame": ""}
{"x": 11, "y": 4, "text": "\u00d9", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 15, "y": 6, "text": "\u012c", "color": "252", "tags": [], "group": "", "frame": ""}
{"x": 15, "y": 5, "text": "\u012a", "color": "250", "tags": [], "group": "", "frame": ""}
{"x": 15, "y": 4, "text": "\u012c", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 15, "y": 3, "text": "\u00cc", "color": "245", "tags": "[0]", "group": "", "frame": ""}
{"x": 16, "y": 3, "text": "\u00ec", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 17, "y": 3, "text": "\u0131", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 18, "y": 3, "text": ",", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 19, "y": 4, "text": "\u0140", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 20, "y": 5, "text": "\u013a", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 16, "y": 4, "text": "\u00dd", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 17, "y": 4, "text": "\u00aa", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 19, "y": 5, "text": "\u00cc", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 19, "y": 6, "text": "\u012c", "color": "252", "tags": [], "group": "", "frame": ""}
{"x": 16, "y": 6, "text": "\u013e", "color": "252", "tags": [], "group": "", "frame": ""}
{"x": 16, "y": 5, "text": "\u013a", "color": "250", "tags": [], "group": "", "frame": ""}
{"x": 18, "y": 5, "text": "`", "color": "250", "tags": [], "group": "", "frame": ""}
{"x": 18, "y": 4, "text": "\u00d9", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 17, "y": 6, "text": "\u00ba", "color": "252", "tags": [], "group": "", "frame": ""}
{"x": 18, "y": 6, "text": "\u00aa", "color": "252", "tags": [], "group": "", "frame": ""}
{"x": 12, "y": 6, "text": "\u013e", "color": "253", "tags": [], "group": "", "frame": ""}
{"x": 20, "y": 6, "text": "\u0135", "color": "251", "tags": [], "group": "", "frame": ""}
{"x": 22, "y": 6, "text": "\u012c", "color": "251", "tags": [], "group": "", "frame": ""}
{"x": 22, "y": 5, "text": "\u012a", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 22, "y": 4, "text": "\u012c", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 22, "y": 3, "text": "\u00cc", "color": "244", "tags": "[0]", "group": "", "frame": ""}
{"x": 23, "y": 3, "text": "\u00ec", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 24, "y": 3, "text": "\u0131", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 25, "y": 3, "text": ",", "color": "243", "tags": [], "group": "", "frame": ""}
{"x": 26, "y": 4, "text": "\u0140", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 27, "y": 4, "text": "\u00b8", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 23, "y": 4, "text": "\u00dd", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 24, "y": 4, "text": "\u00aa", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 26, "y": 5, "text": "\u00cc", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 23, "y": 6, "text": "\u013e", "color": "251", "tags": [], "group": "", "frame": ""}
{"x": 23, "y": 5, "text": "\u013a", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 25, "y": 5, "text": "`", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 25, "y": 4, "text": "\u00d9", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 24, "y": 6, "text": "\u00ba", "color": "251", "tags": [], "group": "", "frame": ""}
{"x": 27, "y": 5, "text": "\u0135", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 27, "y": 6, "text": "\u00b4", "color": "250", "tags": [], "group": "", "frame": ""}
{"x": 26, "y": 6, "text": "\u00dd", "color": "250", "tags": [], "group": "", "frame": ""}
{"x": 25, "y": 6, "text": "\u013e", "color": "250", "tags": [], "group": "", "frame": ""}
{"x": 29, "y": 6, "text": "\u012c", "color": "250", "tags": [], "group": "", "frame": ""}
{"x": 29, "y": 5, "text": "\u012a", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 29, "y": 4, "text": "\u012c", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 29, "y": 3, "text": "\u00cc", "color": "243", "tags": "[0]", "group": "", "frame": ""}
{"x": 30, "y": 3, "text": "\u00ec", "color": "242", "tags": [], "group": "", "frame": ""}
{"x": 33, "y": 4, "text": "\u0140", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 34, "y": 4, "text": "\u00b8", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 30, "y": 4, "text": "\u00dd", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 33, "y": 5, "text": "\u00cc", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 30, "y": 6, "text": "\u013e", "color": "250", "tags": [], "group": "", "frame": ""}
{"x": 30, "y": 5, "text": "\u013a", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 31, "y": 6, "text": "\u00ba", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 34, "y": 5, "text": "\u0135", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 34, "y": 6, "text": "\u00b4", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 33, "y": 6, "text": "\u00dd", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 32, "y": 6, "text": "\u013e", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 13, "y": 7, "text": "\u00b9", "color": "255", "tags": [], "group": "", "frame": ""}
{"x": 8, "y": 7, "text": "\u00aa", "color": "255", "tags": [], "group": "", "frame": ""}
{"x": 31, "y": 7, "text": "\u00b4", "color": "252", "tags": [], "group": "", "frame": ""}
{"x": 32, "y": 7, "text": "`", "color": "252", "tags": [], "group": "", "frame": ""}
{"x": 10, "y": 7, "text": "\u0114", "color": "255", "tags": [], "group": "", "frame": ""}
{"x": 11, "y": 7, "text": "\u0158", "color": "255", "tags": [], "group": "", "frame": ""}
{"x": 12, "y": 7, "text": "\u1e40", "color": "255", "tags": [], "group": "", "frame": ""}
{"x": 15, "y": 7, "text": "\u010c", "color": "254", "tags": [], "group": "", "frame": ""}
{"x": 16, "y": 7, "text": "\u00d5", "color": "254", "tags": [], "group": "", "frame": ""}
{"x": 19, "y": 7, "text": "\u0158", "color": "254", "tags": [], "group": "", "frame": ""}
{"x": 23, "y": 7, "text": "\u0114", "color": "253", "tags": [], "group": "", "frame": ""}
{"x": 30, "y": 7, "text": "\u00da", "color": "252", "tags": [], "group": "", "frame": ""}
{"x": 33, "y": 7, "text": "\u00d1", "color": "251", "tags": [], "group": "", "frame": ""}
{"x": 32, "y": 5, "text": "`", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 27, "y": 7, "text": "t", "color": "252", "tags": [], "group": "", "frame": ""}
{"x": 8, "y": 4, "text": "\u012c", "color": "249 bold", "tags": [], "group": "", "frame": ""}
{"x": 26, "y": 7, "text": "\u04c1", "color": "253", "tags": [], "group": "", "frame": ""}
{"x": 22, "y": 7, "text": "\u0164", "color": "253", "tags": [], "group": "", "frame": ""}
{"x": 29, "y": 7, "text": "\u1e54", "color": "252", "tags": [], "group": "", "frame": ""}
{"x": 47, "y": 7, "text": "\u0114", "color": "249", "tags": [], "group": "", "frame": ""}
{"x": 48, "y": 7, "text": "\u01b2", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 49, "y": 7, "text": "\u022a", "color": "248", "tags": [], "group": "", "frame": ""}
{"x": 52, "y": 7, "text": "\u0164", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 53, "y": 7, "text": "\u0164", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 56, "y": 7, "text": "\u0176", "color": "247", "tags": [], "group": "", "frame": ""}
{"x": 57, "y": 7, "text": "\u015d", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 38, "y": 4, "text": "\u0128", "color": "51 bold", "tags": [], "group": "", "frame": "31"}
{"x": 41, "y": 4, "text": "\u0128", "color": "51 bold", "tags": [], "group": "", "frame": "31"}
{"x": 38, "y": 3, "text": "\u012a", "color": "51 bold", "tags": [], "group": "", "frame": "31"}
{"x": 41, "y": 3, "text": "\u012a", "color": "51 bold", "tags": [], "group": "", "frame": "31"}
{"x": 41, "y": 5, "text": "\u013e", "color": "51 bold", "tags": [], "group": "", "frame": "31"}
{"x": 38, "y": 5, "text": "\u013e", "color": "51 bold", "tags": [], "group": "", "frame": "31"}
{"x": 39, "y": 5, "text": "_", "color": "51 bold", "tags": [], "group": "", "frame": "31"}
{"x": 40, "y": 5, "text": "_", "color": "51 bold", "tags": [], "group": "", "frame": "31"}
{"x": 39, "y": 2, "text": "_", "color": "51 bold", "tags": [], "group": "", "frame": "31"}
{"x": 40, "y": 2, "text": "_", "color": "51 bold", "tags": [], "group": "", "frame": "31"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "81 bold", "tags": [], "group": "", "frame": "32"}
{"x": 37, "y": 5, "text": "_", "color": "81 bold", "tags": [], "group": "", "frame": "32"}
{"x": 37, "y": 2, "text": "_", "color": "81 bold", "tags": [], "group": "", "frame": "32"}
{"x": 42, "y": 2, "text": "_", "color": "81 bold", "tags": [], "group": "", "frame": "32"}
{"x": 42, "y": 5, "text": "_", "color": "81 bold", "tags": [], "group": "", "frame": "32"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "111 bold", "tags": [], "group": "", "frame": "33"}
{"x": 34, "y": 4, "text": "\u00b8", "color": "171 bold", "tags": [], "group": "", "frame": "35"}
{"x": 34, "y": 5, "text": "\u0135", "color": "171 bold", "tags": [], "group": "", "frame": "35"}
{"x": 34, "y": 6, "text": "\u00b4", "color": "171 bold", "tags": [], "group": "", "frame": "35"}
{"x": 45, "y": 5, "text": "\u012a", "color": "171 bold", "tags": [], "group": "", "frame": "35"}
{"x": 45, "y": 4, "text": "\u012c", "color": "171 bold", "tags": [], "group": "", "frame": "35"}
{"x": 45, "y": 3, "text": "\u00cc", "color": "171 bold", "tags": "[0]", "group": "", "frame": "35"}
{"x": 45, "y": 6, "text": "\u012c", "color": "171 bold", "tags": [], "group": "", "frame": "35"}
{"x": 45, "y": 7, "text": "\u00aa", "color": "171 bold", "tags": [], "group": "", "frame": "35"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "141 bold", "tags": [], "group": "", "frame": "34"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "171 bold", "tags": [], "group": "", "frame": "35"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "201 bold", "tags": [], "group": "", "frame": "36"}
{"x": 34, "y": 7, "text": "\u0136", "color": "171 bold", "tags": [], "group": "", "frame": "35"}
{"x": 33, "y": 7, "text": "\u00d1", "color": "201 bold", "tags": [], "group": "", "frame": "36"}
{"x": 33, "y": 6, "text": "\u00dd", "color": "201 bold", "tags": [], "group": "", "frame": "36"}
{"x": 33, "y": 5, "text": "\u00cc", "color": "201 bold", "tags": [], "group": "", "frame": "36"}
{"x": 33, "y": 4, "text": "\u0140", "color": "201 bold", "tags": [], "group": "", "frame": "36"}
{"x": 46, "y": 3, "text": "\u00ec", "color": "201 bold", "tags": [], "group": "", "frame": "36"}
{"x": 46, "y": 4, "text": "\u00dd", "color": "201 bold", "tags": [], "group": "", "frame": "36"}
{"x": 46, "y": 5, "text": "\u013a", "color": "201 bold", "tags": [], "group": "", "frame": "36"}
{"x": 46, "y": 6, "text": "\u013e", "color": "201 bold", "tags": [], "group": "", "frame": "36"}
{"x": 46, "y": 7, "text": "\u010e", "color": "201 bold", "tags": [], "group": "", "frame": "36"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "171 bold", "tags": [], "group": "", "frame": "37"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "141 bold", "tags": [], "group": "", "frame": "38"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "111 bold", "tags": [], "group": "", "frame": "39"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "81 bold", "tags": [], "group": "", "frame": "40"}
{"x": 32, "y": 5, "text": "`", "color": "171 bold", "tags": [], "group": "", "frame": "37"}
{"x": 32, "y": 6, "text": "\u013e", "color": "171 bold", "tags": [], "group": "", "frame": "37"}
{"x": 32, "y": 7, "text": "`", "color": "171 bold", "tags": [], "group": "", "frame": "37"}
{"x": 47, "y": 4, "text": "\u00aa", "color": "171 bold", "tags": [], "group": "", "frame": "37"}
{"x": 47, "y": 3, "text": "\u0131", "color": "171 bold", "tags": [], "group": "", "frame": "37"}
{"x": 47, "y": 7, "text": "\u0114", "color": "171 bold", "tags": [], "group": "", "frame": "37"}
{"x": 48, "y": 3, "text": ",", "color": "141 bold", "tags": [], "group": "", "frame": "38"}
{"x": 48, "y": 4, "text": "\u00d9", "color": "141 bold", "tags": [], "group": "", "frame": "38"}
{"x": 48, "y": 5, "text": "`", "color": "141 bold", "tags": [], "group": "", "frame": "38"}
{"x": 48, "y": 6, "text": "\u00b8", "color": "141 bold", "tags": [], "group": "", "frame": "38"}
{"x": 48, "y": 7, "text": "\u01b2", "color": "141 bold", "tags": [], "group": "", "frame": "38"}
{"x": 31, "y": 6, "text": "\u00ba", "color": "141 bold", "tags": [], "group": "", "frame": "38"}
{"x": 31, "y": 7, "text": "\u00b4", "color": "141 bold", "tags": [], "group": "", "frame": "38"}
{"x": 30, "y": 3, "text": "\u00ec", "color": "111 bold", "tags": [], "group": "", "frame": "39"}
{"x": 30, "y": 4, "text": "\u00dd", "color": "111 bold", "tags": [], "group": "", "frame": "39"}
{"x": 30, "y": 5, "text": "\u013a", "color": "111 bold", "tags": [], "group": "", "frame": "39"}
{"x": 30, "y": 6, "text": "\u013e", "color": "111 bold", "tags": [], "group": "", "frame": "39"}
{"x": 30, "y": 7, "text": "\u00da", "color": "111 bold", "tags": [], "group": "", "frame": "39"}
{"x": 49, "y": 4, "text": "\u0140", "color": "111 bold", "tags": [], "group": "", "frame": "39"}
{"x": 49, "y": 5, "text": "\u00cc", "color": "111 bold", "tags": [], "group": "", "frame": "39"}
{"x": 49, "y": 6, "text": "\u013e", "color": "111 bold", "tags": [], "group": "", "frame": "39"}
{"x": 49, "y": 7, "text": "\u022a", "color": "111 bold", "tags": [], "group": "", "frame": "39"}
{"x": 50, "y": 4, "text": "\u00b8", "color": "81 bold", "tags": [], "group": "", "frame": "40"}
{"x": 50, "y": 5, "text": "\u013a", "color": "81 bold", "tags": [], "group": "", "frame": "40"}
{"x": 50, "y": 6, "text": "\u0135", "color": "81 bold", "tags": [], "group": "", "frame": "40"}
{"x": 50, "y": 7, "text": "\u00b9", "color": "81 bold", "tags": [], "group": "", "frame": "40"}
{"x": 29, "y": 3, "text": "\u00cc", "color": "81 bold", "tags": "[0]", "group": "", "frame": "40"}
{"x": 29, "y": 4, "text": "\u012c", "color": "81 bold", "tags": [], "group": "", "frame": "40"}
{"x": 29, "y": 5, "text": "\u012a", "color": "81 bold", "tags": [], "group": "", "frame": "40"}
{"x": 29, "y": 6, "text": "\u012c", "color": "81 bold", "tags": [], "group": "", "frame": "40"}
{"x": 29, "y": 7, "text": "\u1e54", "color": "81 bold", "tags": [], "group": "", "frame": "40"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "51 bold", "tags": [], "group": "", "frame": "40-41"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "81 bold", "tags": [], "group": "", "frame": "41"}
{"x": 27, "y": 4, "text": "\u00b8", "color": "81 bold", "tags": [], "group": "", "frame": "41"}
{"x": 27, "y": 5, "text": "\u0135", "color": "81 bold", "tags": [], "group": "", "frame": "41"}
{"x": 27, "y": 6, "text": "\u00b4", "color": "81 bold", "tags": [], "group": "", "frame": "41"}
{"x": 27, "y": 7, "text": "t", "color": "81 bold", "tags": [], "group": "", "frame": "41"}
{"x": 52, "y": 3, "text": "\u00cc", "color": "81 bold", "tags": "[0]", "group": "", "frame": "41"}
{"x": 52, "y": 4, "text": "\u012c", "color": "81 bold", "tags": [], "group": "", "frame": "41"}
{"x": 52, "y": 5, "text": "\u012a", "color": "81 bold", "tags": [], "group": "", "frame": "41"}
{"x": 52, "y": 6, "text": "\u012c", "color": "81 bold", "tags": [], "group": "", "frame": "41"}
{"x": 52, "y": 7, "text": "\u0164", "color": "81 bold", "tags": [], "group": "", "frame": "41"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "111 bold", "tags": [], "group": "", "frame": "42"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "141 bold", "tags": [], "group": "", "frame": "43"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "171 bold", "tags": [], "group": "", "frame": "44"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "201 bold", "tags": [], "group": "", "frame": "45"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "171 bold", "tags": [], "group": "", "frame": "46"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "141 bold", "tags": [], "group": "", "frame": "47"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "111 bold", "tags": [], "group": "", "frame": "48"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "81 bold", "tags": [], "group": "", "frame": "49"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "51 bold", "tags": [], "group": "", "frame": "50"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "81 bold", "tags": [], "group": "", "frame": "51"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "111 bold", "tags": [], "group": "", "frame": "52"}
{"x": 26, "y": 4, "text": "\u0140", "color": "111 bold", "tags": [], "group": "", "frame": "42"}
{"x": 26, "y": 5, "text": "\u00cc", "color": "111 bold", "tags": [], "group": "", "frame": "42"}
{"x": 26, "y": 6, "text": "\u00dd", "color": "111 bold", "tags": [], "group": "", "frame": "42"}
{"x": 26, "y": 7, "text": "\u04c1", "color": "111 bold", "tags": [], "group": "", "frame": "42"}
{"x": 53, "y": 3, "text": "\u00ec", "color": "111 bold", "tags": [], "group": "", "frame": "42"}
{"x": 53, "y": 4, "text": "\u00dd", "color": "111 bold", "tags": [], "group": "", "frame": "42"}
{"x": 53, "y": 5, "text": "\u013a", "color": "111 bold", "tags": [], "group": "", "frame": "42"}
{"x": 53, "y": 6, "text": "\u013e", "color": "111 bold", "tags": [], "group": "", "frame": "42"}
{"x": 53, "y": 7, "text": "\u0164", "color": "111 bold", "tags": [], "group": "", "frame": "42"}
{"x": 54, "y": 3, "text": "\u0131", "color": "141 bold", "tags": [], "group": "", "frame": "43"}
{"x": 54, "y": 4, "text": "\u00aa", "color": "141 bold", "tags": [], "group": "", "frame": "43"}
{"x": 54, "y": 6, "text": "\u00ba", "color": "141 bold", "tags": [], "group": "", "frame": "43"}
{"x": 25, "y": 3, "text": ",", "color": "141 bold", "tags": [], "group": "", "frame": "43"}
{"x": 25, "y": 4, "text": "\u00d9", "color": "141 bold", "tags": [], "group": "", "frame": "43"}
{"x": 25, "y": 5, "text": "`", "color": "141 bold", "tags": [], "group": "", "frame": "43"}
{"x": 25, "y": 6, "text": "\u013e", "color": "141 bold", "tags": [], "group": "", "frame": "43"}
{"x": 24, "y": 3, "text": "\u0131", "color": "171 bold", "tags": [], "group": "", "frame": "44"}
{"x": 24, "y": 4, "text": "\u00aa", "color": "171 bold", "tags": [], "group": "", "frame": "44"}
{"x": 24, "y": 6, "text": "\u00ba", "color": "171 bold", "tags": [], "group": "", "frame": "44"}
{"x": 55, "y": 3, "text": ",", "color": "171 bold", "tags": [], "group": "", "frame": "44"}
{"x": 55, "y": 4, "text": "\u00d9", "color": "171 bold", "tags": [], "group": "", "frame": "44"}
{"x": 55, "y": 5, "text": "`", "color": "171 bold", "tags": [], "group": "", "frame": "44"}
{"x": 55, "y": 6, "text": "\u013e", "color": "171 bold", "tags": [], "group": "", "frame": "44"}
{"x": 56, "y": 4, "text": "\u0140", "color": "201 bold", "tags": [], "group": "", "frame": "45"}
{"x": 56, "y": 5, "text": "\u00cc", "color": "201 bold", "tags": [], "group": "", "frame": "45"}
{"x": 56, "y": 6, "text": "\u00dd", "color": "201 bold", "tags": [], "group": "", "frame": "45"}
{"x": 56, "y": 7, "text": "\u0176", "color": "201 bold", "tags": [], "group": "", "frame": "45"}
{"x": 23, "y": 3, "text": "\u00ec", "color": "201 bold", "tags": [], "group": "", "frame": "45"}
{"x": 23, "y": 4, "text": "\u00dd", "color": "201 bold", "tags": [], "group": "", "frame": "45"}
{"x": 23, "y": 5, "text": "\u013a", "color": "201 bold", "tags": [], "group": "", "frame": "45"}
{"x": 23, "y": 6, "text": "\u013e", "color": "201 bold", "tags": [], "group": "", "frame": "45"}
{"x": 23, "y": 7, "text": "\u0114", "color": "201 bold", "tags": [], "group": "", "frame": "45"}
{"x": 22, "y": 3, "text": "\u00cc", "color": "171 bold", "tags": "[0]", "group": "", "frame": "46"}
{"x": 22, "y": 4, "text": "\u012c", "color": "171 bold", "tags": [], "group": "", "frame": "46"}
{"x": 22, "y": 5, "text": "\u012a", "color": "171 bold", "tags": [], "group": "", "frame": "46"}
{"x": 22, "y": 6, "text": "\u012c", "color": "171 bold", "tags": [], "group": "", "frame": "46"}
{"x": 22, "y": 7, "text": "\u0164", "color": "171 bold", "tags": [], "group": "", "frame": "46"}
{"x": 57, "y": 4, "text": "\u00b8", "color": "171 bold", "tags": [], "group": "", "frame": "46"}
{"x": 57, "y": 5, "text": "\u0135", "color": "171 bold", "tags": [], "group": "", "frame": "46"}
{"x": 57, "y": 6, "text": "\u00b4", "color": "171 bold", "tags": [], "group": "", "frame": "46"}
{"x": 57, "y": 7, "text": "\u015d", "color": "171 bold", "tags": [], "group": "", "frame": "46"}
{"x": 59, "y": 3, "text": "\u00cc", "color": "111 bold", "tags": "[0]", "group": "", "frame": "48"}
{"x": 59, "y": 4, "text": "\u012c", "color": "111 bold", "tags": [], "group": "", "frame": "48"}
{"x": 59, "y": 5, "text": "\u012a", "color": "111 bold", "tags": [], "group": "", "frame": "48"}
{"x": 59, "y": 6, "text": "\u012c", "color": "111 bold", "tags": [], "group": "", "frame": "48"}
{"x": 59, "y": 7, "text": "\u010e", "color": "111 bold", "tags": [], "group": "", "frame": "48"}
{"x": 20, "y": 4, "text": "\u00b8", "color": "246", "tags": [], "group": "", "frame": ""}
{"x": 20, "y": 4, "text": "\u00b8", "color": "111 bold", "tags": [], "group": "", "frame": "48"}
{"x": 20, "y": 5, "text": "\u013a", "color": "111 bold", "tags": [], "group": "", "frame": "48"}
{"x": 20, "y": 6, "text": "\u0135", "color": "111 bold", "tags": [], "group": "", "frame": "48"}
{"x": 20, "y": 7, "text": "\u00e8", "color": "111 bold", "tags": [], "group": "", "frame": "48"}
{"x": 19, "y": 4, "text": "\u0140", "color": "81 bold", "tags": [], "group": "", "frame": "49"}
{"x": 19, "y": 5, "text": "\u00cc", "color": "81 bold", "tags": [], "group": "", "frame": "49"}
{"x": 19, "y": 6, "text": "\u012c", "color": "81 bold", "tags": [], "group": "", "frame": "49"}
{"x": 19, "y": 7, "text": "\u0158", "color": "81 bold", "tags": [], "group": "", "frame": "49"}
{"x": 60, "y": 3, "text": "\u00ec", "color": "81 bold", "tags": [], "group": "", "frame": "49"}
{"x": 60, "y": 4, "text": "\u00dd", "color": "81 bold", "tags": [], "group": "", "frame": "49"}
{"x": 60, "y": 5, "text": "\u013a", "color": "81 bold", "tags": [], "group": "", "frame": "49"}
{"x": 60, "y": 6, "text": "\u013e", "color": "81 bold", "tags": [], "group": "", "frame": "49"}
{"x": 60, "y": 7, "text": "\u1e84", "color": "81 bold", "tags": [], "group": "", "frame": "49"}
{"x": 61, "y": 6, "text": "\u00ba", "color": "51 bold", "tags": [], "group": "", "frame": "50"}
{"x": 61, "y": 4, "text": "\u00aa", "color": "51 bold", "tags": [], "group": "", "frame": "50"}
{"x": 61, "y": 3, "text": "\u0131", "color": "51 bold", "tags": [], "group": "", "frame": "50"}
{"x": 18, "y": 6, "text": "\u00aa", "color": "51 bold", "tags": [], "group": "", "frame": "50"}
{"x": 18, "y": 5, "text": "`", "color": "51 bold", "tags": [], "group": "", "frame": "50"}
{"x": 18, "y": 4, "text": "\u00d9", "color": "51 bold", "tags": [], "group": "", "frame": "50"}
{"x": 18, "y": 3, "text": ",", "color": "51 bold", "tags": [], "group": "", "frame": "50"}
{"x": 17, "y": 3, "text": "\u0131", "color": "81 bold", "tags": [], "group": "", "frame": "51"}
{"x": 17, "y": 4, "text": "\u00aa", "color": "81 bold", "tags": [], "group": "", "frame": "51"}
{"x": 17, "y": 6, "text": "\u00ba", "color": "81 bold", "tags": [], "group": "", "frame": "51"}
{"x": 62, "y": 3, "text": ",", "color": "81 bold", "tags": [], "group": "", "frame": "51"}
{"x": 62, "y": 4, "text": "\u00d9", "color": "81 bold", "tags": [], "group": "", "frame": "51"}
{"x": 62, "y": 5, "text": "`", "color": "81 bold", "tags": [], "group": "", "frame": "51"}
{"x": 62, "y": 6, "text": "\u00aa", "color": "81 bold", "tags": [], "group": "", "frame": "51"}
{"x": 63, "y": 4, "text": "\u0140", "color": "111 bold", "tags": [], "group": "", "frame": "52"}
{"x": 63, "y": 5, "text": "\u00cc", "color": "111 bold", "tags": [], "group": "", "frame": "52"}
{"x": 63, "y": 6, "text": "\u012c", "color": "111 bold", "tags": [], "group": "", "frame": "52"}
{"x": 63, "y": 7, "text": "\u012c", "color": "111 bold", "tags": [], "group": "", "frame": "52"}
{"x": 16, "y": 3, "text": "\u00ec", "color": "111 bold", "tags": [], "group": "", "frame": "52"}
{"x": 16, "y": 4, "text": "\u00dd", "color": "111 bold", "tags": [], "group": "", "frame": "52"}
{"x": 16, "y": 5, "text": "\u013a", "color": "111 bold", "tags": [], "group": "", "frame": "52"}
{"x": 16, "y": 6, "text": "\u013e", "color": "111 bold", "tags": [], "group": "", "frame": "52"}
{"x": 16, "y": 7, "text": "\u00d5", "color": "111 bold", "tags": [], "group": "", "frame": "52"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "141 bold", "tags": [], "group": "", "frame": "53"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "171 bold", "tags": [], "group": "", "frame": "54"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "201 bold", "tags": [], "group": "", "frame": "55"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "171 bold", "tags": [], "group": "", "frame": "56"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "141 bold", "tags": [], "group": "", "frame": "57"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "111 bold", "tags": [], "group": "", "frame": "58"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "81 bold", "tags": [], "group": "", "frame": "59"}
{"x": 39, "y": 4, "text": "\u25ef", "color": "51 bold", "tags": [], "group": "", "frame": "60"}
{"x": 15, "y": 3, "text": "\u00cc", "color": "141 bold", "tags": "[0]", "group": "", "frame": "53"}
{"x": 15, "y": 4, "text": "\u012c", "color": "141 bold", "tags": [], "group": "", "frame": "53"}
{"x": 15, "y": 5, "text": "\u012a", "color": "141 bold", "tags": [], "group": "", "frame": "53"}
{"x": 15, "y": 6, "text": "\u012c", "color": "141 bold", "tags": [], "group": "", "frame": "53"}
{"x": 15, "y": 7, "text": "\u010c", "color": "141 bold", "tags": [], "group": "", "frame": "53"}
{"x": 64, "y": 4, "text": "\u00b8", "color": "141 bold", "tags": [], "group": "", "frame": "53"}
{"x": 64, "y": 5, "text": "\u013a", "color": "141 bold", "tags": [], "group": "", "frame": "53"}
{"x": 64, "y": 6, "text": "\u0135", "color": "243", "tags": [], "group": "", "frame": "53"}
{"x": 64, "y": 7, "text": "\u1e41", "color": "245", "tags": [], "group": "", "frame": "53"}
{"x": 64, "y": 6, "text": "\u012c", "color": "243", "tags": [], "group": "", "frame": ""}
{"x": 63, "y": 6, "text": "\u013e", "color": "243", "tags": [], "group": "", "frame": ""}
{"x": 37, "y": 2, "text": "_", "color": "247 bold", "tags": [], "group": "", "frame": ""}
{"x": 64, "y": 7, "text": "\u1e3e", "color": "245", "tags": [], "group": "", "frame": ""}
{"x": 66, "y": 7, "text": "\u1e3e", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 34, "y": 7, "text": "\u0138", "color": "251", "tags": [], "group": "", "frame": ""}
{"x": 64, "y": 6, "text": "\u012c", "color": "141 bold", "tags": [], "group": "", "frame": "53"}
{"x": 64, "y": 7, "text": "\u1e3e", "color": "141 bold", "tags": [], "group": "", "frame": "53"}
{"x": 34, "y": 7, "text": "\u0138", "color": "171 bold", "tags": [], "group": "", "frame": "35"}
{"x": 37, "y": 2, "text": "_", "color": "81 bold", "tags": [], "group": "", "frame": "32"}
{"x": 63, "y": 6, "text": "\u013e", "color": "111 bold", "tags": [], "group": "", "frame": "52"}
{"x": 66, "y": 7, "text": "\u1e3e", "color": "201 bold", "tags": [], "group": "", "frame": "55"}
{"x": 66, "y": 6, "text": "\u012c", "color": "201 bold", "tags": [], "group": "", "frame": "55"}
{"x": 66, "y": 5, "text": "\u012a", "color": "201 bold", "tags": [], "group": "", "frame": "55"}
{"x": 66, "y": 4, "text": "\u012c", "color": "201 bold", "tags": [], "group": "", "frame": "55"}
{"x": 66, "y": 3, "text": "\u00cc", "color": "201 bold", "tags": "[0]", "group": "", "frame": "55"}
{"x": 13, "y": 7, "text": "\u00b9", "color": "201 bold", "tags": [], "group": "", "frame": "55"}
{"x": 13, "y": 6, "text": "\u0135", "color": "201 bold", "tags": [], "group": "", "frame": "55"}
{"x": 13, "y": 5, "text": "\u013a", "color": "201 bold", "tags": [], "group": "", "frame": "55"}
{"x": 13, "y": 4, "text": "\u00b8", "color": "201 bold", "tags": [], "group": "", "frame": "55"}
{"x": 12, "y": 7, "text": "\u1e40", "color": "171 bold", "tags": [], "group": "", "frame": "56"}
{"x": 12, "y": 6, "text": "\u013e", "color": "171 bold", "tags": [], "group": "", "frame": "56"}
{"x": 12, "y": 5, "text": "\u00cc", "color": "171 bold", "tags": [], "group": "", "frame": "56"}
{"x": 12, "y": 4, "text": "\u0140", "color": "171 bold", "tags": [], "group": "", "frame": "56"}
{"x": 67, "y": 7, "text": "\u0114", "color": "171 bold", "tags": [], "group": "", "frame": "56"}
{"x": 67, "y": 6, "text": "\u013e", "color": "171 bold", "tags": [], "group": "", "frame": "56"}
{"x": 67, "y": 5, "text": "\u013e", "color": "171 bold", "tags": [], "group": "", "frame": "56"}
{"x": 67, "y": 4, "text": "\u013e", "color": "171 bold", "tags": [], "group": "", "frame": "56"}
{"x": 67, "y": 3, "text": "\u00ec", "color": "171 bold", "tags": [], "group": "", "frame": "56"}
{"x": 68, "y": 6, "text": "\u00da", "color": "141 bold", "tags": [], "group": "", "frame": "57"}
{"x": 68, "y": 5, "text": ",", "color": "141 bold", "tags": [], "group": "", "frame": "57"}
{"x": 11, "y": 7, "text": "\u0158", "color": "141 bold", "tags": [], "group": "", "frame": "57"}
{"x": 11, "y": 6, "text": "\u00b8", "color": "141 bold", "tags": [], "group": "", "frame": "57"}
{"x": 11, "y": 5, "text": "`", "color": "141 bold", "tags": [], "group": "", "frame": "57"}
{"x": 11, "y": 4, "text": "\u00d9", "color": "141 bold", "tags": [], "group": "", "frame": "57"}
{"x": 11, "y": 3, "text": ",", "color": "141 bold", "tags": [], "group": "", "frame": "57"}
{"x": 10, "y": 7, "text": "\u0114", "color": "111 bold", "tags": [], "group": "", "frame": "58"}
{"x": 10, "y": 4, "text": "\u00aa", "color": "111 bold", "tags": [], "group": "", "frame": "58"}
{"x": 10, "y": 3, "text": "\u0131", "color": "111 bold", "tags": [], "group": "", "frame": "58"}
{"x": 69, "y": 6, "text": "\u00d9", "color": "111 bold", "tags": [], "group": "", "frame": "58"}
{"x": 69, "y": 5, "text": "\\", "color": "111 bold", "tags": [], "group": "", "frame": "58"}
{"x": 70, "y": 7, "text": "\u0158", "color": "81 bold", "tags": [], "group": "", "frame": "59"}
{"x": 70, "y": 6, "text": "\u012c", "color": "81 bold", "tags": [], "group": "", "frame": "59"}
{"x": 70, "y": 5, "text": "\u013e", "color": "81 bold", "tags": [], "group": "", "frame": "59"}
{"x": 70, "y": 4, "text": "\u013e", "color": "81 bold", "tags": [], "group": "", "frame": "59"}
{"x": 70, "y": 3, "text": "\u00ed", "color": "81 bold", "tags": [], "group": "", "frame": "59"}
{"x": 71, "y": 7, "text": "\u2591", "color": "244", "tags": [], "group": "", "frame": ""}
{"x": 9, "y": 3, "text": "\u00ec", "color": "81 bold", "tags": [], "group": "", "frame": "59"}
{"x": 9, "y": 4, "text": "\u00dd", "color": "81 bold", "tags": [], "group": "", "frame": "59"}
{"x": 9, "y": 5, "text": "\u013a", "color": "81 bold", "tags": [], "group": "", "frame": "59"}
{"x": 9, "y": 6, "text": "\u013e", "color": "81 bold", "tags": [], "group": "", "frame": "59"}
{"x": 9, "y": 7, "text": "\u0164", "color": "81 bold", "tags": [], "group": "", "frame": "59"}
{"x": 8, "y": 3, "text": "\u00cc", "color": "51 bold", "tags": "[0]", "group": "", "frame": "60"}
{"x": 8, "y": 4, "text": "\u012c", "color": "51 bold", "tags": [], "group": "", "frame": "60"}
{"x": 8, "y": 5, "text": "\u012a", "color": "51 bold", "tags": [], "group": "", "frame": "60"}
{"x": 8, "y": 6, "text": "\u012c", "color": "51 bold", "tags": [], "group": "", "frame": "60"}
{"x": 8, "y": 7, "text": "\u00aa", "color": "51 bold", "tags": [], "group": "", "frame": "60"}
{"x": 71, "y": 3, "text": "\u00cd", "color": "51 bold", "tags": [], "group": "", "frame": "60"}
{"x": 71, "y": 4, "text": "\u012c", "color": "51 bold", "tags": [], "group": "", "frame": "60"}
{"x": 71, "y": 5, "text": "\u013a", "color": "51 bold", "tags": [], "group": "", "frame": "60"}
{"x": 71, "y": 6, "text": "\u013e", "color": "51 bold", "tags": [], "group": "", "frame": "60"}
{"x": 71, "y": 7, "text": "\u2591", "color": "51 bold", "tags": [], "group": "", "frame": "60"}
{"x": 38, "y": 2, "text": "\u00b8", "color": "51 bold", "tags": [], "group": "", "frame": "31"}
{"x": 41, "y": 2, "text": "\u00b8", "color": "51 bold", "tags": [], "group": "", "frame": "31"}
{"x": 38, "y": 3, "text": "\u012a", "color": "80 bold", "tags": [], "group": "", "frame": "32"}
{"x": 38, "y": 4, "text": "\u0128", "color": "80 bold", "tags": [], "group": "", "frame": "32"}
{"x": 38, "y": 5, "text": "\u013e", "color": "80 bold", "tags": [], "group": "", "frame": "32"}
{"x": 39, "y": 5, "text": "_", "color": "80 bold", "tags": [], "group": "", "frame": "32"}
{"x": 40, "y": 5, "text": "_", "color": "80 bold", "tags": [], "group": "", "frame": "32"}
{"x": 41, "y": 5, "text": "\u013e", "color": "80 bold", "tags": [], "group": "", "frame": "32"}
{"x": 41, "y": 4, "text": "\u0128", "color": "80 bold", "tags": [], "group": "", "frame": "32"}
{"x": 41, "y": 3, "text": "\u012a", "color": "80 bold", "tags": [], "group": "", "frame": "32"}
{"x": 41, "y": 2, "text": "\u00b8", "color": "80 bold", "tags": [], "group": "", "frame": "32"}
{"x": 40, "y": 2, "text": "_", "color": "80 bold", "tags": [], "group": "", "frame": "32"}
{"x": 39, "y": 2, "text": "_", "color": "80 bold", "tags": [], "group": "", "frame": "32"}
{"x": 38, "y": 2, "text": "\u00b8", "color": "80 bold", "tags": [], "group": "", "frame": "32"}
{"x": 38, "y": 2, "text": "\u00b8", "color": "109 bold", "tags": [], "group": "", "frame": "33"}
{"x": 39, "y": 2, "text": "_", "color": "109 bold", "tags": [], "group": "", "frame": "33"}
{"x": 40, "y": 2, "text": "_", "color": "109 bold", "tags": [], "group": "", "frame": "33"}
{"x": 41, "y": 2, "text": "\u00b8", "color": "109 bold", "tags": [], "group": "", "frame": "33"}
{"x": 41, "y": 3, "text": "\u012a", "color": "109 bold", "tags": [], "group": "", "frame": "33"}
{"x": 41, "y": 4, "text": "\u0128", "color": "109 bold", "tags": [], "group": "", "frame": "33"}
{"x": 41, "y": 5, "text": "\u013e", "color": "109 bold", "tags": [], "group": "", "frame": "33"}
{"x": 40, "y": 5, "text": "_", "color": "109 bold", "tags": [], "group": "", "frame": "33"}
{"x": 39, "y": 5, "text": "_", "color": "109 bold", "tags": [], "group": "", "frame": "33"}
{"x": 38, "y": 5, "text": "\u013e", "color": "109 bold", "tags": " ", "group": "", "frame": "33"}
{"x": 38, "y": 4, "text": "\u0128", "color": "109 bold", "tags": [], "group": "", "frame": "33"}
{"x": 38, "y": 3, "text": "\u012a", "color": "109 bold", "tags": [], "group": "", "frame": "33"}
{"x": 37, "y": 2, "text": "_", "color": "110 bold", "tags": [], "group": "", "frame": "33"}
{"x": 42, "y": 2, "text": "_", "color": "110 bold", "tags": [], "group": "", "frame": "33"}
{"x": 42, "y": 5, "text": "_", "color": "110 bold", "tags": [], "group": "", "frame": "33"}
{"x": 37, "y": 5, "text": "_", "color": "110 bold", "tags": [], "group": "", "frame": "33"}
{"x": 37, "y": 5, "text": "_", "color": "139 bold", "tags": [], "group": "", "frame": "34"}
{"x": 37, "y": 2, "text": "_", "color": "139 bold", "tags": [], "group": "", "frame": "34"}
{"x": 42, "y": 2, "text": "_", "color": "139 bold", "tags": [], "group": "", "frame": "34"}
{"x": 42, "y": 5, "text": "_", "color": "139 bold", "tags": [], "group": "", "frame": "34"}
{"x": 34, "y": 4, "text": "\u00b8", "color": "200 bold", "tags": [], "group": "", "frame": "36"}
{"x": 34, "y": 5, "text": "\u0135", "color": "200 bold", "tags": [], "group": "", "frame": "36"}
{"x": 34, "y": 6, "text": "\u00b4", "color": "200 bold", "tags": [], "group": "", "frame": "36"}
{"x": 34, "y": 7, "text": "\u0138", "color": "200 bold", "tags": [], "group": "", "frame": "36"}
{"x": 45, "y": 3, "text": "\u00cc", "color": "200 bold", "tags": "[0]", "group": "", "frame": "36"}
{"x": 45, "y": 4, "text": "\u012c", "color": "200 bold", "tags": [], "group": "", "frame": "36"}
{"x": 45, "y": 5, "text": "\u012a", "color": "200 bold", "tags": [], "group": "", "frame": "36"}
{"x": 45, "y": 6, "text": "\u012c", "color": "200 bold", "tags": [], "group": "", "frame": "36"}
{"x": 45, "y": 7, "text": "\u00aa", "color": "200 bold", "tags": [], "group": "", "frame": "36"}
{"x": 46, "y": 3, "text": "\u00ec", "color": "170 bold", "tags": [], "group": "", "frame": "37"}
{"x": 46, "y": 4, "text": "\u00dd", "color": "170 bold", "tags": [], "group": "", "frame": "37"}
{"x": 46, "y": 5, "text": "\u013a", "color": "170 bold", "tags": [], "group": "", "frame": "37"}
{"x": 46, "y": 6, "text": "\u013e", "color": "170 bold", "tags": [], "group": "", "frame": "37"}
{"x": 46, "y": 7, "text": "\u010e", "color": "170 bold", "tags": [], "group": "", "frame": "37"}
{"x": 33, "y": 4, "text": "\u0140", "color": "170 bold", "tags": [], "group": "", "frame": "37"}
{"x": 33, "y": 5, "text": "\u00cc", "color": "170 bold", "tags": [], "group": "", "frame": "37"}
{"x": 33, "y": 6, "text": "\u00dd", "color": "170 bold", "tags": [], "group": "", "frame": "37"}
{"x": 33, "y": 7, "text": "\u00d1", "color": "170 bold", "tags": [], "group": "", "frame": "37"}
{"x": 34, "y": 4, "text": "\u00b8", "color": "169 bold", "tags": [], "group": "", "frame": "37"}
{"x": 34, "y": 5, "text": "\u0135", "color": "169 bold", "tags": [], "group": "", "frame": "37"}
{"x": 34, "y": 6, "text": "\u00b4", "color": "169 bold", "tags": [], "group": "", "frame": "37"}
{"x": 34, "y": 7, "text": "\u0138", "color": "169 bold", "tags": [], "group": "", "frame": "37"}
{"x": 45, "y": 7, "text": "\u00aa", "color": "169 bold", "tags": [], "group": "", "frame": "37"}
{"x": 45, "y": 6, "text": "\u012c", "color": "169 bold", "tags": [], "group": "", "frame": "37"}
{"x": 45, "y": 5, "text": "\u012a", "color": "169 bold", "tags": [], "group": "", "frame": "37"}
{"x": 45, "y": 4, "text": "\u012c", "color": "169 bold", "tags": [], "group": "", "frame": "37"}
{"x": 45, "y": 3, "text": "\u00cc", "color": "169 bold", "tags": "[0]", "group": "", "frame": "37"}
{"x": 47, "y": 7, "text": "\u0114", "color": "140 bold", "tags": [], "group": "", "frame": "38"}
{"x": 47, "y": 4, "text": "\u00aa", "color": "140 bold", "tags": [], "group": "", "frame": "38"}
{"x": 47, "y": 3, "text": "\u0131", "color": "140 bold", "tags": [], "group": "", "frame": "38"}
{"x": 46, "y": 7, "text": "\u010e", "color": "139 bold", "tags": [], "group": "", "frame": "38"}
{"x": 46, "y": 6, "text": "\u013e", "color": "139 bold", "tags": [], "group": "", "frame": "38"}
{"x": 46, "y": 5, "text": "\u013a", "color": "139 bold", "tags": [], "group": "", "frame": "38"}
{"x": 46, "y": 4, "text": "\u00dd", "color": "139 bold", "tags": [], "group": "", "frame": "38"}
{"x": 46, "y": 3, "text": "\u00ec", "color": "139 bold", "tags": [], "group": "", "frame": "38"}
{"x": 32, "y": 7, "text": "`", "color": "140 bold", "tags": [], "group": "", "frame": "38"}
{"x": 32, "y": 6, "text": "\u013e", "color": "140 bold", "tags": [], "group": "", "frame": "38"}
{"x": 32, "y": 5, "text": "`", "color": "140 bold", "tags": [], "group": "", "frame": "38"}
{"x": 33, "y": 7, "text": "\u00d1", "color": "139 bold", "tags": [], "group": "", "frame": "38"}
{"x": 33, "y": 6, "text": "\u00dd", "color": "139 bold", "tags": [], "group": "", "frame": "38"}
{"x": 33, "y": 5, "text": "\u00cc", "color": "139 bold", "tags": [], "group": "", "frame": "38"}
{"x": 33, "y": 4, "text": "\u0140", "color": "139 bold", "tags": [], "group": "", "frame": "38"}
{"x": 31, "y": 7, "text": "\u00b4", "color": "110 bold", "tags": [], "group": "", "frame": "39"}