-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.toml
1434 lines (1108 loc) · 52.1 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 = "LICENSE"
hash = "3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986"
[[files]]
file = "config/Adorn.json5"
hash = "6c90f63175a0d64b53d763b490b9929d734730d2fef7b215cccf104c6a8d8dd2"
[[files]]
file = "config/TabTPS/display-configs/default.conf"
hash = "efcad42c15087e3ac549a9b4cd2c1c6fe5f09fe9249701f8f62655e33cb7bdfc"
[[files]]
file = "config/TabTPS/main.conf"
hash = "3086a50218a75625467ac3ff05a33687d6e07a0f1c929fc4e0d51acf6eefce5c"
[[files]]
file = "config/TabTPS/themes/default.conf"
hash = "be849ebc154c84986260430f6c52ba9c61aad140756b589d07169c2e3e80447e"
[[files]]
file = "config/TabTPS/userdata/d9b9c3f4-1eee-4e8e-8ccf-c1421653c9f7.json"
hash = "1968a20b3c90d81487dd259aefb3175efe265247756ac2814bfa1bb543c9aa64"
[[files]]
file = "config/armor-stand-editor/config.json"
hash = "75e769765b21cac8d527a1249286136e4f2301aec0169d0df59874a15c445c3e"
[[files]]
file = "config/axesareweapons.json5"
hash = "624173d40f03e3c3fe801de8cf6e1b363f2bf625edb14d26d226fd0b626a33fc"
[[files]]
file = "config/bwncr.toml"
hash = "9ed2a62329df506d0f4a7cfe789b104666594154715c7beed9c0084cd78f935c"
[[files]]
file = "config/c2me.toml"
hash = "79fb6dbee04e897e3b53d046b6841f2ab77d3057ed6bbc7ac93dba2ccf11642e"
[[files]]
file = "config/campanion.json"
hash = "4fdaba16469ef05113c60d6d0aee2eb52371d53f41b29cafc3635706459fb6c1"
[[files]]
file = "config/cardinal-components-api.properties"
hash = "f7e7f346e0724cf9cfb77f44dec2e7d202ea2507729ec7b95ee6a8f089c82982"
[[files]]
file = "config/charm.toml"
hash = "1180a711196ffa76f38c32dc5c910e7c12ab2baecfa61429591b90520b0855ef"
[[files]]
file = "config/charmonium.toml"
hash = "0cafc6ffcf664fbff6f06a0ad4b92282ec3148abe21616d8d5f0f0b73240f27e"
[[files]]
file = "config/chat_heads.json5"
hash = "ec0ea3b472c5ca01df52cf14e5fe3184999cbdf060ec95d6e1b4ac287dc816ee"
[[files]]
file = "config/cleardespawn.toml"
hash = "d2330ec90f55427e4e995b971ab7799200e115fcf3d9e8d63000c67f04e6a13a"
[[files]]
file = "config/clickthrough.json"
hash = "fd07fba9d027fdb082139074ee6adc1a1278891ae19dbb1e1417edda0e0b35ea"
[[files]]
file = "config/create-common.toml"
hash = "76707e79487581023226b0da6124601d88d0dd46dedcbe889cd2248ea0ab4a2e"
[[files]]
file = "config/extraalchemy.json"
hash = "977f03455b4517949daa1848af0daff283e359ad4ec14487e8e49dfe16519a16"
[[files]]
file = "config/fabrishot.properties"
hash = "ba870da8a70623cb8f2da49a33ab47a50ac6eca2429a1539f86d7a311cb1b6f3"
[[files]]
file = "config/ferritecore.mixin.properties"
hash = "b95fd739ebab8995117722aaac90aab6bea1aeec3a29b5170e332a69dc6408b6"
[[files]]
file = "config/flywheel.json"
hash = "aa84b01d7366b116d590d52adff2acef9212f9395eb53e9db9fa9090c6a9b02d"
[[files]]
file = "config/frostiful.json"
hash = "424a635d165ec861bf74640211a654a100edaad93abe0f52db6e8e754ebfb3a3"
[[files]]
file = "config/indium-renderer.properties"
hash = "9ee865bf3f319e6980ee054e10ea0944dc7805ffc836c6c06b6af7c7defcc98c"
[[files]]
file = "config/interactic.json5"
hash = "720111b282c3128b3bf9a4d04b4f831f32f51a2a7e04853b92bd18a04f2bce7a"
[[files]]
file = "config/kiwi-client.toml"
hash = "a65af22939e94a14806f70acf039e463c1ccdd53ce176581d918b2834a729304"
[[files]]
file = "config/lambdabettergrass.toml"
hash = "71f8657fa67d9b11264366d2e8726098d6d86887e63f14e2cbce82532a2f84be"
[[files]]
file = "config/lithium.properties"
hash = "2246300184164fbbab56d908433b6a56a821d0432df520af09e46c86e86e4dcb"
[[files]]
file = "config/midnightlib.json"
hash = "6b52769b3358f87b591871a4444f3cef8124a9dced0da1755f18db2f47adf4f3"
[[files]]
file = "config/modmenu.json"
hash = "503f96151dab202359895d267084c5ca81604cf9a3455446c20a5c0c69ec7cdb"
[[files]]
file = "config/noindium.json"
hash = "0ec99e2aebcefedcf1d5681b6d9cd83d5ed6af32cb8004db0d0699c47beb1164"
[[files]]
file = "config/notenoughanimations.json"
hash = "d7645024f541857dfe9e097c45e1306274b6ec0f26dcd80cc888f9c701920205"
[[files]]
file = "config/repurposed_structures.json"
hash = "14e4fe1ded11fa49bfc3479a8e7efdda0e5bc7333d6c9723b44c87306619d8ab"
[[files]]
file = "config/rrp.properties"
hash = "7e5beb923c78ce4582d523b7629e26c6ce0f4a33d24a4cf027ba9d6b8a332915"
[[files]]
file = "config/servercore.toml"
hash = "89c3be65d25a37fe47bc9d74d8552c592795dc0a13f5d7f85a016708a42db538"
[[files]]
file = "config/smoothboot.json"
hash = "7eb2c9832f1adc79eb19fe0c0262d9cb7ed551cc59f79d4bdcf9373c3194c2c5"
[[files]]
file = "config/smoothswapping.json"
hash = "88a5b231bf9a3016e80186d4e31420fcde5742ec12ac0f987c384e274539000d"
[[files]]
file = "config/snowrealmagic-client.toml"
hash = "8847b2cc97e3f7eac4ec59333ac2e7a24cb70d081e5f53cf7ba06a41e37db96c"
[[files]]
file = "config/snowrealmagic-common.toml"
hash = "d8b1565824f7fdbc2f5148e3fc933e615d9c22eec34df86e44f235da2f454f62"
[[files]]
file = "config/snowy.json"
hash = "ac33ee3307d1f74a544faf4bc32f9610517f2adf21172ca10f3ac66190ffc922"
[[files]]
file = "config/snowyspirit-common.json"
hash = "e613e3cce136a08ea972a577ce57012056229dafbae34dc5a166e29b6c31158d"
[[files]]
file = "config/sodium-mixins.properties"
hash = "051558518a6f3350fadb1546346d937e7f78f69834a075bf91b59921f151cc26"
[[files]]
file = "config/twigs/twigs_world_gen_replacements.json"
hash = "e9d95c9d11d7a48b95e085a8001ce0c7252e34abe6a7d1fae4a219bebf1f24e1"
[[files]]
file = "config/winterly.json"
hash = "090edc1d41c3086d47011b2604f613c31f1bec18f28cb1a98667fca0099cce8b"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/farmersdelight/weapon_attributes/diamond_knife.json"
hash = "580d53dc9834c51a7179102ada8c4ddbb0effcc9ad44a3dd6e7c53b3a6a98481"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/farmersdelight/weapon_attributes/flint_knife.json"
hash = "580d53dc9834c51a7179102ada8c4ddbb0effcc9ad44a3dd6e7c53b3a6a98481"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/farmersdelight/weapon_attributes/golden_knife.json"
hash = "580d53dc9834c51a7179102ada8c4ddbb0effcc9ad44a3dd6e7c53b3a6a98481"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/farmersdelight/weapon_attributes/iron_knife.json"
hash = "580d53dc9834c51a7179102ada8c4ddbb0effcc9ad44a3dd6e7c53b3a6a98481"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/farmersdelight/weapon_attributes/netherite_knife.json"
hash = "580d53dc9834c51a7179102ada8c4ddbb0effcc9ad44a3dd6e7c53b3a6a98481"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/frostiful/frostiful/item_attribute_modifiers/santa/santa_boots.json"
hash = "d30e02477055f8d3f281d6342902f8d8ec9e23216d38aa6eee2d0c568ad97839"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/frostiful/frostiful/item_attribute_modifiers/santa/santa_chestplate.json"
hash = "5af459bcf17ac04430a47685cd7230d7addcc89712474a9c3e138e07baa20e0f"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/frostiful/frostiful/item_attribute_modifiers/santa/santa_helmet.json"
hash = "21bcaf97e12ea38d0627741997e516d2d0f9a1de6ff386fa7c15dc96ca6565b0"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/frostiful/frostiful/item_attribute_modifiers/santa/santa_leggings.json"
hash = "1d7a4285beb67546558eb5933a45d5c3376619426db59f258f829846a0362a34"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/minecraft/loot_tables/entities/polar_bear.json"
hash = "e8d2a13f22abdfd882be94756be5e662179c420a97e5da5077a5e5c9eb5a990a"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/minecraft/loot_tables/entities/wolf.json"
hash = "d99ae6b597f357de3d6bb45ae3fbc48fc0faceecd700b2207936e052d31c9653"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/minecraft/tags/functions/load.json"
hash = "f3e0542d0acd32bae7c7f0fa82258a31d6414726009590cb2434be6d5054063e"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/noel/recipes/candy_cane.json"
hash = "cc7d94da7b019d1eda1427154c232e604a857e212eed78d2149b70f2d3f5b235"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/noel/recipes/candy_cane_from_block.json"
hash = "37e2ec21cc7e5cef909e7aba28828d4692477b5086c33418b9b5fc86c61fa41d"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/noel/recipes/peppermint_candy.json"
hash = "8c70fcf81633cddae52acd782fd842f4439df88eaa0bff17f8be6e578789a63b"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/noel/recipes/peppermint_log.json"
hash = "5050e3b9526950a47fc55e1101099c7664da7d8a51be43f00c75028df5953630"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/qu-enchantments/tags/entity_types/nightblood_immune_entities.json"
hash = "59f0b79c715ad5426c65995982bc69908c9c47a64da6d7dc6a461580e9b7334b"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/ratsmischief/recipes/leather_rat_pouch.json"
hash = "ea0e0c6b06e72464cc2be1ae9a470bb692ea3dc282b05710c9babbfd5bd475ef"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/simplechunkloader/recipes/chunkloader.json"
hash = "7d83e23b39df0097f5d158ccbe9d17cb2041af8c5f0379eb8e8bb1ad9e2fe217"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/candy_cane.json"
hash = "6578571b879eea9475d3c86fd1690f1116bcff538c83b4c54fe65969a855a632"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_black.json"
hash = "708a9010913ae8a8d7e27edb10ab9368b5437a0535198a49e12a2668795f36f4"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_blue.json"
hash = "771cfe16b096dc9d5270a3b53fc173058d8d09b47b9c51e9c39766862a79fb04"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_brown.json"
hash = "daa5a9449acf08917155e8bbf1ca500bdc885e31fdbed9c5edc2235fcac55176"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_cyan.json"
hash = "e71938181b30e5fd2c4142d83dc55eaf113f06a253f0586b44845d15ecd87971"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_gray.json"
hash = "e41dd871a09bdc809f15ec4c0fbb0ad6523ed3e41476bee65836b549fa8251c3"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_green.json"
hash = "5732c543333d0d05252694fc25b977caf7f6fbca077ddefd077b607828584650"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_light_blue.json"
hash = "f35a7913aea890eced3f83bdc2dfb2dcc7c3410262bab6420a69fb1b3d34245d"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_light_gray.json"
hash = "5764041e14110c52ca6885cfd6393f57b63b72e36eb660a466a2b10c30e33240"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_lime.json"
hash = "7ea41a40304e096d617aea2ff2bb25150fbad39250d25badc3c4cdf5f0fc1aaa"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_magenta.json"
hash = "2a54a401d6cc93673304bb425c69a71e0277394e528deb6021c39cbc62809db2"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_orange.json"
hash = "a4ddc06ff0195809074661846fc12bc2da16713d596b1e699a5593692c63b7d4"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_pink.json"
hash = "a88397d1a8967402fd9c8e8be51dd9d66528881fd32c6a3a3190c4e6b4ea86b9"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_prismatic.json"
hash = "bd57d5e9580fe6b63cc8665ff7a5fc83795a33c6f824d2b51037c5cd76a43961"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_purple.json"
hash = "c3d5265c7c5c928745d6491de6e25f8eb8f2a96548b1372bd9f73bafdea828d9"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_red.json"
hash = "1b6142feed7d20a92b9da06cf5c2e880493b5503b9119648e1c7bafff28620cd"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_white.json"
hash = "da1c536fe249cfed1b9ea710b089aec5b95613ce95bfaf830f8aeaadc8e6bd48"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/snowyspirit/recipes/glow_lights_yellow.json"
hash = "1586a8838c18fbf04fb2dd25975e229d2574efa05a147e97d6336980bf9ecc5a"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/winterwonderland/functions/drink_coffee.mcfunction"
hash = "eb36268e1972f41ec0a220147c1cb6d9227ac61f07a5741675e73adec36df00b"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/winterwonderland/functions/drink_hot_chocolate.mcfuntion"
hash = "7393806dbe79b7392d43f1ac03767b9b32dfa5ffbe781242ef51e2134f8ed7eb"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/winterwonderland/functions/drink_hot_drink.mcfunction"
hash = "a6f92c9ebd4d2b578d446bbb62504fd8bc7bac8fb7273ab49a174bf0779122d0"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/winterwonderland/functions/load.mcfunction"
hash = "2494e03b208cba4c248016fe5ae865f646cef57bc430508043d00ecbf934ba77"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/winterwonderland/functions/tick.mcfunction"
hash = "3281ce59eb28abc0c17f817f4a9218a558734f82b99061988748a1d9acf0c1cb"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/winterwonderland/recipes/coarse_dirt_crushing.json"
hash = "0e371bc5ba73307d8da9b26cbaf58c3f7a5a4c6473102cbaeb48b158064de849"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/winterwonderland/recipes/coarse_dirt_shapeless.json"
hash = "b890f41f3e387fe3bb264de879d2fc126d5852a13b588322f028da5428a9e368"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/winterwonderland/recipes/cobble_to_pebbles.json"
hash = "b3dc8054fa67de665ba1d874470b24a0b17629e866373fca5291a9ec199a20ce"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/winterwonderland/recipes/crush_snow.json"
hash = "80ff2b74d44083d9c0f9d5e77d78ec40043224561e193ec1b66f22bcf1ae6478"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/winterwonderland/recipes/frostiful_to_winterly_icicles.json"
hash = "d590f3575d6cec4019caeb8c708e07830b0c34075ea3611e4a547bbb9ebb246d"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/winterwonderland/recipes/name_tag.json"
hash = "20f03a24cf25be656a3cbe0e3fbdefe081d69069d47ec9ee471e3a0aef48dbc7"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/data/winterwonderland/recipes/winterly_to_frostiful_icicles.json"
hash = "92b8b55146b5baa48638c2327a3ece7714a61c8e4736ce6169194aa1debbbf0e"
[[files]]
file = "global_packs/required_data/winter-wonderland-additional-tweaks/pack.mcmeta"
hash = "fa98f9b02dde17a72af4afbfa8d205a38e78db9c031d0bee15e595d9819fdf51"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/Selected Packs.txt"
hash = "acf60dc506ab87aad0150f447ef86cca54e7057b23c3bb3ff263468ffd6d5c0c"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/models/block/dispenser.json"
hash = "d427baa5d021e6435e06d75ae0452242655da5df9fc20a6be9fa1684e9238b8d"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/models/block/dispenser_vertical.json"
hash = "557ac98949a066bef6a1ce7dced98bf1fdec8b6ee6463dd9492ce2a75e96bee4"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/models/block/dropper.json"
hash = "af443836323bc00276a99094b0e5e4cc0a0f8f69ec28b3b74c00bb0afd0d9e75"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/models/block/dropper_vertical.json"
hash = "12e50246ff3b1260c2bb1f33497480a257861c580cc826d1e8944cedfec9f9d2"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/models/block/hopper_side.json"
hash = "078470299c8ce97eb03dbdad67029df3a0f4c3efb4dffcdc3b7c2f38c6ac6661"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/models/block/observer.json"
hash = "045a4a0a5eb23ae5f20caec2489b5b2cc38d93ac3f99c91cf1b98989395f6835"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/models/block/observer_on.json"
hash = "8c6560432e5995ace577afc2409af1d8d620d9b73aeba06c9f908e925e651b98"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/models/block/piston_head_short_sticky.json"
hash = "6005fde8835b70fa3532d84fb667339bca71866d6b2f9120c92681f5abb14ef3"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/models/block/piston_head_sticky.json"
hash = "bcc8171c967d2cfbeb7f3b2b126ea093d82519c679463e515f8947395f2d61f3"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/models/block/sticky_piston.json"
hash = "eaf778c19899548c6490c61d5b993eaf6a52573f10987317dbf0a2deacf903d2"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/models/block/sticky_piston_inventory.json"
hash = "fc14ffec4f7472286718179902a22dcc109fdc8bbcdca8184eee6d03dbf4108c"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/models/item/sticky_piston.json"
hash = "fcd7fb9069f94602a20ba50400d16df019320ca16f97152d7501ecd5ae27696c"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/acacia_leaves.png"
hash = "c6390a288c4b590ce75c2f2d8c22047e5428b8911cfba2f49e677e5e670a9b85"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/azalea_leaves.png"
hash = "f67ee96cbd2274bce5b25efe9003157b6117fcca0c3fa3e58103fd3008692c93"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/bedrock.png"
hash = "fc8e1178e4ea08ea0d82816ffb90fe69477b9a17d672f62e3004e98604f24952"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/birch_leaves.png"
hash = "84744b437f10e03b8963efee3d5bcfe46e14a017c5da7a02708f9f54a85fe69b"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/dark_oak_leaves.png"
hash = "3a2d10812b5eda3fd1eac83081262514a35f9b2a547eff9ab09d75c3bb6285cf"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/dispenser_back.png"
hash = "d1b0b002a5d9a3c57b696c55e27e769b968f113d288b88df8356795769f1affd"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/dispenser_side_l.png"
hash = "ff59be768a2edda30361685b745e64c2feca6e23e1957ca4138bd2ed3c986280"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/dispenser_side_r.png"
hash = "3b254caf5b3b1a714b73c92f80bab7b45a77e0e61bb08c17ee92ab25f2e7a1cb"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/dispenser_top.png"
hash = "a43430ab074cefad407811d7b85c429f81a742081d1126346be4d129a492e9ef"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/fire_0.png"
hash = "3c9bd20cbfaa58ce53dd31b036b2216bd7fabab0d5aaec61c6e6feed103cf2ea"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/fire_0.png.mcmeta"
hash = "264e3b93450a755a1270e28d456208e89cf520cae41de35453ab701f60a5dc3a"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/fire_1.png"
hash = "6529107352a15e6c12e2c5c15eb1801a497ed2e94b28d3d5db7a4881d238325a"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/fire_1.png.mcmeta"
hash = "264e3b93450a755a1270e28d456208e89cf520cae41de35453ab701f60a5dc3a"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/flowering_azalea_leaves.png"
hash = "2d3df5e2e99ac56baf32afd3cfa1372c069f8ed2e9c7b9df139e43c81a0d462c"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/hopper_inside_arrow.png"
hash = "7628a957fb7680e82b8ab74c72b3e7fb759d0e84fdcd5d2c4d3c7aa39f032bb7"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/hopper_outside_arrow.png"
hash = "8d7549c7ad544add640352f93ccc2ed8ba00d3bd273c64f45b285fed2c340c07"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/jungle_leaves.png"
hash = "68a0c35db7800ff1b9a94b5b567951c446404dda1842d76f23e944ed033ae621"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/mangrove_leaves.png"
hash = "13dc88e2dd4bf9c2fbfd83d93692ea564aed1b92d1dccedfabcb981d8739a617"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/oak_leaves.png"
hash = "a388d89b84107acc9654c1f28d36e3dbe04d4245edab6cb16bdaa60373d1340d"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/observer_back.png"
hash = "fba67e5afac02ffb66b715e0c1c54b157dd02f7c927bb80768a14abb739c5b7e"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/observer_back_on.png"
hash = "11ba461422fabcff1bf67879b513086837516379d299e6e027d1594b6a44dfd9"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/observer_front_powered.png"
hash = "4748e032606d87f7559b2f07c64f3034aab39a3821445ea7e1872ea83598235a"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/observer_side.png"
hash = "721ccfb5cbf9b34646d90f7c0f2290a36404db11b1f6fe294152aaf55a3fb0d6"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/observer_side_powered.png"
hash = "7db1854f195e3c83eca4b0f2378798b2d3d9c3f3e6f399f9f002c7a7756cacdf"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/observer_top.png"
hash = "8ae4b1885740740cb1aa546284130d03104281751206d56ddba2622fd854efc0"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/observer_top_powered.png"
hash = "00e0bce07e1599ddb19a09b60a2fc508495fa48bd8ce893da0df27bb58db3454"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/piston_bottom_sticky.png"
hash = "16171cb8fa35076860febfc9b62385f03efcd3bf4e5572de82195eb614c9ae39"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/piston_side_sticky.png"
hash = "4d0881e15b5676d583de28b3e0b9fd17aff95d265292e706843d135e85f3d15e"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/soul_fire_0.png"
hash = "394da743dcad6ac3cef9b77b01bbc136e61a9943a8661a9d2454d91a7adbd8ec"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/soul_fire_0.png.mcmeta"
hash = "658d67c1b3206e23a401d04ec196512b72702b7b8c6fa0200c6c66250529bbbb"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/soul_fire_1.png"
hash = "3768e478f17c1114772e7ec7d0e8259d623267fe5071f174e5ea0a8bac4875af"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/soul_fire_1.png.mcmeta"
hash = "802acdb8f55f30146d5ed18414b21ba35650d4e550f81825ea104131c12dc4fc"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/block/spruce_leaves.png"
hash = "05b1b69f24354cab1025da77f8f16abc20e5dd1991705345bb86db32dddbd67b"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/end_crystal/end_crystal.png"
hash = "1e2c954a108ca286f9231ca243d6d08a320ccd911b10cfb6266551411d9bd6b2"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/base.png"
hash = "9bf8790c92a7d5bdabb593b8f651f9545e11d93e5f13ae2250ca5960a601de52"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/border.png"
hash = "c9015910edcafaad05d8a9cbae53fe32959e249eb9144102906a21475d2fbfe8"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/bricks.png"
hash = "a76c4ddb245e064080b0cee9f711be28ff9a6567953ece83a4b7cdb3f71e63cb"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/circle.png"
hash = "277246b0fb56605165e30381d0dbb3e1371d5a21a7b9a41ab11b25a411af7eff"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/creeper.png"
hash = "964ccb0471f4015bcd8f47197d854f775ad9aaf97d73f9c9ba3b3ec0ea77a0ff"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/cross.png"
hash = "d8ccf47666733fcca3248898b09eb5784851719d3a4b2bcf1f6be2e2d6394520"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/curly_border.png"
hash = "3fe479de708f46d8037ffa291cf6ef8fa6a7dc6bcd2b7facb885c93f79239f13"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/diagonal_left.png"
hash = "bd566379ffc78835c40501660ec2fd96d6c2cfd5cbb618cf6afcd96c5960f581"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/diagonal_right.png"
hash = "9c3123893f29c7ed3f356712e628e47be1f8c020ed9bca349d42da50f11ee5d0"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/diagonal_up_left.png"
hash = "de7da5d2d247ba122e72baa050cf4c730bf1f708f4154f0ed0bf6f6638c566a6"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/diagonal_up_right.png"
hash = "281bdf35e040fc95918c9784a06eff89a5ef5705d5aca4024d09de3355dba166"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/flower.png"
hash = "2ba3fe9f04f4d79226e20da3944acc728f181da1a4a90152a9b3de80383b2dd9"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/globe.png"
hash = "1fb54e89c5d802c0a9a3a26e65f435300da071ba77e7519c3dab7225a1712f50"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/gradient.png"
hash = "f6b08743d413ccab9ab00874d91c64e695688998bcafffe871473faaff1a50c9"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/gradient_up.png"
hash = "9c1be1518248c3d442c47ed6b05232cccfd348154cedf2706e4611362b15dcd2"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/half_horizontal.png"
hash = "d5dfe5938bfea192e73603e485fff3fca85037ab30ebd512b9e7777fc07f8e16"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/half_horizontal_bottom.png"
hash = "7422676d53db30874ed05cd52e1849c184cdcf7c78c6774e4a32767da259d178"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/half_vertical.png"
hash = "a6081101cdb28716eaf55a28660115bedc99027ee8571b9bfb0e438313a881dd"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/half_vertical_right.png"
hash = "4fcbcc483c45421155d803c9fee63e795c8d5a396316cf103e1a2b940b28da33"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/mojang.png"
hash = "4ae249a8427cb45ce2c47e2972cbdca956f27763b6759adc0cdbc0f75d6621f5"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/piglin.png"
hash = "f04f80c22e15fb09e79755b1e1baa9ed16ec1bddad71fd8151582f4d58ef744d"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/rhombus.png"
hash = "a20d790c6d3743eddfa08e82a59ccb2fafdb09ea3e4b80a56ce6d3e3632e6459"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/skull.png"
hash = "932a021413e5e4042a0e1f10a5b047b3ae58cccd95dbddb98fff287d186bc1b9"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/small_stripes.png"
hash = "77c36694334b9ab304c468428150f952e7c66d205260cecbc69a94ece978e6f0"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/square_bottom_left.png"
hash = "a7fcbed0c9126814f0b1c9b2e7663a7a25ad9282a4ea1238c10736558306d6d4"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/square_bottom_right.png"
hash = "eb853b407964216fd2bef0b1cb694e9f3e38ac3003799737b09a5d9f8d50978b"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/square_top_left.png"
hash = "4f93b94270581bb2722155ea075c69bdead298ebde8524d59bc82a900e57d3f8"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/square_top_right.png"
hash = "dba2d26c7d6484b1fcbf181291bcef0832397a3a0b1866bc40e6b97575f1ab15"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/straight_cross.png"
hash = "326d626f4e5153304e25fbf490bd2c72dc347bb8801ee54ac20cb4d83be60790"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/stripe_bottom.png"
hash = "f5d9d2d0a894e559a814ef4717294f19b30f4899751a0ef8bc041acd4fbfb8e9"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/stripe_center.png"
hash = "70d1423ab88c60365aa083681ced350336d32f23c8355354c64f23b3029606d3"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/stripe_downleft.png"
hash = "102205a5ad73e8df0ec56376b3d5d346712528660731727601e06025c6b4f567"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/stripe_downright.png"
hash = "4c03b6f059c9dd4eb819d22f8cfc3d1b343ac0c7708990a03f78dbc84754fff1"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/stripe_left.png"
hash = "d2d9d188874bbc9e8d6c0e9d7782171286c8a014cf9cd07b6a2a86ff05bd9ee7"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/stripe_middle.png"
hash = "a45978fc937820c40950b50239e45c10e169efbb587cb813598e1d74ea30d00d"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/stripe_right.png"
hash = "5529c4a2c4431f691c86661596b0bd61dc3cb6b18732eb10138a766794cedbdd"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/stripe_top.png"
hash = "cfea80424aed91ed37a8f2d58da0634e810703fa7b94b8bdb4eb8b7f634e7f67"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/triangle_bottom.png"
hash = "0a1c49c8f297fa07b7b1850937659406ab2933a22be1f176c6ca198884c6a131"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/triangle_top.png"
hash = "a1f61025284cf3ecef65be9fc9f3f328dfcd04a5c39d025e85eb8d10f93d8df0"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/triangles_bottom.png"
hash = "aaec7412573befc347a7292060083e056d2827c399697a77e4b987154b6f7e41"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/entity/shield/triangles_top.png"
hash = "afda18654cc0f106e5187e10883b76761b54199a3c87c136ec52d20011d9d400"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/gui/icons.png"
hash = "1e7dda5f36ca862f5ac55c2d9d62977523d0b1dcb6cd2a60c7da603d3482f73d"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/gui/options_background.png"
hash = "0ebfc6752a8707b1b28c2f57d17afece964a82399aac3e20328c39ece16c1519"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/item/creeper_banner_pattern.png"
hash = "b2cb93554810fd591bf2f32e88fd5a6f0382fc165ef6959d8718499f01a69ff7"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/item/flower_banner_pattern.png"
hash = "8708e99ecc76f8ace115e16e4f334e5a6538075c39c08bb890afcf06ff671815"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/item/globe_banner_pattern.png"
hash = "d23d54b4128cd823c4e398c4786a4861d9fccbc642606fd3ce89a3f4ef7689c5"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/item/gray_dye.png"
hash = "34110d5d6e35c783d10f088dffe4a05dceafc29acd70206ff71f74f2527cb27f"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/item/lime_dye.png"
hash = "f20087b0b883c656c0d81daf6b52eaf62d55ca0d9294b2011f035e594635816c"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/item/magenta_dye.png"
hash = "d779f7ca10e28b97108bd93a3d404e04daab925aae85fca4c19cec4be3c8b356"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/item/mojang_banner_pattern.png"
hash = "b7e048b518588004b025a0d7db40b54dc8c731b7c5eb8fa7525e2c259d0926fc"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/item/piglin_banner_pattern.png"
hash = "42a4b919cb7e243102b6c19f5c4bf61cba01e214f0e8a33971d1d6d1b064900d"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/item/pink_dye.png"
hash = "e7bf14eb134fe198f2f524f3a26a2cfc35eab6b96d22a2e2fb706cd50e043bcd"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/item/purple_dye.png"
hash = "f5832c6a644a31efe72955f5c4be3d34a2acd400f9a662bde9b3cb1309f6b905"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/assets/minecraft/textures/item/skull_banner_pattern.png"
hash = "e6c97491810bf241dbfbf24e5a239517f286882a8e00bef6c739afe003bb731f"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/pack.mcmeta"
hash = "ab0986208e0acd95d535bd6ba8d34b59393cfc86e67e5fb32a18f4aa21158243"
[[files]]
file = "global_packs/required_resources/vanilla_tweaks/pack.png"
hash = "57ac558151849b9969a2d2e991f0a5e4d734548e9369f5c1c539b63004c0f08f"
[[files]]
file = "mods/adorn.pw.toml"
hash = "f9cf1abe808c59f9c2ad85bb7033b6edffa133b5d870a6d3f4d718f260f0192a"
metafile = true
[[files]]
file = "mods/alternate-current.pw.toml"
hash = "fda319290cfe268fdc7c6c6ca8dcad24e51c1de98442f23f2a41d657b26fc8d0"
metafile = true
[[files]]
file = "mods/amecs.pw.toml"
hash = "65b0ccc80e7bb51344fc138cfe952a6c9cfea23db0282a8852799be0cca29b85"
metafile = true
[[files]]
file = "mods/amethyst-imbuement.pw.toml"
hash = "0a5b2bbc28ceb9c2bde1c7ab319a97acf7dd6a3ddcd1e1cef47145ddd9fbb2f5"
metafile = true
[[files]]
file = "mods/animal_feeding_trough.pw.toml"
hash = "4622fb45626c72f5310606c9db18271e18a195cf7ef57707287039dd9f81a299"
metafile = true
[[files]]
file = "mods/annotated-di.pw.toml"
hash = "a472dd8483680a2db156202f4fa2e7e07c08dbc454a504c3f2cb559658092608"
metafile = true
[[files]]
file = "mods/appleskin.pw.toml"
hash = "4d571d5ebe245ffb62a0df83e81d1c03670807d3528650d6dd9c983bd26ae860"
metafile = true
[[files]]
file = "mods/architectury-api.pw.toml"
hash = "808c30194a90fce3a57ba82e92333518f3a14a5fdb69c84b5fac247e46557632"
metafile = true
[[files]]
file = "mods/armorstandeditor.pw.toml"
hash = "05ad8e917843bc4cb4e7a6ba40fcfe07051b60d201d3aa54fab72cc50cc51ed2"
metafile = true
[[files]]
file = "mods/artifacts.pw.toml"
hash = "bf2adb4aeefb2c2f68002ff2f74e38c2a1e26b57c65977f12c68ae0a1c7bef0b"
metafile = true
[[files]]
file = "mods/auth-me.pw.toml"
hash = "b119ad0ab00cff9062b29233e4f452d21f9ce690b53426e235670d54d84ac812"
metafile = true
[[files]]
file = "mods/axes-are-weapons.pw.toml"
hash = "17286bf8c9bcbb1aae16dca55cd42d139bb034e11bca5a5284808284330b0d98"
metafile = true
[[files]]
file = "mods/bad-wither-no-cookie.pw.toml"
hash = "8819e68ae91bcffd6cdee453443a8b939892a229f78cbd114e3e594faaa491ff"
metafile = true
[[files]]
file = "mods/better-beds.pw.toml"
hash = "112cb3b761a4ef017c2123fe61c0bcd0425d67ecbbc77ea76dd4f9c6842312bf"
metafile = true
[[files]]
file = "mods/better-combat.pw.toml"
hash = "78b8d524a8f2b2bce5be13823b526e12dcb15bf7a08f0c54c045e895345ad1b5"
metafile = true
[[files]]
file = "mods/betterf3.pw.toml"
hash = "e8cd685b609577ab23e2a55ec3273a1ff9475daef52f0999b2c5d27f7c795f5c"
metafile = true
[[files]]
file = "mods/bits-and-chisels.pw.toml"
hash = "e7d7b42cc3b56d79d18599f936742b711f849b372ca4b6106a5d00d624573d59"
metafile = true
[[files]]
file = "mods/blur-fabric.pw.toml"
hash = "309fa9d0ab190059d9a13933db512f36f01ec0b40f37fa6e919ec085c686df9e"
metafile = true
[[files]]
file = "mods/bobby.pw.toml"
hash = "33d8e4f2b5e3546f8dd4df0aadcc374b2b1e811f456bdea741dc53b94ac22f11"
metafile = true
[[files]]
file = "mods/c2me-fabric.pw.toml"
hash = "01ab4442937c2d1f582722d139c0d02b3fc36c61a3eeebb4e81bd5256b7d8470"
metafile = true
[[files]]
file = "mods/campanion.pw.toml"
hash = "e351f40305f1377a4023c09e774d040e601d513bd37e307955b2f68e986a612c"
metafile = true
[[files]]
file = "mods/cardinal-components-api.pw.toml"
hash = "5d898bbdb655828c59223382f85016f8328884b3ff176b697c51e8dedaec68c1"
metafile = true
[[files]]
file = "mods/cave-enhancements.pw.toml"
hash = "64861973d33a1cb44b1ab044001169fcd4302fb7ed80ce35ad576ab4ae1171c1"
metafile = true
[[files]]
file = "mods/charm.pw.toml"
hash = "ff8960a3bf63e66854c676cf1db8b88c6666bc526e3d3562be297d94c528472a"
metafile = true
[[files]]
file = "mods/charmonium.pw.toml"
hash = "ccc10f99cb19427bbe111efeecce5c2934a02d4294b2fedc3ef1e7fdc60771d3"
metafile = true
[[files]]
file = "mods/chat-heads.pw.toml"
hash = "8440097630bb5576edaf891db7490fe9e6a6c996670e6d25b6bd027712db6050"
metafile = true
[[files]]
file = "mods/cleardespawn.pw.toml"
hash = "f55726e64eabcfdcb0b02657c74889f8e135a5424dc423c55450117618a2ad11"
metafile = true
[[files]]
file = "mods/clickthrough.pw.toml"
hash = "1a4c9d83b0709fd2f91814eb67f81e19bb1493315c42cb65efe911d0f34c5a13"
metafile = true
[[files]]
file = "mods/cloth-config.pw.toml"
hash = "213cad77d46ff46fe20780b01856cb1a8812747e9c3564203669bf3905e646e2"
metafile = true
[[files]]
file = "mods/collective.pw.toml"
hash = "e5f39c4532d249a052f38f86d5ed31decda80e191f42ca1fa5b1b2ceefcd6b02"
metafile = true
[[files]]
file = "mods/craft-slabs-back-into-blocks.pw.toml"
hash = "fe6946b960e15edcfa157894fd3a0470323e52218eee6b802ea0f1768a8157de"
metafile = true
[[files]]
file = "mods/create-fabric.pw.toml"
hash = "b6d88ec0e940243d228316c8b3a186c4bb5024e8dba627c88bdc29f93bf7e31b"
metafile = true
[[files]]
file = "mods/cull-less-leaves.pw.toml"
hash = "c06e098c6d6eda6da4492e4a8dff1796e6081bbd30f487ffb89e1ed3c485e805"
metafile = true
[[files]]
file = "mods/cyberanner-ironchest.pw.toml"
hash = "ebaf036d0d7ed508d25f08749872d1cfb4009d46ab9f7fd8bfbf1674c884a91d"
metafile = true
[[files]]
file = "mods/dark-loading-screen.pw.toml"
hash = "ee791485dbd1008c51079c693960b6555311d2fc44d2a4901b7f4455d00eea24"
metafile = true
[[files]]
file = "mods/dcwa.pw.toml"
hash = "6ec1e483b01e1feb7bb64f2f017bfd0f8a28b48a863b0c325ab7c78c86b9e2ad"
metafile = true
[[files]]
file = "mods/delightful-froge.pw.toml"
hash = "b73afcd78c08f4062c4be7e113f91764cd9fa8934f2a12f3202b43e84d3d1cda"
metafile = true
[[files]]
file = "mods/despawning-eggs-hatch.pw.toml"
hash = "fec29880f8462df1e2964f09815c75f3903f2c038879640dc39c92f537eb7548"
metafile = true
[[files]]
file = "mods/dripsounds-fabric.pw.toml"
hash = "285da02342eee9622e3d2245212165c0563103d1ed54a03d485fa6939cf0b571"
metafile = true
[[files]]
file = "mods/dynamic-fps.pw.toml"
hash = "ffc1f6d147394bfeb65b2fb9a78ca7d3365cbf5192c31af1312bc899190e4e34"
metafile = true
[[files]]
file = "mods/eating-animation.pw.toml"
hash = "f52293cc81b07666eeee3bfcf5f34039e2d2bc64cd22416b5cbdb554eec17a0e"
metafile = true
[[files]]
file = "mods/enchanting-infuser.pw.toml"
hash = "94efd0b922d000ee1418ee8a44e414fe77535b18261f3ad6e1b6f11b8402126e"
metafile = true