-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.toml
6273 lines (4778 loc) · 218 KB
/
index.toml
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
hash-format = "sha256"
[[files]]
file = "config/InventoryHUD/curios.json"
hash = "4b826a017fed64a11651fd23da46753914d51085f53df8ce93aaf7e929c0045e"
[[files]]
file = "config/InventoryHUD/trinkets.json"
hash = "60e91aca417d24d45f66792a9abdf5b8a699b7161f88ae1b0dd88d1f196d440c"
[[files]]
file = "config/NoChatReports/NCR-Client.json"
hash = "bcda618c3d12260723dddcf6b15893d55ee7955d9347ef669004385c9bb3c61f"
[[files]]
file = "config/NoChatReports/NCR-Common.json"
hash = "bbc93e6b3cb7a917334cbbb3d1b0775a1cb3244ebc2075e4fa1fb7420e32cea7"
[[files]]
file = "config/NoChatReports/NCR-Encryption.json"
hash = "ba5e0e63cd9b06f69f19a66e99cd8f2d327421344123215c067a427a161558f1"
[[files]]
file = "config/NoChatReports/NCR-ServerWhitelist.json"
hash = "fdf38fd061bb38e0389ffb008eb33f454f762e504080e8adf2ed5e3911554a8c"
[[files]]
file = "config/Revelationary.json"
hash = "320e0fc1914b7d05a550207449dfc99ce3d88cdddb376ba1828d2a10b5d1f9e0"
[[files]]
file = "config/Spectrum.json5"
hash = "532f9325d3490b6cf808174a7f4814e2f86aeed168dc739a31a58387c025a127"
[[files]]
file = "config/YungsExtras/README.txt"
hash = "2e494050535555835f5d0cc89bde1207711e208e9a190ce9dce798ad80d5216f"
[[files]]
file = "config/YungsExtras/fabric-1_19/README.txt"
hash = "589122f27daf80f48e4e1196b283e42559beecde99a6312a7375b45919e4e6f7"
[[files]]
file = "config/YungsExtras/fabric-1_19/wishing_wells.json"
hash = "aae6521ccfef520cbafd5573281c91a516fc01c63b811d1eae88a33bad4495e1"
[[files]]
file = "config/ad_astra.jsonc"
hash = "4b2ba541f69f61dcaa08b9b85fc214853814b582a2287c36e7e30aba13410a51"
[[files]]
file = "config/ad_astra_giselle_addon.jsonc"
hash = "1982e12d9832eec00d546c944a6800925eb74049716ba048657e633dfd66a2ea"
[[files]]
file = "config/adaptive-tooltips.json"
hash = "c7201bc48409d611ff9608a4932f46ceef3ec1f2cf1c2437d76520ece00f16df"
[[files]]
file = "config/ae2/client.json"
hash = "d3e7030c1e712e1d10f07716ac18e6499a6963507e68fd1a74ccdee8fd7c823d"
[[files]]
file = "config/ae2/common.json"
hash = "27924f3210e9c89df533de3c104d0b3e66e6462458ae7077aa56663a64e59bfc"
[[files]]
file = "config/almostunified/debug.json"
hash = "4f1808d3941300cf6e2c53b5a37f2808a4d904e63597cd4e03a03d19e4762fef"
[[files]]
file = "config/almostunified/duplicates.json"
hash = "e0d27f5bd8deea99d4e58e88f0966c76b4f76bb61e961b60937c588467d8a303"
[[files]]
file = "config/almostunified/startup.json"
hash = "ad711622f9b8c5cc8115f52396f5d82587b809fb20cbf9d94c7744aeebcaf4d5"
[[files]]
file = "config/almostunified/unify.json"
hash = "e0cec1ad5c387164dc1ef6f7d591a82997764083470ee929b451ea44718d8069"
[[files]]
file = "config/appleskin.json5"
hash = "ae87f2d1b38dfd4b1e0767dfeb539261deaaf4fd2eb73692afcbaac7147855b9"
[[files]]
file = "config/architects_palette.json5"
hash = "759534ddefd9c91f7826ec5c7a7fc593029a9aec82ac43924efd7a94d2ff8553"
[[files]]
file = "config/artifacts/general.toml"
hash = "fb0f6d6e2f4e0bb23ed45b33cf959e0df4f1747040e7ce964aeac9131d9da337"
[[files]]
file = "config/artifacts/worldgen.toml"
hash = "a0d46432e3479f0c51eaf2c752152ea19d733ecde1cf8acef73960e8479782ce"
[[files]]
file = "config/asynclocator.properties"
hash = "033b7e7c6f52be8317a31d9608c4e48492abea06346580a5395887cd68a66458"
[[files]]
file = "config/attributefix.json"
hash = "3ad088bd720800d33f209c668bb515c8e6b98763430f59e5ecd79c1b371e993e"
[[files]]
file = "config/authme.json5"
hash = "abc3e0e4c6c3120dcbc22fecfae1966d0a040aa9464913fd2ff3aa5b1f606023"
[[files]]
file = "config/awesomedungeon_1.properties"
hash = "4a2d6a516ee573aa697871d207a1a444ce9659930fdfc0f82f9e1b66b14b8559"
[[files]]
file = "config/beenfo.json"
hash = "08a4cc63d1643aa9b22636c2c88e1203c6900303318a76cde308a56cd9cc11da"
[[files]]
file = "config/bettercombat/client.json5"
hash = "775fa0ed0b90d50b90a85f0594769d3da9f7450b390b28b62a1787d4ab848c67"
[[files]]
file = "config/bettercombat/fallback_compatibility.json"
hash = "99c135342ec3201e60a0edf377a90b65f6f459e901d156b85b2caa29ad2ab85e"
[[files]]
file = "config/bettercombat/server.json5"
hash = "4933e1c010fd02e746a0114fba4005afa269ff8ffef36aa07800b3b87066e85b"
[[files]]
file = "config/betterdeserttemples-fabric-1_19.toml"
hash = "06a1b8b7774df6bef4dc9b82e140a4211d41c93178ee0d9d25105d05a6c20566"
[[files]]
file = "config/betterdeserttemples/README.txt"
hash = "3646bc39be8c42a1432506e77721f3b963d33948d4bbd4cd5a10703834979116"
[[files]]
file = "config/betterdeserttemples/fabric-1_19/README.txt"
hash = "80ba474fdd1912739a1dc3326de6539ccfceb9d5c97f540131b567e295a7b112"
[[files]]
file = "config/betterdeserttemples/fabric-1_19/armorstands.json"
hash = "b42db0e63d1c43c8a1f1af7c4616f3af62937895b03f50ae6c702afaafdf2465"
[[files]]
file = "config/betterdeserttemples/fabric-1_19/itemframes.json"
hash = "294c401a21f0c90e87d2f104278d20ef62ce508f7a294d686b8430f48879ed7d"
[[files]]
file = "config/betterdungeons-fabric-1_19.toml"
hash = "c0809814af173f138d83495d36aabcccda93ba2f2a49ec5b7e1c87a201efee77"
[[files]]
file = "config/betterfortresses-fabric-1_19.toml"
hash = "c6f718e24389dd618b788ea1ef0c64d3689e9408fd9a482e67ecece0dc392ece"
[[files]]
file = "config/betterfortresses/README.txt"
hash = "a4e97263d2f099fcbc3fd7646c85c562e1eb7659bfa5ff66b11f76afaa2f9c06"
[[files]]
file = "config/betterfortresses/fabric-1_19/README.txt"
hash = "1175dbf9cd2e7c91b1c852a51e3c0203c68484917e877465b283e2370ad62864"
[[files]]
file = "config/betterfortresses/fabric-1_19/itemframes.json"
hash = "84d7ef67262e2d524f9d0988d8fef5629866a042d363484fee44ec8c53646926"
[[files]]
file = "config/betterfpsdist.json"
hash = "371f4a25c65652f254ad563c0be8331f7aa25ffd362dcb2204edbd7bb2dc1670"
[[files]]
file = "config/bettermineshafts-fabric-1_19.toml"
hash = "d486f4672659b59f9a855d9ebce345d8a983c504d24b99613ce280db657c40f5"
[[files]]
file = "config/betteroceanmonuments-fabric-1_19.toml"
hash = "dbba9af53d8bfb9f46cb4c9ab525a72026ad0a13c36e8dd8efe7398a767c3187"
[[files]]
file = "config/betterpingdisplay.json"
hash = "d9b413555ca6e7add44924c507e5ec5dc8db060f9b04fdfefcd505e61faec0e0"
[[files]]
file = "config/betterstrongholds-fabric-1_19.toml"
hash = "2dae469f9196a363cb5e9fb614788224a713378f22300a1afd6486f1d43766a2"
[[files]]
file = "config/betterstrongholds/README.txt"
hash = "70aadca974d0adfe90f98930e23c15076b3d2e625c88e8c2aa6721d91a8c035f"
[[files]]
file = "config/betterstrongholds/fabric-1_19/README.txt"
hash = "c857bda54ab01ca5db21cfe085dc75dcbb13d26054463cf301c74023783612fc"
[[files]]
file = "config/betterstrongholds/fabric-1_19/armorstands.json"
hash = "6acaa9e03e4a127113056b77c7cc19e51492c6ee85ade944b988a25aadf76c58"
[[files]]
file = "config/betterstrongholds/fabric-1_19/itemframes.json"
hash = "db306aacbb856a3f8be39b597894ee5093cb901243b85e51b70de01b1b31ae6b"
[[files]]
file = "config/betterstrongholds/fabric-1_19/ores.json"
hash = "763cccda9bc191e51b50ea0a3eba10ff8980cc23b43dcd5d570d5850dfdd1512"
[[files]]
file = "config/betterstrongholds/fabric-1_19/rareblocks.json"
hash = "34d0eaedc64e0de618bd9e0b0ec4b65bf7d46e643533812b411252cf074e199f"
[[files]]
file = "config/betterwitchhuts-fabric-1_19.toml"
hash = "063ce4f60934ab166dade45375ef5518df74be2c6c1e1f1a52ec181013803197"
[[files]]
file = "config/blur.json"
hash = "c142e94698edc6e6f976da54e35ef518ba7ac99b276052f5ebd319280bd07b00"
[[files]]
file = "config/building_gadgets.json"
hash = "fdb69138b3054185b2024c4604889f0d258c58ecf3698a185d02c2a3b6e786c6"
[[files]]
file = "config/bwncr.toml"
hash = "4a3e5c2643b3e40f9a5edd3d540f788818dfdf382c19340393a47efefd52ecde"
[[files]]
file = "config/byg/README.txt"
hash = "716925cf1fd06d3d981aac5adbdc7a84dae30dbb64b17b0c25a8f739be01883d"
[[files]]
file = "config/byg/backups/last_working_configs_backup.zip"
hash = "0edb703ad098e96fbc9afc5d3e9aaa3009c6870cdfef4ee62cae9003abd52c64"
[[files]]
file = "config/byg/biomepedia.json5"
hash = "8fc519a8e6ca95a62903924e378efe098b3deeab6013b0fc6c84df71ff6a6866"
[[files]]
file = "config/byg/client/biomepedia_inventory.json5"
hash = "a5e9cbd9ce3331dfad0c79129d7a38fbc724806549da3087b866f784966f4c33"
[[files]]
file = "config/byg/config_versions.json5"
hash = "35a2e11aa386f03d0a9d817141c6195cdcf5182cce5193461066a1b2df6a48e4"
[[files]]
file = "config/byg/end-biomes.json5"
hash = "08f3326b9f2b62917a215b8030a3d4abff0fbe584c73f9e863c0cc988c01a380"
[[files]]
file = "config/byg/growing-patterns.json5"
hash = "2ad1c48314043f7132dea06effc1a5d817599a02c87a7e2b9a08d76f215ff249"
[[files]]
file = "config/byg/nether-biomes.json5"
hash = "e2d268934944c36ee1e7d02488c555a0a1f2f28e3152eda0fa589dd5bc2ce569"
[[files]]
file = "config/byg/overworld/biome_selectors/beach_biomes/beach_biomes_1.json5"
hash = "0e53d280eb90fb3c42f66b0ce58d4e08e638a51d676671ee5588846da14f70b8"
[[files]]
file = "config/byg/overworld/biome_selectors/beach_biomes/beach_biomes_vanilla.json5"
hash = "6dd230fc4c56de80747e8e9c55b819c30a90c04b27694111f0318f6988ca1d33"
[[files]]
file = "config/byg/overworld/biome_selectors/middle_biomes/middle_biomes_1.json5"
hash = "083c74dfff5f8541d50e6e6f94fd627e3ecc88c75c016119013039f64b6c0601"
[[files]]
file = "config/byg/overworld/biome_selectors/middle_biomes/middle_biomes_2.json5"
hash = "c987a91a518e17b95214fb7a6b7123e0dbd03733f4d4263b7089d6b0954d3d15"
[[files]]
file = "config/byg/overworld/biome_selectors/middle_biomes/middle_biomes_3.json5"
hash = "e6e5f4814231e5b973bcb84dba877bb2d5055135ef6d1d981897b0a0fcf2f241"
[[files]]
file = "config/byg/overworld/biome_selectors/middle_biomes/middle_biomes_vanilla.json5"
hash = "f78eacc414033fd7f75d1515835e6952225b9eeb8527db35927f6aba19be2db6"
[[files]]
file = "config/byg/overworld/biome_selectors/middle_biomes_variant/middle_biomes_variant_vanilla.json5"
hash = "2c98b46f5859bfad90f6381cba3072bc272ea49c59036e85d4bc19c4d78e3bcb"
[[files]]
file = "config/byg/overworld/biome_selectors/oceans/oceans_1.json5"
hash = "15eefb2eb101d0ae7e317c16607787a42da09c083cab0ca18449afddad7f69f0"
[[files]]
file = "config/byg/overworld/biome_selectors/oceans/oceans_vanilla.json5"
hash = "e759bdca66716ef1c839a0da99b2dbc30983ac49411773f67df86efc2967575c"
[[files]]
file = "config/byg/overworld/biome_selectors/peak_biomes/peak_biomes_1.json5"
hash = "fede3df921646e66623ca524260c7ec659797af3256b601cc2d59b2b72056d0c"
[[files]]
file = "config/byg/overworld/biome_selectors/peak_biomes/peak_biomes_vanilla.json5"
hash = "1d67c6d3f53e21ea538ff516c56301e334ca509b461e4d0a5cb914e48388e1e9"
[[files]]
file = "config/byg/overworld/biome_selectors/peak_biomes_variant/peak_biomes_variant_vanilla.json5"
hash = "5eb3f8ee44e14ad8ad7952bf38af861585022222c0458b5241d163adeb1aca2c"
[[files]]
file = "config/byg/overworld/biome_selectors/plateau_biomes/plateau_biomes_1.json5"
hash = "a7f8583a1fdb161bd6a5695fae701b68404297f4b84d488a28a6071a170cbad0"
[[files]]
file = "config/byg/overworld/biome_selectors/plateau_biomes/plateau_biomes_2.json5"
hash = "1e651cbb715fa60d88af9fc89092f2bca29e9ecc2ab971fb88f9f7b8ea05c4de"
[[files]]
file = "config/byg/overworld/biome_selectors/plateau_biomes/plateau_biomes_3.json5"
hash = "9b82172c1a7d1e528957f21f08c33a2ce0dc25d0d79ce45ddbfd6e450aea4961"
[[files]]
file = "config/byg/overworld/biome_selectors/plateau_biomes/plateau_biomes_vanilla.json5"
hash = "01e9ef99c0ce3d25dbd4f70244add31a7538bd844878de320cd903c74eee36ef"
[[files]]
file = "config/byg/overworld/biome_selectors/plateau_biomes_variant/plateau_biomes_variant_vanilla.json5"
hash = "efcd0e3145f0b2a9853609e0a89161da94f68bb48104cd105dd61e8eda313c79"
[[files]]
file = "config/byg/overworld/biome_selectors/shattered_biomes/shattered_biomes_vanilla.json5"
hash = "1af3e3dfc20312ec48227dec225ad4ef2922e5b5fb3e402be3e56ffae73514dd"
[[files]]
file = "config/byg/overworld/biome_selectors/slope_biomes/slope_biomes_1.json5"
hash = "64c5aedfd14d6b7a1e33a5c46b42d074c03fb2d45d7a100365f90d22ce7c781b"
[[files]]
file = "config/byg/overworld/biome_selectors/slope_biomes/slope_biomes_vanilla.json5"
hash = "49119e306636691780508164929efd5846fb03c9f2c8be13e3b7ee7406563d32"
[[files]]
file = "config/byg/overworld/biome_selectors/slope_biomes_variant/slope_biomes_variant_vanilla.json5"
hash = "115c27d732c71b6fcc7daa358607f0ae1f27ac447485f0523e385cd2f085a584"
[[files]]
file = "config/byg/overworld/byg-overworld-biomes.json5"
hash = "f4a68121c24f5cdeb58640119e24d428927af0858e756d6215b130e1375c260c"
[[files]]
file = "config/byg/overworld/regions/rare_region_1.json5"
hash = "179a4d61cf995a0d2f54a2ccd09774eb33b84080fe3ec66b154d2694016b8a29"
[[files]]
file = "config/byg/overworld/regions/region_1.json5"
hash = "f3fdb1f8ebe3959e1a73d7bd9e5d5fca5313a8b5110b6482309374d622a12a22"
[[files]]
file = "config/byg/overworld/regions/region_2.json5"
hash = "e9d107cc77c0f771458d80c4c852d19d7fbaa4eeb25cab58e866910e04843c00"
[[files]]
file = "config/byg/overworld/regions/region_3.json5"
hash = "8fcadaf16f568fcddfc127cf91f429ad100f07283b7f149e291e1228355580d5"
[[files]]
file = "config/byg/settings.json5"
hash = "69315b2ed07954afc0c887a4b1059bc4b652f36e333ac4e859f7ce35c8270760"
[[files]]
file = "config/byg/surface_rules/end_surface_rules.json5"
hash = "3515ed2d93cf2664da9548beb6871e9f059ff2fcc2d42c52e7aa84307dafc2b2"
[[files]]
file = "config/byg/surface_rules/nether_surface_rules.json5"
hash = "1c2e8e069f5b766411dabbe843d0fc905ad94785eaa111a56806e8f96c692461"
[[files]]
file = "config/byg/surface_rules/overworld_surface_rules.json5"
hash = "56b1bd278496f8fcaeb0088243a79a97fc51778b79a0635f7c641d5d261123b7"
[[files]]
file = "config/byg/trades.json5"
hash = "5f81f0eb9478dbe69cca75c97443f916c0427361b111431c66f6a9303a8f9a93"
[[files]]
file = "config/cardinal-components-api.properties"
hash = "f7e7f346e0724cf9cfb77f44dec2e7d202ea2507729ec7b95ee6a8f089c82982"
[[files]]
file = "config/carryon-client.json"
hash = "b66da6824b6141acca353406c20654ebf599c814d50da37006b2bf51009b4f2a"
[[files]]
file = "config/carryon-common.json"
hash = "d609077ec0634c218a248f1b3d2fff25096d5bc02988f51f9d2e900c07fc70c8"
[[files]]
file = "config/chat_heads.json5"
hash = "744e6977b53f264ff47a1925451f7bd7083eb6bd7bff2505980cc3e9ca4ca0e2"
[[files]]
file = "config/chefsdelightconfig.properties"
hash = "bcb8c213ca3a8458320f9656f5d05006f9154492991e12a4a072d3359fc4c30a"
[[files]]
file = "config/chunky/config.json"
hash = "c7384a22595488f79f3125b22cc175eb729267267807a084479419349797abc8"
[[files]]
file = "config/clickadv.json"
hash = "a0f067b46d7d277358db68b16409453e4dca58f90e772072ff56ac1c541aa20c"
[[files]]
file = "config/climbladdersfast.json5"
hash = "b6d29ec33be3c3dfc392795dceedc8b826700a935cc42d625bf805950712edbc"
[[files]]
file = "config/collective.json5"
hash = "600046b205e20aa3a2ff5af8a66a202c00a97b1c27a6c0675211dbe11d4c0b5f"
[[files]]
file = "config/computercraft-client.toml"
hash = "8e1af48fbafb26e374fb91793cd950e32dc4008e423267f8d2006c2350bfd567"
[[files]]
file = "config/config.json"
hash = "5364e3ee6184aabba6b1a3427111414d88e96a4c6e092584bb09565aa3f7f7b6"
[[files]]
file = "config/configured.client.toml"
hash = "e183baedd757259838b3f649be062d05638060f27d329f890626158eff4ed067"
[[files]]
file = "config/continuity.json"
hash = "00267a602028cbb037dcb0b5f803db31bed284235ca9c1ea189ad4179311a2f4"
[[files]]
file = "config/copycats-client.toml"
hash = "9c4e1c84d2cd936b850b7d69ab97e4b617e464551cc3ce44aeb0aaed4eb6c6c5"
[[files]]
file = "config/copycats-common.toml"
hash = "e797125ea26a057c78df2bb17a74d8fe7defb0539b0cd6630f38d16accc3dcf8"
[[files]]
file = "config/couplings.toml"
hash = "4f5920586003de26fcaa82dd3cf7a237e75a47237fe6f06815055cd1bfbb0c35"
[[files]]
file = "config/craftingtweaks.toml"
hash = "8830d327f96393c7952f119a69679025a5f1f21cffa278356503021d55d861b2"
[[files]]
file = "config/create-client.toml"
hash = "9c48b33b1572739579ccec3bfe6cdd46e2b4cf8adde0ce32142ffb56c5f00090"
[[files]]
file = "config/create-common.toml"
hash = "5277f5d20f0e89c4ec899ba2b906d43cd96a22e4ce37bcb416e8d7916869d4d6"
[[files]]
file = "config/createaddition-common.toml"
hash = "0e9fb570d087343fd3f4ed9998098a563f6bcc4a15e5997807ed71ed602f695c"
[[files]]
file = "config/crowdin.txt"
hash = "fadbd1094e4079597c631b59da43ea2e315aa610c47282045384e888894ecc41"
[[files]]
file = "config/cull-less-leaves.json"
hash = "6bc92f3695f35c601c2adfa1f51e9f616df379288f2a260fd1f4011c5bad50ee"
[[files]]
file = "config/cupboard.json"
hash = "08bda8a4a20d302cb97d06bf11c4991e152a3a9e04c17302ea3b42aa77e6b028"
[[files]]
file = "config/dawn/features.json"
hash = "467b0c5ba2eeacd383157b6f6a457e27a280e25b8cfc2d88c5deaba6ae4e63cb"
[[files]]
file = "config/de/mari_023/ae2wtlib.json5"
hash = "7e11a218f0d09f7c0a0d8c52b17abf7c0614173efa69adc17576f5b60ead7853"
[[files]]
file = "config/defaultoptions.toml"
hash = "3e93640912ed3a9ddf871b45ccf373d7d8db57e50bcc2798e9b7112b2e031c67"
[[files]]
file = "config/defaultoptions/extra/journeymap/config/5.9/journeymap.minimap.config"
hash = "a22e4ad7564ac12ebca61dcf09332bdcd37e2a61fc73b833e6cff902a277daac"
[[files]]
file = "config/defaultoptions/keybindings.txt"
hash = "14a6414dfd4be852f2e9bfd9af9b99765fce4464765fb7d3352c5c52a8b07f7d"
[[files]]
file = "config/defaultoptions/options.txt"
hash = "c40179c819f0ab943035db4cf40a1bf1ebabf717e6e37b65adc220b27a597971"
[[files]]
file = "config/dummmmmmy-client.json"
hash = "7aa2c2335d48794c352229e931a6af341ccfc422f111ec314e714a0a4c29cba9"
[[files]]
file = "config/dummmmmmy-common.json"
hash = "05bc246cebd1654657d894c583894f218f934b29b86ea54aac63948b3b9afc4d"
[[files]]
file = "config/dustrial_decor.json"
hash = "528b861651a393d74b509f2279b05682b166e423ed4eb3daf0dc4d66015e4550"
[[files]]
file = "config/easymagic-client.toml"
hash = "308904b6a406509136196945f604e2d7c7e3907e7d51ddd37e1d923c673f4dc7"
[[files]]
file = "config/easymagic-server.toml"
hash = "d449eee7c741312f01089d7673a1286e8dd7f1615c8ec69506103c5656c6e573"
[[files]]
file = "config/ecologics.json"
hash = "6b8db1b8c3f9dfb655a2db483db7c02972b147eb53591945b4782f9049054168"
[[files]]
file = "config/eldritch_mobs.json5"
hash = "af33568596fb06e2ab488902a390ccc5ba6ddc5b5a253b78d667d383465e4570"
[[files]]
file = "config/emojiful.json"
hash = "7eaad91440b8bec1158393c8c859edc737c3ec68fca19f6c2cc872fbd0c3a2fd"
[[files]]
file = "config/enhanced_bes.properties"
hash = "99e1317d9a8071a2f6499faddd906792ceeefc41a94379396c92d5887ea81971"
[[files]]
file = "config/enhancedworkbenches-client.json"
hash = "51ce4d3ebdb4d6b99be4b03c861bdf5d7e5a5915e8a539bcffb1b8b5f53e3647"
[[files]]
file = "config/entityculling.json"
hash = "b8a87894038f8e3fed39687928119da41553ec72fafd3c6b98e39efb62ac6e7d"
[[files]]
file = "config/equipmentcompare-common.toml"
hash = "5c25616fa129e466171bdd7e0ff8fb0029eb21f426490ce19b73464a93e8edcf"
[[files]]
file = "config/explorerscompass.json"
hash = "3c9e39e4d6a36db5d84e4b1eae822eb54840418fc5dfcdda972443c3e49075f9"
[[files]]
file = "config/extended_drawers/client.properties"
hash = "fc2d4199da1768bf5c87da40d49a45515041c9b3b18e70231a6a51d61c15e8a6"
[[files]]
file = "config/extended_drawers/common.properties"
hash = "ba1ac3667e5275bb36bd7709870aa0e97bffb6c1772a30b3592e46e6af392081"
[[files]]
file = "config/extremesoundmuffler.json5"
hash = "0ecb5af5bc23996d08866c4eb9161eba3ed218c19e6fb5d60677159c55843b31"
[[files]]
file = "config/fabric/indigo-renderer.properties"
hash = "81610675c16eb7338efca619773e15cf9cb9fedad2a8c54b5cab213c22a39172"
[[files]]
file = "config/fallingleaves.json"
hash = "5d596140fff59c6c9d840043b7967245fa200829deb3ff06f705c6ec7e19081f"
[[files]]
file = "config/fancymenu/config.txt"
hash = "dc5c04f410acdf5d91cc899197db7fbd98c4a3402849e04526479301a88bbdd5"
[[files]]
file = "config/fancymenu/customizablemenus.txt"
hash = "0791802f8643f6ead2dbeba30abced98af74fd43205705e308c795cd4e565b28"
[[files]]
file = "config/fancymenu/customization/ingame.txt"
hash = "d84d8d8508afe54bef89f13caf31b43b073a46b0691dcfdae120604998f2a277"
[[files]]
file = "config/fancymenu/customization/statech_mm.txt"
hash = "ff60de913262ef884210980098bad43aece6b79ceef3ad5f9c1ab1113656afad"
[[files]]
file = "config/fancymenu/debug.log"
hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
[[files]]
file = "config/fancymenu/discordlogo.png"
hash = "92af71f836c780c5880dcfd55a9061cd928d702806b503530debc1f983c51308"
[[files]]
file = "config/fancymenu/locals/de_de.local"
hash = "13485f1d678322a328e798c34f1ff9f7f9c690464d1050e2e7c1ea02b0f49b61"
[[files]]
file = "config/fancymenu/locals/en_us.local"
hash = "b0d171d4b61ec85b02e1f1e30a1cdc299ce5f5236dbad01689606923d99ca4cb"
[[files]]
file = "config/fancymenu/locals/pl_pl.local"
hash = "66d4e9b270d4d92bffd85b13255def475d3ff6c865965deaa700be2ed1b08bc0"
[[files]]
file = "config/fancymenu/locals/pt_br.local"
hash = "0b19fc1d8bd8c86435eb39886116aceb3b4554fa749561fc87be2df0157a134c"
[[files]]
file = "config/fancymenu/locals/ru_ru.local"
hash = "2120cd2e1de7d8ec9ee8d18f24db70645e92042ba55ffbbc68403ecdc8a50fce"
[[files]]
file = "config/fancymenu/locals/uk_ua.local"
hash = "c9a592ff8445f3d8d6a87a59df27e72a67b71afcf0fc03dad27a5ded2f94a780"
[[files]]
file = "config/fancymenu/locals/zh_cn.local"
hash = "50cf30919fd2c7b11f6ce246425d657e3b93dfb919a0b6fe4730dc5d9fee0d2a"
[[files]]
file = "config/fancymenu/menu_identifiers.db"
hash = "003a1c89846741e0eb9475089d4ed653896fd08e0b994667fae452b4ad894a72"
[[files]]
file = "config/fancymenu/minecraftwindow/icons/icon16x16.png"
hash = "1822d9090ecfb277cd21435d00ab4dbc2c182a4b8a599527253bebf8618af6a9"
[[files]]
file = "config/fancymenu/minecraftwindow/icons/icon32x32.png"
hash = "436b7cfd7e766baa237990b0294acf5a1052978243870b7bcdd8a177bb293d81"
[[files]]
file = "config/fancymenu/mm_logo.png"
hash = "0f204550a99aabcafe213b02d22ff2dfb6724ad12354bbcc4f9c17e74188316f"
[[files]]
file = "config/fancymenu/panoramas/statechpanorama_01/panorama/panorama_0.png"
hash = "3dddf36c36f99f59f4bf481887665aaccc67eeb5440e14b448733dbf2133d9a7"
[[files]]
file = "config/fancymenu/panoramas/statechpanorama_01/panorama/panorama_1.png"
hash = "da84325aa0e8feb6dcf366205ecce012e51fc89e4feee8adf123348c0ea9a304"
[[files]]
file = "config/fancymenu/panoramas/statechpanorama_01/panorama/panorama_2.png"
hash = "561a8eb5c8ebb045870db932d02146dd27afff680ba35fbb1f97b948cc1831b0"
[[files]]
file = "config/fancymenu/panoramas/statechpanorama_01/panorama/panorama_3.png"
hash = "3cb78c8afb3be7cfab0bc08405b9c03ccaf2abbac1eca5e73fa8bd0f69e6d3d8"
[[files]]
file = "config/fancymenu/panoramas/statechpanorama_01/panorama/panorama_4.png"
hash = "b1676e22b903d0cd673c49efc5f8a369e2e8d3441a4e7e98f5ebf168a9c68143"
[[files]]
file = "config/fancymenu/panoramas/statechpanorama_01/panorama/panorama_5.png"
hash = "129b572f73c338021c854e914d52daf9bc69669665d43f7af6c7a95bdb00c648"
[[files]]
file = "config/fancymenu/panoramas/statechpanorama_01/properties.txt"
hash = "c877aadff771b03295d9f6c674b0c3d6828b80ca4fac6b617f78d9c6ab4b679c"
[[files]]
file = "config/fancymenu/user_variables.db"
hash = "d2d55a621e0ca0765db2ffc20084e053b090e9076516e83b88a65b57a6d33557"
[[files]]
file = "config/farmersdelight.json"
hash = "050ba20fca66274c6f8d408a07da0c91a9b30f54a0023639ebcb21bda5c0aa5f"
[[files]]
file = "config/farmingforblockheads.toml"
hash = "4382209758cf7effb3facb12429158afea0b300d2ead91896be849f48e8003fb"
[[files]]
file = "config/farmingforblockheads/MarketRegistry.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/ferritecore.mixin.properties"
hash = "647c97bf8ba08a082324b85ed87ae43356109953b4140fe57847cf7b97448ecd"
[[files]]
file = "config/findme.json"
hash = "4e0913a2fef137b2ba6345a2ce3e6104fb0872efe194c5eb7cbb75782b933fc6"
[[files]]
file = "config/flywheel.json"
hash = "aa84b01d7366b116d590d52adff2acef9212f9395eb53e9db9fa9090c6a9b02d"
[[files]]
file = "config/forgivingvoid.toml"
hash = "0389876ce595c84887e978f921dd7722ddef99cf4c3de0a5f7c1eab5864aaa59"
[[files]]
file = "config/fpsreducer.json"
hash = "b5ec902f480d0237607e75a469fa700594296045d89f9ddef790c54783b070e7"
[[files]]
file = "config/ftbbackups2.json"
hash = "2dd06bc0a5ebefeb7b405b4e71a7108dece08df92b366d3d5da2da5c9978b0d0"
[[files]]
file = "config/ftbquests/quests/chapter_groups.snbt"
hash = "cd5dc10fac4aa98d87c2d38ffba75bb1c96cfd8d8c334d17594c128118c46f15"
[[files]]
file = "config/ftbquests/quests/chapters/1__stone_age.snbt"
hash = "851226d5d7632c8f85cde7dd8ad70985bffb3307f6757f1ffb9163d309d5df38"
[[files]]
file = "config/ftbquests/quests/chapters/2__the_steam_age.snbt"
hash = "297ec70fb68a80407fc1347a85e0b0e7a9e10c14fcd84a0677c1c90c6f66d184"
[[files]]
file = "config/ftbquests/quests/chapters/3__electrical_age.snbt"
hash = "83386a29168e3b5133cfc4b508b4905c495384dd5b0242af4759603dcf4fe88d"
[[files]]
file = "config/ftbquests/quests/chapters/4__digital_age.snbt"
hash = "ca057fe081c22aaf101a20b8b508d1efdd1882c9963d93e9bf8802fe6f8635f7"
[[files]]
file = "config/ftbquests/quests/chapters/5__nuclear_age.snbt"
hash = "c58b0c6053886c423b7f4f625d17d636254237c2507af182e90ae926f8b92a7a"
[[files]]
file = "config/ftbquests/quests/chapters/6__quantum_age.snbt"
hash = "32cc1520d4e9a2a0ebe639ff4e36ed57f689183e1de34b3e85936a90268bd710"
[[files]]
file = "config/ftbquests/quests/chapters/artifacts.snbt"
hash = "c97d706c560c57e157ba9af3e77fda74360fa51f6aab4092a1393e363fb74515"
[[files]]
file = "config/ftbquests/quests/chapters/create.snbt"
hash = "2404b04b3100c93d4b99df5fc6cca5649be437147ae4bb063560c5bcb087de10"
[[files]]
file = "config/ftbquests/quests/chapters/food.snbt"
hash = "8c91d7b917d5c415012adf93c6d35a41a731b00bc351cf392e7bd74afee32100"
[[files]]
file = "config/ftbquests/quests/chapters/spectrum_turn_to_purity.snbt"
hash = "7030b121e1f2cf8e92c61a089e4c0614e9ee2d420846a67af1a3d6fbcca69c9f"
[[files]]
file = "config/ftbquests/quests/chapters/twilight_forest.snbt"
hash = "f7cb113780c65f050b5c03fa6b0d3ee29c1d18c929590951fe1342cc7d6ff45a"
[[files]]
file = "config/ftbquests/quests/chapters/utilities.snbt"
hash = "08f39ae7d3847516aee179076021bf2654af6b3be9089432e2f2381c798e50a4"
[[files]]
file = "config/ftbquests/quests/chapters/welcome.snbt"
hash = "fdc11c04a783fe066a4528817b8774acb242d4e7ef37feedaf495c92a7a241a9"
[[files]]
file = "config/ftbquests/quests/chapters/world_of_magic.snbt"
hash = "aad5fa1af7425d9f7b89a35f0286bb0c6e0a86b360e8d7c9d7d72ca89062f11f"
[[files]]
file = "config/ftbquests/quests/data.snbt"
hash = "0e644c7b2ff625d73e90e78f254c49307fb36a13b85cf856bce33b3245b58177"
[[files]]
file = "config/ftbquests/quests/reward_tables/chapter_2_late_rewards.snbt"
hash = "12700942a0551031f11823c79ac5c4bc9b18246150aeacaa9cf9819b334accb8"
[[files]]
file = "config/ftbquests/quests/reward_tables/chapter_2_rewards.snbt"
hash = "3d4a46af575bbc371d45bdcb5808427409db39d4ca43d66715215b5b8b206127"
[[files]]
file = "config/ftbquests/quests/reward_tables/chapter_3_common_rewards.snbt"
hash = "f142da48480e50b0ca6c02c7bf8dbbfe22d59c2b0652219c44a088d4d1490e2f"
[[files]]
file = "config/ftbquests/quests/reward_tables/chapter_3_legendary_rewards.snbt"
hash = "cedd87ff9c4613099df8d4936e1272f59d2e7754c345373c12e4179f95a6d83f"
[[files]]
file = "config/ftbquests/quests/reward_tables/chapter_3_rare_rewards.snbt"
hash = "e1b3a3735064ea15b89399dddabfa92f842d193972921a9524cdf41b9d4d49a0"
[[files]]
file = "config/ftbquests/quests/reward_tables/chapter_4_common_loot.snbt"
hash = "1a13d838cb619b181e1c15ab547374ba00fdf219d84852b131bdbd327ef4e232"
[[files]]
file = "config/ftbquests/quests/reward_tables/chapter_4_rare_rewards.snbt"
hash = "13cf40eb5ce80c9aaa5d18048a5bf5dd9f55cfb131bd36ba1a31cff481c53c43"
[[files]]
file = "config/ftbquests/quests/reward_tables/chapter_5_common_rewards.snbt"
hash = "60301b4ebcc38b2c0c0f191675b0d3e8e9929e4c3f14443e6992d83b7c424969"
[[files]]
file = "config/ftbquests/quests/reward_tables/chapter_5_rare_rewards.snbt"
hash = "3547864c2a1252acf0bb0ff74e7d63eee7fcddd04807610ee0fec7bed7ede76f"
[[files]]
file = "config/ftbquests/quests/reward_tables/chapter_6_rare_rewards.snbt"
hash = "bac75ee87cac439a77a673f2742756cafcaf56d19247f0d49c263489d07d397e"
[[files]]
file = "config/ftbquests/quests/reward_tables/common_chapter_1_rewards.snbt"
hash = "31d78a51233842a11a5c232c086331d4d50a4973e0abfb912ec784fd1423f34e"
[[files]]
file = "config/ftbquests/quests/reward_tables/create_chapter_1_rewards.snbt"
hash = "dd63f458b0c8b03e46e71f618fe32275333de15915559e11e0ddc99c2113ed9a"
[[files]]
file = "config/ftbquests/quests/reward_tables/spectrum_basic_rewards.snbt"
hash = "3d80039d34b0e60b4cb3000d1f8cc8e98ef8fdfac87319d4b0aacb9426d11e5b"
[[files]]
file = "config/ftbquests/quests/reward_tables/spectrum_legendary_rewards.snbt"
hash = "19cfe101ae53cb99b56875a3402527d10bf7165a8d113015bc14498653c04929"
[[files]]
file = "config/ftbquests/quests/reward_tables/spectrum_mythical_rewards.snbt"
hash = "e970d88143b0a34463be1a7acebd08421904221fea10ed8e99236777e560ab29"
[[files]]
file = "config/ftbquests/quests/reward_tables/spectrum_rare_rewards.snbt"
hash = "a921652956582b3a980528d0965b20e8b58f980d3c299e8c2cb8ed3cac9d38a9"
[[files]]
file = "config/ftbquests/quests/reward_tables/sword_choice.snbt"
hash = "bd21ba06e0fe19b773493123814a393a3449784ea31dbe4028b7646c183a4a6f"
[[files]]
file = "config/ftbquests/quests/reward_tables/twilight_forest_rewards.snbt"
hash = "6187743c50f9055476dfac393a4c8bb9f99cc1e34e452b5b4c67cb5ec839e1a5"
[[files]]
file = "config/geocluster.json"
hash = "d8d0dcc4b4405ce727efa98bd424e94779db1b389a4648e97341448d8a10fd98"
[[files]]
file = "config/geodes.properties"
hash = "920ba5bb1716108870ce9949a867e8bddc438ab46cc1b081751af4aec08ac2d7"
[[files]]
file = "config/goblintraders.entities.toml"
hash = "fbe72d0801bc963b733c8e70d9ad29f81f56095087cb928232a40e6d39e0b015"
[[files]]
file = "config/guardvillagers.json"
hash = "fafe46cca2462296a4e37111db77ed8f8fc4e8078bbcaa04ce2785049bdc8552"
[[files]]
file = "config/healthoverlay.json5"
hash = "9d60721aa76f0974fcb6a8bf73b074ece68efd89fd9be03856659049053c1f7e"
[[files]]
file = "config/held-item-info.json"
hash = "af8ffba8ffad463d8f1ede4af1c294f1d1913af23fdc7039abe22938a633f708"
[[files]]
file = "config/herdspanic.json5"
hash = "5c9b756762276bf9478ed1edb3d958579c99bd6cda0c8c876612cf04e19987a1"
[[files]]
file = "config/hookshot.json5"
hash = "a51633be8b8bf8cb5a1684ae4645b704141939532a43213d91cf96683396157e"
[[files]]
file = "config/idwtialsimmoedm.json"
hash = "8e8b26ec2002201e7fa5a050a398c2849703baf1fe133c22df4f06bcc6b234e0"
[[files]]
file = "config/indium-renderer.properties"
hash = "7779e59973a166089759931f706ee3894ee584e9812342d68ccaf10399b2ff72"
[[files]]
file = "config/inmis.json"
hash = "6ec368f6f3af7754228cc717c66ff5bc50cee4e53b7d107eebf5be04358b3caa"
[[files]]
file = "config/inventoryhud.json"
hash = "e47711cf281d17244a31b3817f7ef3031af48fbe501a5016f1f4f4fb53e1f5b4"
[[files]]
file = "config/inventoryprofilesnext/New World/prev-villager-trading-config.json"
hash = "d8159a94fc4562651a5c47dc83e46a7fd71dd70e143fca53d7b288393a87b4ef"
[[files]]
file = "config/inventoryprofilesnext/New World/villager-trading-config.json"
hash = "d8159a94fc4562651a5c47dc83e46a7fd71dd70e143fca53d7b288393a87b4ef"
[[files]]
file = "config/inventoryprofilesnext/integrationHints/ae2.json"
hash = "9e20c2ca2dbd1a0cf159dc97a2a522dba0d2d9e989fe4634229a124e69b085a1"
[[files]]
file = "config/inventoryprofilesnext/integrationHints/exampleIntegrationHints.json"
hash = "ca413dea02cce69c69dccdc525fb0ec013236876eff2d142772c68db3d772d3a"
[[files]]
file = "config/inventoryprofilesnext/integrationHints/player-defined.json"
hash = "bf9e9cca6ac27946f2a84c1829fe0f7e35a3902c1f46b0b9a6a1542a272f76c6"
[[files]]
file = "config/inventoryprofilesnext/integrationHints/supplimenteries.json"
hash = "b12bd54d419b9277485a1c8612019107ed52b57951ae2df23f1d741db62736bd"
[[files]]
file = "config/inventoryprofilesnext/inventoryprofiles.json"
hash = "e83b796a65b0e6eaaad8994d4d472ab828633e42a49c1baca64472bccf0d1971"
[[files]]
file = "config/iris.properties"
hash = "d60fc9c5516c8c49f4520ede88f4446c2737f52f92039254b9542047d06aeb33"
[[files]]
file = "config/ironchests/chests/barrels/copper.json"
hash = "1656c74e8a818e08a31ddc7b7a5cf9034c7af09b55e2ca600e4c333eaebafcd2"
[[files]]
file = "config/ironchests/chests/barrels/crystal.json"
hash = "a6039adab0d88505073ea5617b8fd67c3f85b1ff7f471a058c8ceddc18c5d063"
[[files]]
file = "config/ironchests/chests/barrels/diamond.json"
hash = "fc9ec99587b4ed5f65a75b28b02f3eed5296094506679ecbd27671e13d28fc7a"
[[files]]
file = "config/ironchests/chests/barrels/gold.json"
hash = "b7fffdb3473e942727d28da3ed6ae8daae8e1f6836badc3a62791eb6d8a789c1"
[[files]]
file = "config/ironchests/chests/barrels/iron.json"
hash = "3a8d6c9efc0b3386b43599d46fee11683aeb72bf8a2b19dfd82e0f6aeca6e2f1"
[[files]]
file = "config/ironchests/chests/barrels/netherite.json"
hash = "bf8debc11c60cb40f1d4e835d30299c9b112ac8f8add16cd27fa54dfe624dfbd"
[[files]]
file = "config/ironchests/chests/barrels/obsidian.json"
hash = "89bad28248f2ebc766a8b4dab5121c3c1495bf3cd923aa56868e52bc6117048a"
[[files]]
file = "config/ironchests/chests/copper.json"
hash = "149139cdbd771af3b1ac43f4ed113d161c61252eb017bb6a2b4e84217d2eae4f"
[[files]]
file = "config/ironchests/chests/crystal.json"
hash = "8a3ce2f0d0b8c5c1925008088757e34e7881acce1ed526c3d6ba5b5365a4e33f"
[[files]]
file = "config/ironchests/chests/diamond.json"
hash = "eca403a7f738a0b998dc7ad9e37e945c8c92b37c0f48404bc8c955cf19e18846"
[[files]]
file = "config/ironchests/chests/dirt.json"
hash = "022f7e089ea5d1a584599f97039da53891f69355ec30f7b8f67580132cb92b49"
[[files]]
file = "config/ironchests/chests/gold.json"
hash = "f44b6efb34eaea62d6ba9c28fe8deae09e48bdb8dfa6e7cd7d64a16e14dde8de"
[[files]]
file = "config/ironchests/chests/iron.json"
hash = "13faa8428477b12cf97f40e634f09aeceb2b33ff7716bc1f8b0c76cb121a5239"
[[files]]
file = "config/ironchests/chests/netherite.json"
hash = "8af4ff52a38624cc10403bdc5e4f769c1f2c9e0776131964d7f35d279412d2a6"
[[files]]
file = "config/ironchests/chests/obsidian.json"
hash = "f9dfd6f86509750e326c6dbc36f21734e0cc4b4f57b07a44e209b0d47f0f462e"
[[files]]
file = "config/ironchests/defaults.properties"
hash = "d3c833b9a615ebd49101039f4de4ac6ca4198cea05bc79e790015915761ec543"
[[files]]
file = "config/ironchests/upgrade_types/copper.json"
hash = "404ef22ef2db426a552212f4f86bd624515462dba78bdfb3e00228ea8a9e4bf5"
[[files]]
file = "config/ironchests/upgrade_types/crystal.json"
hash = "8b09bcacf29c9eaac0f4fa12387c0cc1bf594d0d4496b8bf5a6e15584647b90e"
[[files]]
file = "config/ironchests/upgrade_types/diamond.json"