forked from efroemling/ballistica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.efrocachemap
4015 lines (4015 loc) · 507 KB
/
.efrocachemap
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
{
"assets/build/ba_data/audio/achievement.ogg": "https://files.ballistica.net/cache/ba1/a8/b9/e207ce40c6cfa12bb49b75e83d50",
"assets/build/ba_data/audio/actionHero1.ogg": "https://files.ballistica.net/cache/ba1/fb/e6/17887e6daa0efa34da9704094e97",
"assets/build/ba_data/audio/actionHero2.ogg": "https://files.ballistica.net/cache/ba1/44/e3/919f25501ba3b44361e6f931f5d1",
"assets/build/ba_data/audio/actionHero3.ogg": "https://files.ballistica.net/cache/ba1/cd/80/341ee72eb2f2039d2f59608e7a02",
"assets/build/ba_data/audio/actionHero4.ogg": "https://files.ballistica.net/cache/ba1/6f/ab/8a69f0d0df5b8e8fe4ee92881c07",
"assets/build/ba_data/audio/actionHeroDeath.ogg": "https://files.ballistica.net/cache/ba1/dd/3e/34c6ceb38d93c0c5f0c86b8d4810",
"assets/build/ba_data/audio/actionHeroFall.ogg": "https://files.ballistica.net/cache/ba1/44/fd/05503db81eb0d7e0af6d3d83d588",
"assets/build/ba_data/audio/actionHeroHit1.ogg": "https://files.ballistica.net/cache/ba1/3e/f4/844d49ee4e126d643d62b37d7e59",
"assets/build/ba_data/audio/actionHeroHit2.ogg": "https://files.ballistica.net/cache/ba1/ec/8a/4c1729423399cd3cceb609405ea2",
"assets/build/ba_data/audio/activateBeep.ogg": "https://files.ballistica.net/cache/ba1/0c/88/081372114ef1f19fe983deac3c5d",
"assets/build/ba_data/audio/agent1.ogg": "https://files.ballistica.net/cache/ba1/28/c1/5a1ab66ca86deaba39ddc29669e6",
"assets/build/ba_data/audio/agent2.ogg": "https://files.ballistica.net/cache/ba1/be/f3/e5736789ef33ab8b43351e413a43",
"assets/build/ba_data/audio/agent3.ogg": "https://files.ballistica.net/cache/ba1/b1/96/2679a4d68b5300a85171a4d03237",
"assets/build/ba_data/audio/agent4.ogg": "https://files.ballistica.net/cache/ba1/aa/58/4faec92b955e1ea371dff390fa6a",
"assets/build/ba_data/audio/agentDeath.ogg": "https://files.ballistica.net/cache/ba1/2a/17/75287002ed54f75c909ab1c7da00",
"assets/build/ba_data/audio/agentFall.ogg": "https://files.ballistica.net/cache/ba1/e7/73/8903e45d53ace8766036ef248167",
"assets/build/ba_data/audio/agentHit1.ogg": "https://files.ballistica.net/cache/ba1/a4/03/2820bf5ae03a013327ab9779aa75",
"assets/build/ba_data/audio/agentHit2.ogg": "https://files.ballistica.net/cache/ba1/f0/8c/3a8c72b99f3332ff72075b0af70b",
"assets/build/ba_data/audio/alarm.ogg": "https://files.ballistica.net/cache/ba1/3a/38/2faa4ae6831d288a7205ea10fb8f",
"assets/build/ba_data/audio/ali1.ogg": "https://files.ballistica.net/cache/ba1/ed/ca/db959a38313190c899cb282565c4",
"assets/build/ba_data/audio/ali2.ogg": "https://files.ballistica.net/cache/ba1/4e/bb/75c48f84dd4be4fcc57bbcdbe9d3",
"assets/build/ba_data/audio/ali3.ogg": "https://files.ballistica.net/cache/ba1/2b/d6/c7738cd5426dab8e67c4f8a7cc79",
"assets/build/ba_data/audio/ali4.ogg": "https://files.ballistica.net/cache/ba1/ed/70/8dc0a140bdd77bd3ed6d5e797df4",
"assets/build/ba_data/audio/aliDeath.ogg": "https://files.ballistica.net/cache/ba1/00/7b/ca90d5feef6f2c4d1a492b29e30b",
"assets/build/ba_data/audio/aliFall.ogg": "https://files.ballistica.net/cache/ba1/b6/8d/2d71b13191602ad63bd039494728",
"assets/build/ba_data/audio/aliHit1.ogg": "https://files.ballistica.net/cache/ba1/09/04/2bc5030227a3a8ac6d10713fcebe",
"assets/build/ba_data/audio/aliHit2.ogg": "https://files.ballistica.net/cache/ba1/2e/d1/fbea61dd6e735f5feaefd90cca91",
"assets/build/ba_data/audio/alien1.ogg": "https://files.ballistica.net/cache/ba1/ea/83/6a830cd1f81792c33ad8a7fbfc19",
"assets/build/ba_data/audio/alien2.ogg": "https://files.ballistica.net/cache/ba1/3c/04/5b5ccfd3a1e185aa43da519f1dea",
"assets/build/ba_data/audio/alien3.ogg": "https://files.ballistica.net/cache/ba1/81/96/a0b630adf4cb8edc30fad4fc4e3f",
"assets/build/ba_data/audio/alien4.ogg": "https://files.ballistica.net/cache/ba1/c0/3f/5c0b9bfe6dd2b0b58ee1ac47387b",
"assets/build/ba_data/audio/alienDeath.ogg": "https://files.ballistica.net/cache/ba1/91/7e/a81f96e9bac9e7dcc0319a49f103",
"assets/build/ba_data/audio/alienFall.ogg": "https://files.ballistica.net/cache/ba1/08/e6/48cf7278626788f0f66d2dbb01d6",
"assets/build/ba_data/audio/alienHit1.ogg": "https://files.ballistica.net/cache/ba1/89/36/ab46b81a6c69c37be49f547f0a45",
"assets/build/ba_data/audio/alienHit2.ogg": "https://files.ballistica.net/cache/ba1/b5/54/2ddb1e3638baafc05d53f76d4ab5",
"assets/build/ba_data/audio/announceEight.ogg": "https://files.ballistica.net/cache/ba1/ae/7d/59da023b4f1fa614e303000f7d88",
"assets/build/ba_data/audio/announceFive.ogg": "https://files.ballistica.net/cache/ba1/3b/73/fa1f920e6f4737ef1e059aa75cda",
"assets/build/ba_data/audio/announceFour.ogg": "https://files.ballistica.net/cache/ba1/8d/83/56b3e8d9d65081f3a90358dd5efe",
"assets/build/ba_data/audio/announceNine.ogg": "https://files.ballistica.net/cache/ba1/db/5e/b20678892bc9f07b2bd67212445d",
"assets/build/ba_data/audio/announceOne.ogg": "https://files.ballistica.net/cache/ba1/29/cc/5b72e1283fde2b77b0e73323d5be",
"assets/build/ba_data/audio/announceSeven.ogg": "https://files.ballistica.net/cache/ba1/84/62/c4b7523316660662c284a455b157",
"assets/build/ba_data/audio/announceSix.ogg": "https://files.ballistica.net/cache/ba1/5b/54/c4e4a20626c8fabbfc2d772ffb2e",
"assets/build/ba_data/audio/announceTen.ogg": "https://files.ballistica.net/cache/ba1/bb/e9/e3375786a28c8d3a31e51a107e3f",
"assets/build/ba_data/audio/announceThree.ogg": "https://files.ballistica.net/cache/ba1/c0/c2/d647a08c39468c1780f046752740",
"assets/build/ba_data/audio/announceTwo.ogg": "https://files.ballistica.net/cache/ba1/35/98/3a1d165ef96a78c73f74320b2c31",
"assets/build/ba_data/audio/assassin1.ogg": "https://files.ballistica.net/cache/ba1/6a/de/dc4cb1ed69c4e651cc6bf42c5173",
"assets/build/ba_data/audio/assassin2.ogg": "https://files.ballistica.net/cache/ba1/7c/62/162c0474437e55af55635a1ad97f",
"assets/build/ba_data/audio/assassin3.ogg": "https://files.ballistica.net/cache/ba1/2f/de/15847983325d1f1f5f8ef91e30da",
"assets/build/ba_data/audio/assassin4.ogg": "https://files.ballistica.net/cache/ba1/65/f0/42c31c4fb55726968fd93bcf11c9",
"assets/build/ba_data/audio/assassinDeath.ogg": "https://files.ballistica.net/cache/ba1/2d/d0/535f2def3174ed6ee0f531a57192",
"assets/build/ba_data/audio/assassinFall.ogg": "https://files.ballistica.net/cache/ba1/aa/5a/c4d611380b73a4243f19178204f3",
"assets/build/ba_data/audio/assassinHit1.ogg": "https://files.ballistica.net/cache/ba1/23/72/48a1d328af0b85a8fc21207e38a9",
"assets/build/ba_data/audio/assassinHit2.ogg": "https://files.ballistica.net/cache/ba1/21/2c/04268f932078784f1e1822cfefb8",
"assets/build/ba_data/audio/bear1.ogg": "https://files.ballistica.net/cache/ba1/67/dd/fb986d846b0c0a8999f66dd48216",
"assets/build/ba_data/audio/bear2.ogg": "https://files.ballistica.net/cache/ba1/df/4e/0112cb8eb70ea8b412728d1c67de",
"assets/build/ba_data/audio/bear3.ogg": "https://files.ballistica.net/cache/ba1/0e/3a/1690252272aa499b8ec83f00e14c",
"assets/build/ba_data/audio/bear4.ogg": "https://files.ballistica.net/cache/ba1/a9/7f/935b770de89ee49c81ecc879c601",
"assets/build/ba_data/audio/bearDeath.ogg": "https://files.ballistica.net/cache/ba1/0d/ce/22e61f9ef5090d9be31b153ec8ff",
"assets/build/ba_data/audio/bearFall.ogg": "https://files.ballistica.net/cache/ba1/b0/13/aec779e711b479b51f50b3121727",
"assets/build/ba_data/audio/bearHit1.ogg": "https://files.ballistica.net/cache/ba1/a3/79/bf4901b6e07c70565d0b5b104a62",
"assets/build/ba_data/audio/bearHit2.ogg": "https://files.ballistica.net/cache/ba1/fb/66/4c7cc354f3cb8693b5e2e5ec5600",
"assets/build/ba_data/audio/bellHigh.ogg": "https://files.ballistica.net/cache/ba1/79/30/51181031c96976c19e9d0d9d9904",
"assets/build/ba_data/audio/bellLow.ogg": "https://files.ballistica.net/cache/ba1/db/6c/191e9b4b053e3170981b4aea8ad7",
"assets/build/ba_data/audio/bellMed.ogg": "https://files.ballistica.net/cache/ba1/3e/8c/3bdb867de15d10be735c013760f1",
"assets/build/ba_data/audio/bigImpact.ogg": "https://files.ballistica.net/cache/ba1/4a/f3/f753bab22c91f58a7dfae63663a4",
"assets/build/ba_data/audio/bigImpact2.ogg": "https://files.ballistica.net/cache/ba1/ad/8c/3f8456362c16defad5215672e37b",
"assets/build/ba_data/audio/blank.ogg": "https://files.ballistica.net/cache/ba1/88/87/8bef7f0c6cf01a2a163c859679c3",
"assets/build/ba_data/audio/blip.ogg": "https://files.ballistica.net/cache/ba1/ad/46/9586dfc5463a2775aa2a8b2f2e64",
"assets/build/ba_data/audio/block.ogg": "https://files.ballistica.net/cache/ba1/98/71/52eab427d7b12f26bc794ca86151",
"assets/build/ba_data/audio/bombDrop01.ogg": "https://files.ballistica.net/cache/ba1/ce/82/eb64fdc44dfc884a74140529a49e",
"assets/build/ba_data/audio/bombDrop02.ogg": "https://files.ballistica.net/cache/ba1/e3/cc/be5696acab3c63cc4de9f7581877",
"assets/build/ba_data/audio/bombRoll01.ogg": "https://files.ballistica.net/cache/ba1/f0/fb/7e26cd3d8f4cc9933c5a629b2059",
"assets/build/ba_data/audio/bones1.ogg": "https://files.ballistica.net/cache/ba1/27/99/5e57c973f29064b067f18eaff929",
"assets/build/ba_data/audio/bones2.ogg": "https://files.ballistica.net/cache/ba1/71/25/f6bf7b0ee3cd921dfea13dbd6536",
"assets/build/ba_data/audio/bones3.ogg": "https://files.ballistica.net/cache/ba1/aa/2d/338acc290d5974499ed3c4235893",
"assets/build/ba_data/audio/bonesDeath.ogg": "https://files.ballistica.net/cache/ba1/04/db/632954d340043757a031a61b2e5e",
"assets/build/ba_data/audio/bonesFall.ogg": "https://files.ballistica.net/cache/ba1/07/22/93850523f42f4a0399b91ca89155",
"assets/build/ba_data/audio/boo.ogg": "https://files.ballistica.net/cache/ba1/e6/93/df8c542cea24ed23a404807c5517",
"assets/build/ba_data/audio/boxDrop.ogg": "https://files.ballistica.net/cache/ba1/a3/69/75d1bbaa27f2d849f0f3d861b26d",
"assets/build/ba_data/audio/boxingBell.ogg": "https://files.ballistica.net/cache/ba1/2f/77/f9508deb30b0a0ae53098e1e69a7",
"assets/build/ba_data/audio/bunny1.ogg": "https://files.ballistica.net/cache/ba1/2c/85/c9c017641e9a261584b2f19b4fcc",
"assets/build/ba_data/audio/bunny2.ogg": "https://files.ballistica.net/cache/ba1/10/9f/6f3a68c3ca6927edb2f71d1911af",
"assets/build/ba_data/audio/bunny3.ogg": "https://files.ballistica.net/cache/ba1/51/14/fcf40a47aafaded36eb7ebb2ca59",
"assets/build/ba_data/audio/bunny4.ogg": "https://files.ballistica.net/cache/ba1/3e/4b/29b44daaeb7780c35548435acbdd",
"assets/build/ba_data/audio/bunnyDeath.ogg": "https://files.ballistica.net/cache/ba1/4d/6d/c7cad13971bb8c97ed84ed1f2720",
"assets/build/ba_data/audio/bunnyFall.ogg": "https://files.ballistica.net/cache/ba1/ff/51/102b1696003060e1d49fcc552545",
"assets/build/ba_data/audio/bunnyHit1.ogg": "https://files.ballistica.net/cache/ba1/40/1e/c67c7f4da895b161794674b8a9d3",
"assets/build/ba_data/audio/bunnyHit2.ogg": "https://files.ballistica.net/cache/ba1/69/0f/f9f8148ec33a2ac8fc5ec733ed18",
"assets/build/ba_data/audio/bunnyJump.ogg": "https://files.ballistica.net/cache/ba1/ef/2e/67f01df90039ab59d3e8f86f1742",
"assets/build/ba_data/audio/cashRegister.ogg": "https://files.ballistica.net/cache/ba1/d2/c4/ad2a2ecb4d614dcd4837cd0aa780",
"assets/build/ba_data/audio/cashRegister2.ogg": "https://files.ballistica.net/cache/ba1/ab/4d/ee8720a56ebf4853c385b10d9a2d",
"assets/build/ba_data/audio/charSelectMusic.ogg": "https://files.ballistica.net/cache/ba1/b0/30/4430d66d12fad6585a2d1af039bf",
"assets/build/ba_data/audio/cheer.ogg": "https://files.ballistica.net/cache/ba1/80/a6/02ed7a6bdb4ed67892586efb532f",
"assets/build/ba_data/audio/click01.ogg": "https://files.ballistica.net/cache/ba1/e0/53/ecd6398c7848b6579afb8b51df7a",
"assets/build/ba_data/audio/corkPop.ogg": "https://files.ballistica.net/cache/ba1/4a/b2/ce1f492068346b86686ebcea392b",
"assets/build/ba_data/audio/cowboy1.ogg": "https://files.ballistica.net/cache/ba1/bc/cc/142300b27ca74a27c95f29230120",
"assets/build/ba_data/audio/cowboy2.ogg": "https://files.ballistica.net/cache/ba1/22/bb/ac3515026a1e35d87652d391f947",
"assets/build/ba_data/audio/cowboy3.ogg": "https://files.ballistica.net/cache/ba1/6e/52/5d16a011e29b45aee4f328cd354d",
"assets/build/ba_data/audio/cowboy4.ogg": "https://files.ballistica.net/cache/ba1/f8/03/0867c123af13cbfcade74318f406",
"assets/build/ba_data/audio/cowboyDeath.ogg": "https://files.ballistica.net/cache/ba1/e8/3c/d01e7f70b02fcabe2542bdd0c4e3",
"assets/build/ba_data/audio/cowboyFall.ogg": "https://files.ballistica.net/cache/ba1/df/8e/c185f234ed95f426c4d98d10cc66",
"assets/build/ba_data/audio/cowboyHit1.ogg": "https://files.ballistica.net/cache/ba1/0e/de/828f1850b1a33c11403c1a221389",
"assets/build/ba_data/audio/cowboyHit2.ogg": "https://files.ballistica.net/cache/ba1/ac/9b/b66ec093e356469b3d55c0dcab67",
"assets/build/ba_data/audio/crowdChant.ogg": "https://files.ballistica.net/cache/ba1/01/ca/12615954e8e9767da9513f0161a6",
"assets/build/ba_data/audio/cyborg1.ogg": "https://files.ballistica.net/cache/ba1/29/46/dd920b03675683826c60cab68431",
"assets/build/ba_data/audio/cyborg2.ogg": "https://files.ballistica.net/cache/ba1/d7/ba/949825f4919e8b9f24bfdf58eacb",
"assets/build/ba_data/audio/cyborg3.ogg": "https://files.ballistica.net/cache/ba1/ce/21/d9accc6101f4558117e952e7ebad",
"assets/build/ba_data/audio/cyborg4.ogg": "https://files.ballistica.net/cache/ba1/df/21/6b80b058be9b14dde9c41e26e044",
"assets/build/ba_data/audio/cyborgDeath.ogg": "https://files.ballistica.net/cache/ba1/3c/75/65d8af77c45c5b6eabb861151357",
"assets/build/ba_data/audio/cyborgFall.ogg": "https://files.ballistica.net/cache/ba1/18/36/a490e28b7118c20ca0356125c4ed",
"assets/build/ba_data/audio/cyborgHit1.ogg": "https://files.ballistica.net/cache/ba1/69/3f/62c505ee86ec5820348cd18126d4",
"assets/build/ba_data/audio/cyborgHit2.ogg": "https://files.ballistica.net/cache/ba1/42/ac/490a638e08e5a55e0875b73fe77b",
"assets/build/ba_data/audio/cymbal.ogg": "https://files.ballistica.net/cache/ba1/71/20/efb28af7b28ff5bb73abb26569d2",
"assets/build/ba_data/audio/debrisFall.ogg": "https://files.ballistica.net/cache/ba1/22/11/97924b97b98f2521da40f2ca065a",
"assets/build/ba_data/audio/deek.ogg": "https://files.ballistica.net/cache/ba1/7d/9c/9528dfb6423d97528986df385ffb",
"assets/build/ba_data/audio/deek2.ogg": "https://files.ballistica.net/cache/ba1/f1/b9/cf424e2d0325a160a359687a29e8",
"assets/build/ba_data/audio/ding.ogg": "https://files.ballistica.net/cache/ba1/ea/6a/695042e9523dcfd0e0650ec6b2a6",
"assets/build/ba_data/audio/dingSmall.ogg": "https://files.ballistica.net/cache/ba1/d8/55/fb450394e9b9ee6e30b5f72761d7",
"assets/build/ba_data/audio/dingSmallHigh.ogg": "https://files.ballistica.net/cache/ba1/87/e1/34a485907fec55ba50b8b7011535",
"assets/build/ba_data/audio/dripity.ogg": "https://files.ballistica.net/cache/ba1/31/8b/dfb7f781e4ba2e6e8f64a38fcce9",
"assets/build/ba_data/audio/drumRoll.ogg": "https://files.ballistica.net/cache/ba1/f6/64/4cbd92296fb7fc0c7bc4579b44ad",
"assets/build/ba_data/audio/error.ogg": "https://files.ballistica.net/cache/ba1/81/06/6598bd6074b4f6f6ae8dfe4d0c92",
"assets/build/ba_data/audio/explosion01.ogg": "https://files.ballistica.net/cache/ba1/6f/5b/780b8a87afedbbe8651780b21c6e",
"assets/build/ba_data/audio/explosion02.ogg": "https://files.ballistica.net/cache/ba1/6e/48/351670fd3c3adfa37014901c4608",
"assets/build/ba_data/audio/explosion03.ogg": "https://files.ballistica.net/cache/ba1/50/b8/5ad4ddc862bd6e6a0c72cfbd7881",
"assets/build/ba_data/audio/explosion04.ogg": "https://files.ballistica.net/cache/ba1/d9/3a/343fa93b612b781af7bb39f06592",
"assets/build/ba_data/audio/explosion05.ogg": "https://files.ballistica.net/cache/ba1/20/0e/6e737d55dce712fd43a760b6ca88",
"assets/build/ba_data/audio/fanfare.ogg": "https://files.ballistica.net/cache/ba1/ee/7c/45459639b297498cd6e57ed7aab2",
"assets/build/ba_data/audio/flagCatcherMusic.ogg": "https://files.ballistica.net/cache/ba1/23/ca/93c5a2a4b1081d7a3843b551609c",
"assets/build/ba_data/audio/flyingMusic.ogg": "https://files.ballistica.net/cache/ba1/c5/2d/368531f73094c0e324e880d3db29",
"assets/build/ba_data/audio/foghorn.ogg": "https://files.ballistica.net/cache/ba1/a5/ba/c8eb0ad678a711e91d0d010b0455",
"assets/build/ba_data/audio/footImpact01.ogg": "https://files.ballistica.net/cache/ba1/00/13/976aecf974d7f6ed22692da7895e",
"assets/build/ba_data/audio/footImpact02.ogg": "https://files.ballistica.net/cache/ba1/28/25/1d7d94b671e1acb2bdc7ae07a0eb",
"assets/build/ba_data/audio/footImpact03.ogg": "https://files.ballistica.net/cache/ba1/4e/b6/ef25162cd3cfe55edf0ad8b92b6b",
"assets/build/ba_data/audio/forwardMarchMusic.ogg": "https://files.ballistica.net/cache/ba1/93/b1/e3b10157914e6ea49c02d084371c",
"assets/build/ba_data/audio/freeze.ogg": "https://files.ballistica.net/cache/ba1/f8/0e/7c354906dcc9c0b993a7334a3406",
"assets/build/ba_data/audio/frosty01.ogg": "https://files.ballistica.net/cache/ba1/93/11/fb3d2018b60eb89364ef5941668e",
"assets/build/ba_data/audio/frosty02.ogg": "https://files.ballistica.net/cache/ba1/db/fa/74de772e3a87d5d823927c5bf625",
"assets/build/ba_data/audio/frosty03.ogg": "https://files.ballistica.net/cache/ba1/9c/da/5b77a6493dadc251899adb9626dc",
"assets/build/ba_data/audio/frosty04.ogg": "https://files.ballistica.net/cache/ba1/d9/b3/2d25791309215d5b0939f83bbe0a",
"assets/build/ba_data/audio/frosty05.ogg": "https://files.ballistica.net/cache/ba1/f5/b1/3cb93dd1d3f7c4e80d89cbf0af21",
"assets/build/ba_data/audio/frostyDeath.ogg": "https://files.ballistica.net/cache/ba1/69/4f/08a644c6039837b4713753218d9e",
"assets/build/ba_data/audio/frostyFall.ogg": "https://files.ballistica.net/cache/ba1/58/17/8d8e8e19bd9714b8ced0eaf82cb4",
"assets/build/ba_data/audio/frostyHit01.ogg": "https://files.ballistica.net/cache/ba1/28/26/2d546d2759db181a60fe58e36314",
"assets/build/ba_data/audio/frostyHit02.ogg": "https://files.ballistica.net/cache/ba1/a8/10/e66174ceb844fdc0f641354f8057",
"assets/build/ba_data/audio/frostyHit03.ogg": "https://files.ballistica.net/cache/ba1/b2/67/8af78acbd423615c109e3ef664ed",
"assets/build/ba_data/audio/fuse01.ogg": "https://files.ballistica.net/cache/ba1/43/4d/b5793085eb4f781e0a0c9cfe1663",
"assets/build/ba_data/audio/gladiator1.ogg": "https://files.ballistica.net/cache/ba1/07/bf/69fa4ea1b39f17d4027725e37778",
"assets/build/ba_data/audio/gladiator2.ogg": "https://files.ballistica.net/cache/ba1/1d/38/445682fb79b7ce060a48c84f1b05",
"assets/build/ba_data/audio/gladiator3.ogg": "https://files.ballistica.net/cache/ba1/35/ab/d10b1a5bc75841cb6e51e5b5467f",
"assets/build/ba_data/audio/gladiator4.ogg": "https://files.ballistica.net/cache/ba1/ca/f8/5a70574a98ea7204fec7da080849",
"assets/build/ba_data/audio/gladiatorDeath.ogg": "https://files.ballistica.net/cache/ba1/c2/5b/91a47747c627ef8038d0f9556276",
"assets/build/ba_data/audio/gladiatorFall.ogg": "https://files.ballistica.net/cache/ba1/a1/d2/c0651db4f6240e84ebe189eb6583",
"assets/build/ba_data/audio/gladiatorHit1.ogg": "https://files.ballistica.net/cache/ba1/b3/e4/66bca9f3f784e1587a6a46b8deca",
"assets/build/ba_data/audio/gladiatorHit2.ogg": "https://files.ballistica.net/cache/ba1/fe/cf/2f5be6f003fe5fdbe4736a5048d2",
"assets/build/ba_data/audio/gong.ogg": "https://files.ballistica.net/cache/ba1/cc/05/348ae1033d41dcef058c7a14034a",
"assets/build/ba_data/audio/grandRompMusic.ogg": "https://files.ballistica.net/cache/ba1/61/c7/742e9da16ac27d1462ba9b0113d2",
"assets/build/ba_data/audio/gravelSkid.ogg": "https://files.ballistica.net/cache/ba1/b9/5b/b7818e6998c5c2d1ab2f97edd17c",
"assets/build/ba_data/audio/gunCocking.ogg": "https://files.ballistica.net/cache/ba1/8c/56/15f29e6cfc197a544131ca6e9a4e",
"assets/build/ba_data/audio/healthPowerup.ogg": "https://files.ballistica.net/cache/ba1/98/6b/92bf086c083da0ee830a8d274029",
"assets/build/ba_data/audio/hiss.ogg": "https://files.ballistica.net/cache/ba1/ee/6a/707f41a468ade124534c18d0e2a7",
"assets/build/ba_data/audio/impactHard.ogg": "https://files.ballistica.net/cache/ba1/10/01/0d5c5ad9410b4901c43540abc50e",
"assets/build/ba_data/audio/impactHard2.ogg": "https://files.ballistica.net/cache/ba1/e0/b1/51a13fe1212939407a0d200b2978",
"assets/build/ba_data/audio/impactHard3.ogg": "https://files.ballistica.net/cache/ba1/09/47/49ed4ceec066da5141e020e52712",
"assets/build/ba_data/audio/impactMedium.ogg": "https://files.ballistica.net/cache/ba1/fe/e1/6541f5e5cb1bf8d2137f0dcf0491",
"assets/build/ba_data/audio/impactMedium2.ogg": "https://files.ballistica.net/cache/ba1/d4/68/3e4a258ffc851a34c4bb1c2cf2da",
"assets/build/ba_data/audio/jack01.ogg": "https://files.ballistica.net/cache/ba1/4f/97/40447463b1fbd2472239b0f1dac7",
"assets/build/ba_data/audio/jack02.ogg": "https://files.ballistica.net/cache/ba1/fb/a0/4d8807c6196e564e1063677f05a9",
"assets/build/ba_data/audio/jack03.ogg": "https://files.ballistica.net/cache/ba1/c3/b1/5ff89aee55e1c38de0428d8dd12e",
"assets/build/ba_data/audio/jack04.ogg": "https://files.ballistica.net/cache/ba1/aa/d1/38eaded5e83dd4b50ffa50a89461",
"assets/build/ba_data/audio/jack05.ogg": "https://files.ballistica.net/cache/ba1/77/9d/a007daf16e97ac8c10d685483e2d",
"assets/build/ba_data/audio/jack06.ogg": "https://files.ballistica.net/cache/ba1/f9/31/a81df28ff3f7192ef9027718c1d3",
"assets/build/ba_data/audio/jackDeath01.ogg": "https://files.ballistica.net/cache/ba1/87/54/5ea610f1c9675d3065d0d3564771",
"assets/build/ba_data/audio/jackFall01.ogg": "https://files.ballistica.net/cache/ba1/6e/57/b4db1b68d1596405db012835a7b8",
"assets/build/ba_data/audio/jackHit01.ogg": "https://files.ballistica.net/cache/ba1/01/12/a480370ccffc19b7a523d2d5e630",
"assets/build/ba_data/audio/jackHit02.ogg": "https://files.ballistica.net/cache/ba1/8e/95/05b3ee4088cc51888ce719a338bc",
"assets/build/ba_data/audio/jackHit03.ogg": "https://files.ballistica.net/cache/ba1/78/0a/623ff9f863211aa136073d4503f1",
"assets/build/ba_data/audio/jackHit04.ogg": "https://files.ballistica.net/cache/ba1/0e/54/f4afd712012622f8eb3694f96ed4",
"assets/build/ba_data/audio/jackHit05.ogg": "https://files.ballistica.net/cache/ba1/e1/73/73dcd68223c48741e1a2a482dc71",
"assets/build/ba_data/audio/jackHit06.ogg": "https://files.ballistica.net/cache/ba1/16/4a/860158ca4a61d0f88fa01fc2c43f",
"assets/build/ba_data/audio/jackHit07.ogg": "https://files.ballistica.net/cache/ba1/13/3b/b3519bfe762031f85820ded9275e",
"assets/build/ba_data/audio/jumpsuit1.ogg": "https://files.ballistica.net/cache/ba1/86/50/def5afd798a17fe393e0f980c60d",
"assets/build/ba_data/audio/jumpsuit2.ogg": "https://files.ballistica.net/cache/ba1/39/42/8c0e5971304f7b752fee2e8aaf67",
"assets/build/ba_data/audio/jumpsuit3.ogg": "https://files.ballistica.net/cache/ba1/4c/12/09317d95c11b5e5af186dab09104",
"assets/build/ba_data/audio/jumpsuit4.ogg": "https://files.ballistica.net/cache/ba1/29/72/85a98b7fd45a065415cbb297176d",
"assets/build/ba_data/audio/jumpsuitDeath.ogg": "https://files.ballistica.net/cache/ba1/f1/a6/1b0344a246b263dd26dda8af4c62",
"assets/build/ba_data/audio/jumpsuitFall.ogg": "https://files.ballistica.net/cache/ba1/1f/45/123cd030db522a74f5fc6e722acb",
"assets/build/ba_data/audio/jumpsuitHit1.ogg": "https://files.ballistica.net/cache/ba1/fc/4a/467ecf3f12a0ecff71146e97d3fc",
"assets/build/ba_data/audio/jumpsuitHit2.ogg": "https://files.ballistica.net/cache/ba1/b9/be/37d7f8fec14252418cca03554360",
"assets/build/ba_data/audio/kronk1.ogg": "https://files.ballistica.net/cache/ba1/c0/a1/016837c1561781ce1ccddc287c6d",
"assets/build/ba_data/audio/kronk10.ogg": "https://files.ballistica.net/cache/ba1/95/a9/5bd902f3c64bc3d6d6b5035b5a40",
"assets/build/ba_data/audio/kronk2.ogg": "https://files.ballistica.net/cache/ba1/4d/48/354c3a7841396bf8635a027402a6",
"assets/build/ba_data/audio/kronk3.ogg": "https://files.ballistica.net/cache/ba1/78/08/033e21c2ffa7c54752868d569ad9",
"assets/build/ba_data/audio/kronk4.ogg": "https://files.ballistica.net/cache/ba1/77/a8/70f5d77b59dd10d40bc986793e0a",
"assets/build/ba_data/audio/kronk5.ogg": "https://files.ballistica.net/cache/ba1/9f/3b/4ac358d91c38b27d1764214b496a",
"assets/build/ba_data/audio/kronk6.ogg": "https://files.ballistica.net/cache/ba1/e8/45/39f1da4d8137327343bfbffdf7ac",
"assets/build/ba_data/audio/kronk7.ogg": "https://files.ballistica.net/cache/ba1/48/d3/51ceb3c945fa30582e26ecdf36d8",
"assets/build/ba_data/audio/kronk8.ogg": "https://files.ballistica.net/cache/ba1/7c/3e/53a4213b2fde4e960d452fe33112",
"assets/build/ba_data/audio/kronk9.ogg": "https://files.ballistica.net/cache/ba1/b6/ac/76986e6a4d83b356d38795b09f87",
"assets/build/ba_data/audio/kronkDeath.ogg": "https://files.ballistica.net/cache/ba1/e0/d5/5ac5851c49e318672f346ac9cff4",
"assets/build/ba_data/audio/kronkFall.ogg": "https://files.ballistica.net/cache/ba1/41/2f/eb5e4245a309408c7329e86bcc20",
"assets/build/ba_data/audio/laser.ogg": "https://files.ballistica.net/cache/ba1/3b/47/a462d0e9f177c18352cf4c6df40d",
"assets/build/ba_data/audio/laserReverse.ogg": "https://files.ballistica.net/cache/ba1/b4/6b/e0b25588faedd90432ec30d2a75c",
"assets/build/ba_data/audio/mel01.ogg": "https://files.ballistica.net/cache/ba1/6a/66/a6ff483dacf401d905eca772dddd",
"assets/build/ba_data/audio/mel02.ogg": "https://files.ballistica.net/cache/ba1/b7/3f/45a18bfe180a979fab6f3c8b237e",
"assets/build/ba_data/audio/mel03.ogg": "https://files.ballistica.net/cache/ba1/1a/10/35f72b0377dcf87d89da570c4ee9",
"assets/build/ba_data/audio/mel04.ogg": "https://files.ballistica.net/cache/ba1/a5/39/61b940c6cc702eefc37fb599ddf2",
"assets/build/ba_data/audio/mel05.ogg": "https://files.ballistica.net/cache/ba1/74/df/58cb10097213f163dfa5062206c6",
"assets/build/ba_data/audio/mel06.ogg": "https://files.ballistica.net/cache/ba1/d2/f2/6faf10b25273ffcfc5ad0469f2fa",
"assets/build/ba_data/audio/mel07.ogg": "https://files.ballistica.net/cache/ba1/52/58/d398c4fa5c59a31d7f5dc6205b14",
"assets/build/ba_data/audio/mel08.ogg": "https://files.ballistica.net/cache/ba1/17/19/69bfe037a45b92265d3c2081de6b",
"assets/build/ba_data/audio/mel09.ogg": "https://files.ballistica.net/cache/ba1/10/f3/ae6c34bbc939b174a3d99462def3",
"assets/build/ba_data/audio/mel10.ogg": "https://files.ballistica.net/cache/ba1/0e/90/da591f8250b51f4a48cead39bf24",
"assets/build/ba_data/audio/melDeath01.ogg": "https://files.ballistica.net/cache/ba1/b7/31/552729a26af1e4823fb6939e0d12",
"assets/build/ba_data/audio/melFall01.ogg": "https://files.ballistica.net/cache/ba1/05/e2/68f8afceeb40ef77cacb1d2f3381",
"assets/build/ba_data/audio/menuMusic.ogg": "https://files.ballistica.net/cache/ba1/6b/4d/8248c9c9bd5e2907761504105235",
"assets/build/ba_data/audio/metalHit.ogg": "https://files.ballistica.net/cache/ba1/c7/be/68038edc534c80f4496cc728fb4d",
"assets/build/ba_data/audio/metalSkid.ogg": "https://files.ballistica.net/cache/ba1/0b/c5/88d6bbd542e70cfb2189c0658a62",
"assets/build/ba_data/audio/ninjaAttack1.ogg": "https://files.ballistica.net/cache/ba1/14/ee/32dc76ad9c15555ce61508c49501",
"assets/build/ba_data/audio/ninjaAttack2.ogg": "https://files.ballistica.net/cache/ba1/2a/6a/926b6abbdf3457f5a447b4c985d1",
"assets/build/ba_data/audio/ninjaAttack3.ogg": "https://files.ballistica.net/cache/ba1/d4/59/d99c7d08cb5aae1502acd4451c0d",
"assets/build/ba_data/audio/ninjaAttack4.ogg": "https://files.ballistica.net/cache/ba1/7f/8f/a02c2c3434d17d6c1b66868a6a77",
"assets/build/ba_data/audio/ninjaAttack5.ogg": "https://files.ballistica.net/cache/ba1/02/63/28216367c3d70bd4ad825cb82148",
"assets/build/ba_data/audio/ninjaAttack6.ogg": "https://files.ballistica.net/cache/ba1/bc/c5/7562680fc3f9d830bdcbdc9a88c9",
"assets/build/ba_data/audio/ninjaAttack7.ogg": "https://files.ballistica.net/cache/ba1/d2/44/0b8c322730c3331ac90d5a98a141",
"assets/build/ba_data/audio/ninjaDeath1.ogg": "https://files.ballistica.net/cache/ba1/d1/0e/b3da88e962c584d6f753435d1074",
"assets/build/ba_data/audio/ninjaFall1.ogg": "https://files.ballistica.net/cache/ba1/5b/d9/1a215f53b78396c88f1fa1a4f080",
"assets/build/ba_data/audio/ninjaHit1.ogg": "https://files.ballistica.net/cache/ba1/0b/a6/50edbcd553fe020abc5545063b59",
"assets/build/ba_data/audio/ninjaHit2.ogg": "https://files.ballistica.net/cache/ba1/94/ba/b2cce8525f5d8add20edb74a74c2",
"assets/build/ba_data/audio/ninjaHit3.ogg": "https://files.ballistica.net/cache/ba1/1f/69/81ae05f8e998e55b98a0c946e9fa",
"assets/build/ba_data/audio/ninjaHit4.ogg": "https://files.ballistica.net/cache/ba1/19/b9/f4036f4be83194830f0821015739",
"assets/build/ba_data/audio/ninjaHit5.ogg": "https://files.ballistica.net/cache/ba1/00/b7/4569bf348a60ffdb7de94e1bbdc8",
"assets/build/ba_data/audio/ninjaHit6.ogg": "https://files.ballistica.net/cache/ba1/4d/61/3ddfa08307ce0d13dab64a187693",
"assets/build/ba_data/audio/ninjaHit7.ogg": "https://files.ballistica.net/cache/ba1/04/8f/1f69d466eb89fd804a0957e989e9",
"assets/build/ba_data/audio/ninjaHit8.ogg": "https://files.ballistica.net/cache/ba1/de/ec/8795dfb4444eb6f289ba707f8c8a",
"assets/build/ba_data/audio/oldLady1.ogg": "https://files.ballistica.net/cache/ba1/b4/ca/17de1f1b634efdc84d247b8c381c",
"assets/build/ba_data/audio/oldLady2.ogg": "https://files.ballistica.net/cache/ba1/74/0a/b317572e2c59c67a6cbb47cbe5cb",
"assets/build/ba_data/audio/oldLady3.ogg": "https://files.ballistica.net/cache/ba1/89/27/62d8481958a151456ecf3e91009d",
"assets/build/ba_data/audio/oldLady4.ogg": "https://files.ballistica.net/cache/ba1/97/3b/4867761a667f22928e505a70fe60",
"assets/build/ba_data/audio/oldLadyDeath.ogg": "https://files.ballistica.net/cache/ba1/a8/12/96bfd3ad1c13cffb45882cbf9953",
"assets/build/ba_data/audio/oldLadyFall.ogg": "https://files.ballistica.net/cache/ba1/a6/c2/630f4fd3f531df9600a69b7c849b",
"assets/build/ba_data/audio/oldLadyHit1.ogg": "https://files.ballistica.net/cache/ba1/c1/8c/eea9e9380ae5c153a7ee76981f3c",
"assets/build/ba_data/audio/oldLadyHit2.ogg": "https://files.ballistica.net/cache/ba1/2f/8f/cff721bf7d889f751827f28703fc",
"assets/build/ba_data/audio/ooh.ogg": "https://files.ballistica.net/cache/ba1/5a/44/9c4ba513618f6c6955f144b4eb02",
"assets/build/ba_data/audio/operaSinger1.ogg": "https://files.ballistica.net/cache/ba1/a0/63/18db988917c5c206e594fd7f21ef",
"assets/build/ba_data/audio/operaSinger2.ogg": "https://files.ballistica.net/cache/ba1/cb/6a/8640128dd9dfd5629f1d2459afa6",
"assets/build/ba_data/audio/operaSinger3.ogg": "https://files.ballistica.net/cache/ba1/14/28/c8ed6a18f23d520a29a4a79c0940",
"assets/build/ba_data/audio/operaSinger4.ogg": "https://files.ballistica.net/cache/ba1/af/09/17ffccfb068ccfad1cc7b80fa3c2",
"assets/build/ba_data/audio/operaSingerDeath.ogg": "https://files.ballistica.net/cache/ba1/18/e7/05468ac418929acc12e8a9187b7a",
"assets/build/ba_data/audio/operaSingerFall.ogg": "https://files.ballistica.net/cache/ba1/94/13/886780231f7baaf911166b56f36b",
"assets/build/ba_data/audio/operaSingerHit1.ogg": "https://files.ballistica.net/cache/ba1/f5/61/4ac10e5b26c985edf561a23832e9",
"assets/build/ba_data/audio/operaSingerHit2.ogg": "https://files.ballistica.net/cache/ba1/9d/e7/68e42932d696a7eba05db2310aa9",
"assets/build/ba_data/audio/orchestraHit.ogg": "https://files.ballistica.net/cache/ba1/e1/2d/93817e1a5ff3517c95148bf34782",
"assets/build/ba_data/audio/orchestraHit2.ogg": "https://files.ballistica.net/cache/ba1/28/f7/58304de4fcc617d94a09eee7c68f",
"assets/build/ba_data/audio/orchestraHit3.ogg": "https://files.ballistica.net/cache/ba1/6d/86/a184ce6c71232b69e23012616ef6",
"assets/build/ba_data/audio/orchestraHit4.ogg": "https://files.ballistica.net/cache/ba1/0d/2d/622d4fb784a920b6dc6ad256be11",
"assets/build/ba_data/audio/orchestraHitBig1.ogg": "https://files.ballistica.net/cache/ba1/2e/27/9030b6c336b579633e78ad2ad14d",
"assets/build/ba_data/audio/orchestraHitBig2.ogg": "https://files.ballistica.net/cache/ba1/ce/78/e941781b3d49016d1499a9e37292",
"assets/build/ba_data/audio/penguin1.ogg": "https://files.ballistica.net/cache/ba1/38/41/04ac98419daecaf275594beeef1a",
"assets/build/ba_data/audio/penguin2.ogg": "https://files.ballistica.net/cache/ba1/cb/66/bce92ef74e6944aa10fcd13e6c54",
"assets/build/ba_data/audio/penguin3.ogg": "https://files.ballistica.net/cache/ba1/15/a7/cfcea072ed10fcb5fb5570b51b12",
"assets/build/ba_data/audio/penguin4.ogg": "https://files.ballistica.net/cache/ba1/3e/65/c041c417385e204654ba5478c31f",
"assets/build/ba_data/audio/penguinDeath.ogg": "https://files.ballistica.net/cache/ba1/ea/18/2c45b8e81954a392bd0e5483d634",
"assets/build/ba_data/audio/penguinFall.ogg": "https://files.ballistica.net/cache/ba1/9b/44/8db744c50073597c684712ef3c45",
"assets/build/ba_data/audio/penguinHit1.ogg": "https://files.ballistica.net/cache/ba1/63/70/bf832414289acb1f9cb99b0b1020",
"assets/build/ba_data/audio/penguinHit2.ogg": "https://files.ballistica.net/cache/ba1/2b/ff/de0eb850c27dc10e133953f4abab",
"assets/build/ba_data/audio/pixie1.ogg": "https://files.ballistica.net/cache/ba1/d3/92/3034a49ed5513cd457db5419d8c7",
"assets/build/ba_data/audio/pixie2.ogg": "https://files.ballistica.net/cache/ba1/df/e9/13a274fd1153117b7a30c489bf39",
"assets/build/ba_data/audio/pixie3.ogg": "https://files.ballistica.net/cache/ba1/59/d4/fd90e833b88b1c5805d8cfeead6c",
"assets/build/ba_data/audio/pixie4.ogg": "https://files.ballistica.net/cache/ba1/05/7b/0d763f7c675f172265ef3c28b713",
"assets/build/ba_data/audio/pixieDeath.ogg": "https://files.ballistica.net/cache/ba1/f7/35/eb73e9aafe67fb72563f8c8b69ba",
"assets/build/ba_data/audio/pixieFall.ogg": "https://files.ballistica.net/cache/ba1/9f/88/e9a8bcc621b765753668be7a5504",
"assets/build/ba_data/audio/pixieHit1.ogg": "https://files.ballistica.net/cache/ba1/86/f5/2ca62d5c20dd7fc5111b24d1e26d",
"assets/build/ba_data/audio/pixieHit2.ogg": "https://files.ballistica.net/cache/ba1/ce/a9/79cb6e3617be489154b27fc06976",
"assets/build/ba_data/audio/playerDeath.ogg": "https://files.ballistica.net/cache/ba1/4d/1b/d63ed1fc17f1a4849ed9b38585aa",
"assets/build/ba_data/audio/playerLeft.ogg": "https://files.ballistica.net/cache/ba1/ac/97/307bc69d5d36de635703ca5da481",
"assets/build/ba_data/audio/pop01.ogg": "https://files.ballistica.net/cache/ba1/b3/1a/5d92d6fabbd1cbb6d19ba9d9beb7",
"assets/build/ba_data/audio/powerdown01.ogg": "https://files.ballistica.net/cache/ba1/eb/e5/3030ba612a547c070d4c56d82a82",
"assets/build/ba_data/audio/powerup01.ogg": "https://files.ballistica.net/cache/ba1/fd/62/d4e05848ef3d044b771974f046d5",
"assets/build/ba_data/audio/punch01.ogg": "https://files.ballistica.net/cache/ba1/09/e3/328e094ea215c1400885ee1ecdba",
"assets/build/ba_data/audio/punchStrong01.ogg": "https://files.ballistica.net/cache/ba1/bf/ff/128a1aab2493300189d5502a8bad",
"assets/build/ba_data/audio/punchStrong02.ogg": "https://files.ballistica.net/cache/ba1/ed/3f/7b6b46b8871b55e11abfdbb4d563",
"assets/build/ba_data/audio/punchSwish.ogg": "https://files.ballistica.net/cache/ba1/84/32/bc437bc9fbd4cc527b384e89eb28",
"assets/build/ba_data/audio/punchWeak01.ogg": "https://files.ballistica.net/cache/ba1/8a/39/935a1251fb2b6788727448573a85",
"assets/build/ba_data/audio/raceBeep1.ogg": "https://files.ballistica.net/cache/ba1/11/39/b960b7105d861a579af5d5972287",
"assets/build/ba_data/audio/raceBeep2.ogg": "https://files.ballistica.net/cache/ba1/e2/5b/63a3643669172f9daa5612b02c84",
"assets/build/ba_data/audio/refWhistle.ogg": "https://files.ballistica.net/cache/ba1/58/d5/5ce3dad840d1f36a38e8c12f6999",
"assets/build/ba_data/audio/robot1.ogg": "https://files.ballistica.net/cache/ba1/36/b5/091620c6314cee2bbbf69e312b25",
"assets/build/ba_data/audio/robot2.ogg": "https://files.ballistica.net/cache/ba1/13/ce/fc14fcca289457468e353b67bfb1",
"assets/build/ba_data/audio/robot3.ogg": "https://files.ballistica.net/cache/ba1/29/1b/2408dcf0dacd2b73815dc1b42b78",
"assets/build/ba_data/audio/robot4.ogg": "https://files.ballistica.net/cache/ba1/47/90/55dd536b98625c3ea2aad243bc49",
"assets/build/ba_data/audio/robotDeath.ogg": "https://files.ballistica.net/cache/ba1/1a/9b/0fe3f3583bb96412127ffef07c19",
"assets/build/ba_data/audio/robotFall.ogg": "https://files.ballistica.net/cache/ba1/8b/24/3285dbf3ffcb4dd660d7921aa601",
"assets/build/ba_data/audio/robotHit1.ogg": "https://files.ballistica.net/cache/ba1/ae/fa/977fa665062277a0cb843bba3755",
"assets/build/ba_data/audio/robotHit2.ogg": "https://files.ballistica.net/cache/ba1/67/7c/6af5e794a6953160494456570fc4",
"assets/build/ba_data/audio/runAwayMusic.ogg": "https://files.ballistica.net/cache/ba1/a3/6c/e6be3f0bba073dbaabe5384b5cde",
"assets/build/ba_data/audio/santa01.ogg": "https://files.ballistica.net/cache/ba1/74/51/caefab5d350f32263272230575ed",
"assets/build/ba_data/audio/santa02.ogg": "https://files.ballistica.net/cache/ba1/38/ea/729b0b844250a2be918594ad12f6",
"assets/build/ba_data/audio/santa03.ogg": "https://files.ballistica.net/cache/ba1/84/27/0c1554941d5bee75d3add8748cfc",
"assets/build/ba_data/audio/santa04.ogg": "https://files.ballistica.net/cache/ba1/84/75/84fde245eda2368f4d6ff406d9d9",
"assets/build/ba_data/audio/santa05.ogg": "https://files.ballistica.net/cache/ba1/bc/61/abb2490a038120d803973ca733fc",
"assets/build/ba_data/audio/santaDeath.ogg": "https://files.ballistica.net/cache/ba1/31/d8/5c93316962032b419def8c5893a8",
"assets/build/ba_data/audio/santaFall.ogg": "https://files.ballistica.net/cache/ba1/d8/59/92cfbf9945dc61ceaa4a2fdb1ef3",
"assets/build/ba_data/audio/santaHit01.ogg": "https://files.ballistica.net/cache/ba1/ff/e0/f03e86dc06328818ee9a0ef73b6f",
"assets/build/ba_data/audio/santaHit02.ogg": "https://files.ballistica.net/cache/ba1/ec/fa/4c3a3133509f71f18339fb8ce5a7",
"assets/build/ba_data/audio/santaHit03.ogg": "https://files.ballistica.net/cache/ba1/25/d3/5a6aaa5fdf41a344f9a479ba2afd",
"assets/build/ba_data/audio/santaHit04.ogg": "https://files.ballistica.net/cache/ba1/19/ca/7b38a5f7afa67ef6b95074110717",
"assets/build/ba_data/audio/scamper01.ogg": "https://files.ballistica.net/cache/ba1/a8/8c/26fde437ad0badd09255e017b8bf",
"assets/build/ba_data/audio/scaryMusic.ogg": "https://files.ballistica.net/cache/ba1/30/4d/92e9ca83957ce48b312c622509c2",
"assets/build/ba_data/audio/score.ogg": "https://files.ballistica.net/cache/ba1/89/e8/614c6d977091b9047b9d62b90b2d",
"assets/build/ba_data/audio/scoreHit01.ogg": "https://files.ballistica.net/cache/ba1/ac/67/fb89635853c35700d018bea36b0d",
"assets/build/ba_data/audio/scoreHit02.ogg": "https://files.ballistica.net/cache/ba1/8b/74/6bd2ad21470176600c0fdc743aca",
"assets/build/ba_data/audio/scoreIncrease.ogg": "https://files.ballistica.net/cache/ba1/e2/7d/df10a883be6b74738096effcf293",
"assets/build/ba_data/audio/scoresEpicMusic.ogg": "https://files.ballistica.net/cache/ba1/2b/27/98aa83922073d1c2bbeed34755c7",
"assets/build/ba_data/audio/shatter.ogg": "https://files.ballistica.net/cache/ba1/f0/0f/0d20497c644092fece98b16a435b",
"assets/build/ba_data/audio/shieldDown.ogg": "https://files.ballistica.net/cache/ba1/21/db/8757444510728238c1ed872872c5",
"assets/build/ba_data/audio/shieldHit.ogg": "https://files.ballistica.net/cache/ba1/7b/26/078112574f00ebe463eca453df1c",
"assets/build/ba_data/audio/shieldUp.ogg": "https://files.ballistica.net/cache/ba1/c7/90/3a0910a506fd84c5530f666ef5e6",
"assets/build/ba_data/audio/skid01.ogg": "https://files.ballistica.net/cache/ba1/9d/2e/4b5916af662f27ad7db641071ca8",
"assets/build/ba_data/audio/slowEpicMusic.ogg": "https://files.ballistica.net/cache/ba1/b6/59/c5034e1092c4c73df117a3d262ba",
"assets/build/ba_data/audio/sparkle01.ogg": "https://files.ballistica.net/cache/ba1/1a/c0/9b333d458b028e4742abb4395d65",
"assets/build/ba_data/audio/sparkle02.ogg": "https://files.ballistica.net/cache/ba1/fa/55/1425a799421c150bfa1afa465a18",
"assets/build/ba_data/audio/sparkle03.ogg": "https://files.ballistica.net/cache/ba1/54/43/2d0e3f7f52f04c002eb206a395e3",
"assets/build/ba_data/audio/spawn.ogg": "https://files.ballistica.net/cache/ba1/41/8f/1853c79553a0ba3e077969e16d23",
"assets/build/ba_data/audio/spazAttack01.ogg": "https://files.ballistica.net/cache/ba1/82/9b/75c48b3b3e67b7c9514ffe8c55c6",
"assets/build/ba_data/audio/spazAttack02.ogg": "https://files.ballistica.net/cache/ba1/61/1b/18ad31b88548c92ede65d1e66086",
"assets/build/ba_data/audio/spazAttack03.ogg": "https://files.ballistica.net/cache/ba1/21/65/92ddf4fdcbc220feb201b7b1ef3a",
"assets/build/ba_data/audio/spazAttack04.ogg": "https://files.ballistica.net/cache/ba1/50/f8/e541d915e0f65921d56d0718911a",
"assets/build/ba_data/audio/spazDeath01.ogg": "https://files.ballistica.net/cache/ba1/4e/a9/ed9563eef74701795861346d4d78",
"assets/build/ba_data/audio/spazEff.ogg": "https://files.ballistica.net/cache/ba1/cf/fa/041ab2a616ccfbda7a20b063d21d",
"assets/build/ba_data/audio/spazFall01.ogg": "https://files.ballistica.net/cache/ba1/e4/70/732f8e9f81297b87a1d24f472f9d",
"assets/build/ba_data/audio/spazImpact01.ogg": "https://files.ballistica.net/cache/ba1/67/0e/4f3f1696bab6a98c9d04a538e992",
"assets/build/ba_data/audio/spazImpact02.ogg": "https://files.ballistica.net/cache/ba1/8b/fd/4be7c457d02caaae7068e46b8d51",
"assets/build/ba_data/audio/spazImpact03.ogg": "https://files.ballistica.net/cache/ba1/5c/c7/3e71ca827402a82669eba6e1855e",
"assets/build/ba_data/audio/spazImpact04.ogg": "https://files.ballistica.net/cache/ba1/59/f4/803be0667e0e6c148fa503c47abb",
"assets/build/ba_data/audio/spazJump01.ogg": "https://files.ballistica.net/cache/ba1/93/b3/ed7e0cdddb1dca71f4db4d5f45c3",
"assets/build/ba_data/audio/spazJump02.ogg": "https://files.ballistica.net/cache/ba1/d6/c5/44ab5383c4456160de609f5064a9",
"assets/build/ba_data/audio/spazJump03.ogg": "https://files.ballistica.net/cache/ba1/72/3a/5a34e05553941dcc73c49b4706d3",
"assets/build/ba_data/audio/spazJump04.ogg": "https://files.ballistica.net/cache/ba1/57/de/604027efcd50fd96167592cafb92",
"assets/build/ba_data/audio/spazOw.ogg": "https://files.ballistica.net/cache/ba1/98/cb/79326b00b91756474a8952ad6a4a",
"assets/build/ba_data/audio/spazPickup01.ogg": "https://files.ballistica.net/cache/ba1/20/29/cf7bbc174089729504c16a503241",
"assets/build/ba_data/audio/spazScream01.ogg": "https://files.ballistica.net/cache/ba1/49/a7/7f59eff3d73e473099a0cee6c735",
"assets/build/ba_data/audio/splatter.ogg": "https://files.ballistica.net/cache/ba1/7d/76/d618e767b8fcbcf2bc580dd1adfe",
"assets/build/ba_data/audio/sportsMusic.ogg": "https://files.ballistica.net/cache/ba1/02/f8/d3f1434bf653f88fd920d6774c43",
"assets/build/ba_data/audio/stickyImpact.ogg": "https://files.ballistica.net/cache/ba1/ec/44/1b9bcba22df23cc7dc736d1d3b2f",
"assets/build/ba_data/audio/superPunch.ogg": "https://files.ballistica.net/cache/ba1/e1/8c/a2979adfd1b51ef1da4b58235c97",
"assets/build/ba_data/audio/superhero1.ogg": "https://files.ballistica.net/cache/ba1/e3/0d/54415acadfae8d1b4790463dcfb5",
"assets/build/ba_data/audio/superhero2.ogg": "https://files.ballistica.net/cache/ba1/bb/a6/8b7316601b6bb83294fc7cf74136",
"assets/build/ba_data/audio/superhero3.ogg": "https://files.ballistica.net/cache/ba1/42/d9/d7bc93314f767ab604101475b7a1",
"assets/build/ba_data/audio/superhero4.ogg": "https://files.ballistica.net/cache/ba1/f7/bc/8bf4c41e66b633fa28f209e4ac8a",
"assets/build/ba_data/audio/superheroDeath.ogg": "https://files.ballistica.net/cache/ba1/8a/6d/1fea903d0460f4b3f178ba24c5de",
"assets/build/ba_data/audio/superheroFall.ogg": "https://files.ballistica.net/cache/ba1/22/81/e224a17278f2a58eceeb3a1d3b3f",
"assets/build/ba_data/audio/superheroHit1.ogg": "https://files.ballistica.net/cache/ba1/5c/d9/20f22f430fe9444e7cf078c5082e",
"assets/build/ba_data/audio/superheroHit2.ogg": "https://files.ballistica.net/cache/ba1/df/59/6d6f8483c7f5f22dcbca39125b21",
"assets/build/ba_data/audio/survivalMusic.ogg": "https://files.ballistica.net/cache/ba1/35/3c/5fc2ecff786a077f569fc7e39da9",
"assets/build/ba_data/audio/swip.ogg": "https://files.ballistica.net/cache/ba1/7a/e0/08ceb1586b91b8aa09de82d76261",
"assets/build/ba_data/audio/swip2.ogg": "https://files.ballistica.net/cache/ba1/df/77/2e11ee9aa15c8b9215b0124355cf",
"assets/build/ba_data/audio/swish.ogg": "https://files.ballistica.net/cache/ba1/45/6a/ca1b53f09837fabf68c78d02dd2c",
"assets/build/ba_data/audio/swish2.ogg": "https://files.ballistica.net/cache/ba1/b9/ef/b00976fcffe448e5384885e8529e",
"assets/build/ba_data/audio/swish3.ogg": "https://files.ballistica.net/cache/ba1/ae/6e/390d9c196a332d01c34e9ceb27f5",
"assets/build/ba_data/audio/tap.ogg": "https://files.ballistica.net/cache/ba1/8c/41/63028ed2c80564fc6756f6bfaf5b",
"assets/build/ba_data/audio/technoHit01.ogg": "https://files.ballistica.net/cache/ba1/df/4a/4c033e4fd1472ac372641d6a1ca9",
"assets/build/ba_data/audio/tick.ogg": "https://files.ballistica.net/cache/ba1/13/ae/1bb44725b0f28ebb3c2cd751c199",
"assets/build/ba_data/audio/ticking.ogg": "https://files.ballistica.net/cache/ba1/a9/95/d885f55213c28fec6f7da8e38246",
"assets/build/ba_data/audio/tickingCrazy.ogg": "https://files.ballistica.net/cache/ba1/53/04/a907b8570ca0414b77f2a10473f3",
"assets/build/ba_data/audio/toTheDeathMusic.ogg": "https://files.ballistica.net/cache/ba1/79/f0/ebad2fc308ed5393500a7fb03e2d",
"assets/build/ba_data/audio/trashRummage.ogg": "https://files.ballistica.net/cache/ba1/77/b7/30d5cbbea547d7db43517fc563b7",
"assets/build/ba_data/audio/victoryMusic.ogg": "https://files.ballistica.net/cache/ba1/96/e0/1e8ef79d38a1f7aca130f1c04469",
"assets/build/ba_data/audio/warnBeep.ogg": "https://files.ballistica.net/cache/ba1/3d/5c/15bff8f468db14561499455bc891",
"assets/build/ba_data/audio/warnBeeps.ogg": "https://files.ballistica.net/cache/ba1/c8/56/73be47b712e1dbe33137dfcf6c1c",
"assets/build/ba_data/audio/warrior1.ogg": "https://files.ballistica.net/cache/ba1/db/df/7f9eb1bf1cc27cc40993b1b7b5fa",
"assets/build/ba_data/audio/warrior2.ogg": "https://files.ballistica.net/cache/ba1/2d/c8/968076b4c2186257f5c58d7d5bda",
"assets/build/ba_data/audio/warrior3.ogg": "https://files.ballistica.net/cache/ba1/a6/e0/b0ed3930b0a2a028bd26c11450d0",
"assets/build/ba_data/audio/warrior4.ogg": "https://files.ballistica.net/cache/ba1/0e/f0/2f2a8b1a41eb5aff16db531864bb",
"assets/build/ba_data/audio/warriorDeath.ogg": "https://files.ballistica.net/cache/ba1/40/a3/0db941201c506075a12228d5a8e1",
"assets/build/ba_data/audio/warriorFall.ogg": "https://files.ballistica.net/cache/ba1/05/d2/a8cb6d4115d3f480903910adc680",
"assets/build/ba_data/audio/warriorHit1.ogg": "https://files.ballistica.net/cache/ba1/cc/48/6935ef51265aedef3e213e910eaa",
"assets/build/ba_data/audio/warriorHit2.ogg": "https://files.ballistica.net/cache/ba1/7a/7e/c270fa3a6882d355251ce8c926ea",
"assets/build/ba_data/audio/whenJohnnyComesMarchingHomeMusic.ogg": "https://files.ballistica.net/cache/ba1/ac/c9/5a0ba4418814a5caa9a47ccac9d0",
"assets/build/ba_data/audio/witch1.ogg": "https://files.ballistica.net/cache/ba1/1b/d2/6db47a0d11534cb7d5e9b8320794",
"assets/build/ba_data/audio/witch2.ogg": "https://files.ballistica.net/cache/ba1/9b/79/6034146ad3cc912302abe78b4371",
"assets/build/ba_data/audio/witch3.ogg": "https://files.ballistica.net/cache/ba1/f7/8b/418d86a472ce1fa685ba9847f6a4",
"assets/build/ba_data/audio/witch4.ogg": "https://files.ballistica.net/cache/ba1/5f/62/df67b6772a7aef8edfc367f15fe3",
"assets/build/ba_data/audio/witchDeath.ogg": "https://files.ballistica.net/cache/ba1/36/14/7af6e8485ecabf57dcda395ddbf2",
"assets/build/ba_data/audio/witchFall.ogg": "https://files.ballistica.net/cache/ba1/40/6a/bddc1d1f3935fcdfcef4a064faa9",
"assets/build/ba_data/audio/witchHit1.ogg": "https://files.ballistica.net/cache/ba1/30/5a/ed8101985e1e987eab90629e4d6a",
"assets/build/ba_data/audio/witchHit2.ogg": "https://files.ballistica.net/cache/ba1/fc/fc/6b3ed7921be84d76fe0deacb6cdb",
"assets/build/ba_data/audio/wizard1.ogg": "https://files.ballistica.net/cache/ba1/2c/12/bfa9d5db2a799bc02dff1ef068fe",
"assets/build/ba_data/audio/wizard2.ogg": "https://files.ballistica.net/cache/ba1/75/b9/d5ec6f52e94e569ffdf6e6b38e08",
"assets/build/ba_data/audio/wizard3.ogg": "https://files.ballistica.net/cache/ba1/7f/f1/11592608b05d3eef1347dbb53d07",
"assets/build/ba_data/audio/wizard4.ogg": "https://files.ballistica.net/cache/ba1/2d/ae/d3c6056b1ca097619bc55ac79607",
"assets/build/ba_data/audio/wizardDeath.ogg": "https://files.ballistica.net/cache/ba1/4c/d9/c2b7ad85939e0986855b6a857be0",
"assets/build/ba_data/audio/wizardFall.ogg": "https://files.ballistica.net/cache/ba1/c8/3d/91d3d440b0ca83ffbcef1f28689c",
"assets/build/ba_data/audio/wizardHit1.ogg": "https://files.ballistica.net/cache/ba1/74/7e/8a594f1f6d1a47257a7b734ba440",
"assets/build/ba_data/audio/wizardHit2.ogg": "https://files.ballistica.net/cache/ba1/b3/97/1aab96de9b8d842574b1c186ff06",
"assets/build/ba_data/audio/woodDebrisFall.ogg": "https://files.ballistica.net/cache/ba1/f3/73/e3bfc6cff633e14093cd89b45d33",
"assets/build/ba_data/audio/wrestler1.ogg": "https://files.ballistica.net/cache/ba1/68/fb/c7141f71dbcc9ebc08f23a24f4a9",
"assets/build/ba_data/audio/wrestler2.ogg": "https://files.ballistica.net/cache/ba1/85/a1/23a175959feadbfdc832659b2c44",
"assets/build/ba_data/audio/wrestler3.ogg": "https://files.ballistica.net/cache/ba1/62/0b/16587195c064b18037d6272834be",
"assets/build/ba_data/audio/wrestler4.ogg": "https://files.ballistica.net/cache/ba1/43/c3/28aaa38b495b258a775148af40d2",
"assets/build/ba_data/audio/wrestlerDeath.ogg": "https://files.ballistica.net/cache/ba1/99/72/681647b09f104a0a40255eae6feb",
"assets/build/ba_data/audio/wrestlerFall.ogg": "https://files.ballistica.net/cache/ba1/e5/c0/b240ea81feaa504d3debeef5a147",
"assets/build/ba_data/audio/wrestlerHit1.ogg": "https://files.ballistica.net/cache/ba1/78/ad/27df728f70f997daa9e26ec18c4e",
"assets/build/ba_data/audio/wrestlerHit2.ogg": "https://files.ballistica.net/cache/ba1/f2/a7/764eb08d8f39560eeccda353e83b",
"assets/build/ba_data/audio/zoeAttack01.ogg": "https://files.ballistica.net/cache/ba1/6c/57/016cdc4c6534fe7ac0601332f37e",
"assets/build/ba_data/audio/zoeAttack02.ogg": "https://files.ballistica.net/cache/ba1/3d/e6/57c3dde3a513a27325bfd34eecfe",
"assets/build/ba_data/audio/zoeAttack03.ogg": "https://files.ballistica.net/cache/ba1/76/32/0a9b828efa1e9287ff225cd9ebaa",
"assets/build/ba_data/audio/zoeAttack04.ogg": "https://files.ballistica.net/cache/ba1/64/db/ea0e20e3eec0752e982690c7826c",
"assets/build/ba_data/audio/zoeDeath01.ogg": "https://files.ballistica.net/cache/ba1/9f/4f/dca392455b590936f058a3b692f2",
"assets/build/ba_data/audio/zoeEff.ogg": "https://files.ballistica.net/cache/ba1/27/bb/bf9e6386f7c4b8ece66c721f5ed2",
"assets/build/ba_data/audio/zoeFall01.ogg": "https://files.ballistica.net/cache/ba1/1b/bb/9caedbe0930474211bff8233260c",
"assets/build/ba_data/audio/zoeImpact01.ogg": "https://files.ballistica.net/cache/ba1/e3/81/a298aed9fbd7db298fb3ca725028",
"assets/build/ba_data/audio/zoeImpact02.ogg": "https://files.ballistica.net/cache/ba1/80/f3/169fb5885effaa0ab5e7aa6adab4",
"assets/build/ba_data/audio/zoeImpact03.ogg": "https://files.ballistica.net/cache/ba1/43/f7/12189e43b708816f0e647ec72007",
"assets/build/ba_data/audio/zoeImpact04.ogg": "https://files.ballistica.net/cache/ba1/ad/97/23e6e397cd7680019318023387a8",
"assets/build/ba_data/audio/zoeJump01.ogg": "https://files.ballistica.net/cache/ba1/cd/f5/245e4a4c4cac4dbbca5ace752119",
"assets/build/ba_data/audio/zoeJump02.ogg": "https://files.ballistica.net/cache/ba1/60/5c/7402aeecf36b94efe84b04e2281d",
"assets/build/ba_data/audio/zoeJump03.ogg": "https://files.ballistica.net/cache/ba1/64/6a/7cce785b82977a1b7135d93c5204",
"assets/build/ba_data/audio/zoeOw.ogg": "https://files.ballistica.net/cache/ba1/41/a0/d7edfdeada25eb8310de177ab7f5",
"assets/build/ba_data/audio/zoePickup01.ogg": "https://files.ballistica.net/cache/ba1/15/ba/7db3f4534699517b8bff3ffae4b6",
"assets/build/ba_data/audio/zoeScream01.ogg": "https://files.ballistica.net/cache/ba1/6d/de/d973377a4f5f975470f958119b0b",
"assets/build/ba_data/data/langdata.json": "https://files.ballistica.net/cache/ba1/37/de/401548e7d95a407e0e99ef9391f3",
"assets/build/ba_data/data/languages/arabic.json": "https://files.ballistica.net/cache/ba1/8c/fd/162ab3530e31d8cdcbf83de0f49d",
"assets/build/ba_data/data/languages/belarussian.json": "https://files.ballistica.net/cache/ba1/ab/fd/cb157afc98dbe055ba63cf4c2f6f",
"assets/build/ba_data/data/languages/chinese.json": "https://files.ballistica.net/cache/ba1/28/96/397e5c164a595c2b6c2d3eb2d4f1",
"assets/build/ba_data/data/languages/chinesetraditional.json": "https://files.ballistica.net/cache/ba1/05/2d/42e361ce039cd8ca26af0e594b46",
"assets/build/ba_data/data/languages/croatian.json": "https://files.ballistica.net/cache/ba1/66/bf/6e98398016da261296b8c306560e",
"assets/build/ba_data/data/languages/czech.json": "https://files.ballistica.net/cache/ba1/17/33/503a32d478e70661d09bcb7d2a82",
"assets/build/ba_data/data/languages/danish.json": "https://files.ballistica.net/cache/ba1/3f/46/e4da3c1d2b0ebf916df55c608b28",
"assets/build/ba_data/data/languages/dutch.json": "https://files.ballistica.net/cache/ba1/d1/07/37b7adc3dbec7328d26c5325f212",
"assets/build/ba_data/data/languages/english.json": "https://files.ballistica.net/cache/ba1/00/a6/3563b95117cad093c9e56a27ba24",
"assets/build/ba_data/data/languages/esperanto.json": "https://files.ballistica.net/cache/ba1/6e/fd/685a4e1da031474d47a1d9eb2731",
"assets/build/ba_data/data/languages/french.json": "https://files.ballistica.net/cache/ba1/7f/ac/fd0257aba3ed874f69c30fd333ff",
"assets/build/ba_data/data/languages/german.json": "https://files.ballistica.net/cache/ba1/a0/65/0802d58fd002738faa5fca0ac200",
"assets/build/ba_data/data/languages/gibberish.json": "https://files.ballistica.net/cache/ba1/19/a6/47fd52b8890573fd0e54b9f7b7fd",
"assets/build/ba_data/data/languages/greek.json": "https://files.ballistica.net/cache/ba1/87/ae/4b9de749699bfebb12c83ad8c1ac",
"assets/build/ba_data/data/languages/hindi.json": "https://files.ballistica.net/cache/ba1/d9/57/0106b2a51dda269473f043e050d3",
"assets/build/ba_data/data/languages/hungarian.json": "https://files.ballistica.net/cache/ba1/2d/e5/3737c6c3979cf381321c5472bea5",
"assets/build/ba_data/data/languages/indonesian.json": "https://files.ballistica.net/cache/ba1/69/80/7fb8313fee506801754937a92bd2",
"assets/build/ba_data/data/languages/italian.json": "https://files.ballistica.net/cache/ba1/dd/97/42d117db366ad4584eb8c58d191e",
"assets/build/ba_data/data/languages/korean.json": "https://files.ballistica.net/cache/ba1/7f/57/fd4b9a63be0207ba2ad49e19253c",
"assets/build/ba_data/data/languages/persian.json": "https://files.ballistica.net/cache/ba1/2d/d5/661c050696d5a2e70e678054b9e7",
"assets/build/ba_data/data/languages/polish.json": "https://files.ballistica.net/cache/ba1/04/fa/b24dd48bfbf3c2d67ee5ad1269c3",
"assets/build/ba_data/data/languages/portuguese.json": "https://files.ballistica.net/cache/ba1/fe/6d/751277bc6b704d4f2a54cf1a9cfa",
"assets/build/ba_data/data/languages/romanian.json": "https://files.ballistica.net/cache/ba1/82/12/57bf144e12be229a9b70da9c45cb",
"assets/build/ba_data/data/languages/russian.json": "https://files.ballistica.net/cache/ba1/6e/5c/ed5c985d25c0ebbd7e47a89cb6c3",
"assets/build/ba_data/data/languages/serbian.json": "https://files.ballistica.net/cache/ba1/38/d6/376433fa66f1798c64035efc1371",
"assets/build/ba_data/data/languages/slovak.json": "https://files.ballistica.net/cache/ba1/9f/a6/a2c9d7f3f90a2320aa45ccfd65cd",
"assets/build/ba_data/data/languages/spanish.json": "https://files.ballistica.net/cache/ba1/66/9e/df12c6325c503f8eaef4a83259c4",
"assets/build/ba_data/data/languages/swedish.json": "https://files.ballistica.net/cache/ba1/50/9f/be006ba19be6a69a57837eb6dca0",
"assets/build/ba_data/data/languages/tamil.json": "https://files.ballistica.net/cache/ba1/31/b0/957a09affb9ea8e0fefb1d447a6e",
"assets/build/ba_data/data/languages/thai.json": "https://files.ballistica.net/cache/ba1/dd/de/c197fa9aff42e4422bc66b95ad88",
"assets/build/ba_data/data/languages/turkish.json": "https://files.ballistica.net/cache/ba1/65/e4/b9308f15437972209b4d3fce7abd",
"assets/build/ba_data/data/languages/ukrainian.json": "https://files.ballistica.net/cache/ba1/8f/42/56f3ebcc6005f382449c1c2422fd",
"assets/build/ba_data/data/languages/venetian.json": "https://files.ballistica.net/cache/ba1/4f/cc/285443e3e8e65a318df338bbc7f7",
"assets/build/ba_data/data/languages/vietnamese.json": "https://files.ballistica.net/cache/ba1/e4/8b/93243a2723b04ff70580afc9ebb7",
"assets/build/ba_data/data/maps/big_g.json": "https://files.ballistica.net/cache/ba1/47/0a/a617cc85d927b576c4e6fc1091ed",
"assets/build/ba_data/data/maps/bridgit.json": "https://files.ballistica.net/cache/ba1/03/4b/57ee9b42854b26f23f81bd8c58ef",
"assets/build/ba_data/data/maps/courtyard.json": "https://files.ballistica.net/cache/ba1/03/38/344dd05bfef7bbdf464035ec5aa2",
"assets/build/ba_data/data/maps/crag_castle.json": "https://files.ballistica.net/cache/ba1/53/89/0d4a1202902b73a1419a65a5056b",
"assets/build/ba_data/data/maps/doom_shroom.json": "https://files.ballistica.net/cache/ba1/46/76/1d748f6e867a4ca95a130417238d",
"assets/build/ba_data/data/maps/football_stadium.json": "https://files.ballistica.net/cache/ba1/36/86/b464844e6f35a28c9632667a4630",
"assets/build/ba_data/data/maps/happy_thoughts.json": "https://files.ballistica.net/cache/ba1/74/06/7faae161870162f2988575bbe59f",
"assets/build/ba_data/data/maps/hockey_stadium.json": "https://files.ballistica.net/cache/ba1/3f/91/a548331df9666e37d06d631d0c3e",
"assets/build/ba_data/data/maps/lake_frigid.json": "https://files.ballistica.net/cache/ba1/c4/b6/c75f3051e0f51304c2cc26d276cc",
"assets/build/ba_data/data/maps/monkey_face.json": "https://files.ballistica.net/cache/ba1/fc/b2/09c629850d9c1e3db403fe03aedf",
"assets/build/ba_data/data/maps/rampage.json": "https://files.ballistica.net/cache/ba1/e9/48/2747992ec7afbf2cb19ae602ccdb",
"assets/build/ba_data/data/maps/roundabout.json": "https://files.ballistica.net/cache/ba1/43/0d/342009523674c4425fc3ff6b72d6",
"assets/build/ba_data/data/maps/step_right_up.json": "https://files.ballistica.net/cache/ba1/de/07/f30afb17b149ed87dbfdce481686",
"assets/build/ba_data/data/maps/the_pad.json": "https://files.ballistica.net/cache/ba1/6a/18/ea01513ee2642fd75285f41f9080",
"assets/build/ba_data/data/maps/tip_top.json": "https://files.ballistica.net/cache/ba1/de/7f/b54d73c22546dd2784655c091c8e",
"assets/build/ba_data/data/maps/tower_d.json": "https://files.ballistica.net/cache/ba1/bd/6f/dc9b3208dc5b3966c33f83fa9b40",
"assets/build/ba_data/data/maps/zig_zag.json": "https://files.ballistica.net/cache/ba1/88/9b/e6e3aa1aca627e00443eae684e6d",
"assets/build/ba_data/fonts/fontSmall0.fdata": "https://files.ballistica.net/cache/ba1/42/b3/6c0466c7ce7c8476fbdbfbf221c7",
"assets/build/ba_data/fonts/fontSmall1.fdata": "https://files.ballistica.net/cache/ba1/f9/4a/dfc62e8ac13d84afbde66ee874ba",
"assets/build/ba_data/fonts/fontSmall2.fdata": "https://files.ballistica.net/cache/ba1/ec/ff/08c71b50c327ba18b6d296857972",
"assets/build/ba_data/fonts/fontSmall3.fdata": "https://files.ballistica.net/cache/ba1/ef/5c/37432c2f55739dc3cc2003027862",
"assets/build/ba_data/fonts/fontSmall4.fdata": "https://files.ballistica.net/cache/ba1/28/a1/067c2552014e5148cd604e8b12c6",
"assets/build/ba_data/fonts/fontSmall5.fdata": "https://files.ballistica.net/cache/ba1/4e/fd/9160326cc16916928e5677887346",
"assets/build/ba_data/fonts/fontSmall6.fdata": "https://files.ballistica.net/cache/ba1/42/42/a1096df1d5a21f20bbac239dcf42",
"assets/build/ba_data/fonts/fontSmall7.fdata": "https://files.ballistica.net/cache/ba1/3a/05/9f5f296e103d0c05a7bb0cb9dd67",
"assets/build/ba_data/models/achievementOutline.bob": "https://files.ballistica.net/cache/ba1/ac/ef/54aa9b5434dd39cbac3a018e3f06",
"assets/build/ba_data/models/actionButtonBottom.bob": "https://files.ballistica.net/cache/ba1/d4/98/5bd4ab46f7b2aea14b75df1b9b19",
"assets/build/ba_data/models/actionButtonLeft.bob": "https://files.ballistica.net/cache/ba1/e9/a9/c42904233f541a0215dbac68ad17",
"assets/build/ba_data/models/actionButtonRight.bob": "https://files.ballistica.net/cache/ba1/9c/0b/f6f76625035ab47b9e124530af9e",
"assets/build/ba_data/models/actionButtonTop.bob": "https://files.ballistica.net/cache/ba1/30/4e/913a172579d7692a313b2bb8501b",
"assets/build/ba_data/models/actionHeroForeArm.bob": "https://files.ballistica.net/cache/ba1/fe/74/fe8c20b35cd01b2a1489e05a1535",
"assets/build/ba_data/models/actionHeroHand.bob": "https://files.ballistica.net/cache/ba1/29/60/577e2e1d5e1dc17279d0c3afe637",
"assets/build/ba_data/models/actionHeroHead.bob": "https://files.ballistica.net/cache/ba1/84/8c/65dbd8897914b1c40f880b4ab549",
"assets/build/ba_data/models/actionHeroLowerLeg.bob": "https://files.ballistica.net/cache/ba1/03/8e/ef1ac85bc5a04121e4b5928e2ad2",
"assets/build/ba_data/models/actionHeroPelvis.bob": "https://files.ballistica.net/cache/ba1/5b/63/feb5a579153caf8cd4a0bd55f7a2",
"assets/build/ba_data/models/actionHeroToes.bob": "https://files.ballistica.net/cache/ba1/66/27/2f382432e5c11a1bc63ebda8d7d7",
"assets/build/ba_data/models/actionHeroTorso.bob": "https://files.ballistica.net/cache/ba1/0f/a0/83b2a0e63595f4c3b41203677b70",
"assets/build/ba_data/models/actionHeroUpperArm.bob": "https://files.ballistica.net/cache/ba1/7a/fd/c5dca43b907f7692d2838b00caed",
"assets/build/ba_data/models/actionHeroUpperLeg.bob": "https://files.ballistica.net/cache/ba1/cb/50/e8fff7c2e28bb75020607ed964eb",
"assets/build/ba_data/models/agentForeArm.bob": "https://files.ballistica.net/cache/ba1/a9/f1/c2a45d3a4f4d57b3720a5fcdf754",
"assets/build/ba_data/models/agentHand.bob": "https://files.ballistica.net/cache/ba1/e9/89/61cb35b8e35e0cd90b8795e24ce5",
"assets/build/ba_data/models/agentHead.bob": "https://files.ballistica.net/cache/ba1/ea/22/4694c4c01ed333a02338042f4610",
"assets/build/ba_data/models/agentLowerLeg.bob": "https://files.ballistica.net/cache/ba1/f6/fa/ccaa383cdf5949c8e4cfbfe02c57",
"assets/build/ba_data/models/agentPelvis.bob": "https://files.ballistica.net/cache/ba1/e7/a5/44d8148988efed59583c1fa8833c",
"assets/build/ba_data/models/agentToes.bob": "https://files.ballistica.net/cache/ba1/de/bd/bbb7ebb58ed3a6f263b298c78635",
"assets/build/ba_data/models/agentTorso.bob": "https://files.ballistica.net/cache/ba1/35/35/91e117e1d7c379c7a4c0fa107125",
"assets/build/ba_data/models/agentUpperArm.bob": "https://files.ballistica.net/cache/ba1/62/7f/cbf6fbc48f7c628ec9dcb60a1e74",
"assets/build/ba_data/models/agentUpperLeg.bob": "https://files.ballistica.net/cache/ba1/f4/fb/1d75e7d7ce1cb34701968b6fbd60",
"assets/build/ba_data/models/aliForeArm.bob": "https://files.ballistica.net/cache/ba1/d8/2b/91297d3ffcee56a2cd365e1a6b58",
"assets/build/ba_data/models/aliHand.bob": "https://files.ballistica.net/cache/ba1/75/bd/d3899fe0cf9b5f32e52d19b73e6a",
"assets/build/ba_data/models/aliHead.bob": "https://files.ballistica.net/cache/ba1/a5/5b/1c9d1d5f4a54f0a826723b3acd47",
"assets/build/ba_data/models/aliLowerLeg.bob": "https://files.ballistica.net/cache/ba1/47/98/0942fd603521cef80f1a09d3d274",
"assets/build/ba_data/models/aliPelvis.bob": "https://files.ballistica.net/cache/ba1/92/c6/a7cb156b5d8a3ae4f76486ad6759",
"assets/build/ba_data/models/aliToes.bob": "https://files.ballistica.net/cache/ba1/85/97/3611128c3a48e9191de7c4d705d5",
"assets/build/ba_data/models/aliTorso.bob": "https://files.ballistica.net/cache/ba1/e5/52/0c0a55557d0d674eeab7b144f1a8",
"assets/build/ba_data/models/aliUpperArm.bob": "https://files.ballistica.net/cache/ba1/a8/ea/aa5a052bba81996a6b79410583f6",
"assets/build/ba_data/models/aliUpperLeg.bob": "https://files.ballistica.net/cache/ba1/2d/6d/838e44bdf7e9b7f9ded9a5a8c57c",
"assets/build/ba_data/models/alienForeArm.bob": "https://files.ballistica.net/cache/ba1/8a/d0/e6864047ac3cb57bd16cfffbc354",
"assets/build/ba_data/models/alienHand.bob": "https://files.ballistica.net/cache/ba1/2c/60/48c63052bb2740cbebcc232de7e1",
"assets/build/ba_data/models/alienHead.bob": "https://files.ballistica.net/cache/ba1/d0/fc/65dd09c354e26754b7e9dfd81c4c",
"assets/build/ba_data/models/alienLowerLeg.bob": "https://files.ballistica.net/cache/ba1/6b/af/1125f3e4a368d419658b6fc53603",
"assets/build/ba_data/models/alienPelvis.bob": "https://files.ballistica.net/cache/ba1/d2/fc/51a7bd9f557bbf383d58e9f4509d",
"assets/build/ba_data/models/alienToes.bob": "https://files.ballistica.net/cache/ba1/e4/eb/5bd842e1951af6b530ba0ef50ab3",
"assets/build/ba_data/models/alienTorso.bob": "https://files.ballistica.net/cache/ba1/4b/94/002dafc392d294a07e7909a4eed7",
"assets/build/ba_data/models/alienUpperArm.bob": "https://files.ballistica.net/cache/ba1/1e/49/495c945f04563d05253a76ef9681",
"assets/build/ba_data/models/alienUpperLeg.bob": "https://files.ballistica.net/cache/ba1/93/3a/d05c6105c879077cc01f5b298807",
"assets/build/ba_data/models/alwaysLandBG.bob": "https://files.ballistica.net/cache/ba1/27/17/12b017d08aab5abf7d332431741d",
"assets/build/ba_data/models/alwaysLandLevel.bob": "https://files.ballistica.net/cache/ba1/1a/1e/d547bcd9ab32e428ac4f5bd644b2",
"assets/build/ba_data/models/alwaysLandLevelBottom.bob": "https://files.ballistica.net/cache/ba1/b3/25/891a3f36a523199dfa6f2e0613fd",
"assets/build/ba_data/models/alwaysLandLevelCollide.cob": "https://files.ballistica.net/cache/ba1/a7/bd/11be2244499eed41759318ce990c",
"assets/build/ba_data/models/alwaysLandVRFillMound.bob": "https://files.ballistica.net/cache/ba1/a7/1e/9b16be3deec55757de084d4c3812",
"assets/build/ba_data/models/angryComputerTransparent.bob": "https://files.ballistica.net/cache/ba1/02/fe/ac980c006aec43a0a6ad53e29add",
"assets/build/ba_data/models/arrowBack.bob": "https://files.ballistica.net/cache/ba1/1d/4a/a7fab16227111fa8a7dbea3eba2f",
"assets/build/ba_data/models/arrowFront.bob": "https://files.ballistica.net/cache/ba1/35/b5/a036e23c222d05725471ede6fdc6",
"assets/build/ba_data/models/assassinForeArm.bob": "https://files.ballistica.net/cache/ba1/75/27/68f3e1948f5d75129311f0456237",
"assets/build/ba_data/models/assassinHand.bob": "https://files.ballistica.net/cache/ba1/46/d3/fbc13f59c261b7efea481446f64e",
"assets/build/ba_data/models/assassinHead.bob": "https://files.ballistica.net/cache/ba1/6b/9d/3a6704195cb0fe4d79a0b215a3bc",
"assets/build/ba_data/models/assassinLowerLeg.bob": "https://files.ballistica.net/cache/ba1/3f/69/96b74a337b79c34c222116c51b8b",
"assets/build/ba_data/models/assassinPelvis.bob": "https://files.ballistica.net/cache/ba1/20/dc/0c395dae695984e27b61a8bf1084",
"assets/build/ba_data/models/assassinToes.bob": "https://files.ballistica.net/cache/ba1/83/04/773370e26fbdd8c0990aeb330808",
"assets/build/ba_data/models/assassinTorso.bob": "https://files.ballistica.net/cache/ba1/c4/05/feeb9368f6ba47288614efd34473",
"assets/build/ba_data/models/assassinUpperArm.bob": "https://files.ballistica.net/cache/ba1/63/72/9683f04f7a7b106f0361165ce963",
"assets/build/ba_data/models/assassinUpperLeg.bob": "https://files.ballistica.net/cache/ba1/1d/19/0a3aa57aa093fda8366f27ffc410",
"assets/build/ba_data/models/bearForeArm.bob": "https://files.ballistica.net/cache/ba1/ae/41/bdbf3e0a6caf6f93eec74ede0a00",
"assets/build/ba_data/models/bearHand.bob": "https://files.ballistica.net/cache/ba1/4a/5e/740a745a025bda5091069db58c24",
"assets/build/ba_data/models/bearHead.bob": "https://files.ballistica.net/cache/ba1/b2/c2/447fdf41c6ea09c60e4e86429971",
"assets/build/ba_data/models/bearLowerLeg.bob": "https://files.ballistica.net/cache/ba1/86/6a/a351bdf44353d67076be4061b792",
"assets/build/ba_data/models/bearPelvis.bob": "https://files.ballistica.net/cache/ba1/e3/d4/8753fd0236c7b09dfd60ec1e4a1c",
"assets/build/ba_data/models/bearToes.bob": "https://files.ballistica.net/cache/ba1/66/a1/36b2a3d2ddf662632f67244ff9e5",
"assets/build/ba_data/models/bearTorso.bob": "https://files.ballistica.net/cache/ba1/8d/0f/5a7e83aeb9a62f2c36cba9746072",
"assets/build/ba_data/models/bearUpperArm.bob": "https://files.ballistica.net/cache/ba1/4a/95/9bdece3e5b9eb332e923183dd022",
"assets/build/ba_data/models/bearUpperLeg.bob": "https://files.ballistica.net/cache/ba1/a4/b8/6be1f58b494893f181968888edba",
"assets/build/ba_data/models/bigG.bob": "https://files.ballistica.net/cache/ba1/af/0e/29f285ab1a1fa82ef8dbdf8429b8",
"assets/build/ba_data/models/bigGBottom.bob": "https://files.ballistica.net/cache/ba1/0d/ea/87870c1b4b3ed39018955efc0c49",
"assets/build/ba_data/models/bigGBumper.cob": "https://files.ballistica.net/cache/ba1/07/94/b428d062090f6fb542b6c9e18c8f",
"assets/build/ba_data/models/bigGCollide.cob": "https://files.ballistica.net/cache/ba1/e3/d5/3631af851fcd3f983ed6006e66d8",
"assets/build/ba_data/models/bomb.bob": "https://files.ballistica.net/cache/ba1/2f/9d/fe513bdca41e0c807b7b3d8ffbac",
"assets/build/ba_data/models/bombSticky.bob": "https://files.ballistica.net/cache/ba1/ed/5c/ca154d84938857373719526f58ec",
"assets/build/ba_data/models/bonesForeArm.bob": "https://files.ballistica.net/cache/ba1/90/e9/523d7d5b85e7e26337d914e5fda6",
"assets/build/ba_data/models/bonesHand.bob": "https://files.ballistica.net/cache/ba1/8a/03/2d93d23bc11f55b1899efb5f5c65",
"assets/build/ba_data/models/bonesHead.bob": "https://files.ballistica.net/cache/ba1/ab/eb/24f746a387249600b1f9b930f168",
"assets/build/ba_data/models/bonesLowerLeg.bob": "https://files.ballistica.net/cache/ba1/08/eb/7a0c1fd2ce600031d8343cf20cd2",
"assets/build/ba_data/models/bonesPelvis.bob": "https://files.ballistica.net/cache/ba1/11/c0/1a497586990488e69c868a9f4be9",
"assets/build/ba_data/models/bonesToes.bob": "https://files.ballistica.net/cache/ba1/48/3f/85e8cd2d3bc8ee5893223447ef4f",
"assets/build/ba_data/models/bonesTorso.bob": "https://files.ballistica.net/cache/ba1/86/e1/8c4bb500488f1c5d59a2e902fba8",
"assets/build/ba_data/models/bonesUpperArm.bob": "https://files.ballistica.net/cache/ba1/bb/ea/f09c9f485e510d3cc8be62e17681",
"assets/build/ba_data/models/bonesUpperLeg.bob": "https://files.ballistica.net/cache/ba1/30/ad/e9283168851fefdfcfe283443ebd",
"assets/build/ba_data/models/box.bob": "https://files.ballistica.net/cache/ba1/fe/71/d9cc843a9a7b11d3691beb63ae21",
"assets/build/ba_data/models/boxingGlove.bob": "https://files.ballistica.net/cache/ba1/ff/df/b5f186a797251d27bb6bb3a42804",
"assets/build/ba_data/models/bridgitLevelBottom.bob": "https://files.ballistica.net/cache/ba1/1e/f4/8e8c6b86081aecc89888677b1dda",
"assets/build/ba_data/models/bridgitLevelCollide.cob": "https://files.ballistica.net/cache/ba1/9c/19/b3f44e34a9153e645ae6e05bed9e",
"assets/build/ba_data/models/bridgitLevelRailingCollide.cob": "https://files.ballistica.net/cache/ba1/91/18/1fe3cd097d0b1e01ff76a531990f",
"assets/build/ba_data/models/bridgitLevelTop.bob": "https://files.ballistica.net/cache/ba1/8a/ff/e930989beb9e741c86fbc9d8b9c5",
"assets/build/ba_data/models/bunnyForeArm.bob": "https://files.ballistica.net/cache/ba1/7f/0c/31eb734e202a206b27df16f0bce3",
"assets/build/ba_data/models/bunnyHand.bob": "https://files.ballistica.net/cache/ba1/48/36/a7172c3d3660811d3c660719ab9a",
"assets/build/ba_data/models/bunnyHead.bob": "https://files.ballistica.net/cache/ba1/81/1e/999f5c55663b73c3a3506864f226",
"assets/build/ba_data/models/bunnyLowerLeg.bob": "https://files.ballistica.net/cache/ba1/fe/0e/b84726d48e86e7655c5d853b5822",
"assets/build/ba_data/models/bunnyPelvis.bob": "https://files.ballistica.net/cache/ba1/56/9b/5b3e450eb292e58bade935db0b21",
"assets/build/ba_data/models/bunnyToes.bob": "https://files.ballistica.net/cache/ba1/d3/c0/16045df2cbed07e24f20abf139de",
"assets/build/ba_data/models/bunnyTorso.bob": "https://files.ballistica.net/cache/ba1/cd/8a/3fc46cd107d4627f0d6c74d2fc87",
"assets/build/ba_data/models/bunnyUpperArm.bob": "https://files.ballistica.net/cache/ba1/6a/4b/25192fc23a57f2e8c13970044ca8",
"assets/build/ba_data/models/bunnyUpperLeg.bob": "https://files.ballistica.net/cache/ba1/c4/4a/55cc875677ecb3d688b3e60fb822",
"assets/build/ba_data/models/buttonBackOpaque.bob": "https://files.ballistica.net/cache/ba1/92/b4/c5eac2e2496fe314915121e33d39",
"assets/build/ba_data/models/buttonBackSmallOpaque.bob": "https://files.ballistica.net/cache/ba1/f3/46/19a96352948fec1944ce0b76b33a",
"assets/build/ba_data/models/buttonBackSmallTransparent.bob": "https://files.ballistica.net/cache/ba1/4d/76/a375906aac113e0acac493dba0e0",
"assets/build/ba_data/models/buttonBackTransparent.bob": "https://files.ballistica.net/cache/ba1/2e/a5/b96da3a8ea0d194b2ca3b0928cbc",
"assets/build/ba_data/models/buttonLargeOpaque.bob": "https://files.ballistica.net/cache/ba1/d8/75/98a29c9890f720a25f07e7788f4d",
"assets/build/ba_data/models/buttonLargeTransparent.bob": "https://files.ballistica.net/cache/ba1/7c/46/510aa2711832632a63a5a486ac32",
"assets/build/ba_data/models/buttonLargerOpaque.bob": "https://files.ballistica.net/cache/ba1/70/d4/4835f37b2163d23ff939be019d1d",
"assets/build/ba_data/models/buttonLargerTransparent.bob": "https://files.ballistica.net/cache/ba1/e9/ab/feae7436f2674109f18baa9c4cbb",
"assets/build/ba_data/models/buttonMediumOpaque.bob": "https://files.ballistica.net/cache/ba1/71/bb/fb57736376615cabaac0d572ea65",
"assets/build/ba_data/models/buttonMediumTransparent.bob": "https://files.ballistica.net/cache/ba1/10/54/d354ad07bc2f2b11d45b223fb2a7",
"assets/build/ba_data/models/buttonNull.bob": "https://files.ballistica.net/cache/ba1/1a/94/2fd82c3edb6e5d8e07e4b9cc6528",
"assets/build/ba_data/models/buttonSmallOpaque.bob": "https://files.ballistica.net/cache/ba1/d2/64/d9698c50a765624c4995e85b44cc",
"assets/build/ba_data/models/buttonSmallTransparent.bob": "https://files.ballistica.net/cache/ba1/00/cb/e454acb4912571c4815e2e5e1096",
"assets/build/ba_data/models/buttonSquareOpaque.bob": "https://files.ballistica.net/cache/ba1/56/c6/f29189a7c8471a8917edb5374e8f",
"assets/build/ba_data/models/buttonSquareTransparent.bob": "https://files.ballistica.net/cache/ba1/9a/4b/327c1da73ecac7d4f3cf3b6e55ec",
"assets/build/ba_data/models/buttonTabOpaque.bob": "https://files.ballistica.net/cache/ba1/81/26/05a4fb48165fed5ee7937175ec76",
"assets/build/ba_data/models/buttonTabTransparent.bob": "https://files.ballistica.net/cache/ba1/1c/68/2b0852c0ce3cd1406115883859ee",
"assets/build/ba_data/models/checkTransparent.bob": "https://files.ballistica.net/cache/ba1/e5/89/051a96f74be2fd32ae186c55fdf4",
"assets/build/ba_data/models/courtyardLevel.bob": "https://files.ballistica.net/cache/ba1/d2/ff/8f2f82f5513506d41c20868123a6",
"assets/build/ba_data/models/courtyardLevelBottom.bob": "https://files.ballistica.net/cache/ba1/82/d8/b88df1cd7539d336009c67185786",
"assets/build/ba_data/models/courtyardLevelCollide.cob": "https://files.ballistica.net/cache/ba1/7f/5b/796069ddf5fe0e9d0461b84558f2",
"assets/build/ba_data/models/courtyardPlayerWall.cob": "https://files.ballistica.net/cache/ba1/76/98/6a4deab0d2363405a1268a53ae6b",
"assets/build/ba_data/models/cowboyForeArm.bob": "https://files.ballistica.net/cache/ba1/e8/63/b7c8ac77d39b248b2979aa26f099",
"assets/build/ba_data/models/cowboyHand.bob": "https://files.ballistica.net/cache/ba1/ff/6d/a7678f469bf6e142ed08c10d0509",
"assets/build/ba_data/models/cowboyHead.bob": "https://files.ballistica.net/cache/ba1/06/54/f8f676a9300bc4efa8c44c81b77f",
"assets/build/ba_data/models/cowboyLowerLeg.bob": "https://files.ballistica.net/cache/ba1/5b/af/1d3a7786fa4e017d10e8399e37e3",
"assets/build/ba_data/models/cowboyPelvis.bob": "https://files.ballistica.net/cache/ba1/37/6f/0a97c4d6455336a728bb6cb50b64",
"assets/build/ba_data/models/cowboyToes.bob": "https://files.ballistica.net/cache/ba1/05/64/21f6af2230628ff5d5067753918a",
"assets/build/ba_data/models/cowboyTorso.bob": "https://files.ballistica.net/cache/ba1/be/29/e459674612f7fcd0f79c2e44b54d",
"assets/build/ba_data/models/cowboyUpperArm.bob": "https://files.ballistica.net/cache/ba1/6b/b7/8ba9ae2c1bb039ff10ad33fe5121",
"assets/build/ba_data/models/cowboyUpperLeg.bob": "https://files.ballistica.net/cache/ba1/57/80/7507422ac4810e9811ef67103644",
"assets/build/ba_data/models/cragCastleLevel.bob": "https://files.ballistica.net/cache/ba1/35/87/7d6a5810173b24469f34500a406a",
"assets/build/ba_data/models/cragCastleLevelBottom.bob": "https://files.ballistica.net/cache/ba1/dc/64/dd0060aeb53ccd59cbc6f3297d69",
"assets/build/ba_data/models/cragCastleLevelBumper.cob": "https://files.ballistica.net/cache/ba1/72/a6/e561fc7884e4dd385f7427d6db67",
"assets/build/ba_data/models/cragCastleLevelCollide.cob": "https://files.ballistica.net/cache/ba1/62/ac/2ecb3c12cdd5418b55423828a353",
"assets/build/ba_data/models/cragCastleVRFillMound.bob": "https://files.ballistica.net/cache/ba1/f3/cc/0aa2afd8dfc82f596ff613034362",
"assets/build/ba_data/models/crossOut.bob": "https://files.ballistica.net/cache/ba1/db/bb/bbfb6904c7fea43b409139a90c3c",
"assets/build/ba_data/models/currencyMeter.bob": "https://files.ballistica.net/cache/ba1/6b/bf/0216f0d851491af2eb988db02d43",
"assets/build/ba_data/models/currencyPlusButton.bob": "https://files.ballistica.net/cache/ba1/6f/87/fbb9e93d3b14a435947a05595699",
"assets/build/ba_data/models/cyborgForeArm.bob": "https://files.ballistica.net/cache/ba1/65/52/c130436bb43a91eae9054d41c695",
"assets/build/ba_data/models/cyborgHand.bob": "https://files.ballistica.net/cache/ba1/81/14/35da8e5eb95c4c4313ded5bb8f21",
"assets/build/ba_data/models/cyborgHead.bob": "https://files.ballistica.net/cache/ba1/80/ca/0ba89c1b7ade4f0b31d26ee8a8b3",
"assets/build/ba_data/models/cyborgLowerLeg.bob": "https://files.ballistica.net/cache/ba1/b5/86/26707de14c5c96106c5c3fb36f46",
"assets/build/ba_data/models/cyborgPelvis.bob": "https://files.ballistica.net/cache/ba1/c3/cb/711572bd44f4a8534496a5097ec1",
"assets/build/ba_data/models/cyborgToes.bob": "https://files.ballistica.net/cache/ba1/9f/15/ce8023286bbddcb63a712375ec41",
"assets/build/ba_data/models/cyborgTorso.bob": "https://files.ballistica.net/cache/ba1/65/dc/45703248862d09b15e385f0d4d20",
"assets/build/ba_data/models/cyborgUpperArm.bob": "https://files.ballistica.net/cache/ba1/df/f4/6da42b145a3e8cf1319d095c33e9",
"assets/build/ba_data/models/cyborgUpperLeg.bob": "https://files.ballistica.net/cache/ba1/81/1e/9436a22e1a4bc947978b00508cd5",
"assets/build/ba_data/models/cylinder.bob": "https://files.ballistica.net/cache/ba1/0e/0a/c5d4ce4e8692c44fd26973fb1564",
"assets/build/ba_data/models/doomShroomBG.bob": "https://files.ballistica.net/cache/ba1/11/14/3667770fd40f2774f3ec91ffe590",
"assets/build/ba_data/models/doomShroomLevel.bob": "https://files.ballistica.net/cache/ba1/ac/d0/0f600b128f1021947b48da6db90f",
"assets/build/ba_data/models/doomShroomLevelCollide.cob": "https://files.ballistica.net/cache/ba1/87/49/a950834fa46c6a6ce5642beb3307",
"assets/build/ba_data/models/doomShroomStem.bob": "https://files.ballistica.net/cache/ba1/bd/17/ee161e6ba819758a90b24ce21be6",
"assets/build/ba_data/models/doomShroomStemCollide.cob": "https://files.ballistica.net/cache/ba1/00/b6/2acf0290d13d1a1cc54c74ac34fe",
"assets/build/ba_data/models/doomShroomVRFill.bob": "https://files.ballistica.net/cache/ba1/95/13/187a686ace48b969b05be1b314bf",
"assets/build/ba_data/models/egg.bob": "https://files.ballistica.net/cache/ba1/59/18/6c8002191b391fee1fd29b375aa1",
"assets/build/ba_data/models/eyeBall.bob": "https://files.ballistica.net/cache/ba1/1f/f9/7e0f0e96b074914ddd2f212b1be3",
"assets/build/ba_data/models/eyeBallIris.bob": "https://files.ballistica.net/cache/ba1/2d/e9/a8e717cfe545064f65813fd63128",
"assets/build/ba_data/models/eyeLid.bob": "https://files.ballistica.net/cache/ba1/1b/ca/9b8f8956e0ad9490a7d25e3e839d",
"assets/build/ba_data/models/flagPole.bob": "https://files.ballistica.net/cache/ba1/bf/0c/257215f153949ec3b2ef60387725",
"assets/build/ba_data/models/flagStand.bob": "https://files.ballistica.net/cache/ba1/92/df/1a39c25b76219274d309c2ff1d7e",
"assets/build/ba_data/models/flash.bob": "https://files.ballistica.net/cache/ba1/01/29/a0c4f48110242fb43aeaf85f2418",
"assets/build/ba_data/models/footballStadium.bob": "https://files.ballistica.net/cache/ba1/a8/2b/fe85f838148527f5b5cabad4897a",
"assets/build/ba_data/models/footballStadiumCollide.cob": "https://files.ballistica.net/cache/ba1/3d/72/a9a3fa2bdae80a799e00d6ad2c0e",
"assets/build/ba_data/models/footballStadiumVRFill.bob": "https://files.ballistica.net/cache/ba1/77/8f/c8ef24b5a50c951c6dbccc6d4c1d",
"assets/build/ba_data/models/frameInset.bob": "https://files.ballistica.net/cache/ba1/2e/6f/a6d43b734aacc15da631ec6fda85",
"assets/build/ba_data/models/frostyForeArm.bob": "https://files.ballistica.net/cache/ba1/05/9d/8e3257d982a9080155383f612585",
"assets/build/ba_data/models/frostyHand.bob": "https://files.ballistica.net/cache/ba1/ba/ea/ad61ff7228766ea3074746c44095",
"assets/build/ba_data/models/frostyHead.bob": "https://files.ballistica.net/cache/ba1/dc/00/665d719a8e75cfedc1177228d627",
"assets/build/ba_data/models/frostyLowerLeg.bob": "https://files.ballistica.net/cache/ba1/6e/7d/512aaccb697cb33ed8c1e2c72332",
"assets/build/ba_data/models/frostyPelvis.bob": "https://files.ballistica.net/cache/ba1/59/a6/0b2b83d91e25a1b8238a76f88257",
"assets/build/ba_data/models/frostyToes.bob": "https://files.ballistica.net/cache/ba1/15/a7/5e684d8882358d7fd6358a255877",
"assets/build/ba_data/models/frostyTorso.bob": "https://files.ballistica.net/cache/ba1/25/57/96baca0e72cde9055e9e5b5f1e4a",
"assets/build/ba_data/models/frostyUpperArm.bob": "https://files.ballistica.net/cache/ba1/bb/9a/9977f9b066ac6175dadfdac487ee",
"assets/build/ba_data/models/frostyUpperLeg.bob": "https://files.ballistica.net/cache/ba1/94/e8/88587ffd97d0b60e38a098c9139d",
"assets/build/ba_data/models/gladiatorForeArm.bob": "https://files.ballistica.net/cache/ba1/c7/bb/b3e26ea7e3cbb14b058c7c77d34f",
"assets/build/ba_data/models/gladiatorHand.bob": "https://files.ballistica.net/cache/ba1/4a/26/13d8e097138e97f4b1c4ff3fd9fe",
"assets/build/ba_data/models/gladiatorHead.bob": "https://files.ballistica.net/cache/ba1/b5/6b/5f342b038d70e4b548256288f1f8",
"assets/build/ba_data/models/gladiatorLowerLeg.bob": "https://files.ballistica.net/cache/ba1/23/43/f3fa2b8d1ad314c204e1611be20d",
"assets/build/ba_data/models/gladiatorPelvis.bob": "https://files.ballistica.net/cache/ba1/7f/9d/623fa866e6f333513ea2e6239c4f",
"assets/build/ba_data/models/gladiatorToes.bob": "https://files.ballistica.net/cache/ba1/f5/f4/d4fa94222b3a9b1957026376373d",
"assets/build/ba_data/models/gladiatorTorso.bob": "https://files.ballistica.net/cache/ba1/0f/9e/0c30965ff4c265b1d2e69d468396",
"assets/build/ba_data/models/gladiatorUpperArm.bob": "https://files.ballistica.net/cache/ba1/c2/c8/9dffb3be2640f32c9e449197b253",
"assets/build/ba_data/models/gladiatorUpperLeg.bob": "https://files.ballistica.net/cache/ba1/bd/95/93628f804ce1133e2e238f8da683",
"assets/build/ba_data/models/hairTuft1.bob": "https://files.ballistica.net/cache/ba1/e8/89/e9f7ccdd9059c70fb7e253eafb86",
"assets/build/ba_data/models/hairTuft1b.bob": "https://files.ballistica.net/cache/ba1/b2/11/e487745b135373f767d7f9dfe7b9",
"assets/build/ba_data/models/hairTuft2.bob": "https://files.ballistica.net/cache/ba1/2d/7f/ac297d7bf0ecfc937ba1ea4da0b6",
"assets/build/ba_data/models/hairTuft3.bob": "https://files.ballistica.net/cache/ba1/38/d2/54987d1b166aba183e995013e63b",
"assets/build/ba_data/models/hairTuft4.bob": "https://files.ballistica.net/cache/ba1/24/b7/6935536499343ea8c169452ad10c",
"assets/build/ba_data/models/heartOpaque.bob": "https://files.ballistica.net/cache/ba1/37/11/35880dd5663712538211ded9c1ba",
"assets/build/ba_data/models/heartTransparent.bob": "https://files.ballistica.net/cache/ba1/60/86/3f943b3722fe2e722917240882be",
"assets/build/ba_data/models/hockeyStadiumCollide.cob": "https://files.ballistica.net/cache/ba1/c6/a7/386ed085840a6c9365bbb1b0a5e8",
"assets/build/ba_data/models/hockeyStadiumInner.bob": "https://files.ballistica.net/cache/ba1/1c/c7/8a4f141205124ee201ec48bc5f75",
"assets/build/ba_data/models/hockeyStadiumOuter.bob": "https://files.ballistica.net/cache/ba1/94/70/0d2a05f378ad134019995114f6b0",
"assets/build/ba_data/models/hockeyStadiumStands.bob": "https://files.ballistica.net/cache/ba1/b5/e1/4ea82fe914f2bffeeea4a6baaa5e",
"assets/build/ba_data/models/image16x1.bob": "https://files.ballistica.net/cache/ba1/37/ac/d832969df62f297386cca9875051",
"assets/build/ba_data/models/image1x1.bob": "https://files.ballistica.net/cache/ba1/ad/cd/fcfbbd82d2c34ef6ce35641cc007",
"assets/build/ba_data/models/image1x1FullScreen.bob": "https://files.ballistica.net/cache/ba1/ce/5e/1d12ea61fe184cb6933903c2e978",
"assets/build/ba_data/models/image1x1VRFullScreen.bob": "https://files.ballistica.net/cache/ba1/13/94/6ab9d97850406199a80e2f6be421",
"assets/build/ba_data/models/image2x1.bob": "https://files.ballistica.net/cache/ba1/98/a6/fdb586052e51da3c193fefbb7aff",
"assets/build/ba_data/models/image2x1Vertical.bob": "https://files.ballistica.net/cache/ba1/d7/7b/80d00b556d2d8f2f7a847ab2f995",
"assets/build/ba_data/models/image4x1.bob": "https://files.ballistica.net/cache/ba1/75/8c/91bae8fe9b0e73d5ce5ef4dcba0d",
"assets/build/ba_data/models/impactBomb.bob": "https://files.ballistica.net/cache/ba1/7f/ec/e8b7036bdfd8b6c2e7eee26b4731",
"assets/build/ba_data/models/jackForeArm.bob": "https://files.ballistica.net/cache/ba1/43/32/c16c4e353b484e39cab1ee9f1bd3",
"assets/build/ba_data/models/jackHand.bob": "https://files.ballistica.net/cache/ba1/b1/5c/200f77d5ed9cfd0b65789fadd9f2",
"assets/build/ba_data/models/jackHead.bob": "https://files.ballistica.net/cache/ba1/37/aa/48651c39464c44ea69d283ad6528",
"assets/build/ba_data/models/jackLowerLeg.bob": "https://files.ballistica.net/cache/ba1/e8/14/a42f6571d14e295804bfcfe9f820",
"assets/build/ba_data/models/jackToes.bob": "https://files.ballistica.net/cache/ba1/9d/1b/a598c1fa4528e1cb1025315ec364",
"assets/build/ba_data/models/jackTorso.bob": "https://files.ballistica.net/cache/ba1/7c/40/c99e9bf7ae066fa76cbbb7ded89c",
"assets/build/ba_data/models/jackUpperArm.bob": "https://files.ballistica.net/cache/ba1/0b/b9/5d7f5ed9a6c189a7d00fae8ca20e",
"assets/build/ba_data/models/jackUpperLeg.bob": "https://files.ballistica.net/cache/ba1/8d/02/164344ad761c5b9ea45932cdbddf",
"assets/build/ba_data/models/jumpsuitForeArm.bob": "https://files.ballistica.net/cache/ba1/bb/44/be0b24e51133bb1f181570b96757",
"assets/build/ba_data/models/jumpsuitHand.bob": "https://files.ballistica.net/cache/ba1/82/d7/2cac44a664ac7943a194cfd10d99",
"assets/build/ba_data/models/jumpsuitHead.bob": "https://files.ballistica.net/cache/ba1/4f/1e/d1f88135594dda40966937a521d8",
"assets/build/ba_data/models/jumpsuitLowerLeg.bob": "https://files.ballistica.net/cache/ba1/c7/18/2f1f3f42f237c4e615f52f0d7036",
"assets/build/ba_data/models/jumpsuitPelvis.bob": "https://files.ballistica.net/cache/ba1/3d/f9/df57134f7a02d139aa7c1e354c1a",
"assets/build/ba_data/models/jumpsuitToes.bob": "https://files.ballistica.net/cache/ba1/29/23/41e869144666788b3a61abbfee01",
"assets/build/ba_data/models/jumpsuitTorso.bob": "https://files.ballistica.net/cache/ba1/90/2f/038769fabe3d9dda43f469017f51",
"assets/build/ba_data/models/jumpsuitUpperArm.bob": "https://files.ballistica.net/cache/ba1/e6/f1/5d24173e7f8b12222f57ff5e3142",
"assets/build/ba_data/models/jumpsuitUpperLeg.bob": "https://files.ballistica.net/cache/ba1/b1/90/57ffc4ea8e1613001929c47616c4",
"assets/build/ba_data/models/kronkForeArm.bob": "https://files.ballistica.net/cache/ba1/0a/c2/8c9a7af9ba920ed2cafbe6d00280",
"assets/build/ba_data/models/kronkHand.bob": "https://files.ballistica.net/cache/ba1/50/19/e768d8dd22eaf42a3978a53902a8",
"assets/build/ba_data/models/kronkHead.bob": "https://files.ballistica.net/cache/ba1/49/de/01e960a18f2e28c4f29d234771b9",
"assets/build/ba_data/models/kronkLowerLeg.bob": "https://files.ballistica.net/cache/ba1/87/32/6925c01563acf7c6c40c00fecd61",
"assets/build/ba_data/models/kronkPelvis.bob": "https://files.ballistica.net/cache/ba1/3c/00/3051f1785c0cb35d9b95919f1980",
"assets/build/ba_data/models/kronkToes.bob": "https://files.ballistica.net/cache/ba1/83/54/197dcfa3d7eed36efcdd4b8c4833",
"assets/build/ba_data/models/kronkTorso.bob": "https://files.ballistica.net/cache/ba1/a8/c1/89f39fec0ab9c46831b1991e2119",
"assets/build/ba_data/models/kronkUpperArm.bob": "https://files.ballistica.net/cache/ba1/97/1f/f3b3d28f08df7497b97de49dc041",
"assets/build/ba_data/models/kronkUpperLeg.bob": "https://files.ballistica.net/cache/ba1/7a/9e/ef637444aac2c20065746b29b683",
"assets/build/ba_data/models/lakeFrigid.bob": "https://files.ballistica.net/cache/ba1/7f/9f/422435b2ff3df7489de9a15efeb1",
"assets/build/ba_data/models/lakeFrigidCollide.cob": "https://files.ballistica.net/cache/ba1/24/74/b916ad4ac2fbcc8ff2f7f0fe44bd",
"assets/build/ba_data/models/lakeFrigidReflections.bob": "https://files.ballistica.net/cache/ba1/2b/ad/428e550977687e38485f49bf7d0a",
"assets/build/ba_data/models/lakeFrigidTop.bob": "https://files.ballistica.net/cache/ba1/d3/f8/99fde49f7b00ece9332a7ae9e06d",
"assets/build/ba_data/models/lakeFrigidVRFill.bob": "https://files.ballistica.net/cache/ba1/3d/a9/8cf330087c54082a4d882efe5b21",
"assets/build/ba_data/models/landMine.bob": "https://files.ballistica.net/cache/ba1/22/6d/3135f746f59f7e936a846081a86c",
"assets/build/ba_data/models/level_select_button_opaque.bob": "https://files.ballistica.net/cache/ba1/08/8a/2add1e682a7caafec36bfc48ec9e",
"assets/build/ba_data/models/level_select_button_transparent.bob": "https://files.ballistica.net/cache/ba1/31/9e/b115c06f4294b7c36cd3faf4aefb",
"assets/build/ba_data/models/locator.bob": "https://files.ballistica.net/cache/ba1/81/df/6b71d389c629d7e6c40cdd08340d",
"assets/build/ba_data/models/locatorBox.bob": "https://files.ballistica.net/cache/ba1/20/b0/0d63d9dcd2c5214753d169c69a59",
"assets/build/ba_data/models/locatorCircle.bob": "https://files.ballistica.net/cache/ba1/88/57/8d8697e73e4ed06efb17b7cb01c7",
"assets/build/ba_data/models/locatorCircleOutline.bob": "https://files.ballistica.net/cache/ba1/88/ed/cebd7de8e856e3f2ccb9af02f21b",
"assets/build/ba_data/models/logo.bob": "https://files.ballistica.net/cache/ba1/23/de/aec4078f52db613f942bf1550589",
"assets/build/ba_data/models/logoTransparent.bob": "https://files.ballistica.net/cache/ba1/ea/9a/b1dc54665e65f3f66845836d4173",
"assets/build/ba_data/models/melForeArm.bob": "https://files.ballistica.net/cache/ba1/df/45/21c25e914563d86b299677000c06",
"assets/build/ba_data/models/melHand.bob": "https://files.ballistica.net/cache/ba1/cf/de/d5b50cb4588e6fac284d4441bd2d",
"assets/build/ba_data/models/melHead.bob": "https://files.ballistica.net/cache/ba1/94/01/52fd952c92dae1f1c30ad84f049c",
"assets/build/ba_data/models/melLowerLeg.bob": "https://files.ballistica.net/cache/ba1/0b/b8/4213b3993e6d40f81f8cf61b4d8d",
"assets/build/ba_data/models/melToes.bob": "https://files.ballistica.net/cache/ba1/34/2c/170e6513e4fe1f5d9bb967eb192c",
"assets/build/ba_data/models/melTorso.bob": "https://files.ballistica.net/cache/ba1/f6/a8/d3f96eb0160efee2851a99b782ea",
"assets/build/ba_data/models/melUpperArm.bob": "https://files.ballistica.net/cache/ba1/93/99/2291094cbe3c210968b6526689c3",
"assets/build/ba_data/models/melUpperLeg.bob": "https://files.ballistica.net/cache/ba1/f5/7a/e55ee441ff80f8569a53d0dcfca9",
"assets/build/ba_data/models/meterTransparent.bob": "https://files.ballistica.net/cache/ba1/3d/79/0d1c1144f47197600d82e167e6c4",
"assets/build/ba_data/models/monkeyFaceLevel.bob": "https://files.ballistica.net/cache/ba1/df/2e/33ba114953fad6849407bfdf3ed3",
"assets/build/ba_data/models/monkeyFaceLevelBottom.bob": "https://files.ballistica.net/cache/ba1/f8/55/6f8ed5baa4700c4c2a48773fb066",
"assets/build/ba_data/models/monkeyFaceLevelBumper.cob": "https://files.ballistica.net/cache/ba1/91/1c/c753259db7961625fbe366fec7ba",
"assets/build/ba_data/models/monkeyFaceLevelCollide.cob": "https://files.ballistica.net/cache/ba1/c7/5b/078f986cb5ce190eaca02d09311e",
"assets/build/ba_data/models/natureBackground.bob": "https://files.ballistica.net/cache/ba1/0d/61/0bd4c025a65ea55342f6accbc65a",
"assets/build/ba_data/models/natureBackgroundCollide.cob": "https://files.ballistica.net/cache/ba1/28/f6/b587286d5a6f48251ccebfdfe9be",
"assets/build/ba_data/models/natureBackgroundVRFill.bob": "https://files.ballistica.net/cache/ba1/ab/1a/dc94843b65838d42b084deea9f3e",
"assets/build/ba_data/models/neoSpazForeArm.bob": "https://files.ballistica.net/cache/ba1/c0/57/9bedbf53b420c70e7e3f6e2b796d",
"assets/build/ba_data/models/neoSpazHand.bob": "https://files.ballistica.net/cache/ba1/59/94/cf564045e45478977b6d03221018",
"assets/build/ba_data/models/neoSpazHead.bob": "https://files.ballistica.net/cache/ba1/4f/f5/050477686a968511476c45fc0f36",
"assets/build/ba_data/models/neoSpazLowerLeg.bob": "https://files.ballistica.net/cache/ba1/c9/da/1d11d5025cc10320ebd17f5a4e70",
"assets/build/ba_data/models/neoSpazPelvis.bob": "https://files.ballistica.net/cache/ba1/6c/eb/b644d5d5f3e1e55879585e24727a",
"assets/build/ba_data/models/neoSpazToes.bob": "https://files.ballistica.net/cache/ba1/fa/09/3201fd91a7215408b2ee98cf0ee9",
"assets/build/ba_data/models/neoSpazTorso.bob": "https://files.ballistica.net/cache/ba1/ac/8d/aec90ef483ecac258f54bfd5c1ab",
"assets/build/ba_data/models/neoSpazUpperArm.bob": "https://files.ballistica.net/cache/ba1/82/ce/103cc35018868b7751fa6fee9ed0",
"assets/build/ba_data/models/neoSpazUpperLeg.bob": "https://files.ballistica.net/cache/ba1/79/11/2ffb8406f502f58b5682eb51ab01",
"assets/build/ba_data/models/ninjaForeArm.bob": "https://files.ballistica.net/cache/ba1/b8/59/7b1bd544d349ccc8f521037c862c",
"assets/build/ba_data/models/ninjaHand.bob": "https://files.ballistica.net/cache/ba1/f1/ab/5680a3782bfc8cfce07966eec205",
"assets/build/ba_data/models/ninjaHead.bob": "https://files.ballistica.net/cache/ba1/b5/a8/2c478221c59e5d6ebd7de031875a",
"assets/build/ba_data/models/ninjaLowerLeg.bob": "https://files.ballistica.net/cache/ba1/7a/14/3b0d906e00f84967ffb439d76e6b",
"assets/build/ba_data/models/ninjaPelvis.bob": "https://files.ballistica.net/cache/ba1/a5/32/d011aa4dfeb277bbfca79311d87c",
"assets/build/ba_data/models/ninjaToes.bob": "https://files.ballistica.net/cache/ba1/ce/00/8515e5dda839b2700b07e1614b00",
"assets/build/ba_data/models/ninjaTorso.bob": "https://files.ballistica.net/cache/ba1/48/a0/7051842294e158133fadf787aa29",
"assets/build/ba_data/models/ninjaUpperArm.bob": "https://files.ballistica.net/cache/ba1/01/89/f4b16114fe2124e49bfaabe89bf1",
"assets/build/ba_data/models/ninjaUpperLeg.bob": "https://files.ballistica.net/cache/ba1/d8/a9/ae3e7d19c703a901a8312d2856b2",
"assets/build/ba_data/models/oldLadyForeArm.bob": "https://files.ballistica.net/cache/ba1/4d/79/b5a1d99f3c00f4ba943400c11146",
"assets/build/ba_data/models/oldLadyHand.bob": "https://files.ballistica.net/cache/ba1/68/c9/ff1392e4cd64e63ea998f147b3a0",
"assets/build/ba_data/models/oldLadyHead.bob": "https://files.ballistica.net/cache/ba1/a4/b6/f129cea985624029fc83fbeb342c",
"assets/build/ba_data/models/oldLadyLowerLeg.bob": "https://files.ballistica.net/cache/ba1/b9/b9/4a04c8bac7c2919796820570ab91",
"assets/build/ba_data/models/oldLadyPelvis.bob": "https://files.ballistica.net/cache/ba1/fc/b6/68fdabc14183d7402fc241cad73d",
"assets/build/ba_data/models/oldLadyToes.bob": "https://files.ballistica.net/cache/ba1/4f/26/e43feeaabc81db1c7fa218f5a18c",
"assets/build/ba_data/models/oldLadyTorso.bob": "https://files.ballistica.net/cache/ba1/73/24/18a1734c7ce97866c71043228318",
"assets/build/ba_data/models/oldLadyUpperArm.bob": "https://files.ballistica.net/cache/ba1/f3/a2/b08213f5c7c2b76c3b8049bdbcd6",
"assets/build/ba_data/models/oldLadyUpperLeg.bob": "https://files.ballistica.net/cache/ba1/34/a5/28933dd4781eab86e70268aa140b",
"assets/build/ba_data/models/operaSingerForeArm.bob": "https://files.ballistica.net/cache/ba1/5b/f9/45dac44de66ddec3d3dc9d940665",
"assets/build/ba_data/models/operaSingerHand.bob": "https://files.ballistica.net/cache/ba1/97/44/3e6b06b97a47e9d064b8de1fdaee",
"assets/build/ba_data/models/operaSingerHead.bob": "https://files.ballistica.net/cache/ba1/20/00/db5c96ba6cdfaf483d9d5096cfde",
"assets/build/ba_data/models/operaSingerLowerLeg.bob": "https://files.ballistica.net/cache/ba1/33/17/ad861186dc9ce690b47785bcf5bf",
"assets/build/ba_data/models/operaSingerPelvis.bob": "https://files.ballistica.net/cache/ba1/e5/90/a77e6d1564d5dc87496f0875d9a6",
"assets/build/ba_data/models/operaSingerToes.bob": "https://files.ballistica.net/cache/ba1/34/32/75ee366de6d085ef63015ffce108",
"assets/build/ba_data/models/operaSingerTorso.bob": "https://files.ballistica.net/cache/ba1/45/22/f1cd80a3f78ff982db77493e6ba3",
"assets/build/ba_data/models/operaSingerUpperArm.bob": "https://files.ballistica.net/cache/ba1/56/30/afe26dcf97af0d0b51970a5a232d",
"assets/build/ba_data/models/operaSingerUpperLeg.bob": "https://files.ballistica.net/cache/ba1/3b/2b/732e60d3546c21c9af6c4130be81",
"assets/build/ba_data/models/overlayGuide.bob": "https://files.ballistica.net/cache/ba1/cb/5f/49f570ee207f7103f7eecb42f7db",
"assets/build/ba_data/models/penguinForeArm.bob": "https://files.ballistica.net/cache/ba1/de/62/89c72525487626c566b122d33780",
"assets/build/ba_data/models/penguinHand.bob": "https://files.ballistica.net/cache/ba1/ce/49/ebb9f9eed6e0e131503f600dc59b",
"assets/build/ba_data/models/penguinHead.bob": "https://files.ballistica.net/cache/ba1/c2/7e/33c221f7beff699295f0f7cb8e80",
"assets/build/ba_data/models/penguinLowerLeg.bob": "https://files.ballistica.net/cache/ba1/ca/98/2a4b7820b3de3ca04e9b09c4b2fc",
"assets/build/ba_data/models/penguinPelvis.bob": "https://files.ballistica.net/cache/ba1/ec/39/aa8725e319f2a2dbfedb28167596",
"assets/build/ba_data/models/penguinToes.bob": "https://files.ballistica.net/cache/ba1/3c/4a/14321baabc6bc499d3821f66631c",
"assets/build/ba_data/models/penguinTorso.bob": "https://files.ballistica.net/cache/ba1/c2/a5/19c58a0f33143563565f568c8d18",
"assets/build/ba_data/models/penguinUpperArm.bob": "https://files.ballistica.net/cache/ba1/4f/30/0a9c388f4d32b45598756437fc02",
"assets/build/ba_data/models/penguinUpperLeg.bob": "https://files.ballistica.net/cache/ba1/5e/4f/b4d2efb1295b051c666fc30cf25d",
"assets/build/ba_data/models/pixieForeArm.bob": "https://files.ballistica.net/cache/ba1/9d/7c/6e2a30d84bfa4a137e5dd4d77f84",
"assets/build/ba_data/models/pixieHand.bob": "https://files.ballistica.net/cache/ba1/11/9a/7f48c12e50fbcdc8bee795e9b714",
"assets/build/ba_data/models/pixieHead.bob": "https://files.ballistica.net/cache/ba1/0c/c3/be8b8c4b8b83a4519dc390fbb016",
"assets/build/ba_data/models/pixieLowerLeg.bob": "https://files.ballistica.net/cache/ba1/59/5f/27f215a51b0d88d0d2b4e7b34e09",
"assets/build/ba_data/models/pixiePelvis.bob": "https://files.ballistica.net/cache/ba1/55/26/6f97f1e0f17e01e270c440e985e6",
"assets/build/ba_data/models/pixieToes.bob": "https://files.ballistica.net/cache/ba1/2a/1a/cc8221884da30ba5fe834755c8de",
"assets/build/ba_data/models/pixieTorso.bob": "https://files.ballistica.net/cache/ba1/dd/a4/3cc625e7568671af9d91a2752add",
"assets/build/ba_data/models/pixieUpperArm.bob": "https://files.ballistica.net/cache/ba1/f9/e5/3d2df15668bebe6577b78398eae5",
"assets/build/ba_data/models/pixieUpperLeg.bob": "https://files.ballistica.net/cache/ba1/68/90/fae0f02685cd8d556cd2ce199edc",
"assets/build/ba_data/models/plasticEyesTransparent.bob": "https://files.ballistica.net/cache/ba1/80/b3/edd8666a01eed3f57136968bdce9",
"assets/build/ba_data/models/playerLineup1Transparent.bob": "https://files.ballistica.net/cache/ba1/64/d0/500eb683997cc3806984dce6a53d",
"assets/build/ba_data/models/playerLineup2Transparent.bob": "https://files.ballistica.net/cache/ba1/e2/fa/d6d2b9cd093dc5511485c8342296",
"assets/build/ba_data/models/playerLineup3Transparent.bob": "https://files.ballistica.net/cache/ba1/b5/65/255f3879a356079d3598a70682d9",
"assets/build/ba_data/models/playerLineup4Transparent.bob": "https://files.ballistica.net/cache/ba1/6f/7e/1aa5ea1982b1b3df5c9aa173cf84",
"assets/build/ba_data/models/powerup.bob": "https://files.ballistica.net/cache/ba1/c4/02/8217cecd1331942a3e4cfab8ccee",
"assets/build/ba_data/models/powerupSimple.bob": "https://files.ballistica.net/cache/ba1/67/10/479cd32d3984bdb60e4d8f918542",
"assets/build/ba_data/models/puck.bob": "https://files.ballistica.net/cache/ba1/7b/b4/bf5b423328f1875137e0d2f8a4de",
"assets/build/ba_data/models/rampageBG.bob": "https://files.ballistica.net/cache/ba1/22/a5/fc017f2d0143ebc60643b3dd3188",
"assets/build/ba_data/models/rampageBG2.bob": "https://files.ballistica.net/cache/ba1/72/40/5aa50ddfd6274987f56d75c092f9",
"assets/build/ba_data/models/rampageBumper.cob": "https://files.ballistica.net/cache/ba1/db/07/6c2fb30ff93b1827a5831b823aec",
"assets/build/ba_data/models/rampageLevel.bob": "https://files.ballistica.net/cache/ba1/5c/fc/ae639969212b5c3820fa809b5a2b",
"assets/build/ba_data/models/rampageLevelBottom.bob": "https://files.ballistica.net/cache/ba1/8d/c6/84d3e18e748c1016a39ee817c53b",
"assets/build/ba_data/models/rampageLevelCollide.cob": "https://files.ballistica.net/cache/ba1/af/c1/16888b04bfd64b9451640dae3c73",
"assets/build/ba_data/models/rampageVRFill.bob": "https://files.ballistica.net/cache/ba1/39/6e/1ac1a86ea64700cbbf90567ecaf7",
"assets/build/ba_data/models/robotForeArm.bob": "https://files.ballistica.net/cache/ba1/8a/e3/2f4f1d27133cd5d7ada42aa01998",
"assets/build/ba_data/models/robotHand.bob": "https://files.ballistica.net/cache/ba1/f4/44/497ca858aa131d3319667ecca0cd",
"assets/build/ba_data/models/robotHead.bob": "https://files.ballistica.net/cache/ba1/82/ce/75496f4b3d256b5eae984516218b",
"assets/build/ba_data/models/robotLowerLeg.bob": "https://files.ballistica.net/cache/ba1/9a/5d/23ad0b9ee083ead0ab2128598998",
"assets/build/ba_data/models/robotPelvis.bob": "https://files.ballistica.net/cache/ba1/ae/0c/00b79ef1f1dc52e0e66d1b7c6d10",
"assets/build/ba_data/models/robotToes.bob": "https://files.ballistica.net/cache/ba1/68/10/b8e01022caf8fdd19c63b9296646",
"assets/build/ba_data/models/robotTorso.bob": "https://files.ballistica.net/cache/ba1/b5/20/d93cccb8fab6345256e39a0979e5",
"assets/build/ba_data/models/robotUpperArm.bob": "https://files.ballistica.net/cache/ba1/73/c6/068669bf776f763010fdfd96f6ad",
"assets/build/ba_data/models/robotUpperLeg.bob": "https://files.ballistica.net/cache/ba1/5f/58/a1f41b024125cfe1973d4d0bacc2",
"assets/build/ba_data/models/roundaboutLevel.bob": "https://files.ballistica.net/cache/ba1/54/20/5ea868c4e7bed162a74695e7d5cf",
"assets/build/ba_data/models/roundaboutLevelBottom.bob": "https://files.ballistica.net/cache/ba1/e1/96/57e22f2b2d4e422f45c718bc49c7",
"assets/build/ba_data/models/roundaboutLevelBumper.cob": "https://files.ballistica.net/cache/ba1/7e/0a/67dfa4982ae32efe1fd3aa8d7553",
"assets/build/ba_data/models/roundaboutLevelCollide.cob": "https://files.ballistica.net/cache/ba1/a8/c4/7364b72e0647974d095dda8fa367",
"assets/build/ba_data/models/runningShoes.bob": "https://files.ballistica.net/cache/ba1/d9/05/b65c13dc594722bfbaffd7ca4b9a",
"assets/build/ba_data/models/santaForeArm.bob": "https://files.ballistica.net/cache/ba1/cc/16/afd5e1052d32919bc83190b472f0",
"assets/build/ba_data/models/santaHand.bob": "https://files.ballistica.net/cache/ba1/29/86/4a3f22f46fa6a66c21442d7765c5",
"assets/build/ba_data/models/santaHead.bob": "https://files.ballistica.net/cache/ba1/82/88/d911c23a0a43daf23bbdd5ca2a9a",
"assets/build/ba_data/models/santaLowerLeg.bob": "https://files.ballistica.net/cache/ba1/d3/18/d55f0812dede0c4d188bab4b0113",
"assets/build/ba_data/models/santaToes.bob": "https://files.ballistica.net/cache/ba1/48/2e/f226da167cd99080eda6deb43a36",
"assets/build/ba_data/models/santaTorso.bob": "https://files.ballistica.net/cache/ba1/fa/97/5412251561c506ccaa8f4b1493d2",
"assets/build/ba_data/models/santaUpperArm.bob": "https://files.ballistica.net/cache/ba1/96/bd/8efa21d6d224bca2c9971f2a0a4e",
"assets/build/ba_data/models/santaUpperLeg.bob": "https://files.ballistica.net/cache/ba1/db/11/60bcc01580eeb8030eb773739165",
"assets/build/ba_data/models/scorch.bob": "https://files.ballistica.net/cache/ba1/cb/90/c0f843e51f7f66a9bb30004c9b94",
"assets/build/ba_data/models/scrollBarThumbOpaque.bob": "https://files.ballistica.net/cache/ba1/2a/07/d7b44476348ecbf1ecf65b896f68",
"assets/build/ba_data/models/scrollBarThumbShortOpaque.bob": "https://files.ballistica.net/cache/ba1/25/e2/0ffed8edf1d67c2a06f746f150b2",
"assets/build/ba_data/models/scrollBarThumbShortSimple.bob": "https://files.ballistica.net/cache/ba1/fe/c2/51ec1d5a72abe04b4308ba2a78ba",
"assets/build/ba_data/models/scrollBarThumbShortTransparent.bob": "https://files.ballistica.net/cache/ba1/35/75/b3d68a5fe3091463acf9efa9d7e7",
"assets/build/ba_data/models/scrollBarThumbSimple.bob": "https://files.ballistica.net/cache/ba1/c9/f6/804de0e69f8a31570b6426990450",
"assets/build/ba_data/models/scrollBarThumbTransparent.bob": "https://files.ballistica.net/cache/ba1/d7/ad/5dadefee0cf46dcfe2edd162cc88",
"assets/build/ba_data/models/scrollBarTroughTransparent.bob": "https://files.ballistica.net/cache/ba1/77/99/65f8b205649691cf7f121c896a22",
"assets/build/ba_data/models/scrollWidgetShort.bob": "https://files.ballistica.net/cache/ba1/c0/71/0767fce83c9e97e99d0fa34f70ef",
"assets/build/ba_data/models/shield.bob": "https://files.ballistica.net/cache/ba1/49/2a/e4e85b8c3a09405dc01e53576be0",
"assets/build/ba_data/models/shockWave.bob": "https://files.ballistica.net/cache/ba1/25/cf/eb455291ba2995cae44c23d14b46",
"assets/build/ba_data/models/shrapnel1.bob": "https://files.ballistica.net/cache/ba1/92/c9/39560da6db5e000f6835bffb297a",
"assets/build/ba_data/models/shrapnelBoard.bob": "https://files.ballistica.net/cache/ba1/c5/a5/b5ccc527086a11c2d5ce6c07f904",
"assets/build/ba_data/models/shrapnelSlime.bob": "https://files.ballistica.net/cache/ba1/88/79/ae9a5d2e583bcbfba23eddf56776",
"assets/build/ba_data/models/softEdgeInside.bob": "https://files.ballistica.net/cache/ba1/6d/b5/de80530e6bfefedcd9b79d947e03",
"assets/build/ba_data/models/softEdgeOutside.bob": "https://files.ballistica.net/cache/ba1/7c/13/2faa1a560289aedad08a92c2c4da",
"assets/build/ba_data/models/stepRightUpLevel.bob": "https://files.ballistica.net/cache/ba1/2d/d5/f11cecfb99a5aa7a95ba9d4c0cd9",
"assets/build/ba_data/models/stepRightUpLevelBottom.bob": "https://files.ballistica.net/cache/ba1/92/d8/b1a119d433320446f3caff09ff0a",
"assets/build/ba_data/models/stepRightUpLevelCollide.cob": "https://files.ballistica.net/cache/ba1/12/c9/76e4180a09a5bc45614dfc874d9f",
"assets/build/ba_data/models/stepRightUpVRFillMound.bob": "https://files.ballistica.net/cache/ba1/f5/f4/0b870f134842f7aa5d918b550614",
"assets/build/ba_data/models/superheroForeArm.bob": "https://files.ballistica.net/cache/ba1/1c/41/7e2c6833ea37819b5583ec3c7674",
"assets/build/ba_data/models/superheroHand.bob": "https://files.ballistica.net/cache/ba1/8b/90/9e52ba9483c8b38d5d540b6d9a33",
"assets/build/ba_data/models/superheroHead.bob": "https://files.ballistica.net/cache/ba1/ab/04/63b19bebb1b19054881b141aab73",
"assets/build/ba_data/models/superheroLowerLeg.bob": "https://files.ballistica.net/cache/ba1/82/fa/3b47b2da208c64bf91f038deb734",
"assets/build/ba_data/models/superheroPelvis.bob": "https://files.ballistica.net/cache/ba1/cc/20/e5e57c5d976883b65d7ed1cce3e8",
"assets/build/ba_data/models/superheroToes.bob": "https://files.ballistica.net/cache/ba1/b1/e8/b091f65ab911e2fa4fe28a135676",
"assets/build/ba_data/models/superheroTorso.bob": "https://files.ballistica.net/cache/ba1/65/5e/e74fe653b0a749a6dde2f79b671f",
"assets/build/ba_data/models/superheroUpperArm.bob": "https://files.ballistica.net/cache/ba1/ff/b5/63372861b856d0252bf3367c4517",
"assets/build/ba_data/models/superheroUpperLeg.bob": "https://files.ballistica.net/cache/ba1/47/4d/a0891687b3ab9b74c84ef1db5407",
"assets/build/ba_data/models/textBoxTransparent.bob": "https://files.ballistica.net/cache/ba1/ab/e6/358caf8eb80bbaeda086e8d48a4d",
"assets/build/ba_data/models/thePadBG.bob": "https://files.ballistica.net/cache/ba1/36/7b/f5295c9dd67f898b75300401728c",
"assets/build/ba_data/models/thePadBGSmall.bob": "https://files.ballistica.net/cache/ba1/f5/ff/01fcd28863a759807ca079c0bd77",
"assets/build/ba_data/models/thePadLevel.bob": "https://files.ballistica.net/cache/ba1/54/d2/d3f0956fa2e1f186f32bfc48bb68",
"assets/build/ba_data/models/thePadLevelBottom.bob": "https://files.ballistica.net/cache/ba1/69/d9/a7cc958480ecacee72c462feec85",
"assets/build/ba_data/models/thePadLevelBumper.cob": "https://files.ballistica.net/cache/ba1/71/2b/2f4b38db1adcaff7149436953baf",
"assets/build/ba_data/models/thePadLevelCollide.cob": "https://files.ballistica.net/cache/ba1/99/e6/8fcbe6dd5ecbab8a8e27b38cbad2",
"assets/build/ba_data/models/thePadVRFillBottom.bob": "https://files.ballistica.net/cache/ba1/74/17/b240306aa7716afbad23990081e7",
"assets/build/ba_data/models/thePadVRFillMound.bob": "https://files.ballistica.net/cache/ba1/04/f2/3811a62f5363004d6f91adb95373",
"assets/build/ba_data/models/thePadVRFillTop.bob": "https://files.ballistica.net/cache/ba1/77/a0/979a4b2c178938ab54fea47cb342",
"assets/build/ba_data/models/tipTopBG.bob": "https://files.ballistica.net/cache/ba1/c3/d0/d170b81d66265412bda9bd32322d",
"assets/build/ba_data/models/tipTopLevel.bob": "https://files.ballistica.net/cache/ba1/8f/81/03a14674551f3f8fd32eb0aee0fd",
"assets/build/ba_data/models/tipTopLevelBottom.bob": "https://files.ballistica.net/cache/ba1/38/f2/db7a3e29a13c0b09943ff2dca1a2",
"assets/build/ba_data/models/tipTopLevelBumper.cob": "https://files.ballistica.net/cache/ba1/b4/21/fb3664c4afae81aee7d11ce483c8",
"assets/build/ba_data/models/tipTopLevelCollide.cob": "https://files.ballistica.net/cache/ba1/f7/11/3e368ce2b132c85a6e1c0ed1dcaa",
"assets/build/ba_data/models/tnt.bob": "https://files.ballistica.net/cache/ba1/86/41/fed2ad95fb6292313861446ebb56",
"assets/build/ba_data/models/toolbarBacking.bob": "https://files.ballistica.net/cache/ba1/77/bf/2168fed3b1d3dcd1dc25f297e3db",
"assets/build/ba_data/models/toolbarBackingBottom.bob": "https://files.ballistica.net/cache/ba1/91/0a/0fddbc031e2a685c3dbfec86ce0e",
"assets/build/ba_data/models/toolbarBackingBottom2.bob": "https://files.ballistica.net/cache/ba1/4b/d4/ad47a1c316a114699d8c49472bfa",
"assets/build/ba_data/models/toolbarBackingOpaque.bob": "https://files.ballistica.net/cache/ba1/2b/74/b99209b2e4b225b716d734f2bb91",
"assets/build/ba_data/models/toolbarBackingTop.bob": "https://files.ballistica.net/cache/ba1/24/1c/cd6625a0c3d70c63d620cc37531f",
"assets/build/ba_data/models/toolbarBackingTop2.bob": "https://files.ballistica.net/cache/ba1/f1/1a/ecb9d61fa5d36324f82fccb6b38b",
"assets/build/ba_data/models/toolbarBackingTransparent.bob": "https://files.ballistica.net/cache/ba1/40/c8/defe35ce061da13f84bdeacff0b2",
"assets/build/ba_data/models/towerDLevel.bob": "https://files.ballistica.net/cache/ba1/a7/87/fb0d14ea35a11fbc6a17d13d5f35",
"assets/build/ba_data/models/towerDLevelBottom.bob": "https://files.ballistica.net/cache/ba1/80/cc/0c938ec519ba9c3bc9aeb51c11c6",
"assets/build/ba_data/models/towerDLevelCollide.cob": "https://files.ballistica.net/cache/ba1/66/83/af98677836422135d93a378867a4",
"assets/build/ba_data/models/towerDPlayerWall.cob": "https://files.ballistica.net/cache/ba1/5a/0a/cf6a24d5003e5b0a4fb4f1103695",
"assets/build/ba_data/models/trees.bob": "https://files.ballistica.net/cache/ba1/72/2e/709d5217f70a8e9f871f9cb36765",
"assets/build/ba_data/models/vrFade.bob": "https://files.ballistica.net/cache/ba1/3a/39/0b46b332f9099b5c0087f4fff67f",
"assets/build/ba_data/models/vrOverlay.bob": "https://files.ballistica.net/cache/ba1/c1/07/c75f8388c32635734f2c43af2885",
"assets/build/ba_data/models/warriorForeArm.bob": "https://files.ballistica.net/cache/ba1/c5/11/a2a7105d75fbb3da89739d0c398c",
"assets/build/ba_data/models/warriorHand.bob": "https://files.ballistica.net/cache/ba1/98/57/93fb838b1d140df444f3d29a829f",
"assets/build/ba_data/models/warriorHead.bob": "https://files.ballistica.net/cache/ba1/d9/0b/7c74624b44c795f00aae46042bdf",
"assets/build/ba_data/models/warriorLowerLeg.bob": "https://files.ballistica.net/cache/ba1/14/1a/3fd21e798814a8ba095f3e6cd4b0",
"assets/build/ba_data/models/warriorPelvis.bob": "https://files.ballistica.net/cache/ba1/36/19/f9f61a6225dd591b2a562eb61ea6",
"assets/build/ba_data/models/warriorToes.bob": "https://files.ballistica.net/cache/ba1/12/a9/2947b1d60aca8f0bae7ae57dfd0e",
"assets/build/ba_data/models/warriorTorso.bob": "https://files.ballistica.net/cache/ba1/68/95/942ca8f6d1a1fabb74c57c919709",
"assets/build/ba_data/models/warriorUpperArm.bob": "https://files.ballistica.net/cache/ba1/8d/13/012542d9b1f126346c99660a7e2b",
"assets/build/ba_data/models/warriorUpperLeg.bob": "https://files.ballistica.net/cache/ba1/66/91/7eff24024cb925b7d14e89a143bb",
"assets/build/ba_data/models/windowBGBlotch.bob": "https://files.ballistica.net/cache/ba1/9c/0d/41000cefdc36ccfe76b46754208c",
"assets/build/ba_data/models/windowHSmallVMedOpaque.bob": "https://files.ballistica.net/cache/ba1/30/a1/358be1aa3077582976b1f8b38167",
"assets/build/ba_data/models/windowHSmallVMedTransparent.bob": "https://files.ballistica.net/cache/ba1/31/f4/60098a4fc56a3afb9495bcc9a801",
"assets/build/ba_data/models/windowHSmallVSmallOpaque.bob": "https://files.ballistica.net/cache/ba1/3c/b5/557f9ef70365cebff6aba217f75e",
"assets/build/ba_data/models/windowHSmallVSmallTransparent.bob": "https://files.ballistica.net/cache/ba1/1c/55/8eceda6b2399eb499719432978b8",
"assets/build/ba_data/models/wing.bob": "https://files.ballistica.net/cache/ba1/78/54/c01fbbba6bef88468386218e76b9",
"assets/build/ba_data/models/witchForeArm.bob": "https://files.ballistica.net/cache/ba1/56/cf/aff82765c210be005dd7af43b9c0",
"assets/build/ba_data/models/witchHand.bob": "https://files.ballistica.net/cache/ba1/b0/f7/bfb73ddf006b5c7b07c44a8166eb",
"assets/build/ba_data/models/witchHead.bob": "https://files.ballistica.net/cache/ba1/44/b2/e95dd3a1c3b8685d91784b679418",
"assets/build/ba_data/models/witchLowerLeg.bob": "https://files.ballistica.net/cache/ba1/40/1b/690036b992eca29f9457dae140fa",
"assets/build/ba_data/models/witchPelvis.bob": "https://files.ballistica.net/cache/ba1/c2/60/b73ae4d8e0adcde627d2aea63194",
"assets/build/ba_data/models/witchToes.bob": "https://files.ballistica.net/cache/ba1/31/14/51653f3141aad8d796d8012dc817",
"assets/build/ba_data/models/witchTorso.bob": "https://files.ballistica.net/cache/ba1/75/d3/ac21ef8bb915bcc30bda47e5e3ea",
"assets/build/ba_data/models/witchUpperArm.bob": "https://files.ballistica.net/cache/ba1/a4/8b/e95f1ba13689886bae98a813a3fb",
"assets/build/ba_data/models/witchUpperLeg.bob": "https://files.ballistica.net/cache/ba1/da/f3/83bf5f77abce88e0ba7ddd3bfbde",
"assets/build/ba_data/models/wizardForeArm.bob": "https://files.ballistica.net/cache/ba1/7e/20/824b45fd56ef923d61ea7b91a904",
"assets/build/ba_data/models/wizardHand.bob": "https://files.ballistica.net/cache/ba1/66/bd/6059a0dcf1c14eb4dc47904aec94",
"assets/build/ba_data/models/wizardHead.bob": "https://files.ballistica.net/cache/ba1/8b/64/918cea6808d80f53a57ccee2029b",
"assets/build/ba_data/models/wizardLowerLeg.bob": "https://files.ballistica.net/cache/ba1/f4/9a/d8f380aba0775bff0fd35f98ba9a",
"assets/build/ba_data/models/wizardPelvis.bob": "https://files.ballistica.net/cache/ba1/63/e7/f5940cc4598d1dbeece261ea6c82",
"assets/build/ba_data/models/wizardToes.bob": "https://files.ballistica.net/cache/ba1/a2/c0/9b550223f1df470b6bfc2df23f71",
"assets/build/ba_data/models/wizardTorso.bob": "https://files.ballistica.net/cache/ba1/e7/de/40ed0fe87a04dcff8167185aae82",
"assets/build/ba_data/models/wizardUpperArm.bob": "https://files.ballistica.net/cache/ba1/c3/36/edd82626eaece0540499f4bef58b",
"assets/build/ba_data/models/wizardUpperLeg.bob": "https://files.ballistica.net/cache/ba1/5b/cc/8a55165ee3e89a8a12b930fe9259",
"assets/build/ba_data/models/wrestlerForeArm.bob": "https://files.ballistica.net/cache/ba1/3d/d8/c7dc3f23954cf73611e3f843df65",
"assets/build/ba_data/models/wrestlerHand.bob": "https://files.ballistica.net/cache/ba1/34/dd/018da291336b1db8531205756b9e",
"assets/build/ba_data/models/wrestlerHead.bob": "https://files.ballistica.net/cache/ba1/26/39/bd606fc2c06f6b42c0ea91d1c0ae",
"assets/build/ba_data/models/wrestlerLowerLeg.bob": "https://files.ballistica.net/cache/ba1/9d/b7/428464bf2b21e1942b4211dc1c03",
"assets/build/ba_data/models/wrestlerPelvis.bob": "https://files.ballistica.net/cache/ba1/5e/6c/4fc75a3ad6ec4b84cce04236688f",
"assets/build/ba_data/models/wrestlerToes.bob": "https://files.ballistica.net/cache/ba1/17/21/260e90fa37946b810bdb1a3dddeb",
"assets/build/ba_data/models/wrestlerTorso.bob": "https://files.ballistica.net/cache/ba1/25/cb/78cd940ded69c1a3abd3c1d9d9d5",
"assets/build/ba_data/models/wrestlerUpperArm.bob": "https://files.ballistica.net/cache/ba1/66/20/5b2c138ed007027af4b44a5720bd",
"assets/build/ba_data/models/wrestlerUpperLeg.bob": "https://files.ballistica.net/cache/ba1/dd/c8/e9377bafef0b51417e3b6ad33291",
"assets/build/ba_data/models/zigZagLevel.bob": "https://files.ballistica.net/cache/ba1/4a/a3/903c652d6ef5262ad760d697fd8d",
"assets/build/ba_data/models/zigZagLevelBottom.bob": "https://files.ballistica.net/cache/ba1/46/06/7bb8afa448c61f3307bca7e358ab",
"assets/build/ba_data/models/zigZagLevelBumper.cob": "https://files.ballistica.net/cache/ba1/34/b8/f96d8ec97403ad393e40382332f3",
"assets/build/ba_data/models/zigZagLevelCollide.cob": "https://files.ballistica.net/cache/ba1/93/c8/b044042c482d1e53a5384969624d",
"assets/build/ba_data/models/zoeForeArm.bob": "https://files.ballistica.net/cache/ba1/17/27/ef435bee72da504382311590577d",
"assets/build/ba_data/models/zoeHand.bob": "https://files.ballistica.net/cache/ba1/72/fe/e93690c16e5937eabd938df0a1fe",
"assets/build/ba_data/models/zoeHead.bob": "https://files.ballistica.net/cache/ba1/c1/7a/68d264712df92e22da89f5ae5324",
"assets/build/ba_data/models/zoeLowerLeg.bob": "https://files.ballistica.net/cache/ba1/8f/a2/6f358d24c474b4c8dccc5b5e591e",
"assets/build/ba_data/models/zoePelvis.bob": "https://files.ballistica.net/cache/ba1/ae/92/0aecd44c739165e97e55f3e529d8",
"assets/build/ba_data/models/zoeToes.bob": "https://files.ballistica.net/cache/ba1/41/69/96fb4ed28eed3bf8a704a256558c",
"assets/build/ba_data/models/zoeTorso.bob": "https://files.ballistica.net/cache/ba1/88/66/74a21f09ca6cfbfe7352219e43e6",
"assets/build/ba_data/models/zoeUpperArm.bob": "https://files.ballistica.net/cache/ba1/99/38/b7694cae0804260eeb337aa1676a",
"assets/build/ba_data/models/zoeUpperLeg.bob": "https://files.ballistica.net/cache/ba1/83/4f/28b2202d0109fa93272c0b09fa2d",
"assets/build/ba_data/python-site-packages/_yaml/__init__.py": "https://files.ballistica.net/cache/ba1/0d/45/65ba92f51d411dcffac8835b6130",
"assets/build/ba_data/python-site-packages/typing_extensions.py": "https://files.ballistica.net/cache/ba1/26/a1/b771d51fc1cc475cf1f44f9d43d2",
"assets/build/ba_data/python-site-packages/yaml/__init__.py": "https://files.ballistica.net/cache/ba1/e5/47/17715ca7620f3b9749558b9dcb2d",
"assets/build/ba_data/python-site-packages/yaml/composer.py": "https://files.ballistica.net/cache/ba1/3e/aa/d7fcfc4707ad19a6964d72654b82",
"assets/build/ba_data/python-site-packages/yaml/constructor.py": "https://files.ballistica.net/cache/ba1/f4/29/cd8c7f5a2296d8f1715ad49b5797",
"assets/build/ba_data/python-site-packages/yaml/cyaml.py": "https://files.ballistica.net/cache/ba1/b4/98/dcdd4c31e2ff2c7a938170694020",
"assets/build/ba_data/python-site-packages/yaml/dumper.py": "https://files.ballistica.net/cache/ba1/10/86/350a48501c2ef0e9e0e524412eab",
"assets/build/ba_data/python-site-packages/yaml/emitter.py": "https://files.ballistica.net/cache/ba1/f2/68/4697cd68fb49c8ef517197535ba0",
"assets/build/ba_data/python-site-packages/yaml/error.py": "https://files.ballistica.net/cache/ba1/7b/d6/a06f6f135d32d5e96d727188346f",
"assets/build/ba_data/python-site-packages/yaml/events.py": "https://files.ballistica.net/cache/ba1/27/8e/94bb286138b923b47154842b5347",
"assets/build/ba_data/python-site-packages/yaml/loader.py": "https://files.ballistica.net/cache/ba1/71/dd/b4170459e37bafff6c0fe0d054b5",
"assets/build/ba_data/python-site-packages/yaml/nodes.py": "https://files.ballistica.net/cache/ba1/e5/f1/1d2e0edb5460dff0ebb10a92fe24",
"assets/build/ba_data/python-site-packages/yaml/parser.py": "https://files.ballistica.net/cache/ba1/c0/a6/e94c7a3f8f4f08803f68f9387731",
"assets/build/ba_data/python-site-packages/yaml/reader.py": "https://files.ballistica.net/cache/ba1/0d/58/9196a3104da22ed15afe27f67387",
"assets/build/ba_data/python-site-packages/yaml/representer.py": "https://files.ballistica.net/cache/ba1/81/c0/f24b6b2f2c777f9467bd24aa2789",
"assets/build/ba_data/python-site-packages/yaml/resolver.py": "https://files.ballistica.net/cache/ba1/e6/98/e6145dd5cfebbc456fb3881ce523",
"assets/build/ba_data/python-site-packages/yaml/scanner.py": "https://files.ballistica.net/cache/ba1/de/13/75284ee45274f24637d9c79bd0cb",
"assets/build/ba_data/python-site-packages/yaml/serializer.py": "https://files.ballistica.net/cache/ba1/19/a9/f996e312d2ca2d4cb974bcc4f5bc",
"assets/build/ba_data/python-site-packages/yaml/tokens.py": "https://files.ballistica.net/cache/ba1/93/58/d4c7731a1b991391782441f2ba8e",
"assets/build/ba_data/textures/achievementBoxer.dds": "https://files.ballistica.net/cache/ba1/ad/42/9203f2d7fac0185e04d5f163901d",
"assets/build/ba_data/textures/achievementBoxer.ktx": "https://files.ballistica.net/cache/ba1/79/76/18850573cd8bf8aae2a0bece21c7",
"assets/build/ba_data/textures/achievementBoxer.pvr": "https://files.ballistica.net/cache/ba1/5e/68/11b5ea9be250623669983832952a",
"assets/build/ba_data/textures/achievementBoxer_preview.png": "https://files.ballistica.net/cache/ba1/e8/2f/73bca43e56c91a742949f7cc7c16",
"assets/build/ba_data/textures/achievementCrossHair.dds": "https://files.ballistica.net/cache/ba1/e6/a2/f945b03f24b4ec71d5d5629f88fc",
"assets/build/ba_data/textures/achievementCrossHair.ktx": "https://files.ballistica.net/cache/ba1/49/1c/638c0be579433a86772d11c82e8c",
"assets/build/ba_data/textures/achievementCrossHair.pvr": "https://files.ballistica.net/cache/ba1/a1/f0/85f12820d1c81c839e91e09c829c",
"assets/build/ba_data/textures/achievementCrossHair_preview.png": "https://files.ballistica.net/cache/ba1/59/b8/4ffbe9e9ff74bc6cecafdacb544d",
"assets/build/ba_data/textures/achievementDualWielding.dds": "https://files.ballistica.net/cache/ba1/60/58/af4b45e593f9a421d45f2a7a15f5",
"assets/build/ba_data/textures/achievementDualWielding.ktx": "https://files.ballistica.net/cache/ba1/8d/6d/9ab5f1c59ada7e2cdd9db83cfa7c",
"assets/build/ba_data/textures/achievementDualWielding.pvr": "https://files.ballistica.net/cache/ba1/7c/21/8f6959d7196bb1623ae65c25d804",
"assets/build/ba_data/textures/achievementDualWielding_preview.png": "https://files.ballistica.net/cache/ba1/f8/61/072614c48ec86483f8c902cd98dc",
"assets/build/ba_data/textures/achievementEmpty.dds": "https://files.ballistica.net/cache/ba1/80/35/ca22cefd3a4b6a315ff9268012c3",
"assets/build/ba_data/textures/achievementEmpty.ktx": "https://files.ballistica.net/cache/ba1/81/47/24fda69d6c5fd3a2736d6b77f082",
"assets/build/ba_data/textures/achievementEmpty.pvr": "https://files.ballistica.net/cache/ba1/81/47/7f464160a45e7f8df551f02b8ea6",
"assets/build/ba_data/textures/achievementEmpty_preview.png": "https://files.ballistica.net/cache/ba1/ce/f6/086bc605cbece840527b51fc3f47",
"assets/build/ba_data/textures/achievementFlawlessVictory.dds": "https://files.ballistica.net/cache/ba1/9d/62/067d46adea91bfcc9d4dc9ce8b7c",
"assets/build/ba_data/textures/achievementFlawlessVictory.ktx": "https://files.ballistica.net/cache/ba1/ca/77/af2f650d4cf117ec705ad6ee3af3",
"assets/build/ba_data/textures/achievementFlawlessVictory.pvr": "https://files.ballistica.net/cache/ba1/97/c2/65ce9370f1e39382654179cda394",
"assets/build/ba_data/textures/achievementFlawlessVictory_preview.png": "https://files.ballistica.net/cache/ba1/2e/78/371b8389258ff18c36524b7ef5f9",
"assets/build/ba_data/textures/achievementFootballShutout.dds": "https://files.ballistica.net/cache/ba1/6c/3e/f9e2e1be4e45304a2ef768ec9dfe",
"assets/build/ba_data/textures/achievementFootballShutout.ktx": "https://files.ballistica.net/cache/ba1/b5/7d/8b2e3de3b8f8e017d9244d091272",
"assets/build/ba_data/textures/achievementFootballShutout.pvr": "https://files.ballistica.net/cache/ba1/e1/73/fb16eaa57ad397443176f508851c",
"assets/build/ba_data/textures/achievementFootballShutout_preview.png": "https://files.ballistica.net/cache/ba1/2d/3e/7a12d7c449bed234ac257365c157",
"assets/build/ba_data/textures/achievementFootballVictory.dds": "https://files.ballistica.net/cache/ba1/bb/06/01643c69642b093e2ad508f968c2",
"assets/build/ba_data/textures/achievementFootballVictory.ktx": "https://files.ballistica.net/cache/ba1/b4/0b/a9ee1ab1a283dcd897cc993167bd",
"assets/build/ba_data/textures/achievementFootballVictory.pvr": "https://files.ballistica.net/cache/ba1/ad/82/bdde642000f0477f34e34a2965cb",
"assets/build/ba_data/textures/achievementFootballVictory_preview.png": "https://files.ballistica.net/cache/ba1/7d/f4/d8451bd9a50c2f36b909b54e8d4c",
"assets/build/ba_data/textures/achievementFreeLoader.dds": "https://files.ballistica.net/cache/ba1/fe/76/5d65964da11b0cfed5611f89b42b",
"assets/build/ba_data/textures/achievementFreeLoader.ktx": "https://files.ballistica.net/cache/ba1/6c/72/9aff51cf52f9c745d9c7db7ee8c7",
"assets/build/ba_data/textures/achievementFreeLoader.pvr": "https://files.ballistica.net/cache/ba1/92/cd/0033e59c541525ad2e5826f80881",
"assets/build/ba_data/textures/achievementFreeLoader_preview.png": "https://files.ballistica.net/cache/ba1/bb/89/7249f9f958099ed9a571fd953598",
"assets/build/ba_data/textures/achievementGotTheMoves.dds": "https://files.ballistica.net/cache/ba1/53/2a/b68c18982566692260d311456fa9",
"assets/build/ba_data/textures/achievementGotTheMoves.ktx": "https://files.ballistica.net/cache/ba1/5c/63/68b26e53d4157cfd5dff4caa2468",
"assets/build/ba_data/textures/achievementGotTheMoves.pvr": "https://files.ballistica.net/cache/ba1/ac/e8/be25c2141bf80fc236470a9f7a3f",
"assets/build/ba_data/textures/achievementGotTheMoves_preview.png": "https://files.ballistica.net/cache/ba1/d5/4a/3d6763b76daa83d722c589546c93",
"assets/build/ba_data/textures/achievementInControl.dds": "https://files.ballistica.net/cache/ba1/89/21/1f3ff8714c0908a8b7a1a3987ab0",