-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.toml
1584 lines (1233 loc) · 50 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/SeasonHUD-client.toml"
hash = "e1629dea88e07f5d6c9cd18ca29e9d1ad2d4e70b60cda34f160f62d321bb4b38"
[[files]]
file = "config/alexsmobs.toml"
hash = "dddd4586a1d88d1e530b8d5bb7ec52f687b8513358c501a21859378f168b3df8"
[[files]]
file = "config/aquaculture-common.toml"
hash = "ba8f83a21789a7d360fc90a43804153385929c4e3d931a600a8bd94714f24c6c"
[[files]]
file = "config/artifacts/client.json5"
hash = "dfae4a12bf924a5e12380032ff257ec535c6b003fef539a3893adb05c0a69c56"
[[files]]
file = "config/artifacts/common.json5"
hash = "36652c53cc1ed18e044e3308fc31adda9b14cca3aa96dfd3161363bba0d2e85d"
[[files]]
file = "config/attributefix.json"
hash = "32784fb97639a2af5cef9eae3b47b76b376b8ff5024e31f0b1dac56ea6694c95"
[[files]]
file = "config/bcc-common.toml"
hash = "21c4f27847bed77b4d13a42ef09b5cfab4ff7f308b8154fc12d09324a3771245"
[[files]]
file = "config/betteradvancements-client.toml"
hash = "7bbd0951db62dcb3b9e02f50b4ba38836326f5d9eab9feb6450178d2488851be"
[[files]]
file = "config/bettercombat/client.json5"
hash = "5799487096d9929cd1970c4acadb99106e32078ae797507c26a5d2746c7fe299"
[[files]]
file = "config/bettercombat/fallback_compatibility.json"
hash = "3569bdfa5257b3aa1677174e87b01445a4a29d85e55a25fadef9830ec50d4ab3"
[[files]]
file = "config/bettercombat/server.json5"
hash = "a4db6db1e9e955060f95c0f02a8c95ae3d5ead7058cd2259a97f5826ef3f1ea6"
[[files]]
file = "config/betterfpsdist.json"
hash = "a924ca8fd82b05bc1150b3df38d560a2733b347fc65751a666614db498b4484f"
[[files]]
file = "config/biomemusic.json"
hash = "b1fa8d4bb2d7d1bede7cd1a3aa7fd0cedef33f9ac62e74d1ee17c68bac412423"
[[files]]
file = "config/biomesoplenty/biome_toggles.json"
hash = "8bbea3dbb8c9fb3989c9445346d3780bee9c4bd6ea1a28512e587631bd78748d"
[[files]]
file = "config/carryon-client.toml"
hash = "5e22bc1810bd2c7aaa6d313664562b3b2ddbf2661481d0ca0f84d83cbd509f8c"
[[files]]
file = "config/carryon-common.toml"
hash = "7f67de3a8a0d7a1de5bbaeff574649cdf35a7e247ca3155c74cffaa72e6a5221"
[[files]]
file = "config/cristellib/minecraftED.json5"
hash = "76da5f02ff34487c2e3b61624f5d2c1d32b39a0713a44d96fbf3d47142264ae0"
[[files]]
file = "config/cristellib/minecraftP.json5"
hash = "8fe09b83f2fe6bf9d547e99b8d883aef42bf3d9e2e6f5bd43ec3fcd4c7f756da"
[[files]]
file = "config/curios-client.toml"
hash = "30944ecb7be4bdf7d4f6fc8fac89e93a035b8b412486965afa0948ddbd245f8e"
[[files]]
file = "config/defaultoptions/keybindings.txt"
hash = "eb9fdc4bfa6c1a029f6f3c87700cbd4d86aa5c45a9e54ecab250e60b65b69e17"
[[files]]
file = "config/defaultoptions/options.txt"
hash = "4272b52197fa0e95055a46e19d04127b3ce73ac591c567981bb4d690d6ce4823"
[[files]]
file = "config/defaultoptions/servers.dat"
hash = "bc836a4d30225b5a5e69ec560792604e258ba18ae32bd4c474b9ffd58d862637"
[[files]]
file = "config/ding.toml"
hash = "218de4d46188c75cd052b9ba06612426276cd3ce8e0c7e7709b07b5def8ca88c"
[[files]]
file = "config/dynamic_lights_reforged.toml"
hash = "f6147b74ba0d4f0da7154703623a690f90afceb39bea3217f76e45e7ed08eed4"
[[files]]
file = "config/embeddium-options.json"
hash = "944b179e724228f7c62c6f81085ca43a637907b57d257ce0f4f3b79fde32b222"
[[files]]
file = "config/emotecraft.json"
hash = "2fa623d32f4875832b34c7464d53a9686701ba0457336e9b008fcf40bd9e3411"
[[files]]
file = "config/enchdesc.json"
hash = "0ef70a95ec5f5890fc40040926b546e5689044b3976a497a2b1ef91436a43a7f"
[[files]]
file = "config/fallingtree.json"
hash = "e44a0a5754924bb218ee2bb227986dc44a7cb1fe4d992b953d2ce7f7892878a2"
[[files]]
file = "config/fml.toml"
hash = "c5907202de2419f6ec03902cac29189a3e394aa90ea497eb825af8437b8a7cc3"
[[files]]
file = "config/forge-client.toml"
hash = "3e35b8b0434d8bff1753c04eca38a50f9e4deb1eeee5b582dcc8262be1913947"
[[files]]
file = "config/fpsreducer/fpsreducer-client.toml"
hash = "1c3ade413ad1f0c5cf1c477d145bf7e3b733b18fad24c695267faa4ac37fdd31"
[[files]]
file = "config/friendlyfire.json"
hash = "5205ced50f3522f225fb1502421784485b88b92794c9ce074a47edb78ecf99b4"
[[files]]
file = "config/inventoryhud-client.toml"
hash = "6178cdcf0b4945ea0767101c0faf66aec3257c569220bb142bc2e4b5024a9362"
[[files]]
file = "config/inventoryprofilesnext/inventoryprofiles.json"
hash = "39b3a9e93665870f16f0b74bea76926945ffb94fa6d8e28b999b747190f6f000"
[[files]]
file = "config/jade/hide-blocks.json"
hash = "e4dde5e11feb6bd0ded5b5e3c8821b28adc4d368e47046846d2a3ec37ffe8a50"
[[files]]
file = "config/jade/hide-entities.json"
hash = "38975f3f3c25a40c905172a9ccde5489946048173d6173967f37aadcf602455a"
[[files]]
file = "config/jade/jade.json"
hash = "2e3eb305e5bc1a56130635a366232eb8277710f5670c50120749da0f1ae82a3b"
[[files]]
file = "config/jade/plugins.json"
hash = "f5f03af32eb50a2278cde8377229624725f166617c93e71fc556f63a770eeba6"
[[files]]
file = "config/jade/sort-order.json"
hash = "7f87c5403770650d2a0f6fbfc278edd162aac00b2502f93d13dac5e7fdbfaea5"
[[files]]
file = "config/naturescompass-common.toml"
hash = "5ef9716928a4714caf0f0385b4a520482fc8fcf5036a1989b460577f95b986a4"
[[files]]
file = "config/nomowanderer-common.toml"
hash = "729edf0eb31c8942a72bb66e1a3aede865f7aa8b1785b96d5139d6b21cba7612"
[[files]]
file = "config/oculus.properties"
hash = "f3bdc28bd9ad09894a76f04df3166862e910ea280b02bc4c20d4dff50f12939f"
[[files]]
file = "config/openloader/advanced_options.json"
hash = "be5b62e698aa1dd0eecc014b8148b1410a01fa0d60f6ede2b14986e8bb587811"
[[files]]
file = "config/openloader/data/RAC-Functions/data/blessed/functions/tick.mcfunction"
hash = "b3f1db8b77b0e658e471af937704967fd5a176b4730981a24d02ff8ee294cc96"
[[files]]
file = "config/openloader/data/RAC-Functions/data/minecraft/tags/functions/tick.json"
hash = "9911a5fe731f01756d7ca9989d641541719087dfaf173faf122694de27563af6"
[[files]]
file = "config/openloader/data/RAC-Functions/data/rac/functions/add_mending_trade.mcfunction"
hash = "6158b9afcce59dceab5cd59774805db13f1fe76e5f1bd4d37eb73092bbfbb14f"
[[files]]
file = "config/openloader/data/RAC-Functions/data/rac/functions/wandering_trader.mcfunction"
hash = "b9b7d395e97b8bb7bed9a5b6e184e6de1a2797bcdebefaa14a7ed3eaedd14c1a"
[[files]]
file = "config/openloader/data/RAC-Functions/pack.mcmeta"
hash = "64676a357fcff681c24147aaebed7eb453d8a5b9848d1158648c13b742e26e15"
[[files]]
file = "config/openloader/data/RAC-Loot_Tables/data/artifacts/loot_tables/artifact.json"
hash = "77deb615971c41f7980ac2aa267b75806d82e0784cac14f4889ac20c22dbc0b2"
[[files]]
file = "config/openloader/data/RAC-Loot_Tables/pack.mcmeta"
hash = "10e620a78860a4409b9e49af7e61febd0d25ec679543d1d0ed7c28f4e97f9dc0"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/alexsmobs/recipes/dimensional_carver.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/aquaculture/recipes/diamond_fillet_knife.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/aquaculture/recipes/gold_fillet_knife.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/aquaculture/recipes/iron_fillet_knife.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/aquaculture/recipes/stone_fillet_knife.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/aquaculture/recipes/wooden_fillet_knife.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/create/recipes/splashing/crushed_raw_gold.json"
hash = "97406e29836a9a890908f147dee63be2cc767acc6e0b58af8be10d142c841fa2"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/create_enchantment_industry/recipes/crafting/enchanting_guide.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/createaddition/recipes/crafting/barbed_wire.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/createaddition/recipes/liquid_burning/biofuel.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/createaddition/recipes/liquid_burning/lava.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/createaddition/recipes/liquid_burning/plantoil.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/createaddition/recipes/mechanical_crafting/tesla_coil.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/createaddition/recipes/mixing/bioethanol.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/createaddition/recipes/mixing/electrum.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/createaddition/recipes/rolling/brass_ingot.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/createaddition/recipes/rolling/straw.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/arapaima.json"
hash = "5563c5355a2ddb81c44dcd6d0cc68fc72ea8f4fbd1b1f59d86b9bb2e15f0732f"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/atlantic_cod.json"
hash = "e8699271a9d4000ac26b18fe7583bcfc4c33740d788b0280821c3410ac6ccd4b"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/atlantic_halibut.json"
hash = "0878aa0cf230d4aff2abee014640068341d57a0c07e5b500b0f56c43530c31b4"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/atlantic_herring.json"
hash = "f7f804a93a3a9e433a45d4c0aa79412252d8583413f6f938f9124b7eee070a4f"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/bayad.json"
hash = "5e63a8875d327b979e11c4289a20e19fafcb6e2fa52f3f398aa2e965c8bddb58"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/blackfish.json"
hash = "25f15052acc2d348f17680ec9cb3a4b178129b495a2afc20a4df7a904d711a83"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/bluegill.json"
hash = "ccf89d5495dc37fbd1845118f9b219b8db6db39cb23caca47fcd36f6b91b4bfe"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/boulti.json"
hash = "8e18ab2d27f827ef5e41e3cc0c1840777c389c8c58132ee056503af7a2d0e7ab"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/brown_trout.json"
hash = "7873b21fa43bba9ce326b7ec638b0eeb084b70538b63e49ececab40e43fd3564"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/capitaine.json"
hash = "9f861c50faa294ec2bd1184e781863921b30457709608324937bf22c13dee74d"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/carp.json"
hash = "e51b83b34e94112a119928964a9931bad62b3f2607481370b48886dc17e5955e"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/catfish.json"
hash = "c1e9f153462cf55a8fe8f8d656b5586d7da170c33538d8cfb7711032c556cf8e"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/gar.json"
hash = "c86506297302838c0e8154e1a383794a81d2e0910fb573ebf1c04cd714d9b422"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/muskellunge.json"
hash = "0bff87d12fa00b02248e687dc822a6b34a95f14b57c7dc3bb22859d78549b125"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/pacific_halibut.json"
hash = "413c46ebb6f245d5c632b77229c8b60d79a742baae01679fca58460b9f96750f"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/perch.json"
hash = "32097f8c1339a02938ffc08ee4912c4e453f8d2e35d21111f0c137b61af3a562"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/pink_salmon.json"
hash = "fdb6aac5eb412c8b7c45e4df0074a4a13e97e692aca6270e207f5280b5bf601f"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/piranha.json"
hash = "09c3964c0e63f71d49fcab5d86637d53050e42b7c7d45ed8ccf170c19ad5a147"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/pollock.json"
hash = "011d19a510f2a398c55423938c550b4d77f2f7a68fb7208ec8bd323099ea018e"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/rainbow_trout.json"
hash = "b54b298f70994e2e91f0652be6eed9f93153822343bba598bcf599909d0d4166"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/red_grouper.json"
hash = "22feb660a948eee6760ef3a7aca2fd3213ed6f81bd96c275fe37f1fda4196cdf"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/smallmouth_bass.json"
hash = "a8108905a506637176687ad5848633540f77100271db3a4af53e3bec6369828a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/synodontis.json"
hash = "10b76950e589c543d3306ab206d23179e77c058021d0431e2c4d1dc52ca54f5d"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/tambaqui.json"
hash = "697b5e8f8c208cfdde72d156484b27c26380d8f376ec0c169893ffc4980812cf"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/farmersdelight/recipes/cutting/tuna.json"
hash = "ebc55a47f34ff8abb994b11da94390332451ceec7fb1c792116f64c7b2e96128"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/minecraft/recipes/bundle.json"
hash = "dce403e9ddb4be0236b565b6ab4b3ddbf4d340eefc88c8bac862742d40be77b6"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/nethersdelight/recipes/diamond_machete.json"
hash = "666c2fe688978c3e8cb60d9d59ef402f4e297d8a2432f2992bcb801e0248f620"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/nethersdelight/recipes/golden_machete.json"
hash = "f8f39c7eef0e5a489898425f4b231700a27fde3d3aa6fb29dfdab49c08f817e7"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/nethersdelight/recipes/iron_machete.json"
hash = "c22c8eee90bb466ce361deabcee5ecc41ac934558bd175917c508e796794e44d"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/nomowanderer/recipes/trader_cloth_piece.json"
hash = "93d20f0ea00f3226df3cbec56c2ced220142f0a4e4225429dcc32473caab38ef"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/omnom/recipes/candy.json"
hash = "938e1950955c77fbc158d71d9e352e7c06ef7d78779247f21c4ac1ae148187dd"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/omnom/recipes/omnom_item.json"
hash = "f502b12c51415c1136df8f83a97c58d36ff08d91b051ee8e6433fd8f587e7fbd"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/sophisticatedbackpacks/recipes/diamond_backpack.json"
hash = "df7304f31f9087d19425678da4689cf7a30c8c7e6151ae10c80aae1760505c9e"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/sophisticatedbackpacks/recipes/gold_backpack.json"
hash = "52fb4f3da4b55d74d54e104ab7af3c391729539b9a835cbf74432b6a5246bc16"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/sophisticatedbackpacks/recipes/iron_backpack.json"
hash = "b80702306e25db54195c46cc1028c04b8265ad5e9578749216c847ef96773ba2"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/sophisticatedbackpacks/recipes/netherite_backpack.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/supplementaries/recipes/quiver.json"
hash = "3e088d884891a563bf0826be603ad676d640b2d8135ccae4a1d1a5a0d71b310d"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/waystones/recipes/bound_scroll.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/waystones/recipes/clear_sharestone.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/waystones/recipes/mossy_waystone.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/waystones/recipes/mossy_waystone_convert.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/waystones/recipes/portstone.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/waystones/recipes/return_scroll.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/waystones/recipes/sandy_waystone.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/waystones/recipes/sharestone.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/waystones/recipes/warp_dust.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/waystones/recipes/warp_plate.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/waystones/recipes/warp_scroll.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/waystones/recipes/warp_stone.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/data/waystones/recipes/waystone.json"
hash = "44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a"
[[files]]
file = "config/openloader/data/RAC-Recipes/pack.mcmeta"
hash = "47c2913209ed045204a0bfb5fc072dac06748b23deeb92590ee84704a9aefa4d"
[[files]]
file = "config/openloader/data/RAC-Structures/data/blessed/structures/blessed_blade_spot.nbt"
hash = "943fa072a8a274557643381e51a692d47d2f2cf9238358720eee62426f0889f5"
[[files]]
file = "config/openloader/data/RAC-Structures/pack.mcmeta"
hash = "1bea56348df57737e235d6159c6dd6330c94ba79d56c9ebe071b371d2aeb15ab"
[[files]]
file = "config/openloader/data/RAC-Tags/data/curios/tags/items/belt.json"
hash = "ce367f4f53c034ed81e1a24e1c1cd6add5da918dc8ec614f67e5101404d836e1"
[[files]]
file = "config/openloader/data/RAC-Tags/data/forge/tags/items/raw_fishes.json"
hash = "ad88b8fd0922daee103dcd043ee2f7280af82c4ed1815b8e4e4471709ffbb88b"
[[files]]
file = "config/openloader/data/RAC-Tags/data/friendlyfire/tags/entity_types/general_protection.json"
hash = "177d2212eeec0d7b35b6ecefdab156ea408cdfebdeaafc8cc274129d75189bea"
[[files]]
file = "config/openloader/data/RAC-Tags/pack.mcmeta"
hash = "f85ce9a79617baada99fe439bbc40392c6b5bd04d4afb38c052a0a5d7cdfcbe9"
[[files]]
file = "config/openloader/resources/RAC-Language/assets/createaddition/lang/ru_ru.json"
hash = "74eb362a6aef6beaff90fe7e8cdce85c0e6274703dd1f720f1a198b4c28e6198"
[[files]]
file = "config/openloader/resources/RAC-Language/assets/ends_delight/lang/ru_ru.json"
hash = "944e7690645568f7239d76271b7f8cdafb748678a18c5ee2f002310359f76d2f"
[[files]]
file = "config/openloader/resources/RAC-Language/assets/handcrafted/lang/ru_ru.json"
hash = "6a1270c8bc546789ea8b67cb298330c8c658b65020f811c6feb20b933855b2dd"
[[files]]
file = "config/openloader/resources/RAC-Language/assets/minecraft/lang/ru_ru.json"
hash = "6df6d460f0fa7f784049e965925709b14a0a5c6778f753f5641ff152da15187f"
[[files]]
file = "config/openloader/resources/RAC-Language/assets/modifiers/lang/ru_ru.json"
hash = "ffa486646c203d3cd5fdf7030d47b69f302c23332b7980256fa1bcaebff514b8"
[[files]]
file = "config/openloader/resources/RAC-Language/assets/nethersdelight/lang/ru_ru.json"
hash = "4b17575d8f6bcab318fa11d826dd6c7c72ed94b57b448724a9fd882e8da8d265"
[[files]]
file = "config/openloader/resources/RAC-Language/assets/oceansdelight/lang/ru_ru.json"
hash = "94d0e6c4fbfce375b6d014abbe24a44c3ea0c022256f522ad39f3a1840237715"
[[files]]
file = "config/openloader/resources/RAC-Language/assets/simplyswords/lang/ru_ru.json"
hash = "6eda66036ac5cd6ed67db74ed77666aa5e6eff092a511a13200060439231f184"
[[files]]
file = "config/openloader/resources/RAC-Language/assets/solapplepie/lang/ru_ru.json"
hash = "14bcd7fe7893d6aedc3941a31a34330ee7d37e99e45088b822308e5660a11838"
[[files]]
file = "config/openloader/resources/RAC-Language/pack.mcmeta"
hash = "48c4e9416d1162769825f42e2f85017c1dc93d02227c823346a9ea726266a316"
[[files]]
file = "config/openloader/resources/rac-backgrounds.pw.toml"
hash = "bc3c907fdbdc7069fd1b8f727f62d66fce2fe24d3afe6b45dfc3a126a5754c50"
metafile = true
[[files]]
file = "config/pickupnotifier/pickupnotifier-client.toml"
hash = "54b143386207b53cff44a889186dc0621d028a877664e19284b2e929fb8ff7c8"
[[files]]
file = "config/pickupnotifier/pickupnotifier-server.toml"
hash = "6e18bfa2ec02629937474e436f3f44fb67d54fd6e6b47a7c9b4c5b3a3bd83916"
[[files]]
file = "config/rightclickharvest.toml"
hash = "eea5345e440dfd91d3369660a8590e88f01690ec3a19e5eec9130769b5b6f221"
[[files]]
file = "config/roughlyenoughitems/changelog.txt"
hash = "8d3828692497be68d54e98820db28df65ef79b28f16ec4ebeef0e0916588dd8e"
[[files]]
file = "config/roughlyenoughitems/config.json5"
hash = "0a81daf0d3e3687929a3503d58b1b6639c42346fba15f48b6cde24226094b68a"
[[files]]
file = "config/roughlyenoughitems/hints.json"
hash = "610850afbbb6e8f84e881595f2e36e8dedf08506680248ee41134079af46f574"
[[files]]
file = "config/roughlyenoughitems/pinyin.properties"
hash = "a826f9c2823a703472d975a14af05b14f06f1eeb845eb3e13e0afc0a258ea835"
[[files]]
file = "config/roughlyenoughitems/pinyin_double.properties"
hash = "34c27f0f4a85ab70f808ce962f400019a5e80203356c51223ad24ef267ed6db3"
[[files]]
file = "config/sereneseasons/fertility.toml"
hash = "966d72dd494303490b0fcc83e3496661735ca361a59598b0ba31eec525f6b6e3"
[[files]]
file = "config/sereneseasons/seasons.toml"
hash = "4fe5c2073c3a7a58c6388467b853347a09dffb9d67c2bd86bf57c9dcb3970bf2"
[[files]]
file = "config/simplyswords_extra/backupconfig.json"
hash = "2ed38c8f507c52d3dfaecce6e0b8528b78b4840e40234de4f81cb28bac95bbee"
[[files]]
file = "config/simplyswords_extra/loot_config.json5"
hash = "99d99643ede6d6a4ace82a3ee49dfd2d8b15f5a94c10e6d77224e9b9ffbf9e0f"
[[files]]
file = "config/simplyswords_main/gem_effects.json5"
hash = "816919e54350f883be74806eb45885d559f9f34019053f14b9ea3a13c21faabf"
[[files]]
file = "config/simplyswords_main/general.json5"
hash = "e0c4e649ecd0932e5e66534cd6eb34beb3c3954ca6f985646879cd7775c24718"
[[files]]
file = "config/simplyswords_main/loot.json5"
hash = "9b349a256954df5c7fbd21c2303660590741bf007ea152d61a8bcf2c3b1ac1a1"
[[files]]
file = "config/simplyswords_main/runic_effects.json5"
hash = "618a79d44f8b24375a0cd9c8430c779526f69db10426f1c2c42f45bacddfc118"
[[files]]
file = "config/simplyswords_main/status_effects.json5"
hash = "4fa38ac43a2d8f996f7800c9d61235c3800bfd3cae7f6ba2d76093665bec8fb2"
[[files]]
file = "config/simplyswords_main/unique_effects.json5"
hash = "cf053a7ba729d0757a4deb081998463f10f384527f36094bb9d527155ecd8992"
[[files]]
file = "config/simplyswords_main/weapon_attributes.json5"
hash = "9220a83442ee1f88e7ec1656ae4cbc9eef51449a170ba40e29fc4775753dde78"
[[files]]
file = "config/sophisticatedbackpacks-common.toml"
hash = "67c90bbdfca3c7488d9496df0af4d1be7483634a0c4d179281d1c7c91ef32e7b"
[[files]]
file = "config/sophisticatedcore-client.toml"
hash = "7578232817ad08ddd7b843dc7a105553128b02cdd399ab653c5daba51a248f21"
[[files]]
file = "config/supplementaries-client.toml"
hash = "8985ff8637bd19f81dd086a4dff31079660cf2686df21b3be911d52a79f2377e"
[[files]]
file = "config/supplementaries-common.toml"
hash = "bd59cb591be2d2fb2c0755cefcc7496f8bd623895fa852a07f10f59931d0c896"
[[files]]
file = "config/towns_and_towers/structure_enable_or_disable_new.json5"
hash = "1ba13627a8f6f9d96c3a163e856aaa09c756f2be1f3072f9aca302fc71c36b8e"
[[files]]
file = "config/towns_and_towers/structure_rarity_new.json5"
hash = "1f6cddbcb2d89fbcc774d7bdae9987ccb031ba8fe024307357076ca617b17eeb"
[[files]]
file = "config/travelerstitles-forge-1_20.toml"
hash = "b02f6f97d2977ad08e98fccf900ef8ab44515f9e611efafc050d3fd24c0d7c66"
[[files]]
file = "config/trulytreasures.json"
hash = "2dd78e0cb535bf0412e8e8321ef819014e38d9eb0fd2e74137a6a6a88b6f3ad8"
[[files]]
file = "config/upcycle-client.toml"
hash = "5e663c4e5688dfed6ee746443e9890b0ee022a2878a8a2e96ad5a9e3caea87ed"
[[files]]
file = "config/visualworkbench-client.toml"
hash = "bb8cd05f8ec610042ca7149b74232c2280a3f8acb0117d7a72155d7d76d29bef"
[[files]]
file = "config/waystones-common.toml"
hash = "f0aac16ec6663c8f4b286fcba3ded8c59d0dd04bff5dd6e8010d34dba1ab92f1"
[[files]]
file = "config/xaerominimap-common.txt"
hash = "1dcee38470c2939f7265891203775b7631c81822bf2506a451727fcaaf2cc4a2"
[[files]]
file = "config/xaerominimap.txt"
hash = "e98a817dbaedb964b618fac7976bf6a2038cdf258b883355e9020e24c92cb904"
[[files]]
file = "config/xaerominimap_entities.json"
hash = "1577bee3e9a82ac486f2097cd5837ee7acaa3dfd1284628d5c8237353f3ecd3c"
[[files]]
file = "config/xaeroworldmap-common.txt"
hash = "103979a8e59e396f99fb8646c4f8a690c2d743ca3744a2eb8f663b3102b7498c"
[[files]]
file = "config/xaeroworldmap.txt"
hash = "b3ab2a23843fbec603963c7d4ec74972485151e758866c38a7d2de2012e4bcb9"
[[files]]
file = "datapacks/ctov-farmer-delight-compat.pw.toml"
hash = "dee852bdc810b78dddc81ab77c1c484aae82ccf581efbd4887c26dc841aa5512"
metafile = true
[[files]]
file = "defaultconfigs/create_enchantment_industry-server.toml"
hash = "6f8cb3c2d637cd8d84a1f4aafb43ed6b3e362c964e7f57351991ad9503119d5b"
[[files]]
file = "defaultconfigs/sereneseasons-server.toml"
hash = "ce41ae297c8163b04049f4b98502af961b167967660c15bff254248f573bf107"
[[files]]
file = "emotes/all-emote-pack.pw.toml"
hash = "fe51e857f3e75e0a3a89e8642e94a0441ae2740f983df2ddaff2cf3f817dbfb1"
metafile = true
[[files]]
file = "mods/advancement-plaques.pw.toml"
hash = "2823f67bc12454a6941062d99254aba1e31b2b9b639a030c2d5548df9df863d1"
metafile = true
[[files]]
file = "mods/ai-improvements.pw.toml"
hash = "11c40209898628cc8ca75d28f539c449384b40600bfc88272306f6138f4e4428"
metafile = true
[[files]]
file = "mods/alexs-mobs.pw.toml"
hash = "a3d9d29881ae93abf981c45c83dbb2c91bce885168fcbceec82c4a6268692d51"
metafile = true
[[files]]
file = "mods/appleskin.pw.toml"
hash = "8d0321177fed4a0b48554c40158b43db62f6cdaa768f584ef6a11575dfaa6223"
metafile = true
[[files]]
file = "mods/aqua-combat.pw.toml"
hash = "5e387e191b01099f55c4bbd20d5d17463a9629367cb00ff4bfadb8e70967600e"
metafile = true
[[files]]
file = "mods/aquaculture.pw.toml"
hash = "a970ca6ffa0d4d985bc0bcb2e6b51c8a156e6e2a1118c924a4d5c213c9afd15c"
metafile = true
[[files]]
file = "mods/architectury-api.pw.toml"
hash = "960890be34fda21cd78de480ca9dc367b518500efde04fc7fc34bc94ac383d89"
metafile = true
[[files]]
file = "mods/artifacts.pw.toml"
hash = "f3ce6c150919511b327170472ceadfce2582e86faa81e8be856001b1eb3f0fe9"
metafile = true
[[files]]
file = "mods/ash-api.pw.toml"
hash = "6e055d9a52c0c2eece73425b68d59c89b23b0aa091d93269863e5869b0298d6f"
metafile = true
[[files]]
file = "mods/attributefix.pw.toml"
hash = "e9179c6f362e82c08ffb103a8e19c7dbdbeb18b24cca69ffacbd8b1929e23031"
metafile = true
[[files]]
file = "mods/balanced-crates.pw.toml"
hash = "b6e4a5d3f120ffe07440fa17cca54db50252eabef968511926213c9194c5bdd1"
metafile = true
[[files]]
file = "mods/balm.pw.toml"
hash = "9c2e49283d2f251717b890fdbf9b5f3e92ff64bec53dd00e099f969003833b16"
metafile = true
[[files]]
file = "mods/bendy-lib.pw.toml"
hash = "693c49f141430d16b77f2378007f9767639e47d1ab79f94b200b5abd9018dcdd"
metafile = true
[[files]]
file = "mods/better-advancements.pw.toml"
hash = "eb1248ff3daa6e53f30711e5f848faba42f8327b851277dba4a323885ac0d5d6"
metafile = true
[[files]]
file = "mods/better-combat-by-daedelus.pw.toml"
hash = "f96d0997b608834038df81602a54d1f219a51a7f96ebc452d06a72f8b4fc9529"
metafile = true
[[files]]
file = "mods/better-compatibility-checker.pw.toml"
hash = "a167c88b43b73530c14b77d8cfa8c3546ee665ffa317f0451a6767e46bdae0de"
metafile = true
[[files]]
file = "mods/better-fps-render-distance.pw.toml"
hash = "ccfa1caf09d5a6140091db65227944cc4f46c774107bf1cb911018a88ee4096f"
metafile = true
[[files]]
file = "mods/better-ping-display.pw.toml"
hash = "6b6606cba629513b93efc3785208566165ae53eef400f1767f959af4ba9c901e"
metafile = true
[[files]]
file = "mods/biome-music.pw.toml"
hash = "bcc156e2b2c0a005e2e80688495af1b3e3b05fe1516ff4cdfb2499cde36ab587"
metafile = true
[[files]]
file = "mods/biomes-o-plenty.pw.toml"
hash = "b0119b17c7c9a075780d55dc87749942a835365db5578102d6250db8875e8267"
metafile = true
[[files]]
file = "mods/block-runner-forge.pw.toml"
hash = "df534a54b62aefe60ed93335b8ce07821798069e534c9b00eb1e378c72463720"
metafile = true
[[files]]
file = "mods/blossom-blade.pw.toml"
hash = "3302d50174e3713bde5a3f3e84d28a9ccd199c82c5bc94f2f85438e17721bdf0"
metafile = true
[[files]]
file = "mods/blossom.pw.toml"
hash = "3b2818dac78471538aa50299682efa354b18710be1be971441eb1ca784e2e542"
metafile = true
[[files]]
file = "mods/bookshelf.pw.toml"
hash = "1d13a8f9f1068fafd8848c08b2b64a6d6014de3338ce2c4499e44d6346a35449"
metafile = true
[[files]]
file = "mods/canary.pw.toml"
hash = "e5df83a3dd1686106741d1d61da5869aed0537c2931a40234e1b3bd2d09e1971"
metafile = true
[[files]]
file = "mods/carry-on.pw.toml"
hash = "ba1bdad41e3c9ec131330f048fc6f9bcb753ca3e9bfa1e41d60d6ca11afbc2e6"
metafile = true
[[files]]
file = "mods/chimes.pw.toml"
hash = "d960f68e4c5e5f79eff91a277dc22d7acb49f04080fcf0fe1648b5a9a83e3d4f"
metafile = true
[[files]]
file = "mods/choicetheorems-overhauled-village.pw.toml"
hash = "e7dc520c5cd1ded809bfd432bf7b067646f970ce497bc707246fc337052cf074"
metafile = true
[[files]]
file = "mods/citadel.pw.toml"
hash = "868e0da536e928b1510a81f1cb3cefdeb151580d3672c7a14642817e889c9a29"
metafile = true
[[files]]
file = "mods/cloth-config.pw.toml"
hash = "d4512023e6eb03c5045365468de16cebe1aea7f14f6cb94902d72848f69c79ce"
metafile = true
[[files]]
file = "mods/clumps.pw.toml"
hash = "f2bc9a24518e286b908f6e467e92070818ff3c3003d8ff75675b83094c56b10e"
metafile = true
[[files]]
file = "mods/collective.pw.toml"
hash = "079900b62dc3db7d111eb5cea93e34867dc26e22243e711734b50181c844c11e"
metafile = true
[[files]]
file = "mods/colorful-hearts.pw.toml"
hash = "199a0a584a00f393d89eae5eeaf5dd287703f6268da72ac00b57f46878cd6889"
metafile = true
[[files]]
file = "mods/connectivity.pw.toml"
hash = "0cdd209cbf66b8929f8250f520e2bcf94056f57c82921444875265fb9db1f64f"
metafile = true
[[files]]
file = "mods/controlling.pw.toml"
hash = "cf8c5f2a139a2571d0d4b8be2b7463255cca721ae4a5741ec71595b7ab530e71"
metafile = true
[[files]]
file = "mods/corn-delight.pw.toml"
hash = "78f38ddc4c204f2a82062d532d98266546a168aeeddbd53fdaa8fb1af4ceb030"
metafile = true
[[files]]
file = "mods/corpse.pw.toml"
hash = "c1829724fc8399b466a60a2aee6a72251f55e1f7443c776094a01b952f3f8561"
metafile = true
[[files]]
file = "mods/create-deco.pw.toml"
hash = "4bc5d111a9937302546ee8f831b4881f2085bfbac982b94bdf9aec3bd426a53a"
metafile = true
[[files]]
file = "mods/create-enchantment-industry.pw.toml"
hash = "63fe5fc1d7b29a73db90113babd4c9df92e54b79e384bfe22d3b2610e56f12b6"
metafile = true
[[files]]
file = "mods/create.pw.toml"
hash = "6ecc31d75d379730df8fe950438b4ca26ed1daa8612406374552665f9222f9ea"
metafile = true
[[files]]
file = "mods/createaddition.pw.toml"
hash = "0c9d8c39b84c769fe1314f4492ccad865ec930cfbfd3289e99073e8680b22338"
metafile = true
[[files]]
file = "mods/creeper-overhaul.pw.toml"
hash = "f7c4333722dca8096290dc81394d3466844f2ec6912555b8127e454f1c0459a2"
metafile = true
[[files]]
file = "mods/cristel-lib.pw.toml"
hash = "4ae2c1b627cfede58a8add7fde29c6d889426aa72ea09a852a402a861aa95166"
metafile = true
[[files]]
file = "mods/cupboard.pw.toml"
hash = "cff7ef62df63f3a19c5cced1516eae0e7489f36e1aee4d83461271356308e7ff"
metafile = true
[[files]]
file = "mods/curios.pw.toml"
hash = "36672819f67335f5cdd349f49faa27582d6f7f68955c2a3d0e62584b6d6735ee"
metafile = true
[[files]]
file = "mods/curious-armor-stands.pw.toml"
hash = "d702a85a0f7969ea72b511dd6d0b5380d31b10b6941c90311785a3596b7bf385"
metafile = true
[[files]]
file = "mods/cycle-paintings.pw.toml"
hash = "ed4df500473000f48e15517cdaaf8d85af7a4b40f1f346c6d9f0f4ca5fd5fd15"
metafile = true
[[files]]
file = "mods/default-options.pw.toml"
hash = "bace9ac545c5db24d350a955565157500cdcedc8db6a8e78ff6118d97748eb2a"
metafile = true
[[files]]
file = "mods/ding.pw.toml"
hash = "a3085decb5b25159bed5030fd302769633970ab3d6951afd1cc375eb36c7cff9"
metafile = true
[[files]]
file = "mods/dungeon-crawl.pw.toml"
hash = "ee1b4b6d53fce1aa5a3eaa8cb321b56e55a9e3fffeb31152ab1dcd130284eaf1"
metafile = true
[[files]]
file = "mods/dynamiclights-reforged.pw.toml"
hash = "23f60d031671337d14d68011dd30ba921abe7f84c3eb8e66c60df0b853c0dd40"
metafile = true
[[files]]
file = "mods/elytra-trims.pw.toml"
hash = "bf1265c6d4dbdd581c9c953aa173114a2e76c10bf043fcbb5af11682c32377e2"
metafile = true
[[files]]
file = "mods/embeddium.pw.toml"
hash = "e0b8bdd9fb14980b99f79d904d4e3b4e58b1551676a2fe6eb527751155a1ddad"
metafile = true
[[files]]
file = "mods/emotecraft-forge.pw.toml"
hash = "bb5b3abe0f187ccde0bbbdbad7dcbc9ff513c8ce0d8770deee7fa3fe7fa5e08c"
metafile = true
[[files]]
file = "mods/enchantment-descriptions.pw.toml"
hash = "48e084834e902cc320deb897ed45a081b1fd4d6d26ad2cd25252fc0334c7703d"
metafile = true
[[files]]
file = "mods/ends-delight.pw.toml"
hash = "ef1706c2908bd1b66bf1c64eebd77f84162d248060c94760f0c25ed194726c5f"
metafile = true
[[files]]
file = "mods/entityculling.pw.toml"
hash = "fce6589e2d57b8c6e2df375ab2f6971e8b4c1e463758cb234e337aa9c19c2b2b"
metafile = true
[[files]]
file = "mods/expandability.pw.toml"
hash = "a12fad2ed4db59624d847e6ef91ee372a9459889fe57452b194979388c89d55b"
metafile = true
[[files]]
file = "mods/explorify.pw.toml"
hash = "f37fa0d524b176234a3f32fd2d4d448647356e8f4b3bdbca2c6927ff4a5f3721"
metafile = true
[[files]]
file = "mods/falling-leaves-forge.pw.toml"
hash = "eef4f2f033c1c8961e7a61f37d3207a63244344f309c195f454a967db64568d5"
metafile = true