wc3maptranslator 3.0.3 → 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (100) hide show
  1. package/.codeclimate.yml +0 -1
  2. package/.eslintignore +0 -1
  3. package/.github/workflows/codeql-analysis.yml +54 -0
  4. package/.nycrc +1 -2
  5. package/.travis.yml +1 -2
  6. package/CHANGELOG.md +78 -0
  7. package/LICENSE.md +23 -0
  8. package/README.md +68 -75
  9. package/index.js +11 -15
  10. package/index.ts +12 -30
  11. package/lib/CommonInterfaces.ts +22 -0
  12. package/lib/HexBuffer.ts +11 -14
  13. package/lib/W3Buffer.ts +7 -3
  14. package/lib/translators/CamerasTranslator.ts +36 -41
  15. package/lib/translators/DoodadsTranslator.ts +57 -55
  16. package/lib/translators/ImportsTranslator.ts +29 -31
  17. package/lib/translators/InfoTranslator.ts +252 -204
  18. package/lib/translators/{object/ObjectsTranslator.ts → ObjectsTranslator.ts} +84 -82
  19. package/lib/translators/RegionsTranslator.ts +40 -58
  20. package/lib/translators/SoundsTranslator.ts +112 -96
  21. package/lib/translators/StringsTranslator.ts +23 -49
  22. package/lib/translators/TerrainTranslator.ts +166 -97
  23. package/lib/translators/UnitsTranslator.ts +98 -97
  24. package/lib/translators/index.ts +0 -1
  25. package/package.json +23 -16
  26. package/test/.mocharc.json +4 -0
  27. package/test/HexBufferTest.ts +11 -15
  28. package/test/TranslatorReversion.ts +104 -115
  29. package/test/W3BufferTest.ts +19 -13
  30. package/test/data/cameras.json +16 -0
  31. package/test/data/doodads.json +2730 -0
  32. package/test/data/imports.json +386 -0
  33. package/test/data/info.json +250 -0
  34. package/test/data/obj-abilities.json +4892 -0
  35. package/test/data/obj-buffs.json +38 -0
  36. package/test/data/obj-destructables.json +31 -0
  37. package/test/data/obj-doodads.json +38 -0
  38. package/test/data/obj-items.json +31 -0
  39. package/test/data/obj-units.json +40 -0
  40. package/test/data/obj-upgrades.json +38 -0
  41. package/test/data/regions.json +206 -0
  42. package/test/data/sounds.json +50 -0
  43. package/test/data/strings.json +115 -0
  44. package/test/data/terrain.json +1 -0
  45. package/test/data/units.json +452 -0
  46. package/test/data/war3map.doo +0 -0
  47. package/test/data/war3map.imp +0 -0
  48. package/test/data/war3map.j +3442 -0
  49. package/test/data/war3map.shd +0 -0
  50. package/test/data/war3map.w3a +0 -0
  51. package/test/data/war3map.w3b +0 -0
  52. package/test/data/war3map.w3c +0 -0
  53. package/test/data/war3map.w3d +0 -0
  54. package/test/data/war3map.w3e +0 -0
  55. package/test/data/war3map.w3h +0 -0
  56. package/test/data/war3map.w3i +0 -0
  57. package/test/data/war3map.w3q +0 -0
  58. package/test/data/war3map.w3r +0 -0
  59. package/test/data/war3map.w3s +0 -0
  60. package/test/data/war3map.w3t +0 -0
  61. package/test/data/war3map.w3u +0 -0
  62. package/test/data/war3map.wts +631 -0
  63. package/test/data/war3mapUnits.doo +0 -0
  64. package/examples/index.js +0 -123
  65. package/examples/index.ts +0 -134
  66. package/examples/json/cameras.json +0 -16
  67. package/examples/json/doodads.json +0 -28499
  68. package/examples/json/imports.json +0 -10
  69. package/examples/json/info.json +0 -111
  70. package/examples/json/object-abilities.json +0 -31
  71. package/examples/json/object-buffs.json +0 -24
  72. package/examples/json/object-destructables.json +0 -31
  73. package/examples/json/object-doodads.json +0 -24
  74. package/examples/json/object-items.json +0 -45
  75. package/examples/json/object-units.json +0 -45
  76. package/examples/json/object-upgrades.json +0 -31
  77. package/examples/json/regions.json +0 -36
  78. package/examples/json/sounds.json +0 -46
  79. package/examples/json/strings.json +0 -83
  80. package/examples/json/terrain.json +0 -46633
  81. package/examples/json/units.json +0 -332
  82. package/examples/package.json +0 -17
  83. package/examples/tsconfig.json +0 -27
  84. package/examples/war/war3map.doo +0 -0
  85. package/examples/war/war3map.imp +0 -0
  86. package/examples/war/war3map.w3a +0 -0
  87. package/examples/war/war3map.w3b +0 -0
  88. package/examples/war/war3map.w3c +0 -0
  89. package/examples/war/war3map.w3d +0 -0
  90. package/examples/war/war3map.w3e +0 -0
  91. package/examples/war/war3map.w3h +0 -0
  92. package/examples/war/war3map.w3i +0 -0
  93. package/examples/war/war3map.w3q +0 -0
  94. package/examples/war/war3map.w3r +0 -0
  95. package/examples/war/war3map.w3s +0 -0
  96. package/examples/war/war3map.w3t +0 -0
  97. package/examples/war/war3map.w3u +0 -0
  98. package/examples/war/war3map.wts +0 -99
  99. package/lib/translators/index.js +0 -16
  100. package/test/mocha.opts +0 -4
