Paste #129240: guntest.json

Date: 2024/12/22 10:28:23 UTC-08:00
Type: JSON

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180


{
    "project_settings": {
        "project_namespace": "malorian.controller",
        "project_resolution": [
            16,
            16
        ],
        "target_minecraft_version": "1.20+",
        "rig_item": "minecraft:white_dye",
        "rig_item_model": "",
        "rig_export_folder": "",
        "texture_export_folder": "",
        "enable_advanced_resource_pack_settings": false,
        "resource_pack_mcmeta": "D:\\guns\\MalorianMechanic\\pack.mcmeta",
        "verbose": true,
        "exporter": "animated_java:json_exporter"
    },
    "exporter_settings": {
        "output_file": "C:\\Users\\ilmur\\OneDrive\\Рабочий стол\\da\\guntest"
    },
    "rig": {
        "default_pose": [
            {
                "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                "matrix": [
                    -1,
                    0,
                    -1.2246467991473532e-16,
                    0,
                    0,
                    1,
                    0,
                    0,
                    1.2246467991473532e-16,
                    0,
                    -1,
                    0,
                    -5.551115123125783e-17,
                    1.125,
                    0.375,
                    1
                ]
            },
            {
                "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                "matrix": [
                    -1,
                    0,
                    -1.2246467991473532e-16,
                    0,
                    0,
                    1,
                    0,
                    0,
                    1.2246467991473532e-16,
                    0,
                    -1,
                    0,
                    5.551115123125783e-17,
                    1.125,
                    -0.375,
                    1
                ]
            },
            {
                "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                "matrix": [
                    -9.957992501029599e-17,
                    0,
                    -1,
                    0,
                    0,
                    1,
                    0,
                    0,
                    1,
                    0,
                    -9.957992501029599e-17,
                    0,
                    0,
                    1.5,
                    0,
                    1
                ]
            }
        ],
        "node_map": {
            "6271cfd1-6aa8-326d-19ae-76cebfa307ee": {
                "type": "bone",
                "name": "right_arm",
                "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                "nbt": "{}",
                "custom_model_data": 2,
                "resource_location": "animated_java:item/malorian.controller/right_arm",
                "bounding_box": {
                    "min": {
                        "x": -2.25,
                        "y": 11.75,
                        "z": -8.25
                    },
                    "max": {
                        "x": 2.25,
                        "y": 24.25,
                        "z": -3.75
                    }
                }
            },
            "844e9ba4-1598-f086-58d9-2f82c2ace39b": {
                "type": "bone",
                "name": "left_arm",
                "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                "nbt": "{}",
                "custom_model_data": 3,
                "resource_location": "animated_java:item/malorian.controller/left_arm",
                "bounding_box": {
                    "min": {
                        "x": -2.25,
                        "y": 11.75,
                        "z": 3.75
                    },
                    "max": {
                        "x": 2.25,
                        "y": 24.25,
                        "z": 8.25
                    }
                }
            },
            "172d5ac1-67cf-0271-49a7-1b20326e979d": {
                "type": "camera",
                "name": "camera",
                "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                "nbt": "{}",
                "entity_type": "minecraft:armor_stand"
            }
        }
    },
    "variants": {},
    "animations": {
        "reloading": {
            "start_delay": 0,
            "loop_delay": 0,
            "frames": [
                {
                    "nodes": [
                        {
                            "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                            "matrix": [
                                0.7035623074881683,
                                0.7064359174132735,
                                0.0771257030463245,
                                0,
                                0.6654343137673149,
                                -0.6930096994895545,
                                0.27737110605544174,
                                0,
                                0.2493937720612644,
                                -0.1438257661264595,
                                -0.9576622032090392,
                                0,
                                -1.48125,
                                1.13125,
                                -0.10000000000000016,
                                1
                            ]
                        },
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.22409504766750632,
                                0.970662292518362,
                                -0.08715574274765815,
                                0,
                                0.9509005348177834,
                                -0.23736580858380596,
                                -0.19860927923591454,
                                0,
                                -0.21347033164857238,
                                -0.038369086493607915,
                                -0.9761957952723903,
                                0,
                                -1.64375,
                                1.4375,
                                -0.5937500000000002,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                -9.957992501029599e-17,
                                0,
                                -1,
                                0,
                                0,
                                1,
                                0,
                                0,
                                1,
                                0,
                                -9.957992501029599e-17,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0
                },
                {
                    "nodes": [
                        {
                            "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                            "matrix": [
                                0.5253561223167897,
                                0.8508374475939499,
                                0.008751143701141448,
                                0,
                                0.8206066488611147,
                                -0.5093553878612525,
                                0.25915596983601136,
                                0,
                                0.22495704609813105,
                                -0.1289679286819982,
                                -0.9657958380435683,
                                0,
                                -1.465625,
                                1.171875,
                                -0.09570312500000018,
                                1
                            ]
                        },
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.19557385808706762,
                                0.9773355565488056,
                                -0.08103132689507289,
                                0,
                                0.9489645016478889,
                                -0.20944630087468874,
                                -0.2357935997055117,
                                0,
                                -0.24742118067197322,
                                -0.030780788738205472,
                                -0.968418970487227,
                                0,
                                -1.6474537037037038,
                                1.426388888888889,
                                -0.5923611111111113,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                -0.0835431587762586,
                                -0.013587966847379299,
                                -0.9964115152780197,
                                0,
                                -0.1955853865137938,
                                0.9806820099979315,
                                0.003025202252227636,
                                0,
                                0.977121741240023,
                                0.1951362662945346,
                                -0.08458688061805895,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.05
                },
                {
                    "nodes": [
                        {
                            "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                            "matrix": [
                                0.3168041408505575,
                                0.9466125370407321,
                                -0.059664403602561936,
                                0,
                                0.9151163147608734,
                                -0.28851141414756887,
                                0.28164391412748246,
                                0,
                                0.24939379863665173,
                                -0.14382582738812705,
                                -0.9576621870877549,
                                0,
                                -1.48125,
                                1.2125,
                                -0.10000000000000016,
                                1
                            ]
                        },
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.15602813537655713,
                                0.9850805503919517,
                                -0.07260530428559521,
                                0,
                                0.942828587749283,
                                -0.1704446225817915,
                                -0.2863963769946172,
                                0,
                                -0.29449868436651283,
                                -0.023768463821623037,
                                -0.9553562607917285,
                                0,
                                -1.6525462962962962,
                                1.411111111111111,
                                -0.5909722222222225,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                -0.17991714968668127,
                                -0.06965800012412493,
                                -0.9812123023420198,
                                0,
                                -0.43470042819054366,
                                0.9004367849410447,
                                0.01578398099317144,
                                0,
                                0.882420170315467,
                                0.4293732168449055,
                                -0.19228438230048606,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.1
                },
                {
                    "nodes": [
                        {
                            "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                            "matrix": [
                                0.2785964281067357,
                                0.9575530675234224,
                                -0.07400103460528229,
                                0,
                                0.8960315669968365,
                                -0.23141406716694046,
                                0.3789128665833983,
                                0,
                                0.34570429732845653,
                                -0.17187103419057714,
                                -0.9224689081020019,
                                0,
                                -1.555324074074074,
                                1.2185185185185186,
                                -0.12037037037037054,
                                1
                            ]
                        },
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.12706563337214716,
                                0.9896643535078418,
                                -0.06647399650721054,
                                0,
                                0.9358016096140738,
                                -0.14182783212437644,
                                -0.322738614793161,
                                0,
                                -0.32883076537855116,
                                -0.02119748642658545,
                                -0.9441509383089924,
                                0,
                                -1.65625,
                                1.4,
                                -0.5937500000000002,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                -0.25994037779309065,
                                -0.184501549337296,
                                -0.9478344677658238,
                                0,
                                -0.6788459843012099,
                                0.7329916393128006,
                                0.043490071230736366,
                                0,
                                0.6867307548019869,
                                0.6547384477710702,
                                -0.31578225950712124,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.15
                },
                {
                    "nodes": [
                        {
                            "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                            "matrix": [
                                0.28944716982580077,
                                0.9543939580453743,
                                -0.07316084148175829,
                                0,
                                0.8355691557940588,
                                -0.21464327627328528,
                                0.5057197344738236,
                                0,
                                0.466952376335573,
                                -0.20751008842259921,
                                -0.859590042658363,
                                0,
                                -1.6571759259259258,
                                1.2155092592592593,
                                -0.1483796296296299,
                                1
                            ]
                        },
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.2260293229041186,
                                0.9716564729773547,
                                -0.0692419216133765,
                                0,
                                0.921061474690293,
                                -0.23631644175269573,
                                -0.30951623414400653,
                                0,
                                -0.3171064569333907,
                                0.00618367839979625,
                                -0.9483697892133635,
                                0,
                                -1.65703125,
                                1.39765625,
                                -0.6125000000000003,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                -0.2833490791743397,
                                -0.35532269272925177,
                                -0.8907632027439658,
                                0,
                                -0.8762124706005862,
                                0.4734745449030089,
                                0.08985300046690481,
                                0,
                                0.38982689195984255,
                                0.8059575915397301,
                                -0.44549675076750767,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.2
                },
                {
                    "nodes": [
                        {
                            "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                            "matrix": [
                                0.3168041408505571,
                                0.9466125370407317,
                                -0.059664403602561936,
                                0,
                                0.7746303453873465,
                                -0.221920716789757,
                                0.5921984662801825,
                                0,
                                0.5473417253827999,
                                -0.23382878389289352,
                                -0.8035801985353733,
                                0,
                                -1.73125,
                                1.2125,
                                -0.16875000000000018,
                                1
                            ]
                        },
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.1270656333721476,
                                0.9896643535078417,
                                -0.06647399650721054,
                                0,
                                0.9564601185776677,
                                -0.14000368474820624,
                                -0.25609179960966844,
                                0,
                                -0.26275152975031113,
                                -0.03103925986280244,
                                -0.9643641417851665,
                                0,
                                -1.65625,
                                1.4,
                                -0.6312500000000002,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                -0.2123985734644086,
                                -0.5516071987796906,
                                -0.8066079247346303,
                                0,
                                -0.976606452656451,
                                0.14817929262363283,
                                0.15582918169374654,
                                0,
                                0.033566093309574954,
                                0.820836399955547,
                                -0.5701762200302204,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.25
                },
                {
                    "nodes": [
                        {
                            "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                            "matrix": [
                                0.3754624770599968,
                                0.9267403753292883,
                                -0.013424047619890475,
                                0,
                                0.723209868405243,
                                -0.28388380878501485,
                                0.6295851565523002,
                                0,
                                0.5796511145173814,
                                -0.24609400611197924,
                                -0.7768155029313683,
                                0,
                                -1.7585937500000002,
                                1.22109375,
                                -0.16914062500000016,
                                1
                            ]
                        },
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.1582596736718278,
                                0.984553996038547,
                                -0.0748819375671798,
                                0,
                                0.9528981134422538,
                                -0.1721618848104305,
                                -0.24969075036275057,
                                0,
                                -0.25872584155333206,
                                -0.03183888036738347,
                                -0.9654259291159895,
                                0,
                                -1.660546875,
                                1.4,
                                -0.6335937500000002,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                -0.03154751306430384,
                                -0.7184190632672875,
                                -0.6948948150285843,
                                0,
                                -0.9524537531008124,
                                -0.18918633439480415,
                                0.23883127743751165,
                                0,
                                -0.3030455454608002,
                                0.6693897074293943,
                                -0.6782925747521905,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.3
                },
                {
                    "nodes": [
                        {
                            "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                            "matrix": [
                                0.45878995123905986,
                                0.8868761524669423,
                                0.054428584654513446,
                                0,
                                0.6999491267885798,
                                -0.39846554779310095,
                                0.5927026464677276,
                                0,
                                0.5473417584562366,
                                -0.23382877797092563,
                                -0.8035801777312941,
                                0,
                                -1.73125,
                                1.2125,
                                -0.16875000000000018,
                                1
                            ]
                        },
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.20994305963538595,
                                0.9736962698651679,
                                -0.08854087057167803,
                                0,
                                0.9417460398149902,
                                -0.22572580428226452,
                                -0.2493236005152893,
                                0,
                                -0.26275141903273436,
                                -0.03103925469115887,
                                -0.9643641721178269,
                                0,
                                -1.65625,
                                1.4,
                                -0.6312500000000002,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                0.23770659780440445,
                                -0.7947808839778957,
                                -0.5584074854652021,
                                0,
                                -0.8134438691926394,
                                -0.4770682235801673,
                                0.3327386087050491,
                                0,
                                -0.5308527526849259,
                                0.37513898292949843,
                                -0.7599119017711582,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.35
                },
                {
                    "nodes": [
                        {
                            "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                            "matrix": [
                                0.5771377022092461,
                                0.8011882291448349,
                                0.15814390335512535,
                                0,
                                0.7032929771579195,
                                -0.5860474481985216,
                                0.4024020088671919,
                                0,
                                0.41507958389805444,
                                -0.12101987415199533,
                                -0.901700132578039,
                                0,
                                -1.6257812499999997,
                                1.1351562499999999,
                                -0.20390625000000015,
                                1
                            ]
                        },
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.30639749604842725,
                                0.945108515320739,
                                -0.11353619988128277,
                                0,
                                0.9151338268369287,
                                -0.32528933262937754,
                                -0.2381531630197939,
                                0,
                                -0.2620126970092334,
                                -0.030931284256603006,
                                -0.964568609410541,
                                0,
                                -1.6218749999999997,
                                1.4,
                                -0.6312500000000002,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                0.5382515336270195,
                                -0.740203384698797,
                                -0.4029692740502767,
                                0,
                                -0.6034401556303526,
                                -0.6722698274899723,
                                0.4288510902625989,
                                0,
                                -0.5883411128936836,
                                0.01233808441568604,
                                -0.8085187113184045,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.4
                },
                {
                    "nodes": [
                        {
                            "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                            "matrix": [
                                0.6433882842687721,
                                0.7316238742986119,
                                0.2253397928062771,
                                0,
                                0.6901512705115747,
                                -0.6817081464603767,
                                0.24282756610570003,
                                0,
                                0.3312744171784868,
                                -0.000713866827840956,
                                -0.943534181106973,
                                0,
                                -1.54375,
                                1.075,
                                -0.23125000000000015,
                                1
                            ]
                        },
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.37028612755696266,
                                0.9197067175566014,
                                -0.13049037290210558,
                                0,
                                0.8909825130241749,
                                -0.3913772076439217,
                                -0.23016090637198305,
                                0,
                                -0.26275148948006893,
                                -0.031039249638297448,
                                -0.9643641530863207,
                                0,
                                -1.5875,
                                1.4,
                                -0.6312500000000002,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                0.7977104592001709,
                                -0.5546524261294847,
                                -0.23668271899597726,
                                0,
                                -0.3795857038975767,
                                -0.7668046058345468,
                                0.5176150981834924,
                                0,
                                -0.46858586905628463,
                                -0.3230656011704149,
                                -0.8222261858279417,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.45
                },
                {
                    "nodes": [
                        {
                            "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                            "matrix": [
                                0.6077152709393425,
                                0.7716393980736256,
                                0.18776258628303663,
                                0,
                                0.7029570299512724,
                                -0.6326827401822253,
                                0.3249060853809872,
                                0,
                                0.369504483747096,
                                -0.0654613597176548,
                                -0.9269203023317096,
                                0,
                                -1.5854166666666667,
                                1.1055555555555556,
                                -0.2173611111111113,
                                1
                            ]
                        },
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.3356031306348206,
                                0.9341758718332224,
                                -0.12118572190133078,
                                0,
                                0.9048080944954943,
                                -0.35546646023595985,
                                -0.23444809187269977,
                                0,
                                -0.2620932102202202,
                                -0.030968308509765882,
                                -0.9645455474079507,
                                0,
                                -1.5831,
                                1.4,
                                -0.6312500000000002,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                0.9576980228974119,
                                -0.2794351260124091,
                                -0.06877868338968104,
                                0,
                                -0.186638078280265,
                                -0.785039830777106,
                                0.5906595396921164,
                                0,
                                -0.2190450288736054,
                                -0.5528367520741382,
                                -0.8039843287539126,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.5
                },
                {
                    "nodes": [
                        {
                            "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                            "matrix": [
                                0.5267631363736398,
                                0.8426232506609724,
                                0.11183315967700057,
                                0,
                                0.7121973963184938,
                                -0.5093398035678538,
                                0.48306090007225566,
                                0,
                                0.46399942546835526,
                                -0.17481138963750478,
                                -0.868415517605507,
                                0,
                                -1.66875,
                                1.1666666666666667,
                                -0.1895833333333334,
                                1
                            ]
                        },
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.26452123110689585,
                                0.9589123987517416,
                                -0.10254525739337383,
                                0,
                                0.9281332131625104,
                                -0.2820141402135581,
                                -0.24297482039141793,
                                0,
                                -0.2619107804545785,
                                -0.030903660621173945,
                                -0.9645971733536672,
                                0,
                                -1.58255,
                                1.4,
                                -0.6312500000000002,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                0.9955545057079498,
                                0.021633262541818823,
                                0.0916691230262269,
                                0,
                                -0.0425407757635286,
                                -0.7650584896592545,
                                0.6425541142952383,
                                0,
                                0.08403278266270825,
                                -0.6435973192549033,
                                -0.7607371307395638,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.55
                },
                {
                    "nodes": [
                        {
                            "uuid": "6271cfd1-6aa8-326d-19ae-76cebfa307ee",
                            "matrix": [
                                0.45878995123905986,
                                0.8868761524669423,
                                0.054428584654513446,
                                0,
                                0.6999491267885798,
                                -0.39846554779310095,
                                0.5927026464677276,
                                0,
                                0.5473417584562366,
                                -0.23382877797092563,
                                -0.8035801777312941,
                                0,
                                -1.73125,
                                1.2125,
                                -0.16875000000000018,
                                1
                            ]
                        },
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.20994305963538595,
                                0.9736962698651679,
                                -0.08854087057167803,
                                0,
                                0.9417460398149902,
                                -0.22572580428226452,
                                -0.2493236005152893,
                                0,
                                -0.26275141903273436,
                                -0.03103925469115887,
                                -0.9643641721178269,
                                0,
                                -1.5841999999999998,
                                1.4,
                                -0.6312500000000002,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                0.9275480187878808,
                                0.2890409918749273,
                                0.23687544798614257,
                                0,
                                0.05853946686692822,
                                -0.7384133550167591,
                                0.6718026852817949,
                                0,
                                0.36909050876663485,
                                -0.6092626873105333,
                                -0.7018341500593528,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.6
                },
                {
                    "nodes": [
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.20994305963538595,
                                0.9736962698651679,
                                -0.08854087057167803,
                                0,
                                0.9417460398149902,
                                -0.22572580428226452,
                                -0.2493236005152893,
                                0,
                                -0.26275141903273436,
                                -0.03103925469115887,
                                -0.9643641721178269,
                                0,
                                -1.5863999999999998,
                                1.4,
                                -0.6312500000000002,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                0.7950342094093505,
                                0.48738382459507157,
                                0.3610784033862026,
                                0,
                                0.1323743661978867,
                                -0.7203496933778324,
                                0.680862208103938,
                                0,
                                0.5919439441725514,
                                -0.4935112225406258,
                                -0.6372197738487878,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.65
                },
                {
                    "nodes": [
                        {
                            "uuid": "844e9ba4-1598-f086-58d9-2f82c2ace39b",
                            "matrix": [
                                0.20994305963538595,
                                0.9736962698651679,
                                -0.08854087057167803,
                                0,
                                0.9417460398149902,
                                -0.22572580428226452,
                                -0.2493236005152893,
                                0,
                                -0.26275141903273436,
                                -0.03103925469115887,
                                -0.9643641721178269,
                                0,
                                -1.5875,
                                1.4,
                                -0.6312500000000002,
                                1
                            ]
                        },
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                0.6444716880931226,
                                0.6102243200478565,
                                0.46074127497819367,
                                0,
                                0.19159822287081404,
                                -0.7122247163434134,
                                0.675297026812861,
                                0,
                                0.7402339928962641,
                                -0.34693260534529624,
                                -0.5759265605172055,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.7
                },
                {
                    "nodes": [
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                0.512572506314574,
                                0.6722272228676925,
                                0.534209684118499,
                                0,
                                0.24024683389494877,
                                -0.7095856291387039,
                                0.6623969306415023,
                                0,
                                0.8243487639184338,
                                -0.21118426966850562,
                                -0.5252145463243859,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.75
                },
                {
                    "nodes": [
                        {
                            "uuid": "172d5ac1-67cf-0271-49a7-1b20326e979d",
                            "matrix": [
                                0.512572506314574,
                                0.6722272228676925,
                                0.534209684118499,
                                0,
                                0.24024683389494877,
                                -0.7095856291387039,
                                0.6623969306415023,
                                0,
                                0.8243487639184338,
                                -0.21118426966850562,
                                -0.5252145463243859,
                                0,
                                0,
                                1.5,
                                0,
                                1
                            ]
                        }
                    ],
                    "time": 0.8
                }
            ],
            "duration": 17,
            "loop_mode": "once",
            "affected_bones": [],
            "affected_bones_is_a_whitelist": false
        }
    }
}

Highlighting for 'Other' types handled by Highlight.JS, which was released under the BSD 3-Clause License.