@@ -0,0 +1,2730 @@
1
+ [
2
+ {
3
+ "type": "OOgr",
4
+ "variation": 1,
5
+ "position": [
6
+ -512,
7
+ 1152,
8
+ -128
9
+ ],
10
+ "angle": 269.9777130656439,
11
+ "scale": [
12
+ 1,
13
+ 1,
14
+ 1
15
+ ],
16
+ "skinId": "OOgr",
17
+ "flags": {
18
+ "visible": true,
19
+ "solid": true
20
+ },
21
+ "life": 255,
22
+ "id": 2
23
+ },
24
+ {
25
+ "type": "YOks",
26
+ "variation": 0,
27
+ "position": [
28
+ 640,
29
+ 384,
30
+ -25.6
31
+ ],
32
+ "angle": 224.0264978961519,
33
+ "scale": [
34
+ 0.9,
35
+ 0.9,
36
+ 0.9
37
+ ],
38
+ "skinId": "YOks",
39
+ "flags": {
40
+ "visible": false,
41
+ "solid": false
42
+ },
43
+ "life": 255,
44
+ "id": 18
45
+ },
46
+ {
47
+ "type": "YOks",
48
+ "variation": 0,
49
+ "position": [
50
+ -640,
51
+ -896,
52
+ -25.6
53
+ ],
54
+ "angle": 44.97718691776963,
55
+ "scale": [
56
+ 0.9,
57
+ 0.9,
58
+ 0.9
59
+ ],
60
+ "skinId": "YOks",
61
+ "flags": {
62
+ "visible": false,
63
+ "solid": false
64
+ },
65
+ "life": 255,
66
+ "id": 21
67
+ },
68
+ {
69
+ "type": "YOks",
70
+ "variation": 0,
71
+ "position": [
72
+ 640,
73
+ -896,
74
+ -25.6
75
+ ],
76
+ "angle": 134.98885653282196,
77
+ "scale": [
78
+ 0.9,
79
+ 0.9,
80
+ 0.9
81
+ ],
82
+ "skinId": "YOks",
83
+ "flags": {
84
+ "visible": false,
85
+ "solid": false
86
+ },
87
+ "life": 255,
88
+ "id": 22
89
+ },
90
+ {
91
+ "type": "OOgr",
92
+ "variation": 1,
93
+ "position": [
94
+ 512,
95
+ 1152,
96
+ -128
97
+ ],
98
+ "angle": 269.9777130656439,
99
+ "scale": [
100
+ 1,
101
+ 1,
102
+ 1
103
+ ],
104
+ "skinId": "OOgr",
105
+ "flags": {
106
+ "visible": true,
107
+ "solid": true
108
+ },
109
+ "life": 255,
110
+ "id": 3
111
+ },
112
+ {
113
+ "type": "OOgr",
114
+ "variation": 1,
115
+ "position": [
116
+ -1408,
117
+ 256,
118
+ -128
119
+ ],
120
+ "angle": 269.9777130656439,
121
+ "scale": [
122
+ 1,
123
+ 1,
124
+ 1
125
+ ],
126
+ "skinId": "OOgr",
127
+ "flags": {
128
+ "visible": true,
129
+ "solid": true
130
+ },
131
+ "life": 255,
132
+ "id": 1
133
+ },
134
+ {
135
+ "type": "OOgr",
136
+ "variation": 1,
137
+ "position": [
138
+ 1408,
139
+ -768,
140
+ -128
141
+ ],
142
+ "angle": 269.9777130656439,
143
+ "scale": [
144
+ 1,
145
+ 1,
146
+ 1
147
+ ],
148
+ "skinId": "OOgr",
149
+ "flags": {
150
+ "visible": true,
151
+ "solid": true
152
+ },
153
+ "life": 255,
154
+ "id": 5
155
+ },
156
+ {
157
+ "type": "LWw0",
158
+ "variation": 0,
159
+ "position": [
160
+ 1282.693,
161
+ -3542.79,
162
+ -38.517
163
+ ],
164
+ "angle": 88.98034558381684,
165
+ "scale": [
166
+ 0.6,
167
+ 1,
168
+ 1
169
+ ],
170
+ "skinId": "LWw0",
171
+ "flags": {
172
+ "visible": true,
173
+ "solid": true
174
+ },
175
+ "life": 255,
176
+ "id": 124
177
+ },
178
+ {
179
+ "type": "YOks",
180
+ "variation": 0,
181
+ "position": [
182
+ -640,
183
+ 192,
184
+ -128
185
+ ],
186
+ "angle": 359.01535442897386,
187
+ "scale": [
188
+ 1,
189
+ 1,
190
+ 1
191
+ ],
192
+ "skinId": "YOks",
193
+ "flags": {
194
+ "visible": true,
195
+ "solid": true
196
+ },
197
+ "life": 255,
198
+ "id": 8
199
+ },
200
+ {
201
+ "type": "YOks",
202
+ "variation": 0,
203
+ "position": [
204
+ -640,
205
+ -704,
206
+ -128
207
+ ],
208
+ "angle": 359.01535442897386,
209
+ "scale": [
210
+ 1,
211
+ 1,
212
+ 1
213
+ ],
214
+ "skinId": "YOks",
215
+ "flags": {
216
+ "visible": true,
217
+ "solid": true
218
+ },
219
+ "life": 255,
220
+ "id": 9
221
+ },
222
+ {
223
+ "type": "YOks",
224
+ "variation": 0,
225
+ "position": [
226
+ -448,
227
+ -896,
228
+ -128
229
+ ],
230
+ "angle": 88.98034558381684,
231
+ "scale": [
232
+ 1,
233
+ 1,
234
+ 1
235
+ ],
236
+ "skinId": "YOks",
237
+ "flags": {
238
+ "visible": true,
239
+ "solid": true
240
+ },
241
+ "life": 255,
242
+ "id": 10
243
+ },
244
+ {
245
+ "type": "YOks",
246
+ "variation": 0,
247
+ "position": [
248
+ 448,
249
+ -896,
250
+ -128
251
+ ],
252
+ "angle": 88.98034558381684,
253
+ "scale": [
254
+ 1,
255
+ 1,
256
+ 1
257
+ ],
258
+ "skinId": "YOks",
259
+ "flags": {
260
+ "visible": true,
261
+ "solid": true
262
+ },
263
+ "life": 255,
264
+ "id": 11
265
+ },
266
+ {
267
+ "type": "YOks",
268
+ "variation": 0,
269
+ "position": [
270
+ 640,
271
+ -704,
272
+ -128
273
+ ],
274
+ "angle": 178.99201519886918,
275
+ "scale": [
276
+ 1,
277
+ 1,
278
+ 1
279
+ ],
280
+ "skinId": "YOks",
281
+ "flags": {
282
+ "visible": true,
283
+ "solid": true
284
+ },
285
+ "life": 255,
286
+ "id": 12
287
+ },
288
+ {
289
+ "type": "YOks",
290
+ "variation": 0,
291
+ "position": [
292
+ 640,
293
+ 192,
294
+ -128
295
+ ],
296
+ "angle": 178.99201519886918,
297
+ "scale": [
298
+ 1,
299
+ 1,
300
+ 1
301
+ ],
302
+ "skinId": "YOks",
303
+ "flags": {
304
+ "visible": true,
305
+ "solid": true
306
+ },
307
+ "life": 255,
308
+ "id": 13
309
+ },
310
+ {
311
+ "type": "YOks",
312
+ "variation": 0,
313
+ "position": [
314
+ -448,
315
+ 384,
316
+ -128
317
+ ],
318
+ "angle": 269.0036848139215,
319
+ "scale": [
320
+ 1,
321
+ 1,
322
+ 1
323
+ ],
324
+ "skinId": "YOks",
325
+ "flags": {
326
+ "visible": true,
327
+ "solid": true
328
+ },
329
+ "life": 255,
330
+ "id": 14
331
+ },
332
+ {
333
+ "type": "YOks",
334
+ "variation": 0,
335
+ "position": [
336
+ 448,
337
+ 384,
338
+ -128
339
+ ],
340
+ "angle": 269.0036848139215,
341
+ "scale": [
342
+ 1,
343
+ 1,
344
+ 1
345
+ ],
346
+ "skinId": "YOks",
347
+ "flags": {
348
+ "visible": true,
349
+ "solid": true
350
+ },
351
+ "life": 255,
352
+ "id": 15
353
+ },
354
+ {
355
+ "type": "YOob",
356
+ "variation": 0,
357
+ "position": [
358
+ -1280,
359
+ 384,
360
+ 0
361
+ ],
362
+ "angle": 315.0121957629266,
363
+ "scale": [
364
+ 1,
365
+ 1,
366
+ 1
367
+ ],
368
+ "skinId": "YOob",
369
+ "flags": {
370
+ "visible": true,
371
+ "solid": true
372
+ },
373
+ "life": 255,
374
+ "id": 16
375
+ },
376
+ {
377
+ "type": "LWw0",
378
+ "variation": 0,
379
+ "position": [
380
+ -1275.36,
381
+ -3546.229,
382
+ -33.131
383
+ ],
384
+ "angle": 88.98034558381684,
385
+ "scale": [
386
+ 0.6,
387
+ 1,
388
+ 1
389
+ ],
390
+ "skinId": "LWw0",
391
+ "flags": {
392
+ "visible": true,
393
+ "solid": true
394
+ },
395
+ "life": 255,
396
+ "id": 125
397
+ },
398
+ {
399
+ "type": "LWw0",
400
+ "variation": 0,
401
+ "position": [
402
+ -3287.585,
403
+ -1540.456,
404
+ -35.959
405
+ ],
406
+ "angle": 0,
407
+ "scale": [
408
+ 1,
409
+ 0.6,
410
+ 1
411
+ ],
412
+ "skinId": "LWw0",
413
+ "flags": {
414
+ "visible": true,
415
+ "solid": true
416
+ },
417
+ "life": 255,
418
+ "id": 126
419
+ },
420
+ {
421
+ "type": "YOob",
422
+ "variation": 0,
423
+ "position": [
424
+ -640,
425
+ 1024,
426
+ 0
427
+ ],
428
+ "angle": 315.0121957629266,
429
+ "scale": [
430
+ 1,
431
+ 1,
432
+ 1
433
+ ],
434
+ "skinId": "YOob",
435
+ "flags": {
436
+ "visible": true,
437
+ "solid": true
438
+ },
439
+ "life": 255,
440
+ "id": 19
441
+ },
442
+ {
443
+ "type": "YOob",
444
+ "variation": 0,
445
+ "position": [
446
+ 640,
447
+ 1024,
448
+ 0
449
+ ],
450
+ "angle": 315.0121957629266,
451
+ "scale": [
452
+ 1,
453
+ 1,
454
+ 1
455
+ ],
456
+ "skinId": "YOob",
457
+ "flags": {
458
+ "visible": true,
459
+ "solid": true
460
+ },
461
+ "life": 255,
462
+ "id": 20
463
+ },
464
+ {
465
+ "type": "YOks",
466
+ "variation": 0,
467
+ "position": [
468
+ -640,
469
+ 384,
470
+ -25.6
471
+ ],
472
+ "angle": 313.98087173169114,
473
+ "scale": [
474
+ 0.9,
475
+ 0.9,
476
+ 0.9
477
+ ],
478
+ "skinId": "YOks",
479
+ "flags": {
480
+ "visible": false,
481
+ "solid": false
482
+ },
483
+ "life": 255,
484
+ "id": 17
485
+ },
486
+ {
487
+ "type": "OOgr",
488
+ "variation": 1,
489
+ "position": [
490
+ 512,
491
+ -1664,
492
+ -128
493
+ ],
494
+ "angle": 269.9777130656439,
495
+ "scale": [
496
+ 1,
497
+ 1,
498
+ 1
499
+ ],
500
+ "skinId": "OOgr",
501
+ "flags": {
502
+ "visible": true,
503
+ "solid": true
504
+ },
505
+ "life": 255,
506
+ "id": 6
507
+ },
508
+ {
509
+ "type": "YOob",
510
+ "variation": 0,
511
+ "position": [
512
+ 1280,
513
+ 384,
514
+ 0
515
+ ],
516
+ "angle": 315.0121957629266,
517
+ "scale": [
518
+ 1,
519
+ 1,
520
+ 1
521
+ ],
522
+ "skinId": "YOob",
523
+ "flags": {
524
+ "visible": true,
525
+ "solid": true
526
+ },
527
+ "life": 255,
528
+ "id": 23
529
+ },
530
+ {
531
+ "type": "YOob",
532
+ "variation": 0,
533
+ "position": [
534
+ 1280,
535
+ -896,
536
+ 0
537
+ ],
538
+ "angle": 315.0121957629266,
539
+ "scale": [
540
+ 1,
541
+ 1,
542
+ 1
543
+ ],
544
+ "skinId": "YOob",
545
+ "flags": {
546
+ "visible": true,
547
+ "solid": true
548
+ },
549
+ "life": 255,
550
+ "id": 24
551
+ },
552
+ {
553
+ "type": "YOob",
554
+ "variation": 0,
555
+ "position": [
556
+ -1920,
557
+ 1664,
558
+ 128
559
+ ],
560
+ "angle": 269.0036848139215,
561
+ "scale": [
562
+ 1,
563
+ 1,
564
+ 1
565
+ ],
566
+ "skinId": "YOob",
567
+ "flags": {
568
+ "visible": true,
569
+ "solid": true
570
+ },
571
+ "life": 255,
572
+ "id": 33
573
+ },
574
+ {
575
+ "type": "OOgr",
576
+ "variation": 1,
577
+ "position": [
578
+ 1408,
579
+ 256,
580
+ -128
581
+ ],
582
+ "angle": 269.9777130656439,
583
+ "scale": [
584
+ 1,
585
+ 1,
586
+ 1
587
+ ],
588
+ "skinId": "OOgr",
589
+ "flags": {
590
+ "visible": true,
591
+ "solid": true
592
+ },
593
+ "life": 255,
594
+ "id": 4
595
+ },
596
+ {
597
+ "type": "YOob",
598
+ "variation": 0,
599
+ "position": [
600
+ 640,
601
+ -1536,
602
+ 0
603
+ ],
604
+ "angle": 315.0121957629266,
605
+ "scale": [
606
+ 1,
607
+ 1,
608
+ 1
609
+ ],
610
+ "skinId": "YOob",
611
+ "flags": {
612
+ "visible": true,
613
+ "solid": true
614
+ },
615
+ "life": 255,
616
+ "id": 27
617
+ },
618
+ {
619
+ "type": "YOob",
620
+ "variation": 0,
621
+ "position": [
622
+ -640,
623
+ -1536,
624
+ 0
625
+ ],
626
+ "angle": 315.0121957629266,
627
+ "scale": [
628
+ 1,
629
+ 1,
630
+ 1
631
+ ],
632
+ "skinId": "YOob",
633
+ "flags": {
634
+ "visible": true,
635
+ "solid": true
636
+ },
637
+ "life": 255,
638
+ "id": 28
639
+ },
640
+ {
641
+ "type": "LWw0",
642
+ "variation": 0,
643
+ "position": [
644
+ -3290.696,
645
+ 1020.421,
646
+ -33.725
647
+ ],
648
+ "angle": 0,
649
+ "scale": [
650
+ 1,
651
+ 0.6,
652
+ 1
653
+ ],
654
+ "skinId": "LWw0",
655
+ "flags": {
656
+ "visible": true,
657
+ "solid": true
658
+ },
659
+ "life": 255,
660
+ "id": 127
661
+ },
662
+ {
663
+ "type": "OOgr",
664
+ "variation": 1,
665
+ "position": [
666
+ -1408,
667
+ -768,
668
+ -128
669
+ ],
670
+ "angle": 269.9777130656439,
671
+ "scale": [
672
+ 1,
673
+ 1,
674
+ 1
675
+ ],
676
+ "skinId": "OOgr",
677
+ "flags": {
678
+ "visible": true,
679
+ "solid": true
680
+ },
681
+ "life": 255,
682
+ "id": 0
683
+ },
684
+ {
685
+ "type": "YOob",
686
+ "variation": 0,
687
+ "position": [
688
+ -1280,
689
+ -896,
690
+ 0
691
+ ],
692
+ "angle": 315.0121957629266,
693
+ "scale": [
694
+ 1,
695
+ 1,
696
+ 1
697
+ ],
698
+ "skinId": "YOob",
699
+ "flags": {
700
+ "visible": true,
701
+ "solid": true
702
+ },
703
+ "life": 255,
704
+ "id": 31
705
+ },
706
+ {
707
+ "type": "YOob",
708
+ "variation": 0,
709
+ "position": [
710
+ -1920,
711
+ -2176,
712
+ 128
713
+ ],
714
+ "angle": 269.0036848139215,
715
+ "scale": [
716
+ 1,
717
+ 1,
718
+ 1
719
+ ],
720
+ "skinId": "YOob",
721
+ "flags": {
722
+ "visible": true,
723
+ "solid": true
724
+ },
725
+ "life": 255,
726
+ "id": 32
727
+ },
728
+ {
729
+ "type": "OOgr",
730
+ "variation": 1,
731
+ "position": [
732
+ -512,
733
+ -1664,
734
+ -128
735
+ ],
736
+ "angle": 269.9777130656439,
737
+ "scale": [
738
+ 1,
739
+ 1,
740
+ 1
741
+ ],
742
+ "skinId": "OOgr",
743
+ "flags": {
744
+ "visible": true,
745
+ "solid": true
746
+ },
747
+ "life": 255,
748
+ "id": 7
749
+ },
750
+ {
751
+ "type": "YOob",
752
+ "variation": 0,
753
+ "position": [
754
+ 1920,
755
+ 1664,
756
+ 128
757
+ ],
758
+ "angle": 269.0036848139215,
759
+ "scale": [
760
+ 1,
761
+ 1,
762
+ 1
763
+ ],
764
+ "skinId": "YOob",
765
+ "flags": {
766
+ "visible": true,
767
+ "solid": true
768
+ },
769
+ "life": 255,
770
+ "id": 34
771
+ },
772
+ {
773
+ "type": "YOob",
774
+ "variation": 0,
775
+ "position": [
776
+ 1920,
777
+ -2176,
778
+ 128
779
+ ],
780
+ "angle": 269.0036848139215,
781
+ "scale": [
782
+ 1,
783
+ 1,
784
+ 1
785
+ ],
786
+ "skinId": "YOob",
787
+ "flags": {
788
+ "visible": true,
789
+ "solid": true
790
+ },
791
+ "life": 255,
792
+ "id": 35
793
+ },
794
+ {
795
+ "type": "YOob",
796
+ "variation": 0,
797
+ "position": [
798
+ -1152,
799
+ -1792,
800
+ 0
801
+ ],
802
+ "angle": 269.0036848139215,
803
+ "scale": [
804
+ 1,
805
+ 1,
806
+ 1
807
+ ],
808
+ "skinId": "YOob",
809
+ "flags": {
810
+ "visible": true,
811
+ "solid": true
812
+ },
813
+ "life": 255,
814
+ "id": 36
815
+ },
816
+ {
817
+ "type": "YOob",
818
+ "variation": 0,
819
+ "position": [
820
+ -1536,
821
+ -1408,
822
+ 0
823
+ ],
824
+ "angle": 269.0036848139215,
825
+ "scale": [
826
+ 1,
827
+ 1,
828
+ 1
829
+ ],
830
+ "skinId": "YOob",
831
+ "flags": {
832
+ "visible": true,
833
+ "solid": true
834
+ },
835
+ "life": 255,
836
+ "id": 37
837
+ },
838
+ {
839
+ "type": "YOob",
840
+ "variation": 0,
841
+ "position": [
842
+ -1536,
843
+ 896,
844
+ 0
845
+ ],
846
+ "angle": 269.0036848139215,
847
+ "scale": [
848
+ 1,
849
+ 1,
850
+ 1
851
+ ],
852
+ "skinId": "YOob",
853
+ "flags": {
854
+ "visible": true,
855
+ "solid": true
856
+ },
857
+ "life": 255,
858
+ "id": 38
859
+ },
860
+ {
861
+ "type": "YOob",
862
+ "variation": 0,
863
+ "position": [
864
+ -1152,
865
+ 1280,
866
+ 0
867
+ ],
868
+ "angle": 269.0036848139215,
869
+ "scale": [
870
+ 1,
871
+ 1,
872
+ 1
873
+ ],
874
+ "skinId": "YOob",
875
+ "flags": {
876
+ "visible": true,
877
+ "solid": true
878
+ },
879
+ "life": 255,
880
+ "id": 39
881
+ },
882
+ {
883
+ "type": "YOob",
884
+ "variation": 0,
885
+ "position": [
886
+ 1152,
887
+ 1280,
888
+ 0
889
+ ],
890
+ "angle": 269.0036848139215,
891
+ "scale": [
892
+ 1,
893
+ 1,
894
+ 1
895
+ ],
896
+ "skinId": "YOob",
897
+ "flags": {
898
+ "visible": true,
899
+ "solid": true
900
+ },
901
+ "life": 255,
902
+ "id": 40
903
+ },
904
+ {
905
+ "type": "YOob",
906
+ "variation": 0,
907
+ "position": [
908
+ 1536,
909
+ 896,
910
+ 0
911
+ ],
912
+ "angle": 269.0036848139215,
913
+ "scale": [
914
+ 1,
915
+ 1,
916
+ 1
917
+ ],
918
+ "skinId": "YOob",
919
+ "flags": {
920
+ "visible": true,
921
+ "solid": true
922
+ },
923
+ "life": 255,
924
+ "id": 41
925
+ },
926
+ {
927
+ "type": "YOob",
928
+ "variation": 0,
929
+ "position": [
930
+ 1536,
931
+ -1408,
932
+ 0
933
+ ],
934
+ "angle": 269.0036848139215,
935
+ "scale": [
936
+ 1,
937
+ 1,
938
+ 1
939
+ ],
940
+ "skinId": "YOob",
941
+ "flags": {
942
+ "visible": true,
943
+ "solid": true
944
+ },
945
+ "life": 255,
946
+ "id": 42
947
+ },
948
+ {
949
+ "type": "YOob",
950
+ "variation": 0,
951
+ "position": [
952
+ 1152,
953
+ -1792,
954
+ 0
955
+ ],
956
+ "angle": 269.0036848139215,
957
+ "scale": [
958
+ 1,
959
+ 1,
960
+ 1
961
+ ],
962
+ "skinId": "YOob",
963
+ "flags": {
964
+ "visible": true,
965
+ "solid": true
966
+ },
967
+ "life": 255,
968
+ "id": 43
969
+ },
970
+ {
971
+ "type": "YOfs",
972
+ "variation": 0,
973
+ "position": [
974
+ -546.787,
975
+ 1170.946,
976
+ -79.416
977
+ ],
978
+ "angle": 269.0036848139215,
979
+ "scale": [
980
+ 1,
981
+ 1,
982
+ 1
983
+ ],
984
+ "skinId": "YOfs",
985
+ "flags": {
986
+ "visible": true,
987
+ "solid": true
988
+ },
989
+ "life": 255,
990
+ "id": 44
991
+ },
992
+ {
993
+ "type": "YOfs",
994
+ "variation": 0,
995
+ "position": [
996
+ -483.355,
997
+ 1176.967,
998
+ -79.976
999
+ ],
1000
+ "angle": 269.0036848139215,
1001
+ "scale": [
1002
+ 1,
1003
+ 1,
1004
+ 1
1005
+ ],
1006
+ "skinId": "YOfs",
1007
+ "flags": {
1008
+ "visible": true,
1009
+ "solid": true
1010
+ },
1011
+ "life": 255,
1012
+ "id": 45
1013
+ },
1014
+ {
1015
+ "type": "YOfs",
1016
+ "variation": 0,
1017
+ "position": [
1018
+ -548.141,
1019
+ 1120.609,
1020
+ -69.331
1021
+ ],
1022
+ "angle": 269.0036848139215,
1023
+ "scale": [
1024
+ 1,
1025
+ 1,
1026
+ 1
1027
+ ],
1028
+ "skinId": "YOfs",
1029
+ "flags": {
1030
+ "visible": true,
1031
+ "solid": true
1032
+ },
1033
+ "life": 255,
1034
+ "id": 46
1035
+ },
1036
+ {
1037
+ "type": "YOfs",
1038
+ "variation": 0,
1039
+ "position": [
1040
+ -486.512,
1041
+ 1131.57,
1042
+ -86.15
1043
+ ],
1044
+ "angle": 269.0036848139215,
1045
+ "scale": [
1046
+ 1,
1047
+ 1,
1048
+ 1
1049
+ ],
1050
+ "skinId": "YOfs",
1051
+ "flags": {
1052
+ "visible": true,
1053
+ "solid": true
1054
+ },
1055
+ "life": 255,
1056
+ "id": 47
1057
+ },
1058
+ {
1059
+ "type": "YOfs",
1060
+ "variation": 0,
1061
+ "position": [
1062
+ 482.421,
1063
+ 1169.286,
1064
+ -85.13
1065
+ ],
1066
+ "angle": 269.0036848139215,
1067
+ "scale": [
1068
+ 1,
1069
+ 1,
1070
+ 1
1071
+ ],
1072
+ "skinId": "YOfs",
1073
+ "flags": {
1074
+ "visible": true,
1075
+ "solid": true
1076
+ },
1077
+ "life": 255,
1078
+ "id": 48
1079
+ },
1080
+ {
1081
+ "type": "YOfs",
1082
+ "variation": 0,
1083
+ "position": [
1084
+ 482.957,
1085
+ 1116.455,
1086
+ -71.477
1087
+ ],
1088
+ "angle": 269.0036848139215,
1089
+ "scale": [
1090
+ 1,
1091
+ 1,
1092
+ 1
1093
+ ],
1094
+ "skinId": "YOfs",
1095
+ "flags": {
1096
+ "visible": true,
1097
+ "solid": true
1098
+ },
1099
+ "life": 255,
1100
+ "id": 49
1101
+ },
1102
+ {
1103
+ "type": "YOfs",
1104
+ "variation": 0,
1105
+ "position": [
1106
+ 538.35,
1107
+ 1122.712,
1108
+ -78.392
1109
+ ],
1110
+ "angle": 269.0036848139215,
1111
+ "scale": [
1112
+ 1,
1113
+ 1,
1114
+ 1
1115
+ ],
1116
+ "skinId": "YOfs",
1117
+ "flags": {
1118
+ "visible": true,
1119
+ "solid": true
1120
+ },
1121
+ "life": 255,
1122
+ "id": 50
1123
+ },
1124
+ {
1125
+ "type": "YOfs",
1126
+ "variation": 0,
1127
+ "position": [
1128
+ 539.244,
1129
+ 1168.34,
1130
+ -87.894
1131
+ ],
1132
+ "angle": 269.0036848139215,
1133
+ "scale": [
1134
+ 1,
1135
+ 1,
1136
+ 1
1137
+ ],
1138
+ "skinId": "YOfs",
1139
+ "flags": {
1140
+ "visible": true,
1141
+ "solid": true
1142
+ },
1143
+ "life": 255,
1144
+ "id": 51
1145
+ },
1146
+ {
1147
+ "type": "YOfs",
1148
+ "variation": 0,
1149
+ "position": [
1150
+ 1389.221,
1151
+ 273.479,
1152
+ -94.307
1153
+ ],
1154
+ "angle": 269.0036848139215,
1155
+ "scale": [
1156
+ 1,
1157
+ 1,
1158
+ 1
1159
+ ],
1160
+ "skinId": "YOfs",
1161
+ "flags": {
1162
+ "visible": true,
1163
+ "solid": true
1164
+ },
1165
+ "life": 255,
1166
+ "id": 52
1167
+ },
1168
+ {
1169
+ "type": "YOfs",
1170
+ "variation": 0,
1171
+ "position": [
1172
+ 1393.447,
1173
+ 220.532,
1174
+ -82.012
1175
+ ],
1176
+ "angle": 269.0036848139215,
1177
+ "scale": [
1178
+ 1,
1179
+ 1,
1180
+ 1
1181
+ ],
1182
+ "skinId": "YOfs",
1183
+ "flags": {
1184
+ "visible": true,
1185
+ "solid": true
1186
+ },
1187
+ "life": 255,
1188
+ "id": 53
1189
+ },
1190
+ {
1191
+ "type": "YOfs",
1192
+ "variation": 0,
1193
+ "position": [
1194
+ 1442.062,
1195
+ 225.694,
1196
+ -71.696
1197
+ ],
1198
+ "angle": 269.0036848139215,
1199
+ "scale": [
1200
+ 1,
1201
+ 1,
1202
+ 1
1203
+ ],
1204
+ "skinId": "YOfs",
1205
+ "flags": {
1206
+ "visible": true,
1207
+ "solid": true
1208
+ },
1209
+ "life": 255,
1210
+ "id": 54
1211
+ },
1212
+ {
1213
+ "type": "YOfs",
1214
+ "variation": 0,
1215
+ "position": [
1216
+ 1438.933,
1217
+ 280.112,
1218
+ -78.782
1219
+ ],
1220
+ "angle": 269.0036848139215,
1221
+ "scale": [
1222
+ 1,
1223
+ 1,
1224
+ 1
1225
+ ],
1226
+ "skinId": "YOfs",
1227
+ "flags": {
1228
+ "visible": true,
1229
+ "solid": true
1230
+ },
1231
+ "life": 255,
1232
+ "id": 55
1233
+ },
1234
+ {
1235
+ "type": "YOfs",
1236
+ "variation": 0,
1237
+ "position": [
1238
+ 1378.507,
1239
+ -754.531,
1240
+ -88.141
1241
+ ],
1242
+ "angle": 269.0036848139215,
1243
+ "scale": [
1244
+ 1,
1245
+ 1,
1246
+ 1
1247
+ ],
1248
+ "skinId": "YOfs",
1249
+ "flags": {
1250
+ "visible": true,
1251
+ "solid": true
1252
+ },
1253
+ "life": 255,
1254
+ "id": 56
1255
+ },
1256
+ {
1257
+ "type": "YOfs",
1258
+ "variation": 0,
1259
+ "position": [
1260
+ 1379.321,
1261
+ -800.076,
1262
+ -74.432
1263
+ ],
1264
+ "angle": 269.0036848139215,
1265
+ "scale": [
1266
+ 1,
1267
+ 1,
1268
+ 1
1269
+ ],
1270
+ "skinId": "YOfs",
1271
+ "flags": {
1272
+ "visible": true,
1273
+ "solid": true
1274
+ },
1275
+ "life": 255,
1276
+ "id": 57
1277
+ },
1278
+ {
1279
+ "type": "YOfs",
1280
+ "variation": 0,
1281
+ "position": [
1282
+ 1430.305,
1283
+ -793.281,
1284
+ -84.819
1285
+ ],
1286
+ "angle": 269.0036848139215,
1287
+ "scale": [
1288
+ 1,
1289
+ 1,
1290
+ 1
1291
+ ],
1292
+ "skinId": "YOfs",
1293
+ "flags": {
1294
+ "visible": true,
1295
+ "solid": true
1296
+ },
1297
+ "life": 255,
1298
+ "id": 58
1299
+ },
1300
+ {
1301
+ "type": "YOfs",
1302
+ "variation": 0,
1303
+ "position": [
1304
+ 1433.99,
1305
+ -744.196,
1306
+ -83.039
1307
+ ],
1308
+ "angle": 269.0036848139215,
1309
+ "scale": [
1310
+ 1,
1311
+ 1,
1312
+ 1
1313
+ ],
1314
+ "skinId": "YOfs",
1315
+ "flags": {
1316
+ "visible": true,
1317
+ "solid": true
1318
+ },
1319
+ "life": 255,
1320
+ "id": 59
1321
+ },
1322
+ {
1323
+ "type": "YOfs",
1324
+ "variation": 0,
1325
+ "position": [
1326
+ 485.159,
1327
+ -1641.483,
1328
+ -83.364
1329
+ ],
1330
+ "angle": 269.0036848139215,
1331
+ "scale": [
1332
+ 1,
1333
+ 1,
1334
+ 1
1335
+ ],
1336
+ "skinId": "YOfs",
1337
+ "flags": {
1338
+ "visible": true,
1339
+ "solid": true
1340
+ },
1341
+ "life": 255,
1342
+ "id": 60
1343
+ },
1344
+ {
1345
+ "type": "YOfs",
1346
+ "variation": 0,
1347
+ "position": [
1348
+ 545.303,
1349
+ -1637.937,
1350
+ -75.415
1351
+ ],
1352
+ "angle": 269.0036848139215,
1353
+ "scale": [
1354
+ 1,
1355
+ 1,
1356
+ 1
1357
+ ],
1358
+ "skinId": "YOfs",
1359
+ "flags": {
1360
+ "visible": true,
1361
+ "solid": true
1362
+ },
1363
+ "life": 255,
1364
+ "id": 61
1365
+ },
1366
+ {
1367
+ "type": "YOfs",
1368
+ "variation": 0,
1369
+ "position": [
1370
+ 538.614,
1371
+ -1695.586,
1372
+ -76.367
1373
+ ],
1374
+ "angle": 269.0036848139215,
1375
+ "scale": [
1376
+ 1,
1377
+ 1,
1378
+ 1
1379
+ ],
1380
+ "skinId": "YOfs",
1381
+ "flags": {
1382
+ "visible": true,
1383
+ "solid": true
1384
+ },
1385
+ "life": 255,
1386
+ "id": 62
1387
+ },
1388
+ {
1389
+ "type": "YOfs",
1390
+ "variation": 0,
1391
+ "position": [
1392
+ 484.893,
1393
+ -1701.208,
1394
+ -71.565
1395
+ ],
1396
+ "angle": 269.0036848139215,
1397
+ "scale": [
1398
+ 1,
1399
+ 1,
1400
+ 1
1401
+ ],
1402
+ "skinId": "YOfs",
1403
+ "flags": {
1404
+ "visible": true,
1405
+ "solid": true
1406
+ },
1407
+ "life": 255,
1408
+ "id": 63
1409
+ },
1410
+ {
1411
+ "type": "YOfs",
1412
+ "variation": 0,
1413
+ "position": [
1414
+ -548.919,
1415
+ -1633.564,
1416
+ -69.424
1417
+ ],
1418
+ "angle": 269.0036848139215,
1419
+ "scale": [
1420
+ 1,
1421
+ 1,
1422
+ 1
1423
+ ],
1424
+ "skinId": "YOfs",
1425
+ "flags": {
1426
+ "visible": true,
1427
+ "solid": true
1428
+ },
1429
+ "life": 255,
1430
+ "id": 64
1431
+ },
1432
+ {
1433
+ "type": "YOfs",
1434
+ "variation": 0,
1435
+ "position": [
1436
+ -490.024,
1437
+ -1633.319,
1438
+ -80.61
1439
+ ],
1440
+ "angle": 269.0036848139215,
1441
+ "scale": [
1442
+ 1,
1443
+ 1,
1444
+ 1
1445
+ ],
1446
+ "skinId": "YOfs",
1447
+ "flags": {
1448
+ "visible": true,
1449
+ "solid": true
1450
+ },
1451
+ "life": 255,
1452
+ "id": 65
1453
+ },
1454
+ {
1455
+ "type": "YOfs",
1456
+ "variation": 0,
1457
+ "position": [
1458
+ -489.392,
1459
+ -1696.401,
1460
+ -78.713
1461
+ ],
1462
+ "angle": 269.0036848139215,
1463
+ "scale": [
1464
+ 1,
1465
+ 1,
1466
+ 1
1467
+ ],
1468
+ "skinId": "YOfs",
1469
+ "flags": {
1470
+ "visible": true,
1471
+ "solid": true
1472
+ },
1473
+ "life": 255,
1474
+ "id": 66
1475
+ },
1476
+ {
1477
+ "type": "YOfs",
1478
+ "variation": 0,
1479
+ "position": [
1480
+ -541.27,
1481
+ -1689.431,
1482
+ -79.114
1483
+ ],
1484
+ "angle": 269.0036848139215,
1485
+ "scale": [
1486
+ 1,
1487
+ 1,
1488
+ 1
1489
+ ],
1490
+ "skinId": "YOfs",
1491
+ "flags": {
1492
+ "visible": true,
1493
+ "solid": true
1494
+ },
1495
+ "life": 255,
1496
+ "id": 67
1497
+ },
1498
+ {
1499
+ "type": "YOfs",
1500
+ "variation": 0,
1501
+ "position": [
1502
+ -1435.834,
1503
+ -735.759,
1504
+ -74.936
1505
+ ],
1506
+ "angle": 269.0036848139215,
1507
+ "scale": [
1508
+ 1,
1509
+ 1,
1510
+ 1
1511
+ ],
1512
+ "skinId": "YOfs",
1513
+ "flags": {
1514
+ "visible": true,
1515
+ "solid": true
1516
+ },
1517
+ "life": 255,
1518
+ "id": 68
1519
+ },
1520
+ {
1521
+ "type": "YOfs",
1522
+ "variation": 0,
1523
+ "position": [
1524
+ -1435.658,
1525
+ -789.624,
1526
+ -83.391
1527
+ ],
1528
+ "angle": 269.0036848139215,
1529
+ "scale": [
1530
+ 1,
1531
+ 1,
1532
+ 1
1533
+ ],
1534
+ "skinId": "YOfs",
1535
+ "flags": {
1536
+ "visible": true,
1537
+ "solid": true
1538
+ },
1539
+ "life": 255,
1540
+ "id": 69
1541
+ },
1542
+ {
1543
+ "type": "YOfs",
1544
+ "variation": 0,
1545
+ "position": [
1546
+ -1378.629,
1547
+ -792.418,
1548
+ -79.814
1549
+ ],
1550
+ "angle": 269.0036848139215,
1551
+ "scale": [
1552
+ 1,
1553
+ 1,
1554
+ 1
1555
+ ],
1556
+ "skinId": "YOfs",
1557
+ "flags": {
1558
+ "visible": true,
1559
+ "solid": true
1560
+ },
1561
+ "life": 255,
1562
+ "id": 70
1563
+ },
1564
+ {
1565
+ "type": "YOfs",
1566
+ "variation": 0,
1567
+ "position": [
1568
+ -1376.349,
1569
+ -744.046,
1570
+ -78.318
1571
+ ],
1572
+ "angle": 269.0036848139215,
1573
+ "scale": [
1574
+ 1,
1575
+ 1,
1576
+ 1
1577
+ ],
1578
+ "skinId": "YOfs",
1579
+ "flags": {
1580
+ "visible": true,
1581
+ "solid": true
1582
+ },
1583
+ "life": 255,
1584
+ "id": 71
1585
+ },
1586
+ {
1587
+ "type": "YOfs",
1588
+ "variation": 0,
1589
+ "position": [
1590
+ -1433.941,
1591
+ 269.664,
1592
+ -91.164
1593
+ ],
1594
+ "angle": 269.0036848139215,
1595
+ "scale": [
1596
+ 1,
1597
+ 1,
1598
+ 1
1599
+ ],
1600
+ "skinId": "YOfs",
1601
+ "flags": {
1602
+ "visible": true,
1603
+ "solid": true
1604
+ },
1605
+ "life": 255,
1606
+ "id": 72
1607
+ },
1608
+ {
1609
+ "type": "YOfs",
1610
+ "variation": 0,
1611
+ "position": [
1612
+ -1428.972,
1613
+ 225.541,
1614
+ -81.559
1615
+ ],
1616
+ "angle": 269.0036848139215,
1617
+ "scale": [
1618
+ 1,
1619
+ 1,
1620
+ 1
1621
+ ],
1622
+ "skinId": "YOfs",
1623
+ "flags": {
1624
+ "visible": true,
1625
+ "solid": true
1626
+ },
1627
+ "life": 255,
1628
+ "id": 73
1629
+ },
1630
+ {
1631
+ "type": "YOfs",
1632
+ "variation": 0,
1633
+ "position": [
1634
+ -1379.021,
1635
+ 229.842,
1636
+ -78.784
1637
+ ],
1638
+ "angle": 269.0036848139215,
1639
+ "scale": [
1640
+ 1,
1641
+ 1,
1642
+ 1
1643
+ ],
1644
+ "skinId": "YOfs",
1645
+ "flags": {
1646
+ "visible": true,
1647
+ "solid": true
1648
+ },
1649
+ "life": 255,
1650
+ "id": 74
1651
+ },
1652
+ {
1653
+ "type": "YOfs",
1654
+ "variation": 0,
1655
+ "position": [
1656
+ -1373.416,
1657
+ 272.422,
1658
+ -81.431
1659
+ ],
1660
+ "angle": 269.0036848139215,
1661
+ "scale": [
1662
+ 1,
1663
+ 1,
1664
+ 1
1665
+ ],
1666
+ "skinId": "YOfs",
1667
+ "flags": {
1668
+ "visible": true,
1669
+ "solid": true
1670
+ },
1671
+ "life": 255,
1672
+ "id": 75
1673
+ },
1674
+ {
1675
+ "type": "YOob",
1676
+ "variation": 0,
1677
+ "position": [
1678
+ -1152,
1679
+ -3456,
1680
+ 0
1681
+ ],
1682
+ "angle": 269.0036848139215,
1683
+ "scale": [
1684
+ 1,
1685
+ 1,
1686
+ 1
1687
+ ],
1688
+ "skinId": "YOob",
1689
+ "flags": {
1690
+ "visible": true,
1691
+ "solid": true
1692
+ },
1693
+ "life": 255,
1694
+ "id": 133
1695
+ },
1696
+ {
1697
+ "type": "YOob",
1698
+ "variation": 0,
1699
+ "position": [
1700
+ 1152,
1701
+ -3456,
1702
+ 0
1703
+ ],
1704
+ "angle": 269.0036848139215,
1705
+ "scale": [
1706
+ 1,
1707
+ 1,
1708
+ 1
1709
+ ],
1710
+ "skinId": "YOob",
1711
+ "flags": {
1712
+ "visible": true,
1713
+ "solid": true
1714
+ },
1715
+ "life": 255,
1716
+ "id": 132
1717
+ },
1718
+ {
1719
+ "type": "YOob",
1720
+ "variation": 0,
1721
+ "position": [
1722
+ -2432,
1723
+ -1408,
1724
+ 0
1725
+ ],
1726
+ "angle": 269.0036848139215,
1727
+ "scale": [
1728
+ 1,
1729
+ 1,
1730
+ 1
1731
+ ],
1732
+ "skinId": "YOob",
1733
+ "flags": {
1734
+ "visible": true,
1735
+ "solid": true
1736
+ },
1737
+ "life": 255,
1738
+ "id": 78
1739
+ },
1740
+ {
1741
+ "type": "YOob",
1742
+ "variation": 0,
1743
+ "position": [
1744
+ -1152,
1745
+ -2688,
1746
+ 0
1747
+ ],
1748
+ "angle": 269.0036848139215,
1749
+ "scale": [
1750
+ 1,
1751
+ 1,
1752
+ 1
1753
+ ],
1754
+ "skinId": "YOob",
1755
+ "flags": {
1756
+ "visible": true,
1757
+ "solid": true
1758
+ },
1759
+ "life": 255,
1760
+ "id": 79
1761
+ },
1762
+ {
1763
+ "type": "YOob",
1764
+ "variation": 0,
1765
+ "position": [
1766
+ 3200,
1767
+ -1408,
1768
+ 0
1769
+ ],
1770
+ "angle": 269.0036848139215,
1771
+ "scale": [
1772
+ 1,
1773
+ 1,
1774
+ 1
1775
+ ],
1776
+ "skinId": "YOob",
1777
+ "flags": {
1778
+ "visible": true,
1779
+ "solid": true
1780
+ },
1781
+ "life": 255,
1782
+ "id": 131
1783
+ },
1784
+ {
1785
+ "type": "YOob",
1786
+ "variation": 0,
1787
+ "position": [
1788
+ 1152,
1789
+ -2688,
1790
+ 0
1791
+ ],
1792
+ "angle": 269.0036848139215,
1793
+ "scale": [
1794
+ 1,
1795
+ 1,
1796
+ 1
1797
+ ],
1798
+ "skinId": "YOob",
1799
+ "flags": {
1800
+ "visible": true,
1801
+ "solid": true
1802
+ },
1803
+ "life": 255,
1804
+ "id": 81
1805
+ },
1806
+ {
1807
+ "type": "YOob",
1808
+ "variation": 0,
1809
+ "position": [
1810
+ 3200,
1811
+ 896,
1812
+ 0
1813
+ ],
1814
+ "angle": 269.0036848139215,
1815
+ "scale": [
1816
+ 1,
1817
+ 1,
1818
+ 1
1819
+ ],
1820
+ "skinId": "YOob",
1821
+ "flags": {
1822
+ "visible": true,
1823
+ "solid": true
1824
+ },
1825
+ "life": 255,
1826
+ "id": 130
1827
+ },
1828
+ {
1829
+ "type": "YOob",
1830
+ "variation": 0,
1831
+ "position": [
1832
+ 2432,
1833
+ -1408,
1834
+ 0
1835
+ ],
1836
+ "angle": 269.0036848139215,
1837
+ "scale": [
1838
+ 1,
1839
+ 1,
1840
+ 1
1841
+ ],
1842
+ "skinId": "YOob",
1843
+ "flags": {
1844
+ "visible": true,
1845
+ "solid": true
1846
+ },
1847
+ "life": 255,
1848
+ "id": 83
1849
+ },
1850
+ {
1851
+ "type": "YOob",
1852
+ "variation": 0,
1853
+ "position": [
1854
+ 1152,
1855
+ 2944,
1856
+ 0
1857
+ ],
1858
+ "angle": 269.0036848139215,
1859
+ "scale": [
1860
+ 1,
1861
+ 1,
1862
+ 1
1863
+ ],
1864
+ "skinId": "YOob",
1865
+ "flags": {
1866
+ "visible": true,
1867
+ "solid": true
1868
+ },
1869
+ "life": 255,
1870
+ "id": 129
1871
+ },
1872
+ {
1873
+ "type": "YOob",
1874
+ "variation": 0,
1875
+ "position": [
1876
+ 2432,
1877
+ 896,
1878
+ 0
1879
+ ],
1880
+ "angle": 269.0036848139215,
1881
+ "scale": [
1882
+ 1,
1883
+ 1,
1884
+ 1
1885
+ ],
1886
+ "skinId": "YOob",
1887
+ "flags": {
1888
+ "visible": true,
1889
+ "solid": true
1890
+ },
1891
+ "life": 255,
1892
+ "id": 85
1893
+ },
1894
+ {
1895
+ "type": "YOob",
1896
+ "variation": 0,
1897
+ "position": [
1898
+ -1152,
1899
+ 2944,
1900
+ 0
1901
+ ],
1902
+ "angle": 269.0036848139215,
1903
+ "scale": [
1904
+ 1,
1905
+ 1,
1906
+ 1
1907
+ ],
1908
+ "skinId": "YOob",
1909
+ "flags": {
1910
+ "visible": true,
1911
+ "solid": true
1912
+ },
1913
+ "life": 255,
1914
+ "id": 128
1915
+ },
1916
+ {
1917
+ "type": "YOob",
1918
+ "variation": 0,
1919
+ "position": [
1920
+ 1152,
1921
+ 2176,
1922
+ 0
1923
+ ],
1924
+ "angle": 269.0036848139215,
1925
+ "scale": [
1926
+ 1,
1927
+ 1,
1928
+ 1
1929
+ ],
1930
+ "skinId": "YOob",
1931
+ "flags": {
1932
+ "visible": true,
1933
+ "solid": true
1934
+ },
1935
+ "life": 255,
1936
+ "id": 87
1937
+ },
1938
+ {
1939
+ "type": "YOob",
1940
+ "variation": 0,
1941
+ "position": [
1942
+ -3200,
1943
+ 896,
1944
+ 0
1945
+ ],
1946
+ "angle": 269.0036848139215,
1947
+ "scale": [
1948
+ 1,
1949
+ 1,
1950
+ 1
1951
+ ],
1952
+ "skinId": "YOob",
1953
+ "flags": {
1954
+ "visible": true,
1955
+ "solid": true
1956
+ },
1957
+ "life": 255,
1958
+ "id": 135
1959
+ },
1960
+ {
1961
+ "type": "YOob",
1962
+ "variation": 0,
1963
+ "position": [
1964
+ -1152,
1965
+ 2176,
1966
+ 0
1967
+ ],
1968
+ "angle": 269.0036848139215,
1969
+ "scale": [
1970
+ 1,
1971
+ 1,
1972
+ 1
1973
+ ],
1974
+ "skinId": "YOob",
1975
+ "flags": {
1976
+ "visible": true,
1977
+ "solid": true
1978
+ },
1979
+ "life": 255,
1980
+ "id": 89
1981
+ },
1982
+ {
1983
+ "type": "YOob",
1984
+ "variation": 0,
1985
+ "position": [
1986
+ -3200,
1987
+ -1408,
1988
+ 0
1989
+ ],
1990
+ "angle": 269.0036848139215,
1991
+ "scale": [
1992
+ 1,
1993
+ 1,
1994
+ 1
1995
+ ],
1996
+ "skinId": "YOob",
1997
+ "flags": {
1998
+ "visible": true,
1999
+ "solid": true
2000
+ },
2001
+ "life": 255,
2002
+ "id": 134
2003
+ },
2004
+ {
2005
+ "type": "YOob",
2006
+ "variation": 0,
2007
+ "position": [
2008
+ -2432,
2009
+ 896,
2010
+ 0
2011
+ ],
2012
+ "angle": 269.0036848139215,
2013
+ "scale": [
2014
+ 1,
2015
+ 1,
2016
+ 1
2017
+ ],
2018
+ "skinId": "YOob",
2019
+ "flags": {
2020
+ "visible": true,
2021
+ "solid": true
2022
+ },
2023
+ "life": 255,
2024
+ "id": 91
2025
+ },
2026
+ {
2027
+ "type": "YOob",
2028
+ "variation": 0,
2029
+ "position": [
2030
+ -3072,
2031
+ 0,
2032
+ 0
2033
+ ],
2034
+ "angle": 269.0036848139215,
2035
+ "scale": [
2036
+ 1,
2037
+ 1,
2038
+ 1
2039
+ ],
2040
+ "skinId": "YOob",
2041
+ "flags": {
2042
+ "visible": true,
2043
+ "solid": true
2044
+ },
2045
+ "life": 255,
2046
+ "id": 92
2047
+ },
2048
+ {
2049
+ "type": "YOob",
2050
+ "variation": 0,
2051
+ "position": [
2052
+ -3072,
2053
+ -512,
2054
+ 0
2055
+ ],
2056
+ "angle": 269.0036848139215,
2057
+ "scale": [
2058
+ 1,
2059
+ 1,
2060
+ 1
2061
+ ],
2062
+ "skinId": "YOob",
2063
+ "flags": {
2064
+ "visible": true,
2065
+ "solid": true
2066
+ },
2067
+ "life": 255,
2068
+ "id": 93
2069
+ },
2070
+ {
2071
+ "type": "YOob",
2072
+ "variation": 0,
2073
+ "position": [
2074
+ -256,
2075
+ 2816,
2076
+ 0
2077
+ ],
2078
+ "angle": 269.0036848139215,
2079
+ "scale": [
2080
+ 1,
2081
+ 1,
2082
+ 1
2083
+ ],
2084
+ "skinId": "YOob",
2085
+ "flags": {
2086
+ "visible": true,
2087
+ "solid": true
2088
+ },
2089
+ "life": 255,
2090
+ "id": 94
2091
+ },
2092
+ {
2093
+ "type": "YOob",
2094
+ "variation": 0,
2095
+ "position": [
2096
+ 256,
2097
+ 2816,
2098
+ 0
2099
+ ],
2100
+ "angle": 269.0036848139215,
2101
+ "scale": [
2102
+ 1,
2103
+ 1,
2104
+ 1
2105
+ ],
2106
+ "skinId": "YOob",
2107
+ "flags": {
2108
+ "visible": true,
2109
+ "solid": true
2110
+ },
2111
+ "life": 255,
2112
+ "id": 95
2113
+ },
2114
+ {
2115
+ "type": "YOob",
2116
+ "variation": 0,
2117
+ "position": [
2118
+ 3072,
2119
+ 0,
2120
+ 0
2121
+ ],
2122
+ "angle": 269.0036848139215,
2123
+ "scale": [
2124
+ 1,
2125
+ 1,
2126
+ 1
2127
+ ],
2128
+ "skinId": "YOob",
2129
+ "flags": {
2130
+ "visible": true,
2131
+ "solid": true
2132
+ },
2133
+ "life": 255,
2134
+ "id": 96
2135
+ },
2136
+ {
2137
+ "type": "YOob",
2138
+ "variation": 0,
2139
+ "position": [
2140
+ 3072,
2141
+ -512,
2142
+ 0
2143
+ ],
2144
+ "angle": 269.0036848139215,
2145
+ "scale": [
2146
+ 1,
2147
+ 1,
2148
+ 1
2149
+ ],
2150
+ "skinId": "YOob",
2151
+ "flags": {
2152
+ "visible": true,
2153
+ "solid": true
2154
+ },
2155
+ "life": 255,
2156
+ "id": 97
2157
+ },
2158
+ {
2159
+ "type": "YOob",
2160
+ "variation": 0,
2161
+ "position": [
2162
+ 256,
2163
+ -3328,
2164
+ 0
2165
+ ],
2166
+ "angle": 269.0036848139215,
2167
+ "scale": [
2168
+ 1,
2169
+ 1,
2170
+ 1
2171
+ ],
2172
+ "skinId": "YOob",
2173
+ "flags": {
2174
+ "visible": true,
2175
+ "solid": true
2176
+ },
2177
+ "life": 255,
2178
+ "id": 98
2179
+ },
2180
+ {
2181
+ "type": "YOob",
2182
+ "variation": 0,
2183
+ "position": [
2184
+ -256,
2185
+ -3328,
2186
+ 0
2187
+ ],
2188
+ "angle": 269.0036848139215,
2189
+ "scale": [
2190
+ 1,
2191
+ 1,
2192
+ 1
2193
+ ],
2194
+ "skinId": "YOob",
2195
+ "flags": {
2196
+ "visible": true,
2197
+ "solid": true
2198
+ },
2199
+ "life": 255,
2200
+ "id": 99
2201
+ },
2202
+ {
2203
+ "type": "YOob",
2204
+ "variation": 0,
2205
+ "position": [
2206
+ -768,
2207
+ -3328,
2208
+ 0
2209
+ ],
2210
+ "angle": 269.0036848139215,
2211
+ "scale": [
2212
+ 1,
2213
+ 1,
2214
+ 1
2215
+ ],
2216
+ "skinId": "YOob",
2217
+ "flags": {
2218
+ "visible": true,
2219
+ "solid": true
2220
+ },
2221
+ "life": 255,
2222
+ "id": 100
2223
+ },
2224
+ {
2225
+ "type": "YOob",
2226
+ "variation": 0,
2227
+ "position": [
2228
+ 768,
2229
+ -3328,
2230
+ 0
2231
+ ],
2232
+ "angle": 269.0036848139215,
2233
+ "scale": [
2234
+ 1,
2235
+ 1,
2236
+ 1
2237
+ ],
2238
+ "skinId": "YOob",
2239
+ "flags": {
2240
+ "visible": true,
2241
+ "solid": true
2242
+ },
2243
+ "life": 255,
2244
+ "id": 101
2245
+ },
2246
+ {
2247
+ "type": "YOob",
2248
+ "variation": 0,
2249
+ "position": [
2250
+ 3072,
2251
+ -1024,
2252
+ 0
2253
+ ],
2254
+ "angle": 269.0036848139215,
2255
+ "scale": [
2256
+ 1,
2257
+ 1,
2258
+ 1
2259
+ ],
2260
+ "skinId": "YOob",
2261
+ "flags": {
2262
+ "visible": true,
2263
+ "solid": true
2264
+ },
2265
+ "life": 255,
2266
+ "id": 102
2267
+ },
2268
+ {
2269
+ "type": "YOob",
2270
+ "variation": 0,
2271
+ "position": [
2272
+ 3072,
2273
+ 512,
2274
+ 0
2275
+ ],
2276
+ "angle": 269.0036848139215,
2277
+ "scale": [
2278
+ 1,
2279
+ 1,
2280
+ 1
2281
+ ],
2282
+ "skinId": "YOob",
2283
+ "flags": {
2284
+ "visible": true,
2285
+ "solid": true
2286
+ },
2287
+ "life": 255,
2288
+ "id": 103
2289
+ },
2290
+ {
2291
+ "type": "YOob",
2292
+ "variation": 0,
2293
+ "position": [
2294
+ 768,
2295
+ 2816,
2296
+ 0
2297
+ ],
2298
+ "angle": 269.0036848139215,
2299
+ "scale": [
2300
+ 1,
2301
+ 1,
2302
+ 1
2303
+ ],
2304
+ "skinId": "YOob",
2305
+ "flags": {
2306
+ "visible": true,
2307
+ "solid": true
2308
+ },
2309
+ "life": 255,
2310
+ "id": 104
2311
+ },
2312
+ {
2313
+ "type": "YOob",
2314
+ "variation": 0,
2315
+ "position": [
2316
+ -768,
2317
+ 2816,
2318
+ 0
2319
+ ],
2320
+ "angle": 269.0036848139215,
2321
+ "scale": [
2322
+ 1,
2323
+ 1,
2324
+ 1
2325
+ ],
2326
+ "skinId": "YOob",
2327
+ "flags": {
2328
+ "visible": true,
2329
+ "solid": true
2330
+ },
2331
+ "life": 255,
2332
+ "id": 105
2333
+ },
2334
+ {
2335
+ "type": "YOob",
2336
+ "variation": 0,
2337
+ "position": [
2338
+ -3072,
2339
+ 512,
2340
+ 0
2341
+ ],
2342
+ "angle": 269.0036848139215,
2343
+ "scale": [
2344
+ 1,
2345
+ 1,
2346
+ 1
2347
+ ],
2348
+ "skinId": "YOob",
2349
+ "flags": {
2350
+ "visible": true,
2351
+ "solid": true
2352
+ },
2353
+ "life": 255,
2354
+ "id": 106
2355
+ },
2356
+ {
2357
+ "type": "YOob",
2358
+ "variation": 0,
2359
+ "position": [
2360
+ -3072,
2361
+ -1024,
2362
+ 0
2363
+ ],
2364
+ "angle": 269.0036848139215,
2365
+ "scale": [
2366
+ 1,
2367
+ 1,
2368
+ 1
2369
+ ],
2370
+ "skinId": "YOob",
2371
+ "flags": {
2372
+ "visible": true,
2373
+ "solid": true
2374
+ },
2375
+ "life": 255,
2376
+ "id": 107
2377
+ },
2378
+ {
2379
+ "type": "YOks",
2380
+ "variation": 0,
2381
+ "position": [
2382
+ 0,
2383
+ 2816,
2384
+ -172.8
2385
+ ],
2386
+ "angle": 269.0036848139215,
2387
+ "scale": [
2388
+ 1,
2389
+ 1,
2390
+ 1
2391
+ ],
2392
+ "skinId": "YOks",
2393
+ "flags": {
2394
+ "visible": false,
2395
+ "solid": false
2396
+ },
2397
+ "life": 255,
2398
+ "id": 108
2399
+ },
2400
+ {
2401
+ "type": "YOks",
2402
+ "variation": 0,
2403
+ "position": [
2404
+ -3136,
2405
+ -256,
2406
+ -172.8
2407
+ ],
2408
+ "angle": 359.01535442897386,
2409
+ "scale": [
2410
+ 1,
2411
+ 1,
2412
+ 1
2413
+ ],
2414
+ "skinId": "YOks",
2415
+ "flags": {
2416
+ "visible": false,
2417
+ "solid": false
2418
+ },
2419
+ "life": 255,
2420
+ "id": 109
2421
+ },
2422
+ {
2423
+ "type": "YOks",
2424
+ "variation": 0,
2425
+ "position": [
2426
+ 0,
2427
+ -3392,
2428
+ -172.8
2429
+ ],
2430
+ "angle": 88.98034558381684,
2431
+ "scale": [
2432
+ 1,
2433
+ 1,
2434
+ 1
2435
+ ],
2436
+ "skinId": "YOks",
2437
+ "flags": {
2438
+ "visible": false,
2439
+ "solid": false
2440
+ },
2441
+ "life": 255,
2442
+ "id": 110
2443
+ },
2444
+ {
2445
+ "type": "YOks",
2446
+ "variation": 0,
2447
+ "position": [
2448
+ 3136,
2449
+ -256,
2450
+ -172.8
2451
+ ],
2452
+ "angle": 178.99201519886918,
2453
+ "scale": [
2454
+ 1,
2455
+ 1,
2456
+ 1
2457
+ ],
2458
+ "skinId": "YOks",
2459
+ "flags": {
2460
+ "visible": false,
2461
+ "solid": false
2462
+ },
2463
+ "life": 255,
2464
+ "id": 111
2465
+ },
2466
+ {
2467
+ "type": "LWw0",
2468
+ "variation": 0,
2469
+ "position": [
2470
+ -256.825,
2471
+ 3030.213,
2472
+ -41.232
2473
+ ],
2474
+ "angle": 269.0036848139215,
2475
+ "scale": [
2476
+ 0.6,
2477
+ 1,
2478
+ 1
2479
+ ],
2480
+ "skinId": "LWw0",
2481
+ "flags": {
2482
+ "visible": true,
2483
+ "solid": true
2484
+ },
2485
+ "life": 255,
2486
+ "id": 112
2487
+ },
2488
+ {
2489
+ "type": "LWw0",
2490
+ "variation": 0,
2491
+ "position": [
2492
+ 256.202,
2493
+ 3033.077,
2494
+ -38.782
2495
+ ],
2496
+ "angle": 269.0036848139215,
2497
+ "scale": [
2498
+ 0.6,
2499
+ 1,
2500
+ 1
2501
+ ],
2502
+ "skinId": "LWw0",
2503
+ "flags": {
2504
+ "visible": true,
2505
+ "solid": true
2506
+ },
2507
+ "life": 255,
2508
+ "id": 113
2509
+ },
2510
+ {
2511
+ "type": "LWw0",
2512
+ "variation": 0,
2513
+ "position": [
2514
+ 3289.139,
2515
+ 8.965,
2516
+ -32.618
2517
+ ],
2518
+ "angle": 178.99201519886918,
2519
+ "scale": [
2520
+ 1,
2521
+ 0.6,
2522
+ 1
2523
+ ],
2524
+ "skinId": "LWw0",
2525
+ "flags": {
2526
+ "visible": true,
2527
+ "solid": true
2528
+ },
2529
+ "life": 255,
2530
+ "id": 114
2531
+ },
2532
+ {
2533
+ "type": "LWw0",
2534
+ "variation": 0,
2535
+ "position": [
2536
+ 3281.371,
2537
+ -507.546,
2538
+ -42.175
2539
+ ],
2540
+ "angle": 178.99201519886918,
2541
+ "scale": [
2542
+ 1,
2543
+ 0.6,
2544
+ 1
2545
+ ],
2546
+ "skinId": "LWw0",
2547
+ "flags": {
2548
+ "visible": true,
2549
+ "solid": true
2550
+ },
2551
+ "life": 255,
2552
+ "id": 115
2553
+ },
2554
+ {
2555
+ "type": "LWw0",
2556
+ "variation": 0,
2557
+ "position": [
2558
+ -3289.73,
2559
+ -4.412,
2560
+ -33.858
2561
+ ],
2562
+ "angle": 359.01535442897386,
2563
+ "scale": [
2564
+ 1,
2565
+ 0.6,
2566
+ 1
2567
+ ],
2568
+ "skinId": "LWw0",
2569
+ "flags": {
2570
+ "visible": true,
2571
+ "solid": true
2572
+ },
2573
+ "life": 255,
2574
+ "id": 116
2575
+ },
2576
+ {
2577
+ "type": "LWw0",
2578
+ "variation": 0,
2579
+ "position": [
2580
+ -3289.184,
2581
+ -518.533,
2582
+ -34.265
2583
+ ],
2584
+ "angle": 359.01535442897386,
2585
+ "scale": [
2586
+ 1,
2587
+ 0.6,
2588
+ 1
2589
+ ],
2590
+ "skinId": "LWw0",
2591
+ "flags": {
2592
+ "visible": true,
2593
+ "solid": true
2594
+ },
2595
+ "life": 255,
2596
+ "id": 117
2597
+ },
2598
+ {
2599
+ "type": "LWw0",
2600
+ "variation": 0,
2601
+ "position": [
2602
+ -250.486,
2603
+ -3546.719,
2604
+ -31.767
2605
+ ],
2606
+ "angle": 88.98034558381684,
2607
+ "scale": [
2608
+ 0.6,
2609
+ 1,
2610
+ 1
2611
+ ],
2612
+ "skinId": "LWw0",
2613
+ "flags": {
2614
+ "visible": true,
2615
+ "solid": true
2616
+ },
2617
+ "life": 255,
2618
+ "id": 118
2619
+ },
2620
+ {
2621
+ "type": "LWw0",
2622
+ "variation": 0,
2623
+ "position": [
2624
+ 263.086,
2625
+ -3543.885,
2626
+ -35.249
2627
+ ],
2628
+ "angle": 88.98034558381684,
2629
+ "scale": [
2630
+ 0.6,
2631
+ 1,
2632
+ 1
2633
+ ],
2634
+ "skinId": "LWw0",
2635
+ "flags": {
2636
+ "visible": true,
2637
+ "solid": true
2638
+ },
2639
+ "life": 255,
2640
+ "id": 119
2641
+ },
2642
+ {
2643
+ "type": "LWw0",
2644
+ "variation": 0,
2645
+ "position": [
2646
+ -1286.872,
2647
+ 3030.999,
2648
+ -34.129
2649
+ ],
2650
+ "angle": 269.0036848139215,
2651
+ "scale": [
2652
+ 0.6,
2653
+ 1,
2654
+ 1
2655
+ ],
2656
+ "skinId": "LWw0",
2657
+ "flags": {
2658
+ "visible": true,
2659
+ "solid": true
2660
+ },
2661
+ "life": 255,
2662
+ "id": 120
2663
+ },
2664
+ {
2665
+ "type": "LWw0",
2666
+ "variation": 0,
2667
+ "position": [
2668
+ 1274.656,
2669
+ 3033.528,
2670
+ -33.129
2671
+ ],
2672
+ "angle": 269.0036848139215,
2673
+ "scale": [
2674
+ 0.6,
2675
+ 1,
2676
+ 1
2677
+ ],
2678
+ "skinId": "LWw0",
2679
+ "flags": {
2680
+ "visible": true,
2681
+ "solid": true
2682
+ },
2683
+ "life": 255,
2684
+ "id": 121
2685
+ },
2686
+ {
2687
+ "type": "LWw0",
2688
+ "variation": 0,
2689
+ "position": [
2690
+ 3292.858,
2691
+ 1028.976,
2692
+ -30.166
2693
+ ],
2694
+ "angle": 178.99201519886918,
2695
+ "scale": [
2696
+ 1,
2697
+ 0.6,
2698
+ 1
2699
+ ],
2700
+ "skinId": "LWw0",
2701
+ "flags": {
2702
+ "visible": true,
2703
+ "solid": true
2704
+ },
2705
+ "life": 255,
2706
+ "id": 122
2707
+ },
2708
+ {
2709
+ "type": "LWw0",
2710
+ "variation": 0,
2711
+ "position": [
2712
+ 3297.456,
2713
+ -1535.095,
2714
+ -29.639
2715
+ ],
2716
+ "angle": 178.99201519886918,
2717
+ "scale": [
2718
+ 1,
2719
+ 0.6,
2720
+ 1
2721
+ ],
2722
+ "skinId": "LWw0",
2723
+ "flags": {
2724
+ "visible": true,
2725
+ "solid": true
2726
+ },
2727
+ "life": 255,
2728
+ "id": 123
2729
+ }
2730
+ ]