commit 2072f700aedc747f731fbcb4acd634f7c059ad18 Author: Dakedres Date: Sat Jan 24 05:19:02 2026 -0700 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f6aef8b --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +dist/ +*.ignore \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..4407239 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +- Requires packsquash => 0.4.0 + +## Credits + +### VanillaTweaks +This modpack packages the [VanillaTweaks]() resourcepack. A `credits.txt` file is included as per their terms. + +### Item Sprites +This modpack contains a modified version of the [Item Sprites](https://modrinth.com/resourcepack/item-sprites/versions) resourcepack which was kindly released into the public domain under the CC0 license by armet06. I only credit it because I do not believe in copyright + +### Sealed Chainmail Armor +This modpack uses the [Sealed Chainmail Armor](https://modrinth.com/resourcepack/sealed-chainmail-armor) resourcepack by hedach761 \ No newline at end of file diff --git a/build/assets/icon.png b/build/assets/icon.png new file mode 100644 index 0000000..8dbc6f2 Binary files /dev/null and b/build/assets/icon.png differ diff --git a/build/auto-update b/build/auto-update new file mode 100755 index 0000000..036b3e1 --- /dev/null +++ b/build/auto-update @@ -0,0 +1,15 @@ +#!/bin/sh + +dir="$(dirname "$(readlink -f "$0")")" +root="${dir}/../" +root="$(realpath "$root")" + +source "${dir}/pack.properties" + +cd "${dir}/legacy" +zip -rv "${root}/dist/${TITLE}_Auto-Update-Legacy.zip" +cd - +cd "${dir}/unsup" || exit +zip -rv "${root}/dist/${TITLE}_Auto-Update.zip" . +cd - || exit +printf %s\\n "Auto update distributions created!" diff --git a/build/legacy/.minecraft/packwiz-installer-bootstrap.jar b/build/legacy/.minecraft/packwiz-installer-bootstrap.jar new file mode 100644 index 0000000..84b934c Binary files /dev/null and b/build/legacy/.minecraft/packwiz-installer-bootstrap.jar differ diff --git a/build/legacy/.minecraft/packwiz-installer.jar b/build/legacy/.minecraft/packwiz-installer.jar new file mode 100644 index 0000000..7df10e6 Binary files /dev/null and b/build/legacy/.minecraft/packwiz-installer.jar differ diff --git a/build/legacy/.packignore b/build/legacy/.packignore new file mode 100644 index 0000000..e69de29 diff --git a/build/legacy/icon.png b/build/legacy/icon.png new file mode 100644 index 0000000..8dbc6f2 Binary files /dev/null and b/build/legacy/icon.png differ diff --git a/build/legacy/instance.cfg b/build/legacy/instance.cfg new file mode 100644 index 0000000..8efb987 --- /dev/null +++ b/build/legacy/instance.cfg @@ -0,0 +1,9 @@ +InstanceType=OneSix +OverrideMemory=true +MaxMemAlloc=5120 +MinMemAlloc=512 +OverrideCommands=true +PreLaunchCommand="$INST_JAVA" -jar packwiz-installer-bootstrap.jar https://dakedres.sys42.net/modpacks/raspberry-flavoured-de/pack/pack.toml +name=Raspberry Flavoured (DE) +iconKey=icon +notes=dakedres wuz here ;3 diff --git a/build/legacy/mmc-pack.json b/build/legacy/mmc-pack.json new file mode 100644 index 0000000..98612d6 --- /dev/null +++ b/build/legacy/mmc-pack.json @@ -0,0 +1,38 @@ +{ + "components": [ + { + "cachedName": "LWJGL 3", + "cachedVersion": "3.3.1", + "cachedVolatile": true, + "dependencyOnly": true, + "uid": "org.lwjgl3", + "version": "3.3.1" + }, + { + "cachedName": "Minecraft", + "cachedRequires": [ + { + "suggests": "3.3.1", + "uid": "org.lwjgl3" + } + ], + "cachedVersion": "1.19.2", + "important": true, + "uid": "net.minecraft", + "version": "1.19.2" + }, + { + "cachedName": "Forge", + "cachedRequires": [ + { + "equals": "1.19.2", + "uid": "net.minecraft" + } + ], + "cachedVersion": "43.3.7", + "uid": "net.minecraftforge", + "version": "43.3.7" + } + ], + "formatVersion": 1 +} diff --git a/build/modrinth/modrinth.index.json b/build/modrinth/modrinth.index.json new file mode 100644 index 0000000..04a9e23 --- /dev/null +++ b/build/modrinth/modrinth.index.json @@ -0,0 +1 @@ +{"dependencies":{"forge":"47.4.10","minecraft":"1.20.1"},"files":[],"formatVersion":1,"game":"minecraft","name":"pwb-test","versionId":"1.0.0"} \ No newline at end of file diff --git a/build/modrinth/overrides/unsup.ini b/build/modrinth/overrides/unsup.ini new file mode 100644 index 0000000..6d01c9f --- /dev/null +++ b/build/modrinth/overrides/unsup.ini @@ -0,0 +1,3 @@ +version=1 +source_format=packwiz +source=http://127.0.0.1:8000/pack.toml diff --git a/build/modrinth/pwb-test.mrpack b/build/modrinth/pwb-test.mrpack new file mode 100644 index 0000000..d8a380b Binary files /dev/null and b/build/modrinth/pwb-test.mrpack differ diff --git a/build/pack.properties b/build/pack.properties new file mode 100644 index 0000000..75e097c --- /dev/null +++ b/build/pack.properties @@ -0,0 +1 @@ +TITLE="Pack-With-Brooke" diff --git a/build/packsquash.toml b/build/packsquash.toml new file mode 100644 index 0000000..844bc9c --- /dev/null +++ b/build/packsquash.toml @@ -0,0 +1,11 @@ +allow_mods = ['OptiFine'] + +# Force include any weird mod asset structures +['**/*.png'] + force_include=true + +['**/*.json'] + force_include=true + +['**/*.txt'] + force_include=true diff --git a/build/packwiz b/build/packwiz new file mode 100755 index 0000000..02739ca --- /dev/null +++ b/build/packwiz @@ -0,0 +1,73 @@ +#!/bin/sh + +dir="$(dirname "$(readlink -f "$0")")" +root="${dir}/../" +root="$(realpath "$root")" + +source "${dir}/pack.properties" + +create_list() { + find "$1" -mindepth 1 -maxdepth 1 -type d | while read -r path + do + realpath -s --relative-to="${root}/pack" "$path" + done +} + +create_config() { + printf ' +pack_directory = "%s" +output_file_path = "%s.zip" +' "${root}/pack/$1" "${root}/dist/pack/$1" + cat "${dir}/packsquash.toml" +} + +package_resources() { + printf %s\\n "$resource_list" | while read -r line + do + create_config "$line" | packsquash + done +} + +package_data() { + printf %s "$data_list" | while read -r line + do + zip -r "${root}/dist/pack/${line}.zip" ${root}/pack/${line}/* + done +} + +setup_index() { + packwiz refresh + awk -i inplace -v list="$list" -F '"' ' +BEGIN { + split(list, parts, "\n") + for (i in parts) paths[parts[i] ".zip"]=1 +} +($1 ~ /^file/) && ($2 in paths) { + print "side = \"client\"" +} +{ print } +' index.toml +} + +resource_list="$(create_list "${root}/pack/config/paxi/resourcepacks")" + +# echo "$resource_list" + +data_list="$(create_list "${root}/pack/config/paxi/datapacks")" + +mkdir -p "${root}/dist" + +rsync -av --delete --progress "${root}/pack" "${root}/dist" \ + $(printf " --exclude %s" $resource_list) +# # $(printf " --exclude %s" $data_list) + +package_resources +# package_dat +cd "${root}/dist/pack" || exit +setup_index + +packwiz cf export -o "${root}/dist/${TITLE}_Curseforge.zip" +packwiz cf export -o "${root}/dist/${TITLE}_Server.zip" -s server +cd - || exit + +echo "Done!" diff --git a/build/run b/build/run new file mode 100755 index 0000000..2c6ef01 --- /dev/null +++ b/build/run @@ -0,0 +1,6 @@ +#!/bin/sh + +dir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" + +"$dir/auto-update" +"$dir/packwiz" diff --git a/build/unsup/instance.cfg b/build/unsup/instance.cfg new file mode 100644 index 0000000..acb3796 --- /dev/null +++ b/build/unsup/instance.cfg @@ -0,0 +1,33 @@ +[General] +ConfigVersion=1.3 + +ExportName=Pack With Brooke +name=Pack With Brooke +notes=dakedres wuz here ;3 +iconKey=pwb +shortcuts= + +Env={} +ExportOptionalFiles=true +ExportSummary= +ExportVersion=autoupdate +GlobalDataPacksEnabled=false +GlobalDataPacksPath= +InstanceType=OneSix +ManagedPack=false + +AutoCloseConsole=false +AutomaticJava=true +IgnoreJavaCompatibility=false +InstanceAccountId= + +JoinServerOnLaunch=false +JoinServerOnLaunchAddress= +JoinWorldOnLaunch= +LaunchMaximized=false +LogPrePostOutput=true + +JvmArgs= +OverrideMemory=true +MaxMemAlloc=5120 +MinMemAlloc=512 diff --git a/build/unsup/minecraft/unsup.ini b/build/unsup/minecraft/unsup.ini new file mode 100644 index 0000000..1d22f80 --- /dev/null +++ b/build/unsup/minecraft/unsup.ini @@ -0,0 +1,6 @@ +version=1 + +source_format=packwiz +source=http://127.0.0.1:8000/pack.toml + +offer_change_flavors=true diff --git a/build/unsup/mmc-pack.json b/build/unsup/mmc-pack.json new file mode 100644 index 0000000..1b6f2c3 --- /dev/null +++ b/build/unsup/mmc-pack.json @@ -0,0 +1,43 @@ +{ + "components": [ + { + "cachedName": "LWJGL 3", + "cachedVersion": "3.3.1", + "cachedVolatile": true, + "dependencyOnly": true, + "uid": "org.lwjgl3", + "version": "3.3.1" + }, + { + "cachedName": "Minecraft", + "cachedRequires": [ + { + "suggests": "3.3.1", + "uid": "org.lwjgl3" + } + ], + "cachedVersion": "1.20.1", + "important": true, + "uid": "net.minecraft", + "version": "1.20.1" + }, + { + "cachedName": "Forge", + "cachedRequires": [ + { + "equals": "1.20.1", + "uid": "net.minecraft" + } + ], + "cachedVersion": "47.4.10", + "uid": "net.minecraftforge", + "version": "47.4.10" + }, + { + "cachedName": "unsup", + "cachedVersion": "1.2.0-pre4", + "uid": "com.unascribed.unsup" + } + ], + "formatVersion": 1 +} diff --git a/build/unsup/patches/com.unascribed.unsup.json b/build/unsup/patches/com.unascribed.unsup.json new file mode 100644 index 0000000..593fcd8 --- /dev/null +++ b/build/unsup/patches/com.unascribed.unsup.json @@ -0,0 +1,12 @@ +{ + "formatVersion": 1, + "name": "unsup", + "uid": "com.unascribed.unsup", + "version": "1.2.0-pre4", + "+agents": [ + { + "name": "com.unascribed:unsup:1.2.0-pre4", + "url": "https://repo.sleeping.town" + } + ] +} diff --git a/build/unsup/pwb.png b/build/unsup/pwb.png new file mode 100644 index 0000000..8dbc6f2 Binary files /dev/null and b/build/unsup/pwb.png differ diff --git a/credits.txt b/credits.txt new file mode 100644 index 0000000..4469307 --- /dev/null +++ b/credits.txt @@ -0,0 +1,3 @@ +Credits: + + \ No newline at end of file diff --git a/pack/.packwizignore b/pack/.packwizignore new file mode 100644 index 0000000..aef7ddf --- /dev/null +++ b/pack/.packwizignore @@ -0,0 +1,2 @@ +unsup.toml +*.kate.swp diff --git a/pack/config/Elenai-Dodge-2-Client.toml b/pack/config/Elenai-Dodge-2-Client.toml new file mode 100644 index 0000000..1a5efa0 --- /dev/null +++ b/pack/config/Elenai-Dodge-2-Client.toml @@ -0,0 +1,9 @@ + +["Elenai Dodge 2's Config"] + #Whether to show dodge animations + "Dodge Animations" = true + #Enable this to allow for dodging by double tapping a movement key + "Double Tap Mode" = false + #How many system ticks you have between double taps for them to register + "Double Tap Ticks" = 215 + diff --git a/pack/config/Elenai-Dodge-2-Common.toml b/pack/config/Elenai-Dodge-2-Common.toml new file mode 100644 index 0000000..6fd3b49 --- /dev/null +++ b/pack/config/Elenai-Dodge-2-Common.toml @@ -0,0 +1,15 @@ + +["Elenai Dodge 2's Config"] + #How many ticks it takes after dodging before you can dodge again + "Dodge Cooldown" = 16 + #How many ticks the player is invincible for after dodging + "Invincibility Ticks" = 6 + #How many half feathers it costs to dodge + "Dodge Cost" = 4 + #How far the player moves when dodging + "Dodge Strength" = 0.25 + #How high the player moves when dodging + "Dodge Height" = 0.2 + #Whether the player can dodge in mid-air + "Dodge Whilst Airborne" = false + diff --git a/pack/config/Feathers-Client.toml b/pack/config/Feathers-Client.toml new file mode 100644 index 0000000..e0d7e2c --- /dev/null +++ b/pack/config/Feathers-Client.toml @@ -0,0 +1,25 @@ + +["Feathers' Config"] + #Fade the HUD overlay if the feathers are full. + "Fade When Full" = false + #Duration (in ticks) before the HUD overlay fades. + "Fade Cooldown" = 60 + #Duration (in ticks) of the HUD Fade-in animation. + "Fade-in Duration" = 40 + #Duration (in ticks) of the HUD Fade-out animation. + "Fade-out Duration" = 40 + #Whether the feathers flash white when regenerating. + "Regeneration Effect" = true + #Whether a sound is played when feathers freeze in cold biomes + "Cold Sound Effect" = true + #Whether armor weights are displayed when hovering over an item + "Display Weights in Inventory" = true + #Whether armor weights are displayed as icons (true) or text (false) when hovering over an item + "Display Weight As Icons" = false + #Whether feather icons are affected by icons on the right side of the HUD. + "Feathers Affected by Right Side Icons" = true + #How far left or right you want the feathers to be + "HUD X Offset" = 0 + #How far up or down you want the feathers to be. TIP: use this for compatibility with mods that add other bars such as thirst + "HUD Y Offset" = -2 + diff --git a/pack/config/Feathers-Common.toml b/pack/config/Feathers-Common.toml new file mode 100644 index 0000000..30ff3db --- /dev/null +++ b/pack/config/Feathers-Common.toml @@ -0,0 +1,13 @@ + +["Feathers' Config"] + #How many ticks it takes to regenerate half a feather. + "Feathers Cooldown" = 30 + #How many half feathers each item weighs. + "Armor Weights Override" = ["item.minecraft.turtle_helmet:2", "item.minecraft.leather_helmet:1", "item.minecraft.leather_chestplate:3", "item.minecraft.leather_leggings:2", "item.minecraft.leather_boots:1", "item.minecraft.chainmail_helmet:0", "item.minecraft.chainmail_chestplate:5", "item.minecraft.chainmail_leggings:4", "item.minecraft.chainmail_boots:1", "item.minecraft.iron_helmet:2", "item.minecraft.iron_chestplate:6", "item.minecraft.iron_leggings:5", "item.minecraft.iron_boots:2", "item.minecraft.diamond_helmet:3", "item.minecraft.diamond_chestplate:8", "item.minecraft.diamond_leggings:6", "item.minecraft.diamond_boots:3", "item.minecraft.golden_helmet:2", "item.minecraft.golden_chestplate:5", "item.minecraft.golden_leggings:3", "item.minecraft.golden_boots:1", "item.minecraft.netherite_helmet:3", "item.minecraft.netherite_chestplate:8", "item.minecraft.netherite_leggings:6", "item.minecraft.netherite_boots:3", "item.yttr.suit_helmet:5", "item.yttr.suit_chestplate:10", "item.yttr.suit_leggings:8", "item.yttr.suit_boots:5", "item.yttr.goggles:0", "item.spectrum.fetchling_helmet:3", "item.spectrum.ferocious_chestplate:7", "item.spectrum.sylph_leggings:5", "item.spectrum.oread_boots:3", "item.spectrum.bedrock_helmet:5", "item.spectrum.bedrock_chestplate:13", "item.spectrum.bedrock_leggings:9", "item.spectrum.bedrock_boots:5", "item.additionaladditions.rose_gold_boots:2", "item.additionaladditions.rose_gold_helmet:2", "item.additionaladditions.rose_gold_chestplate:6", "item.additionaladditions.rose_gold_leggings:5"] + #If enabled, armor types have weight, this reduces the amount of feathers you can use based on how heavy your armor is + "Enable Armor Weights" = true + #Whether feathers freeze in cold biomes. If they do, they don't regenerate until in a different biome + "Enable Frost In Cold Biomes" = false + #Whether the Lightweight enchantment can be enhanted in an enchantment table, or if it is treasure only. + "Enable Lightweight Enchantment in Table" = true + diff --git a/pack/config/blockswap/block_swap.json5 b/pack/config/blockswap/block_swap.json5 new file mode 100644 index 0000000..1fc3bba --- /dev/null +++ b/pack/config/blockswap/block_swap.json5 @@ -0,0 +1,90 @@ +/* +This file uses the ".json5" file extension which allows for comments like this in a json file! +Your text editor may show this file with invalid/no syntax, if so, we recommend you download: + +VSCode: https://code.visualstudio.com/ +JSON5 plugin(for VSCode): https://marketplace.visualstudio.com/items?itemName=mrmlnc.vscode-json5 + +to make editing this file much easier. +*/ +{ + // Generates all block states for all blocks in the registry. + "generate_all_known_states": true, + // Whether blocks are replaced in existing chunks. + "retro_gen": false, + /* A map of states that specifies what the "old" block state is and what its "new" block state is. + See "known_states" folder("generate_all_known_states" must be set to true in this config) to see all known block states available for all blocks available in the registry. + Example: + "state_swapper": [ + { + "new": { + "Name": "minecraft:birch_log", + // Properties define the state of this block/fluid. + "Properties": { + "axis": "x" + } + }, + "old": { + "Name": "minecraft:oak_log", + // Properties define the state of this block/fluid. + "Properties": { + "axis": "z" + } + } + }, + { + "new": { + "Name": "minecraft:birch_leaves", + // Properties define the state of this block/fluid. + "Properties": { + "distance": "7", + "persistent": "true" + } + }, + "old": { + "Name": "minecraft:acacia_log", + // Properties define the state of this block/fluid. + "Properties": { + "axis": "z" + } + } + }, + { + "new": { + "Name": "minecraft:jungle_log", + // Properties define the state of this block/fluid. + "Properties": { + "axis": "x" + } + }, + "old": { + "Name": "minecraft:birch_log", + // Properties define the state of this block/fluid. + "Properties": { + "axis": "z" + } + } + }, + { + "new": { + "Name": "minecraft:jungle_planks", + }, + "old": { + "Name": "minecraft:acacia_planks", + } + } + } + ] + */ + "state_swapper": [], + /* A map of blocks that specifies what the "old" block is and what its "new" block is. + Example: + "swapper": { + "minecraft:coarse_dirt": "minecraft:dirt", + "minecraft:diamond_block": "minecraft:emerald_block" + } + */ + "swapper": { + "minecraft:enchanting_table": "minecraft:anvil" + } +} diff --git a/pack/config/blockswap/missing_block_ids.json5 b/pack/config/blockswap/missing_block_ids.json5 new file mode 100644 index 0000000..74b38a4 --- /dev/null +++ b/pack/config/blockswap/missing_block_ids.json5 @@ -0,0 +1,20 @@ +/* +This file uses the ".json5" file extension which allows for comments like this in a json file! +Your text editor may show this file with invalid/no syntax, if so, we recommend you download: + +VSCode: https://code.visualstudio.com/ +JSON5 plugin(for VSCode): https://marketplace.visualstudio.com/items?itemName=mrmlnc.vscode-json5 + +to make editing this file much easier. +*/ +{ + /* A map of blocks that specifies what the "old" broken block is and what its "new" functional block is. + Example: + "swapper": { + Broken ID Valid ID + "minecraft:coarse_dirt": "minecraft:dirt", + "minecraft:diamond_block": "minecraft:emerald_block" + } + */ + "id_remapper": { } +} \ No newline at end of file diff --git a/pack/config/clean_tooltips-client.toml b/pack/config/clean_tooltips-client.toml new file mode 100644 index 0000000..8f3f8d0 --- /dev/null +++ b/pack/config/clean_tooltips-client.toml @@ -0,0 +1,24 @@ + +[durability] + #Should the Durability section be enabled? + enabled = true + +[enchantments] + #Should the fancied up Enchantment section be used? + enabled = true + + [enchantments.color] + #The color curses should have + #Allowed Values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE, OBFUSCATED, BOLD, STRIKETHROUGH, UNDERLINE, ITALIC, RESET + curse = "RED" + #The color normal enchantments should have + #Allowed Values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE, OBFUSCATED, BOLD, STRIKETHROUGH, UNDERLINE, ITALIC, RESET + normal = "GREEN" + #The color max level enchantments should have + #Allowed Values: BLACK, DARK_BLUE, DARK_GREEN, DARK_AQUA, DARK_RED, DARK_PURPLE, GOLD, GRAY, DARK_GRAY, BLUE, GREEN, AQUA, RED, LIGHT_PURPLE, YELLOW, WHITE, OBFUSCATED, BOLD, STRIKETHROUGH, UNDERLINE, ITALIC, RESET + max_level = "GOLD" + +[color] + #Should the fancied up Color section be used? + enabled = true + diff --git a/pack/config/emi.css b/pack/config/emi.css new file mode 100644 index 0000000..a01f02d --- /dev/null +++ b/pack/config/emi.css @@ -0,0 +1,490 @@ +/** EMI Config */ + +#general { + /** + * Whether EMI is enabled and visible. + */ + enabled: true; + + /** + * Whether cheating in items is enabled. + */ + cheat-mode: true; + + /** + * How much EMI should use tooltips and popups to show controls and information. + */ + help-level: normal; + + /** + * Where EMI should pull stacks from to populate the index. + */ + index-source: creative; + + /** + * Which sidebar should be searched using the search bar. + */ + search-sidebar: right; + + /** + * Whether normal search queries should include the tooltip. + */ + search-tooltip-by-default: true; + + /** + * Whether normal search queries should include the mod name. + */ + search-mod-name-by-default: false; + + /** + * Whether normal search queries should include the stack's tags. + */ + search-tags-by-default: false; +} + +#ui { + /** + * Which action should be performed when clicking the recipe book. + */ + recipe-book-action: toggle-craftables; + + /** + * Where to display status effects in the inventory. + */ + effect-location: top; + + /** + * Whether to display a gray overlay when hovering over a stack. + */ + show-hover-overlay: true; + + /** + * Whether to add mod name to tooltips + */ + append-mod-id: false; + + /** + * Whether to add mod name to item tooltips, in case another mod provides behavior + */ + append-item-mod-id: false; + + /** + * Prevents recipes being quick crafted from shifting around under the cursor. + */ + miscraft-prevention: true; + + /** + * The unit to display fluids as. + */ + fluid-unit: millibuckets; + + /** + * Whether to use the batched render system. Batching is faster, but may have + * incompatibilities with shaders or other mods. + */ + use-batched-renderer: true; + + /** + * Whether to have the search bar in the center of the screen, instead of to the + * side. + */ + center-search-bar: true; + + /** + * Which sidebar type to switch to when searching. + */ + search-sidebar-focus: index; + + /** + * Which sidebar type to focus when the search is empty. + */ + empty-search-sidebar-focus: empty; + + /** + * Whether the EMI config button should be visible. + */ + emi-config-button-visibility: shown; + + /** + * Whether the recipe tree button should be visible. + */ + recipe-tree-button-visibility: auto; + + /** + * The maximum height the recipe screen will grow to be if space is available in + * pixels. + */ + maximum-recipe-screen-height: 256; + + /** + * The minimum width of the recipe screen in pixels. Controls how many tabs there + * can be, and where the page switching buttons go. The default is 176, the width + * of most screens. + */ + minimum-recipe-screen-width: 176; + + /** + * The amount of vertical margin to give in the recipe screen. + */ + vertical-margin: 20; + + /** + * Where to show workstations in the recipe screen + */ + workstation-location: bottom; + + /** + * Display cost per batch when hovering a recipe output + */ + show-cost-per-batch: true; + + /** + * Whether recipes should have a button to set as default. + */ + recipe-default-button: true; + + /** + * Whether recipes should have a button to show the recipe tree. + */ + recipe-tree-button: true; + + /** + * Whether recipes should have a button to fill the ingredients in a handler. + */ + recipe-fill-button: true; + + /** + * Whether recipes should have a button to take a screenshot of the recipe. + */ + recipe-screenshot-button: false; + + /** + * The GUI scale at which recipe screenshots are saved. Use 0 to use the current + * GUI scale. + */ + recipe-screenshot-scale: 0; + + /** + * The pages in the left sidebar + */ + left-sidebar-pages: favorites; + + /** + * The subpanels in the left sidebar + */ + left-sidebar-subpanels: none; + + /** + * How many columns and rows of ingredients to limit the left sidebar to + */ + left-sidebar-size: 9, 8; + + /** + * How much space to maintain between the left sidebar and obstructions, in pixels + */ + left-sidebar-margins: 2, 2, 2, 2; + + /** + * Where to position the left sidebar + */ + left-sidebar-align: right, center; + + /** + * Whether to render the header buttons and page count for the left sidebar + */ + left-sidebar-header: visible; + + /** + * Which theme to use for the left sidebar + */ + left-sidebar-theme: modern; + + /** + * The pages in the right sidebar + */ + right-sidebar-pages: index, empty; + + /** + * The subpanels in the right sidebar + */ + right-sidebar-subpanels: none; + + /** + * How many columns and rows of ingredients to limit the right sidebar to + */ + right-sidebar-size: 9, 8; + + /** + * How much space to maintain between the right sidebar and obstructions, in pixels + */ + right-sidebar-margins: 2, 2, 2, 2; + + /** + * Where to position the right sidebar + */ + right-sidebar-align: left, center; + + /** + * Whether to render the header buttons and page count for the right sidebar + */ + right-sidebar-header: visible; + + /** + * Which theme to use for the right sidebar + */ + right-sidebar-theme: modern; + + /** + * The pages in the top sidebar + */ + top-sidebar-pages: none; + + /** + * The subpanels in the top sidebar + */ + top-sidebar-subpanels: none; + + /** + * How many columns and rows of ingredients to limit the top sidebar to + */ + top-sidebar-size: 9, 9; + + /** + * How much space to maintain between the top sidebar and obstructions, in pixels + */ + top-sidebar-margins: 2, 2, 2, 2; + + /** + * Where to position the top sidebar + */ + top-sidebar-align: center, center; + + /** + * Whether to render the header buttons and page count for the top sidebar + */ + top-sidebar-header: visible; + + /** + * Which theme to use for the top sidebar + */ + top-sidebar-theme: transparent; + + /** + * The pages in the bottom sidebar + */ + bottom-sidebar-pages: none; + + /** + * The subpanels in the bottom sidebar + */ + bottom-sidebar-subpanels: none; + + /** + * How many columns and rows of ingredients to limit the bottom sidebar to + */ + bottom-sidebar-size: 9, 9; + + /** + * How much space to maintain between the bottom sidebar and obstructions, in + * pixels + */ + bottom-sidebar-margins: 2, 2, 2, 2; + + /** + * Where to position the bottom sidebar + */ + bottom-sidebar-align: center, center; + + /** + * Whether to render the header buttons and page count for the bottom sidebar + */ + bottom-sidebar-header: visible; + + /** + * Which theme to use for the bottom sidebar + */ + bottom-sidebar-theme: transparent; +} + +#binds { + /** + * Toggle the visibility of EMI. + */ + toggle-visibility: "ctrl key.keyboard.o"; + + /** + * Focuses the search bar. + */ + focus-search: "ctrl key.keyboard.f"; + + /** + * Clears the search bar. + */ + clear-search: "key.keyboard.unknown"; + + /** + * Display the recipes for creating a stack. + */ + view-recipes: "key.keyboard.r"; + view-recipes: "key.mouse.left"; + + /** + * Display the recipes that can be created using a stack. + */ + view-uses: "key.keyboard.u"; + view-uses: "key.mouse.right"; + + /** + * Favorite the item to display on the side of the screen opposite of recipies for + * quick access. + */ + favorite: "key.keyboard.a"; + + /** + * Set the default recipe for a given stack in the output of a recipe to that + * recipe. + */ + default-stack: "ctrl key.mouse.left"; + + /** + * Display the recipe tree for a given stack. + */ + view-stack-tree: "key.keyboard.unknown"; + + /** + * Display the recipe tree. + */ + view-tree: "key.keyboard.unknown"; + + /** + * Return to the previous page in EMI. + */ + back: "key.keyboard.backspace"; + + /** + * Return to the next page in EMI after going back. + */ + forward: "key.keyboard.unknown"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for a single result. + */ + craft-one: "key.mouse.left"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for as many results as possible. + */ + craft-all: "shift key.mouse.left"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for a single result and put in inventory if possible. + */ + craft-one-to-inventory: "key.keyboard.unknown"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for as many results as possible and put in inventory if + * possible. + */ + craft-all-to-inventory: "key.keyboard.unknown"; + + /** + * When on a stack with an associated recipe: + * Move ingredients for a single result and put in cursor if possible. + */ + craft-one-to-cursor: "ctrl key.mouse.left"; + + /** + * Display the recipe that will be used to craft on a stack with no recipe context. + */ + show-craft: "key.keyboard.left.shift"; + + /** + * Cheat in one of an item into the inventory. + */ + cheat-one-to-inventory: "ctrl key.mouse.right"; + + /** + * Cheat in a stack of an item into the inventory. + */ + cheat-stack-to-inventory: "ctrl key.mouse.left"; + + /** + * Cheat in one of an item into the cursor. + */ + cheat-one-to-cursor: "ctrl key.mouse.middle"; + + /** + * Cheat in a stack of an item into the cursor. + */ + cheat-stack-to-cursor: "key.keyboard.unknown"; + + /** + * Delete the stack in the cursor when hovering the index + */ + delete-cursor-stack: "key.mouse.left"; + + /** + * Copies the hovered recipe's ID to the clipboard + */ + copy-recipe-id: "key.keyboard.unknown"; + + /** + * In edit mode, hide the hovered stack + */ + hide-stack: "ctrl key.mouse.left"; + + /** + * In edit mode, hide stacks with the hovered stack's id + */ + hide-stack-by-id: "ctrl shift key.mouse.left"; +} + +#dev { + /** + * Whether development functions should be enabled. Not recommended for general + * play. + */ + dev-mode: false; + + /** + * Whether editing the index is enabled + */ + edit-mode: false; + + /** + * Whether to log untranslated tags as warnings. + */ + log-untranslated-tags: false; + + /** + * Whether to log ingredients that don't have a representative tag as warnings. + */ + log-non-tag-ingredients: false; + + /** + * Whether hovering the output of a recipe should show the recipe's EMI ID. + */ + show-recipe-ids: false; + + /** + * Whether to display additional widgets added to recipes from other mods. + * These are typically developer facing and compatibility related, and not useful + * for players. + */ + show-recipe-decorators: false; + + /** + * Whether stacks in the index should display a highlight if they have a recipe + * default. + */ + highlight-defaulted: false; + + /** + * Whether to display exclusion areas + */ + highlight-exclusion-areas: false; +} diff --git a/pack/config/fml.toml b/pack/config/fml.toml new file mode 100644 index 0000000..8152617 --- /dev/null +++ b/pack/config/fml.toml @@ -0,0 +1,29 @@ +#Early window height +earlyWindowHeight = 480 +#Enable forge global version checking +versionCheck = false +#Should we control the window. Disabling this disables new GL features and can be bad for mods that rely on them. +earlyWindowControl = true +#Early window framebuffer scale +earlyWindowFBScale = 1 +#Early window provider +earlyWindowProvider = "fmlearlywindow" +#Early window width +earlyWindowWidth = 854 +#Early window starts maximized +earlyWindowMaximized = false +#Default config path for servers +defaultConfigPath = "defaultconfigs" +#Disables Optimized DFU client-side - already disabled on servers +disableOptimizedDFU = true +#Skip specific GL versions, may help with buggy graphics card drivers +earlyWindowSkipGLVersions = [] +#Whether to log a help message on first attempt, to aid troubleshooting. This setting should automatically disable itself after a successful launch +earlyWindowLogHelpMessage = false +#Max threads for early initialization parallelism, -1 is based on processor count +maxThreads = -1 +#Squir? +earlyWindowSquir = false +#Whether to show CPU usage stats in early window +earlyWindowShowCPU = false + diff --git a/pack/config/fog/config.json b/pack/config/fog/config.json new file mode 100644 index 0000000..104e497 --- /dev/null +++ b/pack/config/fog/config.json @@ -0,0 +1,20 @@ +{ + "disableMod": false, + "disabledDimensions": [ + "minecraft:the_nether" + ], + "disableRaininessEffect": false, + "disableUndergroundFogMultiplier": false, + "disableBiomeFogColour": false, + "disableCloudWhitening": false, + "initialFogStart": 0.1, + "initialFogEnd": 0.85, + "raininessTransitionSpeed": 0.005, + "undergroundnessTransitionSpeed": 0.005, + "fogStartTransitionSpeed": 0.005, + "fogEndTransitionSpeed": 0.005, + "darknessTransitionSpeed": 0.005, + "fogColorTransitionSpeed": 0.025, + "startMultiplierTransitionSpeed": 0.0075, + "endMultiplierTransitionSpeed": 0.0075 +} \ No newline at end of file diff --git a/pack/config/forgery/block_logo.ini b/pack/config/forgery/block_logo.ini new file mode 100644 index 0000000..7b1c81f --- /dev/null +++ b/pack/config/forgery/block_logo.ini @@ -0,0 +1,29 @@ +; NOTICE: This file does nothing if woina.block_logo is disabled. + +[general] +; If true, the animation goes from right to left instead of left to right. +; Can be set to "random" to pick left or right randomly. +reverse=false +; Play block placement sounds as the blocks land. +sound=false + +[shadow] +; What color the shadow under the blocks should be. +; Range 0-255 for each component. +red=0 +green=0 +blue=0 +alpha=225 + +; You can map pixel colors to blocks here. Syntax is straightforward; key +; is a 24-bit hex color, value is the identifier of the block to render. You +; may specify multiple identifiers separated by spaces, in which case a random +; one will be chosen. +; Unrecognized colors in the PNG are an error. Anything that is fully +; transparent is treated as absent. Pixels that aren't fully opaque or +; fully transparent are an error. +[pixels] +; Default. Black pixels are stone. +000000=minecraft:stone +; Example: Random planks. +;000000=minecraft:oak_planks minecraft:spruce_planks minecraft:birch_planks diff --git a/pack/config/forgery/block_logo.png b/pack/config/forgery/block_logo.png new file mode 100644 index 0000000..24fc1e4 Binary files /dev/null and b/pack/config/forgery/block_logo.png differ diff --git a/pack/config/forgery/classic_block_drops.ini b/pack/config/forgery/classic_block_drops.ini new file mode 100644 index 0000000..1f931c2 --- /dev/null +++ b/pack/config/forgery/classic_block_drops.ini @@ -0,0 +1,111 @@ +; NOTICE: This file does nothing if woina.classic_block_drops is disabled. + +; This is a whitelist of "safe" blocks with tileable textures that can be +; rendered with the better-looking and more-faithful method of rendering a +; portion of the texture, rather than the mipmapped texture. + +; Rules are processed in the order they're defined. The first matching rule +; wins, regardless of its value. + +; Heuristics for basic mod compatibility and less typing. Specify an item's ID +; with a value of false above to override. +[@heuristics] +*_glazed_terracotta=false + +*_cobblestone=true +cobblestone_*=true +*_planks=true +*_nylium=true +*_log=true +*_wood=true +*_stem=true +*_hyphae=true +*_ore=true +*_sand=true +*_gravel=true +*_wool=true +*_planks_slab=true +*_terracotta=true +*_sandstone=true +*_concrete=true +*_concrete_powder=true +*_leaves=true +*_carpet=true + +[minecraft:] +stone=true +granite=true +diorite=true +andesite=true +grass_block=true +dirt=true +coarse_dirt=true +podzol=true +cobblestone=true +bedrock=true +sand=true +gravel=true +; why are these not called X_planks_slab??? +oak_slab=true +spruce_slab=true +birch_slab=true +jungle_slab=true +acacia_slab=true +dark_oak_slab=true +crimson_slab=true +warped_slab=true +stone_slab=true +sandstone_slab=true +petrified_oak_slab=true ; can't believe this is still in the game +cobblestone_slab=true +red_sandstone_slab=true +prismarine_slab=true +dark_prismarine_slab=true +mossy_cobblestone=true +obsidian=true +oak_stairs=true +spruce_stairs=true +birch_stairs=true +jungle_stairs=true +acacia_stairs=true +dark_oak_stairs=true +crimson_stairs=true +warped_stairs=true +stone_stairs=true +sandstone_stairs=true +cobblestone_stairs=true +red_sandstone_stairs=true +prismarine_stairs=true +dark_prismarine_stairs=true +diamond_block=true +ice=true +snow=true +clay=true +netherrack=true +soul_sand=true +soul_soil=true +basalt=true +glowstone=true +mycelium=true +end_stone=true +emerald_block=true +terracotta=true +coal_block=true +packed_ice=true +prismarine=true +dark_prismarine=true +magma_block=true +nether_wart_block=true +warped_wart_block=true +blue_ice=true +ancient_debris=true +blackstone=true +blackstone_slab=true +blackstone_stairs=true +farmland=true +infested_stone=true +infested_cobblestone=true +brown_mushroom_block=true +red_mushroom_block=true +honeycomb_block=true +redstone_block=true \ No newline at end of file diff --git a/pack/config/forgery/dimensional_tools.ini b/pack/config/forgery/dimensional_tools.ini new file mode 100644 index 0000000..9a4503c --- /dev/null +++ b/pack/config/forgery/dimensional_tools.ini @@ -0,0 +1,126 @@ +; NOTICE: This file does nothing if mechanics.dimensional_tools is disabled. + +; The default config works identically to the old gold_tools_useful_in_nether +; tweak. + +; Block-to-dimension associations. Blocks that are associated with a dimension +; deal extra damage to incompatible tools. Normally, these associations only +; apply if the block is *in* the dimension it's associated with, but if you +; suffix the dimension with a ! then the block will always apply dimensional +; effects. You can use tags by prefixing with a #; Fabrication's INI loader +; only recognizes semicolon as a comment. You can associate a block with more +; than one dimension by specifying it multiple times. +; +; Note: No checking is performed that a dimension ID refers to an extant +; dimension, so you can use this to describe non-dimensional relationships too +; if you like. +[blocks.minecraft:] +gravel=the_nether +nether_bricks=the_nether +nether_brick_fence=the_nether +nether_brick_slab=the_nether +nether_brick_stairs=the_nether +nether_brick_wall=the_nether +nether_wart_block=the_nether +warped_wart_block=the_nether +#base_stone_nether=the_nether! +#nylium=the_nether! +#crimson_stems=the_nether! +#warped_stems=the_nether! +soul_sand=the_nether! +soul_soil=the_nether! +glowstone=the_nether! +shroomlight=the_nether! +nether_gold_ore=the_nether! +nether_quartz_ore=the_nether! +magma_block=the_nether! +ancient_debris=the_nether! +; Legacy tags +#fabrication:nether_blocks_only_in_nether=the_nether +#fabrication:nether_blocks=the_nether! + +; Associated tools don't consider damage factors when breaking blocks that are +; associated with the same dimension. Suffixing a dimension with a ! here +; "hard-associates" the tool. You can use tags by prefixing with a #; +; Fabrication's INI loader only recognizes semicolon as a comment. +[tools.minecraft:] +golden_sword=the_nether! +golden_pickaxe=the_nether! +golden_hoe=the_nether! +golden_shovel=the_nether! +golden_axe=the_nether! +netherite_sword=the_nether +netherite_pickaxe=the_nether +netherite_hoe=the_nether +netherite_shovel=the_nether +netherite_axe=the_nether +; Legacy tags +#fabrication:gold_tools=the_nether! +#fabrication:nether_tools=the_nether + +; Tools crafted with only associated items will be associated with the given +; dimension. A value of * makes the material dimension-agnostic and ignored for +; the purposes of dimensional association. Presence of any ingredients not in +; this list will cause the association to fail. You can use tags by prefixing +; with a #. You can suffix with ! for a "hard" association. +[materials.minecraft:] +stick=* +crimson_planks=the_nether +warped_planks=the_nether +blackstone=the_nether + +; Only items in this list will be affected by dimensional materials crafting. +; You can use tags by prefixing with a #. +[substitutable.minecraft:] +wooden_sword=true +wooden_pickaxe=true +wooden_hoe=true +wooden_shovel=true +wooden_axe=true +stone_sword=true +stone_pickaxe=true +stone_hoe=true +stone_shovel=true +stone_axe=true +; Legacy tag +#fabrication:possibly_fungal_tools=true + +; Find-and-replace will be performed on item names for things crafted that are +; affected by the above materials section. Key is a dimension ID, followed by a +; slash, then the thing to find, then the value is what to replace it with. +; Note that these substitutions are performed on the server out of necessity, +; and therefore will always use the English names. The server does not have +; non-English language data. +; +; If a crafted tool matches multiple dimensions, all the matching name +; substitutions will be applied in the order they're defined. +[name_substitutions.minecraft:] +the_nether/Wooden=Fungal +the_nether/Stone=Blackstone + +; Assign damage factors when using tools associated with a given dimension +; on blocks associated with another. Syntax is tool dimension, then a greater +; than sign (>), then the block dimension. Either dimension, but not both, can +; be *, in which case it matches all dimensions except the one on the other +; side of the >. For example, *>the_nether matches all non-Nether tools that +; are being used on Nether blocks. overworld>* matches all Overworld tools that +; are being used on non-Overworld blocks. * also matches tools and blocks with +; no associated dimension. +; +; Negative values result in *less* damage being dealt rather than more. You may +; specify "Infinity" instead of a number to make the tool break instantly, or +; specify "0" to make the tool take no damage. +; +; If a tool has more than one dimension, if it matches only positive values, +; the greatest one will be used. If it matches a mixture of negative and +; positive values, or only matches negatives, the least (furthest from zero) +; will be used. If it matches 0 at all, that will be used. +; +; If a tool matches more than one damage factor *for a given dimension*, then +; fully specified (A>B) values are preferred, then "against foreign block" +; values (A>*), then finally "foreign tool against block" values (*>A). +[damage_factors.minecraft:] +; Using any non-Nether tools on Nether-associated blocks deals 50x damage. +*>the_nether=50 +; Using any hard-Nether tools on Nether-associated blocks deals 1/50 damage. +the_nether!>the_nether=-50 diff --git a/pack/config/forgery/features.ini b/pack/config/forgery/features.ini new file mode 100644 index 0000000..fd43587 --- /dev/null +++ b/pack/config/forgery/features.ini @@ -0,0 +1,2367 @@ +; Comments are indicated with a semicolon. + +; All toggles may be set to "banned", "false", "true", or "unset". +; "unset" adopts the default value - what this means depends on general.category. +; "banned" completely prevents the feature from loading, similar to "false" in +; pre-2.0 versions of Fabrication. On servers, setting an option to banned +; (even if it's client-only) will also prevent clients connecting to the +; server from enabling it (if they are well-behaved; it is easy to make a +; hacked version of Fabrication that ignores this, so don't rely on it.) + +; You can upgrade your config to the latest default config with all of its +; comments without losing your settings by renaming this file to +; "features.ini.old". You will lose any new comments or formatting, but your +; values will be carried over. + +; Broad features and global settings. +; +[general] + ; Enable all features in Balance + ; Changes to vanilla balance. + ; + category.balance=false + + ; Enable all features in Experiments + ; Bad ideas given form. + ; + category.experiments=false + + ; Enable all features in Fixes + ; Fixes for bugs and weird behavior. + ; + category.fixes=true + + ; Enable all features in Mechanics + ; New mechanics and powerful + ; additions. + category.mechanics=false + + ; Enable all features in Minor Mechanics + ; Small additions to vanilla + ; mechanics. + category.minor_mechanics=false + + ; Enable all features in Pedantry + ; Fixes for non-problems. + ; + category.pedantry=false + + ; Enable all features in Tweaks + ; Minor changes that fit with vanilla. + ; + category.tweaks=true + + ; Enable all features in Unsafe + ; QoL changes that make cheating easier. + ; + category.unsafe=false + + ; Enable all features in Utility + ; Useful tidbits that don't modify + ; gameplay. + category.utility=true + + ; Enable all features in Weird Tweaks + ; Opinionated changes. + ; + category.weird_tweaks=false + + ; Enable all features in What's Old Is New Again + ; Forward ports of + ; forgotten tidbits. + ; + category.woina=false + + ; Client Only + ; + ; Makes the config screen darker. + ; + dark_mode=false + + ; Makes the game a teensy bit faster, but requires a restart to change + ; features. + limit_runtime_configs=false + + ; Client Only + ; + ; Disables high-motion animations in the Fabrication + ; config screen. + ; + reduced_motion=false + +; Fixes for bugs and weird behavior. +; +[fixes] + ; Server & Client (Client Optional) + ; + ; Makes the CanDestroy and + ; CanPlaceOn tags be honored in survival mode instead of just adventure + ; mode. + ; Only needed on server, but the experience is more seamless if + ; it's also on the client. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/adventure_tags_in_survival.mp4 + adventure_tags_in_survival=unset + + ; Client Only + ; + ; Makes textures not tick while the game is paused, + ; meaning animated blocks and such properly freeze instead of + ; continuing to animate. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/better_pause_freezing.mp4 + better_pause_freezing=unset + + ; Client Only + ; + ; Replaces translation strings for potion and enchantment + ; levels with a dynamic algorithm that supports arbitrarily large + ; numbers. + ; + ; Demonstration video: https://unascribed.com/fabrication/boundless_levels.mp4 + boundless_levels=unset + + ; Client Only + ; + ; Makes "crack" particles honor item coloration, such as + ; leather armor dye. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/colored_crack_particles.mp4 + colored_crack_particles=unset + + ; Client Only + ; + ; Re-adds Entering/Leaving Dimension Text + ; + declared_travel=unset + + ; Client Only + ; + ; Re-adds bubble columns having a bubble pop particle and + ; sound at the top. + ; Was present in 18w07a, got removed before 1.13 + ; release. + ; + ; Demonstration video: https://unascribed.com/fabrication/bubble_column_pop.mp4 + extra.bubble_column_pop=unset + + ; Server Only + ; + ; Stable cacti but it will break some existing vanilla + ; farms. As cactus will no longer break when growing next to an + ; adjacent block. Using this also fixes naturally spawning cactus + ; farms. + extra.stable_cacti_break_vanilla_compat=unset + + ; Server Only + ; + ; Fixes a bug in Charm caused by bad assumptions that + ; allows generating amethyst shards if you have another mod that can + ; make item frames invisible, such as Fabrication's own Invisibility + ; Splash On Inanimates. + ; + fix_charm_amethyst_dupe=unset + + ; Server & Client + ; + ; Fixes dragon egg trails to point to the dragon egg. + ; + fix_dragon_egg_trails=unset + + ; Client Only + ; + ; End portal block will render from all sides. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/fix_end_portal_render.mp4 + fix_end_portal_render=unset + + ; Client Only + ; + ; Render the nether portal UI texture even if player has + ; nausea. + fix_nether_portal_nausea=unset + + ; Server Only + ; + ; Right-clicking a furnace minecart with a non-fuel while + ; it's out of fuel gives it a little bit of fuel, allowing you to + ; "push" it. + ; Removed some time after 17w46a (1.13 pre releases); nobody + ; seems to have noticed, and it wasn't announced. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/furnace_minecart_pushing.mp4 + furnace_minecart_pushing=unset + + ; Client Only + ; + ; Brings back the ghast "charging" animation when they're + ; about to fire a fireball that got broken in 1.3 and removed in 1.8, + ; and never worked in multiplayer. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/ghast_charging.mp4 + ghast_charging=unset + + ; Client Only + ; + ; Makes inanimate entities honor the "invisible" tag sent + ; by the server. Does nothing on its own; the server must have + ; something that marks inanimate entities as invisible, such as + ; Fabrication's own Invisibility Splash On Inanimates. + ; + inanimates_can_be_invisible=unset + + ; Server Only + ; + ; Through some mystical mojank reasoning mobs would + ; normally stop looking for the player after reaching the players last + ; known location, this fixes that. + ; + melee_mobs_keep_attacking=unset + + ; Client Only + ; + ; Allows pasting multiple lines of text into a sign. You + ; can also copy all the lines of a sign by holding Shift while copying. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/multiline_sign_paste.mp4 + multiline_sign_paste=unset + + ; Client Only + ; + ; Disables the flashing effect when Night Vision is about + ; to run out. This effect ranges from "annoying" to "actively + ; dangerous". With this enabled, it just slowly fades out instead. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/no_night_vision_flash.mp4 + no_night_vision_flash=unset + + ; Client Only + ; + ; The player render in the inventory follows your cursor, + ; even if it's not inside the game window. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/omniscent_player.mp4 + omniscent_player=unset + + ; Client Only + ; + ; Allows players to open inventories while in a nether + ; portal. + ; Vanilla originally made this change to fix a dupe exploit in + ; Beta. The underlying cause of this dupe was fixed a very long time + ; ago. + ; + ; Demonstration video: https://unascribed.com/fabrication/open_inventories_in_nether_portal.mp4 + open_inventories_in_nether_portal=unset + + ; Server Only + ; + ; Fixes an oversight that prevents silverfish from playing + ; their step sound. It's also possible it's not an oversight and that + ; Mojang simply deemed the silverfish step sound too horrible and + ; dummied it out. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/silverfish_step.mp4 + silverfish_step=unset + + ; Server Only + ; + ; Fixes cactuses being made of Explodium due to + ; long-since-fixed engine limitations. In English: Makes cacti not + ; break themselves if a block is placed next to them. They will still + ; break if they *grow* into such a space, so cactus randomizers and + ; cactus farms still work. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/stable_cacti.mp4 + stable_cacti=unset + + ; Client Only + ; + ; Removes the hardcoded 60 FPS cap in menu screens, + ; instead using whatever you have the framerate cap set to. + ; Primarily + ; added because in prior versions the cap was 30 FPS and I thought it + ; still was. Maybe this is nice if you have a 144Hz display? + ; + uncap_menu_fps=unset + + ; Client Only + ; + ; Changes player name tags to match names in the player + ; list. Good in combination with nickname mods like Drogtor. + ; + ; + ; Demonstration image: https://unascribed.com/fabrication/use_player_list_name_in_tag.png + use_player_list_name_in_tag=unset + +; Useful tidbits that don't modify gameplay. +; +[utility] + ; Client Only + ; + ; Makes enchanted books show the first letter of their + ; enchants in the bottom left, cycling through enchants every second if + ; they have multiple. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/books_show_enchants.mp4 + books_show_enchants=unset + + ; Server & Client (Client Optional) + ; + ; Adds a new CanHit tag that affects + ; melee attacks, bows, crossbows, and tridents. Also works on arrows + ; and fireworks, in which case the restrictions will be AND'd with the + ; restrictions of the bow or crossbow doing the firing. + ; The tag must be + ; a list of strings, which may contain UUIDs that match a specific + ; entity or an entity type ID optionally prefixed with a ! to invert + ; the match. + ; If installed on the client, adds hit information to the + ; tooltip. You can hide this information by creating an NBT byte set to + ; 1 called "HideCanHit". + ; For example, a sword that can only hit + ; spiders: /give @p diamond_sword{CanHit:["spider"]} + ; A sword that can + ; hit anything but creepers: /give @p + ; diamond_sword{CanHit:["!creeper"]} + ; + ; Demonstration video: https://unascribed.com/fabrication/canhit.mp4 + canhit=unset + + ; Server & Client + ; + ; Makes items that are about to despawn blink. The + ; despawn timer is synced from the server, so this only works if the + ; server also has it installed, but it means that the blinking only + ; happens when it should. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/despawning_items_blink.mp4 + despawning_items_blink=unset + + ; Server Only + ; + ; Any amount of damage done to an entity is + ; unconditionally fatal. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/all_damage_is_fatal.mp4 + extra.all_damage_is_fatal=unset + + ; Client Only + ; + ; Adds bold, strikethrough, underscore and italic markdown + ; to chat. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/chat_markdown.mp4 + extra.chat_markdown=unset + + ; Server or Client + ; + ; Prevents bee nests generating. Also disables all + ; bee sounds. + ; Useful if you have a bee phobia. Makes honey + ; inaccessible; you may want a datapack to make it accessible again, + ; and/or to make empty bee nests craftable for decor. + ; Does not delete + ; existing bee nests or bee entities; only fully effective in a new + ; world. + extra.disable_bees=unset + + ; Server or Client + ; + ; Prevents villages from generating and zombie + ; villagers from spawning. + ; Villagers completely break game balance, + ; among other issues. + ; Will not fully take effect unless the game is + ; restarted. + extra.disable_villagers=unset + + ; Client Only + ; + ; Pressing enter selects the highlighted suggestion. + ; + extra.enter_selects_highlighted_suggestion=unset + + ; Client Only + ; + ; Item frames will not display the names of the item + ; inside them. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/item_frame_no_name_display.mp4 + extra.item_frame_no_name_display=unset + + ; Client Only + ; + ; Disables the elder guardian appearance effect upon being + ; inflicted with Mining Fatigue. + ; + extra.no_guardian_jumpscare=unset + + ; Server Only + ; + ; Sends no ping data to IPs that have not successfully + ; logged in in the last 7 days. + ; Prevents scraping. There exist services + ; that constantly ping servers they know about and track their uptime + ; and who's connected, which will then turn around and store the name + ; history of discovered users permanently and make their cape publicly + ; searchable, among other things. + ; + ; + ; Demonstration image: https://unascribed.com/fabrication/ping_privacy.png + extra.ping_privacy=unset + + ; Client Only + ; + ; Makes bee hive items show amount of contained bees. + ; + extra.show_bee_count_on_item=unset + + ; Server Only + ; + ; Weapons can be enchanted with Silk Touch, and Silk Touch + ; becomes incompatible with Looting. + ; Can be used with datapacks and + ; loot tables (or so I'm told). + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/weapons_accept_silk.mp4 + extra.weapons_accept_silk=true + + ; Server Only + ; + ; Allows clicking on the empty output slot of a furnace to + ; extract the experience, instead of needing to break it. + ; + extract_furnace_xp=unset + + ; Server & Client (Client Optional) + ; + ; Adds /hidearmor and /showarmor + ; commands to hide and show your armor. Works with vanilla clients for + ; hiding armor from others; for hiding armor from yourself to work, + ; must be present on client. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/hide_armor.mp4 + hide_armor=unset + + ; Server Only + ; + ; Adds /i, /item, /more, and /fenchant commands. + ; /i and + ; /item are shorthand for /give to yourself, and /more increases the + ; size of your held item's stack. /fenchant is like /enchant but it + ; ignores all restrictions. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/i_and_more.mp4 + i_and_more=unset + + ; Server Only + ; + ; Allows fine-grained control over item despawn times and + ; making items invulnerable to all forms of damage including the void. + ; You can filter by the item ID, whether the item was dropped by a + ; player, if the item was dropped by a player dying, what enchantments + ; are on the item, if the item is cursed, arbitrary NBT booleans, and + ; block or item tags. + ; Configured in + ; config/fabrication/item_despawn.ini. + ; + ; See the default config for more info: https://github.com/FalsehoodMC/Fabrication/blob/3.0/1.18/src/main/resources/default_item_despawn_config.ini + item_despawn=unset + + ; Server Only + ; + ; Adds a KillMessage NBT tag to entities and items, + ; allowing them to show a custom death message when they kill a player. + ; You can use placeholders to show the name of the killed entity, the + ; name of the killing entity, or the name of the killing entity's held + ; item, in that order. + ; For example, "%s found a %s" would show e.g. + ; "unascribed found a Skeleton". You could also write this as "%1$s + ; found a %2$s" for the same result, or, say "A %2$s found %1$s" to + ; show them in the opposite order, e.g. "A Skeleton found unascribed". + ; The third %s or a %3$s will show the item name; if there isn't one, + ; [Air] will be shown. + ; + killmessage=unset + + ; Server Only + ; + ; Allows numeric arguments to /gamemode and /difficulty, + ; re-adds /toggledownfall, allows TitleCase arguments to /summon, + ; allows numeric arguments to commands that accept items like /give, + ; and re-adds shorthand to /xp. + ; Old habits die hard. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/legacy_command_syntax.mp4 + legacy_command_syntax=unset + + ; Server Only + ; + ; Command suggestions for modded ids will still appear + ; even if the id namespace is not explicitly specified. + ; + lenient_command_suggestions=unset + + ; Client Only + ; + ; Links in chat are clickable. + ; + linkify_urls=unset + + ; Client Only + ; + ; Makes entities show their entity ID as a nametag in + ; Creative when F3 is up. Originally a vanilla feature; was removed in + ; Beta 1.8 as nametags are visible through walls and it was a bit + ; cheaty in Survival. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/mob_ids.mp4 + mob_ids=unset + + ; Server Only + ; + ; Adds a /mods command listing all mods on the server. + ; Hovering over the mods shows their descriptions, clicking on them + ; takes you to their homepage if they have one. + ; If Bukkit is not + ; present, also adds a /plugins command suggesting people use /mods + ; instead. + ; + ; Demonstration video: https://unascribed.com/fabrication/mods_command.mp4 + mods_command=unset + + ; Client Only + ; + ; Right Mouse Button will clear text fields. + ; + rmb_clears_text_fields=unset + + ; Client Only + ; + ; Makes bee hive tooltips show amount of contained bees. + ; + show_bee_count_tooltip=unset + + ; Client Only + ; + ; Makes filled maps show their ID. + ; + show_map_id=unset + + ; Server Only + ; + ; Allows you to assign or unassign various "tags" from + ; players via /fabrication tag. Valid tags consist of feature keys + ; which are living_entity scriptable. The following features are set + ; taggable by default: can_breathe_water, no_wandering_trader, + ; no_phantoms, scares_creepers, permanent_dolphins_grace, + ; permanent_conduit_power, fireproof, no_hunger, invisible_to_mobs. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/taggable_players.mp4 + taggable_players=unset + + ; Client Only + ; + ; Adds a "Toggle/Hold Sprint" keybind. Vanilla has an + ; accessibility option to make the Sneak key work as a toggle, since it + ; can be useful to have a hold and toggle button at the same time this + ; keybind will take the other mode of the accessibility setting. + ; + toggle_sprint=false + + ; Client Only + ; + ; Adds a "Toggle Stance" keybind to switch between + ; standing and sneaking. Vanilla has an accessibility option to make + ; the existing Sneak key work as a toggle, but it can be useful to have + ; a hold-to-sneak and toggle-sneak button at the same time. + ; Interacts + ; with Minor Mechanics > Crawling; if they are both enabled, the Toggle + ; Stance key will cycle between standing, sneaking, and crawling. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/toggle_stance.mp4 + toggle_stance=unset + + ; Client Only + ; + ; Makes tools enchanted with Silk Touch, Fortune, or + ; Riptide show the first letter of that enchant in the top left. + ; Never + ; break an Ender Chest with the wrong tool again. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/tools_show_important_enchant.mp4 + tools_show_important_enchant=unset + + ; Server Only + ; + ; Adds a yeet_recipes.ini that can be used to completely + ; remove any recipe. + ; + yeet_recipes=unset + +; Minor changes that fit with vanilla. +; +[tweaks] + ; Server & Client + ; + ; Taking damage that is completely absorbed by + ; Absorption plays a different (custom) sound. + ; Required on both sides, + ; but doesn't break vanilla clients. + ; + alt_absorption_sound=unset + + ; Server Only + ; + ; Reduces arrow drag in water by a fair bit to make bows + ; useful underwater. Not nearly as good as a trident, but usable. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/arrows_work_in_water.mp4 + arrows_work_in_water=unset + + ; Server Only + ; + ; Makes walking through berry bushes not deal damage. + ; + bush_walk_doesnt_hurt=unset + + ; Server Only + ; + ; Makes walking through berry bushes when sneaking not + ; deal damage. + ; + bush_walk_doesnt_hurt_when_sneaking=unset + + ; Server Only + ; + ; Makes walking through berry bushes with both leggings + ; and boots equipped not deal damage. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/bush_walk_doesnt_hurt_with_armor.mp4 + bush_walk_doesnt_hurt_with_armor=unset + + ; Server Only + ; + ; Makes touching the side of a cactus (not walking on top + ; of one) with a chestplate equipped not deal damage. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/cactus_brush_doesnt_hurt_with_chest.mp4 + cactus_brush_doesnt_hurt_with_chest=unset + + ; Server Only + ; + ; Makes walking on top of a cactus (not touching the side + ; of one) with boots equipped not deal damage. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/cactus_walk_doesnt_hurt_with_boots.mp4 + cactus_walk_doesnt_hurt_with_boots=unset + + ; Server Only + ; + ; Campfires will cook entities without setting them on + ; fire. + campfires_cook_entities=unset + + ; Server Only + ; + ; Campfires will set fire to mobs standing on them, + ; therefore also cooking them. + ; + campfires_ignite_entities=unset + + ; Server Only + ; + ; Campfires are unlit when placed and must be lit with a + ; Flint and Steel. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/campfires_place_unlit.mp4 + campfires_place_unlit=unset + + ; Server Only + ; + ; Spawn eggs spawn cracking particles and play a sound + ; when used. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/cracking_spawn_eggs.mp4 + cracking_spawn_eggs=unset + + ; Server Only + ; + ; Ender pearls play enderman teleport sound when breaking. + ; + ender_pearl_sound=unset + + ; Server Only + ; + ; Players will not lose air while underwater. + ; + extra.can_breathe_water=unset + + ; Server Only + ; + ; Players cannot take fire damage. + ; + extra.fireproof=unset + + ; Client Only + ; + ; ? + ; + extra.ghost_chest_woo_woo=unset + + ; Server Only + ; + ; Players cannot be targeted by mobs at all. Sorta like + ; Apathetic Mobs. + ; + extra.invisible_to_mobs=unset + + ; Server Only + ; + ; Players never lose food, and when they eat food it + ; instead heals them directly. Sorta like Hunger Strike. + ; + extra.no_hunger=unset + + ; Server Only + ; + ; Prevents phantoms from spawning. + ; + extra.no_phantoms=true + + ; Server Only + ; + ; Prevents wandering traders from spawning. + ; + extra.no_wandering_trader=true + + ; Server Only + ; + ; Players always have Conduit Power. + ; + extra.permanent_conduit_power=unset + + ; Server Only + ; + ; Players always have Dolphins Grace. + ; + extra.permanent_dolphins_grace=unset + + ; Server Only + ; + ; Players will scare creepers. + ; + extra.scares_creepers=unset + + ; Server Only + ; + ; Farmland will not get trampled when wearing feather + ; falling. + ; + ; Demonstration video: https://unascribed.com/fabrication/feather_falling_no_trample.mp4 + feather_falling_no_trample=unset + + ; Server Only + ; + ; Cobwebs can burn. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/flammable_cobwebs.mp4 + flammable_cobwebs=unset + + ; Client Only + ; + ; Makes shields use the full-res banner patterns instead + ; of weird smaller versions. Compatible with custom patterns and + ; resource packs. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/fullres_banner_shields.mp4 + fullres_banner_shields=unset + + ; Server Only + ; + ; Makes ghasts randomly play the unused "scream" sound + ; when outside of the Nether. + ; + ghast_panic=unset + + ; Client Only + ; + ; Adjusts sign text colors to be less garbage. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/legible_signs.mp4 + legible_signs=unset + + ; Client Only + ; + ; Makes the "on fire" overlay half as tall, and removes it + ; completely if you have Fire Resistance. + ; Especially nice with resource + ; packs like Faithful that have tall fire textures. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/less_annoying_fire.mp4 + less_annoying_fire=unset + + ; Server & Client (Client Optional) + ; + ; Allows note blocks to play if any + ; block next to them has a nonsolid face, instead of only if the block + ; above is air. + ; On the client, just adjusts the note particle to fly + ; the right direction. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/less_restrictive_note_blocks.mp4 + less_restrictive_note_blocks=unset + + ; Client Only + ; + ; Plays the old longer level up sound when you reach level + ; 30. + ; + ; Demonstration video: https://unascribed.com/fabrication/long_levelup_sound_at_30.mp4 + long_levelup_sound_at_30=unset + + ; Server Only + ; + ; Water evaporates when being placed inside a cauldron in + ; the nether. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/nether_cauldron.mp4 + nether_cauldron=unset + + ; Server Only + ; + ; Chest and hopper minecarts will not be slowed down + ; proportionally to the number of items in them. + ; + no_heavy_minecarts=unset + + ; Server Only + ; + ; Blocks which would normally not affect players when + ; sneaking will. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/no_sneak_bypass.mp4 + no_sneak_bypass=unset + + ; Server Only + ; + ; Farmland will not get trampled. + ; + no_trample=unset + + ; Client Only + ; + ; Disables the fog brightening effect with Night Vision. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/normal_fog_with_night_vision.mp4 + normal_fog_with_night_vision=unset + + ; Server & Client (Client Optional) + ; + ; Allows sneaking when punching note + ; blocks to play them in Creative mode. + ; On the client, prevents the + ; break effect from occurring as usually happens with server-side break + ; prevention. + ; + ; Demonstration video: https://unascribed.com/fabrication/play_note_blocks_in_creative.mp4 + play_note_blocks_in_creative=unset + + ; Client Only + ; + ; Makes experience random colors instead of just lime + ; green. + ; + ; Demonstration video: https://unascribed.com/fabrication/rainbow_experience.mp4 + rainbow_experience=unset + + ; Client Only + ; + ; Recipe book and stone cutter crafts items instead of + ; moving them to the crafting area. Holding controll uses vanilla + ; behaviour. + ; + ; Demonstration video: https://unascribed.com/fabrication/recipe_book_auto_craft.mp4 + recipe_book_auto_craft=unset + + ; Server Only + ; + ; Sneaking while tuning a note block reduces its pitch + ; rather than increases. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/reverse_note_block_tuning.mp4 + reverse_note_block_tuning=unset + + ; Client Only + ; + ; Allows players to see held items while riding entities + ; like boats. + ; + see_items_while_riding=true + + ; Server Only + ; + ; Makes shulker bullets despawn when the shulker that shot + ; them is killed. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/shulker_bullets_despawn_on_death.mp4 + shulker_bullets_despawn_on_death=unset + + ; Client Only + ; + ; Makes minecarts silent. + ; + silent_minecarts=unset + + ; Server Only + ; + ; Makes Loyalty tridents immune to void damage, and causes + ; them to start their return timer upon falling into the void. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/tridents_in_void_return.mp4 + tridents_in_void_return=unset + +; Small additions to vanilla mechanics. +; +[minor_mechanics] + ; Server Only + ; + ; Breaking cactus with your hand will damage you the same + ; as hugging it. + ; + cactus_punching_hurts=unset + + ; Server & Client (Client Optional) + ; + ; Makes Channeling II a valid + ; enchant that works while raining as well. + ; + channeling_two=unset + + ; Server & Client + ; + ; Adds a key to explicitly enter the "crawling" + ; stance. No more smushing yourself with a trapdoor. Needed on both the + ; server and client, but doesn't break vanilla clients. + ; Honors the + ; vanilla "Sneak" Accessibility Option. Interacts with Utility > Toggle + ; Stance. + ; + ; Demonstration video: https://unascribed.com/fabrication/crawling.mp4 + crawling=unset + + ; Server Only + ; + ; Right-clicking a note block with a stack of sticks sets + ; its pitch to the size of the stack minus one. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/exact_note_block_tuning.mp4 + exact_note_block_tuning=unset + + ; Server Only + ; + ; More accurately determines what the player is standing + ; on. e.g. with this you can't take fall damage on a slime block while + ; landing on an edge with air next to it. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/collision_based_landing_pos.mp4 + extra.collision_based_landing_pos=unset + + ; Server Only + ; + ; More accurately determines what the player is standing + ; on. It's the same as collision_based_landing_pos, but for block + ; properties like velocity and sliding. + ; + extra.collision_based_velocity_pos=unset + + ; Server Only + ; + ; Potions of Fire Resistance only protect against fire. + ; They have to be brewed with glowstone dust to also protect against + ; lava. + extra.fire_resistance_two=unset + + ; Server Only + ; + ; Pistons launch players up as if they were pushing slime + ; blocks. + ; + ; Demonstration video: https://unascribed.com/fabrication/launching_pistons.mp4 + extra.launching_pistons=unset + + ; Server Only + ; + ; Observers detect when entities move in front of them if + ; they have no block in front of them. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/observers_see_entities.mp4 + extra.observers_see_entities=unset + + ; Server Only + ; + ; Observers only detect living entities, and not + ; e.g. item entities. + ; Safety option to prevent breaking a + ; variety of vanilla contraptions. + ; + extra.observers_see_entities_living_only=unset + + ; Server Only + ; + ; Makes spiders unable to climb while wet. Basically a + ; more overpowered version of Spiders Can't Climb Glazed Terracotta. + ; May break vanilla spider farms. + ; Interacts with Enhanced Moistness, + ; and the demo video uses it for the water splash to work like it does. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/spiders_cant_climb_while_wet.mp4 + extra.spiders_cant_climb_while_wet=unset + + ; Server Only + ; + ; Requires water_fills_on_break to have at least 2 water + ; sources. + extra.water_fills_on_break_strict=unset + + ; Server & Client (Client Optional) + ; + ; Makes Feather Falling V a valid + ; enchant that completely negates fall damage. Optionally does damage + ; to the boots. + ; If present on the client, makes the enchantment + ; available in the Creative menu. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/feather_falling_five.mp4 + feather_falling_five=true + + ; Server Only + ; + ; Makes absorbing fall damage with Feather Falling + ; V cause damage to the boots. + ; + feather_falling_five_damages_boots=unset + + ; Server Only + ; + ; Right-clicking a block with no action with a Fire Aspect + ; tool emulates a click with flint and steel, allowing you to light + ; fires and such with a Fire Aspect tool instead of having to carry + ; around flint and steel. + ; Since it emulates clicking with a Flint and + ; Steel, it's highly compatible. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/fire_aspect_is_flint_and_steel.mp4 + fire_aspect_is_flint_and_steel=true + + ; Server Only + ; + ; Fire Protection can be applied to any enchantable item, + ; and makes the item immune to fire and lava damage. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/fire_protection_on_any_item.mp4 + fire_protection_on_any_item=true + + ; Server Only + ; + ; Allows furnace minecarts to accept any furnace fuel, + ; rather than just coal and charcoal. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/furnace_minecart_any_fuel.mp4 + furnace_minecart_any_fuel=true + + ; Server Only + ; + ; Allows furnace minecarts to accept fuel from + ; hoppers. + ; Conflicts with lithiums hopper optimizations. + ; mixin.block.hopper can be disabled in lithium to fix this. + ; + furnace_minecart_resupplying=true + + ; Server Only + ; + ; Snow layers and slabs will be mined a layer at a time. + ; + gradual_block_breaking=unset + + ; Server Only + ; + ; Makes Infinity bows not require an arrow in your + ; inventory to fire. + ; If not present on client, firing bows with no + ; arrows is a bit janky. Works with balance.infinity_crossbows. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/infibows.mp4 + infibows=unset + + ; Server Only + ; + ; Invisibility splash potions affect inanimates + ; (minecarts, arrows, etc) making them invisible. They will become + ; visible again if they become wet. This enables the vanilla + ; "invisible" flag, which doesn't work on inanimates unless Fixes > + ; Inanimates Can Be Invisible is also enabled. + ; Logic: Invisibility + ; potions coat the outer surface of the object. Living entities absorb + ; and eventually eliminate the compound, and when drank it exudes from + ; the pores, but inanimate objects do not have metabolisms, so the + ; invisibility hangs around indefinitely unless washed off. Don't @ me + ; about skeletons. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/invisibility_splash_on_inanimates.mp4 + invisibility_splash_on_inanimates=unset + + ; Server Only + ; + ; Placing a block of wool adjacent to a dispenser, + ; dropper, or piston makes it silent. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/mechanism_muffling.mp4 + mechanism_muffling=unset + + ; Server Only + ; + ; Tells you the note the note block has been tuned to when + ; tuning it or playing it manually above your hotbar. Also shows the + ; octave, and shows the correct note for the snare and click + ; instruments. (The bass drum is hard to nail down and so does not show + ; note or octave info; if you know the best way to describe the bass + ; drum, please let me know in an issue.) + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/note_block_notes.mp4 + note_block_notes=unset + + ; Server Only + ; + ; Makes note blocks play when landed on. The higher the + ; entity fell, the louder the note will be. Also triggers Observers. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/note_blocks_play_on_landing.mp4 + note_blocks_play_on_landing=unset + + ; Server Only + ; + ; Protection can be applied to any enchantable item. + ; It + ; will inclusively protect from:. Level 1: cactus, Level 2: fire, Level + ; 3: lava, Level 4: explosions. + ; + protection_on_any_item=unset + + ; Server Only + ; + ; Makes spiders unable to climb glazed terracotta, to make + ; farming them less of a chore if you go to the trouble to make glazed + ; terracotta. + ; Logic: Slime blocks can't stick to glazed terracotta. Are + ; spiders really stickier than solid slime? + ; Blocks can be included via + ; fabrication:include_in_item_inventory_check block tag. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/spiders_cant_climb_glazed_terracotta.mp4 + spiders_cant_climb_glazed_terracotta=true + + ; Server Only + ; + ; Using bone meal on a stone block with a moss block + ; nearby grows moss to that block, to make it a bit easier to work with + ; for building. + ; + spreadable_moss=unset + + ; Server Only + ; + ; When a trident hits a lever it will toggle it. + ; + tridents_activate_levers=true + + ; Server Only + ; + ; Shift right click with an empty hand to retrieve a + ; saddle from a pig/strider. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/unsaddle_creatures.mp4 + unsaddle_creatures=unset + + ; Server Only + ; + ; Water source blocks fill in broken blocks instead of air + ; if there is more water on its north, east, south, west, and top faces + ; than there is air on its north, east, south, and west faces. In case + ; of a tie, air wins. Makes terraforming lakes and building canals, etc + ; much less frustrating. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/water_fills_on_break.mp4 + water_fills_on_break=unset + +; New mechanics and powerful additions. +; +[mechanics] + ; Server Only + ; + ; Allows right-clicking on an anvil with a Block of Iron + ; to repair it one stage. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/anvil_repair.mp4 + anvil_repair=unset + + ; Server Only + ; + ; Filling a glass bottle underwater refills 1 air bubble. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/bottled_air.mp4 + bottled_air=unset + + ; Server Only + ; + ; Makes gear drop its consituent items when broken. This + ; is completely configurable in + ; config/fabrication/gear_components.ini. + ; Also works with nonplayer + ; entities, where it is affected by their drop chance table. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/broken_tools_drop_components.mp4 + ; See the default config for more info: https://github.com/FalsehoodMC/Fabrication/blob/3.0/1.18/src/main/resources/default_gear_components_config.ini + broken_tools_drop_components=unset + + ; Server Only + ; + ; Allows using a comparator on a powered rail just like a + ; detector rail. Makes minecart logistics a lot easier. Also allows + ; using a repeater to do normal detection. + ; + detecting_powered_rails=unset + + ; Server Only + ; + ; Placing magenta glazed terracotta under a detector rail + ; makes it only detect minecarts moving in the direction of the arrow. + ; + directional_detector_rails=unset + + ; Server Only + ; + ; Placing magenta glazed terracotta under a powered rail + ; makes it push minecarts in the direction of the arrow, even from a + ; stop. They also work as hard stops for carts going the wrong + ; direction. + ; Works similar to a Railcraft Boarding Track. + ; + directional_powered_rails=unset + + ; Server Only + ; + ; Entities are considered "wet" for 5 seconds after + ; leaving a source of wetness. Additionally, lingering or splash water + ; bottles inflict wetness. Also makes wet entities drip to show they're + ; wet. Affects various vanilla mechanics including fire and undead + ; burning. + ; Touching lava instantly removes wetness, meaning lava blades + ; still work. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/enhanced_moistness.mp4 + enhanced_moistness=unset + + ; Redstone on top of wool will not connect to redstone on top of a + ; different color of wool. + ; Experimental. Once sufficiently tested, will + ; be moved out of Extra. + ; + extra.colorful_redstone=unset + + ; Server Only + ; + ; When adding enchants that would normally not be + ; compatible it will instead get added in an inactive state. + ; Conflicting enchants can be swapped on the go by right-clicking the + ; item or pressing a keybind while sneaking. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/swap_conflicting_enchants.mp4 + extra.swap_conflicting_enchants=unset + + ; Server Only + ; + ; Pearls will teleport entities they hit and pull nearby + ; ones. + extra.weaponized_pearls=unset + + ; Server & Client + ; + ; Placing a book in the bottom slot of a Grindstone + ; when disenchanting an item will transfer the enchantments onto the + ; book. + ; Doesn't work properly if the client doesn't also have it, but + ; it will not break vanilla clients. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/grindstone_disenchanting.mp4 + grindstone_disenchanting=unset + + ; Server & Client (Client Optional) + ; + ; Empty bottles can be used to + ; collect "Obsidian Tears" from Crying Obsidian. When quaffed by or + ; dispensed onto a player, it updates their spawn to the location of + ; the block the tears are from. Dispensers can also be used to fill + ; empty bottles with tears. + ; Crying Obsidian respawn works in any + ; dimension and doesn't need to be recharged, but you spawn with half + ; health, no saturation, less than full food, and Weakness. + ; On client, + ; just gives the bottle a custom appearance instead of a potion item. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/obsidian_tears.mp4 + obsidian_tears=unset + + ; Server Only + ; + ; Adds "Pursurvers", observers with a Purpur block next to + ; them, that can detect left-clicks on their watched block. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/pursurvers.mp4 + pursurvers=unset + + ; Server Only + ; + ; Slow fall splash potions affect inanimates (minecarts, + ; arrows, etc) making them unaffected by gravity. They will become + ; normally affected again if they become wet. + ; This is kind of + ; overpowered. + ; + ; Demonstration video: https://unascribed.com/fabrication/slowfall_splash_on_inanimates.mp4 + slowfall_splash_on_inanimates=unset + + ; Server Only + ; + ; Powered rails stop furnace carts when appropriate and + ; conserve their fuel. + ; + toggleable_furnace_carts=unset + + ; Server Only + ; + ; Sheep wool slightly reduces some types of damage. + ; + wool_protected_sheep=unset + +; Changes to vanilla balance. +; +[balance] + ; Server Only + ; + ; Anvils don't become "Too Expensive". + ; + anvil_no_level_limit=true + + ; Server Only + ; + ; Makes renaming an item on an anvil always cost one + ; level. + ; + ; Demonstration video: https://unascribed.com/fabrication/anvil_rename_always_costs_one.mp4 + anvil_rename_always_costs_one=true + + ; Server Only + ; + ; Makes the Impaling enchantment act like it does in + ; Bedrock Edition and Combat Test 4. Namely, it deals bonus damage to + ; anything that is in water or rain (i.e. is wet), instead of only + ; aquatic mobs. + ; Interacts with Enhanced Moistness. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/bedrock_impaling.mp4 + bedrock_impaling=true + + ; Server & Client (Client Optional) + ; + ; Disables the anvil prior work + ; penalty when an item has been worked multiple times. Makes + ; non-Mending tools relevant by allowing you to repair them + ; indefinitely, and makes putting books on tools easier. + ; If only on the + ; server and not the client, the wrong level cost will briefly be + ; displayed before being corrected. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/disable_prior_work_penalty.mp4 + disable_prior_work_penalty=true + + ; Server Only + ; + ; Players drop 80% of their experience when dying instead + ; of basically nothing. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/drop_more_exp_on_death.mp4 + drop_more_exp_on_death=unset + + ; Server Only + ; + ; Creeper explosions deal entity damage, but not block + ; damage, even if mobGriefing is true. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/environmentally_friendly_creepers.mp4 + environmentally_friendly_creepers=unset + + ; Server Only + ; + ; Anvils only take damage when falling from a height + ; rather than randomly after being used. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/anvil_damage_only_on_fall.mp4 + extra.anvil_damage_only_on_fall=unset + + ; Server Only + ; + ; Any item repair in the anvil will restore item + ; durability. + ; + ; Demonstration video: https://unascribed.com/fabrication/anvil_full_repair.mp4 + extra.anvil_full_repair=true + + ; Server Only + ; + ; Anvils don't cost any xp. + ; + extra.anvil_no_xp_cost=unset + + ; Server Only + ; + ; Reverts hostile mob spawning to pre-1.18, so mobs spawn + ; when block light level is bellow 8. + ; + extra.block_lit_mob_spawning=unset + + ; Server Only + ; + ; Causes explosions to always break shields. + ; + extra.brittle_shields=unset + + ; Server Only + ; + ; Pigs can carry chests. + ; Shift-right click to open the + ; chest. Shift-right click with a chest in hand to attach it. + ; + extra.chest_pigs=unset + + ; Server Only + ; + ; Prevents using Elytra. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/disable_elytra.mp4 + extra.disable_elytra=unset + + ; Server Only + ; + ; Prevent Elytra boosting using firework rockets. + ; + extra.disable_elytra_boost=unset + + ; Server Only + ; + ; Stops the mending enchantment from working. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/disable_mending.mp4 + extra.disable_mending=unset + + ; Server Only + ; + ; Stops new villagers from offering mending. + ; + extra.disable_mending_trade=true + + ; Server Only + ; + ; Ender pearls forget who threw them when being unloaded. + ; Which means saving a ender pearl in a bubble column becomes more + ; difficult. + extra.disable_pearl_stasis=unset + + ; Server Only + ; + ; Ender dragon always spawn a dragon egg when killed. + ; + extra.ender_dragon_always_spawn_egg=unset + + ; Server Only + ; + ; Ender dragon always gives the same xp amount as it would + ; the first time. + ; + extra.ender_dragon_full_xp=true + + ; Server Only + ; + ; Shields half non-projectile damage instead of blocking + ; it. + extra.faulty_shields=unset + + ; Server Only + ; + ; Allows players to eat unconditionally. + ; + extra.food_always_edible=true + + ; Server Only + ; + ; Hunger acts as if the difficulty is easy. + ; + extra.hunger_is_easy=unset + + ; Server Only + ; + ; Hunger acts as if the difficulty is hard. + ; + extra.hunger_is_hard=unset + + ; Server Only + ; + ; Hunger acts as if the difficulty is normal. + ; + extra.hunger_is_normal=unset + + ; Server Only + ; + ; Hunger acts as if the difficulty is peaceful. + ; + extra.hunger_is_peaceful=unset + + ; Server & Client (Client Optional) + ; + ; Allow putting Infinity on vanilla + ; and modded crossbows. Only works for plain arrows. + ; Honors InfiBows. + ; + extra.infinity_crossbows_modded=true + + ; Server Only + ; + ; Makes Mending and Infinity compatible enchantments. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/infinity_mending.mp4 + extra.infinity_mending=true + + ; Server Only + ; + ; Taking more then a heart of damage interrupts the + ; current action of any mob / player. + ; + extra.interrupting_damage=unset + + ; Server Only + ; + ; Lava halves fall damage instead of removing it. + ; + extra.lava_causes_fall_damage=unset + + ; Server Only + ; + ; Makes furnace minecarts load chunks if they have fuel. + ; + extra.loading_furnace_minecart=unset + + ; Server Only + ; + ; All ingot mob drops are converted to nuggets where + ; possible, otherwise voided. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/mobs_dont_drop_ingots.mp4 + extra.mobs_dont_drop_ingots=unset + + ; Server Only + ; + ; Shulker boxes will only allow inserting items which + ; don't store other items this also allows empty shulker boxes to be + ; stored inside a shulker box. + ; exceptions can be added via + ; fabrication:exclude_from_item_inventory_check item tag. item can be + ; included via fabrication:include_in_item_inventory_check item tag. + ; + extra.no_filled_inventories_in_shulkers=unset + + ; Server Only + ; + ; Arrows shot by skeletons can be picked up. + ; + extra.pickup_skeleton_arrows=unset + + ; Server Only + ; + ; Mob spawners don't require a player nearby to spawn. + ; This can be dangerous on a normal world as it means all loaded + ; spawners will constantly spawn mobs, which makes dungeons pre-loaded + ; monsterboxes and floods abandoned mineshafts with cave spiders. Use + ; carefully, preferably in worlds with structures disabled. + ; See Balance + ; > Spawners Always Tick for a less extreme, safer version of this. + ; + extra.player_free_spawners=unset + + ; Server Only + ; + ; Blocking explosions causes a 6s cooldown. + ; + extra.shield_stagger=true + + ; Server Only + ; + ; Prevents dragon egg from teleporting. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/static_dragon_egg.mp4 + extra.static_dragon_egg=unset + + ; Server & Client + ; + ; Allows storing up to 8 nonstackable items in a + ; bundle, as long as nothing else is stored. + ; exceptions can be added + ; via fabrication:exclude_from_item_inventory_check item tag. item can + ; be included via fabrication:include_in_item_inventory_check item tag. + ; + extra.tools_in_bundles=true + + ; Server Only + ; + ; Fall distance will get gradually reduced instead of + ; being reset in fluids like water. + ; + extra.velocity_based_fall_damage_reset=true + + ; Server & Client + ; + ; Makes obsidian and obsidian-related blocks break 3× + ; faster. Needed on both sides to work properly. + ; Does not break vanilla + ; clients when on the server, but when on the client, vanilla servers + ; will think you're cheating. (And they won't be wrong.) + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/faster_obsidian.mp4 + faster_obsidian=unset + + ; Server Only + ; + ; Makes furnace minecarts very fast and burn fuel more + ; quickly. + ; An attempt to make rail transport relevant again, as well as + ; furnace carts, in a world with ice roads, swimming, elytra, + ; etc. + ; Warning: These carts are so fast that they sometimes fall off of + ; track corners. Make sure to surround track corners with blocks. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/hyperspeed_furnace_minecart.mp4 + hyperspeed_furnace_minecart=true + + ; Server & Client (Client Optional) + ; + ; Allow putting Infinity on + ; crossbows. Only works for plain arrows. + ; Honors InfiBows. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/infinity_crossbows.mp4 + infinity_crossbows=true + + ; Server Only + ; + ; Makes running on soul blocks with Soul Speed not deal + ; damage to your boots. + ; + soul_speed_doesnt_damage_boots=true + + ; Server Only + ; + ; Spawners always count down their spawn timers, even if + ; no player is nearby. This means a spawner that is left alone for a + ; while will spawn *instantly* when a player comes in range. Allows + ; shuttling a player between spawners with a minecart or water stream + ; to efficiently make use of spawners that are close together, but not + ; quite close enough to all be activated at the same time. + ; + spawners_always_tick=unset + + ; Server Only + ; + ; Allows tridents to accept the Power enchantment, + ; increasing their ranged damage. It's pitiful that tridents only deal + ; as much damage as an unenchanted bow and this cannot be improved at + ; all other than via Impaling, which is exclusive to aquatic mobs; + ; notably, Drowned do not count as aquatic mobs. Only the harmless + ; squids, salmon, cod, tropical fish, and the less harmless pufferfish + ; and guardians count as "aquatic". + ; Power is considered incompatible + ; with Sharpness and Impaling. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/tridents_accept_power.mp4 + tridents_accept_power=unset + + ; Server Only + ; + ; Allows tridents to accept the Sharpness enchantment, + ; increasing their melee damage. See above for justification. Tridents + ; deal 1 more damage than a Netherite Sword, but this tweak *only* + ; allows them to accept Sharpness; no Smite, no Looting, etc. + ; Sharpness + ; is considered incompatible with Power and Impaling. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/tridents_accept_sharpness.mp4 + tridents_accept_sharpness=unset + +; Opinionated changes. +; +[weird_tweaks] + ; Server Only + ; + ; Blaze powder behaves as bone meal for nether wart. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/blaze_fertilizer.mp4 + blaze_fertilizer=unset + + ; Server Only + ; + ; Creepers explode after taking explosion damage. (They + ; will die normally if the explosion damage is at least 3 and their + ; bellow 3 HP). + ; + chaining_creepers=true + + ; Server Only + ; + ; Gives cake a crunch. + ; + crunchy_cake=unset + + ; Server & Client (Client Optional) + ; + ; By default, makes breaking nether + ; blocks deal 50x damage to non-golden and non-netherite tools, and + ; makes golden tools take 1/50th the damage when breaking the same + ; blocks, bringing their durability just above diamond. Also makes + ; wooden tools crafted with nether planks into "Fungal" tools, and + ; stone tools crafted with blackstone into "Blackstone" tools, which + ; also get the 1/50th damage bonus. Completely configurable; see + ; config/fabrication/dimensional_tools.ini. + ; On client, adjusts tooltips + ; to show fractional damage. + ; Inspired by a joke video. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/gold_tools_useful_in_nether.mp4 + ; See the default config for more info: https://github.com/FalsehoodMC/Fabrication/blob/3.0/1.18/src/main/resources/default_dimensional_tools_config.ini + dimensional_tools=unset + + ; Server or Client + ; + ; Disables the unnecessary "Gear equips" sound that + ; plays when your hands change, and is often glitchily played every + ; tick. Armor equip sounds and other custom equip sounds remain + ; unchanged. You won't even notice it's gone. + ; On client, mutes it just + ; for you. + ; On server, prevents the sound from playing at all for + ; everyone. + disable_equip_sound=true + + ; Client Only + ; + ; Removes thick nether fog. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/disable_nether_fog.mp4 + disable_nether_fog=unset + + ; Server Only + ; + ; If keepInventory is enabled, players still drop their + ; experience when dying, but do so losslessly. Incents returning to + ; where you died even when keepInventory is enabled. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/drop_exp_with_keepinventory.mp4 + drop_exp_with_keep_inventory=unset + + ; Server Only + ; + ; Endermen no longer place or pickup blocks. + ; + endermen_dont_grief=true + + ; Server or Client + ; + ; Makes Endermen not make their growling or + ; screeching sounds when angry. + ; On client, mutes the sounds for just + ; you. This means angry endermen don't make ambient sounds. + ; On server, + ; replaces the angry ambient sound with the normal ambient sound for + ; everyone. The stare sound is client-sided, unfortunately. + ; + endermen_dont_squeal=unset + + ; Server Only + ; + ; Causes creepers to light their fuses when lit on fire. + ; Just because. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/creepers_explode_when_on_fire.mp4 + extra.creepers_explode_when_on_fire=true + + ; Server Only + ; + ; Piglins and hoglins can be made immune with a golden + ; apple or cured if they also have weakness. + ; + extra.curable_piglins=unset + + ; Server Only + ; + ; Prevents lightning catching entities aflame. + ; + extra.disable_lightning_burn=unset + + ; Server Only + ; + ; Prevents lightning from creating fire. + ; + extra.disable_lightning_fire=unset + + ; Server Only + ; + ; Prevents beds from skipping the night. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/disable_night_skip.mp4 + extra.disable_night_skip=true + + ; Server Only + ; + ; Emeralds spawn in all biomes which have ores. + ; + extra.encroaching_emeralds=unset + + ; Server Only + ; + ; Entities rapidly sink in fluids that are flowing + ; downwards. still and horizontal flowing fluids are unaffected. + ; + extra.entities_sink_in_falling_fluids=unset + + ; Server Only + ; + ; Tripwire breaks after being activated. + ; + extra.flimsy_tripwire=unset + + ; Client Only + ; + ; Creepers will take on the foliage color of the biome + ; they're in. + ; + extra.foliage_creepers=unset + + ; Server Only + ; + ; Prevents dolphins from picking up items. + ; + extra.no_dolphin_theft=unset + + ; Server Only + ; + ; Creepers burn in sunlight. Very dangerous in combination + ; with Creepers Explode When On Fire. + ; Takes precedence over + ; Photoresistant Mobs if that is also enabled, allowing you to make + ; only creepers burn in sunlight. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/photoallergic_creepers.mp4 + extra.photoallergic_creepers=unset + + ; Server Only + ; + ; Mobs don't burn in sunlight. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/photoresistant_mobs.mp4 + extra.photoresistant_mobs=unset + + ; Server Only + ; + ; Allows entities to take damage multiple times if it's + ; from multiple sources. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/source_dependent_iframes.mp4 + extra.source_dependent_iframes=unset + + ; Server Only + ; + ; Throwing an bucket at a lava cauldron will pickup the + ; lava. + extra.thrown_buckets_empty_lava_cauldrons=unset + + ; Server Only + ; + ; TNT and other explosives do block damage even + ; underwater. + ; + ; Demonstration video: https://unascribed.com/fabrication/underwater_explosions.mp4 + extra.underwater_explosions=unset + + ; Server Only + ; + ; Instead of restocking villagers will completely reset + ; their trades. This also soft-limits the trades to the villager's + ; level (one trade of each level). Cartographers new always sell the + ; nearest map of a type. + ; + extra.villager_trades_reset=unset + + ; Server Only + ; + ; Villagers will follow players holding emerald blocks. + ; + extra.villagers_follow_emerald_blocks=unset + + ; Server Only + ; + ; Drops from blocks and entities are instantly placed in + ; your inventory if there's room. This is animated and everything. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/instant_pickup.mp4 + instant_pickup=unset + + ; Server Only + ; + ; Items don't get destroyed by cactus blocks. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/item_safe_cactus.mp4 + item_safe_cactus=true + + ; Server Only + ; + ; Grass and tall grass can be placed on leaves. + ; Using Bone + ; Meal on leaves makes them grow grass. + ; + leaves_grow_grass=unset + + ; Server Only + ; + ; Players falling into the void teleports them back to the + ; last place they were on the ground and deals 6 hearts of unblockable + ; void damage. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/repelling_void.mp4 + repelling_void=unset + + ; Client Only + ; + ; Allows players to use items and attack while riding + ; entities like boats. + ; + use_items_while_riding=unset + +; Forward ports of forgotten tidbits. +; +[woina] + ; Client Only + ; + ; Back in Survival Test, drops blinked white to make them + ; stand out more. This is an implementation of that. + ; If Utility > + ; Despawning Items Blink is enabled, that tweak's disappear-flashing + ; will be disabled, and instead this tweak's white flashing will get + ; faster and faster as despawn approaches. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/blinking_drops.mp4 + ; Survival Test video, for reference: https://unascribed.com/fabrication/survival_test.mp4 + blinking_drops=unset + + ; Client Only + ; + ; Resurrects the Beta 1.2-era animated falling block logo. + ; Because it looked sweet and it is shameful they removed it. + ; The block + ; logo is completely customizable in config/fabrication/block_logo.png + ; and config/fabrication/block_logo.ini. The default is identical to + ; how it was in Beta 1.2. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/block_logo.mp4 + block_logo=true + + ; Client Only + ; + ; Back in Survival Test, likely in the interest of keeping + ; a consistent pixel density in the world, block drops were drawn with + ; an 8x8 portion of the block texture. This didn't always work well + ; back then, and rather than fix things up and design textures with it + ; in mind, it was simply removed. + ; This option uses a whitelist in + ; config/fabrication/classic_block_drops.ini to emulate the old + ; behavior, and for anything not whitelisted, uses mipmapped + ; textures. + ; This looks pretty neat. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/classic_block_drops.mp4 + ; Survival Test video, for reference: https://unascribed.com/fabrication/survival_test.mp4 + classic_block_drops=unset + + ; Server Only + ; + ; When dropping items of the same type they don't merge + ; into a bigger stack. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/dropped_items_dont_stack.mp4 + dropped_items_dont_stack=unset + + ; Client Only + ; + ; Old end portal texture, may not be entirely accurate. + ; Will not work unless the game is restarted, requires legacy GL and + ; may not work on some systems. + ; + end_portal_parallax=unset + + ; Client Only + ; + ; Brings back billboarded flat item drops like on Fast + ; graphics prior to 1.8 or like always prior to 1.4. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/billboard_drops.mp4 + extra.billboard_drops=unset + + ; Client Only + ; + ; Brings back billboarded flat item drops like on Fast + ; graphics prior to 1.8 or like always prior to 1.4. Actually renders + ; them in 2D which may create issues, but has a performance benefit. + ; + extra.billboard_drops_2d=unset + + ; Client Only + ; + ; Replaces the panorama background of the title screen + ; with the old dirt one. + ; + extra.dirt_screen=unset + + ; Client Only + ; + ; Brings back Indev flat first-person item models. + ; "Why?" + ; Why not. + ; + ; + ; Demonstration image: https://unascribed.com/fabrication/flat_items.png + extra.flat_items=unset + + ; Server Only + ; + ; Enchanting consumes all of the xp required for an + ; enchant. For example a 30 level enchant will consume 30 levels + ; instead of 3. + ; + extra.full_enchanting_cost=unset + + ; Server Only + ; + ; Bow fires arrows instantly upon clicking. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/instant_bow.mp4 + extra.instant_bow=unset + + ; Server Only + ; + ; Eating food is instant. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/instant_eat.mp4 + extra.instant_eat=unset + + ; Client Only + ; + ; Brings back Survival Test arm rotation. + ; "Why?" Why not. + ; + ; + ; Demonstration image: https://unascribed.com/fabrication/janky_arm.png + ; Survival Test video, for reference: https://unascribed.com/fabrication/survival_test.mp4 + extra.janky_arm=unset + + ; Server & Client (Client Optional) + ; + ; Removes experience. Anvils become + ; free and enchanting only costs lapis. + ; + extra.no_experience=unset + + ; Client Only + ; + ; Prevents first-person hands from gradually transitioning + ; from the last camera position. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/no_hand_sway.mp4 + extra.no_hand_sway=unset + + ; Client Only + ; + ; Players stay upright when killed. + ; + extra.no_player_death_animation=unset + + ; Server Only + ; + ; Disable sprinting. Note that for + ; taggable_players/scripting, sprinting will not be interrupted. + ; + extra.no_sprint=unset + + ; Client Only + ; + ; Removes the gradual crouch / crawl camera transition. + ; + extra.no_stance_transition=unset + + ; Server Only + ; + ; Disable swimming. + ; + extra.no_swim=unset + + ; Client Only + ; + ; Resurrects the old procedural lava texture from 1.4. + ; Scales with resource pack resolutions. Will have a performance impact + ; on higher resolutions. + ; + extra.old_lava_scaling=unset + + ; Server Only + ; + ; Sheep drop wool when punched. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/old_sheep_shear.mp4 + extra.old_sheep_shear=unset + + ; Client Only + ; + ; Ressurects the old inventory tooltip from the beta days. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/old_tooltip.mp4 + extra.old_tooltip=true + + ; Client Only + ; + ; Brings back the old "Oof" hurt sound. Unlike the + ; resource pack approach, this is player-specific rather than replacing + ; the generic fleshy damage sound, so it won't result in random things + ; Oof-ing. + ; + ; Demonstration video: https://unascribed.com/fabrication/oof.mp4 + extra.oof=unset + + ; Client Only + ; + ; Returns void fog from pre 1.8. + ; + extra.void_fog=unset + + ; Client Only + ; + ; Adds smoke and poof particles to explosions. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/more_explosion_particles.mp4 + more_explosion_particles=unset + + ; Server Only + ; + ; All armor has the same protection. + ; + old_armor=unset + + ; Server Only + ; + ; Armor value is reduced with durability. + ; + old_armor_scale=unset + + ; Client Only + ; + ; Inventories, pause and other menus will have a blue + ; gradient. + old_background_shade=unset + + ; Client Only + ; + ; Resurrects the old procedural lava texture from 1.4. + ; Replace your molten cheese with pasta sauce today! HAYO! + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/old_lava.mp4 + old_lava=unset + + ; Client Only + ; + ; Returns void fog particles from pre 1.8. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/void_fog_particles.mp4 + void_fog_particles=unset + + ; Client Only + ; + ; Hovered buttons will have yellow text. + ; + ; + ; Demonstration video: https://unascribed.com/fabrication/yellow_button_hover.mp4 + yellow_button_hover=true + +; QoL changes that make cheating easier. +; +[unsafe] + ; Server Only + ; + ; Server will not check if the client is cheating, when + ; breaking blocks faster then expected. + ; Helpful with block breaking lag + ; when you trust the players. + ; + disable_breaking_speed_check=unset + + ; Server Only + ; + ; Server will not check if the client is cheating, when + ; traveling faster then expected. + ; Helpful with rubber banding when you + ; trust the players. + ; + disable_moved_too_quickly=unset + +; Fixes for non-problems. +; +[pedantry] + ; Server Only + ; + ; Creepers can no longer climb climbable blocks. + ; + creepers_cant_climb=unset + + ; Server Only + ; + ; Entities can no longer climb climbable blocks (mostly + ; applies to ladders). This on it's own disables ladders, the feature + ; is intended to be used by other features. + ; + entities_cant_climb=unset + +; Bad ideas given form. +; +[experiments] + ; Client Only + ; + ; Prevents the game from manually modifying the window + ; position. So if you have custom configs or something that memorizes + ; window positions, they will be honored instead of the window always + ; being centered. + ; + no_set_window_pos=unset + + +; Notices: (Do not edit anything past this line; it will be overwritten) +; - No notices. You're in the clear! diff --git a/pack/config/forgery/fscript.ini b/pack/config/forgery/fscript.ini new file mode 100644 index 0000000..20dcaf2 --- /dev/null +++ b/pack/config/forgery/fscript.ini @@ -0,0 +1,6 @@ +; NOTICE: This file does nothing if fscript is not installed. + +; the example shows what the default behaviour of +; feather_falling_no_trample looks like in fscript +; [tweaks] +; feather_falling_no_trample=~boots:~enchant~minecraft;feather_falling:level:1 diff --git a/pack/config/forgery/gear_components.ini b/pack/config/forgery/gear_components.ini new file mode 100644 index 0000000..2da3da7 --- /dev/null +++ b/pack/config/forgery/gear_components.ini @@ -0,0 +1,138 @@ +; NOTICE: This file does nothing if mechanics.broken_tools_drop_components is +; disabled. + +[@options] +; The minimum drop rate percentage. A player with terrible luck will receive +; this percentage of the value of their broken gear back. +drop_rate_min=75 +; The mid drop rate percentage; the peak of the triangular distribution. A +; player can expect to receive this percentage of the value of their broken gear +; back. +drop_rate_mid=75 +; The max drop rate percentage. A player with incredible luck will receive this +; percentage of the value of their broken gear back. +drop_rate_max=75 +; If all drop_rate options are set to the same thing, there will be no variance +; in the actual value received back upon break. Otherwise, the min/mid/max +; options provide the points for a triangular distribution. What this means is +; that values closer to mid are more likely, while values close to min and max +; are rare. If you'd prefer a uniform distribution, where all values are +; equally likely, set this to true. If this is set to true, drop_rate_mid is +; ignored. +drop_rate_uniform=false +; A random amount of the returned value is in "nuggets" and a random amount is +; in "ingots". If this is set to 1, it is guaranteed that if an ingot worth of +; value or more has been returned, then at least 1 ingot will be given instead +; of all nuggets. If this is set to 0, no guarantee is made. If this is set to +; *, then there will be no randomness in what is returned as ingots and what is +; returned as nuggets; as many ingots as possible will be returned, using +; nuggets only when necessary. +guaranteed_ingots=1 +; If true, items that have Curse of Vanishing will not drop components when +; they break. +ignore_vanishing=true +; The amount of nuggets to "cheat" the player out of. Separate from drop rate. +cheat=1 + +; Syntax is space-delimited values. The first value is how many nuggets are in +; an ingot, the second value is the item ID or tag of the nugget, and the third +; value is the item ID or tag of the ingot. Nugget value can be arbitrarily low, +; and you can omit the third value if you only want nuggets to drop. You can +; read this as e.g. "9 gold_nugget[s are equivalent to 1] gold_ingot". +; Material names themselves are not namespaced. The namespace here in the +; section name is just for convenience when specifying tags and items. +[@materials.minecraft:] +wood=2 stick #planks +; Example change: Always drop oak planks instead of random planks. +;wood=2 stick oak_planks +leather=4 rabbit_hide leather +chain=11 iron_nugget chain +stone=2 cobblestone_slab cobblestone +gold=9 gold_nugget gold_ingot +iron=9 iron_nugget iron_ingot +diamond=4 coal diamond +netherite=4 netherite_scrap +stick=1 stick +flint=1 flint +string=1 string +scute=1 scute + +; Syntax is space-delimited values again. Number of values is arbitrary; prefix +; a material name (from up above) with a number to specify how much of that +; material it is worth. Suffix the value with a ! to make that material +; ignore the drop_rate and always drop its complete value. Suffix the value +; with * to have that component accept random enchantments from the original +; tool. (Note this isn't useful without mechanics.grindstone_disenchanting.) +; As of 1.3.2, you can also specify a material value for a fake "xp" material +; to drop experience. +[minecraft:] +bow=3stick 3string +crossbow=3.5stick 0.5wood 2string 1.5iron ;mojang pls +shears=2iron +flint_and_steel=1iron 1flint +shield=6wood 1iron +fishing_rod=3stick 2string +turtle_helmet=5scute + +wooden_pickaxe=3wood 2stick +stone_pickaxe=3stone 2stick +golden_pickaxe=3gold 2stick +iron_pickaxe=3iron 2stick +diamond_pickaxe=3diamond 2stick +netherite_pickaxe=3diamond 2stick 4gold 1netherite!* + +wooden_axe=3wood 2stick +stone_axe=3stone 2stick +golden_axe=3gold 2stick +iron_axe=3iron 2stick +diamond_axe=3diamond 2stick +netherite_axe=3diamond 2stick 4gold 1netherite!* + +wooden_shovel=1wood 2stick +stone_shovel=1stone 2stick +golden_shovel=1gold 2stick +iron_shovel=1iron 2stick +diamond_shovel=1diamond 2stick +netherite_shovel=1diamond 2stick 4gold 1netherite!* + +wooden_hoe=2wood 2stick +stone_hoe=2stone 2stick +golden_hoe=2gold 2stick +iron_hoe=2iron 2stick +diamond_hoe=2diamond 2stick +netherite_hoe=2diamond 2stick 4gold 1netherite!* + +wooden_sword=2wood 1stick +stone_sword=2stone 1stick +golden_sword=2gold 1stick +iron_sword=2iron 1stick +diamond_sword=2diamond 1stick +netherite_sword=2diamond 1stick 4gold 1netherite!* + +leather_helmet=5leather +chainmail_helmet=5chain +golden_helmet=5gold +iron_helmet=5iron +diamond_helmet=5diamond +netherite_helmet=5diamond 4gold 1netherite!* + +leather_chestplate=8leather +chainmail_chestplate=8chain +golden_chestplate=8gold +iron_chestplate=8iron +diamond_chestplate=8diamond +netherite_chestplate=8diamond 4gold 1netherite!* + +leather_leggings=7leather +chainmail_leggings=7chain +golden_leggings=7gold +iron_leggings=7iron +diamond_leggings=7diamond +netherite_leggings=7diamond 4gold 1netherite!* + +leather_boots=4leather +chainmail_boots=4chain +golden_boots=4gold +iron_boots=4iron +diamond_boots=4diamond +netherite_boots=4diamond 4gold 1netherite!* diff --git a/pack/config/forgery/item_despawn.ini b/pack/config/forgery/item_despawn.ini new file mode 100644 index 0000000..7174bb9 --- /dev/null +++ b/pack/config/forgery/item_despawn.ini @@ -0,0 +1,58 @@ +; NOTICE: This file does nothing if utility.item_despawn is disabled. + +; You can specify despawn times in ticks (t), seconds (s), minutes (m), or hours (h). These +; keywords are also accepted, as well as their short forms in parentheses: +; - instantly (0): The item is prevented from spawning entirely. +; - forever (f): The item does not despawn. +; - invincible (i): The item does not despawn and cannot be damaged. If it falls into the void, it +; will teleport back up to Y=1. +; - unset: Don't check this criteria. + +; Sections prefixed with a @ are special sections provided by internal logic in Fabrication. +; Other sections are namespaces. + +[@special] +; All items that do not match other rules. +default=unset +; Items not dropped by players. +drops=unset +; Items that have been renamed. +renamed=unset +; Items that were dropped as a result of a player dying. Setting this to "invincible" can be an +; alternative to a grave mod or datapack. +player_death=unset + +; Matches an item's enchantments. You can use full identifiers such as minecraft:efficiency, or +; the special names @curses, @normal, and @treasure. An item that matches multiple rules will have +; the one with the longest despawn time applied. Suffixing a despawn time with "!" makes it replace +; other rules, even if they're longer. +[@enchantments] +; Matches all "curse" enchantments. +@curses=unset +; Matches all "normal" enchantments. +; If you want the old enchanted_item_long_despawn tweak back, then set this one to 30m. Items that +; only have curses, unlike the old tweak, will still despawn normally. +@normal=unset +; Matches all "treasure" enchantments. Treasure enchantments will also match on @normal. +@treasure=unset + +[@enchantments.minecraft:] +; Example. Force anything with Curse of Vanishing to despawn after 30 seconds, no matter what. +;vanishing_curse=30s! + +; Matches an item's tags. Comes after enchantments, but before nbt bools. +[@tags.minecraft:] +; Example. All items with the minecraft:shulker_boxes tag despawn after an hour. +;shulker_boxes=1h + +; Items with true NBT booleans of these names will be given these despawn times. +; NBT bool rules overshadow all other rules. +[@nbtbools] +; Just an example. Uncomment if you want it. +; If uncommented, the NBT needed to spawn an item with this is {LongDespawn:1b} +;LongDespawn=1h + +; Suffixing one of these times with ! causes all special rules to be ignored for that item. +[minecraft:] +;cobblestone=1m +;diamond=forever diff --git a/pack/config/forgery/taggable_players.ini b/pack/config/forgery/taggable_players.ini new file mode 100644 index 0000000..6a8b23e --- /dev/null +++ b/pack/config/forgery/taggable_players.ini @@ -0,0 +1,27 @@ +; NOTICE: This file does nothing if utility.taggable_players is disabled. + +; Available modes are: +; tagged_players_only - Players with a tag will be effected by the relevant feature, If the feature applied to other entities it no longer does +; untagged_players_only - Players without the tag will be affected by the relevant feature, If the feature applied to other entities it no longer does +; tagged_players - Players with a tag will be effected by the relevant feature +; untagged_players - Players without the tag will be affected by the relevant feature + +[tweaks.extra] +can_breathe_water=tagged_players_only +no_wandering_trader=tagged_players_only +no_phantoms=tagged_players_only +scares_creepers=tagged_players_only +permanent_dolphins_grace=tagged_players_only +permanent_conduit_power=tagged_players_only +fireproof=tagged_players_only +no_hunger=tagged_players_only +invisible_to_mobs=tagged_players_only + +; It's possible to force specific players to either enable/disable a feature +; This should also work with Fake players, but may require a game restart to update (since you can't relog the player) +; +; example of turning off Instant Pickup for the Ars Nouveau fake player via name or UUID. (which at time of writing is a very good idea to do, since it has a conflict) +;[!player] +;Ars_Nouveau.weird_tweaks.instant_pickup=false +;[!player_uuid] +;7400926d-1007-4e53-880f-b43e67f2bf29.weird_tweaks.instant_pickup=false diff --git a/pack/config/forgery/yeet_recipes.ini b/pack/config/forgery/yeet_recipes.ini new file mode 100644 index 0000000..0ac0daf --- /dev/null +++ b/pack/config/forgery/yeet_recipes.ini @@ -0,0 +1,17 @@ +; NOTICE: This file does nothing if utility.yeet_recipes is disabled. + +; This is really only an INI because Fabrication's entire config framework is +; designed for INIs. Just list recipe IDs below, no matter what workstation +; they're for, and they will be destroyed with a precision gigawatt laser. + +; The value is ignored, but is recommended to be set to "true" in case it's +; given meaning later. + +; Example: Prevent sandstone from being crafted. +;[minecraft:] +;sandstone=true + +; Example with a weirder ID: Prevent dark oak saplings from being transformed +; into oak saplings with a Botania mana pool with an Alchemy Catalyst. +;[botania:] +;mana_infusion/dark_oak_sapling_to_oak_sapling=true \ No newline at end of file diff --git a/pack/config/hungerstrike-common.toml b/pack/config/hungerstrike-common.toml new file mode 100644 index 0000000..9fbd1c4 --- /dev/null +++ b/pack/config/hungerstrike-common.toml @@ -0,0 +1,26 @@ + +[General] + #Mode can be set to NONE, LIST, or ALL + #- NONE: Hunger Strike is disabled for all players. + #- LIST: Hunger Strike is enabled for players added + # in-game with /hungerstrike command. + #- ALL: Hunger Strike is enabled for all players. + #Allowed Values: NONE, LIST, ALL + mode = "ALL" + #How to translate food points into heart points when consuming food. + #At the default value of 0.5, food fills your heart bar at half the rate it would fill hunger. + foodHealFactor = 0.0 + #Globally overrides the maximum stack size of food items. + #This property affects all Vanilla and Mod food items that derive from ItemFood. + #Set to -1 to retain the default stack size of each food item. Note: This will affect the entire server, not just players on hunger strike. + #WARNING: Setting this property may result in unexpected behavior with other mods. + #Range: -1 ~ 64 + maxFoodStackSize = -1 + #Controls whether or not the hunger bar is hidden for players on hunger strike. + #If the hunger bar is left visible, it will remain filled at half capacity, except when certain potion effects are active like hunger and regeneration. + hideHungerBar = true + #The default hunger level when no status effects are active. + #Valid range is [1 - 20], with 20 being fully filled, and 10 being half-filled. The default value is 10, which disables health regen but allows sprinting. + #Range: 1 ~ 20 + hungerBaseline = 10 + diff --git a/pack/config/inventorio.json b/pack/config/inventorio.json new file mode 100644 index 0000000..fb70f3a --- /dev/null +++ b/pack/config/inventorio.json @@ -0,0 +1 @@ +{"SegmentedHotbar":"OFF","ScrollWheelUtilityBelt":"OFF","CanThrowUnloyalTrident":false,"DarkTheme":false,"UseItemAppliesToOffhand":false,"SkipEmptyUtilitySlots":true,"SwappedHands":false,"AggressiveButtonRemoval":false,"ToggleButton":true,"CenteredScreen":false,"CuriosOpenByDefault":false} \ No newline at end of file diff --git a/pack/config/inventorio_shared.json b/pack/config/inventorio_shared.json new file mode 100644 index 0000000..a72afaf --- /dev/null +++ b/pack/config/inventorio_shared.json @@ -0,0 +1 @@ +{"ExpandedEnderChest":true,"InfinityBowNeedsNoArrow":true,"TotemFromUtilityBelt":true,"AllowSwappedHands":true,"2x2CraftingGrid":true,"TrinketsIntegration":true,"ToolBeltMode":"ENABLED","UtilityBeltShortDefaultSize":true,"DeepPocketsBookCraft":true,"DeepPocketsInTrades":true,"DeepPocketsInRandomSelection":true} \ No newline at end of file diff --git a/pack/config/item_obliterator.json5 b/pack/config/item_obliterator.json5 new file mode 100644 index 0000000..2ee581e --- /dev/null +++ b/pack/config/item_obliterator.json5 @@ -0,0 +1,69 @@ +{ + // ----------------------------------------------------------- + // Item Obliterator by ElocinDev + // ----------------------------------------------------------- + // + // How to add items? + // - They are json strings, so you need to separate each + // entry with a comma, except the last + // - If you start an entry with !, it will be treated as a regular expression + // Example: "!minecraft:.*_sword" to disable all swords + // + // ----------------------------------------------------------- + // Do not touch this + "configVersion": 2, + // ----------------------------------------------------------- + // Items here will be unusable completely + // Example: minecraft:diamond + "blacklisted_items": [ + "examplemod:example_item", + "kitchenkarrot:ice_cubes", + "kitchenkarrot:acorn", + "kitchenkarrot:sweet_roll", + "kitchenkarrot:pillager_pie", + "!refinedstorage:\\d+k_(fluid_)?storage_(part|disk)", + "refinedstorage:storage_housing", + "refinedstorage:creative_fluid_storage_disk", + "!create:[\\w_]*_calcite_[\\w_]*", + //"!(another_furniture:|everycomp:af)[\\w_/]*_(shelf|sofa|tall_stool|lamp|bench)", + "!(another_furniture:|everycomp:af)[\\w_/]*_(?!curtain|stool|table|service_bell)", + "!copycats:[\\w_]*$(?,,,,, + #With the following descriptions: + # - being the biome's ID NAME. You can find vanilla names here - https://minecraft.wiki/w/Biome#Biome_IDs + # - being the Cartographer villager level required for the map to be unlockable + # - being the cheapest (in Emeralds) the map can be + # - being the most expensive (in Emeralds) the map can be + # - being a hex color (without the #) for the map to display. You can generate one here - https://htmlcolorcodes.com/ + #Here's an example of a map to locate Ice Mountains: + #minecraft:ice_mountains,2,8,14,7FE4FF + Customs = [] + #Set to false to make it so the default quark Pathfinder Map Built-In don't get added, and only the custom ones do + "Apply Default Trades" = true + #How many steps in the search should the Pathfinder's Quill do per tick? The higher this value, the faster it'll find a result, but the higher chance it'll lag the game while doing so + "Pathfinders Quill Speed" = 32 + #Experimental. Determines if quills should be multithreaded instead. Will ignore quill speed. This could drastically improve performance as it execute the logic off the main thread ideally causing no lag at all + "Multi Threaded" = true + #Allows retrying after a pathfinder quill fails to find a biome nearby. Turn off if you think its op + "Allow Retrying" = true + "Search Radius" = 6400 + "Xp From Trade" = 5 + "Add To Cartographer" = true + "Add To Wandering Trader Forced" = true + "Add To Wandering Trader Generic" = false + "Add To Wandering Trader Rare" = false + "Draw Hud" = true + "Hud On Top" = false + + [tools.pickarang] + "Enable Flamerang" = true + #Set this to true to use the recipe without the Heart of Diamond, even if the Heart of Diamond is enabled. + "Never Use Heart Of Diamond" = false + + [tools.pickarang.pickarang] + #How long it takes before the Pickarang starts returning to the player if it doesn't hit anything. + Timeout = 20 + #Pickarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite. + "Harvest Level" = 3 + #Pickarang durability. Set to -1 to have the Pickarang be unbreakable. + Durability = 800 + #Pickarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5. + "Max Hardness" = 20.0 + #How much damage the Pickarang deals when swung as an item + "Attack Damage" = 2 + #How many ticks do you have to wait between using the pickarang again + Cooldown = 10 + #Whether this pickarang type can act as a hoe. + "Can Act As Hoe" = false + #Whether this pickarang type can act as a shovel. + "Can Act As Shovel" = true + #Whether this pickarang type can act as an axe. + "Can Act As Axe" = true + + [tools.pickarang.flamerang] + #How long it takes before the Pickarang starts returning to the player if it doesn't hit anything. + Timeout = 20 + #Pickarang harvest level. 2 is Iron, 3 is Diamond, 4 is Netherite. + "Harvest Level" = 4 + #Pickarang durability. Set to -1 to have the Pickarang be unbreakable. + Durability = 1040 + #Pickarang max hardness breakable. 22.5 is ender chests, 25.0 is monster boxes, 50 is obsidian. Most things are below 5. + "Max Hardness" = 20.0 + #How much damage the Pickarang deals when swung as an item + "Attack Damage" = 3 + #How many ticks do you have to wait between using the pickarang again + Cooldown = 10 + #Whether this pickarang type can act as a hoe. + "Can Act As Hoe" = false + #Whether this pickarang type can act as a shovel. + "Can Act As Shovel" = true + #Whether this pickarang type can act as an axe. + "Can Act As Axe" = true + + [tools.seed_pouch] + "Max Items" = 640 + "Show All Variants In Creative" = true + "Shift Range" = 3 + #Allow putting bone meal into the Seed Pouch (or anything else in the tag 'quark:seed_pouch_fertilizers') + "Allow Fertilizer" = true + "Fertilizer Shift Range" = 3 + + [tools.skull_pikes] + "Pike Range" = 5.0 + + [tools.torch_arrow] + "Extinguish On Miss" = false + + [tools.trowel] + #Amount of blocks placed is this value + 1. + #Set to 0 to make the Trowel unbreakable + #Allowed values: [0,) + "Trowel Max Durability" = 0 + +[tweaks] + "Armed Armor Stands" = true + "Automatic Recipe Unlock" = true + "Better Elytra Rocket" = true + "Campfires Boost Elytra" = true + "Compasses Work Everywhere" = true + "Coral On Cactus" = true + "Diamond Repair" = true + "Double Door Opening" = true + "Dragon Scales" = true + "Dyeable Item Frames" = true + Emotes = false + "Enhanced Ladders" = true + "Glass Shard" = true + "Gold Tools Have Fortune" = true + "Grab Chickens" = true + "Hoe Harvesting" = true + "Horses Swim" = true + "Improved Sponges" = true + "Lock Rotation" = true + "Magma Keeps Concrete Powder" = true + "Map Washing" = true + "More Banner Layers" = true + "More Note Block Sounds" = true + "More Villagers" = true + "No Durability On Cosmetics" = true + "Pat The Dogs" = true + "Petals On Water" = true + "Pig Litters" = true + "Poison Potato Usage" = true + "Reacharound Placing" = true + "Renewable Spore Blossoms" = true + "Replace Scaffolding" = true + "Safer Creatures" = true + "Shulker Packing" = true + "Simple Harvest" = true + "Slabs To Blocks" = true + "Slimes To Magma Cubes" = true + "Snow Golem Player Heads" = true + "Utility Recipes" = true + "Vexes Die With Their Masters" = true + "Villagers Follow Emeralds" = false + "Zombie Villagers On Normal" = true + + [tweaks.automatic_recipe_unlock] + #A list of recipe names that should NOT be added in by default + "Ignored Recipes" = [] + "Force Limited Crafting" = false + "Disable Recipe Book" = false + #If enabled, advancements granting recipes will be stopped from loading, potentially reducing the lagspike on first world join. + "Filter Recipe Advancements" = true + #This feature disables itself if any of the following mods are loaded: + # - nerb + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.campfires_boost_elytra] + "Boost Strength" = 0.5 + "Max Speed" = 1.0 + + [tweaks.compasses_work_everywhere] + "Enable Compass Nerf" = true + "Enable Clock Nerf" = true + "Enable Nether" = true + "Enable End" = true + + [tweaks.diamond_repair] + #List of changes to apply to repair items, format is "=" as seen in the defualt. + #Multiple repair items can be applied for the same base item, and as long as at least one is provided, any vanilla option will be removed. + #To use multiple items, comma separate them (e.g. "minecraft:diamond_sword=minecraft:diamond,minecraft:emerald")If you want the vanilla option back, you must add it again manually. + "Repair Item Changes" = ["minecraft:netherite_sword=minecraft:diamond", "minecraft:netherite_pickaxe=minecraft:diamond", "minecraft:netherite_axe=minecraft:diamond", "minecraft:netherite_shovel=minecraft:diamond", "minecraft:netherite_hoe=minecraft:diamond", "minecraft:netherite_helmet=minecraft:diamond", "minecraft:netherite_chestplate=minecraft:diamond", "minecraft:netherite_leggings=minecraft:diamond", "minecraft:netherite_boots=minecraft:diamond"] + "Unrepairable Items" = [] + "Enable Jei Hints" = true + + [tweaks.double_door_opening] + "Enable Doors" = true + "Enable Fence Gates" = true + #This feature disables itself if any of the following mods are loaded: + # - utilitix + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.emotes] + #The enabled default emotes. Remove from this list to disable them. You can also re-order them, if you feel like it. + "Enabled Emotes" = ["no", "yes", "wave", "salute", "cheer", "clap", "think", "point", "shrug", "headbang", "weep", "facepalm"] + #The list of Custom Emotes to be loaded. + #Watch the tutorial on Custom Emotes to learn how to make your own: https://youtu.be/ourHUkan6aQ + "Custom Emotes" = [] + #Enable this to make custom emotes read the file every time they're triggered so you can edit on the fly. + #DO NOT ship enabled this in a modpack, please. + "Custom Emote Debug" = false + "Button Shift X" = 0 + "Button Shift Y" = 0 + + [tweaks.enhanced_ladders] + #Allowed values: (,0] + "Fall Speed" = -0.2 + "Allow Freestanding" = true + "Allow Dropping Down" = true + "Allow Sliding" = true + "Allow Inventory Sneak" = true + + [tweaks.gold_tools_have_fortune] + #Allowed values: [0,) + "Fortune Level" = 2 + #Allowed values: [0,4] + "Harvest Level" = 2 + "Display Baked Enchantments In Tooltip" = true + "Italic Tooltip" = true + #Enchantments other than Gold's Fortune/Looting to bake into items. Format is "item+enchant@level", such as "minecraft:stick+sharpness@10". + "Baked Enchantments" = ["yttr:brookite_shovel+silk_touch@1", "yttr:brookite_pickaxe+silk_touch@1", "yttr:brookite_axe+silk_touch@1", "yttr:brookite_hoe+silk_touch@1", "minecraft:leather_helmet+feather_falling@3", "minecraft:leather_chestplate+feather_falling@3", "minecraft:leather_leggings+inventorio:deep_pockets@1", "minecraft:leather_boots+feather_falling@3", "minecraft:golden_helmet+fire_protection@2", "minecraft:golden_chestplate+fire_protection@2", "minecraft:golden_leggings+fire_protection@2", "minecraft:golden_boots+fire_protection@2"] + + [tweaks.grab_chickens] + "Needs No Helmet" = true + #Set to 0 to disable + "Slowness Level" = 1 + + [tweaks.hoe_harvesting] + #Allowed values: [1,5] + "Regular Hoe Radius" = 2 + #Allowed values: [1,5] + "High Tier Hoe Radius" = 3 + + [tweaks.improved_sponges] + #The maximum number of water tiles that a sponge can soak up. Vanilla default is 64. + #Allowed values: [64,) + "Maximum Water Drain" = 256 + #The maximum number of water tiles that a sponge can 'crawl along' for draining. Vanilla default is 6. + #Allowed values: [6,) + "Maximum Crawl Distance" = 10 + "Enable Placing On Water" = true + + [tweaks.lock_rotation] + #When true, lock rotation indicator in the same style as crosshair + "Render Like Cross Hair" = true + + [tweaks.map_washing] + #This feature disables itself if any of the following mods are loaded: + # - supplementaries + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [tweaks.more_banner_layers] + #Allowed values: [1,16] + "Layer Limit" = 16 + + [tweaks.more_note_block_sounds] + "Enable Amethyst Sound" = true + + [tweaks.more_villagers] + "Ocean Villager" = true + "Beach Villager" = true + + [tweaks.no_durability_on_cosmetics] + #Allow applying cosmetic items such as color runes with no anvil durability usage? Cosmetic items are defined in the quark:cosmetic_anvil_items tag + "Allow Cosmetic Items" = true + + [tweaks.pat_the_dogs] + #How many ticks it takes for a dog to want affection after being pet/tamed; leave -1 to disable + "Dogs Want Love" = -1 + #Whether you can pet all mobs + "Pet All Mobs" = false + #If `petAllMobs` is set, these mobs still can't be pet + "Pettable Denylist" = ["minecraft:ender_dragon", "minecraft:wither", "minecraft:armor_stand"] + #Even if `petAllMobs` is not set, these mobs can be pet + "Pettable Allowlist" = [] + + [tweaks.pig_litters] + #Allowed values: [1,) + "Min Pig Litter Size" = 2 + #Allowed values: [1,) + "Max Pig Litter Size" = 3 + "Pigs Eat Golden Carrots" = true + #Allowed values: [0,) + "Min Golden Carrot Boost" = 0 + #Allowed values: [0,) + "Max Golden Carrot Boost" = 2 + + [tweaks.poison_potato_usage] + Chance = 0.1 + "Poison Effect" = true + + [tweaks.reacharound_placing] + #Allowed values: [0,1] + Leniency = 0.5 + Whitelist = [] + Blacklist = [] + + [tweaks.renewable_spore_blossoms] + "Bone Meal Chance" = 0.2 + + [tweaks.replace_scaffolding] + #How many times the algorithm for finding out where a block would be placed is allowed to turn. If you set this to large values (> 3) it may start producing weird effects. + "Max Bounces" = 1 + + [tweaks.safer_creatures] + #How many blocks should be subtracted from the rabbit fall height when calculating fall damage. 5 is the same value as vanilla frogs + "Height Reduction" = 5.0 + "Enable Slime Fall Damage Removal" = true + + [tweaks.simple_harvest] + #Can players harvest crops with empty hand clicks? + "Empty Hand Harvest" = true + #Does harvesting crops with a hoe cost durability? + "Harvesting Costs Durability" = false + #Should Quark look for(nonvanilla) crops, and handle them? + "Do Harvesting Search" = true + #Should villagers use simple harvest instead of breaking crops? + "Villagers Use Simple Harvest" = true + #Which crops can be harvested? + #Format is: "harvestState[,afterHarvest]", i.e. "minecraft:wheat[age=7]" or "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]" + "Harvestable Blocks" = ["minecraft:wheat[age=7]", "minecraft:carrots[age=7]", "minecraft:potatoes[age=7]", "minecraft:beetroots[age=3]", "minecraft:nether_wart[age=3]", "minecraft:cocoa[age=2,facing=north],minecraft:cocoa[age=0,facing=north]", "minecraft:cocoa[age=2,facing=south],minecraft:cocoa[age=0,facing=south]", "minecraft:cocoa[age=2,facing=east],minecraft:cocoa[age=0,facing=east]", "minecraft:cocoa[age=2,facing=west],minecraft:cocoa[age=0,facing=west]"] + #Which blocks should right click harvesting simulate a click on instead of breaking? + #This is for blocks like sweet berry bushes, which have right click harvesting built in. + "Right Clickable Blocks" = ["minecraft:sweet_berry_bush", "minecraft:cave_vines"] + + [tweaks.utility_recipes] + #Can any wool color be dyed? + "Dye Any Wool" = true + #Can other stone-like materials be used for crafting stone tools? + "Better Stone Tool Crafting" = true + #Can a dispenser be crafted by adding a bow to a dropper? + "Enable Dispenser" = true + #Can a repeater be crafted with the pattern for a redstone torch? + "Enable Repeater" = true + #Can you craft a minecart around blocks which can be placed inside? + "Enable Minecarts" = true + #Can you craft a boat around a chest to directly make a chest boat? + "Enable Chest Boats" = true + #Can you craft four chests at once using logs? + "Logs To Chests" = true + #Can Coral be crafted into dye? + "Coral To Dye" = true + #Can cookies, paper, and bread be crafted in a 2x2 crafting table? + "Bent Recipes" = true + #Can Rotten Flesh and Poisonous Potatoes be composted? + "Compostable Toxins" = true + #Does Dragon Breath return a bottle when used as a reagent or material? + "Effective Dragon Breath" = true + #Can torches can be used as fuel in furnaces? + "Torches Burn" = true + #Can bones be smelted down to bone meal? + "Bone Meal Utility" = true + #Can Charcoal be crafted into Black Dye? + "Charcoal To Black Dye" = true + #Can two Logs be used instead of a Chest to make a Hopper? + "Easy Hopper" = true + #Can two Logs be used to craft 16 sticks? + "Easy Sticks" = true + #Can raw ore blocks be smelted, taking 9x the time a normal item? + "Smelt Raw Ore Blocks" = true + +[world] + "Ancient Wood" = false + "Azalea Wood" = true + "Big Stone Clusters" = false + "Blossom Trees" = true + "Chorus Vegetation" = true + Corundum = false + "Fairy Rings" = true + "Fallen Logs" = true + "Glimmering Weald" = true + "Monster Box" = true + "Nether Obsidian Spikes" = false + "New Stone Types" = false + "No More Lava Pockets" = true + Permafrost = false + "Spiral Spires" = true + + [world.ancient_wood] + "Ancient Fruit Gives Exp" = true + #Allowed values: [1,) + "Ancient Fruit Exp Value" = 10 + #Set to a value other than 0 to enable Ancient City loot chest generation (8 recommended if you do) + #Allowed values: [0,) + "Ancient City Loot Weight" = 0 + #Allowed values: [0,) + "Ancient City Loot Quality" = 1 + #Set to 0 to disable sniffer sniffing. The vanilla loot table has every entry at weight 1, so without editing it, it's impossible to make the sapling more rare + #Allowed values: [0,) + "Sniffing Loot Weight" = 1 + #Allowed values: [0,) + "Sniffing Loot Quality" = 0 + + [world.azalea_wood] + #This feature disables itself if any of the following mods are loaded: + # - caverns_and_chasms + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [world.big_stone_clusters] + #Blocks that stone clusters can replace. If you want to make it so it only replaces in one dimension, + #do "block|dimension", as we do for netherrack and end stone by default. + "Blocks To Replace" = ["minecraft:stone", "minecraft:andesite", "minecraft:diorite", "minecraft:granite", "minecraft:netherrack|minecraft:the_nether", "minecraft:end_stone|minecraft:the_end", "quark:marble", "quark:limestone", "quark:jasper", "quark:slate"] + + [world.big_stone_clusters.calcite] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.calcite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.calcite.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.calcite.biomes.tags] + "Biome Tags" = ["minecraft:is_mountain"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.calcite.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.limestone] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.limestone.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.limestone.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.limestone.biomes.tags] + "Biome Tags" = ["forge:is_swamp", "minecraft:is_ocean"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.limestone.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.jasper] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.jasper.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.jasper.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.jasper.biomes.tags] + "Biome Tags" = ["minecraft:is_badlands", "forge:is_sandy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.jasper.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.shale] + Enabled = true + #Allowed values: [0,) + Rarity = 4 + "Min Y Level" = 20 + "Max Y Level" = 80 + #Allowed values: [0,) + "Horizontal Size" = 14 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 9 + #Allowed values: [0,) + "Vertical Variation" = 9 + + [world.big_stone_clusters.shale.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.big_stone_clusters.shale.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.shale.biomes.tags] + "Biome Tags" = ["forge:is_snowy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.shale.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.big_stone_clusters.myalite] + "Generate In Air" = true + Enabled = true + #Allowed values: [0,) + Rarity = 100 + "Min Y Level" = 58 + "Max Y Level" = 62 + #Allowed values: [0,) + "Horizontal Size" = 20 + #Allowed values: [0,) + "Vertical Size" = 40 + #Allowed values: [0,) + "Horizontal Variation" = 6 + #Allowed values: [0,) + "Vertical Variation" = 10 + + [world.big_stone_clusters.myalite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + [world.big_stone_clusters.myalite.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.big_stone_clusters.myalite.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.big_stone_clusters.myalite.biomes.biomes] + Biomes = ["minecraft:end_highlands"] + "Is Blacklist" = false + + [world.blossom_trees] + "Drop Leaf Particles" = true + + [world.blossom_trees.blue] + Rarity = 200 + + [world.blossom_trees.blue.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.blue.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.blue.biome_config.tags] + "Biome Tags" = ["forge:is_snowy"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.blue.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.lavender] + Rarity = 100 + + [world.blossom_trees.lavender.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.lavender.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.lavender.biome_config.tags] + "Biome Tags" = ["forge:is_swamp"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.lavender.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.orange] + Rarity = 100 + + [world.blossom_trees.orange.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.orange.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.orange.biome_config.tags] + "Biome Tags" = ["minecraft:is_savanna"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.orange.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.yellow] + Rarity = 200 + + [world.blossom_trees.yellow.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.yellow.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.yellow.biome_config.tags] + "Biome Tags" = ["forge:is_plains"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.yellow.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.blossom_trees.red] + Rarity = 30 + + [world.blossom_trees.red.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.blossom_trees.red.biome_config] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.blossom_trees.red.biome_config.tags] + "Biome Tags" = ["minecraft:is_badlands"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.blossom_trees.red.biome_config.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.chorus_vegetation] + Rarity = 150 + Radius = 7 + "Chunk Attempts" = 120 + "Highlands Chance" = 1.0 + "Midlands Chance" = 0.2 + "Other End Biomes Chance" = 0.0 + "Passive Teleport Chance" = 0.2 + "Endermite Spawn Chance" = 0.01 + "Teleport Duplication Chance" = 0.01 + + [world.corundum] + #Allowed values: [0,1] + "Crystal Chance" = 0.16 + #Allowed values: [0,1] + "Crystal Cluster Chance" = 0.2 + #Allowed values: [0,1] + "Crystal Cluster On Sides Chance" = 0.6 + #Allowed values: [0,1] + "Double Crystal Chance" = 0.2 + #The chance that a crystal can grow, this is on average 1 in X world ticks, set to a higher value to make them grow slower. Minimum is 1, for every tick. Set to 0 to disable growth. + "Cave Crystal Growth Chance" = 5 + "Crystals Craft Runes" = true + "Enable Collateral Movement" = true + + [world.corundum.generation_settings] + #Allowed values: [0,) + Rarity = 400 + "Min Y Level" = 0 + "Max Y Level" = 64 + #Allowed values: [0,) + "Horizontal Size" = 36 + #Allowed values: [0,) + "Vertical Size" = 14 + #Allowed values: [0,) + "Horizontal Variation" = 8 + #Allowed values: [0,) + "Vertical Variation" = 6 + + [world.corundum.generation_settings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.corundum.generation_settings.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.corundum.generation_settings.biomes.tags] + "Biome Tags" = ["minecraft:is_ocean"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.corundum.generation_settings.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [world.fairy_rings] + "Forest Chance" = 0.00625 + "Plains Chance" = 0.0025 + Ores = ["minecraft:emerald_ore", "minecraft:diamond_ore"] + + [world.fairy_rings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.fallen_logs] + #Percentage of fallen logs spawning as hollow. Requires Hollow Logs Module to be enabled + "Hollow Chance" = 0.0 + Rarity = 4 + #Chance for logs to spawn on water + "On Water Chance" = 0.1 + "Sparse Biome Rarity" = 12 + #Tags that define which biomes can have which wood types + "Biome Tags" = ["quark:has_fallen_acacia=minecraft:acacia_log", "quark:has_fallen_birch=minecraft:birch_log", "quark:has_fallen_cherry=minecraft:cherry_log", "quark:has_fallen_dark_oak=minecraft:dark_oak_log", "quark:has_fallen_jungle=minecraft:jungle_log", "quark:has_fallen_mangrove=minecraft:mangrove_log", "quark:has_fallen_oak=minecraft:oak_log", "quark:has_fallen_spruce=minecraft:spruce_log"] + + [world.fallen_logs.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.monster_box] + #The chance for the monster box generator to try and place one in a chunk. 0 is 0%, 1 is 100% + #This can be higher than 100% if you want multiple per chunk. + "Chance Per Chunk" = 0.2 + "Min Y" = -50 + "Max Y" = 0 + "Min Mob Count" = 5 + "Max Mob Count" = 8 + "Enable Extra Loot Table" = true + "Activation Range" = 2.5 + #How many blocks to search vertically from a position before trying to place a block. Higher means you'll get more boxes in open spaces. + "Search Range" = 15 + + [world.monster_box.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.nether_obsidian_spikes] + #The chance for a chunk to contain spikes (1 is 100%, 0 is 0%) + "Chance Per Chunk" = 0.1 + #The chance for a spike to be big (1 is 100%, 0 is 0%) + "Big Spike Chance" = 0.03 + #Should a chunk have spikes, how many would the generator try to place + "Tries Per Chunk" = 4 + "Big Spike Spawners" = true + + [world.nether_obsidian_spikes.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_nether"] + + [world.new_stone_types] + "Enable Limestone" = true + "Enable Jasper" = true + "Enable Shale" = true + "Enable Myalite" = true + "Add New Stones To Mason Trades" = true + + [world.new_stone_types.limestone] + + [world.new_stone_types.limestone.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.limestone.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.limestone.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.jasper] + + [world.new_stone_types.jasper.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.jasper.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.jasper.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.shale] + + [world.new_stone_types.shale.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.new_stone_types.shale.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.shale.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.new_stone_types.myalite] + + [world.new_stone_types.myalite.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + [world.new_stone_types.myalite.oregen_lower] + #Allowed values: [-64,320] + "Min Height" = 0 + #Allowed values: [-64,320] + "Max Height" = 60 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 2.0 + + [world.new_stone_types.myalite.oregen_upper] + #Allowed values: [-64,320] + "Min Height" = 64 + #Allowed values: [-64,320] + "Max Height" = 128 + #Allowed values: [0,) + "Cluster Size" = 64 + #Can be a positive integer or a fractional value betweeen 0 and 1. If integer, it spawns that many clusters. If fractional, it has that chance to spawn a single cluster. Set exactly zero to not spawn at all. + #Allowed values: [0,) + "Cluster Count" = 0.1666666 + + [world.permafrost] + + [world.permafrost.generation_settings] + #Allowed values: [0,) + Rarity = 2 + "Min Y Level" = 105 + "Max Y Level" = 140 + #Allowed values: [0,) + "Horizontal Size" = 72 + #Allowed values: [0,) + "Vertical Size" = 15 + #Allowed values: [0,) + "Horizontal Variation" = 22 + #Allowed values: [0,) + "Vertical Variation" = 4 + + [world.permafrost.generation_settings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [world.permafrost.generation_settings.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.permafrost.generation_settings.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.permafrost.generation_settings.biomes.biomes] + Biomes = ["minecraft:frozen_peaks"] + "Is Blacklist" = false + + [world.spiral_spires] + Rarity = 200 + Radius = 15 + "Enable Myalite Viaducts" = true + #Allowed values: [2,1,024] + "Myalite Conduit Distance" = 24 + "Renewable Myalite" = true + + [world.spiral_spires.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:the_end"] + + [world.spiral_spires.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [world.spiral_spires.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [world.spiral_spires.biomes.biomes] + Biomes = ["minecraft:end_highlands"] + "Is Blacklist" = false + +[mobs] + Crabs = true + Forgotten = true + Foxhound = true + Shiba = false + Stonelings = true + Toretoise = true + Wraith = false + + [mobs.crabs] + "Enable Brewing" = true + #Whether Resilience should be required for 'How Did We Get Here?' and (if brewing is enabled) 'A Furious Cocktail'. + #Keep this on when brewing is disabled if your pack adds an alternative source for the effect. + "Resilience Required For All Effects" = true + "Add Crab Leg To Fisherman Trades" = true + + [mobs.crabs.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 5 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + [mobs.crabs.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.crabs.spawn_config.biomes.tags] + "Biome Tags" = ["minecraft:is_beach"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.crabs.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.forgotten] + #This is the probability of a Skeleton that spawns under the height threshold being replaced with a Forgotten. + "Forgotten Spawn Rate" = 0.05 + "Max Height For Spawn" = 0 + + [mobs.foxhound] + #The chance coal will tame a foxhound + "Tame Chance" = 0.05 + "Foxhounds Speed Up Furnaces" = true + + [mobs.foxhound.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 30 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 2 + + [mobs.foxhound.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.foxhound.spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.foxhound.spawn_config.biomes.biomes] + Biomes = ["minecraft:nether_wastes", "minecraft:basalt_deltas"] + "Is Blacklist" = false + + [mobs.foxhound.lesser_spawn_config] + "Max Cost" = 0.7 + "Spawn Cost" = 0.15 + #Allowed values: (0,) + "Spawn Weight" = 2 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 1 + + [mobs.foxhound.lesser_spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.foxhound.lesser_spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.foxhound.lesser_spawn_config.biomes.biomes] + Biomes = ["minecraft:soul_sand_valley"] + "Is Blacklist" = false + + [mobs.shiba] + "Ignore Areas With Skylight" = false + + [mobs.shiba.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 40 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + [mobs.shiba.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.shiba.spawn_config.biomes.tags] + "Biome Tags" = ["minecraft:is_mountain"] + "Is Blacklist" = false + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.shiba.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.stonelings] + "Max Y Level" = 0 + "Enable Diamond Heart" = true + #When enabled, stonelings are much more aggressive in checking for players + "Cautious Stonelings" = false + "Tamable Stonelings" = true + #Disabled if if Pathfinder Maps are disabled. + "Weald Pathfinder Maps" = true + + [mobs.stonelings.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [mobs.stonelings.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 80 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 1 + + [mobs.stonelings.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.stonelings.spawn_config.biomes.tags] + "Biome Tags" = ["forge:is_void", "minecraft:is_nether", "minecraft:is_end"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.stonelings.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.toretoise] + "Max Y Level" = 0 + #The number of ticks from mining a tortoise until feeding it could cause it to regrow. + "Cooldown Ticks" = 1200 + #The items that can be fed to toretoises to make them regrow ores. + Foods = ["minecraft:glow_berries"] + "Allow Toretoise To Regrow" = true + #Feeding a toretoise after cooldown will regrow them with a one-in-this-number chance. Set to 1 to always regrow, higher = lower chance. + "Regrow Chance" = 3 + + [mobs.toretoise.dimensions] + "Is Blacklist" = false + Dimensions = ["minecraft:overworld"] + + [mobs.toretoise.spawn_config] + #Allowed values: (0,) + "Spawn Weight" = 120 + #Allowed values: [1,) + "Min Group Size" = 2 + #Allowed values: [1,) + "Max Group Size" = 4 + + [mobs.toretoise.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.toretoise.spawn_config.biomes.tags] + "Biome Tags" = ["forge:is_void", "minecraft:is_nether", "minecraft:is_end"] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.toretoise.spawn_config.biomes.biomes] + Biomes = [] + "Is Blacklist" = true + + [mobs.wraith] + #List of sound sets to use with wraiths. + #Three sounds must be provided per entry, separated by | (in the format idle|hurt|death). Leave blank for no sound (i.e. if a mob has no ambient noise) + "Wraith Sounds" = ["entity.sheep.ambient|entity.sheep.hurt|entity.sheep.death", "entity.cow.ambient|entity.cow.hurt|entity.cow.death", "entity.pig.ambient|entity.pig.hurt|entity.pig.death", "entity.chicken.ambient|entity.chicken.hurt|entity.chicken.death", "entity.horse.ambient|entity.horse.hurt|entity.horse.death", "entity.cat.ambient|entity.cat.hurt|entity.cat.death", "entity.wolf.ambient|entity.wolf.hurt|entity.wolf.death", "entity.villager.ambient|entity.villager.hurt|entity.villager.death", "entity.polar_bear.ambient|entity.polar_bear.hurt|entity.polar_bear.death", "entity.zombie.ambient|entity.zombie.hurt|entity.zombie.death", "entity.skeleton.ambient|entity.skeleton.hurt|entity.skeleton.death", "entity.spider.ambient|entity.spider.hurt|entity.spider.death", "|entity.creeper.hurt|entity.creeper.death", "entity.endermen.ambient|entity.endermen.hurt|entity.endermen.death", "entity.zombie_pig.ambient|entity.zombie_pig.hurt|entity.zombie_pig.death", "entity.witch.ambient|entity.witch.hurt|entity.witch.death", "entity.blaze.ambient|entity.blaze.hurt|entity.blaze.death", "entity.llama.ambient|entity.llama.hurt|entity.llama.death", "|quark:entity.stoneling.cry|quark:entity.stoneling.die", "quark:entity.frog.idle|quark:entity.frog.hurt|quark:entity.frog.die"] + + [mobs.wraith.spawn_config] + "Max Cost" = 0.7 + "Spawn Cost" = 0.15 + #Allowed values: (0,) + "Spawn Weight" = 5 + #Allowed values: [1,) + "Min Group Size" = 1 + #Allowed values: [1,) + "Max Group Size" = 3 + + [mobs.wraith.spawn_config.biomes] + + #Biome tags for which this should spawn in. Must match both this and 'biomes' to spawn. + [mobs.wraith.spawn_config.biomes.tags] + "Biome Tags" = [] + "Is Blacklist" = true + + #Biome names this should spawn in. Must match both this and 'types' to spawn. + [mobs.wraith.spawn_config.biomes.biomes] + Biomes = ["minecraft:soul_sand_valley"] + "Is Blacklist" = false + +[client] + "Auto Walk Keybind" = true + "Back Button Keybind" = true + "Buckets Show Inhabitants" = true + Camera = true + "Chest Searching" = true + "Elytra Indicator" = true + "Greener Grass" = false + "Improved Tooltips" = true + "Long Range Pick Block" = true + "Microcrafting Helper" = true + "Soul Candles" = true + "Usage Ticker" = true + "Uses For Curses" = true + "Variant Animal Textures" = true + "Wool Shuts Up Minecarts" = true + + [client.auto_walk_keybind] + "Draw Hud" = true + "Hud Height" = 10 + + [client.buckets_show_inhabitants] + "Show Axolotls" = true + "Show Crabs" = true + "Show Tropical Fish" = true + "Show Shiny Slime" = true + + [client.camera] + #Date format that will be displayed in screenshots. Must be a valid one (i.e. MM/dd/yyyy) + "Date Format" = "MM/dd/yyyy" + + [client.chest_searching] + + [client.chest_searching.overlay_color] + A = 0.67 + R = 0.0 + G = 0.0 + B = 0.0 + + [client.greener_grass] + "Affect Leaves" = true + "Affect Water" = false + "Block List" = ["minecraft:large_fern", "minecraft:tall_grass", "minecraft:grass_block", "minecraft:fern", "minecraft:grass", "minecraft:potted_fern", "minecraft:sugar_cane", "environmental:giant_tall_grass", "grassslabs:grass_carpet", "grassslabs:grass_slab", "grassslabs:grass_stairs", "valhelsia_structures:grass_block"] + "Leaves List" = ["minecraft:spruce_leaves", "minecraft:birch_leaves", "minecraft:oak_leaves", "minecraft:jungle_leaves", "minecraft:acacia_leaves", "minecraft:dark_oak_leaves", "atmospheric:rosewood_leaves", "atmospheric:morado_leaves", "atmospheric:yucca_leaves", "autumnity:maple_leaves", "environmental:willow_leaves", "environmental:hanging_willow_leaves", "minecraft:vine"] + + [client.greener_grass.color_matrix] + R = [0.89, 0.0, 0.0] + G = [0.0, 1.11, 0.0] + B = [0.0, 0.0, 0.89] + + [client.greener_grass.water_matrix] + R = [0.86, 0.0, 0.0] + G = [0.0, 1.0, 0.22] + B = [0.0, 0.0, 1.22] + + [client.improved_tooltips] + "Attribute Tooltips" = true + "Food Tooltips" = false + "Shulker Tooltips" = true + "Map Tooltips" = true + "Enchanting Tooltips" = true + "Fuel Time Tooltips" = true + "Shulker Box Use Colors" = true + "Shulker Box Require Shift" = false + "Map Require Shift" = false + #The value of each shank of food. + #Tweak this when using mods like Hardcore Hunger which change that value. + "Food Divisor" = 2 + "Show Saturation" = false + "Food Compression Threshold" = 4 + "Fuel Time Divisor" = 200 + #Should item attributes be colored relative to your current equipped item? + #e.g. if wearing an Iron Helmet, the armor value in a Diamond Helmet will show as green, and vice versa would be red. + #If set to false, item attributes will show in white or red if they're negative values. + "Show Upgrade Status" = true + "Animate Up Down Arrows" = true + "Enchanting Stacks" = ["minecraft:diamond_sword", "minecraft:diamond_pickaxe", "minecraft:diamond_shovel", "minecraft:diamond_axe", "minecraft:diamond_hoe", "minecraft:diamond_helmet", "minecraft:diamond_chestplate", "minecraft:diamond_leggings", "minecraft:diamond_boots", "minecraft:shears", "minecraft:bow", "minecraft:fishing_rod", "minecraft:crossbow", "minecraft:trident", "minecraft:elytra", "minecraft:shield", "quark:pickarang", "supplementaries:slingshot", "supplementaries:bubble_blower", "farmersdelight:diamond_knife", "the_bumblezone:stinger_spear", "the_bumblezone:crystal_cannon", "the_bumblezone:honey_crystal_shield", "the_bumblezone:honey_bee_leggings_2"] + #A list of additional stacks to display on each enchantment + #The format is as follows: + #enchant_id=item1,item2,item3... + #So to display a carrot on a stick on a mending book, for example, you use: + #minecraft:mending=minecraft:carrot_on_a_stick + "Enchanting Additional Stacks" = [] + + [client.usage_ticker] + #Switch the armor display to the off hand side and the hand display to the main hand side + Invert = false + "Shift Left" = 0 + "Shift Right" = 0 + "Enable Main Hand" = true + "Enable Off Hand" = true + "Enable Armor" = true + + [client.uses_for_curses] + "Vanish Pumpkin Overlay" = true + "Bind Armor Stands With Player Heads" = true + + [client.variant_animal_textures] + "Enable Cow" = true + "Enable Pig" = true + "Enable Chicken" = true + "Enable Shiny Rabbit" = true + "Enable Shiny Llama" = true + "Enable Shiny Dolphin" = true + "Enable Shiny Slime" = true + "Enable L G B T Bees" = true + "Every Bee Is L G B T" = false + #The chance for an animal to have a special "Shiny" skin, like a shiny pokemon. This is 1 in X. Set to 0 to disable. + "Shiny Animal Chance" = 2048 + #If a shiny animal should emit occasional sparkles. + "Shiny Sparkles" = true + +[experimental] + "Adjustable Chat" = false + "Climate Control Remover" = false + #This feature generates Resource Pack Item Model predicates on the items defined in 'Items to Change' + #for the Enchantments defined in 'Enchantments to Register'. + #Example: if 'minecraft:silk_touch' is added to 'Enchantments to Register', and 'minecraft:netherite_pickaxe' + #is added to 'Items to Change', then a predicate named 'quark_has_enchant_minecraft_silk_touch' will be available + #to the netherite_pickaxe.json item model, whose value will be the enchantment level. + "Enchantment Predicates" = false + "Enchantments Begone" = true + "Game Nerfs" = true + "Narrator Readout" = false + "Overlay Shader" = false + "Spawner Replacer" = false + #Allows placing variant blocks automatically via a selector menu triggered from a keybind + "Variant Selector" = false + "Villager Rerolling Rework" = false + + [experimental.adjustable_chat] + "Horizontal Shift" = 0 + "Vertical Shift" = 0 + + [experimental.climate_control_remover] + #Disables the temperature comparison when choosing biomes to generate. + "Disable Temperature" = false + #Disables the humidity comparison when choosing biomes to generate. + "Disable Humidity" = false + #Disables the 'continentalness' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably make oceans act a lot more like rivers. + "Disable Continentalness" = false + #Disables the 'erosion' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably create very extreme height differences, and will make the End more chaotic. + "Disable Erosion" = false + #Disables the 'depth' comparison when choosing biomes to generate. + #WARNING: Enabling this will probably make cave biomes appear at unusual heights. + "Disable Depth" = false + #Disables the 'weirdness' comparison when choosing biomes to generate. + #WARNING: Enabling this will... well, probably make things weird. + "Disable Weirdness" = false + #Disables the 'offset' parameter when choosing biomes to generate. + #WARNING: Enabling this will make rarer nether biomes more common. + "Disable Offset" = false + + #This feature generates Resource Pack Item Model predicates on the items defined in 'Items to Change' + #for the Enchantments defined in 'Enchantments to Register'. + #Example: if 'minecraft:silk_touch' is added to 'Enchantments to Register', and 'minecraft:netherite_pickaxe' + #is added to 'Items to Change', then a predicate named 'quark_has_enchant_minecraft_silk_touch' will be available + #to the netherite_pickaxe.json item model, whose value will be the enchantment level. + [experimental.enchantment_predicates] + "Items To Change" = [] + "Enchantments To Register" = [] + + [experimental.enchantments_begone] + "Enchantments To Begone" = ["minecraft:smite", "minecraft:efficiency", "minecraft:mending", "minecraft:sharpness", "minecraft:protection", "minecraft:power", "yttr:vorpal", "yttr:stabilization", "cofh_core:holding", "additionaladditions:precision", "additionaladditions:speed"] + + [experimental.game_nerfs] + #Makes Mending act like the Unmending mod + #https://www.curseforge.com/minecraft/mc-mods/unmending + "Nerf Mending" = true + #Makes Mending II still work even if mending is nerfed. + #If you want Mending II, disable the sanity check on Ancient Tomes and add minecraft:mending to the tomes. + "No Nerf for Mending II" = false + #Resets all villager discounts when zombified to prevent reducing prices to ridiculous levels + "Nerf Villager Discount" = true + #Makes Iron Golems not drop Iron Ingots + "Disable Iron Farms" = true + #Makes Boats not glide on ice + "Disable Ice Roads" = false + #Makes Sheep not drop Wool when killed + "Disable Wool Drops" = false + #Disables mob griefing for only specific entities + "Enable Selective Mob Griefing" = true + #Force Elytra to only work in specific dimensions + "Enable Dimension Locked Elytra" = true + #Makes falling blocks not able to be duped via dimension crossing + "Disable Falling Block Dupe" = true + #Fixes several piston physics exploits, most notably including TNT duping + "Disable Piston Physics Exploits" = true + #Fixes mushroom growth being able to replace blocks + "Disable Mushroom Block Removal" = true + #Makes tripwire hooks unable to be duplicated + "Disable Tripwire Hook Dupe" = true + #Makes villages spawn less often when close to spawn + "Village Spawn Nerf" = false + #Distance at which villages will spawn as normal. Effect scales linearly from world spawn + "Village Spawn Nerf Distance" = 7000 + "Non Griefing Entities" = ["minecraft:creeper", "minecraft:enderman"] + "Elytra Allowed Dimensions" = ["minecraft:the_end"] + + [experimental.overlay_shader] + #Sets the name of the shader to load on a regular basis. This can load any shader the Camera module can (and requires the Camera module enabled to apply said logic). + #Some useful shaders include 'desaturate', 'oversaturate', 'bumpy' + #Colorblind simulation shaders are available in the form of 'deuteranopia', 'protanopia', 'tritanopia', and 'achromatopsia' + Shader = "none" + + [experimental.spawner_replacer] + #Mobs to be replaced with other mobs. + #Format is: "mob1,mob2", i.e. "minecraft:spider,minecraft:skeleton" + "Replace Mobs" = [] + + #Allows placing variant blocks automatically via a selector menu triggered from a keybind + [experimental.variant_selector] + #Set this to true to automatically convert any dropped variant items into their originals. Do this ONLY if you intend to take control of every recipe via a data pack or equivalent, as this will introduce dupes otherwise. + "Convert Variant Items" = false + #Enable the hammer, allowing variants to be swapped between eachother, including the original block. Do this ONLY under the same circumstances as Convert Variant Items. + "Enable Hammer" = false + "Show Tooltip" = true + "Align Hud To Hotbar" = false + "Show Simple Hud" = false + "Show Hud" = true + "Enable Green Tint" = true + "Override Held Item Render" = true + "Hud Offset X" = 0 + "Hud Offset Y" = 0 + #When true, selector arrow will render in same style as crosshair + "Render Like Cross Hair" = true + #Uses smaller arrow icon for variant selector overlay + "Smaller Arrow" = false + + [experimental.variant_selector.variants] + #The list of all variant types available for players to use. Values are treated as suffixes to block IDs for scanning. + #Prefix any variant type with ! to make it show up for Manual Variants but not be automatically scanned for. (e.g. '!polish') + "Variant Types" = ["slab", "stairs", "wall", "fence", "fence_gate", "vertical_slab"] + #By default, only a mod's namespace is scanned for variants for its items (e.g. if coolmod adds coolmod:fun_block, it'll search only for coolmod:fun_block_stairs). + # Mods in this list are also scanned for variants if none are found in itself (e.g. if quark is in the list and coolmod:fun_block_stairs doesn't exist, it'll try to look for quark:fun_block_stairs next) + "Tested Mods" = ["quark", "everycomp", "v_slab_compat"] + "Print Variant Map To Log" = false + #Format is 'alias=original' in each value (e.g. 'wall=fence' means that a failed search for, minecraft:cobblestone_fence will try cobblestone_wall next) + Aliases = ["carpet=slab", "pane=fence"] + #Ends of block IDs to try and remove when looking for variants. (e.g. minecraft:oak_planks goes into minecraft:oak_stairs, so we have to include '_planks' in this list for it to find them or else it'll only look for minecraft:oak_planks_stairs) + "Strip Candidates" = ["_planks", "_wool", "_block", "s"] + #Add manual variant overrides here, the format is 'type,block,output' (e.g. polish,minecraft:stone_bricks,minecraft:chiseled_stone_bricks). The type must be listed in Variant Types + "Manual Variants" = [] + # A list of block IDs and mappings to be excluded from variant selection. + #To exclude a block from being turned into other blocks, just include the block ID (e.g. minecraft:cobblestone). + #To exclude a block from having other blocks turned into it, suffix it with = (e.g. =minecraft:cobblestone_stairs) + #To exclude a specific block->variant combination, put = between the two (e.g. minecraft:cobblestone=minecraft:cobblestone_stairs) + Blacklist = ["minecraft:snow", "minecraft:bamboo", "minecraft:bamboo_block"] + + [experimental.villager_rerolling_rework] + #If enabled, the first two trades a villager generates for a profession will always be the same for a given villager. + #This prevents repeatedly placing down a job site block to reroll the villager's trades. + "Seed Initial Villager Trades" = true + #Set to 0 to disable the chance to reroll trades when restocking. + #It's possible for a trade to not restock even when the chance is 1. This happens when the rerolled trade is one the villager already has. + #This chance only guarantees a reroll will be attempted. + #Allowed values: [0,1] + "Chance To Reroll When Restocking" = 0.25 + #Set to 0 to disable the chance to reroll trades when restocking. Set to -1 to allow unlimited rerolling. + #Trades earlier in the list will restock first. + "Maximum Restocks Per Day" = 3 + #If enabled, villagers will reroll when they restock, rather than when they begin work for the day. + #If disabled, players can prevent rerolling by ensuring the villager isn't out of stock on their last restock of the day. + "Reroll On Any Restock" = false + #If enabled, villagers will be able to reroll any trade that has been used AT ALL since the last restock. + "Reroll Even If Not Out Of Stock" = false + +[oddities] + Backpack = false + Crate = true + Magnets = true + "Matrix Enchanting" = false + Pipes = false + "Tiny Potato" = false + "Totem Of Holding" = true + + [oddities.backpack] + #Set this to true to allow the backpacks to be unequipped even with items in them + "Super Op Mode" = false + "Enable Ravager Hide" = true + "Items In Backpack Tick" = true + "Base Ravager Hide Drop" = 1 + "Extra Chance Per Looting" = 0.5 + "Allow Armor Stand Unloading" = true + + [oddities.crate] + "Max Items" = 640 + + [oddities.magnets] + #Any items you place in this list will be derived so that any block made of it will become magnetizable + "Magnetic Derivation List" = ["minecraft:iron_ingot", "minecraft:copper_ingot", "minecraft:exposed_copper", "minecraft:weathered_copper", "minecraft:oxidized_copper", "minecraft:raw_iron", "minecraft:raw_copper", "minecraft:iron_ore", "minecraft:deepslate_iron_ore", "minecraft:copper_ore", "minecraft:deepslate_copper_ore", "quark:gravisand"] + #Block/Item IDs to force-allow magnetism on, regardless of their crafting recipe + "Magnetic Whitelist" = ["minecraft:chipped_anvil", "minecraft:damaged_anvil", "minecraft:iron_horse_armor", "minecraft:chainmail_helmet", "minecraft:chainmail_boots", "minecraft:chainmail_leggings", "minecraft:chainmail_chestplate", "#minecraft:cauldrons"] + #Block/Item IDs to force-disable magnetism on, regardless of their crafting recipe + "Magnetic Blacklist" = ["minecraft:tripwire_hook", "minecraft:map"] + "Use Pre End Recipe" = false + #When true magnets will never push something that pistons cant push. Disable to have further control. This allows iron rods to break obsidian for example + "Use Piston Logic" = true + #Allows magnets to push and pull entities in the 'affected_by_magnets' tag (edit it with datapack). Turning off can reduce lag + "Affect Entities" = true + #Allows magnets to push and pull entities having magnetic armor. Requires 'magnetic_entities' config ON + "Affects Armor" = true + #Determines how fast entities are pulled by magnets. Still follows the inverse square law + "Entities Pull Force" = 0.18000000715255737 + #Stonecutters pulled by magnets will silk touch the blocks they cut. + "Stone Cutter Silk Touch" = true + #The maximum hardness of a block that a stonecutter pushed by magnets can cut through. + "Stone Cutter Max Hardness" = 3.0 + + [oddities.matrix_enchanting] + #The maximum enchanting power the matrix enchanter can accept + "Max Bookshelves" = 15 + #Should this be X, the price of a piece increase by 1 every X pieces you generate + "Piece Price Scale" = 9 + #The higher this is, the better enchantments you'll get on books + "Book Enchantability" = 12 + #How many pieces you can generate without any bookshelves + "Base Max Piece Count" = 3 + #How many pieces you can generate without any bookshelves (for Books) + "Base Max Piece Count Book" = 1 + #At which piece count the calculation for the min level should default to increasing one per piece rather than using the scale factor + "Min Level Cutoff" = 8 + #How many pieces a single Lapis can generate + "Charge Per Lapis" = 4 + #How much the min level requirement for adding a new piece should increase for each piece added (up until the value of Min Level Cutoff) + "Min Level Scale Factor" = 1.2 + #How much the min level requirement for adding a new piece to a book should increase per each bookshelf being used + "Min Level Scale Factor Book" = 2.0 + #How much to multiply the frequency of pieces where at least one of the same type has been generated + "Dupe Multiplier" = 1.4 + #How much to multiply the frequency of pieces where incompatible pieces have been generated + "Incompatible Multiplier" = 0.0 + #Set to false to disable the ability to create Enchanted Books + "Allow Books" = true + #Set this to true to allow treasure enchantments to be rolled as pieces + "Allow Treasures" = false + #Set this to true to allow undiscoverable enchantments to be rolled as pieces + "Allow Undiscoverable Enchantments" = false + #Any treasure enchantment IDs here will be able to appear in books in matrix enchanting + "Treasure Whitelist" = [] + #Any undiscoverable enchantment IDs here will be able to appear in matrix enchanting + "Undiscoverable Whitelist" = [] + #Set to false to disable the tooltip for items with pending enchantments + "Show Tooltip" = true + #By default, enchantment rarities are fuzzed a bit to feel better with the new system. Set this to false to override this behaviour. + "Normalize Rarity" = true + #Matrix Enchanting can be done with water instead of air around the enchanting table. Set this to false to disable this behaviour. + "Allow Underwater Enchanting" = true + #Matrix Enchanting can be done with short (<= 3px blocks) instead of air around the enchanting table. Set this to false to disable this behaviour. + "Allow Short Block Enchanting" = true + #Candles with soul sand below them or below the bookshelves dampen enchantments instead of influence them. + "Soul Candles Invert" = true + #A list of enchantment IDs you don't want the enchantment table to be able to create + "Disallowed Enchantments" = [] + #An array of influences each candle should apply. This list must be 16 elements long, and is in order of wool colors. + #A minus sign before an enchantment will make the influence decrease the probability of that enchantment. + "Influences List" = ["minecraft:unbreaking", "minecraft:fire_protection", "minecraft:knockback,minecraft:punch", "minecraft:feather_falling", "minecraft:looting,minecraft:fortune,minecraft:luck_of_the_sea", "minecraft:blast_protection", "minecraft:silk_touch,minecraft:channeling", "minecraft:bane_of_arthropods", "minecraft:protection", "minecraft:respiration,minecraft:loyalty,minecraft:infinity", "minecraft:sweeping,minecraft:multishot", "minecraft:efficiency,minecraft:sharpness,minecraft:lure,minecraft:power,minecraft:impaling,minecraft:quick_charge", "minecraft:aqua_affinity,minecraft:depth_strider,minecraft:riptide", "minecraft:thorns,minecraft:piercing", "minecraft:fire_aspect,minecraft:flame", "minecraft:smite,minecraft:projectile_protection"] + #An array of influences that other blocks should apply. + #Format is: "blockstate;strength;color;enchantments", i.e. "minecraft:sea_pickle[pickles=1,waterlogged=false];1;#008000;minecraft:aqua_affinity,minecraft:depth_strider,minecraft:riptide" (etc) or "minecraft:anvil[facing=north];#808080;-minecraft:thorns,minecraft:unbreaking" (etc) + "States To Influences" = [] + #Set to false to disable the ability to influence enchantment outcomes with candles + "Allow Influencing" = true + #The max amount of candles that can influence a single enchantment + "Influence Max" = 4 + #How much each candle influences an enchantment. This works as a multiplier to its weight + "Influence Power" = 0.125 + #If you set this to false, the vanilla Enchanting Table will no longer automatically convert to the Matrix Enchanting table. You'll have to add a recipe for the Matrix Enchanting Table to make use of this. + "Automatically Convert" = true + + [oddities.pipes] + #How long it takes for an item to cross a pipe. Bigger = slower. + "Pipe Speed" = 5 + #Set to 0 if you don't want pipes to have a max amount of items + "Max Pipe Items" = 16 + #When items eject or are absorbed by pipes, should they make sounds? + "Do Pipes Whoosh" = true + "Enable Encased Pipes" = true + "Render Pipe Items" = true + "Emit Vibrations" = true + + [oddities.tiny_potato] + #Set this to true to use the recipe without the Heart of Diamond, even if the Heart of Diamond is enabled. + "Never Use Heart Of Diamond" = false + #This feature disables itself if any of the following mods are loaded: + # - botania + #This is done to prevent content overlap. + #You can turn this on to force the feature to be loaded even if the above mods are also loaded. + "Ignore Anti Overlap" = false + + [oddities.totem_of_holding] + #Set this to false to remove the behaviour where totems destroy themselves if the player dies again. + "Dark Souls Mode" = true + #Totem will always spawn if the player killer is themselves. + "Spawn Totem on PVP Kill" = false + #Set this to true to make it so that if a totem is destroyed, the items it holds are destroyed alongside it rather than dropped + "Destroy Lost Items" = false + #Set this to false to only allow the owner of a totem to collect its items rather than any player + "Allow Anyone To Collect" = true + diff --git a/pack/config/squakereforged-common.toml b/pack/config/squakereforged-common.toml new file mode 100644 index 0000000..8d62993 --- /dev/null +++ b/pack/config/squakereforged-common.toml @@ -0,0 +1,42 @@ + +#Movement configurations +[movement] + #turns off/on the quake-style movement for the client (essentially the saved value of the ingame toggle keybind) + enabled = true + #if enabled, the soft and hard caps will not be applied at all + uncappedBunnyhopEnabled = false + #if enabled, holding jump while swimming at the surface of water allows you to glide + sharkingEnabled = true + #if enabled, holding sneak while jumping will convert your horizontal speed into vertical speed + trimpEnabled = true + #a higher value means you can turn more sharply in the air without losing speed + #Range: 0.0 ~ 1.7976931348623157E308 + airAccelerate = 14.0 + #a higher value means faster air acceleration + #Range: 0.0 ~ 1.7976931348623157E308 + maxAirAccelerationPerTick = 0.045 + #a higher value means you accelerate faster on the ground + #Range: 0.0 ~ 1.7976931348623157E308 + groundAccelerate = 10.0 + #see uncappedBunnyhopEnabled; if you ever jump while above the hard cap speed (moveSpeed*hardCapThreshold), your speed is set to the hard cap speed + #Range: 0.0 ~ 1.7976931348623157E308 + hardCapThreshold = 16.0 + #see uncappedBunnyhopEnabled and softCapDegen; soft cap speed = (moveSpeed*softCapThreshold) + #Range: 0.0 ~ 1.7976931348623157E308 + softCapThreshold = 16.0 + #the modifier used to calculate speed lost when jumping above the soft cap + #Range: 0.0 ~ 1.7976931348623157E308 + softCapDegen = 0.65 + #amount of friction while sharking (between 0 and 1) + #Range: 0.0 ~ 1.0 + sharkingWaterFriction = 0.3 + #amount of downward momentum you lose while entering water, a higher value means that you are able to shark after hitting the water from higher up + #Range: 0.0 ~ 1.7976931348623157E308 + sharkingSurfaceTension = 0.2 + #a lower value means less horizontal speed converted to vertical speed and vice versa + #Range: 0.0 ~ 1.7976931348623157E308 + trimpMultiplier = 0.7 + #increases the distance needed to fall in order to take fall damage; this is a server-side setting + #Range: 0.0 ~ 1.7976931348623157E308 + fallDistanceThresholdIncrease = 0.0 + diff --git a/pack/config/tetra.toml b/pack/config/tetra.toml new file mode 100644 index 0000000..960c064 --- /dev/null +++ b/pack/config/tetra.toml @@ -0,0 +1,78 @@ + +[misc] + #Enable modular bows + bow = true + #Enable modular single headed implements + single_headed = true + #Enable modular shields + shield = true + #Enables the enchantment glint rendering on modular items + glint = true + #Enables commands & data reloading functionality useful for development, has a negative impact on performance + development = false + #If enabled and Curios is installed, Toolbelts will only work in the Curio belt slot + toolbelt_curio_only = false + #Features that are considered experimental can be listed here to enable them + experimental_features = [] + #Features can be listed here to disable them + disabled_features = [] + #Multiplier for magic capacity gains, increasing this may be useful when having a large set enchantments added by other mods + #Range: 0.0 ~ 1.7976931348623157E308 + magic_cap_multiplier = 2.0 + +#Allows tetra items to "level up" after being used a certain amount of times, allowing the player to choose from different ways to "hone" 1 module on the item. Major modules also settle after some time, increasing its integrity +[module_progression] + enabled = true + #The base value for number of uses required for a module to settle + #Range: > -2147483648 + settle_base = 270 + #Level multiplier for settling limit, a value of 3 would cause a module that has settled once to require 3x as many uses before it settles again + #Range: 4.9E-324 ~ 1.7976931348623157E308 + settle_level_multiplier = 3.0 + #Durability multiplier for settling limit, a value of 1 would cause a module with 75 durability to require an additional 75 uses before it settles + #Range: 4.9E-324 ~ 1.7976931348623157E308 + settle_durability_multiplier = 0.5 + #The base value for number of uses required before a sword can be honed + #Range: > -2147483648 + hone_sword_base = 110 + #Integrity multiplier for sword honing, a value of 2 would cause a sword which uses 3 integrity to require 2*3 times as many uses before it can be honed + #Range: > -2147483648 + hone_sword_integrity_multiplier = 65 + #The base value for number of uses required before a tool can be honed + #Range: > -2147483648 + hone_double_base = 140 + #Integrity multiplier for tool honing, a value of 2 would cause a sword which uses 3 integrity to require 2*3 times as many uses before it can be honed + #Range: > -2147483648 + hone_double_integrity_multiplier = 75 + #The base value for number of uses required before a bow can be honed + #Range: > -2147483648 + hone_bow_base = 48 + #Integrity multiplier for bow honing, a value of 2 would cause a bow which uses 3 integrity to require 2*3 times as many uses before it can be honed + #Range: > -2147483648 + hone_bow_integrity_multiplier = 32 + #The base value for number of uses required before a shield can be honed + #Range: > -2147483648 + hone_shield_base = 48 + #Integrity multiplier for shield honing, a value of 2 would cause a shield which uses 3 integrity to require 2*3 times as many uses before it can be honed + #Range: > -2147483648 + hone_shield_integrity_multiplier = 32 + #The base value for number of uses required before a crossbow can be honed + #Range: > -2147483648 + hone_crossbow_base = 48 + #Integrity multiplier for crossbow honing, a value of 2 would cause a crossbow which uses 3 integrity to require 2*3 times as many uses before it can be honed + #Range: > -2147483648 + hone_crossbow_integrity_multiplier = 32 + #The base value for number of uses required before a single headed implement can be honed + #Range: > -2147483648 + hone_single_headed_base = 120 + #Integrity multiplier for single headed implement honing, a value of 2 would cause an implement which uses 3 integrity to require 2*3 times as many uses before it can be honed + #Range: > -2147483648 + hone_single_headed_integrity_multiplier = 60 + +#Toggles & config for experimental features +[experimental] + #Enable the extractor bedrock functionality + extractor = true + #Enable modular crossbows + crossbow = true + diff --git a/pack/config/waila/blacklist.json5 b/pack/config/waila/blacklist.json5 new file mode 100644 index 0000000..48298f9 --- /dev/null +++ b/pack/config/waila/blacklist.json5 @@ -0,0 +1,49 @@ +// Run `/waila reload` to apply changes server-wide. +// Run `/wailac reload` to apply changes to only your client. +// +// Operators: +// @namespace - include objects based on their namespace location +// #tag - include objects based on data pack tags +// /regex/ - include objects based on regular expression +// default - include objects with specific ID +// +// An exclamation mark (!) prefix can be added which negates the pattern. +// Any entries matching previous rules will be removed from it. +// Can be combined with other rule to exclude what matches the rule. +// +// Example: +// @aether - include all block from the aether namespace +// #minecraft:planks - include all blocks in the planks tag +// /.*_ore/ - include all blocks that ends with "_ore" +// minecraft:iron_block - include only the iron block +// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_" +// +// The `#waila:blacklist` tag rule can not be removed +{ + blocks: [ + "minecraft:barrier", + "minecraft:structure_void", + "minecraft:light", + "#waila:blacklist" + ], + blockEntityTypes: [ + "#waila:blacklist" + ], + entityTypes: [ + "minecraft:area_effect_cloud", + "minecraft:experience_orb", + "minecraft:fireball", + "minecraft:firework_rocket", + "minecraft:interaction", + "minecraft:snowball", + "#waila:blacklist" + ], + // + // The values below are used internally by WTHIT, you SHOULD NOT modify it! + configVersion: 0, + pluginHash: [ + -158949004, + 1449661236, + 2021915756 + ] +} \ No newline at end of file diff --git a/pack/config/waila/category_entries.json5 b/pack/config/waila/category_entries.json5 new file mode 100644 index 0000000..cd220fb --- /dev/null +++ b/pack/config/waila/category_entries.json5 @@ -0,0 +1,34 @@ +// This config controls the category entries collapsed state. +// You shouldn't edit this config by hand. +{ + "config.waila.general": false, + "config.waila.overlay": false, + "config.waila.formatting": false, + "config.waila.keybinds": false, + "config.waila.plugin_waila": false, + "config.waila.plugin_harvest": false, + "config.waila.plugin_minecraft": false, + "config.waila.plugin_minecraft.block": false, + "config.waila.plugin_minecraft.entity": false, + "config.waila.plugin_minecraft.pet": false, + "config.waila.plugin_minecraft.horse": false, + "config.waila.plugin_minecraft.panda": false, + "config.waila.plugin_minecraft.bee": false, + "config.waila.plugin_minecraft.effect": false, + "config.waila.plugin_minecraft.jukebox": false, + "config.waila.plugin_minecraft.timer": false, + "config.waila.plugin_minecraft.override": false, + "config.waila.plugin_minecraft.breaking_progress": false, + "config.waila.plugin_minecraft.spawner": false, + "config.waila.plugin_minecraft.plant": false, + "config.waila.plugin_minecraft.redstone": false, + "config.waila.plugin_minecraft.level": false, + "config.waila.plugin_minecraft.note_block": false, + "config.waila.plugin_minecraft.book": false, + "config.waila.plugin_wailax": false, + "config.waila.plugin_wailax.energy": false, + "config.waila.plugin_wailax.fluid": false, + "config.waila.plugin_wailax.item": false, + "config.waila.plugin_wailax.progress": false, + "config.waila.overlay_theme_editor.attributes": false +} \ No newline at end of file diff --git a/pack/config/waila/debug.json5 b/pack/config/waila/debug.json5 new file mode 100644 index 0000000..adeed56 --- /dev/null +++ b/pack/config/waila/debug.json5 @@ -0,0 +1,5 @@ +// Debug options, restart the game to apply +{ + // Show test plugin on plugin toggle screen + showTestPluginToggle: false +} \ No newline at end of file diff --git a/pack/config/waila/extra/energy_blacklist.json5 b/pack/config/waila/extra/energy_blacklist.json5 new file mode 100644 index 0000000..0f7de56 --- /dev/null +++ b/pack/config/waila/extra/energy_blacklist.json5 @@ -0,0 +1,32 @@ +// Run `/waila reload` to apply changes server-wide. +// Run `/wailac reload` to apply changes to only your client. +// +// Operators: +// @namespace - include objects based on their namespace location +// #tag - include objects based on data pack tags +// /regex/ - include objects based on regular expression +// default - include objects with specific ID +// +// An exclamation mark (!) prefix can be added which negates the pattern. +// Any entries matching previous rules will be removed from it. +// Can be combined with other rule to exclude what matches the rule. +// +// Example: +// @aether - include all block from the aether namespace +// #minecraft:planks - include all blocks in the planks tag +// /.*_ore/ - include all blocks that ends with "_ore" +// minecraft:iron_block - include only the iron block +// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_" +// +// The #waila:extra/energy_blacklist tag rule can not be removed +{ + blocks: [ + "#waila:extra/energy_blacklist" + ], + blockEntityTypes: [ + "#waila:extra/energy_blacklist" + ], + entityTypes: [ + "#waila:extra/energy_blacklist" + ] +} \ No newline at end of file diff --git a/pack/config/waila/extra/fluid_blacklist.json5 b/pack/config/waila/extra/fluid_blacklist.json5 new file mode 100644 index 0000000..844c2c8 --- /dev/null +++ b/pack/config/waila/extra/fluid_blacklist.json5 @@ -0,0 +1,32 @@ +// Run `/waila reload` to apply changes server-wide. +// Run `/wailac reload` to apply changes to only your client. +// +// Operators: +// @namespace - include objects based on their namespace location +// #tag - include objects based on data pack tags +// /regex/ - include objects based on regular expression +// default - include objects with specific ID +// +// An exclamation mark (!) prefix can be added which negates the pattern. +// Any entries matching previous rules will be removed from it. +// Can be combined with other rule to exclude what matches the rule. +// +// Example: +// @aether - include all block from the aether namespace +// #minecraft:planks - include all blocks in the planks tag +// /.*_ore/ - include all blocks that ends with "_ore" +// minecraft:iron_block - include only the iron block +// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_" +// +// The #waila:extra/fluid_blacklist tag rule can not be removed +{ + blocks: [ + "#waila:extra/fluid_blacklist" + ], + blockEntityTypes: [ + "#waila:extra/fluid_blacklist" + ], + entityTypes: [ + "#waila:extra/fluid_blacklist" + ] +} \ No newline at end of file diff --git a/pack/config/waila/extra/item_blacklist.json5 b/pack/config/waila/extra/item_blacklist.json5 new file mode 100644 index 0000000..2abc63b --- /dev/null +++ b/pack/config/waila/extra/item_blacklist.json5 @@ -0,0 +1,32 @@ +// Run `/waila reload` to apply changes server-wide. +// Run `/wailac reload` to apply changes to only your client. +// +// Operators: +// @namespace - include objects based on their namespace location +// #tag - include objects based on data pack tags +// /regex/ - include objects based on regular expression +// default - include objects with specific ID +// +// An exclamation mark (!) prefix can be added which negates the pattern. +// Any entries matching previous rules will be removed from it. +// Can be combined with other rule to exclude what matches the rule. +// +// Example: +// @aether - include all block from the aether namespace +// #minecraft:planks - include all blocks in the planks tag +// /.*_ore/ - include all blocks that ends with "_ore" +// minecraft:iron_block - include only the iron block +// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_" +// +// The #waila:extra/item_blacklist tag rule can not be removed +{ + blocks: [ + "#waila:extra/item_blacklist" + ], + blockEntityTypes: [ + "#waila:extra/item_blacklist" + ], + entityTypes: [ + "#waila:extra/item_blacklist" + ] +} \ No newline at end of file diff --git a/pack/config/waila/extra/progress_blacklist.json5 b/pack/config/waila/extra/progress_blacklist.json5 new file mode 100644 index 0000000..84a218d --- /dev/null +++ b/pack/config/waila/extra/progress_blacklist.json5 @@ -0,0 +1,32 @@ +// Run `/waila reload` to apply changes server-wide. +// Run `/wailac reload` to apply changes to only your client. +// +// Operators: +// @namespace - include objects based on their namespace location +// #tag - include objects based on data pack tags +// /regex/ - include objects based on regular expression +// default - include objects with specific ID +// +// An exclamation mark (!) prefix can be added which negates the pattern. +// Any entries matching previous rules will be removed from it. +// Can be combined with other rule to exclude what matches the rule. +// +// Example: +// @aether - include all block from the aether namespace +// #minecraft:planks - include all blocks in the planks tag +// /.*_ore/ - include all blocks that ends with "_ore" +// minecraft:iron_block - include only the iron block +// !/.*:oak_.*$/ - exclude all blocks that its path start with "oak_" +// +// The #waila:extra/progress_blacklist tag rule can not be removed +{ + blocks: [ + "#waila:extra/progress_blacklist" + ], + blockEntityTypes: [ + "#waila:extra/progress_blacklist" + ], + entityTypes: [ + "#waila:extra/progress_blacklist" + ] +} \ No newline at end of file diff --git a/pack/config/waila/plugin_toggle.json5 b/pack/config/waila/plugin_toggle.json5 new file mode 100644 index 0000000..f7f42ef --- /dev/null +++ b/pack/config/waila/plugin_toggle.json5 @@ -0,0 +1,9 @@ +{ + "balm:wthit": true, + "revelationary:plugin": true, + "waila:core": true, + "waila:vanilla": true, + "waila:harvest": true, + "waila:extra": true, + "waila:forge": true +} \ No newline at end of file diff --git a/pack/config/waila/waila.json5 b/pack/config/waila/waila.json5 new file mode 100644 index 0000000..6355c94 --- /dev/null +++ b/pack/config/waila/waila.json5 @@ -0,0 +1,150 @@ +{ + general: { + // Add to Vanilla's Options + // Whether to add a button to vanilla game's options that opens WTHIT config screen + // Default value: [false] + vanillaOptions: false, + // Display Tooltip + // Collect data and render the tooltip + // Default value: [true] + displayTooltip: true, + // Sneaky Details + // Body text is hidden unless sneaking + // Default value: [false] + shiftForDetails: false, + // Hide Sneak Text + // Hide "Sneak for details" text when sneaky details is enabled + // Default value: [false] + hideShiftText: false, + // Display Mode + // Tooltip display behavior + // Toggle: Display keybind will toggle it on and off + // Maintained: Display keybind must be held + // Default value: [TOGGLE] + // Available values: [HOLD_KEY, TOGGLE] + displayMode: "HOLD_KEY", + // Hide from Player List + // Hide tooltip while the player list is open + // Default value: [true] + hideFromPlayerList: true, + // Hide from Debug + // Hide the tooltip while the debug menu is open + // Default value: [true] + hideFromDebug: true, + // Enable TTS + // Read out block and entity names with the system's text to speech processor + // Default value: [false] + enableTextToSpeech: false, + // Rate Limit + // How many milliseconds the delay between each server request + // Must be at least 250ms + // Default value: [250] + rateLimit: 250 + }, + overlay: { + position: { + align: { + // Default value: [CENTER] + // Available values: [LEFT, CENTER, RIGHT] + x: "CENTER", + // Default value: [TOP] + // Available values: [TOP, MIDDLE, BOTTOM] + y: "TOP" + }, + anchor: { + // Default value: [CENTER] + // Available values: [LEFT, CENTER, RIGHT] + x: "CENTER", + // Default value: [TOP] + // Available values: [TOP, MIDDLE, BOTTOM] + y: "TOP" + }, + // Offset + // Default value: [0] + x: 0, + // Default value: [0] + y: 0, + // Boss Bars Overlap + // If set to false, the tooltip will move down if there are boss bars visible + // Only affect top-center alignment + // Default value: [false] + bossBarsOverlap: false + }, + color: { + // Background Alpha + // Default value: [204] + backgroundAlpha: 204, + // Custom Themes + themes: [ + { + // Custom Themes + id: "custom:pwb", + // Custom Themes + type: "waila:gradient", + // Custom Themes + backgroundColor: 0, + // Custom Themes + gradientStart: 2236962, + // Custom Themes + gradientEnd: 1184274, + // Custom Themes + borderSize: 0, + // Custom Themes + borderOffset: 0, + // Custom Themes + drawCorner: true, + // Custom Themes + fontColor: 10526880 + } + ], + // Theme + // Default value: [waila:vanilla] + activeTheme: "custom:pwb" + }, + // Scale + // How big the tooltip is + // 1.0 is the default + // Default value: [1.0] + scale: 1.0, + // Overlay FPS + // Lowering the overlay FPS might improve the overall game FPS + // Set to 0 to unlock + // Default value: [30] + fps: 30 + }, + // Text formatters + formatter: { + // Default value: [§9§o%s] + modName: "§9§o%s", + // Default value: [§f%s] + blockName: "§f%s", + // Default value: [§f%s] + fluidName: "§f%s", + // Default value: [§f%s] + entityName: "§f%s", + // Default value: [§8%s] + registryName: "§8%s", + // + styles: {} + }, + keyBinds: { + // Open Config + // Default value: [key.keyboard.unknown] + openConfig: "key.keyboard.unknown", + // Show Overlay + // Default value: [key.keyboard.unknown] + showOverlay: "key.keyboard.unknown", + // Toggle Liquid + // Default value: [key.keyboard.unknown] + toggleLiquid: "key.keyboard.unknown", + // Show Recipe Usage + // Default value: [key.keyboard.unknown] + showRecipeInput: "key.keyboard.unknown", + // Show Recipe + // Default value: [key.keyboard.unknown] + showRecipeOutput: "key.keyboard.unknown" + }, + // Internal value, DO NOT TOUCH! + // Default value: [0] + configVersion: 1 +} \ No newline at end of file diff --git a/pack/config/waila/waila_plugins.json5 b/pack/config/waila/waila_plugins.json5 new file mode 100644 index 0000000..9223429 --- /dev/null +++ b/pack/config/waila/waila_plugins.json5 @@ -0,0 +1,319 @@ +{ + waila: { + // Show Blocks + // Default value: [true] + show_blocks: true, + // Show Fluids + // Try to show fluids + // Default value: [false] + show_fluids: false, + // Show Entities + // Default value: [true] + show_entities: true, + // Show Icon + // Default value: [true] + show_icon: true, + // Icon Position + // Default value: [MIDDLE] + // Available values: [TOP, MIDDLE, BOTTOM] + icon_position: "MIDDLE", + // Show Mod Names + // Default value: [true] + show_mod_name: true, + // Show Item Mod Names + // Default value: [true] + show_item_mod_name: true, + // Show Registry Names + // Default value: [false] + show_registry: false + }, + minecraft: { + // Show Block Position + // Default value: [false] + "block.position": false, + // Show Block State + // Default value: [false] + "block.state": false, + // Show Item Entity + // This value will get merged with the value from the server + // Default value: [true] + "entity.item_entity": true, + // Show Entity Position + // Default value: [false] + "entity.position": false, + // Show Health Points + // This value will get merged with the value from the server + // Default value: [true] + "entity.health": true, + // Show Absorption Health Points + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "entity.absorption": true, + // Show Armor Points + // This value will get merged with the value from the server + // Default value: [true] + "entity.armor": true, + // Compact Mode + // Show health and armor points in one line with a number instead of icon + // Default value: [false] + "entity.compact": false, + // Max Icon per Line + // The maximum count the health and armor icon before starting a new line + // Default value: [25] + "entity.icon_per_line": 25, + // Max Health Points to Draw + // The maximum health points that the icon will draw before forcing fraction view + // Default value: [100] + "entity.long_health_max": 100, + // Max Armor Points to Draw + // The maximum armor points that the icon will draw before forcing numeric view + // Default value: [100] + "entity.long_armor_max": 100, + // Show Pet Owner + // Only available for registered Minecraft accounts + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "pet.owner": true, + // Hide Unknown Owner + // Default value: [false] + "pet.hide_unknown_owner": false, + // Show Horse Jump Height + // This value will get merged with the value from the server + // Default value: [true] + "horse.jump_height": true, + // Show Horse Speed + // This value will get merged with the value from the server + // Default value: [true] + "horse.speed": true, + // Show Panda Genes + // This value will get merged with the value from the server + // Default value: [true] + "panda.genes": true, + // Show Beehive Position + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "bee.hive_pos": true, + // Show Beehive Honey Level + // This value will get merged with the value from the server + // Default value: [true] + "bee.hive_honey_level": true, + // Show Beehive Occupants + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "bee.hive_occupants": true, + // Show Beacon Effects + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "effect.beacon": true, + // Show Mob Effects + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "effect.mob": true, + // Show Hidden Mob Effects + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [false] + "effect.hidden_mob": false, + // Show Active Record + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "jukebox.record": true, + // Show Grow Up Timer + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "timer.grow": true, + // Show Breed Cooldown + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "timer.breed": true, + // Hide Invisible Entities + // This value will get merged with the value from the server + // Default value: [true] + "override.invisible_entity": true, + // Show Trapped Chest as Regular Chest + // This value will get merged with the value from the server + // Default value: [true] + "override.trapped_chest": true, + // Show Powder Snow as Regular Snow + // This value will get merged with the value from the server + // Default value: [true] + "override.powder_snow": true, + // Show Infested Block as Regular Block + // This value will get merged with the value from the server + // Default value: [true] + "override.infested": true, + // Hide Mounted Vehicle + // Hide minecart, horse, and other mountable entities when mounted by the player + // Default value: [true] + "override.vehicle": true, + // Show Breaking Progress + // This value will get merged with the value from the server + // Default value: [true] + "breaking_progress.enabled": true, + // Breaking Progress Color + // Default value: [-1426063361] + "breaking_progress.color": -1426063361, + // Bottom Only + // Default value: [false] + "breaking_progress.bottom_only": false, + // Show Spawner Type + // This value will get merged with the value from the server + // Default value: [true] + "spawner.type": true, + // Show Crop Progress + // This value will get merged with the value from the server + // Default value: [true] + "plant.crop_progress": true, + // Show Crop Growability + // This value will get merged with the value from the server + // Default value: [true] + "plant.crop_growable": true, + // Show Tree Growability + // This value will get merged with the value from the server + // Default value: [true] + "plant.tree_growable": true, + // Show Lever State + // This value will get merged with the value from the server + // Default value: [true] + "redstone.lever": true, + // Show Repeater Delay + // This value will get merged with the value from the server + // Default value: [true] + "redstone.repeater": true, + // Show Comparator Mode + // This value will get merged with the value from the server + // Default value: [true] + "redstone.comparator": true, + // Show Power Level + // This value will get merged with the value from the server + // Default value: [true] + "redstone.level": true, + // Show Composter Level + // This value will get merged with the value from the server + // Default value: [true] + "level.composter": true, + // Show Instrument and Note + // This value will get merged with the value from the server + // Default value: [true] + "note_block.type": true, + // Note Display Mode + // Default value: [SHARP] + // Available values: [SHARP, FLAT] + "note_block.note": "SHARP", + // Show Integer Level Value + // Default value: [false] + "note_block.int_value": false, + // Show Chiseled Bookshelf Books + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "book.bookshelf": true, + // Enchantment Display Mode + // Default value: [CYCLE] + // Available values: [SEPARATE, COMBINED, CYCLE, DISABLED] + "book.enchantment": "CYCLE", + // Enchantment Cycle Timing (Milliseconds) + // Default value: [500] + "book.enchantment_cycle_timing": 500, + // Show Written Book Author and Generation + // Default value: [true] + "book.written": true + }, + harvest: { + // Show Harvestability + // This value will get merged with the value from the server + // Default value: [true] + enabled: true, + // Display Mode + // Default value: [MODERN] + // Available values: [MODERN, CLASSIC, CLASSIC_MINIMAL] + display_mode: "MODERN", + // Show on Creative + // Default value: [false] + creative: false + }, + wailax: { + // Show Block Energy + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "energy.enabled_block": true, + // Show Entity Energy + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "energy.enabled_entity": true, + // Energy Blacklist + // Custom config, open the following file + // extra/energy_blacklist.json5 + "energy.blacklist": null, + // Show Block Fluid Contents + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "fluid.enabled_block": true, + // Show Entity Fluid Contents + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "fluid.enabled_entity": true, + // Display Unit + // Default value: [MILLIBUCKETS] + // Available values: [MILLIBUCKETS, DROPLETS] + "fluid.display_unit": "MILLIBUCKETS", + // Fluid Contents Blacklist + // Custom config, open the following file + // extra/fluid_blacklist.json5 + "fluid.blacklist": null, + // Show Block Item Contents + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "item.enabled_block": true, + // Show Entity Item Contents + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "item.enabled_entity": true, + // Sync NBT Data + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "item.nbt": true, + // Display Mode + // Grid: show as a grid, like how the inventory works + // List: show as a vertical list with inline name + // Dynamic: switch from list to grid when max height exceeded + // Default value: [DYNAMIC] + // Available values: [GRID, LIST, DYNAMIC] + "item.display_mode": "DYNAMIC", + // Max Height + // Default value: [3] + "item.max_height": 3, + // Sort by Count + // Default value: [true] + "item.sort_by_count": true, + // Grid Mode Scale + // Default value: [1.0] + "item.grid_mode_scale": 1.0, + // Item Contents Blacklist + // Custom config, open the following file + // extra/item_blacklist.json5 + "item.blacklist": null, + // Show Block Crafting Progress + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "progress.enabled_block": true, + // Show Entity Crafting Progress + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "progress.enabled_entity": true, + // Show Estimated Time + // Require server to have WTHIT installed, if not, will be locked to [false] + // Default value: [true] + "progress.time": true, + // Replace Item Tooltip + // If enabled, replace item tooltip when the recipe has item input and/or output. If not enabled or no item input and output, only shows a progress bar. + // Default value: [false] + "progress.replace_items": false, + // Progress Bar Height + // Only for when it shown as a bar and not an arrow + // Default value: [1] + "progress.height": 1, + // Crafting Progress Blacklist + // Custom config, open the following file + // extra/progress_blacklist.json5 + "progress.blacklist": null + } +} \ No newline at end of file diff --git a/pack/config/yttr.css b/pack/config/yttr.css new file mode 100644 index 0000000..aebc155 --- /dev/null +++ b/pack/config/yttr.css @@ -0,0 +1,210 @@ +/* Yttr config file. Based on a subset of CSS. My crusade to make cursed configs continues... */ + +#general { + /* + * If set to "on", allows players to break bedrock anywhere in any dimension, instead of only at + * the bottom of the overworld. + */ + break-bedrock-anywhere: off; + + /* + * If set to "on", enables inside-jokes and various chaos. Nothing destructive. + */ + shenanigans: on; + + /* + * If set to "on", Overworld void holes created through other means than a Bedrock Breaker (e.g. + * creative breaking) will still create Void Geysers. Turn this off if you have other mods that + * need void holes for their own reasons. + */ + convert-void-holes: off; + + /* + * If set to "on", Drops of Continuity can be "burned" by holding the use key, gifting a random + * item from the yttr:gifts tag (both block and item) that isn't in the yttr:not_gifts tag. + */ + allow-continuity-burning: on; +} + +#client { + /* + * If set to "on", force-disables OpenGL compatibility mode. "auto" acts as "on" on macOS, and + * "off" everywhere else. + * + * Running Yttr under the OpenGL Core Profile is NOT SUPPORTED, and may lead to RENDER BUGS and + * CRASHES. + */ + force-opengl-core: auto; + + /* + * The color of the ingame configuration menu. + */ + config-color: teal; + + /* + * If set to "on", forces the 1.19.3 color order in Yttr's creative tabs on 1.19.2. If set to + * "off", force the 1.19.3 color order on 1.20.1. + */ + use-new-color-order: auto; + + /* + * Can be set to "world" or "camera". "camera" is the old control scheme before this option was + * added, which changes controls to be entirely relative to the camera; for example, holding + * forward while looking down makes you move down. This works more like a typical 6DoF control + * scheme, but differs from vanilla and can be disorienting, so the "world" option locks + * controls to world-relative similar to vanilla. Jump/Sneak always adjust your Y coordinate, + * and the behavior of normal move keys is only affected by your yaw and not your pitch. + */ + antigrav-controls: world; +} + +#rifle { + /* + * If set to "off", the Void rifle mode will be disabled. It provides an easy way to destroy + * massive amounts of blocks very cheaply (once sufficiently far into Yttr's progression) and + * can be a griefing tool. + * + * Yttr adds a command, /yttr:void_undo, that allows operators to undo individual voids or all + * voids performed by a player. Additionally, voids are logged to console. + * + * DISABLING THIS BREAKS YTTR'S PROGRESSION. Setting it to "soft" will only allow Void mode to + * break blocks required for progression. + */ + allow-void: on; + /* + * If set to "off", the Explode rifle mode will be disabled. It provides a relatively cheap way + * to create normal vanilla explosions. If set to "soft", the explosions will not break any + * blocks, but will still damage entities and set off Bedrock Breakers. + * + * DISABLING THIS BREAKS YTTR'S PROGRESSION. You need to provide an alternate way to create + * Void Geysers and obtain Bedrock Shards. If you are afraid of explosions, it's recommended to + * use "soft" rather than "off". + */ + allow-explode: on; + /* + * If set to "off", the Fire rifle mode will be disabled. It provides a way to light fires, and + * destroy blocks in #yttr:fire_mode_instabreak instantly. + */ + allow-fire: on; + + /* + * If on, ding noises will play as the rifle charges informing you of important timing points. + * The first ding is for a normal 500kJ shot, and there are then three dings leading up to the + * 650kJ shot. + */ + timing-assist: on; +} + +#enchantments { + /* + * If on, the Vorpal weapon enchantment can be obtained, which provides a level-dependent chance + * to deal a very large of damage on strike. + */ + vorpal: off; + /* + * If on, the Disjunction weapon enchantment can be obtained, which acts as an analogue to + * Smite for Ender creatures. + */ + disjunction: on; + /* + * If on, the Curse of Annihilation tool enchantment can be obtained, which completely destroys + * any items that would have been dropped when breaking a block. + */ + annihilation: on; + /* + * If on, the Curse of Shattering tool enchantment can be obtained, which "shatters" dropped + * items via 1x1 crafting recipes, reverse-stonecutting, and more. + */ + shattering: on; + /* + * If on, the Springing coil enchantment can be obtained, increasing your jump height. + */ + springing: on; + /* + * If on, the Stabilization coil enchantment can be obtained, removing the midair break speed + * penalty. + */ + stabilization: off; + + /* + * If on, Yttr's Curses can be obtained via regular enchanting. + */ + curses-in-table: off; +} + +#worldgen { + /* + * Generate Gadolinite ore in the overworld, a source of Yttrium and Neodymium, plus a bonus + * source of iron. + * + * DISABLING THIS BREAKS YTTR'S PROGRESSION. You need to provide an alternate way to get + * Yttrium and Neodymium. + */ + gadolinite: on; + /* + * Generate Brookite ore in the overworld, an ore specifically for tools and decorative blocks. + * + * In the future, Yttr progression will require Brookite; for now, disabling this is safe. + */ + brookite: on; + + /* + * Generate Squeeze Trees in the overworld, providing an easy source of sponges, Delicace, and + * a convenient way to flood areas with water. + * + * Squeeze Trees are not required for Yttr progression. + */ + squeeze-trees: on; + /* + * Generate the Wasteland biome. + * + * The Wasteland is not required for Yttr progression. + */ + wasteland: on; + + /* + * Replace the Nether's bottom bedrock with unremovable "Core Lava" and barriers. This exists + * to help tie together Yttr's lore, but it provides an easy source of infinite lava, may break + * other mods that expect bedrock under the nether, and it's hard to get out of if you fall in. + */ + core-lava: on; + /* + * Replace the Nether's top bedrock with Upstrate, a bedrock-like block that can be destroyed by + * Void mode on the Rifle, giving way to the Scorched Summit dimension. + * + * DISABLING THIS BREAKS YTTR'S PROGRESSION. You need to provide an alternate way to reach the + * Scorched dimension. + * + * If you're concerned about balance, accessing the Nether ceiling is already a solved problem + * without any mods. Just removing the bedrock and providing this much more interesting + * replacement makes more sense than you think. + */ + upstrate: on; + /* + * Perform Upstrate retrogeneration in Nether chunks that still have bedrock, or have the old + * pre-9.x Scorched Summit. + * + * Won't destroy existing structures. + */ + upstrate-retrogen: on; + + /* + * Generate "Roots of Continuity" on the underside of small End islands. + * + * DISABLING THIS BREAKS YTTR'S PROGRESSION. You need to provide an alternate way to access + * Drops of Continuity. + */ + continuity: on; + + /* + * Spawns deer in forests, cute passive mobs that eat flowers. + */ + deer: on; +} + +#debug { + /* + * If true, technical air blocks will be made visible. Very slow. + */ + render-air-blocks: off; +} \ No newline at end of file diff --git a/pack/configureddefaults/DistantHorizons.toml b/pack/configureddefaults/DistantHorizons.toml new file mode 100644 index 0000000..13e6a0c --- /dev/null +++ b/pack/configureddefaults/DistantHorizons.toml @@ -0,0 +1,824 @@ +_version = 3 + +[server] + # + # Defines the distance the player will receive updates around. + realTimeUpdateDistanceRadiusInChunks = 256 + # + # Prefix of the level keys sent to the clients. + # If the mod is running behind a proxy, each backend should use a unique value. + # If this value is empty, level key will be based on the server's seed hash. + levelKeyPrefix = "" + # + # Defines the distance allowed to be synchronized around the player. + # Should be the same or larger than maxGenerationRequestDistance in most cases. + maxSyncOnLoadRequestDistance = 4096 + # + # If true, clients will receive updated LODs when joining or loading new LODs. + synchronizeOnLoad = true + # + # Custom server key used which can be used to always reuse the same LOD data folder, + # for cases when the server doesn't have a static IP for some reason. + # If this value is empty, the client itself decides which folder name to use. + # Requires rejoining the server to apply after changing. + serverKey = "" + # + # Defines the distance allowed to generate around the player. + maxGenerationRequestDistance = 4096 + # + # Makes the server send level keys for each world. + # Disable this if you use alternative ways to send level keys. + sendLevelKeys = true + # + # DO NOT CHANGE UNLESS YOU KNOW WHAT YOU'RE DOING. + # Autogenerated ID used to prevent multiple independent servers from accidentally + # writing over each other's LODs when the same serverKey is set on both. + serverId = -1110280603 + # + # How many LOD generation requests per second should a client send? + # Also limits the number of client requests allowed to stay in the server's queue. + generationRequestRateLimit = 20 + # + # How many LOD sync requests per second should a client send? + # Also limits the amount of player's requests allowed to stay in the server's queue. + syncOnLoadRateLimit = 50 + # + # If true, clients will receive real-time LOD updates for chunks outside the client's render distance. + enableRealTimeUpdates = true + # + # Maximum global speed for uploading LODs to the clients, in KB/s. + # Value of 0 disables the limit. + globalBandwidthLimit = 0 + # + # Maximum per-player speed for uploading LODs to the clients, in KB/s. + # Value of 0 disables the limit. + playerBandwidthLimit = 500 + # + # Enables adaptive transfer speed based on client performance. + # If true, DH will automatically adjust transfer rate to minimize connection lag. + # If false, transfer speed will remain fixed. + enableAdaptiveTransferSpeed = false + + [server.experimental] + # + # When enabled on the client, this allows loading lower detail levels as needed to speed up terrain generation. + # This must also be enabled on the server; otherwise, it will have no effect. + # For better performance when switching LOD detail levels, enabling [upsampleLowerDetailLodsToFillHoles] is recommended. + enableNSizedGeneration = false + +[common] + + [common.lodBuilding] + # + # How should block data be compressed when creating LOD data? + # This setting will only affect new or updated LOD data, + # any data already generated when this setting is changed will be + # unaffected until it is modified or re-loaded. + # + # MERGE_SAME_BLOCKS + # Every block/biome change is recorded in the database. + # This is what DH 2.0 and 2.0.1 all used by default and will store a lot of data. + # Expected Compression Ratio: 1.0 + # + # VISUALLY_EQUAL + # Only visible block/biome changes are recorded in the database. + # Hidden blocks (IE ores) are ignored. + # Expected Compression Ratio: 0.7 + worldCompression = "VISUALLY_EQUAL" + # + # Enabling this will drastically increase chunk processing time + # and you may need to increase your CPU load to handle it. + # + # Normally DH will attempt to skip creating LODs for chunks it's already seen + # and that haven't changed. + # + # However sometimes that logic incorrectly prevents LODs from being updated. + # Disabling this check may fix issues where LODs aren't updated after + # blocks have been changed. + disableUnchangedChunkCheck = false + + [common.lodBuilding.experimental] + # + # When active DH will attempt to fill missing LOD data + # with any data that is present in the tree, preventing holes when moving + # when a N-sized generator (or server) is active. + # + # This is only used when N-sized world generation is available + # and/or when on a server where [generateOnlyInHighestDetail] is false. + # + # Experimental: + # Enabling this option will increase CPU and harddrive use + # and may cause rendering bugs. + upsampleLowerDetailLodsToFillHoles = false + + [common.multiThreading] + # + # How many threads should be used by Distant Horizons? + numberOfThreads = 2 + # + # A value between 1.0 and 0.0 that represents the percentage + # of time each thread can run before going idle. + # + # This can be used to reduce CPU usage if the thread count + # is already set to 1 for the given option, or more finely + # tune CPU performance. + threadRunTimeRatio = "0.5" + # + # What Java thread priority should DH's primary thread pools run with? + # + # You probably don't need to change this unless you are also + # running C2ME and are seeing thread starvation in either C2ME or DH. + threadPriority = 5 + + [common.logging] + # + # If enabled, the mod will log information about the renderer setup, cleanup, and any issues it may encounter. + # This can be useful for debugging. + logRendererEventToFile = "INFO" + # + # If enabled, the mod will log information about the world generation process. + # This can be useful for debugging. + logWorldGenEventToFile = "INFO" + # + # If enabled, the mod will log information about the renderer OpenGL process. + # This can be useful for debugging. + logRendererGLEventToChat = "ERROR" + # + # + globalChatMaxLevel = "ERROR" + # + # If enabled, the mod will log information about the world generation process. + # This can be useful for debugging. + logWorldGenChunkLoadEventToFile = "INFO" + # + # If enabled, the mod will log information about the renderer OpenGL process. + # This can be useful for debugging. + logRendererGLEventToFile = "INFO" + # + # If enabled, the mod will log information about network operations. + # This can be useful for debugging. + logNetworkEventToFile = "INFO" + # + # If enabled, config changes sent by the server will be logged. + logConnectionConfigChangesToFile = "WARN" + # + # + globalFileMaxLevel = "INFO" + + [common.logging.warning] + # + # If enabled, a chat message will be displayed when DH has too many chunks + # queued for updating. + showSlowWorldGenSettingWarnings = true + # + # If enabled, a chat message will be displayed when DH has too many chunks + # queued for updating. + showUpdateQueueOverloadedChatWarning = false + # + # If enabled, a chat message will be displayed if Java doesn't have enough + # memory allocated to run DH well. + showLowMemoryWarningOnStartup = true + # + # If enabled, a chat message will be displayed when a replay is started + # giving some basic information about how DH will function. + showReplayWarningOnStartup = true + # + # If enabled, a chat message will be displayed when a potentially problematic + # mod is installed alongside DH. + showModCompatibilityWarningsOnStartup = true + # + # If enabled, a chat message will be displayed if vanilla MC's + # render distance is higher than the recommended amount. + showHighVanillaRenderDistanceWarning = true + # + # If enabled, a chat message will be displayed if DH detects + # that any pooled objects have been garbage collected. + showPoolInsufficientMemoryWarning = true + # + # If enabled, a message will be logged if the garbage + # collector Java is currently using is known + # to cause stutters and/or issues. + logGarbageCollectorWarning = true + + [common.worldGenerator] + # + # How detailed should LODs be generated outside the vanilla render distance? + # + # PRE_EXISTING_ONLY + # Only create LOD data for already generated chunks. + # + # + # SURFACE + # Generate the world surface, + # this does NOT include trees, + # or structures. + # + # FEATURES + # Generate everything except structures. + # WARNING: This may cause world generator bugs or instability when paired with certain world generator mods. + # + # INTERNAL_SERVER + # Ask the local server to generate/load each chunk. + # This is the most compatible and will generate structures correctly, + # but may cause server/simulation lag. + # Note: unlike other modes this option DOES save generated chunks to + # Minecraft's region files. + distantGeneratorMode = "FEATURES" + # + # How should distant generator progress be displayed? + # + # OVERLAY: may be the same as CHAT for some Minecraft versions + # CHAT + # LOG + # DISABLED + showGenerationProgress = "DISABLED" + # + # The max radius in chunks around the central point where world generation is allowed. + # If this value is set to 0, generation bounds are disabled and the render distance will be used. + # + # This should only be set if you have a pre-generated world that has a very limited size. + # Setting this on a normal MC world will prevent the world generator from filling + # out your render distance. + generationMaxChunkRadius = 0 + # + # How often should the distant generator progress be displayed? + generationProgressDisplayIntervalInSeconds = 2 + # + # When logging generation progress also include the rate at which chunks + # are being generated. + # This can be useful for troubleshooting performance. + generationProgressIncludeChunksPerSecond = true + # + # For how many seconds should instructions for disabling the distant generator progress be displayed? + # Setting this to 0 hides the instructional message so the world gen progress is shown immediately when it starts. + generationProgressDisableMessageDisplayTimeInSeconds = 20 + # + # The center Z chunk position that the world gen max radius is centered around. + generationCenterChunkZ = 0 + # + # Should Distant Horizons slowly generate LODs + # outside the vanilla render distance? + # Depending on the generator mode, this will import existing chunks + # and/or generating missing chunks. + enableDistantGeneration = true + # + # The center X chunk position that the world gen max radius is centered around. + generationCenterChunkX = 0 + +[client] + # + # Should Distant Horizon's config button appear in Minecraft's options screen next to the fov slider? + showDhOptionsButtonInMinecraftUi = true + + [client.advanced] + + [client.advanced.autoUpdater] + # + # If DH should use the nightly (provided by Gitlab), or stable (provided by Modrinth) build. + # If [AUTO] is selected DH will update to new stable releases if the current jar is a stable jar + # and will update to new nightly builds if the current jar is a nightly jar (IE the version number ends in '-dev'). + updateBranch = "AUTO" + # + # Automatically check for updates on game launch? + enableAutoUpdater = true + # + # Should Distant Horizons silently, automatically download and install new versions? + # This setting is force disabled on dedicated servers for stability reasons. + enableSilentUpdates = false + + [client.advanced.debugging] + # + # If enabled this will disable (most) vanilla Minecraft rendering. + # + # NOTE: Do not report any issues when this mode is on! + # This setting is only for fun and debugging. + # Mod compatibility is not guaranteed. + lodOnlyMode = false + # + # Stops vertex colors from being passed. + # Useful for debugging shaders + enableWhiteWorld = false + # + # What renderer is active? + # + # DEFAULT: Default lod renderer + # DEBUG: Debug testing renderer + # DISABLED: Disable rendering + rendererMode = "DEFAULT" + # + # If enabled the LODs will render as wireframe. + renderWireframe = false + # + # If true the F8 key can be used to cycle through the different debug modes. + # and the F6 key can be used to enable and disable LOD rendering. + enableDebugKeybindings = false + # + # If true overlapping quads will be rendered as bright red for easy identification. + # If false the quads will be rendered normally. + showOverlappingQuadErrors = false + # + # Should specialized colors/rendering modes be used? + # + # OFF: LODs will be drawn with their normal colors. + # SHOW_DETAIL: LODs' color will be based on their detail level. + # SHOW_BLOCK_MATERIAL: LODs' color will be based on their material. + # SHOW_OVERLAPPING_QUADS: LODs will be drawn with total white, but overlapping quads will be drawn with red. + debugRendering = "OFF" + # + # If true OpenGL Buffer garbage collection will be logged + # this also includes the number of live buffers. + logBufferGarbageCollection = false + + [client.advanced.debugging.debugWireframe] + # + # Render LOD section status? + showRenderSectionStatus = false + # + # Render queued network sync on load tasks? + showNetworkSyncOnLoadQueue = false + # + # Render full data update/lock status? + showFullDataUpdateStatus = false + # + # Render queued world gen tasks? + showWorldGenQueue = false + # + # A white box will be drawn when an LOD starts rendering + # and a purple box when an LOD stops rendering. + # + # This can be used to debug Quad Tree holes. + showRenderSectionToggling = false + # + # Render Quad Tree Rendering status? + showQuadTreeRenderStatus = false + # + # If enabled, various wireframes for debugging internal functions will be drawn. + # + # NOTE: There WILL be performance hit! + # Additionally, only stuff that's loaded after you enable this + # will render their debug wireframes. + enableRendering = false + + [client.advanced.debugging.f3Screen] + # + # Shows how many chunks are queud for processing and the max count that can be queued. + showQueuedChunkUpdateCount = true + # + # Shows the memory use and array counts for each DH object pool. + showSeparatedObjectPools = false + # + # Shows the player's LOD position. + showPlayerPos = true + # + # Shows the combined memory use and array counts for all DH pooled objects. + showCombinedObjectPools = false + # + # Defines what internal detail level the player position will be shown as. + # Internal detail level means: 6 = 1x1 block, 7 = 2x2 blocks, etc. + playerPosSectionDetailLevel = 6 + # + # Shows info about each thread pool. + showThreadPools = true + # + # Shows what levels are loaded and world gen/rendering info about those levels. + showLevelStatus = true + + [client.advanced.debugging.openGl] + # + # Defines how OpenGL errors are handled. + # Requires rebooting Minecraft to change. + # Will catch OpenGL errors thrown by other mods. + overrideVanillaGLLogger = true + # + # Defines how OpenGL errors are handled. + # May incorrectly catch OpenGL errors thrown by other mods. + # + # IGNORE: Do nothing. + # LOG: write an error to the log. + # LOG_THROW: write to the log and throw an exception. + # Warning: this should only be enabled when debugging the LOD renderer + # as it may break Minecraft's renderer when an exception is thrown. + glErrorHandlingMode = "IGNORE" + # + # If true each Open GL error will only be logged once. + # Enabling this may cause some error logs to be missed. + # Does nothing if overrideVanillaGLLogger is set to false. + # + # Generally this can be kept as 'true' to prevent log spam. + # However, Please set this to 'false' if a developer needs your log to debug a GL issue. + onlyLogGlErrorsOnce = true + # + # + glUploadMode = "AUTO" + + [client.advanced.debugging.exampleConfigScreen] + shortTest = "69" + mapTest = "{}" + byteTest = "8" + longTest = "42069" + listTest = ["option 1", "option 2", "option 3"] + boolTest = false + doubleTest = "420.69" + floatTest = "0.42069" + linkableTest = 420 + intTest = 69420 + stringTest = "Test input box" + + [client.advanced.graphics] + # + # If true some vanilla graphics settings will be automatically changed + # during DH setup to provide a better experience. + # + # IE disabling vanilla clouds (which render on top of DH LODs), + # and chunk fading (DH already fades MC chunks) + overrideVanillaGraphicsSettings = true + + [client.advanced.graphics.culling] + # + # If false all beacons near the camera won't be drawn to prevent vanilla overdraw. + # If true all beacons will be rendered. + # + # Generally this should be left as true. It's main purpose is for debugging + # beacon updating/rendering. + disableBeaconDistanceCulling = true + # + # Determines how far from the camera Distant Horizons will start rendering. + # Measured as a percentage of the vanilla render distance. + # + # 0 = auto, overdraw will change based on the vanilla render distance. + # + # Higher values will prevent LODs from rendering behind vanilla blocks at a higher distance, + # but may cause holes in the world. + # Holes are most likely to appear when flying through unloaded terrain. + # + # Increasing the vanilla render distance increases the effectiveness of this setting. + overdrawPrevention = "0.0" + # + # If enabled caves won't be rendered. + # + # Note: for some world types this can cause + # overhangs or walls for floating objects. + # Tweaking the caveCullingHeight, can resolve some + # of those issues. + enableCaveCulling = true + # + # Identical to the other frustum culling option + # only used when a shader mod is present using the DH API + # and the shadow pass is being rendered. + # + # Disable this if shadows render incorrectly. + disableShadowPassFrustumCulling = false + # + # At what Y value should cave culling start? + # Lower this value if you get walls for areas with 0 light. + caveCullingHeight = 60 + # + # A comma separated list of block resource locations that shouldn't be rendered + # if they are in a 0 sky light underground area. + # Air is always included in this list. + # Requires a restart to change. + ignoredRenderCaveBlockCsv = "minecraft:glow_lichen,minecraft:rail,minecraft:water,minecraft:lava,minecraft:bubble_column,minecraft:cave_vines_plant,minecraft:vine,minecraft:cave_vines,minecraft:short_grass,minecraft:tall_grass,minecraft:small_dripleaf,minecraft:big_dripleaf,minecraft:big_dripleaf_stem,minecraft:sculk_vein" + # + # A comma separated list of block resource locations that won't be rendered by DH. + # Air is always included in this list. + # Requires a restart to change. + # + # Note: + # If you see gaps, or holes you may have to change + # worldCompression to [MERGE_SAME_BLOCKS] and re-generate the LODs. + # Black spots may happen occur to block lighting being zero for covered blocks. + ignoredRenderBlockCsv = "minecraft:barrier,minecraft:structure_void,minecraft:light,minecraft:tripwire,minecraft:brown_mushroom" + # + # If true LODs outside the player's camera + # aren't drawn, increasing GPU performance. + # + # If false all LODs are drawn, even those behind + # the player's camera, decreasing GPU performance. + # + # Disable this if you see LODs disappearing at the corners of your vision. + disableFrustumCulling = false + + [client.advanced.graphics.ssao] + # + # Determines how many points in space are sampled for the occlusion test. + # Higher numbers will improve quality and reduce banding, but will increase GPU load. + sampleCount = 6 + # + # The distance in blocks from the camera where the SSAO will fade out to. + # This is done to prevent banding and noise at extreme distances. + fadeDistanceInBlocks = 1600 + # + # Determines how dark the Screen Space Ambient Occlusion effect will be. + strength = "0.2" + # + # The radius, measured in pixels, that blurring is calculated for the SSAO. + # Higher numbers will reduce banding at the cost of GPU performance. + blurRadius = 2 + # + # Increasing the value can reduce banding at the cost of reducing the strength of the effect. + bias = "0.02" + # + # Determines how dark the occlusion shadows can be. + # 0 = totally black at the corners + # 1 = no shadow + minLight = "0.25" + # + # Enable Screen Space Ambient Occlusion + enableSsao = true + # + # Determines the radius Screen Space Ambient Occlusion is applied, measured in blocks. + radius = "4.0" + + [client.advanced.graphics.noiseTexture] + # + # Should a noise texture be applied to LODs? + # + # This is done to simulate textures and make the LODs appear more detailed. + enableNoiseTexture = true + # + # Defines how far should the noise texture render before it fades away. (in blocks) + # Set to 0 to disable noise from fading away + noiseDropoff = 1024 + # + # How many steps of noise should be applied to LODs? + noiseSteps = 4 + # + # How intense should the noise should be? + noiseIntensity = "5.0" + + [client.advanced.graphics.experimental] + # + # A comma separated list of dimension resource locations where DH won't render. + # + # Example: "minecraft:the_nether,minecraft:the_end" + # + # Note: + # Some DH settings will be disabled and/or changed to improve + # visuals when DH rendering is disabled. + ignoredDimensionCsv = "" + # + # This is the earth size ratio when applying the curvature shader effect. + # Note: Enabling this feature may cause rendering bugs. + # + # 0 = flat/disabled + # 1 = 1 to 1 (6,371,000 blocks) + # 100 = 1 to 100 (63,710 blocks) + # 10000 = 1 to 10000 (637.1 blocks) + # + # Note: Due to current limitations, the min value is [50] + # and the max value is 5000. Any values outside this range + # will be set to 0 (disabled). + earthCurveRatio = 0 + + [client.advanced.graphics.genericRendering] + # + # If true LOD clouds will be rendered. + enableCloudRendering = true + # + # Sets the maximum height at which beacons will render.This will only affect new beacons coming into LOD render distance.Beacons currently visible in LOD chunks will not be affected. + beaconRenderHeight = 6000 + # + # If true LOD beacon beams will be rendered. + enableBeaconRendering = true + # + # If true non terrain objects will be rendered in DH's terrain. + # This includes beacon beams and clouds. + enableGenericRendering = true + # + # Can be disabled to use much slower but more compatible direct rendering. + # Disabling this can be used to fix some crashes on Mac. + enableInstancedRendering = true + + [client.advanced.graphics.quality] + # + # What is the maximum detail LODs should be drawn at? + # Higher settings will increase memory and GPU usage. + # + # CHUNK: render 1 LOD for each Chunk. + # HALF_CHUNK: render 4 LODs for each Chunk. + # FOUR_BLOCKS: render 16 LODs for each Chunk. + # TWO_BLOCKS: render 64 LODs for each Chunk. + # BLOCK: render 256 LODs for each Chunk (width of one block). + # + # Lowest Quality: CHUNK + # Highest Quality: BLOCK + maxHorizontalResolution = "BLOCK" + # + # If true LODs will fade away as you get closer to them. + # If false LODs will cut off abruptly at a set distance from the camera. + # This setting is affected by the vanilla overdraw prevention config. + ditherDhFade = true + # + # Should DH fade out before reaching the far clip plane? + # This is helpful to prevent DH clouds from cutting off in the distance. + dhFadeFarClipPlane = true + # + # How bright LOD colors are. + # + # 0 = black + # 1 = normal + # 2 = near white + brightnessMultiplier = "1.0" + # + # How should LODs be shaded? + # + # AUTO: Uses the same side shading as vanilla Minecraft blocks. + # ENABLED: Simulates Minecraft's block shading for LODs. + # Can be used to force LOD shading when using some shaders. + # DISABLED: All LOD sides will be rendered with the same brightness. + lodShading = "AUTO" + # + # How saturated LOD colors are. + # + # 0 = black and white + # 1 = normal + # 2 = very saturated + saturationMultiplier = "1.0" + # + # This indicates how well LODs will represent + # overhangs, caves, floating islands, etc. + # Higher options will make the world more accurate, butwill increase memory and GPU usage. + # + # Lowest Quality: HEIGHT_MAP + # Highest Quality: EXTREME + verticalQuality = "MEDIUM" + # + # What blocks shouldn't be rendered as LODs? + # + # NONE: Represent all blocks in the LODs + # NON_COLLIDING: Only represent solid blocks in the LODs (tall grass, torches, etc. won't count for a LOD's height) + blocksToIgnore = "NON_COLLIDING" + # + # The radius of the mod's render distance. (measured in chunks) + lodChunkRenderDistanceRadius = 64 + # + # What value should vanilla Minecraft's texture LodBias be? + # If set to 0 the mod wont overwrite vanilla's default (which so happens to also be 0) + lodBias = "0.0" + # + # How should the sides and bottom of grass block LODs render? + # + # AS_GRASS: all sides of dirt LOD's render using the top (green) color. + # FADE_TO_DIRT: sides fade from grass to dirt. + # AS_DIRT: sides render entirely as dirt. + grassSideRendering = "FADE_TO_DIRT" + # + # Should the blocks underneath avoided blocks gain the color of the avoided block? + # + # True: a red flower will tint the grass below it red. + # False: skipped blocks will not change color of surface below them. + tintWithAvoidedBlocks = true + # + # This indicates how quickly LODs decrease in quality the further away they are. + # Higher settings will render higher quality fake chunks farther away, + # but will increase memory and GPU usage. + horizontalQuality = "MEDIUM" + # + # How should LOD transparency be handled. + # + # COMPLETE: LODs will render transparent. + # FAKE: LODs will be opaque, but shaded to match the blocks underneath. + # DISABLED: LODs will be opaque. + transparency = "COMPLETE" + # + # This is the same as vanilla Biome Blending settings for Lod area. + # Note that anything other than '0' will greatly effect Lod building time. + # + # '0' equals to Vanilla Biome Blending of '1x1' or 'OFF', + # '1' equals to Vanilla Biome Blending of '3x3', + # '2' equals to Vanilla Biome Blending of '5x5'... + lodBiomeBlending = 3 + # + # How should vanilla Minecraft fade into Distant Horizons LODs? + # + # NONE: Fastest, there will be a pronounced border between DH and MC rendering. + # SINGLE_PASS: Fades after MC's transparent pass, opaque blocks underwater won't be faded. + # DOUBLE_PASS: Slowest, fades after both MC's opaque and transparent passes, provides the smoothest transition. + vanillaFadeMode = "DOUBLE_PASS" + + [client.advanced.graphics.fog] + # + # Should Minecraft's fog render? + # Note: Other mods may conflict with this setting. + enableVanillaFog = false + # + # What is the maximum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + farFogMax = "1.0" + # + # Determines if fog is drawn on DH LODs. + enableDhFog = true + # + # At what distance should the far fog start? + # + # 0.0: Fog starts at the player's position. + # 1.0: Fog starts at the closest edge of the vanilla render distance. + # 1.414: Fog starts at the corner of the vanilla render distance. + farFogStart = "0.1" + # + # What is the minimum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + farFogMin = "0.0" + # + # What color should fog use? + # + # USE_WORLD_FOG_COLOR: Use the world's fog color. + # USE_SKY_COLOR: Use the sky's color. + colorMode = "USE_WORLD_FOG_COLOR" + # + # How should the fog thickness should be calculated? + # + # LINEAR: Linear based on distance (will ignore 'density') + # EXPONENTIAL: 1/(e^(distance*density)) + # EXPONENTIAL_SQUARED: 1/(e^((distance*density)^2) + farFogFalloff = "EXPONENTIAL_SQUARED" + # + # Used in conjunction with the Fog Falloff. + farFogDensity = "2.5" + # + # Where should the far fog end? + # + # 0.0: Fog ends at player's position. + # 1.0: Fog ends at the closest edge of the vanilla render distance. + # 1.414: Fog ends at the corner of the vanilla render distance. + farFogEnd = "1.2" + + [client.advanced.graphics.fog.heightFog] + # + # Where should the height fog start? + # + # ABOVE_CAMERA: Height fog starts at the camera and goes towards the sky + # BELOW_CAMERA: Height fog starts at the camera and goes towards the void + # ABOVE_AND_BELOW_CAMERA: Height fog starts from the camera to goes towards both the sky and void + # ABOVE_SET_HEIGHT: Height fog starts from a set height and goes towards the sky + # BELOW_SET_HEIGHT: Height fog starts from a set height and goes towards the void + # ABOVE_AND_BELOW_SET_HEIGHT: Height fog starts from a set height and goes towards both the sky and void + heightFogDirection = "BELOW_SET_HEIGHT" + # + # What is the minimum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + heightFogMin = "0.0" + # + # If the height fog is calculated around a set height, what is that height position? + heightFogBaseHeight = "80.0" + # + # What is the maximum fog thickness? + # + # 0.0: No fog. + # 1.0: Fully opaque fog. + heightFogMax = "1.0" + # + # How should the height fog thickness should be calculated? + # + # LINEAR: Linear based on height (will ignore 'density') + # EXPONENTIAL: 1/(e^(height*density)) + # EXPONENTIAL_SQUARED: 1/(e^((height*density)^2) + heightFogFalloff = "EXPONENTIAL_SQUARED" + # + # What is the height fog's density? + heightFogDensity = "20.0" + # + # How should height effect the fog thickness? + # Note: height fog is combined with the other fog settings. + # + # SPHERICAL: Fog is calculated based on camera distance. + # CYLINDRICAL: Ignore height, fog is calculated based on horizontal distance. + # + # MAX: max(heightFog, farFog) + # ADDITION: heightFog + farFog + # MULTIPLY: heightFog * farFog + # INVERSE_MULTIPLY: 1 - (1-heightFog) * (1-farFog) + # LIMITED_ADDITION: farFog + max(farFog, heightFog) + # MULTIPLY_ADDITION: farFog + farFog * heightFog + # INVERSE_MULTIPLY_ADDITION: farFog + 1 - (1-heightFog) * (1-farFog) + # AVERAGE: farFog*0.5 + heightFog*0.5 + heightFogMixMode = "SPHERICAL" + # + # Should the start of the height fog be offset? + # + # 0.0: Fog start with no offset. + # 1.0: Fog start with offset of the entire world's height. (Includes depth) + heightFogStart = "0.0" + # + # Should the end of the height fog be offset? + # + # 0.0: Fog end with no offset. + # 1.0: Fog end with offset of the entire world's height. (Include depth) + heightFogEnd = "0.6" + + [client.advanced.multiplayer] + # + # How should multiplayer save folders should be named? + # + # NAME_ONLY: Example: "Minecraft Server" + # IP_ONLY: Example: "192.168.1.40" + # NAME_IP: Example: "Minecraft Server IP 192.168.1.40" + # NAME_IP_PORT: Example: "Minecraft Server IP 192.168.1.40:25565"NAME_IP_PORT_MC_VERSION: Example: "Minecraft Server IP 192.168.1.40:25565 GameVersion 1.16.5" + serverFolderNameMode = "NAME_ONLY" + diff --git a/pack/configureddefaults/README.md b/pack/configureddefaults/README.md new file mode 100644 index 0000000..5ca012d --- /dev/null +++ b/pack/configureddefaults/README.md @@ -0,0 +1,12 @@ +# Configured Defaults + +This whole directory servers as a synchronized mirror of `.minecraft`. Every sub-directory and / or file placed within will be copied to the main `.minecraft` directory during game launch if the directory / file is not already present. +There is no way of overriding an existing file, a copy will only be made when the target destination is empty. + +Please note that due to the way Minecraft handles `options.txt` specifically it is sufficient to include only the options you want to set a preset for. All missing options will be filled in using their internal defaults when the file is read by the game. + +Examples: +- `.minecraft/configureddefaults/options.txt` will be copied to `.minecraft/options.txt` if not already present +- `.minecraft/configureddefaults/config/jei/jei.toml` will be copied to `.minecraft/config/jei/jei.toml` if not already present + +Note that this `README.md` file is excluded from being copied to `.minecraft`. diff --git a/pack/configureddefaults/config/badoptimizations.txt b/pack/configureddefaults/config/badoptimizations.txt new file mode 100644 index 0000000..318a251 --- /dev/null +++ b/pack/configureddefaults/config/badoptimizations.txt @@ -0,0 +1,76 @@ +# BadOptimizations configuration +# Here you can configure stuff, mostly enabling/disabling specific optimizations. + +# Whether we should cancel updating the lightmap if not needed. +enable_lightmap_caching: true +# How much the in-game time must change in ticks (1/20th of a second) +# for the lightmap to immediately update. +# Higher values will result in less frequent updates +# to block lighting, but better performance. +# Values below 2 will disable hte optimization. +lightmap_time_change_needed_for_update: 20 + +# Whether the sky's color should be cached unless you're on a biome border. +enable_sky_color_caching: true +# How much the in-game time must change in ticks for the sky color to +# be recalculated with our own calculation. Higher values will result in +# the sky updating less frequently, but slightly better performance. +# Values below 2 will all have the same effect. +skycolor_time_change_needed_for_update: 3 + +# Whether we should avoid calling debug renderers +# and their calculations if there are no debug entries to render +enable_debug_renderer_disable_if_not_needed: true + +# +# Micro optimizations +# + +# Whether we should avoid calling the particle manager +# and its calculations if there are no particles. +enable_particle_manager_optimization: true +# Whether we should avoid calling the toast manager +# if there are no toasts +enable_toast_optimizations: true +# Whether the result of getSkyAngle should be cached +# for the entire frame during rendering +enable_sky_angle_caching_in_worldrenderer: true +# Whether entity renderers should be stored directly in EntityType +# instead of a HashMap. +# Disable to fix compatibility with Twilight Forest +enable_entity_renderer_caching: true +# Whether block entity renderers should be stored in BlockEntityType +# instead of a HashMap. +enable_block_entity_renderer_caching: true +# Whether entity flags should be cached instead of calling DataTracker. +# Also removes the unnecessary thread lock in DataTracker +# however this is also done by Lithium (they don't conflict, however). +# This has no effect in 1.20.5+! +enable_entity_flag_caching: true +# Whether we should avoid calling FOV calculations +# if the FOV effect scale is zero. +enable_remove_redundant_fov_calculations: true +# Don't tick the tutorial if the game is not in demo mode. +enable_remove_tutorial_if_not_demo: true + +# +# Other +# + +# Whether BadOptimizations should be added onto +# the left text of the F3 menu. +show_f3_text: true + +# Some config options will be force-disabled if certain mods are present +# due to incompatibilities (e.g. entity rendering caching +# is disabled w/ Twilight Forest). +# However, if you still want to use the optimizations, you can override it +# by setting this to true. Beware of crashes. And Herobrine. +ignore_mod_incompatibilities: false + +# Whether to log the entire config into console when booting up. +# If you plan on reporting an issue, please keep this on. +log_config: true + +# Do not change this +config_version: 3 diff --git a/pack/configureddefaults/config/connector.json b/pack/configureddefaults/config/connector.json new file mode 100644 index 0000000..ac53d64 --- /dev/null +++ b/pack/configureddefaults/config/connector.json @@ -0,0 +1,7 @@ +{ + "version": 1, + "globalModAliases": { + "cloth_config": "cloth-config2", + "embeddium": "sodium" + } +} \ No newline at end of file diff --git a/pack/configureddefaults/config/cull-less-leaves.json b/pack/configureddefaults/config/cull-less-leaves.json new file mode 100644 index 0000000..987e20d --- /dev/null +++ b/pack/configureddefaults/config/cull-less-leaves.json @@ -0,0 +1,3 @@ +{ + "randomRejection": 0.0 +} \ No newline at end of file diff --git a/pack/configureddefaults/config/dynamic_fps.json b/pack/configureddefaults/config/dynamic_fps.json new file mode 100644 index 0000000..0897413 --- /dev/null +++ b/pack/configureddefaults/config/dynamic_fps.json @@ -0,0 +1,14 @@ +{ + "states": { + "unfocused": { + "frame_rate_target": 2, + "run_garbage_collector": true + }, + "invisible": { + "volume_multipliers": { + "master": 0.25 + }, + "run_garbage_collector": true + } + } +} diff --git a/pack/configureddefaults/config/embeddium-options.json b/pack/configureddefaults/config/embeddium-options.json new file mode 100644 index 0000000..9010f0e --- /dev/null +++ b/pack/configureddefaults/config/embeddium-options.json @@ -0,0 +1,5 @@ +{ + "advanced": { + "cpu_render_ahead_limit": 4 + } +} \ No newline at end of file diff --git a/pack/configureddefaults/config/enhanced_bes.properties b/pack/configureddefaults/config/enhanced_bes.properties new file mode 100644 index 0000000..ccc39c5 --- /dev/null +++ b/pack/configureddefaults/config/enhanced_bes.properties @@ -0,0 +1,4 @@ +sign_ao=true +shulker_box_ao=true +chest_ao=true +bed_ao=true diff --git a/pack/configureddefaults/config/entityculling.json b/pack/configureddefaults/config/entityculling.json new file mode 100644 index 0000000..1c09550 --- /dev/null +++ b/pack/configureddefaults/config/entityculling.json @@ -0,0 +1,4 @@ +{ + "sleepDelay": 70, + "hitboxLimit": 65 +} \ No newline at end of file diff --git a/pack/configureddefaults/config/ferritecore.mixin.properties b/pack/configureddefaults/config/ferritecore.mixin.properties new file mode 100644 index 0000000..1e9edb6 --- /dev/null +++ b/pack/configureddefaults/config/ferritecore.mixin.properties @@ -0,0 +1,2 @@ +# Replace objects used to detect multi-threaded access to chunks by a much smaller field. This option is disabled by default due to very rare and very hard-to-reproduce crashes, use at your own risk! +useSmallThreadingDetector = true \ No newline at end of file diff --git a/pack/configureddefaults/config/immediatelyfast.json b/pack/configureddefaults/config/immediatelyfast.json new file mode 100644 index 0000000..c3c0fe5 --- /dev/null +++ b/pack/configureddefaults/config/immediatelyfast.json @@ -0,0 +1,3 @@ +{ + "experimental_screen_batching": true +} \ No newline at end of file diff --git a/pack/configureddefaults/config/modernfix-mixins.properties b/pack/configureddefaults/config/modernfix-mixins.properties new file mode 100644 index 0000000..3a9efbe --- /dev/null +++ b/pack/configureddefaults/config/modernfix-mixins.properties @@ -0,0 +1,15 @@ +# This config file is taken from Simply Optimized 6.2.2, and the following +# patches that SO enables are removed for stability and compatibility: +# mixin.bugfix.packet_leak | experimental +# mixin.perf.clear_fabric_mapping_tables | may be incompatible with other mods +# mixin.perf.remove_spawn_chunks | breaks vanilla parity +# mixin.perf.clear_mixin_classinfo | may be incompatible with other mods +# +# Thanks HyperSoop for allowing me to modify the config file for Adrenaline :) +# +# For more information on the ModernFix patches and what they do, see the +# wiki on the Git repo: https://github.com/embeddedt/ModernFix/wiki + +mixin.perf.dynamic_entity_renderers=true +mixin.perf.dynamic_resources=true +mixin.perf.faster_item_rendering=true \ No newline at end of file diff --git a/pack/configureddefaults/config/threadtweak.json b/pack/configureddefaults/config/threadtweak.json new file mode 100644 index 0000000..3ccfb18 --- /dev/null +++ b/pack/configureddefaults/config/threadtweak.json @@ -0,0 +1,8 @@ +{ + "threadPriority": { + "game": 8, + "main": 3, + "io": 5, + "integratedServer": 8 + } +} \ No newline at end of file diff --git a/pack/configureddefaults/options.txt b/pack/configureddefaults/options.txt new file mode 100644 index 0000000..ac41a2a --- /dev/null +++ b/pack/configureddefaults/options.txt @@ -0,0 +1,2 @@ +simulationDistance:8 +onboardAccessibility:true \ No newline at end of file diff --git a/pack/configureddefaults/xaerominimap-common.txt b/pack/configureddefaults/xaerominimap-common.txt new file mode 100644 index 0000000..34539fa --- /dev/null +++ b/pack/configureddefaults/xaerominimap-common.txt @@ -0,0 +1,5 @@ +allowCaveModeOnServer:true +allowNetherCaveModeOnServer:true +allowRadarOnServer:true +registerStatusEffects:true +everyoneTracksEveryone:false diff --git a/pack/configureddefaults/xaerominimap.txt b/pack/configureddefaults/xaerominimap.txt new file mode 100644 index 0000000..09ad5e8 --- /dev/null +++ b/pack/configureddefaults/xaerominimap.txt @@ -0,0 +1,133 @@ +#CONFIG ONLY OPTIONS +ignoreUpdate:1 +settingsButton:false +allowWrongWorldTeleportation:false +differentiateByServerAddress:true +debugEntityIcons:false +debugEntityVariantIds:false +radarHideInvisibleEntities:true +allowInternetAccess:true +#INGAME SETTINGS (DO NOT EDIT!) +updateNotification:false +minimap:false +caveMaps:2 +caveZoom:1 +showWaypoints:true +showIngameWaypoints:false +displayRedstone:true +deathpoints:true +oldDeathpoints:true +distance:1 +lockNorth:false +zoom:0 +minimapSize:0 +chunkGrid:-1 +slimeChunks:false +mapSafeMode:false +minimapOpacity:100.0 +waypointsIngameIconScale:0 +waypointsIngameDistanceScale:0 +waypointsIngameNameScale:0 +waypointsIngameCloseScale:1.0 +antiAliasing:true +blockColours:0 +lighting:true +dotsStyle:0 +dotNameScale:1.0 +compassOverEverything:true +showFlowers:true +keepWaypointNames:true +waypointsDistanceExp:0 +waypointsDistanceMin:0.0 +defaultWaypointTPCommandFormat:/tp @s {x} {y} {z} +defaultWaypointTPCommandRotationFormat:/tp @s {x} {y} {z} {yaw} ~ +arrowScale:1.5 +arrowColour:0 +smoothDots:true +worldMap:true +terrainDepth:true +terrainSlopes:2 +mainEntityAs:0 +blockTransparency:true +waypointOpacityIngame:80 +waypointOpacityMap:90 +hideWorldNames:1 +openSlimeSettings:true +alwaysShowDistance:false +renderLayerIndex:1 +crossDimensionalTp:true +biomeColorsVanillaMode:false +lookingAtAngle:10 +lookingAtAngleVertical:180 +centeredEnlarged:false +zoomOnEnlarged:0 +minimapTextAlign:0 +waypointsMutualEdit:true +compassLocation:1 +compassDirectionScale:0 +caveMapsDepth:30 +hideWaypointCoordinates:false +renderAllSets:false +playerArrowOpacity:100 +waypointsBottom:false +minimapShape:0 +lightOverlayType:0 +lightOverlayMaxLight:7 +lightOverlayMinLight:0 +lightOverlayColor:13 +uiScale:0 +bossHealthPushBox:1 +potionEffectPushBox:1 +minimapFrame:0 +minimapFrameColor:9 +compassColor:9 +northCompassColor:-1 +displayMultipleWaypointInfo:1 +entityRadar:true +adjustHeightForCarpetLikeBlocks:true +autoConvertWaypointDistanceToKmThreshold:10000 +waypointDistancePrecision:1 +mainDotSize:2 +partialYTeleportation:true +deleteReachedDeathpoints:true +hideMinimapUnderScreen:true +hideMinimapUnderF3:true +manualCaveModeStartAuto:true +manualCaveModeStart:-1 +chunkGridLineWidth:1 +temporaryWaypointsGlobal:true +keepUnlockedWhenEnlarged:false +enlargedMinimapAToggle:false +displayStainedGlass:true +waypointOnMapScale:0 +switchToAutoOnDeath:true +infoDisplayBackgroundOpacity:40 +caveModeToggleTimer:1000 +legibleCaveMaps:false +biomeBlending:true +displayTrackedPlayersOnMap:true +displayTrackedPlayersInWorld:true +dimensionScaledMaxWaypointDistance:true +trackedPlayerWorldIconScale:0 +trackedPlayerWorldNameScale:0 +trackedPlayerMinimapIconScale:0 +displayClaims:true +displayCurrentClaim:true +claimsFillOpacity:46 +claimsBorderOpacity:80 +infoDisplayOrder:coords:overworld_coords:chunk_coords:angles:dimension:biome:weather:light_level:time:real_time:highlights:light_overlay_indicator:manual_cave_mode_indicator:custom_sub_world +infoDisplay:coords:true:15:-1 +infoDisplay:overworld_coords:false:15:-1 +infoDisplay:chunk_coords:false:15:-1 +infoDisplay:angles:false:15:-1 +infoDisplay:dimension:false:15:-1 +infoDisplay:biome:false:15:-1 +infoDisplay:weather:false:15:-1 +infoDisplay:light_level:0:15:-1 +infoDisplay:time:0:15:-1 +infoDisplay:real_time:0:15:-1 +infoDisplay:highlights:true:15:-1 +infoDisplay:light_overlay_indicator:true:15:-1 +infoDisplay:manual_cave_mode_indicator:true:15:-1 +infoDisplay:custom_sub_world:true:15:-1 +module;id=xaerominimap:minimap;active=false;x=0;y=0;centered=false;fromRight=false;fromBottom=false;flippedVer=false;flippedHor=false; diff --git a/pack/configureddefaults/xaerominimap_entities.json b/pack/configureddefaults/xaerominimap_entities.json new file mode 100644 index 0000000..485d87e --- /dev/null +++ b/pack/configureddefaults/xaerominimap_entities.json @@ -0,0 +1,191 @@ +{ + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [ + "minecraft:glow_item_frame", + "minecraft:item_frame" + ], + "name": "gui.xaero_entity_category_root", + "protection": true, + "settingOverrides": { + "displayed": true, + "displayHeight": 0.0, + "heightBasedFade": true, + "renderOrder": 0.0, + "color": 13.0, + "displayNameWhenIconFails": true, + "entityNumber": 1000.0, + "alwaysDisplayNametags": false, + "dotSize": 2.0, + "startFadingAt": 0.0, + "renderOverMinimapFrame": 1.0, + "icons": 1.0, + "names": 0.0, + "heightLimit": 20.0, + "iconScale": 1.0 + }, + "subCategories": [ + { + "hardInclude": "living", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [ + "minecraft:armor_stand" + ], + "name": "gui.xaero_entity_category_living", + "protection": true, + "settingOverrides": { + "renderOrder": 2.0, + "color": 14.0 + }, + "subCategories": [ + { + "hardInclude": "players", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_players", + "protection": true, + "settingOverrides": { + "renderOrder": 6.0, + "heightLimit": 2050.0, + "color": 15.0 + }, + "subCategories": [ + { + "hardInclude": "nothing", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friend", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "tracked", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_tracked", + "protection": true, + "settingOverrides": { + "icons": 2.0 + }, + "subCategories": [] + }, + { + "hardInclude": "same-team", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_same_team", + "protection": true, + "settingOverrides": {}, + "subCategories": [] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_other_teams", + "protection": true, + "settingOverrides": { + "renderOrder": 7.0 + }, + "subCategories": [] + } + ] + }, + { + "hardInclude": "hostile", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_hostile", + "protection": true, + "settingOverrides": { + "renderOrder": 3.0 + }, + "subCategories": [ + { + "hardInclude": "tamed", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_hostile_tamed", + "protection": true, + "settingOverrides": { + "renderOrder": 5.0 + }, + "subCategories": [] + } + ] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friendly", + "protection": true, + "settingOverrides": {}, + "subCategories": [ + { + "hardInclude": "tamed", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_friendly_tamed", + "protection": true, + "settingOverrides": { + "renderOrder": 4.0 + }, + "subCategories": [] + } + ] + } + ] + }, + { + "hardInclude": "items", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_items", + "protection": true, + "settingOverrides": { + "renderOrder": 1.0, + "color": 12.0 + }, + "subCategories": [] + }, + { + "hardInclude": "anything", + "includeList": [], + "includeListInSuperCategory": true, + "excludeMode": "ONLY", + "excludeList": [], + "name": "gui.xaero_entity_category_other_entities", + "protection": true, + "settingOverrides": { + "color": 5.0 + }, + "subCategories": [] + } + ] +} \ No newline at end of file diff --git a/pack/configureddefaults/xaeroworldmap-common.txt b/pack/configureddefaults/xaeroworldmap-common.txt new file mode 100644 index 0000000..0caae0c --- /dev/null +++ b/pack/configureddefaults/xaeroworldmap-common.txt @@ -0,0 +1,4 @@ +allowCaveModeOnServer:true +allowNetherCaveModeOnServer:true +registerStatusEffects:true +everyoneTracksEveryone:false diff --git a/pack/configureddefaults/xaeroworldmap.txt b/pack/configureddefaults/xaeroworldmap.txt new file mode 100644 index 0000000..318bbf4 --- /dev/null +++ b/pack/configureddefaults/xaeroworldmap.txt @@ -0,0 +1,55 @@ +ignoreUpdate:1 +updateNotification:false +allowInternetAccess:true +differentiateByServerAddress:true +caveMapsAllowed:true +debug:false +lighting:true +colours:0 +loadChunks:true +updateChunks:true +terrainSlopes:2 +terrainDepth:true +footsteps:true +flowers:true +coordinates:true +hoveredBiome:true +biomeColorsVanillaMode:false +waypoints:true +renderArrow:true +displayZoom:true +worldmapWaypointsScale:1.0 +openMapAnimation:true +reloadVersion:0 +reloadEverything:false +zoomButtons:true +waypointBackgrounds:true +detectAmbiguousY:true +showDisabledWaypoints:false +closeWaypointsWhenHopping:true +adjustHeightForCarpetLikeBlocks:true +onlyCurrentMapWaypoints:false +minZoomForLocalWaypoints:0.0 +arrowColour:-2 +minimapRadar:true +renderWaypoints:true +partialYTeleportation:true +displayStainedGlass:true +caveModeDepth:30 +caveModeStart:2147483647 +autoCaveMode:-1 +legibleCaveMaps:false +displayCaveModeStart:true +caveModeToggleTimer:1000 +defaultCaveModeType:1 +biomeBlending:true +trackedPlayers:true +multipleImagesExport:false +nightExport:false +highlightsExport:false +exportScaleDownSquare:20 +mapWritingDistance:-1 +displayClaims:true +claimsFillOpacity:46 +claimsBorderOpacity:80 +globalVersion:1 diff --git a/pack/defaultconfigs/cofh_core-server.toml b/pack/defaultconfigs/cofh_core-server.toml new file mode 100644 index 0000000..c96609f --- /dev/null +++ b/pack/defaultconfigs/cofh_core-server.toml @@ -0,0 +1,33 @@ + +[Commands] + #The required permission level for the '/cofh crafting' command. + #Range: 0 ~ 4 + "Crafting Permission Level" = 2 + #The required permission level for the '/cofh enderchest' command. + #Range: 0 ~ 4 + "EnderChest Permission Level" = 2 + #The required permission level for the '/cofh heal' command. + #Range: 0 ~ 4 + "Heal Permission Level" = 2 + #The required permission level for the '/cofh ignite' command. + #Range: 0 ~ 4 + "Ignite Permission Level" = 2 + #The required permission level for the '/cofh repair' command. + #Range: 0 ~ 4 + "Repair Permission Level" = 2 + +[Enchantments] + #If TRUE, Feather Falling will prevent Farmland from being trampled. This option will work with alternative versions (overrides) of Feather Falling. + "Improved Feather Falling" = true + #If TRUE, Mending behavior is altered so that Experience Orbs always repair items if possible, and the most damaged item is prioritized. This option may not work with alternative versions (overrides) of Mending. + "Improved Mending" = true + + [Enchantments.Holding] + #If TRUE, the Holding Enchantment is available for various Storage Items and Blocks. + Enable = false + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = false + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 4 + diff --git a/pack/defaultconfigs/ensorcellation-server.toml b/pack/defaultconfigs/ensorcellation-server.toml new file mode 100644 index 0000000..ff4b539 --- /dev/null +++ b/pack/defaultconfigs/ensorcellation-server.toml @@ -0,0 +1,317 @@ + +[Enchantments] + + [Enchantments."Magic Protection"] + #If TRUE, the Magic Protection Enchantment is available for Armor and Horse Armor. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = false + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 4 + + [Enchantments.Displacement] + #If TRUE, the Displacement Enchantment is available for Armor, Shields, and Horse Armor. + Enable = false + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 3 + #Adjust this value to set the chance per level of the Enchantment firing (in percentage). + #Range: 1 ~ 100 + "Effect Chance" = 20 + #If TRUE, mobs wearing armor with this Enchantment can teleport players. + "Mobs Teleport Players" = false + + [Enchantments."Flaming Rebuke"] + #If TRUE, the Flaming Rebuke Enchantment is available for Armor, Shields, and Horse Armor. + Enable = false + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 3 + #Adjust this value to set the chance per level of the Enchantment firing (in percentage). + #Range: 1 ~ 100 + "Effect Chance" = 20 + #If TRUE, mobs wearing armor with this Enchantment can knockback players. + "Mobs Knockback Players" = false + + [Enchantments."Chilling Rebuke"] + #If TRUE, the Chilling Rebuke Enchantment is available for Armor, Shields, and Horse Armor. + Enable = false + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 3 + #Adjust this value to set the chance per level of the Enchantment firing (in percentage). + #Range: 1 ~ 100 + "Effect Chance" = 20 + #If TRUE, mobs wearing armor with this Enchantment can knockback players. + "Mobs Knockback Players" = false + + [Enchantments."Air Affinity"] + #If TRUE, the Air Affinity Enchantment is available for Helmets. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = false + + [Enchantments.Insight] + #If TRUE, the Insight Enchantment is available for Helmets. + Enable = false + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = false + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 3 + #Adjust this to change the max experience awarded per level of the Enchantment. + #Range: 1 ~ 1000 + "Experience Amount" = 4 + + [Enchantments.Gourmand] + #If TRUE, the Gourmand Enchantment is available for Helmets. + Enable = false + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = false + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 2 + + [Enchantments.Reach] + #If TRUE, the Reach Enchantment is available for Chestplates. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 3 + + [Enchantments.Vitality] + #If TRUE, the Vitality Enchantment is available for Chestplates and Horse Armor. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 3 + #Adjust this value to set the health granted per level of the Enchantment. (There are 2 health per heart icon.) + #Range: 1 ~ 10 + "Health / Level" = 4 + + [Enchantments."Ender Disruption"] + #If TRUE, the Ender Disruption Enchantment is available for various Weapons. + Enable = false + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 5 + + [Enchantments.Vigilante] + #If TRUE, the Vigilante Enchantment is available for various Weapons. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 5 + + [Enchantments.Outlaw] + #If TRUE, the Outlaw Enchantment is available for various Weapons. + Enable = false + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = false + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 5 + #If TRUE, the Outlaw Enchantment causes Villagers (and Iron Golems) to drop Emeralds when killed. + "Emerald Drops" = true + + [Enchantments.Cavalier] + #If TRUE, the Cavalier Enchantment is available for various Weapons. + Enable = false + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 3 + + [Enchantments."Frost Aspect"] + #If TRUE, the Frost Aspect Enchantment is available for various Weapons. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 2 + + [Enchantments.Instigating] + #If TRUE, the Instigating Enchantment is available for various Weapons. + Enable = false + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + + [Enchantments.Leech] + #If TRUE, the Leech Enchantment is available for various Weapons. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = false + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 4 + + [Enchantments."Magic Edge"] + #If TRUE, the Magic Edge Enchantment is available for various Weapons. + Enable = false + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 3 + + [Enchantments.Vorpal] + #If TRUE, the Vorpal Enchantment is available for various Weapons. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 3 + #Adjust this value to set the base critical hit chance of the Enchantment (in percentage). + #Range: 0 ~ 100 + "Base Critical Chance" = 5 + #Adjust this value to set the additional critical hit chance per level of the Enchantment (in percentage). + #Range: 0 ~ 100 + "Critical Chance / Level" = 5 + #Adjust this value to set the critical hit damage multiplier. + #Range: 0 ~ 1000 + "Critical Damage Multiplier" = 5 + #Adjust this value to set the base head drop chance for the Enchantment (in percentage). + #Range: 0 ~ 100 + "Base Head Drop Chance" = 10 + #Adjust this value to set the head drop chance per level of the Enchantment (in percentage). + #Range: 0 ~ 100 + "Head Drop Chance / Level" = 10 + + [Enchantments.Excavating] + #If TRUE, the Excavating Enchantment is available for various Tools. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + + [Enchantments."Hunter's Bounty"] + #If TRUE, the Hunter's Bounty Enchantment is available for Bows. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 2 + #Adjust this value to set the chance of an additional drop per level of the Enchantment (in percentage). + #Range: 1 ~ 100 + "Effect Chance" = 50 + + [Enchantments."Quick Draw"] + #If TRUE, the Quick Draw Enchantment is available for various Bows. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = false + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 3 + + [Enchantments.Trueshot] + #If TRUE, the Trueshot Enchantment is available for various Bows. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = false + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 2 + + [Enchantments.Volley] + #If TRUE, the Volley Enchantment is available for various Bows. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = false + + [Enchantments."Angler's Bounty"] + #If TRUE, the Angler's Bounty Enchantment is available for Fishing Rods. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 2 + #Adjust this value to set the chance of an additional drop per level of the Enchantment (in percentage). + #Range: 1 ~ 100 + "Effect Chance" = 50 + + [Enchantments.Pilfering] + #If TRUE, the Pilfering Enchantment is available for Fishing Rods. + Enable = false + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = true + #This sets whether or not the Enchantment works on Players. + "Allow Player Stealing" = true + + [Enchantments.Bulwark] + #If TRUE, the Bulwark Enchantment is available for Shields. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = false + + [Enchantments.Phalanx] + #If TRUE, the Phalanx Enchantment is available for Shields. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = false + #This option adjusts the maximum allowable level for the Enchantment. + #Range: 1 ~ 10 + "Max Level" = 2 + + [Enchantments.Soulbound] + #If TRUE, the Soulbound Enchantment is available. + Enable = true + #This sets whether or not the Enchantment is considered a 'treasure' enchantment. + Treasure = false + #This option adjusts the maximum allowable level for the Enchantment. If permanent, this setting is ignored. + #Range: 1 ~ 10 + "Max Level" = 3 + #If TRUE, the Soulbound Enchantment is permanent (and will remove excess levels when triggered). + Permanent = true + + [Enchantments."Curse of Foolishness"] + #If TRUE, the Curse of Foolishness Enchantment is available for Helmets. + Enable = true + + [Enchantments."Curse of Mercy"] + #If TRUE, the Curse of Mercy Enchantment is available for various Weapons. + Enable = true + +[Overrides] + + [Overrides."Fire Aspect"] + #If TRUE, the Fire Aspect Enchantment will now work on Axes. + Enable = true + + [Overrides."Frost Walker"] + #If TRUE, the Frost Walker Enchantment will now work on Horse Armor. + Enable = true + #If TRUE, the Frost Walker Enchantment will also freeze Lava into Glossed Magma. + "Freeze Lava" = true + + [Overrides.Knockback] + #If TRUE, the Knockback Enchantment will now work on Axes. + Enable = true + + [Overrides.Looting] + #If TRUE, the Looting Enchantment will now work on Axes. + Enable = true + + [Overrides.Thorns] + #If TRUE, the Thorns Enchantment will now work on Shields and Horse Armor. + Enable = true + diff --git a/pack/defaultconfigs/foodbenefits-server.toml b/pack/defaultconfigs/foodbenefits-server.toml new file mode 100644 index 0000000..0203e54 --- /dev/null +++ b/pack/defaultconfigs/foodbenefits-server.toml @@ -0,0 +1,5 @@ +#Disable Vanilla Food System - Default = false +disableFoodSystem = true +#Activate mod regeneration system (active only if vanilla food system is disabled) - Default = false +modNaturalRegen = true + diff --git a/pack/index.toml b/pack/index.toml new file mode 100644 index 0000000..1591f14 --- /dev/null +++ b/pack/index.toml @@ -0,0 +1,37171 @@ +hash-format = "sha256" + +[[files]] +file = "config/Elenai-Dodge-2-Client.toml" +hash = "77b0f8773d1d01d8e495a44602faa627cb1db99c56f8d9d71929a73075c6d610" + +[[files]] +file = "config/Elenai-Dodge-2-Common.toml" +hash = "f741e18f2dec8a0291a270b571a073451b08ea7f731c421160d0bdb7cbce9e8e" + +[[files]] +file = "config/Feathers-Client.toml" +hash = "18383b918224dfc5379e2cba08caa1779373a1b381a3aa80d331e52b1d5b7c27" + +[[files]] +file = "config/Feathers-Common.toml" +hash = "63112fede78326cf9c3f7a44999aa9231f87d89f1d809aaddc08767a4a047afd" + +[[files]] +file = "config/blockswap/block_swap.json5" +hash = "e4cf0ae2e8d6314532e4eb3dd4f4ee2274c9f1ceb1798c0c167a210c8e152cc2" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/atomic_reconstructor.json5" +hash = "eb5ebb33760acc227b2195edf57e4c340710e691d86dad869d9c6b4179e58116" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/battery_box.json5" +hash = "104436c8e9e170a4f0c4dd2a992260a5c43b7109c3d29333753fa52e67c3f6d2" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/bio_reactor.json5" +hash = "61fc650e96b967641284f6c6f7edd38e53db96f8fa9bed4fd2580bc7875c4816" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/black_quartz_block.json5" +hash = "819e285fd543a2dbf47eb382cd5e361e87f9e4154323707d1ed5603d682fcfcd" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/black_quartz_brick_block.json5" +hash = "d06335b9c7647978eedb739644a17a1519136bc050806b59f03a878581c99ffd" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/black_quartz_brick_slab.json5" +hash = "e6e8954e7b994513ad251cb18a583ada2ff130825e9558a4825075c2918e7072" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/black_quartz_brick_stair.json5" +hash = "4fc43dc6a1c476518c4e81ff91da144698f0f4c0bdeffa2ea063b5f79b64b966" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/black_quartz_brick_wall.json5" +hash = "2f068178282f769333136e3356db87af615141cdef275cd1bc7272dcad666f3b" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/black_quartz_ore.json5" +hash = "1c0480b1400a24555f4a1290a8ebd6d51fd0c8176a0a3d1eda2fc316d6b158da" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/black_quartz_pillar_block.json5" +hash = "a0e8c7a0d76e2dc8441d4d48b1a2aacf231eeaa3d8ee78e7da0a7b39f7effc2f" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/black_quartz_pillar_slab.json5" +hash = "9fa2e1f9c26eb44a794e2f798f733ac43e0f978bb0e36c32c825826134b1d1d4" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/black_quartz_pillar_stair.json5" +hash = "dce8cd876c76970e9ebb8d86cfc095e7e5db1a9487e3699b07355aa954d34066" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/black_quartz_pillar_wall.json5" +hash = "b75ca57d0e8da79f8463562a548e86556d873f4b3bccefdfb3b11f96059a92c7" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/black_quartz_slab.json5" +hash = "0aec306c3d95e10e5e9e52fc6ac3bd6d67acd28b66c61a031ca4def2e31f7ce1" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/black_quartz_stair.json5" +hash = "3b2727a45bdf7e4b287e1af14d0a56a7d3774ed9cd6c7ad591b85f7d7c0c9fc4" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/black_quartz_wall.json5" +hash = "b6565a2df23fcdb3ab62c7c44e2e4a1bbb907aa8132224aa0f91224ccaea21e2" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/breaker.json5" +hash = "7b095473a47db7f43596a1330615d7edbc12d299779b0c171b0c570a2497b577" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/canola.json5" +hash = "b0bc0d3f570a2e53c7713781a1bc66c973d5764da51c9757216de23f9c16004d" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/canola_oil.json5" +hash = "c96d1a5c15132e70cc274a40cf32005dffbf7629c4a6535199f4e4543dd975e9" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/canola_press.json5" +hash = "71ab46852852cf8c5c675b026af1d6978d582790f0ed63af62797f5e09fa65de" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/chiseled_black_quartz_block.json5" +hash = "589de5dc48a4c48992c279e0d9ce015cdfbad4ca2ac88563046fc61d0dd44b93" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/chiseled_black_quartz_slab.json5" +hash = "901eaf990efd1dba6ae6e74afc59b81dad4a8f5752595bc577679806725bd61f" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/chiseled_black_quartz_stair.json5" +hash = "2190e5d66b48d693a120f313d693ab29d038100997904d893817ccbddc61b68a" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/chiseled_black_quartz_wall.json5" +hash = "698a4727e8c7628c3fd0e3c50fe297b66f0acd282bbce13f55720b0af6af3af0" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/coal_generator.json5" +hash = "9913fb34991a354e794bc669ac086e107d4013f47a7cdc39e66c141543f19fef" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/coffee.json5" +hash = "89c4e54c782ce3ca59c3441ba716b9c172521c787f56fad0246b39a3e31ea4eb" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/coffee_machine.json5" +hash = "a41adaa0be6231640cd5446aab55a9a8e6f1f42399db7de44a6bab6a21a9f9e8" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/crate_small.json5" +hash = "399851c29deb79b7b45c55ab6f852d1d9301551bec4914014a9f8c90c3903221" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/crusher.json5" +hash = "ca3fbe643d6f7730630cba9d0eeb252918a586086efd17a86c125331b7382fdd" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/crusher_double.json5" +hash = "099d99bc95fd159eaba3688df783539bd849b88acf8d766a27e5895121333ff6" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/crystallized_oil.json5" +hash = "dd2fd12f455b57c18d6f7364a93f8157f3593a7c080dd1518ac8d32faf93c963" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/diamatine_crystal_block.json5" +hash = "b0b4d88857195289ae7b357ab76b81cc728b2f496ebc1a9b19b1d308fd3f3137" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/diamatine_crystal_cluster.json5" +hash = "beb598048f2efffc88d90c5725ac3b1449f084686ab72d4083b856fb167321d6" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/display_stand.json5" +hash = "c58841eb6be34ded0214b51b94fed0259764debc5e8c79e95c5fd292138bee80" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/dropper.json5" +hash = "103f20ba8c1468c5daaa4a2a3fae6f48c2c37310a109eb7bc0c836af03db980d" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/emeradic_crystal_block.json5" +hash = "c8c4ec18b0a8ebd638cb56c130ed832ef331ed861f22cb44d6b550883694e404" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/emeradic_crystal_cluster.json5" +hash = "f66841985bc5114b855b4fe4f73c53dc00789569bbe9734ded817e3c918e1c8b" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/empowered_diamatine_crystal_block.json5" +hash = "d7b5a3f45c4515ee868d09a3b87caca8b11cee36c4ec090cee3977e51e1c1521" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/empowered_emeradic_crystal_block.json5" +hash = "d946bcffa9d3afd598b31e077634935a16ff4ebe229ab55aa63266f552bc26c4" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/empowered_enori_crystal_block.json5" +hash = "542294e08045b7cb997f2b60668e275a2595fa048b2890301724f21a6df13f35" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/empowered_oil.json5" +hash = "4d8a87a746dcb2e47e4198032216b317804ac4aa778413b6df882f3004dfb56c" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/empowered_palis_crystal_block.json5" +hash = "e5a343b50d50ccee5b9c0e39d0a10781d9b6aab234f4076ad830bac063aa27c9" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/empowered_restonia_crystal_block.json5" +hash = "b45277eece27c71e64227a26fc02c3c2684c0ab599429b1ef8541380cd8e015b" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/empowered_void_crystal_block.json5" +hash = "c715c82e86d377558ff702b1aa87dab3b9871c9fdd0c417619c013511048f0d0" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/empowerer.json5" +hash = "475d8b13232b6419c69f2b7dd0415ced78d5062eed071c763dd26422cab8f376" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/ender_casing.json5" +hash = "98d8bd202fabb301f6b233fde15d0b8e9d500317d7181d3818c45e45f885896a" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/energizer.json5" +hash = "4590d2eb544aaef04a3bd18d63ba6cb99352c6cd75a5f6e65869dd8f34f5409c" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/enervator.json5" +hash = "0ee5e1660606ac6df233eaed7783655cbc9823edbfcc79345273ba94cfcf9820" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/enori_crystal_block.json5" +hash = "70afb2df95198d6857bb0ead5bf0b6d9f4e8b478bf7862b3f1937456c2c0b8c4" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/enori_crystal_cluster.json5" +hash = "96307851b2bd4ec5dd29fa7c292b2faed19a4ea7bb7f3d12efac8f1c16ae8a93" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/ethetic_green_block.json5" +hash = "aa8df2d7210fb1542de3cc26e9d1eb5c56ab8891d87d6b7a14f46aa5445b8d2e" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/ethetic_green_slab.json5" +hash = "a07f927dfbca35bf5a9d9d33a8cd2c8d51f38bb88fa91b0e17917099135831c5" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/ethetic_green_stairs.json5" +hash = "d6caf5fdde1e47ef110b3f4299d960a32b7a137445e5601257837ca35c196cad" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/ethetic_green_wall.json5" +hash = "a6a1a476f8c55f9b1e6fd24b80cc8fec08ab568d6cf2957f8af7cb663d56e359" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/ethetic_white_block.json5" +hash = "02713b304ccf995b8395b7c6cbb727f4dc60e34294e6c182aebef29aff1bc2fa" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/ethetic_white_slab.json5" +hash = "7d19be001cd8987db839c395f250bf0dd219754855bfb79d4b2d6fed3b9ed4c2" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/ethetic_white_stairs.json5" +hash = "07376b461c5a89a9a2c772c5acfbfb62aab481438f49f6deabf6b731ae841ed9" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/ethetic_white_wall.json5" +hash = "ee3d66b52ca0a918c64622844bc96eb5a57f21def77d6aee036bc24788c5693d" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/farmer.json5" +hash = "397a1747497ffbc0d99cc5fed9f3c08869bcb42d46f8532d6bac8b9b6978fd63" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/feeder.json5" +hash = "7344081ac8805b1e1ae246ab059fd38f2287732be7d52b339872c616686421b2" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/fermenting_barrel.json5" +hash = "dcd55ccbc4e576be7084817297dfda820f80fa2edcbcd3ce6bdf932dc4d83cf7" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/firework_box.json5" +hash = "0217779e7e06cad641a52ac4675ee01af3446bac80299b4771e50bad1620647c" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/flax.json5" +hash = "b519ca3acb8f0b25f74249e775715071318df51c25bccaf7a89b7a6d6e34eebf" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/fluid_collector.json5" +hash = "74643a13f539c0176d1838c61d28c7190d73991b605fcd807fa468d622fcd9f2" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/fluid_placer.json5" +hash = "80a7a060e43c9bcc61db6128c3b642dbaa0ac7ecc457935e20599bd2f3f1b8d4" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/greenhouse_glass.json5" +hash = "aa34802dbdc1654ae4fdcbeb8909e6f38ff36bad43cbddc072cf2bb813413203" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/heat_collector.json5" +hash = "be83e873c8eef17b4b64a9ce93347f11f07b45e0551e0a6d40f15facda1d0ca1" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/hopping_item_interface.json5" +hash = "758b8c463e0fde63faa057dfaec08a5b1f5db7b4b1cd0c77f296057a4d4ea2fc" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/iron_casing.json5" +hash = "96464cda6b1e2b3564b830568bb7080187541305c1e12237e560495360de41f3" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/item_interface.json5" +hash = "697e0560e4c5708ecd657126b74bd5168e43b8ef1b6ecb94e209b5f66bb42e4f" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_black.json5" +hash = "1456ae64751e04dc36311ad6c9aa6085607d0fbe7fbaf5bf201dabccb412f44b" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_blue.json5" +hash = "705bb1e66b91651b1ce370888bedaeb29ed1c749103252c08abec43ddc6ac4d9" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_brown.json5" +hash = "5c3ceb1487584ac3e6f53a54331b865999fa35db3c566b9b22c6d5568224c322" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_controller.json5" +hash = "5d2a49d633e9d1909f59eea0793ec4e50619111a10c7f6d0a959bc8ff40e8ef6" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_cyan.json5" +hash = "9a06d54a9e834854fffe7525c197a1e7d55877ca243eeed512710ff40c106d0c" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_gray.json5" +hash = "210a262e6f1658ae34154b6be18c5fd791f6d2ec59bf5bc7559450311af1b674" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_green.json5" +hash = "4df1154f0a437c7eb10aa5e41e158305acda879d00f47a799805b6a7a1e18d30" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_light_blue.json5" +hash = "3fcfac00a8b25d6811c8082794b2735424b479ed1d7e9c8daf22ce6f92483619" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_light_gray.json5" +hash = "9b26e5132f895f23c9a3bbe4f6102831091b2d1e5f7658036590417547849391" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_lime.json5" +hash = "909a0aa15235e91f139af168b8be30c4164c9b5f7094c1f8f49df0179a14d260" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_magenta.json5" +hash = "3a0fe057e231361cdb4d656138432eb97c78147d0d9aa61f42f7704a390560e5" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_orange.json5" +hash = "45a6ad88e6b691e7493af95e1f5d7e7eef16b8c09b079ecf6d0678ef76b5a5dd" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_pink.json5" +hash = "7b5b7e8f9ec75631c44ff25988e309be0dac817a359a2ec075f0517fac06e690" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_purple.json5" +hash = "352fa0337a7a4c11d4653900b2d8c161931e7d167a285f19111172ea2c4eeb82" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_red.json5" +hash = "44df17c0638be9f3321005be99cfeb06211b9cabaed6db1e3fc9bf851d9f0879" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_white.json5" +hash = "43811dc6f910ec241c19b90dda5acca629ac1abc6cb6bbd67098a484c9c04e89" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lamp_yellow.json5" +hash = "a8b5b258615bac3edc656e998fd8290acb67d6303afd149ae40577a0e8b560e2" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/laser_relay.json5" +hash = "54ba261881a66b2e678a78048ae812fdba49d808bffd565c37286c68775c9760" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/laser_relay_advanced.json5" +hash = "d244da233e5ba730da489b84b4629b753ee2dccbdd81344663aa48c9e0d1b45f" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/laser_relay_extreme.json5" +hash = "0c93a44ac0ca466de9c32a64f611ae2ccd2125f1d6032db7944c03623a7d91b9" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/laser_relay_fluids.json5" +hash = "46294089f04d1f7bd0ab3dc1312747acb4cb5e5f19914c704fefb11e8f987f97" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/laser_relay_item.json5" +hash = "ad247d8894d1a521569044f1d6001b81de7261fc53d91210c706d65a34fb7591" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/laser_relay_item_advanced.json5" +hash = "a754120baf7fa9d7cb9495906870f2d7582f6ef21c366382d2088dc8aac53635" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lava_factory_casing.json5" +hash = "26655b3545bc26cb05b5c42b373ffaa521c2013f80f0d35985d09940762970d1" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/lava_factory_controller.json5" +hash = "6b17fa83449ef35750cfccd282ebc33748baa8ca516efb3c5911d05b55559a4e" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/leaf_generator.json5" +hash = "ee534f4f113838983060f827306c0e1529f327e463d3aeef562cba09c9b9d40c" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/long_range_breaker.json5" +hash = "324e435aadba19417953a0e86576d35174747974687c6c3bf39d68a462b4e817" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/oil_generator.json5" +hash = "8ce10fa2d9acc68ac84bf16753968ec80ba2b95b20f94455a8ccbb19752e11f4" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/palis_crystal_block.json5" +hash = "dfaa01f2ac5b2342836dc6055ff781c8c45d6beb208b487e45bd3e1189988dcc" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/palis_crystal_cluster.json5" +hash = "8b54d73df8bc57ef827c2f29f726011bbc3bbf959a8dfb16ad1a41ba79755e37" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/phantom_booster.json5" +hash = "f40289748a6b9f82842da34f1b5c4ee297eec77fac1bae5a58f2a7874fa876b2" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/phantom_breaker.json5" +hash = "e60726bd34532b843bb12076f34ae92dec67b248cdd25a2aa7c52a5fb02adafd" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/phantom_energyface.json5" +hash = "1b2c876d56ccda825e10273a561c524c5cd7916e23c66538146fa1a5fe7d99f6" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/phantom_itemface.json5" +hash = "d07e4f6288ac57706f32aa6f63ec23d1706b55450b3392aa8f409123c7ce53b2" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/phantom_liquiface.json5" +hash = "c775458c2c26d8e0692151d5b190fc44c96731f3c972ba3056b2a8713d6180ff" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/phantom_placer.json5" +hash = "ee04a6f59e29efe585c1a912dabf3e76619d80e9be777ab1a928214150025ea3" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/phantom_redstoneface.json5" +hash = "e775505e9d414d7a373c1545bced4611ece15bc5e802aeb21494195e3017992c" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/placer.json5" +hash = "f883e75988f3eb4e734d015b5f3aaf8e290df961f4495c812efb3bc2690a548e" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/player_interface.json5" +hash = "16c99d769f9eb19ddcf732d7665384229865dc80eb6bf90251532d931049c8bc" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/powered_furnace.json5" +hash = "3129e50a19c767d8fa1382f044834f779e368679378aace01e9e09efb40a9ad7" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/ranged_collector.json5" +hash = "9d62159bb8bccce0fdc327dbfa964c1dd16c7aad3b9af4d596c6d078d3415966" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/refined_canola_oil.json5" +hash = "1a5ff830e224dbc4f8f68fe89b107d8cd39bb95c2b2915670034f1cc9cb31cbb" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/restonia_crystal_block.json5" +hash = "784a9bee6e2aead2d0fa5cffbb64117477c0009786b97b74bf01edcdf1da42a9" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/restonia_crystal_cluster.json5" +hash = "8bf2ac30b5b6eaceaef39da9d64560526ca9596483f32a72860e74c447bb3bdf" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/rice.json5" +hash = "30fb126e53101bd0547cd0cd9310dcfeb3643e869aa0768ea278975658f9b64d" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/shock_suppressor.json5" +hash = "0244962bc2deb85afdbeef3c9a6278dca4d39e9fad9117b6c50255aacd310982" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/smooth_black_quartz_block.json5" +hash = "6fcdd05e0fa352991fb5255165d823928ff00c1ddff012b33d2968e26ede2e05" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/smooth_black_quartz_slab.json5" +hash = "d553137da094e31cddd9ed597459adf44a82956df3bd0efb6240d4aeedb1088b" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/smooth_black_quartz_stair.json5" +hash = "b2caef4f486a8b3add0f038c03fc466fbdfc6cc910f91f87c0b619157fd23056" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/smooth_black_quartz_wall.json5" +hash = "4a47f3f927d9eb83fc03adf271d0b5aafdd86cd3eb58b7d458ce15dafec62766" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/tiny_torch.json5" +hash = "be132da47d23c832607da5b6910fb84039826a4bd0eadfe32599a0fcf1186286" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/vertical_digger.json5" +hash = "421b0ab5679a8cb5fe91f0b554561314414338576577b9e09eb3089e796ff248" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/void_crystal_block.json5" +hash = "fce3aa9ad59b8624364b1fe56991fcacb64a4ffd80a635645ebda19bd959c179" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/void_crystal_cluster.json5" +hash = "f1eee54288920df1a0d580469ad85aca738beadf90e1c63ad13874df560fc5a9" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/wood_casing.json5" +hash = "925f6657712e20553e85b18f69994d28222d324ab5004c3071a0e5ef9f42d5ea" + +[[files]] +file = "config/blockswap/known_states/actuallyadditions/xp_solidifier.json5" +hash = "bc2f7e28d632b0e7480da4ea5ab5ba291845967c110beeb7f088dd6dc74ce46e" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/andesite_bogie_steps.json5" +hash = "b264ee831864ceec2fa285485357546d07eb5afa31a1a4754535f0adb5e8219e" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/andesite_door_step.json5" +hash = "01f6073880aa61daf00695ba03726c32345769240f448d55f68788e4996fb30c" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/andesite_grab_rails.json5" +hash = "99a6fc2319d00e42646466d13185475ca9fb9269bd3961964f3eba924d8f5b85" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/andesite_pilot.json5" +hash = "5eab85ab33327f218af9a00b0835688184d994f50cc2cca1f3074929a38e3b8d" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/brass_bogie_steps.json5" +hash = "7c25f72e1b959ab4533bc4759474f1e3fa1b233724a62832f1b3186aa9a0e4b1" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/brass_door_step.json5" +hash = "0393293bd3ae2ce288ae7da07557a063df42b99cced9145f01822ab121f88371" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/brass_grab_rails.json5" +hash = "619012f1c68f6cb2f25c4d55b57b27d69bb6f9c4f199f0c5a7bafd1cf9379864" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/brass_pilot.json5" +hash = "270c29a6ccbce59df4ebde1cf39519995649a1d491f58fbaf5f8bd3ce60899a7" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/copper_bogie_steps.json5" +hash = "86c2220d2d57fd699f545034ebb8a67dedf7986eb9a0a94e2f538b47d5f6cd1e" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/copper_door_step.json5" +hash = "7833366906b4a46a48ac2066de237ce8c8db34a1d9abed41d199d52fbe85f0f8" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/copper_grab_rails.json5" +hash = "91d534e689fc8c93e353ab15c53e75d1b0963145f5a6fea394a342ff667a65f2" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/copper_pilot.json5" +hash = "948794a69195e46f2244417162cc66dda506054616e94e779b221f86ba9ea617" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/corrugated_metro_casing.json5" +hash = "fc128fe00c20dac9defd6644111abfd0212de16bdf0604079ed458fe50ddb008" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/corrugated_metro_panel.json5" +hash = "4f778ddc0c905685cf79f7bd75ba08d2583be7c04f713b8d58163dbeda0a1061" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/headlight.json5" +hash = "95fd030227679d4ac971dbe3d2d1346e5ba7d3498ed2935b4e087e1b1d823cf9" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/metal_pilot.json5" +hash = "49a03a660905dfdaeb4b351603087dcfe090c89d7cd2e6be8396990401ce9cda" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/metro_casing.json5" +hash = "2dbb7ece3d393e52ff8d4701217e2aa201d17da5fc1634bc7debca682494ac35" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/metro_panel.json5" +hash = "71bf6cd5408875959391ee0881642517a7049933c0968096b6f600c5e35be11d" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/metro_trapdoor.json5" +hash = "7be734e63da354e016598ee058f33553326ef8b86d320f33389770ea2917f59f" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/metro_window.json5" +hash = "c07e6cdf1fb89d5e401100706343375288f04c4dee9c2de4ce3ba9ae667cdfa2" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/ornate_iron_trapdoor.json5" +hash = "add94c244bb990f97934472d9c5802f71b83789e45b2aa6fe3aa93684897490d" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_andesite_pilot.json5" +hash = "f686e433d9bdd2714b7c515bff3844e14dc63b20b43180271bd146435f94b596" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_asurine_pilot.json5" +hash = "4526ce68fdf55be15807d5f8fd2c0f87be0d2b0bb698658fc88e9bf221882b00" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_calcite_pilot.json5" +hash = "b584c54c0fda463881cc42ed95bf6e2d33031a5787b594ed55c4ecd08749e4b6" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_crimsite_pilot.json5" +hash = "f7af6772f2ae386b4ef11acb4fe8cf59f0f0ac71cade1dc3ca2b282b75210c0c" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_deepslate_pilot.json5" +hash = "41a901718f8acfa82a3f9a207a47f5d16780d4d27de7402d3df804395f21ca26" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_diorite_pilot.json5" +hash = "80709a2769cef6e9fe611eb16a53cf18f5adbd986174af3bc67f7635e078087d" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_dripstone_pilot.json5" +hash = "a87ff369ce9ffa15b1ea77155c5fc546188976b10a6e3e8225cd1c14aa351ed4" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_granite_pilot.json5" +hash = "a1336c300d41826e09390c8dcbe4d501adc99439e545d0b4d02bbce8c9b01928" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_limestone_pilot.json5" +hash = "6f09bedc993e8caf24a040706a6bd47b780232cd3080e7cefba219bc92be20d0" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_ochrum_pilot.json5" +hash = "5c505f7acc6f1d9e246291be0487890825ef518d53dfdf9b6d0071e24b9415f0" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_scorchia_pilot.json5" +hash = "fc55cd45adcf4c2fb45414e1b0a36faff94f9ef52918592f6d1c5330e2142d44" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_scoria_pilot.json5" +hash = "fef0edc77b5a500a12af89f109ea959f5dee115b2d7612ff7e552061211c46d4" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_tuff_pilot.json5" +hash = "cffe7c8ca889873e4ba2f29536a3c7aab44d5e90d8661f6bbeb345777dd93423" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/polished_veridium_pilot.json5" +hash = "e5d6495111a178e881f96b713f3137c16051c17da8af75b8440d773a69317183" + +[[files]] +file = "config/blockswap/known_states/bellsandwhistles/station_platform.json5" +hash = "bc6ec102438a63d6225e130e2cc70db3b1f181d57dec71423ea7ec2d9437fe09" + +[[files]] +file = "config/blockswap/known_states/cofh_core/ender_air.json5" +hash = "a45dcbb87413537d131a6ca8307cb1d0b4a61b1ccd1958fcda160cb1c2dc7f13" + +[[files]] +file = "config/blockswap/known_states/cofh_core/glossed_magma.json5" +hash = "7f1a40e6cdf90c2c108ae86ef5d9b9bfc989e6096cea4852813fd79fefd3996e" + +[[files]] +file = "config/blockswap/known_states/cofh_core/glow_air.json5" +hash = "f5b3831e2229dd50b3ede57c998872365f33e0bdfabdfbb0215cb1d48f8343e3" + +[[files]] +file = "config/blockswap/known_states/cofh_core/lightning_air.json5" +hash = "f0232d5bc23483f814334fb508ff1dfeae0a4cad6917a7e6ecf3ed2f62ea3058" + +[[files]] +file = "config/blockswap/known_states/cofh_core/signal_air.json5" +hash = "d39569b60101b7459c272fa31b1a394a96a1ea9002dd04147a939b32a5f23b39" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/adzuki_ice_cream_bricks.json5" +hash = "ceb46f70fff9eff11afa7a477bb682baa0b82b9effc7432efff337036c611085" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/aloe_ice_cream_bricks.json5" +hash = "3c28af97edb0d3bceac2a3551146186d60980dd65278c38ebeac70ef57c01595" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/apple_ice_cream_block.json5" +hash = "c493e67adad05d5b06f9ccf5d028f1c9f5ced53bb140c4c9c9e4340e3a90a261" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/apple_ice_cream_bricks.json5" +hash = "394d7d27bca3b3a01727ea0b98c7bd7e581069061be6ce023d77db4a20c2cfa3" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/apple_milkshake_cauldron.json5" +hash = "405efd9b72e40c36cbdddf968736743ab05c67aab9bf3cab5c98fe0b837518c5" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/arbutus_berries_basket.json5" +hash = "90f3b075c358914edc4f8c2da9a7c33030678e13c028ee2d43150d833e21575d" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/aurora_ice_cream_block.json5" +hash = "9f2a6066f3b761b10004e5fb197cb0cea18e14a09eb7783ac729fd79b35a8863" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/aurora_ice_cream_bricks.json5" +hash = "98c1d15737e15b43dbaf92b44f02fd4ec2de22743376495737769d1d0f9c8777" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/azure_berry_ice_cream_bricks.json5" +hash = "32c96adc197fcf9a928c0b8565d02b9bfe3db6986ae4022fdd3bd69e762b95e2" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/banana_ice_cream_bricks.json5" +hash = "42bae32583c91d3f410bdba0775c488000abb96ddea72fdde2e9a963ecbd47fb" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/beetroot_ice_cream_bricks.json5" +hash = "5277308cf25489f06e25d9a33c4bdd799660e4c24e799fb81fae608c7ee16935" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/berry_syrup_block.json5" +hash = "d9147ae9972466c6ee54ec1f5545bd46658ed592b7c7b300a69b64e21cfefc84" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/birch_cookie_tile_slab.json5" +hash = "7d821945d5e8b83bb98baf3ecf05322dc019708ed05ba67979508c035ea86dec" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/birch_cookie_tile_stairs.json5" +hash = "aa3789cb4226525fefbdaa72b104be3a76962cb512ec265c905bf36c6d3aabde" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/birch_cookie_tile_wall.json5" +hash = "4a0a6ae07f5fcc8b1217be2daa57dabdfd1f58ef16ebc6297d46a45f9a72e852" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/birch_cookie_tiles.json5" +hash = "e9888774fe1ef2ecd40d22f733a8695c307b13ec9d1ac2dc89801dbccb003540" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/birch_sap_block.json5" +hash = "ab0e70f86376e557f8e6341aefa880bfa030c93ce7dd49782da595daa8f1c0ed" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/black_tea_ice_cream_bricks.json5" +hash = "bc98a1a35b58f923e665aad0eb06319f09c37da4de1af91dc99d7fe5f401a4dc" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/carrot_ice_cream_block.json5" +hash = "9fa5e733a98185ded328d1c1f18b8d354011ad8f57bb85679127274fe060fe7c" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/carrot_ice_cream_bricks.json5" +hash = "9b9bf875c3ff24d34de4f825a90508ea46bed30c8237798e29cd3a848f0520d5" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/carrot_milkshake_cauldron.json5" +hash = "a1fb60fbb0ddb4cdd4d451b62384b145abe188c121ca91dc904a2a621ebc2ba2" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/cherry_ice_cream_block.json5" +hash = "2d2a8c760a12d07255080206e9dad3a3b98b9cf3e9d1765343edc1839c00fcb4" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/cherry_ice_cream_bricks.json5" +hash = "c21821536200215fd1b760c2cb3d5c6f8e1cce1138dbcdd60b5a55f8ef9150b8" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/chiseled_adzuki_ice_cream_block.json5" +hash = "4ed055b2e24acd03938788e7affe408c91e39a4416ea6ae1da8b46c2f891bb9b" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/chiseled_banana_ice_cream_block.json5" +hash = "f50201538f729ceb1160936a1f75cc2521d44d84e8f0193013843f7fd72f0dfc" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/chiseled_chocolate_ice_cream_block.json5" +hash = "e78d8843cf1325beb20a525f9cbbce420d29a7a92f94ded7320678f4ac5216c1" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/chiseled_mint_ice_cream_block.json5" +hash = "5d503a59b18c790dd908059e7c5605ee005c4df7e60cd6a3a19b5540a13f5a49" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/chiseled_strawberry_ice_cream_block.json5" +hash = "53bd4123eb8b6a5ac29b9eb054946e09714a76612a3a243fd31b4eb7833f207c" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/chiseled_vanilla_ice_cream_block.json5" +hash = "f902a7b0041f65b61f9e9d6eadde45a9a50518f8ca61d65eee258b2091adf5b9" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/chocolate_ice_cream_bricks.json5" +hash = "470317be4fcdc56f81ea92228c55f8bdbb07d9bd60707740040fcc9a9e7baa09" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/chorus_fruit_ice_cream_bricks.json5" +hash = "243780e82c172c7c0ec2af2bcbcfeb4f24b9250716d2f569201a349d63e90459" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/coffee_ice_cream_bricks.json5" +hash = "d8ac85090018615bf05ab3f3a5dcdd74fdcd2c24d105de41b0df612c2c2b4d21" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/copper_frozen_dessert_tub.json5" +hash = "ed04ff257468ffb638c33611740cb8d7d767527a1573f407883ed2f381c7b973" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/enchanted_fruit_ice_cream_block.json5" +hash = "cc7cc68630ba869a4b3dbc06538cf4a36a6c736e726b8cd5b996f09ffaa0bd5e" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/enchanted_fruit_ice_cream_bricks.json5" +hash = "0bf1b2b1ccbbfd353e740bc7bcbbe7d87a53073b8fb4a4aede6709f8d0e38578" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/enchanted_fruit_milkshake_cauldron.json5" +hash = "4eea48409c51d042d8b426f030f9596e1525bb72c5738610b51d137d2318d4ef" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/fiddlehead_crate.json5" +hash = "535217463f3b8a2d1f7fda8f51494dbbac4de30a457037eaf648f805ddca27cc" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/flavored_ice_cream_bricks.json5" +hash = "b08c1556188e65172eec614f35e56277d3ce5759c1bdf55aa40e90f06af56d2a" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/frozen_dessert_tub.json5" +hash = "f4bf8d71170be93c23bd9a2d1e6af715015829b9f3b89514329c1ae58cee54fc" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/glacier_ice_cream_block.json5" +hash = "d93b3c5ecef6740b0d7d42e658267539c6faafb93c880700133f2e22dbe09b7a" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/glacier_ice_cream_bricks.json5" +hash = "6bc459eb10dc3ca061b68f1532760049f220186a7c0f2348fbbb3233f71fd106" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/glow_berry_ice_cream_block.json5" +hash = "c0606d4a0c4d0ee7735df4554884304895df8950f88c38e6468303cc91842009" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/glow_berry_ice_cream_bricks.json5" +hash = "3d622a73cf5183e813060d2cef706c2879fcc9cfc91fc62372099e212533c633" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/glow_berry_milkshake_cauldron.json5" +hash = "206ef7d8f5ecf00bf8fa5937898764aeba2a3beabb28a583ec9acc91c0829147" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/glow_petals.json5" +hash = "9aa5f67cb1c2ce32172054b5652a4201809ef138f96e4ab931e1be8ba6223c77" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/glowy_ice_cream_bricks.json5" +hash = "1648b5bc3fa0cde2245d247f4e341bfbe6847535f5d749774ef1ba6bd9d35c35" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/golden_arbutus_berries_basket.json5" +hash = "ecb138db766b1b015a493841f1505c77953853556b873a2be6a24006a300e766" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/green_tea_ice_cream_bricks.json5" +hash = "03c6f4cc2f44706e0fd653c90ccfdc09ca429ae0c60077c8e3922dfa1e8f8a53" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/herbal_cookie_tile_slab.json5" +hash = "46c71178ab9899987fd71abf28e10d8d3c43f19ffd16a1a89eb803d03a425f1d" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/herbal_cookie_tile_stairs.json5" +hash = "1978ed82b8498ae775faaef4941f6c746f94cbe66f1db3f16fe3dfb03a772766" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/herbal_cookie_tile_wall.json5" +hash = "80c5699e0a69bc7a88caeba2da409f4b1e5c9f8b675c650f6e411cd511451fed" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/herbal_cookie_tiles.json5" +hash = "98fb7ddd107b4af2b601d735a6892f35e9774c865e73fab86982258389f04277" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/iron_fiddlehead_crate.json5" +hash = "ef184fdf187fd276e3d0b5ad511b9c2ef10ec1eabe12fa0c11e6423585d462c2" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/jelly_ring_ice_cream_bricks.json5" +hash = "e40b6555a14e9d41e1a95aa6927ce3d4a34c7b181f37bd5d3772da1224b53e5b" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/kabloom_ice_cream_block.json5" +hash = "a860537a52edae39c924ef0737dd41fcb0d61b0875a20b5a57dc28600939df8d" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/kabloom_ice_cream_bricks.json5" +hash = "06a1e68658d1e534bf7c4c881dc073da74f1ff5f8f17cf0815337ffdc44449c3" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/kabloom_milkshake_cauldron.json5" +hash = "76e9c80c430d36c9fc2a2f119c1a2646ee9e71828822af883f35fd738a3649c7" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/lifelight.json5" +hash = "a0dfb3dcf2df2f27c1c5534edc49e79cf2fe47df4765de33d7e232f6133a9f08" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/lime_ice_cream_bricks.json5" +hash = "eda916bf8a825779c2391a1cb4a19da96cf6df18a3558d8249222063f84817c1" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/mashed_potato_block.json5" +hash = "0dc6422033c4b5db05ec0115e3e358de61738b172b7be4c94862f8b22258747f" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/matcha_ice_cream_bricks.json5" +hash = "051edff7f574c14137d20b19adb0e4a6113d24ba24d6cd6c68e1e38fdfe9f7df" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/midnight_ice_cream_bricks.json5" +hash = "46540effc0fbd6dcb80e2172e6a6eb6e859a85a6c778076494c05791c072cfa8" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/mint_ice_cream_bricks.json5" +hash = "c6d768e52fc54a5b3abc49dae001a92b0524ac84518a1c200e99c2b1d0a8c4d6" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/netherite_frozen_dessert_tub.json5" +hash = "35c979f2f14e2609011bebd9c0e4134b0a06ed6d51d553b69fdac61c5f3e2a3e" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/passion_fruit_ice_cream_bricks.json5" +hash = "5cf035894b12ed90cc8111f5a558d24d43720dfbeea9dc6c8b2e65c9fb5f1179" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/paw_cookie_tile_slab.json5" +hash = "8f2187d6ccef9c3a3b7569b1db1cd0c96f9e817e2ab31160ddb229b1d4a298a9" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/paw_cookie_tile_stairs.json5" +hash = "bd363cf24def25000c6e86d60cbf4b156504ad4048c86cea938bee23363628da" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/paw_cookie_tile_wall.json5" +hash = "e1aacfb2ed272629ee373119a459125417dac7a2521d9e5c2681b3a7b57b5233" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/paw_cookie_tiles.json5" +hash = "47922b406eb11ba9a2a86cecedc9144eca1a3cb86fe06886a19972ad05913d2d" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/phytochemical_ice_cream_block.json5" +hash = "4e4c021770819b74d4dcbe8e0b695ebe5cfe97fd513a39a418c552b699ac5f29" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/phytochemical_ice_cream_bricks.json5" +hash = "d83547471b0e083f0cac3febdd7b2af6d53ecc1b84f59ce05f02c318e0bb8a7e" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/placeholder.json5" +hash = "77c7da815458bd38128adfeaf3e3bd4985e9d9b3d96c52c8be34bcac6eb1bcd0" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/pomegranate_ice_cream_bricks.json5" +hash = "e0e19eeb922c0259b5ab3f2c32bbce328d992ab3d23daab22528678e9d3098be" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/potted_fiddlehead_greens.json5" +hash = "9aea366f6264f6dcf828e352061a9b7e5ee29581ca4e73d3364adc3294aa6d1b" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/potted_wildberry_bush.json5" +hash = "1d308064b87310f4128faba57a7f1b7c49e7cfcc522e6616bf930dca71d99c7b" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/pumpkin_ice_cream_bricks.json5" +hash = "4893f767c421b4ae538bfd0de8720cbb4d3350c972754f32d254c2e728e958a7" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/salmonberry_ice_cream_bricks.json5" +hash = "f1027d2893323826ee5c532aa1d4ccade502ac0253951224e4af19461766eecd" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/sappy_birch_log.json5" +hash = "5402d88f0dc534728177f5b286634644a2cce4be1c976af17c261e5cbbaaad86" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/source_berry_ice_cream_block.json5" +hash = "77fbbeb2df9977c9cb31334f796da8c9fbc991655445c87b5c62d11be18e5bab" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/source_berry_ice_cream_bricks.json5" +hash = "7d7bdd41682b9d6bb0478d688f73b3ca0e034bc3df7b2d85c194a0c32acc7189" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/source_berry_milkshake_cauldron.json5" +hash = "e000be2165adf9100d68d5dfe64d9e85e89a6ac2c5d8bdeb36f752fd08178361" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/starcloud_ice_cream_bricks.json5" +hash = "c62bd0a79eb19a01e93c0e679c59ca2cef11a38235e8b12a7fb295807378c6c1" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/steeleaf_nectar_block.json5" +hash = "25e22c67f12311024c3c8f419ab5bbbd14a5cbc05f7c53708ac0f36b0cac2002" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/strawberry_ice_cream_bricks.json5" +hash = "7ffa0ee5bce8bf66674da77bbcd3010f8fa51111f181ee0fe5494974b98c2f5c" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/sweet_berry_ice_cream_bricks.json5" +hash = "dc5bd44281aa79ad0c558ddebdc2ddb985ae7f7eeaec4c582f49f1abbc122e8a" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/torchberry_ice_cream_block.json5" +hash = "6f75fa39b51a8aa0926132026a495647c61a7a653054f17d9d8475dc2acef39a" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/torchberry_ice_cream_bricks.json5" +hash = "8f46e02b98582c0e540f225147dfa29f5166a02063b98ba3022004ccaf245af6" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/tuber_crate.json5" +hash = "d53ca0597487cf1eebc1d88ac080198abca1632c838adddc8f03269b0cf81028" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/vanilla_ice_cream_bricks.json5" +hash = "eb496841ef485966bf3a8f0d6a7b951b4b516dd0829397c0acff45d5edbfe7e1" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/warzipan_ice_cream_bricks.json5" +hash = "49f2d0b62453e414edfc3eae93e5890f43e59f7a56be3b130ff764400803e915" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/water_pie_block.json5" +hash = "3d6c1c64ce8d36a7805e0a5c30e39b7c5dc6ff5349971945357774a818f482d8" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/wheatgrass_bale.json5" +hash = "a6e19a082cd442fd7d16a2fe8e671e9c1d564ab14dd7aedc97f2600618bd6d10" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/wildberries_basket.json5" +hash = "d9254569fb1e92c5a31419b1ff4f75539486a4bd144dc9076a6e0cf5e608fb09" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/yellow_tea_ice_cream_bricks.json5" +hash = "6b817f20bbf906849b6591a5316c74a4755ffe34384c11932ddedd5d0a2dbea8" + +[[files]] +file = "config/blockswap/known_states/cosmopolitan/yucca_ice_cream_bricks.json5" +hash = "af5243f5907869f8674419cbcc3c1e9680d8368903fdbbd83b7f8f55f5979e28" + +[[files]] +file = "config/blockswap/known_states/create/acacia_window.json5" +hash = "a433e119635237c17fae3b5f478237cd45a198f5a88616764ce2280a479ef3f6" + +[[files]] +file = "config/blockswap/known_states/create/acacia_window_pane.json5" +hash = "3aeeedb5bcdf49de93141d19e534e73480c392029a26a9cc6ad35c22741d1308" + +[[files]] +file = "config/blockswap/known_states/create/adjustable_chain_gearshift.json5" +hash = "4f64773bbe03b1cd63843a58692eeafe8f0fc38f52e1fac830080b9d2badc0a8" + +[[files]] +file = "config/blockswap/known_states/create/analog_lever.json5" +hash = "1289bb591662256bae059a91e7ebf0f2dd5f93b4c8cc5359c70cbbbbc4ce9936" + +[[files]] +file = "config/blockswap/known_states/create/andesite_alloy_block.json5" +hash = "a77314eb961c2565f186909731e8df4032cb28c10be986662eac7f148e1ff102" + +[[files]] +file = "config/blockswap/known_states/create/andesite_bars.json5" +hash = "b103c83e5d34286c3b84401543a6dd77677367ecf6abe50a366193a989ed38bc" + +[[files]] +file = "config/blockswap/known_states/create/andesite_belt_funnel.json5" +hash = "fb748793dbfd3a5010cae27fbb2d662f8e5d9b4b83d568d8938b9ff059d634e6" + +[[files]] +file = "config/blockswap/known_states/create/andesite_casing.json5" +hash = "0e6edf62470848aa4ce6eeeeff35140a3fa1b0dca64507b2b873ce7be397354b" + +[[files]] +file = "config/blockswap/known_states/create/andesite_door.json5" +hash = "c23357be94a0ad75e5bcf7e1013096e03f709129e721bfca23e6e1eb5f08eee8" + +[[files]] +file = "config/blockswap/known_states/create/andesite_encased_cogwheel.json5" +hash = "e58b3b2db3e2575c30cfbf2a1a026d9598eca2592518f5869723ff1ae957be04" + +[[files]] +file = "config/blockswap/known_states/create/andesite_encased_large_cogwheel.json5" +hash = "33f4c3562056de10affb72f11523ccdd4693c7adce87aadc6f822ca65cd3df59" + +[[files]] +file = "config/blockswap/known_states/create/andesite_encased_shaft.json5" +hash = "218a0823aaebd54eff90e95ad6676a82b9b0f09dc2238a8f91cfa7de3559e694" + +[[files]] +file = "config/blockswap/known_states/create/andesite_funnel.json5" +hash = "8a4bd7aaf92aacdcd4775bd2cc515b3c41b5c15968e1023fd3cdda3aa9e70a7f" + +[[files]] +file = "config/blockswap/known_states/create/andesite_ladder.json5" +hash = "9e61d6bb74b2ea4a9b69faa559a44167ce37dd5f4c3e1e3091553f1882457dd3" + +[[files]] +file = "config/blockswap/known_states/create/andesite_pillar.json5" +hash = "b2752cad6101c7ead5b3f50449471f111aef2cc110ab792091ea3564832ee4bd" + +[[files]] +file = "config/blockswap/known_states/create/andesite_scaffolding.json5" +hash = "a1b6caed9205ab4f697f6e84ac14d0b382fa8fdcde67044ccb8472faff4ae355" + +[[files]] +file = "config/blockswap/known_states/create/andesite_table_cloth.json5" +hash = "349239fc04955f28f7cee44df1f036165c0a4ad55d25c66889b93e80cc0535ab" + +[[files]] +file = "config/blockswap/known_states/create/andesite_tunnel.json5" +hash = "a459ee21831967186e3a75a5ff16497bdc1c019bc4d6795c682cfabaa1353599" + +[[files]] +file = "config/blockswap/known_states/create/asurine.json5" +hash = "a3cd9ab4aa91635d35111fa13863005caa42e6f0190fca9dbb53b7b77e355004" + +[[files]] +file = "config/blockswap/known_states/create/asurine_pillar.json5" +hash = "eeb30fb20d2bd186ecdd4e57aee19e8b8a9b7ddb282924f9a01028d7062459a1" + +[[files]] +file = "config/blockswap/known_states/create/bamboo_window.json5" +hash = "3f7d2206ac92bf5e5f5d930ccd823a4a04963a2998516d76363d13581c4d7c11" + +[[files]] +file = "config/blockswap/known_states/create/bamboo_window_pane.json5" +hash = "7c815dc1d81320021d28d6ef0864d8d3fc7c160a434f5b13e4fe80ae1c0ffd64" + +[[files]] +file = "config/blockswap/known_states/create/basin.json5" +hash = "f279c8cf344a097737060f1dfff58c91c0b86d93f4c74708f650b0cf36b8675e" + +[[files]] +file = "config/blockswap/known_states/create/belt.json5" +hash = "b693ec1c97f99bd274ff81eecec44d36b5641071d603afcd1fe0a0e761346119" + +[[files]] +file = "config/blockswap/known_states/create/birch_window.json5" +hash = "85b91856d9764879c7c034b1c53d22ca66639c2993cca3d2e4038e1d89644da3" + +[[files]] +file = "config/blockswap/known_states/create/birch_window_pane.json5" +hash = "543b93194dab9aae3ae5d4cd86c7c0ce1ea8451c8e3e8fd1bd42a0d32df8f560" + +[[files]] +file = "config/blockswap/known_states/create/black_nixie_tube.json5" +hash = "3268e17893ac94a203d0e0eca7f7af549dc3f63ba21df53bdaab619a9608b2bc" + +[[files]] +file = "config/blockswap/known_states/create/black_postbox.json5" +hash = "c0c11aaaeda900166f1e99cb37c155e0b5203592982cfe60471c54392488a22a" + +[[files]] +file = "config/blockswap/known_states/create/black_sail.json5" +hash = "64d9a1ce4331f07715f90b5035f7f48d8892ae0fb3f7141814c980574f8cfc6d" + +[[files]] +file = "config/blockswap/known_states/create/black_seat.json5" +hash = "1705112d1f1c96008eb446c5d9f18a18dc64c5f283f23e1fe4f2a643c6f33b0c" + +[[files]] +file = "config/blockswap/known_states/create/black_table_cloth.json5" +hash = "82bd7186b7a8a3b8806b000784c46e194f95e6fee483bc6110f4f4a32c1f2c27" + +[[files]] +file = "config/blockswap/known_states/create/black_toolbox.json5" +hash = "32377802e3dc7c36966a434b4b7854d860f436b3fcdc35f6bd515ecdf51471ae" + +[[files]] +file = "config/blockswap/known_states/create/black_valve_handle.json5" +hash = "5d81c88a3d4ea3a2bc8c4705ddc10118d9919966787ac82a1ed20b743b92cf45" + +[[files]] +file = "config/blockswap/known_states/create/blaze_burner.json5" +hash = "e5a05953cafb44e80e97e23b571d0de403d458861c37cf1c4596e17b6acbf24f" + +[[files]] +file = "config/blockswap/known_states/create/blue_nixie_tube.json5" +hash = "de501797d733d9fde07d515c0b6593d86060835747d0c448ce7d4054334f2c25" + +[[files]] +file = "config/blockswap/known_states/create/blue_postbox.json5" +hash = "ace6f5f9a2959dab022847a2126f65aab7a64743b4904d1d9e60930868c13b9a" + +[[files]] +file = "config/blockswap/known_states/create/blue_sail.json5" +hash = "debe3ea352e41c9c04db5d7db123e784a1371b2b02d3dbb17f6f4ddb71882653" + +[[files]] +file = "config/blockswap/known_states/create/blue_seat.json5" +hash = "6c7c028f068f130923edbf7be7854b4e387b3c9789826b4bbbd4b2dd5119038f" + +[[files]] +file = "config/blockswap/known_states/create/blue_table_cloth.json5" +hash = "860c4af6fce46f8ae6a76c2a82598eb16775a7bcd3cb4ef4405c8da77a946516" + +[[files]] +file = "config/blockswap/known_states/create/blue_toolbox.json5" +hash = "66fbe998d8e38bf50db060a0c7394318e8b973244b4bdb5566cf376c5d768f9d" + +[[files]] +file = "config/blockswap/known_states/create/blue_valve_handle.json5" +hash = "5dbfe42eb6651bc7d98bdb7d3f4e685e40bf20470657c83bbbc0fd67788c9af8" + +[[files]] +file = "config/blockswap/known_states/create/bound_cardboard_block.json5" +hash = "254333296488c4a9177a3024dc35ba8246cb0d3a019ee58274d687ee05505290" + +[[files]] +file = "config/blockswap/known_states/create/brass_bars.json5" +hash = "c79b1d9dcef576bbadeb103c0bcee8525d65111bb87a399e8b11fd6b85dd1e22" + +[[files]] +file = "config/blockswap/known_states/create/brass_belt_funnel.json5" +hash = "4e8c0e67d76e7850b24fad5faa6653810b6e674581bd1e654b46c862ca1f6652" + +[[files]] +file = "config/blockswap/known_states/create/brass_block.json5" +hash = "95df34589d8ea72acaa81942bb890ced9ce60da74b920418e6cd6619f09586b4" + +[[files]] +file = "config/blockswap/known_states/create/brass_casing.json5" +hash = "fb1d27e9f084ac4ff2428eb50086117b878a87629690f77b89b556562c55fc1f" + +[[files]] +file = "config/blockswap/known_states/create/brass_door.json5" +hash = "0000097595652faf7badfb8acc25fa13d0743de711624fe2f8dea1449bac2417" + +[[files]] +file = "config/blockswap/known_states/create/brass_encased_cogwheel.json5" +hash = "c3c4408f0b767fdc700356609e107c178e6f9072a87134b27493fb7cdfe33361" + +[[files]] +file = "config/blockswap/known_states/create/brass_encased_large_cogwheel.json5" +hash = "da83b6d41ab1fa12f97aef2fd262fcbdd5e7efdbd2b401706ead84a2961f253a" + +[[files]] +file = "config/blockswap/known_states/create/brass_encased_shaft.json5" +hash = "a7ce9dd80c0fdd949ef332f7425c6b73cd7394c0efe636e1bbd014f4275ec8d3" + +[[files]] +file = "config/blockswap/known_states/create/brass_funnel.json5" +hash = "3ceb85f12f63da55ddff5abb8b4731728abc8c16dc1d7b455528dc85dea9a1a9" + +[[files]] +file = "config/blockswap/known_states/create/brass_ladder.json5" +hash = "89e7f929a5cb41eff453ce2a8fd393e453ff93bc1469f1083f20a54262043f7b" + +[[files]] +file = "config/blockswap/known_states/create/brass_scaffolding.json5" +hash = "2aaec5afa6a4babe2c65be73bbce3d49ed94291fa1bb78e8630836856d1a9d86" + +[[files]] +file = "config/blockswap/known_states/create/brass_table_cloth.json5" +hash = "00c7aa63b33529b91066b67a53713c42948db942c364f3494a957281515d349a" + +[[files]] +file = "config/blockswap/known_states/create/brass_tunnel.json5" +hash = "5ddcc412bc8118b36f349951d096e94c330162fcf9094ffeb91a7572704c97d4" + +[[files]] +file = "config/blockswap/known_states/create/brown_nixie_tube.json5" +hash = "7a8bb40182db86ff16ed373a44ba278bd191c05a943f7d6a19f74a793cda8e8c" + +[[files]] +file = "config/blockswap/known_states/create/brown_postbox.json5" +hash = "01bbf303eb7e5294e80e47408ac7f9752467fd61e0131273dc814cbcbeff0360" + +[[files]] +file = "config/blockswap/known_states/create/brown_sail.json5" +hash = "e2b893ddf41fc74d808d97a7eb12108a57d13a2dab37fe52e49354beeda32a60" + +[[files]] +file = "config/blockswap/known_states/create/brown_seat.json5" +hash = "4fe762ee5b13e33575e2a9d6c861adf42a6e68571c60d2f1107dbde8ca799d18" + +[[files]] +file = "config/blockswap/known_states/create/brown_table_cloth.json5" +hash = "fce976a56fcb14bffa59cb653e3236650bdbeb3d5f7b4c2ef74640ecf2da4b27" + +[[files]] +file = "config/blockswap/known_states/create/brown_toolbox.json5" +hash = "4a000191bca8a9882bbaafeb78ac6bb279126e9b8954326e64ba8315f80e70ec" + +[[files]] +file = "config/blockswap/known_states/create/brown_valve_handle.json5" +hash = "4ffe4f5a6463f32af04ef011d0f1fe3463f3cc7f4b13554e2a5017300f5217dc" + +[[files]] +file = "config/blockswap/known_states/create/calcite_pillar.json5" +hash = "7874e8fbe6cb34938f099fd0c303b3ce05f675f3a51c2d27204199466cc17351" + +[[files]] +file = "config/blockswap/known_states/create/cardboard_block.json5" +hash = "723455cb1bbead71c71b23c87cf18d1908f0ebfc288d2ec81b50112c6ac3f56c" + +[[files]] +file = "config/blockswap/known_states/create/cart_assembler.json5" +hash = "60c25a5640efb3648f53c19bcaa04350294a05543b8ca405db24de247a3c17a7" + +[[files]] +file = "config/blockswap/known_states/create/chain_conveyor.json5" +hash = "60614d26df6743f52c996533c80bdc248f45db1b2ab8a2cadc76fef41894a25c" + +[[files]] +file = "config/blockswap/known_states/create/cherry_window.json5" +hash = "6631c4f18ecb759a36e4248462803d08b9447b8dd7370d0791f9f270d88b0549" + +[[files]] +file = "config/blockswap/known_states/create/cherry_window_pane.json5" +hash = "ed0d6a76e9f6b5f73bbe5360ee81767be4d3556a22224c7fbdd12090fdddd35b" + +[[files]] +file = "config/blockswap/known_states/create/chocolate.json5" +hash = "b9d65fe271bdbfa7fc89573454be9200217960e8b44cb4b4146ec917b11e7b56" + +[[files]] +file = "config/blockswap/known_states/create/chute.json5" +hash = "62e081adda280173c263a01e22fe99e7bf27d8cd52bb686382f4a96d761e4d39" + +[[files]] +file = "config/blockswap/known_states/create/clipboard.json5" +hash = "3509b4332bbc7055ae4dbaa206722c44cfce85aa030f108fafddf2388c74ac56" + +[[files]] +file = "config/blockswap/known_states/create/clockwork_bearing.json5" +hash = "300f7a6f38bf0702372c5f875345434156059015a3d816d0e298a9d3d4e5230f" + +[[files]] +file = "config/blockswap/known_states/create/clutch.json5" +hash = "8541c4ab2e1688779eb46b57391d47ad6b954667eda69ae8e7a31e75ce199370" + +[[files]] +file = "config/blockswap/known_states/create/cogwheel.json5" +hash = "59b90f1a995fd8ccd8b58d09fe2cb32b6373bc84da88b966f4431a81c9e825c6" + +[[files]] +file = "config/blockswap/known_states/create/content_observer.json5" +hash = "e1d243be5506a6688239ba56e57945d8c3b9bbe49ddcdf30afbdf810d26a6297" + +[[files]] +file = "config/blockswap/known_states/create/contraption_controls.json5" +hash = "4023025c44e2cafa8f2086456a59165addda76d16eb01d4b47d81a69882f780d" + +[[files]] +file = "config/blockswap/known_states/create/controller_rail.json5" +hash = "59c8a51b40d4c790b55853891108b74060ac9b2c9ecae4d6896cd06a9665926a" + +[[files]] +file = "config/blockswap/known_states/create/controls.json5" +hash = "561e28672c0252cd2871617e814b7f7bde6b037cc31c79236edbfe868d678d3f" + +[[files]] +file = "config/blockswap/known_states/create/copper_backtank.json5" +hash = "04d97179daee75a894b21ae6579df8609bf0ded432703279348f6aff6e3a0cfb" + +[[files]] +file = "config/blockswap/known_states/create/copper_bars.json5" +hash = "67e98c6d46a772558a8fdce19acf51e49e9064f0a5d5e58593fc00775ac47cf2" + +[[files]] +file = "config/blockswap/known_states/create/copper_casing.json5" +hash = "22be06130fd993591570dc3008a8e6d2d38e81ee90d0bb6201cff4ff42c0fd49" + +[[files]] +file = "config/blockswap/known_states/create/copper_door.json5" +hash = "682c4d8e03c6fce6fc33d61cefa09ecf6835d8ee9006bb33f4e4f244fc21e92c" + +[[files]] +file = "config/blockswap/known_states/create/copper_ladder.json5" +hash = "a4755f4e4fed35ab352f1dd35579f661a11ade0e8a7449335962b579bc5f62ec" + +[[files]] +file = "config/blockswap/known_states/create/copper_scaffolding.json5" +hash = "4127e2b433ddacb69c430647168377b3ddbf9b6f39292bc7c6a0a278b8c0ea04" + +[[files]] +file = "config/blockswap/known_states/create/copper_shingle_slab.json5" +hash = "ad11b26cffa6681e75bfba6d072f8d926f9413c6f1f338cf8883aaaefe2e6c47" + +[[files]] +file = "config/blockswap/known_states/create/copper_shingle_stairs.json5" +hash = "48b0e0bd4db2156658347d4b041a0fc7fc679ccdaea38ded7566cc058ff9da34" + +[[files]] +file = "config/blockswap/known_states/create/copper_shingles.json5" +hash = "b8b0e441397e250b37f34800d974d666557d5aec6fe19dbc0d7642069cd64183" + +[[files]] +file = "config/blockswap/known_states/create/copper_table_cloth.json5" +hash = "e30b4a3eff5af817996d2d843a2def5a921782d89cfcb42f8a7ef6ead6e3c67e" + +[[files]] +file = "config/blockswap/known_states/create/copper_tile_slab.json5" +hash = "c0d0f6844bba6e26ffda73b920a5e1dc0adc82ca61b1431dbfdc454ac51621e4" + +[[files]] +file = "config/blockswap/known_states/create/copper_tile_stairs.json5" +hash = "f8301a32650b06b6703b2d5d9ca072da3d009fc3bcf31de0f387a5e7c88efd1c" + +[[files]] +file = "config/blockswap/known_states/create/copper_tiles.json5" +hash = "8a9a0a0fee124e6138bacc355d238b3f4ba40408babff9aec01041e03ad1c2eb" + +[[files]] +file = "config/blockswap/known_states/create/copper_valve_handle.json5" +hash = "d37c64e3e92b972725eea6b2106233bd7f9ebc22710e62a38de4c63f4f4daa75" + +[[files]] +file = "config/blockswap/known_states/create/copycat_bars.json5" +hash = "2dba51cf72474ca2d60aa74d69e22db3db3fe3fc1411a06b097f20845823cfee" + +[[files]] +file = "config/blockswap/known_states/create/copycat_base.json5" +hash = "fcb7df72aa6ffe4fb0d193e3280304d89ef6072236df9e5949e2db93dcb0ac59" + +[[files]] +file = "config/blockswap/known_states/create/copycat_panel.json5" +hash = "e6e0fa9a59bc2a406d84b1bc09649f333f93d083d24ba3c9a1b5e0b943c00f3e" + +[[files]] +file = "config/blockswap/known_states/create/copycat_step.json5" +hash = "42eb5ee931af2514ce3b4547fb3e9b5f76cbeef36726e14f6bc103329ba1c46f" + +[[files]] +file = "config/blockswap/known_states/create/creative_crate.json5" +hash = "82a63edc80ea203401abbe1ffd9dcff30244c12d677014f195397935e8a9f518" + +[[files]] +file = "config/blockswap/known_states/create/creative_fluid_tank.json5" +hash = "5b940dbc0e7a51814def34f5b48ca2d1a23e6d06ae7830266a4794e843999753" + +[[files]] +file = "config/blockswap/known_states/create/creative_motor.json5" +hash = "3a00f9c7d6adeed7769991df225b8576ebfbe1852d93afdf41a6b845bfa5b6d4" + +[[files]] +file = "config/blockswap/known_states/create/crimsite.json5" +hash = "8bbf0bacc8234a134b952ffd537cfb8ce20417fa6fb59849dfd493e5405cd38b" + +[[files]] +file = "config/blockswap/known_states/create/crimsite_pillar.json5" +hash = "2e18b8016a8f49dcb87a93ed9c895ca513068104b2f468cf90908ce5f63ab64e" + +[[files]] +file = "config/blockswap/known_states/create/crimson_window.json5" +hash = "28769f4ebaf37b7d2ebff00b29669652dc0358b72164490b6c98bbf0fb1969d1" + +[[files]] +file = "config/blockswap/known_states/create/crimson_window_pane.json5" +hash = "66a87031e8082fb927330f25ec6e405443da9807d8ede83d00a0d572c38a9e4b" + +[[files]] +file = "config/blockswap/known_states/create/crushing_wheel.json5" +hash = "3ddc1e6d6222f5220394020b81354d07c741c9cd8fbf8b73df8685787cdf4cda" + +[[files]] +file = "config/blockswap/known_states/create/crushing_wheel_controller.json5" +hash = "671bd5584e9a06fb5a96f91f367f3d56b5455c3458829cc1f5c0e948dcfc6f6b" + +[[files]] +file = "config/blockswap/known_states/create/cuckoo_clock.json5" +hash = "df9aa178dfe8516de6261512dcbb3ac1d2468638e0f9e3ec9dace299b3f7f09d" + +[[files]] +file = "config/blockswap/known_states/create/cut_andesite.json5" +hash = "177e0fa71573b7a3394156e42e52c644fb1eb08300f2571f5f85d03e252fc659" + +[[files]] +file = "config/blockswap/known_states/create/cut_andesite_brick_slab.json5" +hash = "e751be4ab7d2c70dbcad4f6985dee94d02075910a6598093d009ffc51ce0c7a2" + +[[files]] +file = "config/blockswap/known_states/create/cut_andesite_brick_stairs.json5" +hash = "00aa3cff6846f196cb2075e94c975e9107212200e04d16d936e0c18635f0a29b" + +[[files]] +file = "config/blockswap/known_states/create/cut_andesite_brick_wall.json5" +hash = "218a44bdcd55d06edb5ba69ba0ec1567170abaf21f080df9b89239abe3190f64" + +[[files]] +file = "config/blockswap/known_states/create/cut_andesite_bricks.json5" +hash = "be6cd231a36d509ac7bb6ab536cc3f38ba977e9e771820df260bf5cc4674f927" + +[[files]] +file = "config/blockswap/known_states/create/cut_andesite_slab.json5" +hash = "8bf1c4e577a727b043bfbf5bf68eec74d8f2ca7bca55965034b5870ea142e8f0" + +[[files]] +file = "config/blockswap/known_states/create/cut_andesite_stairs.json5" +hash = "0b41fa996046e70f19d82153bad3900f81100c1f4d76f1bcecaef7146d3f2185" + +[[files]] +file = "config/blockswap/known_states/create/cut_andesite_wall.json5" +hash = "d42898a57634334596778ea903567a53de9ba97c60599796462a4998f1495843" + +[[files]] +file = "config/blockswap/known_states/create/cut_asurine.json5" +hash = "52e667d570c2cdc394ea3714149b2d1dfbc964ec0baea9e9d0b1210f8bb75831" + +[[files]] +file = "config/blockswap/known_states/create/cut_asurine_brick_slab.json5" +hash = "2221e37c381f0d6fc96954b0ceee646f2f1b531f58d3456af1fa2a11a06bf527" + +[[files]] +file = "config/blockswap/known_states/create/cut_asurine_brick_stairs.json5" +hash = "35dcd96f182786248df0f27f24e900e398be579b6b84cd64d0c4c700b4c2c197" + +[[files]] +file = "config/blockswap/known_states/create/cut_asurine_brick_wall.json5" +hash = "d516b1b1287fa3e537ca9da549f01ea876af48933764ee6688c7e9ac5ff338b2" + +[[files]] +file = "config/blockswap/known_states/create/cut_asurine_bricks.json5" +hash = "f1d476cc8ab9621c27a050a83577d233860511533d440250536c84045475f362" + +[[files]] +file = "config/blockswap/known_states/create/cut_asurine_slab.json5" +hash = "ee1448b8d868e3f4084151dd8d9cabafc4ee76da05b8e212b4c951c12f858452" + +[[files]] +file = "config/blockswap/known_states/create/cut_asurine_stairs.json5" +hash = "d631bd31b6c56c4e73b9b71e67f5243b530ffdd6616653e7361500c8c990135b" + +[[files]] +file = "config/blockswap/known_states/create/cut_asurine_wall.json5" +hash = "491be8a4d75eb2c18829c57f75d2acb8590c9d3b214c343f4feb45d52d423c4a" + +[[files]] +file = "config/blockswap/known_states/create/cut_calcite.json5" +hash = "623ae04caa85e0cf13d5284f787b6468859f125bd5cdde28e8eb23e1260f27ff" + +[[files]] +file = "config/blockswap/known_states/create/cut_calcite_brick_slab.json5" +hash = "fa7b24797c265c16052009ba5c5502d0bca82c167428b127b8a7474e8bd33590" + +[[files]] +file = "config/blockswap/known_states/create/cut_calcite_brick_stairs.json5" +hash = "9063458e5a2aba300c04d5a38fc1d124051be6741340a40e27e0e5c23a44939b" + +[[files]] +file = "config/blockswap/known_states/create/cut_calcite_brick_wall.json5" +hash = "d450d797a1319bcd39df61265c045c889a0d6fe03f7c2f691a53dca2dbc53ffd" + +[[files]] +file = "config/blockswap/known_states/create/cut_calcite_bricks.json5" +hash = "b8f2c32e2b5ce695085b7cec9fba6d6812d27c28f7db9ccc80114cb86a28324f" + +[[files]] +file = "config/blockswap/known_states/create/cut_calcite_slab.json5" +hash = "fc24c75197f2dd534b57d9b0dfc5bb863338789d1a7a7f6afd2bba7e1a440305" + +[[files]] +file = "config/blockswap/known_states/create/cut_calcite_stairs.json5" +hash = "d69a2cea0a70fad9cfac2c2363b6fc5ee240cd0bcdeea162ae683ffad8236124" + +[[files]] +file = "config/blockswap/known_states/create/cut_calcite_wall.json5" +hash = "31cc41a51b28bb41ba2ac14767a994981dd42ac9a81abe2144059ec7418f51aa" + +[[files]] +file = "config/blockswap/known_states/create/cut_crimsite.json5" +hash = "c7e76b151c8eea73d62aacb94934e472e00f02a7ae902fb4c339a4b87a093c82" + +[[files]] +file = "config/blockswap/known_states/create/cut_crimsite_brick_slab.json5" +hash = "a072c19b31bac37d66aa96d883657609ccc5aff51718e72d5b806345b7a600b7" + +[[files]] +file = "config/blockswap/known_states/create/cut_crimsite_brick_stairs.json5" +hash = "101efa52598a9dd3b0af739d57fbfb3b3281b1815462f8478f9f3c95331e1e9a" + +[[files]] +file = "config/blockswap/known_states/create/cut_crimsite_brick_wall.json5" +hash = "5e16dc1b86506350391762227086ac1fc9984d8c0b2b32a581907e3bb1c6f4ad" + +[[files]] +file = "config/blockswap/known_states/create/cut_crimsite_bricks.json5" +hash = "d49749b330db56b72495fd4475fe13e0a106bed115911899cc1c1fc31746c22b" + +[[files]] +file = "config/blockswap/known_states/create/cut_crimsite_slab.json5" +hash = "3dbcaddc936c3b86d472cfeb88884426914357e83f5bdcc8fe1392873f540164" + +[[files]] +file = "config/blockswap/known_states/create/cut_crimsite_stairs.json5" +hash = "4aa599f9db4b6fb9dc98420e14e1d44e35f90914c18d16779d570922896d54a2" + +[[files]] +file = "config/blockswap/known_states/create/cut_crimsite_wall.json5" +hash = "a65f9523dc9750e94ae50bdde426958b6679a3e9cb8460b3794c80a23dce8531" + +[[files]] +file = "config/blockswap/known_states/create/cut_deepslate.json5" +hash = "5c233235a76acb6a66f3009b8705cb9822e61f6d3a50559546ee699d0fca3f84" + +[[files]] +file = "config/blockswap/known_states/create/cut_deepslate_brick_slab.json5" +hash = "fda57acb6f32860942c6a081cf7e31302891937a86c511ba9eeb68a5d7394481" + +[[files]] +file = "config/blockswap/known_states/create/cut_deepslate_brick_stairs.json5" +hash = "dac2ffacc99a9ffbed34a5dcea589329be36853d5d2296fe0257a3e3cdcd109a" + +[[files]] +file = "config/blockswap/known_states/create/cut_deepslate_brick_wall.json5" +hash = "8bd08c5ce900b7beb54682adf745cf95f8cdc4d520a0a8ea00905b41c69a6ae2" + +[[files]] +file = "config/blockswap/known_states/create/cut_deepslate_bricks.json5" +hash = "2214e286413ce31134a71860074401e9fdc20471f299636f7001ef7f2a391dbe" + +[[files]] +file = "config/blockswap/known_states/create/cut_deepslate_slab.json5" +hash = "9d309e2db98d077c908dec9497b39748609b04396d30f291df58be8600f18077" + +[[files]] +file = "config/blockswap/known_states/create/cut_deepslate_stairs.json5" +hash = "9078660aa01c4d04697b65eef53a233f13afc8428eb4fe41e91394aa97bb9fc4" + +[[files]] +file = "config/blockswap/known_states/create/cut_deepslate_wall.json5" +hash = "8d8ae4590c34a4a18c1072e2908a8807f3906caa4bdd97024e0bd1ae5c7bc847" + +[[files]] +file = "config/blockswap/known_states/create/cut_diorite.json5" +hash = "69d42650620af275d5653a3dbeb90b166fe4989a420c84d98c279c16145aa4f8" + +[[files]] +file = "config/blockswap/known_states/create/cut_diorite_brick_slab.json5" +hash = "940377dfc562eba34324e06014049cd47800f29fe0d5c21386c2f1c14d832dfa" + +[[files]] +file = "config/blockswap/known_states/create/cut_diorite_brick_stairs.json5" +hash = "f83b9539fc612f0731b835486e8b6f513fee40dcf88cf52dba635c818763bc8a" + +[[files]] +file = "config/blockswap/known_states/create/cut_diorite_brick_wall.json5" +hash = "96b5846ffed53f8bef493e69ec0e78546556558b7306d8ab944e4fbcf184261f" + +[[files]] +file = "config/blockswap/known_states/create/cut_diorite_bricks.json5" +hash = "8cb84c8c5758d50a467f7fd97ef1f5ea77696c9c4ae88e9c65a6359dba035b9f" + +[[files]] +file = "config/blockswap/known_states/create/cut_diorite_slab.json5" +hash = "7745bd040413dbff9f1f5538211c092a248738d65a720566878375b79387fcbd" + +[[files]] +file = "config/blockswap/known_states/create/cut_diorite_stairs.json5" +hash = "872c03d142527bb9affe871165b49e5688aebf0d5e6abc88d82c4f0278ecedc4" + +[[files]] +file = "config/blockswap/known_states/create/cut_diorite_wall.json5" +hash = "614651111d7d191940162c0d20c6130ba52a57a26afc958963a4b51c5da67762" + +[[files]] +file = "config/blockswap/known_states/create/cut_dripstone.json5" +hash = "5ddcb457aec8c696874a27bf8c04181b00ca2c962e531b7080da91ad35dba586" + +[[files]] +file = "config/blockswap/known_states/create/cut_dripstone_brick_slab.json5" +hash = "d7cf28870d4cfaf718e7c9a81e5b4b63bd2ffdd4487f776d04e6b1f0c9c3cb55" + +[[files]] +file = "config/blockswap/known_states/create/cut_dripstone_brick_stairs.json5" +hash = "9095c56f1219e8fb5b1050c48e1cad8d9b7b82f124e4c45e21d2010e6af74ecd" + +[[files]] +file = "config/blockswap/known_states/create/cut_dripstone_brick_wall.json5" +hash = "7789dd1a3cf0acf00a615594eaf97d3d5fc2807f92bc7299feb6bfc5c17db889" + +[[files]] +file = "config/blockswap/known_states/create/cut_dripstone_bricks.json5" +hash = "e693a1c2b80cbd67ff45ceeefe0030f3a43af6f60414219090f4dce66aff6f08" + +[[files]] +file = "config/blockswap/known_states/create/cut_dripstone_slab.json5" +hash = "933e1230b0ec202a23d8a06249f1024d188829d2b8c386f5fc8350155a5bf3f7" + +[[files]] +file = "config/blockswap/known_states/create/cut_dripstone_stairs.json5" +hash = "f06d4ba30889b1fbcef4881eca501542d4fcbf94fe3900fbfddef7dc557029a8" + +[[files]] +file = "config/blockswap/known_states/create/cut_dripstone_wall.json5" +hash = "96fef72589ab60060f2b5cfe0f136cc2272df6c644eb7b5e5a0fa39377f6f3eb" + +[[files]] +file = "config/blockswap/known_states/create/cut_granite.json5" +hash = "631f5b606e4f09b280780e9b24291c7b5e9effedb6fecf7371a694117d2b8d22" + +[[files]] +file = "config/blockswap/known_states/create/cut_granite_brick_slab.json5" +hash = "2816b8641101b45b4996d32e82ae55ed215d91239dd0baac1d2ff214d6a737a8" + +[[files]] +file = "config/blockswap/known_states/create/cut_granite_brick_stairs.json5" +hash = "3f3538efb7011b046a3361f470237f309642829c6e8536195a443a3e484a846d" + +[[files]] +file = "config/blockswap/known_states/create/cut_granite_brick_wall.json5" +hash = "bba4a0c50acaf9bc098a59e5f3694e711d2fb81eb9f0118dc3d7f3669d25b5b9" + +[[files]] +file = "config/blockswap/known_states/create/cut_granite_bricks.json5" +hash = "f4c45600be8b6626acfa70bdc403a2807455a81e49b53aa7fc71530f1b6da3c0" + +[[files]] +file = "config/blockswap/known_states/create/cut_granite_slab.json5" +hash = "209cf79bf2d18d39ea394fae95d530fe14fe6c262dbf989d637c34f7774b2f5f" + +[[files]] +file = "config/blockswap/known_states/create/cut_granite_stairs.json5" +hash = "625b3498c0c579b196e9c26dac75a815e3019842b248b669cc81a7da702b49f8" + +[[files]] +file = "config/blockswap/known_states/create/cut_granite_wall.json5" +hash = "f0c4fd2625fc20994718c8a13be71a7becf0016b18e14ec42329f8b176981a1f" + +[[files]] +file = "config/blockswap/known_states/create/cut_limestone.json5" +hash = "77095357ace13321ccc89b2261d401502d0d48f8d812632a30d256489e7527da" + +[[files]] +file = "config/blockswap/known_states/create/cut_limestone_brick_slab.json5" +hash = "d2fa047c77be1d274cd7a86c8ffa16a79b6e4c8379e58796265facf54125c2d3" + +[[files]] +file = "config/blockswap/known_states/create/cut_limestone_brick_stairs.json5" +hash = "ce26733e9c114586f235a525f0bf1408b5434e0a6207665da8d3ce0e5c2476ba" + +[[files]] +file = "config/blockswap/known_states/create/cut_limestone_brick_wall.json5" +hash = "17b1ac6a17b7b17990ceea729fcabb1485a2904202d3fbec0a88e1fa7475fdf1" + +[[files]] +file = "config/blockswap/known_states/create/cut_limestone_bricks.json5" +hash = "938ed6a40c215a5b68bf4aecebe404e96adfdd34c81dacc6a6342118ef003b06" + +[[files]] +file = "config/blockswap/known_states/create/cut_limestone_slab.json5" +hash = "8e3cbe50c81c1d0ed561cc5333dd351770ac5adc5b3560b4e83e729416699433" + +[[files]] +file = "config/blockswap/known_states/create/cut_limestone_stairs.json5" +hash = "848b48eedfeb48fa2b947a54444445729ea2dab43c3a2f29ee11ff6ad33af2a5" + +[[files]] +file = "config/blockswap/known_states/create/cut_limestone_wall.json5" +hash = "418d1175ab959e99762fe0fe7564966ae67f6f9961d8ac0d86e5947139d4d10b" + +[[files]] +file = "config/blockswap/known_states/create/cut_ochrum.json5" +hash = "e17d639ecbb631fb7ebf14d3b7486bef3b6fad653ff7c68634d7434e68611cb0" + +[[files]] +file = "config/blockswap/known_states/create/cut_ochrum_brick_slab.json5" +hash = "275cf901062238fce0822e08e8c4aefe1eb1b74fef9cee8ea102ef16a5762dfd" + +[[files]] +file = "config/blockswap/known_states/create/cut_ochrum_brick_stairs.json5" +hash = "f19bd40300833bd365ad8e2c52e56b4240d611c85bab077bd674ec8163134977" + +[[files]] +file = "config/blockswap/known_states/create/cut_ochrum_brick_wall.json5" +hash = "60a51d1274d854e3638de3f12837c7e2d023854405e212abc6439643d2b8e43d" + +[[files]] +file = "config/blockswap/known_states/create/cut_ochrum_bricks.json5" +hash = "b1aeb157b510f509210cb8ead81cd1d566dfdd62acbd646a7ca0823ebe7bfe15" + +[[files]] +file = "config/blockswap/known_states/create/cut_ochrum_slab.json5" +hash = "0f4bf62d7a16839cf616b54ba879a2f307fa4233f90b81d31abf42edcfdce8ff" + +[[files]] +file = "config/blockswap/known_states/create/cut_ochrum_stairs.json5" +hash = "3eba16219a83136a3772c7389d7aef1351161840df6f17adf173235d7387ba7c" + +[[files]] +file = "config/blockswap/known_states/create/cut_ochrum_wall.json5" +hash = "b3a21ea5fab069a8488d747328afbc5e76d502f0917cfb75cc143ca6446de1e6" + +[[files]] +file = "config/blockswap/known_states/create/cut_scorchia.json5" +hash = "8aa9f2012c211401597eb09ce3d7753f858ccc5be66fe89284fcb4fca8ce7cf6" + +[[files]] +file = "config/blockswap/known_states/create/cut_scorchia_brick_slab.json5" +hash = "72bfe94b5b3bba23acd46cb935da12a6133121468876a77616873587fa925b2b" + +[[files]] +file = "config/blockswap/known_states/create/cut_scorchia_brick_stairs.json5" +hash = "b9ca769520dcc8ec90e17ad2242c5f6596d31257f2dba142eef96589a0d3ad52" + +[[files]] +file = "config/blockswap/known_states/create/cut_scorchia_brick_wall.json5" +hash = "9e609cd3b6ac93202dda8d7d2cf10e5532c95de74dfc7e94bb630428db6c97a1" + +[[files]] +file = "config/blockswap/known_states/create/cut_scorchia_bricks.json5" +hash = "b8da0c8c24e62da612dfd5dac2abe28ffdc2f3c4a08619298682a2952b110fa4" + +[[files]] +file = "config/blockswap/known_states/create/cut_scorchia_slab.json5" +hash = "c453c75eb07bc3c831a56a9ca4cc3b7f097126fddb305972ff8a0abcfbdf8d8e" + +[[files]] +file = "config/blockswap/known_states/create/cut_scorchia_stairs.json5" +hash = "424b5b5f593e55a2c117c0ee97494af97cce2f00169fd894d126dfbb030cb71c" + +[[files]] +file = "config/blockswap/known_states/create/cut_scorchia_wall.json5" +hash = "07b0fb021b07b31bf4d928eea8bf7627b74e5fcea9c908d51a79fe9a88e8de91" + +[[files]] +file = "config/blockswap/known_states/create/cut_scoria.json5" +hash = "f40c92cf3e7580e74c8a7bd093f30afad6aa858c5604b0a1d892182f51908418" + +[[files]] +file = "config/blockswap/known_states/create/cut_scoria_brick_slab.json5" +hash = "0eb78645e09b73b8797cbec4b8d2249900d9641d914927aa287d778a57b32495" + +[[files]] +file = "config/blockswap/known_states/create/cut_scoria_brick_stairs.json5" +hash = "e2d4135ab677b90775a15daa57c000f07a8345493009cfce82239fbb0a610945" + +[[files]] +file = "config/blockswap/known_states/create/cut_scoria_brick_wall.json5" +hash = "33cabe07947587f0eebf351dd27da69cb8b09594596d5ff07e4d0d1678241ee3" + +[[files]] +file = "config/blockswap/known_states/create/cut_scoria_bricks.json5" +hash = "71fd749313cfb63a876f35e4888e0436594b6dad5617dae3ea30f6c41b1bd8a3" + +[[files]] +file = "config/blockswap/known_states/create/cut_scoria_slab.json5" +hash = "23f6fb35b7b7b2a980a92d7e7793b7c8cbc4da52b3619256718d36cf1ed8dae0" + +[[files]] +file = "config/blockswap/known_states/create/cut_scoria_stairs.json5" +hash = "acf42b90ff0370e5b2ff3a65371e38d4d8b7e823a58690b5e007310af302fa57" + +[[files]] +file = "config/blockswap/known_states/create/cut_scoria_wall.json5" +hash = "59d44ef80dbbcaac5b760f3450473e9ec242843a75e6aa92b047f34af2181088" + +[[files]] +file = "config/blockswap/known_states/create/cut_tuff.json5" +hash = "012dbfefcd64965c5c6e92984430a63191b9b714957490d3ba80296a47c0916a" + +[[files]] +file = "config/blockswap/known_states/create/cut_tuff_brick_slab.json5" +hash = "29952fd17f12b883149b5f9737da7bab1c1f1950fe93381530f3d7876c9c1785" + +[[files]] +file = "config/blockswap/known_states/create/cut_tuff_brick_stairs.json5" +hash = "f1bf3d38070aae686acafa90848bace7abc9977dd801c2967ba4245e399183d5" + +[[files]] +file = "config/blockswap/known_states/create/cut_tuff_brick_wall.json5" +hash = "f5990f1d37f11682b08f7c85e0d3a40c90a1571d8c887a92e628dcf9c82b3578" + +[[files]] +file = "config/blockswap/known_states/create/cut_tuff_bricks.json5" +hash = "f2be5be97e2fc684389b4fc171c8b5d2a872f0b971378d93315810f01420bb14" + +[[files]] +file = "config/blockswap/known_states/create/cut_tuff_slab.json5" +hash = "73dd136df39bf8c2bf8dd2836b3e0e1f9ac7d5e453421de6a315601d6d8b84fc" + +[[files]] +file = "config/blockswap/known_states/create/cut_tuff_stairs.json5" +hash = "6aff383e09955f282204616424654aba9ec4eadaab71b26df90b6e753431e440" + +[[files]] +file = "config/blockswap/known_states/create/cut_tuff_wall.json5" +hash = "461cf8d010efb50badbfeb5381eee8824a64625f26dbc599dcdfc39534067833" + +[[files]] +file = "config/blockswap/known_states/create/cut_veridium.json5" +hash = "3f82caff79ceae1de6dde67b81415ad9617361f234b8c9903074069a3c313e59" + +[[files]] +file = "config/blockswap/known_states/create/cut_veridium_brick_slab.json5" +hash = "1387be7cb1ecbaa7de01096b87fcc7bc809fefb839be43cf33b831459f1f6904" + +[[files]] +file = "config/blockswap/known_states/create/cut_veridium_brick_stairs.json5" +hash = "0e3045f3c2cecbfc0bf72022e00d1837d1b72e8f9ee979f8d231f94dbd95d78b" + +[[files]] +file = "config/blockswap/known_states/create/cut_veridium_brick_wall.json5" +hash = "217003820e43ea22ad1dd79ef6e5b2976e86ea375aadbf477b9395eda7043353" + +[[files]] +file = "config/blockswap/known_states/create/cut_veridium_bricks.json5" +hash = "73a2485821ece3c8fd759ae3132bff06e4f0ef596d0f52eb480906ced4de5ddb" + +[[files]] +file = "config/blockswap/known_states/create/cut_veridium_slab.json5" +hash = "182c185f57c5c19d8597eee6e75b04c6b6083537de9b556009f81062018d49ff" + +[[files]] +file = "config/blockswap/known_states/create/cut_veridium_stairs.json5" +hash = "3731bfd8c090096117c7fc6ccea42028b6d1111070e08c832649352cbbaaac9e" + +[[files]] +file = "config/blockswap/known_states/create/cut_veridium_wall.json5" +hash = "9cd89539f2b5c9e854c3fc8a4fba2a758c5b623f2aaae9b496a6e987a0d3df81" + +[[files]] +file = "config/blockswap/known_states/create/cyan_nixie_tube.json5" +hash = "4f8a0ec8ad44eee5bdd769b8d2291d69efbe6177371d3be7e5f2c1aa6d620328" + +[[files]] +file = "config/blockswap/known_states/create/cyan_postbox.json5" +hash = "853ae56f3f42c2e423b93365e415f073559c2e9714285e4be5bd37c47cddd109" + +[[files]] +file = "config/blockswap/known_states/create/cyan_sail.json5" +hash = "b29ed9307316c9c00c2caf3a22423ec2f261335358cd430f6a40e991dcc7c986" + +[[files]] +file = "config/blockswap/known_states/create/cyan_seat.json5" +hash = "61fd3f78af1065e652fb46a0c907cb49c89b96588cea2791a625f09a9ec2d8ec" + +[[files]] +file = "config/blockswap/known_states/create/cyan_table_cloth.json5" +hash = "8f1c2507237b4739ffde62305e7e48f0bcdad1f3fa43cd50fe17af65baca6b0e" + +[[files]] +file = "config/blockswap/known_states/create/cyan_toolbox.json5" +hash = "6a3926b313ed692eaa645eb3f80b884dca20db844ef26fc3d2686db90c1623ef" + +[[files]] +file = "config/blockswap/known_states/create/cyan_valve_handle.json5" +hash = "60431ee6a60ed2e20eee033edd429810e59025c1819246d8f26985584d1ae4aa" + +[[files]] +file = "config/blockswap/known_states/create/dark_oak_window.json5" +hash = "317e97b492a0e0b9fc1b1c523cea4bce7d385580cd63b4900744d89c28fe2a29" + +[[files]] +file = "config/blockswap/known_states/create/dark_oak_window_pane.json5" +hash = "5589e045e9bc160ef06670cd36a26bafb7caa04188d790c3c7d651f507863bf0" + +[[files]] +file = "config/blockswap/known_states/create/deepslate_pillar.json5" +hash = "3bf08c745663a61fc7818c6dd2a123a1e24c0a9a64699e088cdb9cecb94c2572" + +[[files]] +file = "config/blockswap/known_states/create/deepslate_zinc_ore.json5" +hash = "62b008417cc47c130589f4d53741ca85d6d037cd6562e05214a85b5368479f79" + +[[files]] +file = "config/blockswap/known_states/create/deployer.json5" +hash = "905b00a8c6883f811fbc4ea8a05ef1587859408d2adc8a41a9904cba4d449ada" + +[[files]] +file = "config/blockswap/known_states/create/depot.json5" +hash = "f06f67353e0a5adc02a527fa569012cd279e0da39723662ed19a66d346f27fb4" + +[[files]] +file = "config/blockswap/known_states/create/desk_bell.json5" +hash = "94f309776c331b50a07ac9c764fa0ba2aab71d948c3f0f31f8b524559663af03" + +[[files]] +file = "config/blockswap/known_states/create/diorite_pillar.json5" +hash = "8ed477d98e770b54188e9b81db3e5c246e4411fca3bbec1234f06abfd798f69a" + +[[files]] +file = "config/blockswap/known_states/create/display_board.json5" +hash = "0e525b166b8f3b5fcf944da5e4e062ce217ccfac96c13a1f19eab4d905828b4e" + +[[files]] +file = "config/blockswap/known_states/create/display_link.json5" +hash = "707eb86a496c16027130b7ab514f5af16e72c21bbdfc2ec77b17ad22df77eda1" + +[[files]] +file = "config/blockswap/known_states/create/dripstone_pillar.json5" +hash = "d3603cca79421f0f30ef91d7cb6bddb83438be0919e8bdeda689312c40272109" + +[[files]] +file = "config/blockswap/known_states/create/elevator_contact.json5" +hash = "a89bf3c768c697583a14ce4a2a1b70940c3f01aa7b8aaebd18bb10d9b0fb163f" + +[[files]] +file = "config/blockswap/known_states/create/elevator_pulley.json5" +hash = "c62c6bafedde56c1ddf5c73031ecfb3d406c91affc47c6c2acf8aef2e586c954" + +[[files]] +file = "config/blockswap/known_states/create/encased_chain_drive.json5" +hash = "f010ab1c27c83575f8edff48582fad0758ed762b353785a14447ddf88a1f0c3f" + +[[files]] +file = "config/blockswap/known_states/create/encased_fan.json5" +hash = "bf647dca71b286e242ef1e5d8286ed5f6c2e2f3ef79248c9ebec8069613150d1" + +[[files]] +file = "config/blockswap/known_states/create/encased_fluid_pipe.json5" +hash = "0621bc96a92814a77666edff5496b48d6c7ded7219e39780585754ee8871caab" + +[[files]] +file = "config/blockswap/known_states/create/experience_block.json5" +hash = "302917ad10483986a8bd0b78fb24459eb886fa0cb44616fb1c19d4f08a0c6f28" + +[[files]] +file = "config/blockswap/known_states/create/exposed_copper_shingle_slab.json5" +hash = "af99db75dd9f43c4a894446a5a3db4b40582642b7d02029d966772f73a89592b" + +[[files]] +file = "config/blockswap/known_states/create/exposed_copper_shingle_stairs.json5" +hash = "a4abde8197f73d8041bf141c8caf3b4edca40736dbfeb478f20ebf6351f9b902" + +[[files]] +file = "config/blockswap/known_states/create/exposed_copper_shingles.json5" +hash = "52fb35c2d23001f4312bdf8ea31076f6f19ec8ac297e442a1a94dedf4e49f77a" + +[[files]] +file = "config/blockswap/known_states/create/exposed_copper_tile_slab.json5" +hash = "63c60a5f13bb48e78a9ab16cbd5bce23d2c98aee50d18a30cf93f0a74404fbaa" + +[[files]] +file = "config/blockswap/known_states/create/exposed_copper_tile_stairs.json5" +hash = "c2bc53e4406aae6985c3a59e73604954925b21b9974b365311c2065f5a3d2037" + +[[files]] +file = "config/blockswap/known_states/create/exposed_copper_tiles.json5" +hash = "7a85f17bd6f10b9f4450bf2e614fba1e8ccdf909d6562ff30b86fa5eb0aaf2b3" + +[[files]] +file = "config/blockswap/known_states/create/factory_gauge.json5" +hash = "1520436f918f694a5b4cd83aa868c6e3535a25ff0c47f2f5f030da03bb86e7fa" + +[[files]] +file = "config/blockswap/known_states/create/fake_track.json5" +hash = "4f66dfddc126ad2e93f05e07842a20abcf0cace65e2882c81826cad3dfd36ea4" + +[[files]] +file = "config/blockswap/known_states/create/fluid_pipe.json5" +hash = "60344d73139bd8de4f8cfdd3204368ca4c70b7ee281af68cb7b731062b25d16e" + +[[files]] +file = "config/blockswap/known_states/create/fluid_tank.json5" +hash = "711198307375aa9a2bbfa762eb2523d87ab56c90e5301646f8bef1059ec22542" + +[[files]] +file = "config/blockswap/known_states/create/fluid_valve.json5" +hash = "a6e1477bc418400a51a75c3678140f67c57d5f4fa820467956ea6895a3049217" + +[[files]] +file = "config/blockswap/known_states/create/flywheel.json5" +hash = "308f3476826e789da4d8f01003d92b3ac1ddc711b67b6b95827f936e63e9fe26" + +[[files]] +file = "config/blockswap/known_states/create/framed_glass.json5" +hash = "bbbee6d9e6347a9347a89073f439bed0e4abfb2ab088a03549b63a274fc0df85" + +[[files]] +file = "config/blockswap/known_states/create/framed_glass_door.json5" +hash = "f0e6514ecee78aae680cd5798a67d0e4c0fc55dfd3aa7457ac767e0f8486e98c" + +[[files]] +file = "config/blockswap/known_states/create/framed_glass_pane.json5" +hash = "0746c26c8d7b5e79f68584ede23f907e5b29cc9e62f994f1a4fc4993a0d54e7b" + +[[files]] +file = "config/blockswap/known_states/create/framed_glass_trapdoor.json5" +hash = "a73ca98f408c43ad10dc3e38557e61f6ae38960d5bb268fd3759daa8bee0d995" + +[[files]] +file = "config/blockswap/known_states/create/gantry_carriage.json5" +hash = "0a58c30bd2e3b2f14fc59967610491ae0f06d9f4c8c420ea82a323727f69b746" + +[[files]] +file = "config/blockswap/known_states/create/gantry_shaft.json5" +hash = "7660f6d80a03af5c7e46be6c536ebeea1355c14e68f4af66d1ea68bcb02d4318" + +[[files]] +file = "config/blockswap/known_states/create/gearbox.json5" +hash = "b5bd974b301b89e29ddd58873412d01ea0e9a53f0a48746b507482019512ed0b" + +[[files]] +file = "config/blockswap/known_states/create/gearshift.json5" +hash = "25861e4ffdd0b6048dbae63c00abc53d6ceabd1a9f17b5758d8ff5e4a356bd68" + +[[files]] +file = "config/blockswap/known_states/create/glass_fluid_pipe.json5" +hash = "7f8855837b4f61ef49880d176cb8bca75bda1367815e2f0de98996c1eedef0fb" + +[[files]] +file = "config/blockswap/known_states/create/granite_pillar.json5" +hash = "e232495e41b6324a836036218a8807cfe55d6bb9efecb5550c87b71b51a594b7" + +[[files]] +file = "config/blockswap/known_states/create/gray_nixie_tube.json5" +hash = "0cabc1f0fc84ad60f2ad89dd882e411c6295f7ea2546d46e4e234befb559e4c4" + +[[files]] +file = "config/blockswap/known_states/create/gray_postbox.json5" +hash = "5e9e07bab16d7c9f13df185f2cb2b0376fdba3db0e179daa544b29ab40416a50" + +[[files]] +file = "config/blockswap/known_states/create/gray_sail.json5" +hash = "2336f145b26aac69a624a31233ba4f86ce3cb83264be3b3207a8209a8472117b" + +[[files]] +file = "config/blockswap/known_states/create/gray_seat.json5" +hash = "eced1a0e9de14c9f437b292bc0ccd8fbe8fefb42ae5a7aa993127c70961f21b8" + +[[files]] +file = "config/blockswap/known_states/create/gray_table_cloth.json5" +hash = "d9c1c7df5095c6f9ca56bc5d3e3aa1181b0748f4ecd8013047ae60afc585e4f1" + +[[files]] +file = "config/blockswap/known_states/create/gray_toolbox.json5" +hash = "7ae2ef7292ca3784f8d5c65dc4b54e7a2ebe7e93a2f1e79717458a0bb567634f" + +[[files]] +file = "config/blockswap/known_states/create/gray_valve_handle.json5" +hash = "023e32ba5a648d2e328be7e6138ad73eb894fba9c5f1e00ac7ddce354b738b7c" + +[[files]] +file = "config/blockswap/known_states/create/green_nixie_tube.json5" +hash = "fb87bf49f7c783029a6f37b3f7c4c784dd824e79b3797f2bcadf49e288eb75af" + +[[files]] +file = "config/blockswap/known_states/create/green_postbox.json5" +hash = "dcf0c0e895c516bcecc79537ba129c6e48618f47d21626abbc6c14b25bbc3268" + +[[files]] +file = "config/blockswap/known_states/create/green_sail.json5" +hash = "f8199cbb8ebda1db32020c942c8fd924b2145c4f4ee6a24a50c39e14506bf089" + +[[files]] +file = "config/blockswap/known_states/create/green_seat.json5" +hash = "22140ca4c91b7d0051ddf2401dac6013a8c4e3b8e68d22379e0c78450d403974" + +[[files]] +file = "config/blockswap/known_states/create/green_table_cloth.json5" +hash = "675be778ad2bf2c5a392556fe5756ae3ac63f9684d3138edaed9825fe544bfa4" + +[[files]] +file = "config/blockswap/known_states/create/green_toolbox.json5" +hash = "94506c12a854791bd64eeb302c3428f639e43281a833c6527e39bd64b1624792" + +[[files]] +file = "config/blockswap/known_states/create/green_valve_handle.json5" +hash = "efca51b52feefaaf842307d0eb361bf38d56a5c1f7c16ddd8c3b3daed04777b6" + +[[files]] +file = "config/blockswap/known_states/create/hand_crank.json5" +hash = "4f9365ca03991538c3cc0b450124721ad95a9f528a864d5b497d677d4f4cba94" + +[[files]] +file = "config/blockswap/known_states/create/haunted_bell.json5" +hash = "1bfb4b40d0cc582f25a3fcee736aed52d77e37ab5a9f8e5fbff2544cd24152ff" + +[[files]] +file = "config/blockswap/known_states/create/honey.json5" +hash = "25a2422c0fc3a962cc4ca35058b5e7da50d4525475369490e281c4122bd4b945" + +[[files]] +file = "config/blockswap/known_states/create/horizontal_framed_glass.json5" +hash = "017a11ee33aff54a2a75451bd44bcaab8e8e9a680c2aa0fca17052ef683e165a" + +[[files]] +file = "config/blockswap/known_states/create/horizontal_framed_glass_pane.json5" +hash = "2c3923265dac56430c76e18d44cd7fb080fbbbdd6e30fa8060d9c9007b5a15ef" + +[[files]] +file = "config/blockswap/known_states/create/hose_pulley.json5" +hash = "5a68a0604d70079f7747624c992fa6b5b87de69f3459f4efe08b44644fddc4f2" + +[[files]] +file = "config/blockswap/known_states/create/industrial_iron_block.json5" +hash = "3aa539adbb8365f97acbd7bcd53b3d17a05b02f923734f8f7f002fcd1eda9d89" + +[[files]] +file = "config/blockswap/known_states/create/industrial_iron_window.json5" +hash = "919a8d27eb28b513070bc76776f5f8c36740276b4c7692c61257ec7960e9be64" + +[[files]] +file = "config/blockswap/known_states/create/industrial_iron_window_pane.json5" +hash = "aaf305828178b439a5b7836bf70d6f67fdaa8e2ef8820eb766ae4b255d058fa0" + +[[files]] +file = "config/blockswap/known_states/create/item_drain.json5" +hash = "8d923de164cc894fb13f163a34cfd606778369ec9eb5005731df58db4775567a" + +[[files]] +file = "config/blockswap/known_states/create/item_hatch.json5" +hash = "4b27679bf171e561f76f466c0bb0539797ce8772d444808ee5c630417b8190dd" + +[[files]] +file = "config/blockswap/known_states/create/item_vault.json5" +hash = "89085954453975b65e043a1eb5e2d4db987506fa23e83d8deb8fd27744d36b90" + +[[files]] +file = "config/blockswap/known_states/create/jungle_window.json5" +hash = "aa9efe7dd1090be54615a446f8aca8a3edf5a25d10f1dfc0ba65132ba4989e94" + +[[files]] +file = "config/blockswap/known_states/create/jungle_window_pane.json5" +hash = "1c6681fcf8e8ffd1a7675d30b7844c4be009362af8b7d00d93f3b4cce3cd06d7" + +[[files]] +file = "config/blockswap/known_states/create/large_bogey.json5" +hash = "94ba4fd524264682026afcf7403e5d4b403a21a16375f543e8a648cde42e214b" + +[[files]] +file = "config/blockswap/known_states/create/large_cogwheel.json5" +hash = "fefec1de8d0545a60ca4d6f09e367b9cb45043dffaa356a3dcb25a72060f0e18" + +[[files]] +file = "config/blockswap/known_states/create/large_water_wheel.json5" +hash = "765c68eb7fa097ed795029eb2324c747882d41595b3d90893d321295319e7d7c" + +[[files]] +file = "config/blockswap/known_states/create/layered_andesite.json5" +hash = "ec70fd61cdb46ef587e2c451b0461e91e4acdd295b9938c8fc422c925a3d3dca" + +[[files]] +file = "config/blockswap/known_states/create/layered_asurine.json5" +hash = "304e61f46b0d86611556762396bbac7d0f693b5ba9e4e3b1e0d6490fb1714662" + +[[files]] +file = "config/blockswap/known_states/create/layered_calcite.json5" +hash = "36e2ba41552ec96eed9b79b6a6c4c8b2fa533538789a9241d1886d3529484cc9" + +[[files]] +file = "config/blockswap/known_states/create/layered_crimsite.json5" +hash = "ef3e9c02a1fbfb3af3ad05ea545c7d160dc99311be6ada2c68c774286f565759" + +[[files]] +file = "config/blockswap/known_states/create/layered_deepslate.json5" +hash = "0a9d45fe2336e31c6a75fb12a323bf04d91847dcfad277a1474dc2a0ba8a2d13" + +[[files]] +file = "config/blockswap/known_states/create/layered_diorite.json5" +hash = "c86838a81017e6e698eb84399f76f03e70f206588734b9a415888202ec57fd20" + +[[files]] +file = "config/blockswap/known_states/create/layered_dripstone.json5" +hash = "650869e6be1bed2ac8cb582bedf66bcf7dcff1130bfb3f121a65575b35f7ba33" + +[[files]] +file = "config/blockswap/known_states/create/layered_granite.json5" +hash = "4678fe72555d34d37c480dcbbf7c0aed078e86b7d77f8cb42a0f0c3e0ab59acf" + +[[files]] +file = "config/blockswap/known_states/create/layered_limestone.json5" +hash = "4013301eee2f879e418c40189b5dabdcf9e06682f8643f41558715013390dbdc" + +[[files]] +file = "config/blockswap/known_states/create/layered_ochrum.json5" +hash = "2ca450d6150769ab9a073fbd5adebbfa3df3c0670527ac598944a5915f30add6" + +[[files]] +file = "config/blockswap/known_states/create/layered_scorchia.json5" +hash = "b315410b6b28c5e5a480cc153e9e381d50f2ab8fffa578bcabc6f9bab584d4ff" + +[[files]] +file = "config/blockswap/known_states/create/layered_scoria.json5" +hash = "f35ce7136b06f6df23ecd5d779af9af91dde3def64dfb41ef55c1febc9fa1727" + +[[files]] +file = "config/blockswap/known_states/create/layered_tuff.json5" +hash = "ec2ba2b52ae9d00545df7c84f9f68f083f15042b70069ff4d73141d255a3db09" + +[[files]] +file = "config/blockswap/known_states/create/layered_veridium.json5" +hash = "ced0ec02ef98e13dd2609a22c95a64454c5fe6eec0c4d4596fe298b56ae3fa25" + +[[files]] +file = "config/blockswap/known_states/create/lectern_controller.json5" +hash = "dbe42a19789afdc756d4661f9814f74c56bf675732232264af1a715ff909db69" + +[[files]] +file = "config/blockswap/known_states/create/light_blue_nixie_tube.json5" +hash = "d73fd5a5dbfe53ca88ee0b20511145955f9afff78f42072c7fedd767d07155fd" + +[[files]] +file = "config/blockswap/known_states/create/light_blue_postbox.json5" +hash = "c2c63573d695d4cd957a1788825de6e7d9a355bd6e110f574b0f10eba9aec5cb" + +[[files]] +file = "config/blockswap/known_states/create/light_blue_sail.json5" +hash = "f837f0cdbabe5d2f0e0ecec835feac4ce0bafafdf0f050c58f47da5132798e45" + +[[files]] +file = "config/blockswap/known_states/create/light_blue_seat.json5" +hash = "5269a4336e10fd0cfd10b2fbc2d7131fa51c367bc4e6a9afdfba21db7719869a" + +[[files]] +file = "config/blockswap/known_states/create/light_blue_table_cloth.json5" +hash = "7d06810a2caa31ccf1c18add9d5a47fc748e8cc9aa8d8fd0edcf2dca69189dec" + +[[files]] +file = "config/blockswap/known_states/create/light_blue_toolbox.json5" +hash = "3e0dd438058ec80b08b45d98e0e9a5574e831dd5b3f916672bc26a281afcebc8" + +[[files]] +file = "config/blockswap/known_states/create/light_blue_valve_handle.json5" +hash = "87fe2ce3d618ab1cdcb2fde04cb292c08ca9932ff81e364426baf1a9ef767743" + +[[files]] +file = "config/blockswap/known_states/create/light_gray_nixie_tube.json5" +hash = "323baccf57f0bc9e7ba16d53289c89c9cbea9102572f635cc5487583968beff9" + +[[files]] +file = "config/blockswap/known_states/create/light_gray_postbox.json5" +hash = "1bbeebce25037840a1d260cb6fbb667e2b53c2b226816fa97452d6ea7b5db54f" + +[[files]] +file = "config/blockswap/known_states/create/light_gray_sail.json5" +hash = "2957e3b7775c109b5fff989f2ae00271c4c0571ec6975640caa2518b93f3edb7" + +[[files]] +file = "config/blockswap/known_states/create/light_gray_seat.json5" +hash = "9f0c120d7e10fa5dc3eb6fe48a3e84599e211d837b40c34bf7c182788e78d7f6" + +[[files]] +file = "config/blockswap/known_states/create/light_gray_table_cloth.json5" +hash = "98fd5967f1b8e259b5625215f5e26fb29ff6c8e60dc49800d874434beb75b38d" + +[[files]] +file = "config/blockswap/known_states/create/light_gray_toolbox.json5" +hash = "a2881ce7900d06136735c6f8bcf663736686f7ed5de4e33d3914994296bbef1b" + +[[files]] +file = "config/blockswap/known_states/create/light_gray_valve_handle.json5" +hash = "68e73bfbd52b0c17bd655ae98a10a893c9690e612421b7f20f772a22b24b8459" + +[[files]] +file = "config/blockswap/known_states/create/lime_nixie_tube.json5" +hash = "babefd448d6414725a95be26dc8c9c729abc378f2830c4ba1299e11a2d7f679a" + +[[files]] +file = "config/blockswap/known_states/create/lime_postbox.json5" +hash = "3d2afdc4b760217d2114e8a2eae474e3890f4846dce6f3f5a0b032ab246425e6" + +[[files]] +file = "config/blockswap/known_states/create/lime_sail.json5" +hash = "71cae4fb82787c85b042fb5d68532526e6814549b88e016fc1e23afd83b7e33f" + +[[files]] +file = "config/blockswap/known_states/create/lime_seat.json5" +hash = "b32047f74bbb2acfbd7f18019a2d2627eff711461b8e22c80c75b67f30942ee1" + +[[files]] +file = "config/blockswap/known_states/create/lime_table_cloth.json5" +hash = "79f6afa06e7802c3e939288f2d9f83b56ed204c20ba4354c470e2b6b4f56ef03" + +[[files]] +file = "config/blockswap/known_states/create/lime_toolbox.json5" +hash = "b7034d8291bda07fd7bb7879c267b5e8a57d1f95c6b86686913831b336444250" + +[[files]] +file = "config/blockswap/known_states/create/lime_valve_handle.json5" +hash = "ddfd0a127b8423d15ff72d860738c60c6370c94e70cd5b16fb9c376e1d4a5218" + +[[files]] +file = "config/blockswap/known_states/create/limestone.json5" +hash = "d62a1ae96c1276a0af1ea66c77f51240671cf0f19484705f2101c5acf46ef57f" + +[[files]] +file = "config/blockswap/known_states/create/limestone_pillar.json5" +hash = "1e3fdcb57f71bd27f47d5ad76506e38f80e2f75e96c53ad18b0454289e2f98b8" + +[[files]] +file = "config/blockswap/known_states/create/linear_chassis.json5" +hash = "c90689a8f2d862654b3edccc476259e48db9a61d8502002b534c2b550362e2fe" + +[[files]] +file = "config/blockswap/known_states/create/lit_blaze_burner.json5" +hash = "fb8ae875618b47d3cd030698b10653fcd41e55a73bcfd293ff7ea806e1e5b4dd" + +[[files]] +file = "config/blockswap/known_states/create/magenta_nixie_tube.json5" +hash = "4abeaa48fed75f3c44a3134e8864239b33641ba931e04cacbd8a478707ff0d96" + +[[files]] +file = "config/blockswap/known_states/create/magenta_postbox.json5" +hash = "4338ca14fd6766ac021dc8db615f44ee9e1617923772de59a0207dc47d52e39e" + +[[files]] +file = "config/blockswap/known_states/create/magenta_sail.json5" +hash = "387b50c0286125236fca43fc65556a59b08ca20760c139414b1944981cdfccde" + +[[files]] +file = "config/blockswap/known_states/create/magenta_seat.json5" +hash = "8c7c364bb7f6eea1af329d97895a8491c44aa5b50f324a52af36cd11347e864a" + +[[files]] +file = "config/blockswap/known_states/create/magenta_table_cloth.json5" +hash = "7d833b9355297e337465ad571bb98976dce8a2263cd9bff3b3a7ae12d6eecfd5" + +[[files]] +file = "config/blockswap/known_states/create/magenta_toolbox.json5" +hash = "e0c40ed4ed1d34ede0c7d96a72f23558305f59a1a3d04fea3b5046b85213d732" + +[[files]] +file = "config/blockswap/known_states/create/magenta_valve_handle.json5" +hash = "5a64e6f85351403c14b93f96ae5bc8e28dec28f0c784cbcf1c64f9c2b33caa11" + +[[files]] +file = "config/blockswap/known_states/create/mangrove_window.json5" +hash = "027cd25d8a43565d881ec8dcd7aedc812f7fd94450e8f0e9ba892d3f48981182" + +[[files]] +file = "config/blockswap/known_states/create/mangrove_window_pane.json5" +hash = "31290e98cdb27b9af4bf654f8cc07cdace7e83f384700e0c33b1a86cb122dc24" + +[[files]] +file = "config/blockswap/known_states/create/mechanical_arm.json5" +hash = "5513768ec505efb104522cead5607dc38e6c43fe72ee8885e7e1bdedeb931430" + +[[files]] +file = "config/blockswap/known_states/create/mechanical_bearing.json5" +hash = "39cb09379103291bcc12e6d694069853654af47539d6daf9739b2453b700b576" + +[[files]] +file = "config/blockswap/known_states/create/mechanical_crafter.json5" +hash = "a97f465f49127f809d76ecf6afbda5c9fbda5f0c663143166f48723e1467dc91" + +[[files]] +file = "config/blockswap/known_states/create/mechanical_drill.json5" +hash = "eb8ed6c9ea1ace5c6ef4d122df02d77563b337737b1eb9ab570d8e2d33ff85fc" + +[[files]] +file = "config/blockswap/known_states/create/mechanical_harvester.json5" +hash = "72851d9878ea285bb0d4c216105fbfaed57d51d823c01af20a55e4140e5bd720" + +[[files]] +file = "config/blockswap/known_states/create/mechanical_mixer.json5" +hash = "a6f2566e7c279e68dbd16000ce40033fbb07a35e7f773a95fdd9d52206c00a73" + +[[files]] +file = "config/blockswap/known_states/create/mechanical_piston.json5" +hash = "5a38639977ac5b0d029d4990b51dba0760d4bd9875f16e53edf1d85c330e81d1" + +[[files]] +file = "config/blockswap/known_states/create/mechanical_piston_head.json5" +hash = "e37337f9ebd81b0b2f1f601bd405f916cd0f63e7d5a8fa7d060aba40bf67e5d4" + +[[files]] +file = "config/blockswap/known_states/create/mechanical_plough.json5" +hash = "97bb7a72f32af3c66cc52fe5d2f65f90ae3661a4484afe0285504626129c9c41" + +[[files]] +file = "config/blockswap/known_states/create/mechanical_press.json5" +hash = "40e7e590ed2176404f59f5c0eed8cc691c41fda4fb12241109797d8d499bf7f9" + +[[files]] +file = "config/blockswap/known_states/create/mechanical_pump.json5" +hash = "91fb5144785741821ced0f36f2508e8fe73b1b934d776e3e178d0e2412b0b689" + +[[files]] +file = "config/blockswap/known_states/create/mechanical_roller.json5" +hash = "95ecf08391c271ebdf204c37ddfac996542eb92569d0346bd8b9228c88d2e1b7" + +[[files]] +file = "config/blockswap/known_states/create/mechanical_saw.json5" +hash = "e95b15d5b3347edd8bd5d7525e86efc472bae0825c0c8a537e7d2b529b9f48a4" + +[[files]] +file = "config/blockswap/known_states/create/metal_bracket.json5" +hash = "7cffa280c3ed6ad5e177e582c605045bb207d67db61ba6459254a4649999a3c4" + +[[files]] +file = "config/blockswap/known_states/create/metal_girder.json5" +hash = "7444262245faad3a32aee09844d91d1be4bff2ed462c1314e682c4ceb958f431" + +[[files]] +file = "config/blockswap/known_states/create/metal_girder_encased_shaft.json5" +hash = "152ab761d23afaf4f72528f2999fa8b8f484bb93090f28e0a5bf451b7d95f38f" + +[[files]] +file = "config/blockswap/known_states/create/millstone.json5" +hash = "b4768cfdf4501fc315dfe37f2f3247623922e1b7f3588468067dc31dd02f7fde" + +[[files]] +file = "config/blockswap/known_states/create/minecart_anchor.json5" +hash = "4f2888ca3c0ac4648cd18242c0460475a2155618e9477c9c7a0566ac86cef7c5" + +[[files]] +file = "config/blockswap/known_states/create/mysterious_cuckoo_clock.json5" +hash = "f10d4141cf1c48490248ccc58c7701586c2ace2fbed20de5934c6358f352cf4e" + +[[files]] +file = "config/blockswap/known_states/create/netherite_backtank.json5" +hash = "3fe624c6c2a44378d989553af2e2b07b2b67343f1f5d35db2dda8f06b991ba10" + +[[files]] +file = "config/blockswap/known_states/create/nixie_tube.json5" +hash = "45698609a84f709adbd8790535ace91b8f6315acf63da3fecd016e4a59208211" + +[[files]] +file = "config/blockswap/known_states/create/nozzle.json5" +hash = "6fc0493a20d6c885fb32a47931a25f6b161165938c046de18eee749893d7b719" + +[[files]] +file = "config/blockswap/known_states/create/oak_window.json5" +hash = "1e900af4a14363555c4cd0ed80c0cd08a804bb89d80882e14bf8d46c46113941" + +[[files]] +file = "config/blockswap/known_states/create/oak_window_pane.json5" +hash = "528ccc9f681102dce498495de14fd2ed32a774db1173a2eff6a9af866d377c77" + +[[files]] +file = "config/blockswap/known_states/create/ochrum.json5" +hash = "2852f69d7a5cb290d060049fb5a4d200402ee6b48383f70c513758b9a11b0a7f" + +[[files]] +file = "config/blockswap/known_states/create/ochrum_pillar.json5" +hash = "061ae531dad090873d11260febcbdf606dd1d639fa8c85172e205251fdfacd0e" + +[[files]] +file = "config/blockswap/known_states/create/orange_postbox.json5" +hash = "45296625812cc90b807e0c8bde3f4ef37bd05ec3a028c425fce8b7d9657575df" + +[[files]] +file = "config/blockswap/known_states/create/orange_sail.json5" +hash = "b77a825b6bb411a5aa867349b403e29e1234fcdb5cae090529cbc1bd17d96420" + +[[files]] +file = "config/blockswap/known_states/create/orange_seat.json5" +hash = "2063cff5c69a8418be1806ec3c241b8258b3c2cd480e62b96bfd9168517dcb98" + +[[files]] +file = "config/blockswap/known_states/create/orange_table_cloth.json5" +hash = "bede4589e50632aa4e5f50c845835d68a35ca1d6e18bd4aea0e36b749e6aad73" + +[[files]] +file = "config/blockswap/known_states/create/orange_toolbox.json5" +hash = "338c70b51c7a130308810761cb7bea2d500af03bd5c77c25759693c6a605e82a" + +[[files]] +file = "config/blockswap/known_states/create/orange_valve_handle.json5" +hash = "a2c70987f5907f1d6d740744f440fb0975a2689eb2c68f130e601b05bd88e718" + +[[files]] +file = "config/blockswap/known_states/create/ornate_iron_window.json5" +hash = "bb7c17876fac8dab6e203203c2d8a8d3ada157f4bc989f2dd26e440d8dc56581" + +[[files]] +file = "config/blockswap/known_states/create/ornate_iron_window_pane.json5" +hash = "2bc3cd0ad5e5cb33ad6d14b381a97c72c252592e35052771e8948b505d9c7be4" + +[[files]] +file = "config/blockswap/known_states/create/oxidized_copper_shingle_slab.json5" +hash = "da383b6aec668b741d577811bbbc146ea99800e258389e7bcbf59d450d41c0aa" + +[[files]] +file = "config/blockswap/known_states/create/oxidized_copper_shingle_stairs.json5" +hash = "2967c8b12ae1623ac512cbf7a325e55c94da51ba3f8907ef359a4916c4f0bed5" + +[[files]] +file = "config/blockswap/known_states/create/oxidized_copper_shingles.json5" +hash = "13d420281811d3536821f0d9789056142082795f87fe0cffaaf2885b8940e337" + +[[files]] +file = "config/blockswap/known_states/create/oxidized_copper_tile_slab.json5" +hash = "04475dd70ba6ad74690261683d63e96bd5dcadfd35c440d7bb1fa4143019be3c" + +[[files]] +file = "config/blockswap/known_states/create/oxidized_copper_tile_stairs.json5" +hash = "609c19afb18b4a19db2a61f60012847aadf0bf0051fe88256e0449678e006fcd" + +[[files]] +file = "config/blockswap/known_states/create/oxidized_copper_tiles.json5" +hash = "d636ea0a8f1cedb95674a75445905fd146bbba7a18cbccf32eb2000b86af0b58" + +[[files]] +file = "config/blockswap/known_states/create/package_frogport.json5" +hash = "6337dc9f9319b84d3512eb9a07da2cdd30ae935946fafde04d1f808c22c5f711" + +[[files]] +file = "config/blockswap/known_states/create/packager.json5" +hash = "3748c4865d22355ec6abb3a6baac3e68ea9b44d315cb9ddd6a54cd69b98c2401" + +[[files]] +file = "config/blockswap/known_states/create/peculiar_bell.json5" +hash = "70556cc5817cd3399429bf3eb9acbd1b567cebe8efc8c1fc5cd45d1102d0d2f4" + +[[files]] +file = "config/blockswap/known_states/create/pink_nixie_tube.json5" +hash = "50335909860a936e2df1e2d896f9080c4cbfee793615eb3a00930a296dd1e111" + +[[files]] +file = "config/blockswap/known_states/create/pink_postbox.json5" +hash = "25b8c294cdf48c44dad7f3ecc06338b1f24b4d6adbd067b6f03daad5114f9bd1" + +[[files]] +file = "config/blockswap/known_states/create/pink_sail.json5" +hash = "34233bd59bdd7c85013a649d23e0ac35770a744865cf7f594114362d39ad9000" + +[[files]] +file = "config/blockswap/known_states/create/pink_seat.json5" +hash = "767eb930fa7686d9db35dc6ca82de706add3bb10efb8167535271bea3afc185f" + +[[files]] +file = "config/blockswap/known_states/create/pink_table_cloth.json5" +hash = "9fd5fdd9bb1794b3e9be5983b7b047a06623a56459b4f1885685a34e65cb015f" + +[[files]] +file = "config/blockswap/known_states/create/pink_toolbox.json5" +hash = "6854d4e4b61893d6c107ff9a87f250c0046f95a529a84a82adcc35a705c5d4d0" + +[[files]] +file = "config/blockswap/known_states/create/pink_valve_handle.json5" +hash = "b851c5f613e9ba0a2a7dd3d4d4abb39c922981faeca8249f6313c6a0945615e5" + +[[files]] +file = "config/blockswap/known_states/create/piston_extension_pole.json5" +hash = "a8285511e4aaf330578677f73930113c6b5643cc8dc4327a7249e7c38adeb81b" + +[[files]] +file = "config/blockswap/known_states/create/placard.json5" +hash = "1653a6e32082de669458c555075d48b4252cd7f8b75262ed813a8a2a89d906a4" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_andesite.json5" +hash = "8fe12101bbd5a87225b32fff9d8209479dcdcd53c55ac19c4473b21b9e037e09" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_andesite_slab.json5" +hash = "f4b51837553d09ad219f5e84545626ebf96e2feb6d06fbe8966f0c4ada091412" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_andesite_stairs.json5" +hash = "88116179bb7ef336fe51091b269745a15f31c0e07ee6f7c27aad5fd413309973" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_andesite_wall.json5" +hash = "fd94c33297ce000bf97794d16ede3ca428175a5456a0b9b3546f4c1e910b8ac4" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_asurine.json5" +hash = "93b7d9c0184f38504de1a59cad58ba145350b7b8003a861b30c53ee2bbf4eaff" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_asurine_slab.json5" +hash = "21deaaa13b01d8b17e1f3cefd2166bec6d711cd9cd1668c08b5867f1e56fc284" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_asurine_stairs.json5" +hash = "5676593de03e6be4419e8a1df339e0134cec0497fead6280daa33d9d55ee5c37" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_asurine_wall.json5" +hash = "1dc6a398a6a289d164221c278ad6b8c53f635ba53c9a40fa415abb1829998006" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_calcite.json5" +hash = "6daf5e85363de8bc3c69888441ecb97504a72dce01182d23cc8d4bf60d2bc40f" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_calcite_slab.json5" +hash = "21b8cc12591ef279cc4fa13f328ef0881195fdf642e314ed40989a9cdb28d529" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_calcite_stairs.json5" +hash = "74c07f55e293009c6a1f4e117e4195098e78c7b9f3d08df224ed37c99f8f7ed9" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_calcite_wall.json5" +hash = "7db2fd2b82264c6f1cf9360e16222f762232307e0a18809d42de0c957b7f2a5a" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_crimsite.json5" +hash = "e9762028d76ab90d7dff68cff94c54a2b384218495a40c01cc187c6d373404ea" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_crimsite_slab.json5" +hash = "5957a266bf9a70c80b7b5f5b69189122eec3437ccd697f3197158d0c3e2fb43f" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_crimsite_stairs.json5" +hash = "d4d25ece2ac11a16b9355ed107e7d3ab6311b1880fb4460efc086302d93313f8" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_crimsite_wall.json5" +hash = "41a1d768306b46ebacf2c03c48c7532050678455d7ed093a83840888384d3d37" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_deepslate.json5" +hash = "3570d03675d45d5c2cdc07e29c0d2830e8f64c585b7d92819bec67f6fceef8e6" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_deepslate_slab.json5" +hash = "7ad778ac2c64b6e5638d7bbcd81f52b2cf8c869a4809d256c4e3620e69557207" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_deepslate_stairs.json5" +hash = "132388fdc2efdffd30809e4698170d81c96de1941d6e252bdc8ec8f5ea43e6a1" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_deepslate_wall.json5" +hash = "b8ff91038de262f986e67e67a7dc4d9c2fcd7a4263dc1bfcdcabc6244d259550" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_diorite.json5" +hash = "44513613d5680d855a2f51dc8d0995d9e050fbdf4724805495490d82000d2c0c" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_diorite_slab.json5" +hash = "275ccb358ce6db66e8ec57515ba66017241ac541531910cd9ae7461b8340ff2a" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_diorite_stairs.json5" +hash = "4bd906aa7e07bbb4d355e46fc49e42f892c0ac479d1f702aa8467909b26d0bbe" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_diorite_wall.json5" +hash = "eba3ac9e787e3bb326b7a440af57f39b2ed727f4f9a221ca74d9eb90397852ee" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_dripstone.json5" +hash = "bc0fd9fe5ed24a8ecbfa7e261f860edf59dd2963e97a4e5e9821e8debb8b8a86" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_dripstone_slab.json5" +hash = "72d2adfd6d7b0de9003a8b87d83e1278e26cb1a6fffc03130507fc49635ab8aa" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_dripstone_stairs.json5" +hash = "12e88b7d5d7b523b23c252a0fb7edd287c8cc79e8f950e53daafe14c66189500" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_dripstone_wall.json5" +hash = "fc6889c9e3f96317c8bbdecf485adffff7dac177c8c39d80391f2df03c60f35f" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_granite.json5" +hash = "b6f4fd512d34696078cdc90da120aeb5bf0aa153017250bc890455533ee49ec6" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_granite_slab.json5" +hash = "5c2ccefcd61ab1bbada2c4003e0c51f0dac02e77b3cb7bec2d0cf1f616000739" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_granite_stairs.json5" +hash = "8ea7100ab2c3c5c7d812397fced9a501ae76f7abbafb11dd818d9d31dde6c285" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_granite_wall.json5" +hash = "0b5a21e7140e10b912a2272e112233176fb6d973f01280ab30a3056fc053935d" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_limestone.json5" +hash = "714d0fa814b6487f67c39301b6099036e962d6fdf2d7873366d14d6adb737f7a" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_limestone_slab.json5" +hash = "b8dbb39aba74c48a4a5bbdeed2ca8eb193c5bcd33e4108067ed75338100f2a67" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_limestone_stairs.json5" +hash = "c96fcf1eddefd048309e1aede8d45ed8ed10d395a18e937a05f9c15c080b039e" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_limestone_wall.json5" +hash = "b62ec0cdbf815a55861baf9ea7b16307ec8e97b479217f1d58eb0b4bda01ad14" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_ochrum.json5" +hash = "79a7904288f7774758f6487ded46db9661be8b20cddd9da269b3bc49cff130d0" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_ochrum_slab.json5" +hash = "c47f711e1985b64ce059427175c49492ba85d05ca0f55640c8c2772d50c39743" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_ochrum_stairs.json5" +hash = "851eef1b761e0d954094004535b8370550d1a27e497f6a85c4a935dbf83c3168" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_ochrum_wall.json5" +hash = "ce8788d96562283f7aadbdf56660904afb749b2632a71c02bdce3d6398958a66" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_scorchia.json5" +hash = "1a259f17c55d756c67ed6908453826f0b03cdcfd98267ccb7b70ff005a91f6b0" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_scorchia_slab.json5" +hash = "dcf5d6e816ee5d007f0820c14dc7424e25fff3fbd54016c6334045a6ddc20942" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_scorchia_stairs.json5" +hash = "876eedd78a86598e73d0f45b48ec3ff7a2a094ac5fa829b9e3fd8abe9fa8f1f1" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_scorchia_wall.json5" +hash = "c6cfc18b6144606ccbc6b6ad87a1b139d5aa6732000998995feaafaaea9c4ae7" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_scoria.json5" +hash = "e201c15f6cb67366ffe1a6612ee9e15d6e0e9a012f395d242fe9fb3197da58b5" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_scoria_slab.json5" +hash = "435d95fbf82ec9571c20812fb0e304fd7976860fc14d585321070652993f2896" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_scoria_stairs.json5" +hash = "bcbfe571f3cc6a7b50a0fbd45d4bc9edb8db8e5c38db372b902376bbca37344f" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_scoria_wall.json5" +hash = "e1da103adf9eda9a1859c0b41037b2332c731825b0ef07e19524055ef3e7e3f5" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_tuff.json5" +hash = "7be6e5bacf9d825ed98ac6cf8a074599d39818a6dfd2c8739ed1f2ce59343dc0" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_tuff_slab.json5" +hash = "84f7555a6801b5d1134954286f2a838c7f4178882e971d4b738ca421dce33ca7" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_tuff_stairs.json5" +hash = "8f3573a8afa10c13ad49cdd909947cd4533540cc034620c75322de13bca30e91" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_tuff_wall.json5" +hash = "229a540f610e87487ff5dbe8ef1ca9fdc109088446b84fd8f6e46a3d6f1f4fd8" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_veridium.json5" +hash = "02a30492b820ea6cc68b55150f717b20336cc500e3cf90dcf4185f56dc6dc6fc" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_veridium_slab.json5" +hash = "1f2b13c72a9dcaa5050c8b9672822dd12c759b42e4ea6c00e140443e93b8a501" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_veridium_stairs.json5" +hash = "a4d8a63ad7f0a5814dd29090d6df6fcd906688055c59a931cd702ef191b79d1d" + +[[files]] +file = "config/blockswap/known_states/create/polished_cut_veridium_wall.json5" +hash = "d7d57407b5942df962755995d4e47d0cd83ccd2d32ec0a62c3fb856f35fa96b4" + +[[files]] +file = "config/blockswap/known_states/create/portable_fluid_interface.json5" +hash = "86614b91c94df96d16546068a5b5e4982903cc23606b6bd15ef83127e588058e" + +[[files]] +file = "config/blockswap/known_states/create/portable_storage_interface.json5" +hash = "92bf86cf33b86ac9db653d55aab893cae4aada2c492619e4178be8b714ee8a35" + +[[files]] +file = "config/blockswap/known_states/create/powered_latch.json5" +hash = "c8135b222199072820e26f5932f1ff4479b3ddc56acd096dffe16278ab3e1c3d" + +[[files]] +file = "config/blockswap/known_states/create/powered_shaft.json5" +hash = "07d3ca5d1142ebfc576c77af2c1ff5606cd7050a2a99c2befcb65aeecf69a9ce" + +[[files]] +file = "config/blockswap/known_states/create/powered_toggle_latch.json5" +hash = "2e236a9bf96d8cdc8bad21a473fb6fda1f5bfa703583e213815edc24f5646db0" + +[[files]] +file = "config/blockswap/known_states/create/pulley_magnet.json5" +hash = "f4f8d465124aeaca3ae23b356b141a485bb3432b0f63fbb7d7d7f7f3d73b3043" + +[[files]] +file = "config/blockswap/known_states/create/pulse_extender.json5" +hash = "ad471ce5465ae87c48be057e00771864fc635ba9a5a2f0f485df957a10e597f7" + +[[files]] +file = "config/blockswap/known_states/create/pulse_repeater.json5" +hash = "40cc8b73dac7c94d7d80a705187d1e37bcea22238e25b7d68523ca3523bce43f" + +[[files]] +file = "config/blockswap/known_states/create/pulse_timer.json5" +hash = "90039dae763862b153a5e24baef7d8e11260c34e6aebab05d0c53dee546bea3e" + +[[files]] +file = "config/blockswap/known_states/create/purple_nixie_tube.json5" +hash = "fe69df976c19f5906fa29d3290314c2ee08030e4b72a7700508157633e83c6e0" + +[[files]] +file = "config/blockswap/known_states/create/purple_postbox.json5" +hash = "3492e54f6693c7fe2bab2c2a03fcade442dc9db374746df26fd8b6900dc6b162" + +[[files]] +file = "config/blockswap/known_states/create/purple_sail.json5" +hash = "f61cb55f3f2e72b118fb1c09ce16b11573de8a68de3de37d56efa257173f2451" + +[[files]] +file = "config/blockswap/known_states/create/purple_seat.json5" +hash = "220e754de5efc5aef9d9c8c9515315156a1dfb4c13fd1f537f0122eb57ef24c0" + +[[files]] +file = "config/blockswap/known_states/create/purple_table_cloth.json5" +hash = "2b242a6b8b1122e4db5b4d7741f64c18121a096c45cfd3b82960637a2f8279d3" + +[[files]] +file = "config/blockswap/known_states/create/purple_toolbox.json5" +hash = "38aa557d24d41469e3d2a87a0c1945a753e4971c82fc672a4a26341dd0652ab4" + +[[files]] +file = "config/blockswap/known_states/create/purple_valve_handle.json5" +hash = "d5c30da72b7067efd783ad24d3d1fd8981dbb19bfe3e4114d42fbe6968098003" + +[[files]] +file = "config/blockswap/known_states/create/radial_chassis.json5" +hash = "d3bc06e5265544e98da71d6869c7ea9c55772cc91706867bb8dde3c9869e0892" + +[[files]] +file = "config/blockswap/known_states/create/railway_casing.json5" +hash = "cf70005f71a153d6c005c523581af32e2091f803f848c2c8797476c8fe027e3c" + +[[files]] +file = "config/blockswap/known_states/create/raw_zinc_block.json5" +hash = "42e7a6e44f31f0f3cd0d67dafd005e4a854befdc587fda779d3e3bf216ac6db3" + +[[files]] +file = "config/blockswap/known_states/create/red_nixie_tube.json5" +hash = "a6ce0647e027a7dc2421cf451c447a27a6d993a27a0391ba5bd18cfabe297205" + +[[files]] +file = "config/blockswap/known_states/create/red_postbox.json5" +hash = "f847e29441e9ac288276270228e703f45891ae505c6590d3b551c8d15d1929d1" + +[[files]] +file = "config/blockswap/known_states/create/red_sail.json5" +hash = "e8c8d1b3f0eb2a082876047f769a20b0ffe55fac989409ff8b5296b9a9e100e3" + +[[files]] +file = "config/blockswap/known_states/create/red_seat.json5" +hash = "34ae1fc0c164f2003c5a9e3a34c9e03b31c880027892e8b46369178fac66974e" + +[[files]] +file = "config/blockswap/known_states/create/red_table_cloth.json5" +hash = "bb8fdd7960588371cabd661f798899d426632f2ded3044cf33257ffbbd4f8eb3" + +[[files]] +file = "config/blockswap/known_states/create/red_toolbox.json5" +hash = "d69a520c25fc0e98224dccdb8cd92e7df73f483c22629e557d193176d89e8fbb" + +[[files]] +file = "config/blockswap/known_states/create/red_valve_handle.json5" +hash = "f78b0e7726752fbb44afcc8a054e79f8a27a5eedb0b2ca9d4645f3ea82bf35aa" + +[[files]] +file = "config/blockswap/known_states/create/redstone_contact.json5" +hash = "5edd84e07e59e238aee39a05e2aa41c2d255f81ecfe68bedb362a6efa2c46192" + +[[files]] +file = "config/blockswap/known_states/create/redstone_link.json5" +hash = "397a1f32c8f4000b49b67bfb34cad3238331357d8b437796d9f5aec4c01aced0" + +[[files]] +file = "config/blockswap/known_states/create/redstone_requester.json5" +hash = "f7f79c32e1e5de0a0f86ee0ffaa0e00058bdcc0a7e0562fb3827ad4d3ae0790e" + +[[files]] +file = "config/blockswap/known_states/create/refined_radiance_casing.json5" +hash = "457e3c11d23141595c0d6082bd436c2b4367a442270ba0548c8a117ced608563" + +[[files]] +file = "config/blockswap/known_states/create/repackager.json5" +hash = "52b271ac5a8165f7b706dc3b5f60ae63c8cd4dcfb3308190e56641be9db707a8" + +[[files]] +file = "config/blockswap/known_states/create/rope.json5" +hash = "94245842ef8503bc5543ecbefbd13c25c94d02c8fdebd17ad2c13dc7303c9d9c" + +[[files]] +file = "config/blockswap/known_states/create/rope_pulley.json5" +hash = "dc13f3451535ce6d895ca9388ab5f7d6969aee19252d092f64c89ca815447306" + +[[files]] +file = "config/blockswap/known_states/create/rose_quartz_block.json5" +hash = "214b192124d327133f7038423ef19bdd5375337a1983ebde62ea4b3ea5775e2d" + +[[files]] +file = "config/blockswap/known_states/create/rose_quartz_lamp.json5" +hash = "1eb9ad3455e49d5008837fbf6cef6fe3448e671f423a56735dc0d8f9c1ad5870" + +[[files]] +file = "config/blockswap/known_states/create/rose_quartz_tiles.json5" +hash = "cb2dc1491ef01e892ac435d52dbc0d9e589d7828e6aaf567a71f369990eaac18" + +[[files]] +file = "config/blockswap/known_states/create/rotation_speed_controller.json5" +hash = "a3c3329a69aa2d0dbd63eab9d6361c8aa741df5dda6f0cd63b39dd43119e13a0" + +[[files]] +file = "config/blockswap/known_states/create/sail_frame.json5" +hash = "78be2603a82c178d38c9db1c4928711b59d41fe2e927e5d52cf59afd4b94d6a2" + +[[files]] +file = "config/blockswap/known_states/create/schematic_table.json5" +hash = "025266b40163fa485985d1514f5cba5fd6e70a6a3226c12ca9a2c0b141c201bb" + +[[files]] +file = "config/blockswap/known_states/create/schematicannon.json5" +hash = "af9b2a95ea73e5bac5bcbe487d0860ac998e828026e8f9dba5e76092b3ae638c" + +[[files]] +file = "config/blockswap/known_states/create/scorchia.json5" +hash = "2f6d0899c93683fdd2857becfd98d938c6abac6a2541982f41d7ac60aa5ad2e4" + +[[files]] +file = "config/blockswap/known_states/create/scorchia_pillar.json5" +hash = "8d608ac7516c85b1632fb880ecbeb7c0dc8e19ef5b968daedfefc80ce0cf51e3" + +[[files]] +file = "config/blockswap/known_states/create/scoria.json5" +hash = "c8723c9e3776bb2f4a22bd02261ddc807511ecd104877f291b2a42e8703ea5b2" + +[[files]] +file = "config/blockswap/known_states/create/scoria_pillar.json5" +hash = "f3ea971bb251d1a4bd2ce1d2b5456fe89176aa730d39af1527aa56e25c4f381e" + +[[files]] +file = "config/blockswap/known_states/create/secondary_linear_chassis.json5" +hash = "98d13f494c849c5a769e01714cc9de2989e5fc01f1b885155f075597ee6848a4" + +[[files]] +file = "config/blockswap/known_states/create/sequenced_gearshift.json5" +hash = "a587fc76291bdb6b8d98e25ae6bbcde66415b5fe0ebb0b23af953a2235a2c23d" + +[[files]] +file = "config/blockswap/known_states/create/shadow_steel_casing.json5" +hash = "1889617cccfe8244418da574a885f5106a9c677fe99da28d4c5004b57eaf4911" + +[[files]] +file = "config/blockswap/known_states/create/shaft.json5" +hash = "7b51ae2ec0ef01f1fc901bbf9d4d82268f19d4756dd9371e79191295dc5ebd98" + +[[files]] +file = "config/blockswap/known_states/create/small_andesite_brick_slab.json5" +hash = "cc363aad21c31961be47097674388235ffd300dd193f7b8677bfb9f68d6368ee" + +[[files]] +file = "config/blockswap/known_states/create/small_andesite_brick_stairs.json5" +hash = "590e1edfae3882403e869bd15f2510423491e14981e6ee55f1a5061419e17169" + +[[files]] +file = "config/blockswap/known_states/create/small_andesite_brick_wall.json5" +hash = "7331d031217f0f15708c265b0b33fa1ad4113c80ced51b6d572ab54e27a17fe9" + +[[files]] +file = "config/blockswap/known_states/create/small_andesite_bricks.json5" +hash = "59628cbbdecd1a7149d054fcc17f40fa411c3350415e183b258c64be278ab9d0" + +[[files]] +file = "config/blockswap/known_states/create/small_asurine_brick_slab.json5" +hash = "f02c633a997d23e10bdfab0fed834cb9c266cadfecb4175cf38de2bb8852958b" + +[[files]] +file = "config/blockswap/known_states/create/small_asurine_brick_stairs.json5" +hash = "57dd17a0efcd675bf12b1ff586055e78a8ae918c021c7051833ce40c873d435a" + +[[files]] +file = "config/blockswap/known_states/create/small_asurine_brick_wall.json5" +hash = "8fd7af4ce92456fe8ec78df7523a7e03160196ec6b028ec2616d1ba9f53b49df" + +[[files]] +file = "config/blockswap/known_states/create/small_asurine_bricks.json5" +hash = "1771a0b21a8703b52848515c55dfcf8978a758dba3be7fa773ea5236a687f45e" + +[[files]] +file = "config/blockswap/known_states/create/small_bogey.json5" +hash = "0c9591c9a9555b5f69d311bcc2e2c417a789be12944b74b87e39309d82aebf25" + +[[files]] +file = "config/blockswap/known_states/create/small_calcite_brick_slab.json5" +hash = "a1e8c1a50dd47f4af4006eb8a4709af99f10272c0d25da71190d6fc8b67d1ee2" + +[[files]] +file = "config/blockswap/known_states/create/small_calcite_brick_stairs.json5" +hash = "29671102533b2270fdd60078072bec6070b4ce5e86b514423921906ba95a9298" + +[[files]] +file = "config/blockswap/known_states/create/small_calcite_brick_wall.json5" +hash = "2f10355f293a4837e7a0ac8fa0684ccc4ae0e99506824ed89b323eb1b3c122bb" + +[[files]] +file = "config/blockswap/known_states/create/small_calcite_bricks.json5" +hash = "f0622934c94b09d0c9f0af5a421cce7385e50be1e528815df2a99bd2d79e8228" + +[[files]] +file = "config/blockswap/known_states/create/small_crimsite_brick_slab.json5" +hash = "91297ef14a5154e0201844b2ca0532cf19cf4bd05095743647369bb5060c352a" + +[[files]] +file = "config/blockswap/known_states/create/small_crimsite_brick_stairs.json5" +hash = "3b0e6922b28787e1bbbbe008566fa52e0ee6b9f611990ce23e1c072b930537d8" + +[[files]] +file = "config/blockswap/known_states/create/small_crimsite_brick_wall.json5" +hash = "649288d55e3e74e0be415c23be5368a19eccb45d5e0e8cfaee65c9fa5dab27b3" + +[[files]] +file = "config/blockswap/known_states/create/small_crimsite_bricks.json5" +hash = "ca8b6e704784b3d0c6cc944c8df756dbb6c89f396ae2aee4cbd39f7ce6f5611b" + +[[files]] +file = "config/blockswap/known_states/create/small_deepslate_brick_slab.json5" +hash = "adbc5ce99ced4fb2812978104634b83e827e6f2b7ff0e3a77274725c0cca92e4" + +[[files]] +file = "config/blockswap/known_states/create/small_deepslate_brick_stairs.json5" +hash = "85b73cc8a91dcd6d669aeae501db55e38ad8efa5eb29eb696a0daf8b414fb2cb" + +[[files]] +file = "config/blockswap/known_states/create/small_deepslate_brick_wall.json5" +hash = "42614822530999ddd549964ae43a8327896c526fb0615669eb597f0efa709b5a" + +[[files]] +file = "config/blockswap/known_states/create/small_deepslate_bricks.json5" +hash = "8d7b24585fa6492e6aa9a3d38e854364785e531f44bc0fb3b5a8905c6ca1a665" + +[[files]] +file = "config/blockswap/known_states/create/small_diorite_brick_slab.json5" +hash = "f084545a05de5824b4a77dfc050e4bb33397e7726901fb76ec028cee88edbb20" + +[[files]] +file = "config/blockswap/known_states/create/small_diorite_brick_stairs.json5" +hash = "08ce7d43d3982a7689b08df8ef658868d2d38409c6cdbd5c162588958c415c9e" + +[[files]] +file = "config/blockswap/known_states/create/small_diorite_brick_wall.json5" +hash = "a214bdae724112a8e452f0b45c3676b99bc2cfed85f15e408e87d8d81c53bf2b" + +[[files]] +file = "config/blockswap/known_states/create/small_diorite_bricks.json5" +hash = "d02c0c9b4888185b56dd2e0ce229576ded59bd169c438486ff7a7127680a40d0" + +[[files]] +file = "config/blockswap/known_states/create/small_dripstone_brick_slab.json5" +hash = "92c224fde0f649b44f2dcc41fb480dab0ece10e0c4133e7f12df42f9703cfbec" + +[[files]] +file = "config/blockswap/known_states/create/small_dripstone_brick_stairs.json5" +hash = "2928db6bf4425bc480d9988b753319008c7b523b635813d39279f83544cdd33f" + +[[files]] +file = "config/blockswap/known_states/create/small_dripstone_brick_wall.json5" +hash = "03d85a38bb0a39fdcc3f6c32bee5bda3ae41a63be899a9930fde46b4dd84e980" + +[[files]] +file = "config/blockswap/known_states/create/small_dripstone_bricks.json5" +hash = "7330fe4d495d8b44e46097dd21799fffb6d8252e463509930bdbf1e4498668d8" + +[[files]] +file = "config/blockswap/known_states/create/small_granite_brick_slab.json5" +hash = "dc8a56f561cc9011f8b790e2c4b6efa5988c9240c0f99696a36a3ed8d984d632" + +[[files]] +file = "config/blockswap/known_states/create/small_granite_brick_stairs.json5" +hash = "542acba86034127e433c56fa1d8f6da240fb12a6462c4a5563a53d01941bba1a" + +[[files]] +file = "config/blockswap/known_states/create/small_granite_brick_wall.json5" +hash = "4fa5a6039364516d41fb319e0734316178399a3d4d2b95757b571829f38a7aa9" + +[[files]] +file = "config/blockswap/known_states/create/small_granite_bricks.json5" +hash = "1eeb95ea2187890d18f363d1410e872926766ad8b9e719f824dd1701dae1760a" + +[[files]] +file = "config/blockswap/known_states/create/small_limestone_brick_slab.json5" +hash = "d9533ef8114197c35a9f5dc12cf0f6bf60fb0e8a2ac0f05cbd2a8dae939ca4c7" + +[[files]] +file = "config/blockswap/known_states/create/small_limestone_brick_stairs.json5" +hash = "1831b0795001f35d986cae66d830e4f7ee623094681393fbc96fe3fa0f8c6730" + +[[files]] +file = "config/blockswap/known_states/create/small_limestone_brick_wall.json5" +hash = "3db312e1a89ae9177cc6bc8225755e0266f00304edbcf4ec8478a20276459288" + +[[files]] +file = "config/blockswap/known_states/create/small_limestone_bricks.json5" +hash = "40fad113fc7ccd1185a577a676b570e379052cf2a6e0e612a747a20e58264953" + +[[files]] +file = "config/blockswap/known_states/create/small_ochrum_brick_slab.json5" +hash = "5cef5982d1b46e4dbad7676b377cdff85f84baab27864bbfc6296009cfe2ec36" + +[[files]] +file = "config/blockswap/known_states/create/small_ochrum_brick_stairs.json5" +hash = "26cb08607a2652b32f716a21b35a4df3b1e4cc88b6c6c3e6442be5bb9123f645" + +[[files]] +file = "config/blockswap/known_states/create/small_ochrum_brick_wall.json5" +hash = "b2034cb9ffaf4529815f8d9e6c13ff85e16ce0a3ba1f8d1c83bd110dd90e9e3d" + +[[files]] +file = "config/blockswap/known_states/create/small_ochrum_bricks.json5" +hash = "6b5b263bc1cbfcdf367d47b0ea801a02e22aa1dc2f5992cfdf9feb172ac8a8ad" + +[[files]] +file = "config/blockswap/known_states/create/small_rose_quartz_tiles.json5" +hash = "68be31760c2e84dd59896ee10f5d0e7d9e536d7bb7ab1cc41b46ec63a7b63c83" + +[[files]] +file = "config/blockswap/known_states/create/small_scorchia_brick_slab.json5" +hash = "3388cddb2f4a4c6dd4c9a002048ec3f06eff9f2e4a1fa44d1a6297a6fed1b666" + +[[files]] +file = "config/blockswap/known_states/create/small_scorchia_brick_stairs.json5" +hash = "3dd382de50f192627386ce35a202c09021b2f404493ed23693260b8022d3fdd3" + +[[files]] +file = "config/blockswap/known_states/create/small_scorchia_brick_wall.json5" +hash = "ba42c833136f9a7be95d3251166c7b077d514598e4d9fa895555310a8839af2a" + +[[files]] +file = "config/blockswap/known_states/create/small_scorchia_bricks.json5" +hash = "2a8dd218df4df51d6facfdb37866332271dd2c62897c674520fbc9d186c4e8c5" + +[[files]] +file = "config/blockswap/known_states/create/small_scoria_brick_slab.json5" +hash = "fb9960309f7fa518ed99698fb76e03c46a891ae5d5a3a27b6c2596c9954b0919" + +[[files]] +file = "config/blockswap/known_states/create/small_scoria_brick_stairs.json5" +hash = "6ce6eb7d62fb3388a3a293823a1ef3dc79517fdd0e74fa1eafe427179f6d2f3d" + +[[files]] +file = "config/blockswap/known_states/create/small_scoria_brick_wall.json5" +hash = "1bb8faff9172337e8632ef3787811de898505d119647561c2be861692ca92142" + +[[files]] +file = "config/blockswap/known_states/create/small_scoria_bricks.json5" +hash = "6912cd6707d5909e65dad9a4ac66a36bec48badc6304e150e88cc21b934f6c89" + +[[files]] +file = "config/blockswap/known_states/create/small_tuff_brick_slab.json5" +hash = "9738b935abe2b265ae7e6dd90727f9faf64d4dcdbfd3e73b6f099778fff86c38" + +[[files]] +file = "config/blockswap/known_states/create/small_tuff_brick_stairs.json5" +hash = "34b9544602079958b06e506f90eea66a6715fc10a1b041a48004f17bab369251" + +[[files]] +file = "config/blockswap/known_states/create/small_tuff_brick_wall.json5" +hash = "c69d22f8b19c58496ff272d5f8c7b3efded57bc403856878324934fbdd2b50fa" + +[[files]] +file = "config/blockswap/known_states/create/small_tuff_bricks.json5" +hash = "ecdc8b3fc4a1cf6fb82627f37c4baf2c10c8201b20a87137a37cc6a75b40297c" + +[[files]] +file = "config/blockswap/known_states/create/small_veridium_brick_slab.json5" +hash = "3acf0976caa5f5b85206f3c09786008ff8e14b2853a7dda499fc706c48f84b80" + +[[files]] +file = "config/blockswap/known_states/create/small_veridium_brick_stairs.json5" +hash = "79ca5c32024ca3295cd32a07a1435c1d8529700ac630753b04d2239c68d92b44" + +[[files]] +file = "config/blockswap/known_states/create/small_veridium_brick_wall.json5" +hash = "9a1a94d9a0b76d1d68e35dd114abbdf6b94a44c03320b486c464c83a567289f3" + +[[files]] +file = "config/blockswap/known_states/create/small_veridium_bricks.json5" +hash = "2bf79af853275368828a0d471cf5d8dd1f439781cf3e1fcd623b94f42dcfea68" + +[[files]] +file = "config/blockswap/known_states/create/smart_chute.json5" +hash = "1a19683ce65287e5037a2712ca071f579cbec03a88f8b0bab68056426f4a331b" + +[[files]] +file = "config/blockswap/known_states/create/smart_fluid_pipe.json5" +hash = "7b13d1a70a680a65c1bae385b74c614840610bbbde3f82a7edfbdc27f199be9a" + +[[files]] +file = "config/blockswap/known_states/create/speedometer.json5" +hash = "bc84ead3402144dbb61412c896c7bedbecf17d17b493c1c4be5ce1a33a4a46eb" + +[[files]] +file = "config/blockswap/known_states/create/spout.json5" +hash = "46d84eea1efb30097bfe5fbe1d3e637233db077741530906689d0ce6796c2579" + +[[files]] +file = "config/blockswap/known_states/create/spruce_window.json5" +hash = "859d90498d11042e2e09a843242fe2129a5ee7c3eb40ee5a34ae099de502e017" + +[[files]] +file = "config/blockswap/known_states/create/spruce_window_pane.json5" +hash = "e5b80baf47faeda1238f6acc2c2722edba133bdcbe4d75da08fbcc8595f32375" + +[[files]] +file = "config/blockswap/known_states/create/steam_engine.json5" +hash = "ee29a6164eed73afa71080fd5e66119b13b88cbcd1165399f3195b92d5c42f7b" + +[[files]] +file = "config/blockswap/known_states/create/steam_whistle.json5" +hash = "a10f54f2f3504e55267eeea18f680f73a4117aa2c7a4d531cdd91dfb2027c8b2" + +[[files]] +file = "config/blockswap/known_states/create/steam_whistle_extension.json5" +hash = "cff5104ab08077bee6878ea5a5bc21be898efdeafcd2e9726cea26430b219536" + +[[files]] +file = "config/blockswap/known_states/create/sticker.json5" +hash = "a79cb9a76874a95313512638733e6eb36cedeae68813a5fa32c1213175b24699" + +[[files]] +file = "config/blockswap/known_states/create/sticky_mechanical_piston.json5" +hash = "0144223ae0aadfbfe3cde299b1c360fc7878a2da19f896a2f10c63bfb56e087b" + +[[files]] +file = "config/blockswap/known_states/create/stock_link.json5" +hash = "a034347a0cf5e7f6f3fcf85a702ed008ed5a4ba57cd1006efa7244b37067e42b" + +[[files]] +file = "config/blockswap/known_states/create/stock_ticker.json5" +hash = "7eabacaf7a12a32e99a4092e28d7487ae93674d11ef7760fa53ef088d8422a9e" + +[[files]] +file = "config/blockswap/known_states/create/stockpile_switch.json5" +hash = "15d7f80428561e2d59ac14839287d5a9b54ed21d0ebf852913c297d51df49705" + +[[files]] +file = "config/blockswap/known_states/create/stressometer.json5" +hash = "5c52f9418a775589187f1678d879e882d87b67f9944d08276205ee0c7170b0f6" + +[[files]] +file = "config/blockswap/known_states/create/tiled_glass.json5" +hash = "eca6df8714a260a796a29e7b3521bc3e9e9086f53a31a7cb9e327de35fc7af96" + +[[files]] +file = "config/blockswap/known_states/create/tiled_glass_pane.json5" +hash = "bcd5eb6a8acb9d5232fa8fce16f8bd85d68b383458fd1984c2475cbc6b7543de" + +[[files]] +file = "config/blockswap/known_states/create/track.json5" +hash = "ea5513ec1b17dc0b11b74f12a9ae5a54129c93aa006de5828b113547992c9392" + +[[files]] +file = "config/blockswap/known_states/create/track_observer.json5" +hash = "ff899815860e6df382ca20b989a5e8a46a161656b0fdea287307dd5abb272548" + +[[files]] +file = "config/blockswap/known_states/create/track_signal.json5" +hash = "70b31030bc275b9f068abae7feef886804ca44380063312f46db9ab1621fbbea" + +[[files]] +file = "config/blockswap/known_states/create/track_station.json5" +hash = "2a66b41d41a6a153083f7ae8e2aa5454abe8f4bae252005c5c2e8d3cbcd9d046" + +[[files]] +file = "config/blockswap/known_states/create/train_door.json5" +hash = "be4d82eb80d0335019d3193563a8bcbd5ec6ab1a250781bed7da3b53aaf84ddd" + +[[files]] +file = "config/blockswap/known_states/create/train_trapdoor.json5" +hash = "23bb6bc6f6b56a0155b4cf7075c0e41d1bb8d21b7503c34cb49fd26561f64630" + +[[files]] +file = "config/blockswap/known_states/create/tuff_pillar.json5" +hash = "bfa12d00e76c1f9289d1fcaef5ac24b91b813277d6eac45ac066ea70759b57d7" + +[[files]] +file = "config/blockswap/known_states/create/turntable.json5" +hash = "24fd73394306f1fb3c6c78f2f39619fef1a06b1f6d2d59af617c7b4d84325931" + +[[files]] +file = "config/blockswap/known_states/create/veridium.json5" +hash = "1d80dd3c8ef9394750bd0fea8cd4b9854c2fa9170edb3281ac4b2d1252e6e0dc" + +[[files]] +file = "config/blockswap/known_states/create/veridium_pillar.json5" +hash = "8861e9161a8bbd7985a8feef805d74d708be5017343aba17e08ca66b8c01f9ad" + +[[files]] +file = "config/blockswap/known_states/create/vertical_framed_glass.json5" +hash = "e2e00d8e440169a3dde1c833b7377eb259eb7b1ccb63ef7a95f3c6ef2dd15eea" + +[[files]] +file = "config/blockswap/known_states/create/vertical_framed_glass_pane.json5" +hash = "085669c45a6e33cdeaef0f8d77481b21d445ba7f09ec9dac8d7754f2415b47c4" + +[[files]] +file = "config/blockswap/known_states/create/warped_window.json5" +hash = "6aac60d23f0988f0606a630206ae1520d8ca3b9476cde9df45e9f49c879bca9e" + +[[files]] +file = "config/blockswap/known_states/create/warped_window_pane.json5" +hash = "d3d0dc49354b9a962e4d8d1dc0ddc56807afe3fa77d45bed83284ce068c2497b" + +[[files]] +file = "config/blockswap/known_states/create/water_wheel.json5" +hash = "5f9a4128baaa000500f74a9aa6ce93c42caecba68e4731e0fa7a9ea9cef6d25b" + +[[files]] +file = "config/blockswap/known_states/create/water_wheel_structure.json5" +hash = "23d4843bf5de84ee108f4e4676a860b43e1f6b0fda275671413270969bcf3cae" + +[[files]] +file = "config/blockswap/known_states/create/waxed_copper_shingle_slab.json5" +hash = "0789708ccae419bef5f017215237ac6c6a6e424fff00e8713b3afc68b29d25d2" + +[[files]] +file = "config/blockswap/known_states/create/waxed_copper_shingle_stairs.json5" +hash = "4d0462be26da4182f30e18b610bcab09426f0f995a6d41705f71902e79c028f0" + +[[files]] +file = "config/blockswap/known_states/create/waxed_copper_shingles.json5" +hash = "715ec0d87c83363b4a9038fd5cb7b52e3ccc45edb767e6dbd268b698648a6d42" + +[[files]] +file = "config/blockswap/known_states/create/waxed_copper_tile_slab.json5" +hash = "457cecd062feb85fbee9a744ec1f6ec80723ad50bb72d3100299e11082ac3e77" + +[[files]] +file = "config/blockswap/known_states/create/waxed_copper_tile_stairs.json5" +hash = "e8293831d9bed99cd29ddcfb9bf384f5613473147aad6874607e10aa78d4130c" + +[[files]] +file = "config/blockswap/known_states/create/waxed_copper_tiles.json5" +hash = "e947dd4b74adc7381e68d64c3a8520e1913b57bb034795430d54f5ebde52f07d" + +[[files]] +file = "config/blockswap/known_states/create/waxed_exposed_copper_shingle_slab.json5" +hash = "7e904e4d2b8b3afda523dfa77f69219a48ac11fe3431f9e439243d11e617e035" + +[[files]] +file = "config/blockswap/known_states/create/waxed_exposed_copper_shingle_stairs.json5" +hash = "40841cacb3741ddfbc81c1ca6b5f47a262e2750de59d4a610bc3b19e3fd45cd2" + +[[files]] +file = "config/blockswap/known_states/create/waxed_exposed_copper_shingles.json5" +hash = "ac9599c12e141394f619bc0b22a0aaae867427880774e34082b5046bfa32e662" + +[[files]] +file = "config/blockswap/known_states/create/waxed_exposed_copper_tile_slab.json5" +hash = "78efdc3e04af75bbd3755f84d1511f0531e4c8684c59d3957666a233b00e3a58" + +[[files]] +file = "config/blockswap/known_states/create/waxed_exposed_copper_tile_stairs.json5" +hash = "6ef88b8e8c20a8ea16288f6f6104fa44e9363259bb3cfbfed7f6dd34a6053313" + +[[files]] +file = "config/blockswap/known_states/create/waxed_exposed_copper_tiles.json5" +hash = "6e3d1c96cabdbcebd9979b155399a194e3369b2fa91a3f60ee38b34c7ff9cfb2" + +[[files]] +file = "config/blockswap/known_states/create/waxed_oxidized_copper_shingle_slab.json5" +hash = "7829a9d6febfae389d0671a185b8201989beb80d668f05654d04f9046a55f487" + +[[files]] +file = "config/blockswap/known_states/create/waxed_oxidized_copper_shingle_stairs.json5" +hash = "06da270061d292bf6ab8134e821ee211e5036211facfe8f6cf6a8dc4d0d174a4" + +[[files]] +file = "config/blockswap/known_states/create/waxed_oxidized_copper_shingles.json5" +hash = "6cf38efb23cd736d3e268b1df33a7ded06471a861d370d710ce57cc5bc48727c" + +[[files]] +file = "config/blockswap/known_states/create/waxed_oxidized_copper_tile_slab.json5" +hash = "76d380c97e448c0c51d2b91c0075afded2c44b67ab10c4c2e222423684ebfdb7" + +[[files]] +file = "config/blockswap/known_states/create/waxed_oxidized_copper_tile_stairs.json5" +hash = "76da8d983a31b4503aef735d5fa4ab461e34199ca924953b7dac020c306748ce" + +[[files]] +file = "config/blockswap/known_states/create/waxed_oxidized_copper_tiles.json5" +hash = "5bac2532a1f7be73d48eaf71e6968ba6b1ec7a5bda4ea6d53702d6be1427c9fd" + +[[files]] +file = "config/blockswap/known_states/create/waxed_weathered_copper_shingle_slab.json5" +hash = "8e550c960593e69ae640af92233d58b17a9cb7dca6589b2a95aebbc4d1c9791f" + +[[files]] +file = "config/blockswap/known_states/create/waxed_weathered_copper_shingle_stairs.json5" +hash = "5a18742ae6785c68adb35ac078067d05ca1bde6dbd72642d86012cc85cd27319" + +[[files]] +file = "config/blockswap/known_states/create/waxed_weathered_copper_shingles.json5" +hash = "7fceaf28d04d27704167ff0b7853a429c98bcc57fa66096a73039d6a1d08e2f0" + +[[files]] +file = "config/blockswap/known_states/create/waxed_weathered_copper_tile_slab.json5" +hash = "aaf504dfc5860407d811ac700aeb01e20ff6b116388f0bfe1f679ee9bd1f5970" + +[[files]] +file = "config/blockswap/known_states/create/waxed_weathered_copper_tile_stairs.json5" +hash = "42249dfe16078bfd9c7d725a9662fa88c313614a0b8651388535e5c921e2681b" + +[[files]] +file = "config/blockswap/known_states/create/waxed_weathered_copper_tiles.json5" +hash = "3f2e507e0a49614744fdde9f6a7f6caf87529c2f7ee81709d156b5f3d55003b8" + +[[files]] +file = "config/blockswap/known_states/create/weathered_copper_shingle_slab.json5" +hash = "920b49fd64bb37516124ff2d75c9d60ab126fd5b619bac5f27574637f51513f5" + +[[files]] +file = "config/blockswap/known_states/create/weathered_copper_shingle_stairs.json5" +hash = "d12c0641347d42f83b2c415e09aefb8670e5843b715ec3d400bde3b2eb60bff9" + +[[files]] +file = "config/blockswap/known_states/create/weathered_copper_shingles.json5" +hash = "1478e6a80b1b8c883e8afceddf71f0a6ac49b803cc6cb36cba207d4d60fc3c4b" + +[[files]] +file = "config/blockswap/known_states/create/weathered_copper_tile_slab.json5" +hash = "8c8b2f520cf32cce6c52bcac3092f31571aec963337f2dd165c09a240efcb601" + +[[files]] +file = "config/blockswap/known_states/create/weathered_copper_tile_stairs.json5" +hash = "c7a33d05617ee7bbfcb6907f65ab0952ee08e474e0578e3032ac7cc0d948ff53" + +[[files]] +file = "config/blockswap/known_states/create/weathered_copper_tiles.json5" +hash = "27105dea43678e59dc273be250e84d98f65ed6bda75bd9b4989277504126ea27" + +[[files]] +file = "config/blockswap/known_states/create/weathered_iron_block.json5" +hash = "79ed694d7e4289bcd83917527360b9ac2fb5aa30465989515941834354450bd2" + +[[files]] +file = "config/blockswap/known_states/create/weathered_iron_window.json5" +hash = "f54ce3861086384a5481a131b0efdd4a3f3efd5193bafa5ecee0c681c1a6fa72" + +[[files]] +file = "config/blockswap/known_states/create/weathered_iron_window_pane.json5" +hash = "3511da9e61480986835552b0f3f719a81a36215906f4acfc5c9ddbd7b2268af0" + +[[files]] +file = "config/blockswap/known_states/create/weighted_ejector.json5" +hash = "42643b2d0f20a7437ab47cb37c909c509664660408e1a58ead33833f6225d2fe" + +[[files]] +file = "config/blockswap/known_states/create/white_nixie_tube.json5" +hash = "0c44039869966bcac92a0222c36440dc571d6f2c7fc158dd7fb42e79a0fba108" + +[[files]] +file = "config/blockswap/known_states/create/white_postbox.json5" +hash = "2a02dd9856a5977a40cac42a1c7391eeea2d763f8b7e9de27efb97d22e6392e8" + +[[files]] +file = "config/blockswap/known_states/create/white_sail.json5" +hash = "8f8adb2795beb2a2dadcc974bf99ba598fcc20d838a4efb8b28370577f8f356e" + +[[files]] +file = "config/blockswap/known_states/create/white_seat.json5" +hash = "ee0762bbc4fdc422cc30fe1480037a7404000a634d956063af60d421559a83fa" + +[[files]] +file = "config/blockswap/known_states/create/white_table_cloth.json5" +hash = "cd1f71be4313e174daf6e20d22d22d9e4dece20540ddf256af97a77da7e23350" + +[[files]] +file = "config/blockswap/known_states/create/white_toolbox.json5" +hash = "4b6aaff644a5db94d2f7f26e8dc6ebb89ef63a3ebd6c3463814156c7f72d60c6" + +[[files]] +file = "config/blockswap/known_states/create/white_valve_handle.json5" +hash = "d08cc872a0d95f1abd4fdd420bc1b5d182704c2e79afb804f00549015ce2034a" + +[[files]] +file = "config/blockswap/known_states/create/windmill_bearing.json5" +hash = "4da9cfdc96cfa8a0fc7d092fa68adc96c45f5ff6ddf1da2bf85cfb48d285e2c5" + +[[files]] +file = "config/blockswap/known_states/create/wooden_bracket.json5" +hash = "15cc6983ae9613cc575f874403097caa551e9213e4060c30a2453229b5a9180f" + +[[files]] +file = "config/blockswap/known_states/create/yellow_nixie_tube.json5" +hash = "4d44c9d29ccca330e0de63c7c19b3bfb013e791d7dfbc19f9c3c8924b93b4a0a" + +[[files]] +file = "config/blockswap/known_states/create/yellow_postbox.json5" +hash = "d6b886b5f7f4fa780271343e3c38e87f54b8660ee20a29d14b02bb6e8d1c6163" + +[[files]] +file = "config/blockswap/known_states/create/yellow_sail.json5" +hash = "01bb1b342bdea451aa9b6399321343aa041866d012f2f1b8ea4e7a1638ba5358" + +[[files]] +file = "config/blockswap/known_states/create/yellow_seat.json5" +hash = "d8149714d723c2ee8134a2bd22045ad33d36f91991f458e6dec17965ba22775b" + +[[files]] +file = "config/blockswap/known_states/create/yellow_table_cloth.json5" +hash = "ab97bfc6297a5db93b05eccabf84e1952d237307520a193917dd215358ddbe56" + +[[files]] +file = "config/blockswap/known_states/create/yellow_toolbox.json5" +hash = "82a5c05710a447292dc8a57a111a3bb8ac134bd33d6b6ff874d28f333272873b" + +[[files]] +file = "config/blockswap/known_states/create/yellow_valve_handle.json5" +hash = "475f96a1423f5190461a4c8cda3eed76320fbf768737950da6b9d2545403a5ad" + +[[files]] +file = "config/blockswap/known_states/create/zinc_block.json5" +hash = "9528ff29a6663ef42acc2287bd124c6f9dcc958c3a54f8144c216180a8bc6de6" + +[[files]] +file = "config/blockswap/known_states/create/zinc_ore.json5" +hash = "1d62438af758f46d4314e1e2b00be873133ceaf03dad649e0d4a78e16961b3e8" + +[[files]] +file = "config/blockswap/known_states/createaddition/alternator.json5" +hash = "1a704bf51b2903b3afd06da66a6c7dbaaaad1c8e32492638ef7819306330b9e0" + +[[files]] +file = "config/blockswap/known_states/createaddition/barbed_wire.json5" +hash = "6293cbf80eddd172d31a3096078faf25da71c4576690228236d4f242f666d737" + +[[files]] +file = "config/blockswap/known_states/createaddition/bioethanol.json5" +hash = "a7f7fae284a30e193b4079ad7920cbd68f9b0c14f412de51692e34f775c5f21f" + +[[files]] +file = "config/blockswap/known_states/createaddition/biomass_pellet_block.json5" +hash = "f03b31ccfa084c43a8529b01708af0b80dda6abedbb368aca8b977338c1901e3" + +[[files]] +file = "config/blockswap/known_states/createaddition/chocolate_cake.json5" +hash = "870b2d2cb245b0cbdc316ed8ca3d952507eed7df74cffb72eb8c3cfc8da630c0" + +[[files]] +file = "config/blockswap/known_states/createaddition/connector.json5" +hash = "8c7020293da80e1e0d2aa635d3c221870e899fd825b50c2c3632dd3a12be766e" + +[[files]] +file = "config/blockswap/known_states/createaddition/creative_energy.json5" +hash = "ebbe2f88fa5801cac3e3b5eda33a62322fd28ca0b8940fbf8ef5f0f41a95156d" + +[[files]] +file = "config/blockswap/known_states/createaddition/digital_adapter.json5" +hash = "375e2c4d7dceb0a87adcce78d9a3b6b30ae0fba9a29b91e21abe3488378d6777" + +[[files]] +file = "config/blockswap/known_states/createaddition/electric_motor.json5" +hash = "36bcd640651a868618129cc0818bd2e41d22237a65f9daecca09f0558806d4cb" + +[[files]] +file = "config/blockswap/known_states/createaddition/electrum_block.json5" +hash = "ecf450aa028540a5d2cf86b9d0ba859eb3071aa3151ec95878326c961a858603" + +[[files]] +file = "config/blockswap/known_states/createaddition/honey_cake.json5" +hash = "aa1ca90f3aae390e98f8126b751343984f485b834111c8d093527c11ace74474" + +[[files]] +file = "config/blockswap/known_states/createaddition/large_connector.json5" +hash = "c3cce6a430edd962f254a23809804e5d90100764e0a4c95a87290b2ab3a1f24d" + +[[files]] +file = "config/blockswap/known_states/createaddition/liquid_blaze_burner.json5" +hash = "be6fa8a8d830751b5d97424ed5b9116a3c562fb2ac7767a45ccf5a48666e818b" + +[[files]] +file = "config/blockswap/known_states/createaddition/modular_accumulator.json5" +hash = "4b6d7d7029a9273cf6b4a24f377273970dc1fb3e71fc77547bf910e2c594628e" + +[[files]] +file = "config/blockswap/known_states/createaddition/portable_energy_interface.json5" +hash = "708c0e7eb93a5cb652ae4d718a4b19e79ac1426e09ce7d993f3667a10bd9c421" + +[[files]] +file = "config/blockswap/known_states/createaddition/redstone_relay.json5" +hash = "553fe04e08382b23145bfab76066f0f79112f215c1c3d8915c2431db95d4f939" + +[[files]] +file = "config/blockswap/known_states/createaddition/rolling_mill.json5" +hash = "ae409a183b2654fc8e5612a5f9148df243fe803b425f962b755de1879661486c" + +[[files]] +file = "config/blockswap/known_states/createaddition/seed_oil.json5" +hash = "5cde8c9ca9a4ef42fb28b98e487ac764262bc710491eb493c00d3e227faa9084" + +[[files]] +file = "config/blockswap/known_states/createaddition/small_light_connector.json5" +hash = "1df0e83ddf1dcb7bd06ec76db5c20e085806a195f200b68fb0adc423e13331d9" + +[[files]] +file = "config/blockswap/known_states/createaddition/tesla_coil.json5" +hash = "c4e46916f250c55a0e1e5fdd311b20b87ed210139b2fd7540f67ad52b7a6d20f" + +[[files]] +file = "config/blockswap/known_states/crossroads/alch_tube.json5" +hash = "3b5faafc0f95bf290274c69adf79f854e5acb3317c460c94cbe53cac6ec1b8f7" + +[[files]] +file = "config/blockswap/known_states/crossroads/anti_densus_plate.json5" +hash = "1273bd562cdc462421d4aa451059f9350f1df501b34e49f9bcef176e2806a9e1" + +[[files]] +file = "config/blockswap/known_states/crossroads/atmos_charger.json5" +hash = "b7c425269b7efbd255c39c91e1bee8935480348ac9b555200f502c304879c49f" + +[[files]] +file = "config/blockswap/known_states/crossroads/auto_injector.json5" +hash = "d1d49cbaa5261125b014d0580e2f3e6b5d30cce13cbc8e77224ad5e7d771e324" + +[[files]] +file = "config/blockswap/known_states/crossroads/beacon_harness.json5" +hash = "92db48d24005f537c6c44e269d3ba11682c36c9a8a52a0ac16686c06a981a3b4" + +[[files]] +file = "config/blockswap/known_states/crossroads/beam_cannon.json5" +hash = "cd16064d1edecf3b174174287c6bc6ca28a6246853aef9e04e95391101591693" + +[[files]] +file = "config/blockswap/known_states/crossroads/beam_extractor.json5" +hash = "dfa53e2a26af3473dc4af5309d87a2ef55c5a0eaa76a64424b5d9eb6b6bf7f9c" + +[[files]] +file = "config/blockswap/known_states/crossroads/beam_extractor_creative.json5" +hash = "4926bc346033e81e45fa7ff0139a64b4e90120768f1a6ff49bb7909a86a90001" + +[[files]] +file = "config/blockswap/known_states/crossroads/beam_redirector.json5" +hash = "7e604bb3824ad1825fde88f47622db73606f90dc6c7a0d13da7e072a9d230718" + +[[files]] +file = "config/blockswap/known_states/crossroads/beam_reflector.json5" +hash = "22f2ec25f83e7024aebafbdd74d58414dcc52f74e89aeda52175352c12c37be4" + +[[files]] +file = "config/blockswap/known_states/crossroads/beam_reflector_sensitive.json5" +hash = "2186030e40bd5247190bfc050339a610d1df3ca8c4ee637e92023a3c9ac7fe9b" + +[[files]] +file = "config/blockswap/known_states/crossroads/beam_siphon.json5" +hash = "06928cf83dfbdd7cd12971c8019dd7abac30da1b19faab222cd8938317c92422" + +[[files]] +file = "config/blockswap/known_states/crossroads/beam_splitter.json5" +hash = "18674f3a983ad0a6fe49ded01c909cf126c9c4f2702df4b1b9020d054de6e58d" + +[[files]] +file = "config/blockswap/known_states/crossroads/blast_furnace.json5" +hash = "17eb5323e6dc4f7abe6d18ae0f67342665bfe1a64bb127bb0ef44643af3c2add" + +[[files]] +file = "config/blockswap/known_states/crossroads/block_bright_quartz.json5" +hash = "422912aa4bbf16fbc9197cf975de2491218fc29f3a03396718dbef2a688d5577" + +[[files]] +file = "config/blockswap/known_states/crossroads/block_bronze.json5" +hash = "c73664a2157f31912f8308a20f4c957574def41cfbedf465db331a907ebd08f2" + +[[files]] +file = "config/blockswap/known_states/crossroads/block_cavorite.json5" +hash = "4dc2ccaa9ffa200d2a6b1f7a90e1c6cf0d26379c11729cb19d73391cea335c2a" + +[[files]] +file = "config/blockswap/known_states/crossroads/block_copshowium.json5" +hash = "fd9d31417895c6843d269e49c7229e9d89ff2f92a99249a20e742eac20457272" + +[[files]] +file = "config/blockswap/known_states/crossroads/block_pure_quartz.json5" +hash = "b3941a07523481bd403b5f68c9a661d02b2e135c8ce168f3f9dfc53a4d0bf716" + +[[files]] +file = "config/blockswap/known_states/crossroads/block_raw_tin.json5" +hash = "f1fab4bf87b27c231b145c05f21a0cbe918aab3da956a0a71f341b7f211de11c" + +[[files]] +file = "config/blockswap/known_states/crossroads/block_ruby.json5" +hash = "4feb4a62a00debd38e36fce536f623418436a36eefe7ec7e46a0695d4e0a4b87" + +[[files]] +file = "config/blockswap/known_states/crossroads/block_salt.json5" +hash = "d59b9bff1e5ff74bab9bdcfabe8570f19ad458688b2bd2403262fd59937d6aa6" + +[[files]] +file = "config/blockswap/known_states/crossroads/block_tin.json5" +hash = "d928ca1cb45ed7751e55e9dd7a35d3dbed1d7ca2c3f34a62303edacb8310aa7e" + +[[files]] +file = "config/blockswap/known_states/crossroads/blood_beam_linker.json5" +hash = "a5a45da3cf8ccaadb31b39ad7cd1eb38022a18581e227afd63f298647de47a31" + +[[files]] +file = "config/blockswap/known_states/crossroads/blood_centrifuge.json5" +hash = "edc63532214bfe68a32e0dce1c9f07f3e01d034a7e698b6159e884c12435c6b1" + +[[files]] +file = "config/blockswap/known_states/crossroads/brewing_vat.json5" +hash = "d7dab235ad2980b860ea471ede884f09559585152545b357629b272ceb1a7e2b" + +[[files]] +file = "config/blockswap/known_states/crossroads/cage_charger.json5" +hash = "68286ad75237b1d6439cac8b1e334f3a22c5d451b29aa8d09909cc860d02cb88" + +[[files]] +file = "config/blockswap/known_states/crossroads/charging_stand.json5" +hash = "8fad71cbb3e2e6e070f95867e67b49280ada21e5509845be9f061df1ba48e22a" + +[[files]] +file = "config/blockswap/known_states/crossroads/chemical_vent.json5" +hash = "793d230bd98e47ce5f0c85351de4d9e1f50e67b47de2a5b61fff678ebd060cd7" + +[[files]] +file = "config/blockswap/known_states/crossroads/chrono_harness.json5" +hash = "f28a70f83e47d4e995ce7470c9826d25470a74d02f41fd286216a48c80372e57" + +[[files]] +file = "config/blockswap/known_states/crossroads/chunk_accelerator.json5" +hash = "d9746630e76f07ae2c40b63cc30b85c6a45446854437e96127ada335317d2aab" + +[[files]] +file = "config/blockswap/known_states/crossroads/clock_stabilizer.json5" +hash = "1d14bc332cced36f837f3bbceda993e452d2fecc770ac5d50471e2a1d5abad94" + +[[files]] +file = "config/blockswap/known_states/crossroads/cold_storage.json5" +hash = "86cc03144e20c2f866eb32d48ac8e57594340c655b96f1b5dcdaebb172dedd58" + +[[files]] +file = "config/blockswap/known_states/crossroads/color_chart.json5" +hash = "c5ac1d580a12c7899bef67e8df38e81d5c0894824973c2dc9f44d97ba247d444" + +[[files]] +file = "config/blockswap/known_states/crossroads/cooling_coil.json5" +hash = "42b84354fcc27f6650f24e1302cf8e4e5b37cbd361e6210b29e7b2cc034928b9" + +[[files]] +file = "config/blockswap/known_states/crossroads/copshowium_creation_chamber.json5" +hash = "b6a2633f1b2944df512e9d010940ddb985a39a2204e7daf10d5956235f59a886" + +[[files]] +file = "config/blockswap/known_states/crossroads/crystal_alch_tube.json5" +hash = "739b67478be8b570ccd4ef87d4726b06eb21cb7f9a3c821bf4eee7fed4914a78" + +[[files]] +file = "config/blockswap/known_states/crossroads/crystal_cooling_coil.json5" +hash = "026ff618ea7b962fbdbb6376904438bceb7473f4881be1846d6d47f6e5431007" + +[[files]] +file = "config/blockswap/known_states/crossroads/crystal_flow_limiter.json5" +hash = "87d472a7dbff0e99ae2937f051aea4c634a089542b93b8f0e5b426c1d3cab847" + +[[files]] +file = "config/blockswap/known_states/crossroads/crystal_fluid_injector.json5" +hash = "5ae9026b5afc086f31a0da40ff7fd58cda84518fd5e36ddf63a424273e100fed" + +[[files]] +file = "config/blockswap/known_states/crossroads/crystal_heated_tube.json5" +hash = "4ca90c97f0f275f39a17549b6eacf29bd1ecf58e1548ed8349c5cea0c0b94f10" + +[[files]] +file = "config/blockswap/known_states/crossroads/crystal_reaction_chamber.json5" +hash = "5b5524a91d2928dcc3e55c1b9b6860294efe227c4a298cf41af17fe466d2476d" + +[[files]] +file = "config/blockswap/known_states/crossroads/crystal_reagent_filter.json5" +hash = "786fefe61cef1e4be4bd26040b78314b2b1d83d227cbe42e0b1b058fecbfc0e9" + +[[files]] +file = "config/blockswap/known_states/crossroads/crystal_reagent_pump.json5" +hash = "3c8b28f0e7478a090b884dc9c1967881e564780a815cfc9e1aa687d1f742c3a9" + +[[files]] +file = "config/blockswap/known_states/crossroads/crystal_reagent_tank.json5" +hash = "c0c0648425ba086c228bf170d2997178aef3d6f9270806866943a2d770ed5220" + +[[files]] +file = "config/blockswap/known_states/crossroads/crystal_reds_alch_tube.json5" +hash = "99e627b89e84fe929077291c1e16865e910d9e4c3b9e426a69227e763962f240" + +[[files]] +file = "config/blockswap/known_states/crossroads/crystalline_prism.json5" +hash = "dd637ea35f3d3c0c0067861557ef9f7f158f93aa22166f5a783303171cf7ba17" + +[[files]] +file = "config/blockswap/known_states/crossroads/cultivator_vat.json5" +hash = "54ed51330f972f14c965d44db8cc8027d6039514e1886bd4c9018dbe37f4d7db" + +[[files]] +file = "config/blockswap/known_states/crossroads/densus_plate.json5" +hash = "08b0f12be3c31ae496583179808f1d60d22d75ef2a1802e6a14e221d3192b2db" + +[[files]] +file = "config/blockswap/known_states/crossroads/detailed_auto_crafter.json5" +hash = "56f1b16365b5f7eb9db3003ad3d393270d28908b89a1a51519a2fa0f8e763147" + +[[files]] +file = "config/blockswap/known_states/crossroads/detailed_crafter.json5" +hash = "26e0e4af5518251d739c7f89a6149c4dd70ed7391f43b6a847175bfcc9b92c0a" + +[[files]] +file = "config/blockswap/known_states/crossroads/dirty_water.json5" +hash = "c909ab8abf66f9a919d77fd7813c76d18347e1f5cdf85904a2e64367de422227" + +[[files]] +file = "config/blockswap/known_states/crossroads/distilled_water.json5" +hash = "8dbc4f599a1ec0459f64ceb6391e302d695637822872a839c2e2d8cb0fbd54d3" + +[[files]] +file = "config/blockswap/known_states/crossroads/dynamo.json5" +hash = "fed0f2349eed194bba85b1a9aee34a248a0ae8f1e9a60b975e791e999d75b47e" + +[[files]] +file = "config/blockswap/known_states/crossroads/embryo_lab.json5" +hash = "efed09ecdba31110d8624117de8112058dce068db77d360fa1c7d6f36b694be7" + +[[files]] +file = "config/blockswap/known_states/crossroads/fat_collector.json5" +hash = "d81f87c274227478fd9d8e543a74fbaf0f54cb15b98cee014ae890548af31700" + +[[files]] +file = "config/blockswap/known_states/crossroads/fat_congealer.json5" +hash = "cf3652c403d31d4a6441b9d6251fe44b0410b6b3be005c80a13af97a34dc2d1a" + +[[files]] +file = "config/blockswap/known_states/crossroads/fat_feeder.json5" +hash = "55d4b598e84e6ca5148aca6e66e93dc3e70479d911cdeeee5fa2122b4b3e603f" + +[[files]] +file = "config/blockswap/known_states/crossroads/fertilizer_solution.json5" +hash = "6a654b816fa4223b211af8df0942ddad1bf7f723e8fc110513f323b5302ef0dd" + +[[files]] +file = "config/blockswap/known_states/crossroads/fire_detector.json5" +hash = "f1d7672a5b7188f1cd9cf6c571d97b812113d2804cd5c7033d3279081b7d0b7e" + +[[files]] +file = "config/blockswap/known_states/crossroads/firebox.json5" +hash = "c64919cd48d80d7b95f5245509d0987bce0db85f71641dc48f8768e3d4a0412d" + +[[files]] +file = "config/blockswap/known_states/crossroads/flow_limiter.json5" +hash = "fb3c5f4e3c394ec65f1c17be21c55263307a37ec7d761d7a1cc55f6fa850efa4" + +[[files]] +file = "config/blockswap/known_states/crossroads/fluid_cooling_chamber.json5" +hash = "1b8806c82931d49237264b90c0968df0cef431aabbaec0324aa945387451a31c" + +[[files]] +file = "config/blockswap/known_states/crossroads/fluid_injector.json5" +hash = "34f83046ada90e8443a923370d5bbc17e0eeec0b19806d62498a031a2e52546c" + +[[files]] +file = "config/blockswap/known_states/crossroads/fluid_tank.json5" +hash = "dfa5521262fc8bab01eb2f02da88a1a1570cc1440c418629325d75d823644505" + +[[files]] +file = "config/blockswap/known_states/crossroads/fluid_tube.json5" +hash = "da35b31cfcddfde45df6e62a562ef23ca95794d508d419440a822e1b9df00321" + +[[files]] +file = "config/blockswap/known_states/crossroads/fluid_void.json5" +hash = "b0154af8bf54dcae10cb87427e7787846a6fcea165c6b25453124147552aced8" + +[[files]] +file = "config/blockswap/known_states/crossroads/flux_node.json5" +hash = "78b2452306a6f8b8a8b1f0438a6f8ea4d3cb3a1aff12e3396823226248b4fb0c" + +[[files]] +file = "config/blockswap/known_states/crossroads/flux_sink.json5" +hash = "8d016c13ae0083a892823efa767528f17b94355cb6b4f6a439abd1760ca7954d" + +[[files]] +file = "config/blockswap/known_states/crossroads/formulation_vat.json5" +hash = "f520b74bcc5bb89b852d285aee0d917208ab536a4c61258d9caed9b470883448" + +[[files]] +file = "config/blockswap/known_states/crossroads/gateway_controller_destination.json5" +hash = "e60ed4110e394306008c5a988d765a4da5d682ce9bf8ab899e7e30a801230835" + +[[files]] +file = "config/blockswap/known_states/crossroads/gateway_edge.json5" +hash = "473a7032c5545991dea8a20f729ecfc9e873a965d13fb35fc237aae639357a60" + +[[files]] +file = "config/blockswap/known_states/crossroads/gateway_frame.json5" +hash = "96b00fdfef48858ee58cf3c12a09ea8ab5178f1e585348b287013bb664773c3d" + +[[files]] +file = "config/blockswap/known_states/crossroads/glassware_holder.json5" +hash = "7b9e9e9f4802693d14f916f7bce22160277ac99e93d6885b7ef9e8ca594e6773" + +[[files]] +file = "config/blockswap/known_states/crossroads/hamster_wheel.json5" +hash = "f28e7625e1cfc0a0fec92928b17de8ef3a3e285c8c3543f591fa671a8f7302d2" + +[[files]] +file = "config/blockswap/known_states/crossroads/heat_cable_ceramic.json5" +hash = "816f7c907303856b95e5dc32d53b510e07fd944126c6d7b1b1287cf66cd39ac2" + +[[files]] +file = "config/blockswap/known_states/crossroads/heat_cable_densus.json5" +hash = "169cd497a3d6df280084e3a47a3186fc5faeb6d5071251fd42f065112466c3df" + +[[files]] +file = "config/blockswap/known_states/crossroads/heat_cable_dirt.json5" +hash = "8687814a62bbe09914e4edb5be0f6c8448e5080a49e00302cf8fc499074b24d4" + +[[files]] +file = "config/blockswap/known_states/crossroads/heat_cable_ice.json5" +hash = "070580ca0af8e48a70046e89df9cf781dc72592b0e6dbead2bb0afdd71fda874" + +[[files]] +file = "config/blockswap/known_states/crossroads/heat_cable_obsidian.json5" +hash = "c26b0794023757de01d078dc648b5d44cbf313649e428fc390af3bdab0081998" + +[[files]] +file = "config/blockswap/known_states/crossroads/heat_cable_slime.json5" +hash = "9c5002bacfb1a5b53cc8f3b8042e4f032af1fb44ffc38de2411991747b2bee2f" + +[[files]] +file = "config/blockswap/known_states/crossroads/heat_cable_wool.json5" +hash = "7d4c504beabe649707f0d86b889ce60ff458a8b108d4015dd2a49952b356f029" + +[[files]] +file = "config/blockswap/known_states/crossroads/heat_limiter.json5" +hash = "1a64405d546089836d2c24c3fbe1d080f8d47f16d0c1960a31cfba9bb55b10f0" + +[[files]] +file = "config/blockswap/known_states/crossroads/heat_limiter_basic.json5" +hash = "daa7f39738bcdd33e7023d6535d4b482f700c014d41b70157f6c3079b501e1da" + +[[files]] +file = "config/blockswap/known_states/crossroads/heat_reservoir.json5" +hash = "59d9a020193bf1bd9dc1c439c3fa4aa8b90e3384534aa9059cc26b299955013e" + +[[files]] +file = "config/blockswap/known_states/crossroads/heat_reservoir_creative.json5" +hash = "6e8a210b2dc27b8220267700164c8917a4e5792660475e6bd6d95d9ca6582d63" + +[[files]] +file = "config/blockswap/known_states/crossroads/heat_sink.json5" +hash = "f2dccbcd49a345069ae1613e71d985d8d74f4bba3b995373baab3553488f19fd" + +[[files]] +file = "config/blockswap/known_states/crossroads/heated_tube.json5" +hash = "bc1960ac795da30930f74083f243f4dd6df3a4584d88a7d05c702353d1225374" + +[[files]] +file = "config/blockswap/known_states/crossroads/heating_chamber.json5" +hash = "3ee1c9590e39a1401835fd4640a60233932a8175767a69bdf5a974f537b138ce" + +[[files]] +file = "config/blockswap/known_states/crossroads/heating_crucible.json5" +hash = "a81c98faf6a6738f094cd9b93783180aeada8462cb35800242326d74552d3abd" + +[[files]] +file = "config/blockswap/known_states/crossroads/hydroponics_trough.json5" +hash = "40ab7d15de96fd41f2d905abb334dd9514d38f0a839a234fe66d3ebfc9ac6530" + +[[files]] +file = "config/blockswap/known_states/crossroads/icebox.json5" +hash = "fa50ad3ef128442d5d75e72b55f41294babf11c12788f496cdb4c2171b8c1531" + +[[files]] +file = "config/blockswap/known_states/crossroads/incubator.json5" +hash = "e9a977a346a67e97aec5992a0b8f69604ae738f43ed67a414183f875334dc107" + +[[files]] +file = "config/blockswap/known_states/crossroads/item_cannon.json5" +hash = "6885a6e9a579b6fbfcbda8dda4c97d0a30e0be7b504ecd571335ec6a18df8cf4" + +[[files]] +file = "config/blockswap/known_states/crossroads/large_gear_master.json5" +hash = "ac62ea3c80910c8686b6228f2fa52c132de017bb48af12e5cc87a71f85bfea92" + +[[files]] +file = "config/blockswap/known_states/crossroads/large_gear_slave.json5" +hash = "27d4eb2968616e9a172914510497e282ffac0a1d7f4add4d2e2c3b272b90199d" + +[[files]] +file = "config/blockswap/known_states/crossroads/lens_frame.json5" +hash = "b01ce290d40266f72740d83b27d0c3c69fe5fbe812dd62f3df826e340d9338d1" + +[[files]] +file = "config/blockswap/known_states/crossroads/light_cluster.json5" +hash = "148f9456219b6306570a3930686739d12f3ed9dfa1fbb707037be7ce5afc9d1f" + +[[files]] +file = "config/blockswap/known_states/crossroads/lightning_rod_extension.json5" +hash = "09914e980dfc9ae88b29b39bad34216c4d30b301bfda910792506ee10f27706c" + +[[files]] +file = "config/blockswap/known_states/crossroads/liquid_fat.json5" +hash = "7aa018d232849cd8cd560899c03fb8ed946ec97274245f515b6922b1d2b68f43" + +[[files]] +file = "config/blockswap/known_states/crossroads/lodestone_dynamo.json5" +hash = "5f53d7d4a3164e18348cd97b2deda81923a7bfaaa96c9bb2a079b15d6ea8ada0" + +[[files]] +file = "config/blockswap/known_states/crossroads/lodestone_turbine.json5" +hash = "faff199a1ef9e0e91ee1d355a6bd7d3b4a4ca2fd286581ec3567ab5fb75f3a82" + +[[files]] +file = "config/blockswap/known_states/crossroads/master_axis.json5" +hash = "baf9b3556ad1cc337a025fe2cb4f35010f6ddb352b08ea26144e65859a27c8e6" + +[[files]] +file = "config/blockswap/known_states/crossroads/master_axis_creative.json5" +hash = "4793449033209e605e50b6beab4987959b5b2bb13bf508edd7ff7ae551e28d77" + +[[files]] +file = "config/blockswap/known_states/crossroads/master_axis_crystal.json5" +hash = "5c50e8ea96e49ba01bcbd2e04d30786428ee79d5b1163695ff8db56475c893c0" + +[[files]] +file = "config/blockswap/known_states/crossroads/maxwell_demon.json5" +hash = "86423acccda1f47e3958cc6bc2114868567d8612c06d50c0ba2fec45ce2a2ff7" + +[[files]] +file = "config/blockswap/known_states/crossroads/mechanism.json5" +hash = "445bfa354597fcb3776ed545bb0b9387875ad3c02c452f021fe32abe9bd46a5a" + +[[files]] +file = "config/blockswap/known_states/crossroads/medicinal_mushroom.json5" +hash = "76fd1c8be4583220f15573027d3197dbf549e12991d2f154ad2b0a377c8e5d6c" + +[[files]] +file = "config/blockswap/known_states/crossroads/millstone.json5" +hash = "0b8178884b40a6f62fe1476a39a41516f393fe768b2fb919dad41e00a53c1eb0" + +[[files]] +file = "config/blockswap/known_states/crossroads/molten_copper.json5" +hash = "0da9b9c37ab06ab535eb5677ca23e09b5d5d3e20caba8bd8ee6669b77985e8b3" + +[[files]] +file = "config/blockswap/known_states/crossroads/molten_copshowium.json5" +hash = "c00fb8f67f787b84e62f9e5234e2946f1bcebc17b689dc22a7d2b6953b7f0867" + +[[files]] +file = "config/blockswap/known_states/crossroads/molten_gold.json5" +hash = "0dde4d4530f2ce712da10157ca98fa5add2150c6092e3d35f8d0cfac820f29cd" + +[[files]] +file = "config/blockswap/known_states/crossroads/molten_iron.json5" +hash = "d6c629aa1041cec3c9c23066eb376d10aa614da0b04ec5177a8b2c320929b745" + +[[files]] +file = "config/blockswap/known_states/crossroads/molten_tin.json5" +hash = "c916a17d1b03b2eceaf4566f40f4a92514777732f18a4d178f380eab8fc24f58" + +[[files]] +file = "config/blockswap/known_states/crossroads/nutrient_solution.json5" +hash = "24257a89ad344a16efbaf8349593092475d007a9a0a83bd509f579cfb09743bc" + +[[files]] +file = "config/blockswap/known_states/crossroads/ore_cleanser.json5" +hash = "3a5c6ca282b52d1954b7a18d14d4f6f9ef0627f01f30dd93ce8c7e734d1572e5" + +[[files]] +file = "config/blockswap/known_states/crossroads/ore_ruby.json5" +hash = "f70fec154eee69bd583767ca3a282971a6d10644ef262793ad09e80b31825123" + +[[files]] +file = "config/blockswap/known_states/crossroads/ore_tin.json5" +hash = "537d5eda2061bb6906a18f3e01834f1d19fd09c1d033e7d75846a37c583ac0d8" + +[[files]] +file = "config/blockswap/known_states/crossroads/ore_tin_deep.json5" +hash = "ac476e2b231acb15acb234fc687a9680ab8be3ef6731dc0cf85450f019fdc2f0" + +[[files]] +file = "config/blockswap/known_states/crossroads/ore_void.json5" +hash = "f85671e278ee637bae598505b3e8e991395a74d0c9334aed6f0d94ab969a3dbc" + +[[files]] +file = "config/blockswap/known_states/crossroads/permeable_glass.json5" +hash = "e180a94c00d4b40dbef1654eb0ccdd4e318cb78054d72b271dd9259625f84c72" + +[[files]] +file = "config/blockswap/known_states/crossroads/permeable_obsidian.json5" +hash = "de738b0fec35334483b58cbc6062b26c37716abe165f0bcccc95e19ee0a1cd95" + +[[files]] +file = "config/blockswap/known_states/crossroads/permeable_quartz.json5" +hash = "eff160978b4e649912a4ee67bc553336d4890a00b6ad0ff8510d78b3dfc6c166" + +[[files]] +file = "config/blockswap/known_states/crossroads/petrol_cactus.json5" +hash = "4e2c1ca98378b694ce404c1cf5a265bb9e65e7bf241ab0d34d9e56eb1b6cfd11" + +[[files]] +file = "config/blockswap/known_states/crossroads/quartz_stabilizer.json5" +hash = "aa381d39c225e08b07cdbbfa77e133c3a630342ee02e6a695399fb76eeedd33a" + +[[files]] +file = "config/blockswap/known_states/crossroads/radiator.json5" +hash = "347ae74676aee28c3cbf14e08efed1f3ca8222c710949fbe587ccdc2776a2790" + +[[files]] +file = "config/blockswap/known_states/crossroads/reaction_chamber.json5" +hash = "62980cd65d9fa2244854d4cbbd5f4d764653b20635c5887a75da8c81f03d6e25" + +[[files]] +file = "config/blockswap/known_states/crossroads/reactive_spot.json5" +hash = "a1158bc51b590d1a6305f0f2be6292a90dda03734d7fd1d50eac369d22cdfe34" + +[[files]] +file = "config/blockswap/known_states/crossroads/reagent_filter.json5" +hash = "239b1b823e384ed2cabb887f28dd0f157c867e88fcc28a62b13220ed13e1789b" + +[[files]] +file = "config/blockswap/known_states/crossroads/reagent_pump.json5" +hash = "08d05c9d26e7c3726334304ed73982d5382e8a2a7a6bd160b6fee869bcf08dde" + +[[files]] +file = "config/blockswap/known_states/crossroads/reagent_tank.json5" +hash = "9ceca92970191c3282fd98fcfbcfd71b456012fe238270e082dfe6fd7d8e7b10" + +[[files]] +file = "config/blockswap/known_states/crossroads/reds_alch_tube.json5" +hash = "24eea3fd9e3c95bc98aa14d7b01a00cb8ce9ee3aa1496e11d2f97887444b0d5a" + +[[files]] +file = "config/blockswap/known_states/crossroads/redstone_axis.json5" +hash = "6c5a408f8f8f02e2b58e09b766cf0b2524fc960d4bf4997a51b59fe2c14d4af1" + +[[files]] +file = "config/blockswap/known_states/crossroads/redstone_crystal.json5" +hash = "a2291013d40036a96fb9041949b9b8a781ce7897ec03e660234f585ce9cd5822" + +[[files]] +file = "config/blockswap/known_states/crossroads/redstone_fluid_tube.json5" +hash = "80877c905ce6e85af5d1653287349ac66d97b82a0955a0b4f5d8812c3b8c8303" + +[[files]] +file = "config/blockswap/known_states/crossroads/redstone_heat_cable_ceramic.json5" +hash = "0965978907458ecfbbccb8415210fd0476d90a7fa99d2bcb654bfc816e899d57" + +[[files]] +file = "config/blockswap/known_states/crossroads/redstone_heat_cable_densus.json5" +hash = "0a66a9389b56e46f1f5a6a3af4f59589a927a926c56f82435ab260c52a1f4073" + +[[files]] +file = "config/blockswap/known_states/crossroads/redstone_heat_cable_dirt.json5" +hash = "c5fb3f2c7ee65c424f30dd455fe93807ba0d49c1df8ee64c4af1db0ccc2bac83" + +[[files]] +file = "config/blockswap/known_states/crossroads/redstone_heat_cable_ice.json5" +hash = "599317219514cb7fe9d1150023d3379eb9bc095032cd4ba95743c691fce40cf4" + +[[files]] +file = "config/blockswap/known_states/crossroads/redstone_heat_cable_obsidian.json5" +hash = "19377fd756886db310075316cd96ea8e7a3d813264e1949cdfc43ac9b03b6578" + +[[files]] +file = "config/blockswap/known_states/crossroads/redstone_heat_cable_slime.json5" +hash = "c7e978f9df13aba707d970597609d5e61116bad631ce2dbb03334f5ef3aa8d7d" + +[[files]] +file = "config/blockswap/known_states/crossroads/redstone_heat_cable_wool.json5" +hash = "586df6ebda99e72cee537db6b4d0af544648d1baa543c0f36a65730ed74e0461" + +[[files]] +file = "config/blockswap/known_states/crossroads/rotary_drill.json5" +hash = "1c1e6217c4f680eb687944254763797e77f2c12704c0e116660cc879b1fcf44b" + +[[files]] +file = "config/blockswap/known_states/crossroads/rotary_drill_gold.json5" +hash = "0222a021f1a8fe4eccfc0a461b51a7c4e71f94ac03fc3310e570e91c677bb3c4" + +[[files]] +file = "config/blockswap/known_states/crossroads/rotary_pump.json5" +hash = "6fcbdcf953a7aeacf99e9ca57924a8d85e2932aced90decfd3e679093fc519d6" + +[[files]] +file = "config/blockswap/known_states/crossroads/salt_reactor.json5" +hash = "c9c98761464030897e62f10a6f9d42c732e44a4aa32286fb9f0952597d72cf08" + +[[files]] +file = "config/blockswap/known_states/crossroads/sequence_box.json5" +hash = "98ea23442db51f9a8a6190814a6d4fc4dd58959ac2ba6c434638f4855bd77146" + +[[files]] +file = "config/blockswap/known_states/crossroads/solar_heater.json5" +hash = "01e16cc79eeb71aff0481e3197c2e18177c1a2bccab7b5100e378ac3bec0fca1" + +[[files]] +file = "config/blockswap/known_states/crossroads/soul_essence.json5" +hash = "9aff5ba09354addcbd10db3c3b17069c1343b85b59f2feeece954915eba362cd" + +[[files]] +file = "config/blockswap/known_states/crossroads/stamp_mill.json5" +hash = "552a65bd0678b62c336b5379e42d2cba19a09160a72045ae330693036ea132f8" + +[[files]] +file = "config/blockswap/known_states/crossroads/stamp_mill_top.json5" +hash = "b999e78b2b25b9a777070bb9d21382d1a5ad10b1a6193aedcfb8738ad9392059" + +[[files]] +file = "config/blockswap/known_states/crossroads/stasis_storage.json5" +hash = "d43f30ce5b23b2376965e5cc5cb7e82c49c171b0ee6e2622d03e5558db10995e" + +[[files]] +file = "config/blockswap/known_states/crossroads/steam.json5" +hash = "778c6afb9e340d7a786a14bfa54ce659248a5d5a27b2d100f78a076c47653bd6" + +[[files]] +file = "config/blockswap/known_states/crossroads/steam_boiler.json5" +hash = "caea7628e2be633b5d5b23f85167f35c22e4f61117d8ea408d47b1c208260d77" + +[[files]] +file = "config/blockswap/known_states/crossroads/steam_turbine.json5" +hash = "c5207d715d68f92ca0069e81de259b310cf2fc2c6b96ef0ffd1c8ef2554f31a1" + +[[files]] +file = "config/blockswap/known_states/crossroads/steamer.json5" +hash = "b8af15f216c4566a2ed4457917e280df4964662fc5ca068a8aefba0cb04853b9" + +[[files]] +file = "config/blockswap/known_states/crossroads/stirling_engine.json5" +hash = "e83a6faff8722f0070d98be9f038eb0cf93c9aa7cf97e2b7406ef11c30f28972" + +[[files]] +file = "config/blockswap/known_states/crossroads/temporal_accelerator.json5" +hash = "747e617c75c2bb3460123e8016f9696c95dece4538b552ccf020068d6a169064" + +[[files]] +file = "config/blockswap/known_states/crossroads/tesla_coil.json5" +hash = "039ded57bb7ea4b66fd0ab78cdda4ab45ff108b632b2689b625368eda43ad16c" + +[[files]] +file = "config/blockswap/known_states/crossroads/tesla_coil_top_attack.json5" +hash = "afeefd3d84da2cd5a9d6886d701c6229c922750b48f2ef03610ad64576543206" + +[[files]] +file = "config/blockswap/known_states/crossroads/tesla_coil_top_decorative.json5" +hash = "e518e85a27c83c82675c25fd397b5144b43d18f09ea869115e4ad63cd490f36d" + +[[files]] +file = "config/blockswap/known_states/crossroads/tesla_coil_top_distance.json5" +hash = "b763c1fa7e8b059edb97a6b30d42a21698dc5e52043eb7c0c6f18a57d42a961a" + +[[files]] +file = "config/blockswap/known_states/crossroads/tesla_coil_top_efficiency.json5" +hash = "2ddafdd44304708ce5be968ebd079d71fa8901f6c2fd8864a3c33b2c9cf951e3" + +[[files]] +file = "config/blockswap/known_states/crossroads/tesla_coil_top_intensity.json5" +hash = "472e2c900977bb5073ad6a34b2de1a3f814619ff21c999f9e0956941412c911d" + +[[files]] +file = "config/blockswap/known_states/crossroads/tesla_coil_top_normal.json5" +hash = "a375871aa942067f1487f58d3b1c597a65a7e1f78642b21aa568726fd28ff750" + +[[files]] +file = "config/blockswap/known_states/crossroads/voltus_generator.json5" +hash = "59cf2393f6ea663e1ba30b769f357d83f12fce9fa145c160f2a2edbb54a42899" + +[[files]] +file = "config/blockswap/known_states/crossroads/water_centrifuge.json5" +hash = "dd53369eb6ac3903fe3af83f3d795da6d3fc3ad3dcfa76369baf7e4030d26d48" + +[[files]] +file = "config/blockswap/known_states/crossroads/wheezewort.json5" +hash = "78150211af93f71240b6e61ad05c99057b5e456987d245a45f642732e94a22d3" + +[[files]] +file = "config/blockswap/known_states/crossroads/wind_turbine.json5" +hash = "5251b16178d80719e7dbd36043faeeb6706037258bb30bfa92c31f6c3af33814" + +[[files]] +file = "config/blockswap/known_states/crossroads/winding_table.json5" +hash = "9f6ced64a3d4f32274ae8b92d685bb3347b2a1582814cdbf10ba2f41afd4a6dc" + +[[files]] +file = "config/blockswap/known_states/culinaire/cheese_cauldron.json5" +hash = "6d44911381c49fcaa0dd6972089098ae5915dc9b25e8cb4a5bc3f14599f9fc95" + +[[files]] +file = "config/blockswap/known_states/culinaire/cheese_wheel.json5" +hash = "51d4130997c82d707a8631b9f195851c7565d25e1ff3e11b6b192bdc05ef54cd" + +[[files]] +file = "config/blockswap/known_states/culinaire/dark_chocolate_cauldron.json5" +hash = "0a393d910e7de9a3cfb3de04d590f9ce3539887adc5d93e126d731d9389219e0" + +[[files]] +file = "config/blockswap/known_states/culinaire/kettle.json5" +hash = "79907a1237c29867b895f0704da2d75504b6e3c37812458f7fdbfd6b2a517347" + +[[files]] +file = "config/blockswap/known_states/culinaire/lettuce.json5" +hash = "b8645d24142bf708e6c6feb4266002a554d4dd02b401a65909967f1edc6665d6" + +[[files]] +file = "config/blockswap/known_states/culinaire/milk_cauldron.json5" +hash = "6133b9392de29b02b352f9d3d97c3fe2437dfa7cbda91b789339a0eabe867ec9" + +[[files]] +file = "config/blockswap/known_states/culinaire/milk_chocolate_cauldron.json5" +hash = "77a6f968a6226668b0a8f278fcc5171fb5951629218d338fe1bc23550f40011e" + +[[files]] +file = "config/blockswap/known_states/culinaire/tomatoes.json5" +hash = "083b905bb51305a91e90d5ac2d76b84af20093c2834bc6fbc896d544c91170c4" + +[[files]] +file = "config/blockswap/known_states/culinaire/white_chocolate_cauldron.json5" +hash = "236aef45335102a10b7934d3608e4df8f1d306f127d49fd8c0e857d59d4c1e48" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/acacia_beam.json5" +hash = "454055bd40bf944ed5d0ca4bc87cf13c6ae6bc7d8765d460142ea10686d10d10" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/acacia_palisade.json5" +hash = "d3899d24b6d8a9a8c22a79f4ad910420a0745c10173dc71c09117c7f7db3a597" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/acacia_seat.json5" +hash = "2bfbd6db8d331809e35f69418648781a2a2103290bcd288bb49ecaabb4398ede" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/acacia_support.json5" +hash = "444b0801674d3b097b77cb30e70c638c54ffab607d9a65e11e39305257d4ba0a" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/bamboo_palisade.json5" +hash = "e8aba6caeb1a88fecef7387fcadbf276d12330621acac7a6a535efc9ef12ead5" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/bamboo_seat.json5" +hash = "4887fca3ed7d0f9f2876f0c7a85aeefcde5b0b007421aa91d8d58ac3de62562e" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/bamboo_support.json5" +hash = "46fcf60565c6c01448112449831027833ca1e0ac038bb60181975325a6d4c605" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/bar_panel.json5" +hash = "cb4677e84f4f8fea4e9b4e41ff7f48262ceba0a491279b895bdc6388bcd2cfd1" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/birch_beam.json5" +hash = "d2b091e1bae02fae8402e8d12325b56614610a173e26c0e90f9ed360112bdaa4" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/birch_palisade.json5" +hash = "9dbc7ba8244346b2813e2d6191ca22026812a75567c74f7c22e22cf9d7980acd" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/birch_seat.json5" +hash = "5db4f2a98a5eaeb901770bb6b165ddfa040dc79a42957f5aeeb87479b50a7b9c" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/birch_support.json5" +hash = "ca8599f7cb17cdc4207d616185c592f1d62950f8673eb041dbd176a0b7c0372a" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/bonfire.json5" +hash = "f9a6f6395f71779c8746230808be856b28398e04558b3c391819121b19720f54" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/brazier.json5" +hash = "2f3bde79a94505967f0d4fec4579c500c17f9c5305309f3f241c5d321926cca9" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/chain.json5" +hash = "80dc51a02df6087fbb792f6f269ef1e8ab7278e3b91510c56bbe40092168df1d" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/chandelier.json5" +hash = "4e090d5e235f2b9624061a2d1c1412d9f20d097eea86f1b942c1282ab2f08ed6" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/cherry_beam.json5" +hash = "a02ce148262ee8c0a74c7a04d72ea18df57c0575bc87c4da85eed1df4ce1577b" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/cherry_palisade.json5" +hash = "c542edccaf714ec7943d3543d8478cf96fa3826fc5f9bc3d8e5fd13a5a0ad0ca" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/cherry_seat.json5" +hash = "c951cabc08050e02e1200f94a4803d178d7b351ddc89c98454f67e2386000319" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/cherry_support.json5" +hash = "a4b8470c94ac2b82db4f9e1397f61c6e65eb5edfcc6c95e76a8d862cedafeefc" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/crimson_beam.json5" +hash = "f97af51f29d6ff8ecc9475f018faa4057eaf250a58ac7e33b06814d38b0e779e" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/crimson_palisade.json5" +hash = "91983118f77e76e69615f51af612aaadb3253e48e74912cdcd3882d9da5c07d8" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/crimson_seat.json5" +hash = "06e2cb1ed46825b6e3858d7a79cd134071dd0cfabfd0b3d9c6b0b9d6611efb1b" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/crimson_support.json5" +hash = "98d53704ca595a29a6d02a7c35c60081bebd1bc532455a673269920aad3a43ca" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/dark_oak_beam.json5" +hash = "c8b8c80a1a9f2b9a8b3ed40a725921e16bc96b93b72984347c03d67bc36ecfb8" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/dark_oak_palisade.json5" +hash = "71e66da669fd7a7510b3d8779cc3ca10e8bac6cf2c4dc200bee2ed7cd55c0b8f" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/dark_oak_seat.json5" +hash = "6f20ea8a08491d7dab8f70e6b18fdf9dba1559137608932cb4aa674b04dd0aa9" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/dark_oak_support.json5" +hash = "3df806023a59e48272677cac79ae9dfa7f28416003966e53fa837641faeb2f2b" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/jungle_beam.json5" +hash = "3ee11bf4c51dd53a0e696efff9d1c71270e429904fbcd323b894298bb9e30b1a" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/jungle_palisade.json5" +hash = "c46213cc7b4df05563574db8bf97f1e54ced30fb97fc7d12e969d1e5ebcb985a" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/jungle_seat.json5" +hash = "c5d74e49aa9b0b924d77aec74f91b407a961c67d3585e9fcc8946afd9ca47eb4" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/jungle_support.json5" +hash = "a80caf0f43a4f39e563024381d9eb9ea037f68d1801268abb1808afc40abdf13" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/lattice.json5" +hash = "5e44c554407597172d3e011bbf750d8257f1eaead4482b201959370bea80b1c6" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/mangrove_beam.json5" +hash = "d80abac0f5286ee9556fdd36de72ceb29e28a4a2bed4604c67ca726e740ef9e9" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/mangrove_palisade.json5" +hash = "eb36141ee730d9e10ad2118177b3d384b092993312754fcf3fc26038e2f60888" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/mangrove_seat.json5" +hash = "b6083c36b263f082b4176b8be0b13204b1d29de682d9ca3561e167fd8e563f99" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/mangrove_support.json5" +hash = "b78fad0a01493f0928eab314ba87a659696c546677a2451690dbe94d0a733928" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/oak_beam.json5" +hash = "c384353ef6604663087b8810da585b806655d18972234c740bbb81459f412ee0" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/oak_palisade.json5" +hash = "69ef8481cc93d78a7d1527c58974d223fbb094d7e158d5c2d650a6d37d1c4de6" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/oak_seat.json5" +hash = "1332aadf6d8dd3b72fd0014ebd29233d1f7932ed0cb298a28926bd2826fff976" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/oak_support.json5" +hash = "315aa445da8c1fa8831ce981de5327a9b4064dc1a7df42289671d14f60c6b4a4" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/rocky_dirt.json5" +hash = "7bbee0c2a674320e6b944c5182a7cd27ce158a0d68e952d444574d587a47ebdc" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/soul_bonfire.json5" +hash = "401179cc4e1f822a53798e1f78e6071f32687a193521c14d63514279979029b8" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/soul_brazier.json5" +hash = "90f96586a2724528a142c33d84290acab5a16556d9867423678c44031f416b14" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/soul_chandelier.json5" +hash = "5b241219df22493e9ae244e9074f79e41fa806a3a674696d3139ed2f2f247d2a" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/spruce_beam.json5" +hash = "b7ebcf04f9d341e79d7bbeb28a0a6ab4ffd3be5613b657df341ff7ca44e3e7de" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/spruce_palisade.json5" +hash = "23d1af2f66e164bc5d59d37d19b9d5e982c8f3d8f5bfa7a9daff1a583bcfb537" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/spruce_seat.json5" +hash = "2d3f75ff227453a1ee5dda16f9225efc363f378b58e676009d34472635f714ee" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/spruce_support.json5" +hash = "3e83c993c5fd3a1af565436599285e123ecda7b968344b7ddad93b0cd7c61f83" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/stone_pillar.json5" +hash = "e5fdc3e5e69ff8854be0bf9da924be52dff611a22798cd25a93941c99421f7d5" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/thatch.json5" +hash = "0df49b864a78d412ddd4027458020d4169786a995f35f7268a33790823ed7ae8" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/warped_beam.json5" +hash = "128ec8aee5d69e4de58b3f11aba9920e6ff3903d8549175d44ed52c3a12e780c" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/warped_palisade.json5" +hash = "98a21be8920094b7339fd402b5db3efb233d2451836355f7486dc003424ad2eb" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/warped_seat.json5" +hash = "38dc94d40f45fb06e30a9a2c8910a5634d01dd17091732acab30425437484fc9" + +[[files]] +file = "config/blockswap/known_states/decorative_blocks/warped_support.json5" +hash = "6e4de519f85964f956bb1c3df36c7f7f8358b4371e4ba4a6d8b4185e4dde291c" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/big_oak_branch.json5" +hash = "a29e60ae98bb9e5fce2c21e0bdd1640449b6e4c4ff0897e7b8092e8ecbebf8e8" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/cypress_leaves.json5" +hash = "5d238c6c8414209550ab7e2aac034b874ebd4045a8eb1adde453b5861dd61d32" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/cypress_sapling.json5" +hash = "8a4be3a4a844b8282cbcb2ade3ec7481b8f40bc9a9686e04385317d8f72610a1" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/fir_branch.json5" +hash = "1321cf044a6926ac8cf229d5355fc0c059742694ccd5619e764b64927d6beb76" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/fir_leaves.json5" +hash = "58e78fffc961bd2ead4784008f89bfd2225d21ce3cc5eb574d643ee84726f674" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/fir_sapling.json5" +hash = "d1bd619ab06e1cac1aa04e5b99935c0f6f3445ff4bd831530ef0181ec767bc36" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/palm_branch.json5" +hash = "73f92b66a1c943f94aae52cde20aa1323c29ffe5b96daa054facdd34de107cde" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/palm_leaves.json5" +hash = "fc4c8859fef2dd647ae0be86c7039ed103b8eb83d9deaceffee65391bc55562a" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/palm_sapling.json5" +hash = "e58a65d3e28d5f0b5d3f2c71a1f8faa4d7b96a95c5004926f1a8c778fa8ae598" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/poplar_leaves.json5" +hash = "9627c70ac3cfdeed981ad6887f955bceed4311001193b881e108524b6a6aa99f" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/poplar_sapling.json5" +hash = "fbac3ed021a9df40f19661fb6e5b964921fec14b358a462504ade725348f9f1b" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/stripped_big_oak_branch.json5" +hash = "73783234b5bec28eab43bef6980610112956174fc254faa94daf7904a7694f1d" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/stripped_fir_branch.json5" +hash = "4cfa5b4ba982a5982b012037a0d6d96ab94c366ab6f1960c03ecda6f9e9e3adc" + +[[files]] +file = "config/blockswap/known_states/dtaddon_lib/stripped_palm_branch.json5" +hash = "a50f2a5e10d4596b3d4b81911b1b222ccb89742978dd0246240c774ad74a5c15" + +[[files]] +file = "config/blockswap/known_states/dtecologics/azalea_branch.json5" +hash = "3835caa9e1debac95c57c145c06ca5a421ee2aeb6da7acde9ca2f5d5d34d9d17" + +[[files]] +file = "config/blockswap/known_states/dtecologics/coconut.json5" +hash = "99a83b3bdbb1528f9db28fdf4464012593bdb61cef487b567b2d8241a872bfdc" + +[[files]] +file = "config/blockswap/known_states/dtecologics/coconut_branch.json5" +hash = "37479f139be5fd7e3c963a3d433a899eb862e3c5308454493e299a3f2bf157bf" + +[[files]] +file = "config/blockswap/known_states/dtecologics/coconut_leaves.json5" +hash = "600cb88b3d264ad2920dc9c55418cf991b706aa5537f03c4d42821237dc5a0ce" + +[[files]] +file = "config/blockswap/known_states/dtecologics/coconut_sapling.json5" +hash = "f759e952f9edcc7aa7c3d429b13b48249844413cc6059614e7a2eb261f84f67d" + +[[files]] +file = "config/blockswap/known_states/dtecologics/stripped_azalea_branch.json5" +hash = "fd02837267fa49cf86e1ec6f19e60093708c1a2b5549d9abce0b5a0d0584d1b5" + +[[files]] +file = "config/blockswap/known_states/dtecologics/stripped_coconut_branch.json5" +hash = "cbcee38cd59cab41c193f4c14670444f95de5683ada7f96d049f8cec33442b3e" + +[[files]] +file = "config/blockswap/known_states/dtecologics/stripped_walnut_branch.json5" +hash = "3a7a3f7b957e232f3c9bf5e426c28506921363be3870cc9afd7c6c7cd7a75c4a" + +[[files]] +file = "config/blockswap/known_states/dtecologics/walnut.json5" +hash = "44acec154cbe7bdde834bb39334cb2c9dee1480b232b8c8c82113d0748141cf0" + +[[files]] +file = "config/blockswap/known_states/dtecologics/walnut_branch.json5" +hash = "c6b25131cb89c832a25c54f373ed7e9b906b1938265f8e02cc3d8039a91b5bdd" + +[[files]] +file = "config/blockswap/known_states/dtecologics/walnut_leaves.json5" +hash = "88eb47e5be4da9cf37ed8cd820452aad45ba99e208ae2a4aaa4ef04e390adfaa" + +[[files]] +file = "config/blockswap/known_states/dtecologics/walnut_sapling.json5" +hash = "2e2722b040da64bd74f2045b8f4eb06d00896567be3a95a2dceead58584105fc" + +[[files]] +file = "config/blockswap/known_states/dtquark/ancient_branch.json5" +hash = "df8b82717ed1f999e9c6fb4a53642ad5127b99e278538682a289d37814198635" + +[[files]] +file = "config/blockswap/known_states/dtquark/ancient_fruit.json5" +hash = "825e3e98338c67e0b1d71d24931a76c51711d8ee153d3906443aca3cbf933d80" + +[[files]] +file = "config/blockswap/known_states/dtquark/ancient_leaves.json5" +hash = "33446feaae267d5484afec9e4ac54dc962818c88ee69a082f37023b71bf5e246" + +[[files]] +file = "config/blockswap/known_states/dtquark/ancient_sapling.json5" +hash = "fe067b15b6d0f7986c47ecc10eb4305acfc58ced3a67c80f859baaf43690da01" + +[[files]] +file = "config/blockswap/known_states/dtquark/azalea_branch.json5" +hash = "604d091c10c3ea4ecffd4deaca33dfab80c20c2bfee6d1738ebba1b6cdd2fbfb" + +[[files]] +file = "config/blockswap/known_states/dtquark/blossom_branch.json5" +hash = "4ded8de05a12b9344b9c2953bd372736a411191c1150cd09ba7f858fe0cb0ba6" + +[[files]] +file = "config/blockswap/known_states/dtquark/fiery_blossom_leaves.json5" +hash = "a43c258acf1d71e1de69db50e81482b1b69fbef22b448286e8bc1915ffc53369" + +[[files]] +file = "config/blockswap/known_states/dtquark/fiery_blossom_sapling.json5" +hash = "928107b88933614e04288d615652d4fed11ef4f5e2b41de88bf9ef724f42404a" + +[[files]] +file = "config/blockswap/known_states/dtquark/frosty_blossom_leaves.json5" +hash = "92e095287fc865b12047d25d50c5caf0529218d6f5aac80fe714b90917c004a4" + +[[files]] +file = "config/blockswap/known_states/dtquark/frosty_blossom_sapling.json5" +hash = "8268ece36e40b9dcf3fabaf32c936cb3c03b3bee6265d60339c60eb9ed396b55" + +[[files]] +file = "config/blockswap/known_states/dtquark/serene_blossom_leaves.json5" +hash = "290fc07723318f2c0b24ca3b12d31822df756607d9439c7fe31070dcfa2dffed" + +[[files]] +file = "config/blockswap/known_states/dtquark/serene_blossom_sapling.json5" +hash = "e6d3335a8c9633895d7a3d64463cb547bcb381fd1d66788333077ec5e334cfb8" + +[[files]] +file = "config/blockswap/known_states/dtquark/stripped_ancient_branch.json5" +hash = "4cd481ad819544289d9c0239c30bc1c2feb2a266798ee4ac798603ca5dba5393" + +[[files]] +file = "config/blockswap/known_states/dtquark/stripped_azalea_branch.json5" +hash = "36608750064751aeb72f3cd44e97c20a941eb127e7320fe53aa87560fbb43680" + +[[files]] +file = "config/blockswap/known_states/dtquark/stripped_blossom_branch.json5" +hash = "572b7a5eb6c8ae3c3f2dec9cb7f39718b6e4c09fd8fde1c832bb2172d1f9bca9" + +[[files]] +file = "config/blockswap/known_states/dtquark/sunny_blossom_leaves.json5" +hash = "a33125b256f6a60fa2fbf9a39134ddd66025a882aa9e45c13be9464210d018d2" + +[[files]] +file = "config/blockswap/known_states/dtquark/sunny_blossom_sapling.json5" +hash = "f02228864691bb3ce63db806b8eb38ce0565d4e6c5b5e9cf24a16326813ad260" + +[[files]] +file = "config/blockswap/known_states/dtquark/warm_blossom_leaves.json5" +hash = "dd0beef69bfe081dd6521259754cc199145fd663092923b5eabcb2b965b74fde" + +[[files]] +file = "config/blockswap/known_states/dtquark/warm_blossom_sapling.json5" +hash = "5a689a7d89757d6335ed2e891700cf0d78f4fe705958d5df95edc92ee813bff8" + +[[files]] +file = "config/blockswap/known_states/dttraverse/brown_autumnal_leaves.json5" +hash = "481b15ed8928a760335987c7c2dc5b1637ee39a957b30fdc7d696e9df49c38a4" + +[[files]] +file = "config/blockswap/known_states/dttraverse/brown_autumnal_oak_sapling.json5" +hash = "cee37261ab815fcc1da9f6da47f26b665b1012874055986e165d27628b9732a2" + +[[files]] +file = "config/blockswap/known_states/dttraverse/fir_branch.json5" +hash = "8c8d583997f67d04e11f1c5be47e504fd84b367cf956b44ac7269b301ad51a69" + +[[files]] +file = "config/blockswap/known_states/dttraverse/fir_leaves.json5" +hash = "0808ef05687c7c2260eac5c07715ab0765a8d94bdbb1e7e2548e3366f70cbeac" + +[[files]] +file = "config/blockswap/known_states/dttraverse/fir_sapling.json5" +hash = "b980593c10641a5d23b955b3585094339ce6cfc4f941c1ef003aacb97a64e246" + +[[files]] +file = "config/blockswap/known_states/dttraverse/orange_autumnal_leaves.json5" +hash = "c1a945de399d57aab48c8fe842aee711a151042a14e94e3c05aaf279915082b1" + +[[files]] +file = "config/blockswap/known_states/dttraverse/orange_autumnal_oak_sapling.json5" +hash = "9ed990e23c402bf6744465ceeb6aa0be32ab67b8fb473a519e15c4edff680121" + +[[files]] +file = "config/blockswap/known_states/dttraverse/red_autumnal_leaves.json5" +hash = "abef7a69b6be1c4e6321f7bf6a8b525e7af6f469e2582312434cdbb0af0135be" + +[[files]] +file = "config/blockswap/known_states/dttraverse/red_autumnal_oak_sapling.json5" +hash = "8b31bd8ca67e6ea5e3c07ecc4da4a56c042f260e2a67d2122ba5b23af7644610" + +[[files]] +file = "config/blockswap/known_states/dttraverse/stripped_fir_branch.json5" +hash = "51fecd5c9dfaec6b44d2b423e4dfc533e97cd4287028522382b997a64e9671e1" + +[[files]] +file = "config/blockswap/known_states/dttraverse/yellow_autumnal_birch_sapling.json5" +hash = "d8632631b82e102c7eb08132400e24da058c5611043b564612bb7fbbc76b7d75" + +[[files]] +file = "config/blockswap/known_states/dttraverse/yellow_autumnal_leaves.json5" +hash = "32f62887c636e1bb7f4ad6da90d2b68766fe1ebe95e9abaea9b6a615c07e01bf" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/acacia_branch.json5" +hash = "1e658560ad729112e15b1ca10deef2760e97e159909f8f87df59781360a892bc" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/acacia_leaves.json5" +hash = "aa2af54c6020fefc4190f361bfc09a7a29eacb56ea5bb2439c55375f42e9614d" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/acacia_sapling.json5" +hash = "30f14e37235e412f26d7d4e6a21c924f7c0c745f8f02e13cdd1873138b4c00b2" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/apple.json5" +hash = "8d92a26f8496fa0e586afff2e2382a0d14ef1d3060d5edab574e9660b56e4d35" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/apple_oak_sapling.json5" +hash = "1095c6b6864349f1a87792f108c574f5d0600ce0af0b5fbe9e1d30a18b064d28" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/azalea_leaves.json5" +hash = "59f976b7d278f03af900b72685a47b00eb3f298b1df316a03abf1eda05895da6" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/azalea_sapling.json5" +hash = "bc59e14e2b1d2d15cba0d3bae64c01a1555aa577dcc50d7c2d6de25f2fea2d24" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/birch_branch.json5" +hash = "2ce3b23e96338857d9af023197fa2f3989d2d14254c527e4faa5e6728a6961c0" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/birch_leaves.json5" +hash = "69f986af86c42fc3dc4008fdc4c6161afca1b23171801cf13f971d7ddbe45842" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/birch_sapling.json5" +hash = "3334dd45917752cd9f28f8f6fc0e3ca4eab8801d56b442cc7aee1b806ccccfbb" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/cherry_branch.json5" +hash = "560911d8e393ffb32b4c8b3e3abd18609cdb3c8eabf84ad057516ab07342f6c5" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/cherry_leaves.json5" +hash = "5569d702ffbcbef28dc2dd3c8d8174d2386321178a91181a336e82e3db69a1a8" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/cherry_sapling.json5" +hash = "6d06ab73e3a047e789c47551f486297b5916bc768b2cae32f6b1e02a437d9c6a" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/cocoa.json5" +hash = "02e35f8290236aca21bd7ce183e4f114f78e0177947e7b74a1a42b8e6d6dd0bb" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/cocoa_sapling.json5" +hash = "35d4c2bdf9461ff6a83174adc9511580c69f20c742c5d9c0a471879992459e60" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/crimson_branch.json5" +hash = "efb36d622fd9b72783be0b6083f61390ec7c3ffd8466ab6379ed34564b4ef621" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/crimson_sapling.json5" +hash = "2e11c650836bb46467ae860640fa63d042dce9e967e94188e69443c3f0448744" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/crimson_wart.json5" +hash = "ff270eaa3b1198c50e999e2a54d21cab71c1c7ecf1e9096bbf56d3b7b413602a" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/dark_oak_branch.json5" +hash = "f1dd6192415238c5b02a2415d55e0df179cb0464b1b4aeafec7556c345bdb06d" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/dark_oak_leaves.json5" +hash = "2eafdad845d8e8ec2c863d93dd3da7e69799a0c3b5106de6dbffdf9ab46fecf6" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/dark_oak_root.json5" +hash = "f419235cebc8b4b799d1921c7f6111e5174dd539623c4de1ccb3830a1b1fe215" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/dark_oak_sapling.json5" +hash = "b9cd26c1bb7cf6deb1f1be537aa90776308b97dd03b3facdf35902d379e0d9a4" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/flowering_azalea_leaves.json5" +hash = "5295cf81d7ea26d0a949a1d4e3fc11d395747c8546095946110f02d06f926a31" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/jungle_branch.json5" +hash = "c3c761078fd19747e22a8a9278454280beecc089e01100f0e936b5f484b5c79f" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/jungle_leaves.json5" +hash = "f2a157d2ed920aaa64bfee102ab37f071ed374a8a8b4b550ae24d60d7c52467e" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/jungle_root.json5" +hash = "d4f14bc921dd8e4d43264e25f78660759755e381a8300ce248b457820d3a1cd9" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/jungle_sapling.json5" +hash = "257e36b1ec6fd4a96b95058a2fe7b7437cba03246bdc49b38fd17d675db7e131" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/jungle_undergrowth_leaves.json5" +hash = "9f8ab11c980352c0ccfa2a27e8f0c754f916905bdc39b08a3fc419d45164347a" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/mangrove_branch.json5" +hash = "83c70d40f4353dd762daaa8eef8e1e08fe43172db570b7718fae9ccffe8de168" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/mangrove_leaves.json5" +hash = "c8f7de409c76e596c6d872bba542ea8c7beffcdea8cf1a01480f013bbf2fec5b" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/mangrove_roots.json5" +hash = "008fcbe07a827906d47150cf68ff01a96692b2f3adf752eb066aead81b8f24fc" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/mangrove_sapling.json5" +hash = "447927ef70627e1153c0136d62ab136783f626f20c00c825ab251a038fda27bf" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/mega_crimson_sapling.json5" +hash = "37bb8491c2e548e20095510311be1885cb33ff9b526cb53c72a82efe30922f00" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/mega_jungle_sapling.json5" +hash = "3548af3562c0e032d7205adbc28661290a47ee869f249de1ab52ffc985d7f2a2" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/mega_spruce_sapling.json5" +hash = "9d0a9102305006c0606437c41e8761b2d7bcddb0d64582ef0445c7de0d452170" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/mega_warped_sapling.json5" +hash = "169b2ed39cd2d836ceb7b26b3cdc87d622a01849b9a1ed517e850de518815a30" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/oak_branch.json5" +hash = "02950c38e089264ecfcb4f8feee0fc53d348736e4eeca2406f0e2e6dcb4b1294" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/oak_leaves.json5" +hash = "0835f803294b1b2886982d5250c78587a4cf490ea18c312d003d0bf9601cc927" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/oak_sapling.json5" +hash = "2684447927dea7648ec92afa9c2033321851772da8500696dbd9e912ee9a4528" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/oak_undergrowth_leaves.json5" +hash = "c2a607aec16c9ab32d98b661c9757729f078dc1028abd16add999158c6d41ae6" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/potted_sapling.json5" +hash = "1c3c7a1d27d9f36b31de7e772bb9909cc1998170e1db302c8b9994dda479d125" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_brown_terracotta.json5" +hash = "f15d20dd884750e1156e9a7656904aa89000cc47ebf46406a9e3351f17b568af" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_clay.json5" +hash = "6570d3e245a01ed40eb17775748e863f9760bd4e61944799eb90f51b1c92483f" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_coarse_dirt.json5" +hash = "73fb87835c4047d968e09da8adfa9b819dcf5812dfb53272ad9d9a011dcd981d" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_crimson_nylium.json5" +hash = "c904cdf234f09a4a71a7779131fc9817e1ba912703a25fca89396e5c95002d11" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_dirt.json5" +hash = "693a34aaa10c91e8bc3200916fd093f3479cfa32c0020be6f8946313c1370b44" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_end_stone.json5" +hash = "e02cc014478114911a325cff1ec8aeaef776ad72e7f0395a360bb6b1780395a7" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_grass_block.json5" +hash = "f9029ceab7c152a1805afe1c2fcf0ac4de2d1ec38347a4710ba19ed2cfbd0062" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_gravel.json5" +hash = "f173caecd4017614db37ee309623c8e691139157dbd73653c6376ff7f8612a84" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_light_gray_terracotta.json5" +hash = "47d539a8917e0ab8e0d018245f15fcf6ca6dbf6ae2a122a3492c98c1a0e0fa39" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_mangrove_aerial_roots.json5" +hash = "a6acea0e7c72a814a22b87cd7f066d265ce9a5852a494d68581aceae040230ee" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_moss.json5" +hash = "8827c63f69c7dfdc2dc8e96457189198dac2391e77907d2b3543339bf4c85cd9" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_moss_block.json5" +hash = "af6f32ecb012ca492654b766278c68e75a3209c21f0afe1dcf661662f7a7c7c1" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_mud.json5" +hash = "8703b971256a3b56236820dfe3e214010cd08b39bbe3459f2a3b0fcfae20a75e" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_mycelium.json5" +hash = "6c9575384bee9bcc758e29734d98442554b5d3b189201dcad37a404057b0485d" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_netherrack.json5" +hash = "adfaadacf1e6b14a72c0077f23d273f5db132eff991ebed80124e775a63ca078" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_orange_terracotta.json5" +hash = "05304f47daef16f9406ab8bfab286db2c57648ceea50ff20589c9f5b28e6e8d1" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_podzol.json5" +hash = "4a2cc21928c707cf11f04ef167e7e9d331f3df82b2d2e989c174318753767490" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_red_sand.json5" +hash = "e1f3c9f84cfe7fa45163f8c4749cba7dd61b5b29b4b70ecbafea0d7a42bddab2" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_red_terracotta.json5" +hash = "c2707fafbce84cb3ad7f101edf7145450e502fcc6b8f8cc6c7c4518c39e626ae" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_rooted_dirt.json5" +hash = "e7f0296cfa065f7de7848e15163b8e8da4bc213bc6191b426da469f4ae121fac" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_sand.json5" +hash = "b53f3ca573cd40ae333962ba00295933c2cba6af01937f856a14f19bb2d82ff5" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_soul_sand.json5" +hash = "6c85ad8414616356dbed2ca5f363c42781f11f4b11b4cb95effea9619af76fdd" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_soul_soil.json5" +hash = "e6592062a8e5c4ab3cb074b64156280d1c835fe011c55dd5c780e4d2348f2771" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_terracotta.json5" +hash = "ebbb1e3f88f8a848b5f69ee87ca64a49a676bc3ca6706c14c1580b309b9064e3" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_warped_nylium.json5" +hash = "4a2912e76672414fda8d959745d4fbf0cc12564dfc016f7b703e06bcfd36ca00" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_water.json5" +hash = "160656e12118cc43aa62ee9d0ce5cea6e20e3e2b1fecdb48bf5602d11f228c66" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_white_terracotta.json5" +hash = "364a8ae547b54573b92543b21f95304e7d907c663e23d8c80d99f65ebec81a38" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/rooty_yellow_terracotta.json5" +hash = "7a474f764de015d069a5fbcecf2cc000e63e930d4c7baf21f797d2af8c9c2c65" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/seasonal_oak_leaves.json5" +hash = "cb503e8baa739900fa2ff009d7c288ff63900f298fc71a9c2ffb46372f501334" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/small_fir_sapling.json5" +hash = "37523911b867edfd22cab09c1f07f1e414786e61d24ad484ff2eb46862333f69" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/spruce_branch.json5" +hash = "206db3878729309c13dd99add95817485371904bbce7e8d1f087c969177dce0d" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/spruce_leaves.json5" +hash = "788673dd1bb2ee506f20114f032bc623bc441f70aa1c5a97e860105b44370a4b" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/spruce_sapling.json5" +hash = "d851645c085fa4a035b6ad82b0d7b67c8f62e5aaa773b8afdd72f609a2b21c17" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/stripped_acacia_branch.json5" +hash = "cc6746a71719e756af414a90b0be8a388240fe492297d95f3944da546767e3df" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/stripped_birch_branch.json5" +hash = "2997d6bb9a7c15befb6c23aa6c330b14be211d11e611ad877c75cf7b51bd10ed" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/stripped_cherry_branch.json5" +hash = "4b6c13ee06f22c9fb64940519e391b8f348eea12437743b2dd016d8acb7d76fe" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/stripped_crimson_branch.json5" +hash = "8cd1adeb48767556723039104535a59a8649e3b58d5ffc9e07ad3e4fd025521f" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/stripped_dark_oak_branch.json5" +hash = "71c12cc51e52a52e657c166c5846f0976aedc42f663bc33e434397b19abec5ed" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/stripped_jungle_branch.json5" +hash = "e92a0ef76cc0fa47f07fc75f00211fbdff668cc222fc9b82f3d37b7d1429eefd" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/stripped_mangrove_branch.json5" +hash = "21fb56b2d10a6656732f1285602c8667741f0b300cb0f941c81f914677b084a1" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/stripped_oak_branch.json5" +hash = "73b62f602b9857c3991b8cc69a91c9350d5f4d41da3ec9f9e123589b973a34f6" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/stripped_spruce_branch.json5" +hash = "74b9377a20508812d2bb0a3f13c2db599a8f5abcc60d73a7aa6fae9f082a7454" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/stripped_warped_branch.json5" +hash = "d077f4cdff9052744b27d7e720e508051e38ddd98f74521a28b226dc85a8f205" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/swamp_oak_sapling.json5" +hash = "60dbea1d72a3e1cef91205f5e35002b67c1df41d5e6b692c99013539d5fe37d2" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/tall_birch_sapling.json5" +hash = "206dab217205049d0ec286d34b06110d330e51f3a8fa9259f2b652c4fd2a7579" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/trunk_shell.json5" +hash = "81a9c75160d1d75e11f0846baaa0904a5bc735e03d301e41b7b2d9b8de243102" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/warped_branch.json5" +hash = "ec3244153f0d0e190d1820ae3c2486b1e19a40422f51f22d690bc3d466fce152" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/warped_sapling.json5" +hash = "74416e0639ea756b058a2c5f3a78d5650d1594caf6ff83d6db082c1e6213d93e" + +[[files]] +file = "config/blockswap/known_states/dynamictrees/warped_wart.json5" +hash = "9dfea910d9411255d1371890c492d59f6e0d5ba0075889f773ad896d18a3dbbc" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_button.json5" +hash = "8b3a1d052bc999feb6dcf6d7d7eb046966be6ff366e9e41c6d354ae7182773b9" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_door.json5" +hash = "80bd3d44456ac96926665de1572110bb351aa8a1d7e93dab622b3e2d7380c0db" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_fence.json5" +hash = "bd5a4512f4a7b54f645dd42a4cca6848df2ef5cb32b48fc4161b1b9b899de023" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_fence_gate.json5" +hash = "e91ef437f36c98323ab238cd5361ffee22e6eb585590162bf430d68f308d6199" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_flower.json5" +hash = "c5a18a50c5534247095b1f7b4eb0d4d00290526b6b78ee898cf9f728f22c6867" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_hanging_sign.json5" +hash = "b85cc630efd54cf472497de7ff8108a4fc6ba4722c2ca8957464c07585316de6" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_log.json5" +hash = "3ca65dd823d68fd49f070fe06b6db5fb6088b823df4dfec25086a9e73f65ee79" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_planks.json5" +hash = "e69bc46ed099601ade04d1106ea9be95c0e0f90d6e72184f416c21f887b23227" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_pressure_plate.json5" +hash = "ed15ffdbfb5e58fd0334ea67d00d42740c93784fe239d702a0d2a9a0d839d64b" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_sign.json5" +hash = "e1e4f4343ed582cb5a38f7bc275c8f9e0feb1a8b0859660b443fd306a0661a76" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_slab.json5" +hash = "69b5915d1ac89ae10374474f4760bb3e4b3b5fd411185666403204a4a64cd44e" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_stairs.json5" +hash = "c1982a317a8acdb5c6cacd19401246cd890308546768d686f8de3e8a377e3ef4" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_trapdoor.json5" +hash = "28877433718d0ebf425108b901b8e96581448e16c0596275308e25f0857b9c6b" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_wall_hanging_sign.json5" +hash = "151cf6e1830df6045eb8f4c25d2ccd42b84051abb93ff29b26175d3be03d8a33" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_wall_sign.json5" +hash = "14a7800e28bac203ac11e3ff7ed4ba7d3d4b053bf894a2c2c12103e7f815c87f" + +[[files]] +file = "config/blockswap/known_states/ecologics/azalea_wood.json5" +hash = "85f5530a4ac3f3c2a6afbbdf08abca7ce0d5f5dcd6f5485c3bf4aea635215f2a" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut.json5" +hash = "12e4ca6e32fb07c4571723bc71f22ddd2a0b49617c2054df222011c456738537" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_button.json5" +hash = "00a4531c5e82d2e9d1cdb1b0c7cb7cace576b537ee6e4ef4b02d5d38c4e567ec" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_door.json5" +hash = "a41e6057a09f86d5dab87f9c871d5e2c56c58e221bc08c6ee6591f5d21ffb597" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_fence.json5" +hash = "f4a82bc27d58ac53bfe4af130ed651d99b7330d4405c1d33476e567cb33fdd4f" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_fence_gate.json5" +hash = "44cc57874b511ec29f903e8dea285c597137131ca2c4ab69afbb795ea1882824" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_hanging_sign.json5" +hash = "6db571f5e2f302d3b57ad1729788a59173e23bde95face8a2d7155918eb03cb2" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_leaves.json5" +hash = "10d9f77e3ab9afc1629ed592466a4297e738f0e2345c8bc56cc8e7a3b2445d8f" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_log.json5" +hash = "92f2debb335f3460fdb243da2e575ae74d21843c74b37ba689303c98ae6bd310" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_planks.json5" +hash = "56682924c8d052f5aefbdcf6e645fa21aacdca511cc4682396594a4e48d2e0cc" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_pressure_plate.json5" +hash = "c84f0f13ac9328a877bdcfb0cb7676f558965f635c1e13560e155adfcf6f2000" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_seedling.json5" +hash = "d729d9ba955ae65b4043fab73634e39b8bae8d2b9861adeb476337004ec0ea7e" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_sign.json5" +hash = "812de43c6c16237c872d5854f7f8b1e1a489c012233ed465791fa5c785080db6" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_slab.json5" +hash = "c79497c86b6da7ba706b376bece91fcbb5ee636fb8e544e8930c7261dbaec4ea" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_stairs.json5" +hash = "27c6a9dfcbf09979e9909a0238d1cd2cb271110d142b703a359f08339dde56a0" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_trapdoor.json5" +hash = "9e2803a241ccbd95574b7645042791b6c8bed1d7821f9ecdec382c296ebbf182" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_wall_hanging_sign.json5" +hash = "1b936829c10178399340501c469cda8931af6f763ec1c5258b979afac3c73c2a" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_wall_sign.json5" +hash = "8aa4f563fd70084acd41fb4355b7696952d485af7b6d2e4da24c3950ecee3186" + +[[files]] +file = "config/blockswap/known_states/ecologics/coconut_wood.json5" +hash = "74ac6f28d80af6eba3a12dac8db84d9fd5f4473c82aaf29db8fd940d490e710b" + +[[files]] +file = "config/blockswap/known_states/ecologics/flowering_azalea_door.json5" +hash = "6f36f6b5fd7093ea4e9c65b66908016b9d0ac94d392926c7ce47d89e1fd55e53" + +[[files]] +file = "config/blockswap/known_states/ecologics/flowering_azalea_fence.json5" +hash = "737af9b5beb31b2c82731d082d9c66bd85c46e4771f07853c9f2d8dd42dc04f0" + +[[files]] +file = "config/blockswap/known_states/ecologics/flowering_azalea_fence_gate.json5" +hash = "8321ff099bd1217284d4df59736cb26844f9b8462e911efd5bead91257dbad8a" + +[[files]] +file = "config/blockswap/known_states/ecologics/flowering_azalea_hanging_sign.json5" +hash = "eb08ca70a6cb45358122e93b60e2ecc792c97b59ea89ff0aadf2fa12761edd65" + +[[files]] +file = "config/blockswap/known_states/ecologics/flowering_azalea_log.json5" +hash = "eb0116a1da4454acbce079eba7e892411b31b54717c1bb82a24f30833f9b4cd6" + +[[files]] +file = "config/blockswap/known_states/ecologics/flowering_azalea_planks.json5" +hash = "a406fbc27fa147e6f48b61f940c6341864ddc62a3a9c70aca0b0fbd6282863a9" + +[[files]] +file = "config/blockswap/known_states/ecologics/flowering_azalea_sign.json5" +hash = "62a658fd2104dad1edc58b9da8a75a9673bf4f08ad9d9b9493fd641a9bc132e9" + +[[files]] +file = "config/blockswap/known_states/ecologics/flowering_azalea_slab.json5" +hash = "21e24229369d05b04af551a38c9f846ffed6e269f1604db150ade5b952c93703" + +[[files]] +file = "config/blockswap/known_states/ecologics/flowering_azalea_stairs.json5" +hash = "c92423474eecc0c41176afb4cdc1b839157c0d079e202d39fbe5497dee34a1bf" + +[[files]] +file = "config/blockswap/known_states/ecologics/flowering_azalea_trapdoor.json5" +hash = "5594d948d47706e9d6257d68c9b886ee49a9e7466f6feed28a5fae9283f867a2" + +[[files]] +file = "config/blockswap/known_states/ecologics/flowering_azalea_wall_hanging_sign.json5" +hash = "7d0fbe85757abcbe462ab442187ca15260b33027129233eab5f47fd8b452e121" + +[[files]] +file = "config/blockswap/known_states/ecologics/flowering_azalea_wall_sign.json5" +hash = "2097db989f057fdfd853332e23bf64a1f134b6931b6aec67874a1ca5341d2bef" + +[[files]] +file = "config/blockswap/known_states/ecologics/flowering_azalea_wood.json5" +hash = "cc118128b8049de407a5f62ec77617595bc0b37fb5f54cbffb2efe17a8ef878c" + +[[files]] +file = "config/blockswap/known_states/ecologics/hanging_coconut.json5" +hash = "ff4303bb4e64fdcc9ce0ad3dc25b6ea8c7a7aa514ad886c0d770a387c8663f38" + +[[files]] +file = "config/blockswap/known_states/ecologics/ice_brick_slab.json5" +hash = "2dcd7456917b8866e36c8fb9bc80b2baea4bd0c0a28c6e2d39e4e87d7778434d" + +[[files]] +file = "config/blockswap/known_states/ecologics/ice_brick_stairs.json5" +hash = "9ec1e2245edbec947cd4c63cac309f94ed3d22d36dcfb7b139aa693d4d8c8038" + +[[files]] +file = "config/blockswap/known_states/ecologics/ice_brick_wall.json5" +hash = "0e5430239f7292e20dd762af9c2602b4c0d68b37356edc07e4378f75864aa011" + +[[files]] +file = "config/blockswap/known_states/ecologics/ice_bricks.json5" +hash = "af02e144de7d0e391968a1ed5ed4ce25b5af2ada58ba295506983154f92dcc67" + +[[files]] +file = "config/blockswap/known_states/ecologics/moss_layer.json5" +hash = "9321a81c7adb7b29ea4fceab86d6c275609e4ea9966bbe4ae3f3b6d3048d1ec4" + +[[files]] +file = "config/blockswap/known_states/ecologics/pot.json5" +hash = "f1d102bff9b9d26314d85c7ae4ebb78efafc826afc3d34e19e4ddb9e90618693" + +[[files]] +file = "config/blockswap/known_states/ecologics/potted_azalea_flower.json5" +hash = "fbba2d882508991a54459c03a59bb83a0bb432fd4bfea0ff6132549baf9b79a2" + +[[files]] +file = "config/blockswap/known_states/ecologics/potted_coconut_seedling.json5" +hash = "014f05a836bd6ff5b3138c9400516ac7213176bdea6ff6ddc7e9214b81ca4c88" + +[[files]] +file = "config/blockswap/known_states/ecologics/potted_walnut_sapling.json5" +hash = "42db980de533158e8287bafbe6780a322f244c4719a5a2d742302dbcc9d2a87d" + +[[files]] +file = "config/blockswap/known_states/ecologics/prickly_pear.json5" +hash = "54c589706e3f81aa6be9a4e758cff33a8b53bd79168d8a9937b3d678e3277881" + +[[files]] +file = "config/blockswap/known_states/ecologics/sandcastle.json5" +hash = "888dbf86ae9b7c6e74e87045b756740eaf0d1377be7e7765a6de9eb463160c97" + +[[files]] +file = "config/blockswap/known_states/ecologics/seashell.json5" +hash = "009ad941b63600c344b6af4790b0b9212deb040cb9d693e4f4c9fa070f60ef26" + +[[files]] +file = "config/blockswap/known_states/ecologics/seashell_block.json5" +hash = "df1615568c0eef96beb3638c1c6a8df723693e61903db2fec11f037d862fd2b6" + +[[files]] +file = "config/blockswap/known_states/ecologics/seashell_tile_slab.json5" +hash = "725b24afa013a5c45b6cca2dc3ffd65bb61ea903f50302617aa5e3ec55e45af7" + +[[files]] +file = "config/blockswap/known_states/ecologics/seashell_tile_stairs.json5" +hash = "7038609adc9a23851b36bc76e1d5638f766db21cf34cf264a4fda10bf4eab2ad" + +[[files]] +file = "config/blockswap/known_states/ecologics/seashell_tile_wall.json5" +hash = "90c6109f61913b6c98ac6c04ce97437a36c5150c77c0814d971a14ca0caced52" + +[[files]] +file = "config/blockswap/known_states/ecologics/seashell_tiles.json5" +hash = "5824dd917c34eba03bbebe548f9cea7b0632fdbfda551f130467e1f1dab939d8" + +[[files]] +file = "config/blockswap/known_states/ecologics/snow_brick_slab.json5" +hash = "acfaac12bab87a31a9ac147fcf94cdf4412a56409df7684e0f8c39ab45634d30" + +[[files]] +file = "config/blockswap/known_states/ecologics/snow_brick_stairs.json5" +hash = "1bbf9dc08fc77347b9858719d21574d355d6d9a263d81dad74c369287b1fe696" + +[[files]] +file = "config/blockswap/known_states/ecologics/snow_brick_wall.json5" +hash = "97c8c92c951fad8040f8e96283699026f7d13fbe4cb65c8e002385c1686d83d2" + +[[files]] +file = "config/blockswap/known_states/ecologics/snow_bricks.json5" +hash = "08967935b0e8efa51996cce29c23d4a8f8cb4edb589ec63981c4ef3ade92ff15" + +[[files]] +file = "config/blockswap/known_states/ecologics/stripped_azalea_log.json5" +hash = "27a6981f8bcf40bfa2a1f2e3cdd728fbe3dd11f6fe719923c3d87180797e1317" + +[[files]] +file = "config/blockswap/known_states/ecologics/stripped_azalea_wood.json5" +hash = "46ea838322e8c49e22c3ba034c9e46eb726736b92bdb75ea96a6c789c776444f" + +[[files]] +file = "config/blockswap/known_states/ecologics/stripped_coconut_log.json5" +hash = "349b8c8bbe25668567467cb2bdb792fba9b1eb5d738113bc870cdc4e41ee5625" + +[[files]] +file = "config/blockswap/known_states/ecologics/stripped_coconut_wood.json5" +hash = "667fd8b6986b68e08525aae5906adecdcbcc6982dacd3c7b794885396f9ec1d6" + +[[files]] +file = "config/blockswap/known_states/ecologics/stripped_walnut_log.json5" +hash = "3ec4a5e4877316747e2a698646a8a49d80009a9980fab9affffed7e0e6846f64" + +[[files]] +file = "config/blockswap/known_states/ecologics/stripped_walnut_wood.json5" +hash = "cc8bea190f7f1163203d90c71b661a1b906c82135cb808eaccc353b39dc8dae5" + +[[files]] +file = "config/blockswap/known_states/ecologics/surface_moss.json5" +hash = "83ef8afdbf5838f8a07194b6bd79e86fa6b9b041c6239163e8be94645dd259d2" + +[[files]] +file = "config/blockswap/known_states/ecologics/thin_ice.json5" +hash = "6ad4a46ad081e7c26049a211387402906d106e3d6c095cd846a8a36720120a9b" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_button.json5" +hash = "7447b86b781d99bda627aa09730d8fc60cd2847c51af5e58a205e6111c85fcba" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_door.json5" +hash = "55bcef6da8fdb4f1dad9c811b821673c9d84d21fd00eca7fe05d2887cdcbd82d" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_fence.json5" +hash = "c953e3641a746c661477b06858c275b1fb01c2c38f049ae8faca874006280aa9" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_fence_gate.json5" +hash = "c6f9499ae2e5b3fde3487cab05115aae4c4048c356d81f8803e89c222b7fd4a6" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_hanging_sign.json5" +hash = "fdeeff74b4130bdb2fd28100e1357510b330b3e3a4b8b9245e75ac032d08f966" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_leaves.json5" +hash = "7ec9b8a29eed413f992e5aec978f9e0f6f4d40c5f2599ade714f1ee9c803b705" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_log.json5" +hash = "ad05880809467c126e8f61ee87188e8ffaa79975defacdbd5009c3635bc09583" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_planks.json5" +hash = "c7a7f3998eb4a20372c2dddd706632e45e4fd6fce085d48535c7e2eb14ceaf82" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_pressure_plate.json5" +hash = "bc9e802f4cb9a462d1b0b004baf9a09904ae2356789bc542cb9fed0652c1b310" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_sapling.json5" +hash = "277f3246184715635b54e790a6f58cc98b4dbd68c56b5f77c1562a6fc5c165a0" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_sign.json5" +hash = "5c7898cb26dd9b39f0e447d7365dde2592e2d1f6e6dc4e1f8f62725ec5c2b930" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_slab.json5" +hash = "9f8bdac6072439fa605cb163ca6a5b13efd3e0ad7656292d0d34c297803a795f" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_stairs.json5" +hash = "534c660d36b72388785400781357fea9693f5feba61e212429d65871965f77ec" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_trapdoor.json5" +hash = "7686b16c0023be88c700d34840f7422c3185e07a1f6bfacbc7c400db07d92cf8" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_wall_hanging_sign.json5" +hash = "4770c3086c0685bf6d2288c0528b88293f03c552bf223c3ed5fa283a99c5e71d" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_wall_sign.json5" +hash = "1d5c97a4a19fc15ea479f4e1ae03eb2a00ad40b24f9d814505ac610b8604cf83" + +[[files]] +file = "config/blockswap/known_states/ecologics/walnut_wood.json5" +hash = "385904ac6365cb76d162ed715eef37169278fbb617eddee62b23acd0c7a94e59" + +[[files]] +file = "config/blockswap/known_states/essentials/abs_circuit.json5" +hash = "a8d5425ec1aff85324daac0f4ec44ac4ee77166efdf6b272afb6141bed349551" + +[[files]] +file = "config/blockswap/known_states/essentials/acos_circuit.json5" +hash = "5e8c5d429afaf86e12eeab47dae6bad7ff4e59346e6d409609572beb804755ac" + +[[files]] +file = "config/blockswap/known_states/essentials/analog_lamp.json5" +hash = "e3adb31f6b604c2ec990b4aad5ea5ced1243cfdd6cb6332c88d211cd24d59834" + +[[files]] +file = "config/blockswap/known_states/essentials/and_circuit.json5" +hash = "6d4e8281040a2539dc498394711e7c6199bf9944295e2626a5a46c45d7ad5ae9" + +[[files]] +file = "config/blockswap/known_states/essentials/asin_circuit.json5" +hash = "15e2af22992c6f8bd3aadcfbe0ab89ecc4a71d6084b0fa183a1acc6fd751f355" + +[[files]] +file = "config/blockswap/known_states/essentials/atan_circuit.json5" +hash = "bfda2613327463ab960112e0e92764944d34fe1ae3f04b556b1d9935d783dca5" + +[[files]] +file = "config/blockswap/known_states/essentials/auto_crafter.json5" +hash = "66950b9ce4aab7c1ce2b78e5f1049af2a807d7dc9cb1ad9b206f782a21c23bdb" + +[[files]] +file = "config/blockswap/known_states/essentials/basic_fluid_splitter.json5" +hash = "5d1c82bf402abb6475afbdeab41a412799fae01b822023baea1d728d900c13b4" + +[[files]] +file = "config/blockswap/known_states/essentials/basic_item_splitter.json5" +hash = "531655afdb6ac5e43e3455f0dbc055d2b62bafd1d9aaa888ab4d3cbf6f147b28" + +[[files]] +file = "config/blockswap/known_states/essentials/brazier.json5" +hash = "58cbbc8fa9dd22d1e9f12e27c60420123bb0bd5d7680b11e8d488430ece12556" + +[[files]] +file = "config/blockswap/known_states/essentials/bricks_bronze.json5" +hash = "1a3abaae785b6f56fae03e79d33d5e0a69ee9603364f6484f463ea15fe851abc" + +[[files]] +file = "config/blockswap/known_states/essentials/bricks_copshowium.json5" +hash = "3013e0d0e0baf91918d043d838c6062ee8ff4a57d6f035da3a30993c2252b37d" + +[[files]] +file = "config/blockswap/known_states/essentials/bricks_gold.json5" +hash = "94aee620fb769165b97b16722b7e24492002ee56a5587494ae8f0aef0884c04a" + +[[files]] +file = "config/blockswap/known_states/essentials/bricks_iron.json5" +hash = "320dd0a7ba68d9ffea2835c82ea352ee319c9854c0434c7ef048049a3121357e" + +[[files]] +file = "config/blockswap/known_states/essentials/bricks_tin.json5" +hash = "5fccda386893ce57290556d4b25fbb452df64de6dfab9e8f9a00aee83d1a1906" + +[[files]] +file = "config/blockswap/known_states/essentials/candle_lilypad.json5" +hash = "949a090417c2d1c81cc5cbe82bfa489521a9f3a1ec9f4c57a6cf29e0b6f82ef7" + +[[files]] +file = "config/blockswap/known_states/essentials/ceil_circuit.json5" +hash = "ee72685d194e959575b3ed7f3353cc5b85d70d5af13991d07fb0b332b3c99253" + +[[files]] +file = "config/blockswap/known_states/essentials/cons_circuit.json5" +hash = "558850023a97981620343e83ad5393b0c1d1eadc0076d6a43d89626700ecb91a" + +[[files]] +file = "config/blockswap/known_states/essentials/cos_circuit.json5" +hash = "ca0adbabe7e22beb46ed2f58794ac4e0a309a641234f174567a57b575593ba87" + +[[files]] +file = "config/blockswap/known_states/essentials/d_counter_circuit.json5" +hash = "31ba547ae2fdcb36161ee7135a6b7e385d23ebb7d485f4bfee486ddb9ae23baa" + +[[files]] +file = "config/blockswap/known_states/essentials/delay_circuit.json5" +hash = "d960dad989f3df1fb1e2dd01b50400e7bf2872aca23081988588440554d7a943" + +[[files]] +file = "config/blockswap/known_states/essentials/dif_circuit.json5" +hash = "9180ae7a4793b000b173101280b66e100881835d973aee83b49c2eae79a50dd5" + +[[files]] +file = "config/blockswap/known_states/essentials/equals_circuit.json5" +hash = "e0dc14bbefe486fd7cf824d90cd0710a3aad2ef9b154e5cf3bdf0449b481dd2e" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_acacia.json5" +hash = "a174e09d60fe76848c1093f3b5efe1b0ba4bed06891aa68b9b03d569a77279f3" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_beetroot.json5" +hash = "fd2aa2f766a0dd6221c014e7b4a0d0067a82b9a6943e715d09084337f9326cf8" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_berry.json5" +hash = "df0cd32d48f7e56532f0079b8daab7d02e188250853beb3880e007325f0fc818" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_birch.json5" +hash = "99049981fe295ffe2a983d6abf21e0cdeb89d6353b62c50f6eca56171b9973ef" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_brown_mushroom.json5" +hash = "1b16931d1333284ae2b94f2912178a8506c88ea266708533cf7727e3501404eb" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_carrot.json5" +hash = "37f4760e18daeff6b4f0282eb1f17f4409efc98782c2b169e23d7f52e6bd1b0c" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_dark_oak.json5" +hash = "651838c80de8a03f8b73c1417f87851d67f45612a983ddc92dce13de54c879db" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_jungle.json5" +hash = "30aa905827660f06417421dcde7d1ae536430261d853f6407f1c56373fd83fd9" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_netherwart.json5" +hash = "cbb9b90c84268b4912073889ac39773940f77b2f886b3e8071df6d0eaf59af77" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_oak.json5" +hash = "3dd976b5141829d02470c1797257c5f96db0b4ece56de0135416f3b8b9795689" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_potato.json5" +hash = "4c39ee95f72a42f2c4508986b286178397362a048ab89b08021947043c1543a8" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_red_mushroom.json5" +hash = "80f27982079e2ced2d3a6fc56db3dcf98f4950715023462bb94e8e4f26519639" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_spruce.json5" +hash = "c3419dda970383ff7c43a59790ac788b8c3f10a5339951364396bdb4cf5be7b0" + +[[files]] +file = "config/blockswap/known_states/essentials/fertile_soil_wheat.json5" +hash = "fc94b3c51adcda4473165d19406755b13cbbe963f1cfb796dc8f39fcefecb623" + +[[files]] +file = "config/blockswap/known_states/essentials/floor_circuit.json5" +hash = "930ebc1b5bda50775d4dabd6413aad3360067e3b4d10ac7d0408f698c399b97b" + +[[files]] +file = "config/blockswap/known_states/essentials/fluid_shifter.json5" +hash = "85c73bbd9e5355a3f0fbd600ba453bfeda2e0adfad369405bf4a7a28615ed44b" + +[[files]] +file = "config/blockswap/known_states/essentials/fluid_splitter.json5" +hash = "129d45a8b4680cb2e61b675991a9ba7d84a505239d62c8f95ed6fad977a7c6a5" + +[[files]] +file = "config/blockswap/known_states/essentials/hopper_filter.json5" +hash = "18953e805830950b643f72791a92bdb3a84ffa3e3e01ca30b2454db60c2fde04" + +[[files]] +file = "config/blockswap/known_states/essentials/interface_circuit.json5" +hash = "2e36df8b75e01c3e0d58956e0e18355ec686980544acfc588064d074929bd880" + +[[files]] +file = "config/blockswap/known_states/essentials/inv_circuit.json5" +hash = "2485ef18ed248285ea5a0f07fc2527abc05936e0c8366158314192e28601f6ae" + +[[files]] +file = "config/blockswap/known_states/essentials/item_chute.json5" +hash = "33f5b18f23573476ef827e41f19ba694dc13efba2ec0beccc6054325882709ed" + +[[files]] +file = "config/blockswap/known_states/essentials/item_shifter.json5" +hash = "1c809e92020c95b2e8b609d10f26921505344fb0564ea78197baf5f020e4c691" + +[[files]] +file = "config/blockswap/known_states/essentials/item_splitter.json5" +hash = "170e4226ce2e2397e1eebedaffb8caaa5641d3bef45b2f5b6a62c2313973c304" + +[[files]] +file = "config/blockswap/known_states/essentials/less_circuit.json5" +hash = "caea9840b3b4e4d44be5644d158d1f4969615cea6e20dbbf5450a9fc38d0d0cb" + +[[files]] +file = "config/blockswap/known_states/essentials/log_circuit.json5" +hash = "25639d809ca5a2a302812779db20da1819d32e2cbc7897f3696d7cb2f00fc95d" + +[[files]] +file = "config/blockswap/known_states/essentials/max_circuit.json5" +hash = "d5f93780e2b39dd099db25235bb85edd4be8974b7e1fc5f8e46f52a70b4b9a44" + +[[files]] +file = "config/blockswap/known_states/essentials/min_circuit.json5" +hash = "cc7a57d3fdbf480e9063dfbbfe45bf5cad390fbfd360ba411026ce2acf9ad9d0" + +[[files]] +file = "config/blockswap/known_states/essentials/modulo_circuit.json5" +hash = "b25454af4350b8b963e9fd4e0ecf5b77325465e08f8a2432bd1cc43ae9b5fbd3" + +[[files]] +file = "config/blockswap/known_states/essentials/more_circuit.json5" +hash = "9ba9d37a4ab469f23c0c32b17159f5a37e7742f272181bed5e2df84d907735e4" + +[[files]] +file = "config/blockswap/known_states/essentials/multi_piston.json5" +hash = "89363826d7c225ebb95465cbc9952bfe9329795f9f9798f5a303b96c813922c7" + +[[files]] +file = "config/blockswap/known_states/essentials/multi_piston_extend.json5" +hash = "c51672475e9ba02b580069f9ffc48af960c3e2ad9db02a6ef35b1aa7fca0f1fd" + +[[files]] +file = "config/blockswap/known_states/essentials/multi_piston_extend_sticky.json5" +hash = "a6c54021fe14898753e84eeeb0189e6c13363cb4ad19f8430c7cf64349558a7c" + +[[files]] +file = "config/blockswap/known_states/essentials/multi_piston_sticky.json5" +hash = "5f1692e8571c52df20a0560a941be87989a7cc6f25cae2514a9a265b8e24d671" + +[[files]] +file = "config/blockswap/known_states/essentials/not_circuit.json5" +hash = "7031ee9bae73c714dc1b7b98604423bfc4371f1d22caee10d1a5277967cb5114" + +[[files]] +file = "config/blockswap/known_states/essentials/or_circuit.json5" +hash = "2aed303651cd8cc7b155f03c13da82a069be1127bbcbf1d0ae248c0379ed38b0" + +[[files]] +file = "config/blockswap/known_states/essentials/pow_circuit.json5" +hash = "9c87f501dadc41743a9e249f0aeee91fe2387bf2e423c96bced85be43ff72b63" + +[[files]] +file = "config/blockswap/known_states/essentials/prod_circuit.json5" +hash = "0657ed437df292d81ba3e24a0cd4b614a379a5ceb1c8558b317bd27f533ecc0b" + +[[files]] +file = "config/blockswap/known_states/essentials/pulse_dual_circuit.json5" +hash = "20a923bedebf496ef6f87e535f639e09f1bd1d1f1a9bb2adc9f36986bd6699c1" + +[[files]] +file = "config/blockswap/known_states/essentials/pulse_falling_circuit.json5" +hash = "08a0fb4c19ce6514d1884ef38b6b201a893a2117fdf6ef3a5cae2e8b405b3612" + +[[files]] +file = "config/blockswap/known_states/essentials/pulse_rising_circuit.json5" +hash = "2e7d1ece8e1c056cd3647e50766fafcd5438be6a131e8e2d492b4b84499f66b5" + +[[files]] +file = "config/blockswap/known_states/essentials/quot_circuit.json5" +hash = "70e7684dd7bd7e0641121a6de9cd5a1e6f2326558afba46aa7db84898eb042aa" + +[[files]] +file = "config/blockswap/known_states/essentials/reader_circuit.json5" +hash = "642d3193de7be1a24ac3a81544fab956ccee68223a99cf5993d7578e2212038a" + +[[files]] +file = "config/blockswap/known_states/essentials/redstone_receiver.json5" +hash = "b0211c1b0b47841d826ffe0c6777ee6800253b05141d252e25898d9975a5576f" + +[[files]] +file = "config/blockswap/known_states/essentials/redstone_transmitter.json5" +hash = "bdf1d137cd5e90ac8b3f848a7fe877ac0483fed1e4ca7841cd89068e1683a8f7" + +[[files]] +file = "config/blockswap/known_states/essentials/round_circuit.json5" +hash = "c171f2ce67c2f12c230cae5c65fbb199b22f7ef0434c0b61ed78d563d8475b03" + +[[files]] +file = "config/blockswap/known_states/essentials/sign_circuit.json5" +hash = "dea670e7efabb2b0ca2f860e7f9360e4a575368349eace0fbe50ef4a6359c857" + +[[files]] +file = "config/blockswap/known_states/essentials/sin_circuit.json5" +hash = "9ad085eacdd98112891f395e2a54c21096a51cd8cf0131e9746f5c5823006a17" + +[[files]] +file = "config/blockswap/known_states/essentials/slotted_chest.json5" +hash = "cee4b614d2848b2637471d5f7d6ab6f73dcb59f811856c1f9be87a3dfe000fe0" + +[[files]] +file = "config/blockswap/known_states/essentials/sorting_hopper.json5" +hash = "08026c73fd2dc3c09f299a4bd5017e8b54ad1c856415970a0c3d1352c92c1d19" + +[[files]] +file = "config/blockswap/known_states/essentials/speed_hopper.json5" +hash = "437fbfac276c3dcfb99322369b5ce9c760f55f72669037ba820bf68b765572f3" + +[[files]] +file = "config/blockswap/known_states/essentials/sum_circuit.json5" +hash = "03e3865d756988427e69667599dbfb4a70d0beca98f22d0b033984789fe3080c" + +[[files]] +file = "config/blockswap/known_states/essentials/tan_circuit.json5" +hash = "615bd1d97f8c5f5efacd69897a7ce9bc0f133dac8813222706ed754c826f14bc" + +[[files]] +file = "config/blockswap/known_states/essentials/timer_circuit.json5" +hash = "0f9f7dde90fc808f7c2ff102085d91580236e7f77e49e055774e13ce686fb2f6" + +[[files]] +file = "config/blockswap/known_states/essentials/wire_circuit.json5" +hash = "91d51bf75aae5be2a6a6f843d2af12e4bc150c1c9e901e8a80e688698673d76a" + +[[files]] +file = "config/blockswap/known_states/essentials/wire_junction_circuit.json5" +hash = "599f1bd5cfd78fd5e9a19311de5a5542f3a0ea04046852a81aa9fd2c340f2f17" + +[[files]] +file = "config/blockswap/known_states/essentials/wither_cannon.json5" +hash = "6e6f088d19105e58f271c080e9bdc438c11bca3c6c0597f614ceb39ec91a2756" + +[[files]] +file = "config/blockswap/known_states/essentials/xor_circuit.json5" +hash = "201f16fc70ffa7ccb093623d4d171ae34fee625ba72ece318ddc52a7398876f0" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/ecologics/azalea_window.json5" +hash = "7d52ba32d0b2991ce15cbf95182c673b014ab92be187bf4ae32f9cc442357d0a" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/ecologics/azalea_window_pane.json5" +hash = "c7360ea5c4e2b128555e23dfa874ed97b6c5afb0a9077d995553cff19b3856bb" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/ecologics/coconut_window.json5" +hash = "bee1de46139da54567e6d4340a0c07fdf5ce4c68888e8e9ee5f34ac06517f27b" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/ecologics/coconut_window_pane.json5" +hash = "d02b679c1c88c4b28eb459b8cef0227626dfebd9b6f6a6a9bd8072d95e4a3722" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/ecologics/flowering_azalea_window.json5" +hash = "a4fdcc8302ab43d0976224d047ee331f0b47bec94bc42881a6df18affc4e6b8f" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/ecologics/flowering_azalea_window_pane.json5" +hash = "9cb70750fde5b74d9ee33ae75031f15e8de66c29399bcd84915c233e42da0ccd" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/ecologics/walnut_window.json5" +hash = "62b922fd7cc15d52a487b8bd566d13823055391cdf8b1544d28e8dbb400cd9c1" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/ecologics/walnut_window_pane.json5" +hash = "1946c2acb760f3257a939196d67244ae4548496e1729bc5ffb24326d69630d4a" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/quark/ancient_window.json5" +hash = "01e1caa16badee2ea93be518da24de0c732c1b638d0a0aa6d8f6d1d25487d7aa" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/quark/ancient_window_pane.json5" +hash = "21da83fa7e514817d20516320aa89c70445edc77f1f3488f093c29b63511d815" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/quark/azalea_window.json5" +hash = "1b67518a81951d574287330e5d9c849f89970e62b4cfb7f1e6de3e2fb4edb102" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/quark/azalea_window_pane.json5" +hash = "f6ce139e91cd277e24c37bfb450182da77d60f5d573215c991fac90c53de1f73" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/quark/blossom_window.json5" +hash = "b9e38b6ea77fc57508488e58a74be32c225e2b1230b13b8d16c1fe61c6bf1918" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/quark/blossom_window_pane.json5" +hash = "7f786dfad5aa59833a12d9eaa4af20047460897fd30331457bde358b2d236fdb" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/black_window.json5" +hash = "74d91909ace1e7aa5e82b79a957e6cf64fa0b47645969d48672acd421de6fcf4" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/black_window_pane.json5" +hash = "5e9d24f4f909bacc762839dd5486e365a446acc795eed384c824615897ba9ea6" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/blue_window.json5" +hash = "9d3769fd54ad29d5da0a549e55c8ac04d55739c4184db52bc442d70d3cc897e8" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/blue_window_pane.json5" +hash = "c7deb3de7f816a08811fbe01ad65bf1e885dc9b0e9582a6779af059fc9233e83" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/brown_window.json5" +hash = "c71713bdcad7a95b501fadb98386d5a3546a463e5a79882b53d698b8ea000730" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/brown_window_pane.json5" +hash = "26a7f62f37d3abaea6d22502ecd082dcb3bf38ddf77531dfb6bbd244e4d597d3" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/chestnut_noxwood_window.json5" +hash = "1b5c148a3bcd930caa4a3b3e9dbf82a6c67a512549f3f7fa66acefa6dadd5e69" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/chestnut_noxwood_window_pane.json5" +hash = "6752d4853772d8f7eb8aa3893b49c1f3666f08ad5e41fd95db11767c4a806514" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/cyan_window.json5" +hash = "32d8de0b32b79fcd2edcfe88ce6ca2c4ede0fec4189f673e3bd445873dcacd31" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/cyan_window_pane.json5" +hash = "89276f8e3bbcfaa5aa050dd230940392fdc22bd3ad427d27457ebb66b5e7dff7" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/ebony_noxwood_window.json5" +hash = "8008ad4e8b9f21488b506f240ec30f4fcb5ca76409b679b65856e2c26b9d1e2b" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/ebony_noxwood_window_pane.json5" +hash = "55ff3ee881fd8a93c5c651e65153b7bf6acacf6ce0ea705befde5a665fdc42ea" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/gray_window.json5" +hash = "5f89dd9604d249b31014187e823ff63f9a55de4a4f81fea70614cfb4976c3dee" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/gray_window_pane.json5" +hash = "9578be787008f282c1e143c6034262d6844bd2b75befc6a11ac39a64ba5201d0" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/green_window.json5" +hash = "323e3dc3f090651c1a8991cb5578eb081c19a21a0e304c37ca0ba90092a0b52f" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/green_window_pane.json5" +hash = "90d604a8871c5c3e0107377890a4cbb0c09b695b068a84fc08751f5ce5fd9af0" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/ivory_noxwood_window.json5" +hash = "3e56c357c393638e0af56a1755644b5933b71e86f41b78c67e1b6a765ffa6f53" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/ivory_noxwood_window_pane.json5" +hash = "d84ce32aad2e793e8553d3a7a23636327c98d828e325b3b91e5977f6657232e6" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/light_blue_window.json5" +hash = "b6c2a6a2c72fc7931a616263b469049728e2557ca466d3621da635d2ce957522" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/light_blue_window_pane.json5" +hash = "e740d0bbc59955aa37cc54a8d8672e6e2f098deed4741e373769383e97ccb5ad" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/light_gray_window.json5" +hash = "567402943c466dfca281d13487606fc66cdd5aa20f3253e16f4f6ff8d7f73dba" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/light_gray_window_pane.json5" +hash = "a1fa3675ac35a9529ce05b82bb4174d4b6822e35152a60b769d4f4f9ec603ca0" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/lime_window.json5" +hash = "7596b5e103fd9aa66a00d7fc9254c1b6a41200f76fd0c22c167d74b549867f72" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/lime_window_pane.json5" +hash = "b1b8ae5a14f465167d267ba9c8211cd16c07a9e2f017c4c944676a1508fd5367" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/magenta_window.json5" +hash = "648a4729005628d8579b57e3079255d960fb276bfd6abb592efb71892df35500" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/magenta_window_pane.json5" +hash = "09bdefbadc623106f4e9cbdc97898c2bd659baa25dccfc6f4af18f6ce7d58367" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/orange_window.json5" +hash = "e195e65e8b41741c7d74e244a5c107337be00dbecf4f1b7f8e125751c1c0d563" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/orange_window_pane.json5" +hash = "5ec05898c2eea17435912abe1e6d0a8fa72835c5fe8445a0939500f8053d894d" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/pink_window.json5" +hash = "82b45501ff64730b6a84924bd508e84fc9e945f04a7c2e8c1fbc732f2ac0666b" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/pink_window_pane.json5" +hash = "db2336f7ea75585ced20253e074572c4d90a5db30105a7f0b5ea413445aea216" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/purple_window.json5" +hash = "4a8bbfb6f136b2d0c744a03a48da8183a8bcb10383ecf1ea9e7a51a30e8ce3f3" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/purple_window_pane.json5" +hash = "57967f6993db392fcee08070ab6aa36876b2e969997a5d5b2b9aa8a23ca504cf" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/red_window.json5" +hash = "35eb9b082feb98694d1b939d438eda0d00e93114f8540719daf15f6973f517c1" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/red_window_pane.json5" +hash = "19697dfc91270fe9305a007b75d47edb175805912b9c689fca889a909987255c" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/slate_noxwood_window.json5" +hash = "f5c11595a086ac9982a41ea60217e941a304c07295fcabe9b94b93cfacd9bb14" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/slate_noxwood_window_pane.json5" +hash = "29283752851c86534b934158d3eab233d3293bd926adda74269da32dfccc27b8" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/weeping_gala_window.json5" +hash = "a15f5dfb72cf636c0224c7df8058f121d6cc641f71aed208561622facddf3695" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/weeping_gala_window_pane.json5" +hash = "2c6d285c421d1c273d723132ee63000516506235f59de6bda4995b9c53c5c16e" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/white_window.json5" +hash = "c2e80e263d4a692c271a64251e9e88b5e5ab60d740c5d5944d026f6d3c63a045" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/white_window_pane.json5" +hash = "8fcf8a9886ffbff7ee54d7c2d82a2640ba7c399ad2866f6f5adee39f03a6086b" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/yellow_window.json5" +hash = "ebb68428bcd422fb4ba6e897e896dbd816dcacb3992254102287cf180e586a14" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/spectrum/yellow_window_pane.json5" +hash = "c1c21e63fa4bbff30b108959166c05efb2207327606180f1c8fe3e9094c4dba8" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/traverse/fir_window.json5" +hash = "7f6e9740a66ef9440b1085994f7abb770441cbb152e41a57cc0afa870bce5db0" + +[[files]] +file = "config/blockswap/known_states/everycomp/c/traverse/fir_window_pane.json5" +hash = "1c13da3a82734a158f4eb9701c9a5e0aeb8ba94e7ee4785ad1d163f0fb2d9aee" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/quark/ancient_beam.json5" +hash = "adeedd3bdf74936f0ef0f3f30cd08102fe239d7c151916390d2ee909107dd049" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/quark/ancient_palisade.json5" +hash = "f688fc6b73d382a0917377f882b286fbd22882ef06a2f126e459663511a48069" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/quark/ancient_seat.json5" +hash = "e3428cf88d571d16ec945f90cfa4de6935c49e0a3b24d0149da86c6c1a8d45d1" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/quark/ancient_support.json5" +hash = "fcf0a6d553e7627f5c4e310b084a04fa7557292fc50a48183c3b483a35afb70f" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/quark/azalea_beam.json5" +hash = "a5e20f27bf3bf633cb418be724a9813a638048a69b9df78973bb7dabb80e2e04" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/quark/azalea_palisade.json5" +hash = "1a3d52bc3c3578ff03da16b54042b6360ec6e41b8b6eca69036c15e1e3b1e1e0" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/quark/azalea_seat.json5" +hash = "00f82d5a8a5e04b7ddac52de7632ad50d0e9510414fd61f554a525f64307b182" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/quark/azalea_support.json5" +hash = "0b70ea5ad9e89a82f7c3138bf07f13a3b57c402f5459b851890f77766d80e30f" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/quark/blossom_beam.json5" +hash = "b83c05102efc2fb7886a2beb70be6c7582fb280a935bcdf2fb3f0e9f503d47fd" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/quark/blossom_palisade.json5" +hash = "a2064ccf07e466edd5d0627ee61cc1f7d89a6f27ebf51f60cccab6677a83d0b6" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/quark/blossom_seat.json5" +hash = "fdceb6a275395fca96ff0de82973c1bddb982dec4cf118ca07c9a1c9f61d6ccc" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/quark/blossom_support.json5" +hash = "73e92261283184503f689b1ac50234c898515f434cc8c1e2a83897ce1dee997f" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/black_beam.json5" +hash = "1870896da9ac5dec530f92941656dff186b33ffec26f01c08581adb62b7e3d14" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/black_palisade.json5" +hash = "366f71a55d946bb512b596abb00dfa705ddd71f0415126d416a7c40e5d8e4510" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/black_seat.json5" +hash = "7c5f3525cd0fc7738ebdebc8c70408cbb80aaf39f3a20ea468c0a96560bce9d3" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/black_support.json5" +hash = "b8b9bb6d446f1464f01ed104d93a1a426bd15b2987c78ccf5896be9d09fec655" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/blue_beam.json5" +hash = "2879475c9283d63c3deef05176f64a2cb0d180f81e19c78a23ba7597c8a3cd96" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/blue_palisade.json5" +hash = "24c7d211db19d102b2d70841ac4f327c17f5971397d3622115dc829c1c3d0139" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/blue_seat.json5" +hash = "20c7ab1d843777a1b6016a1fc09204cb4362d3c3ad0f4885fb9d90658a4b66f4" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/blue_support.json5" +hash = "7ff1925610b527013121e6f2bc1550fbc81721e9d8fe8767844bfc2c0d393dd5" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/brown_beam.json5" +hash = "5d278d2723daa0f01c2f922587fbc86c19e85e169278f645aab8f4e62c13360c" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/brown_palisade.json5" +hash = "65b9b62c863df965595258c2cbd0ed0023e7aa21b87373bcc6f434c749b33434" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/brown_seat.json5" +hash = "ae37a625ae21e2da2719866cd710927acc81c8456f7bea9fdab5820d88ac306d" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/brown_support.json5" +hash = "beb58eab55042a30fdd682e1df8882060cd42107f330f8183634478eda4043a1" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/chestnut_noxwood_palisade.json5" +hash = "3ec4eea8fb71ba2d9b3cc21e6991cf5950e2a932474c1bcba77d908bb0154ecc" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/chestnut_noxwood_seat.json5" +hash = "892b376abe1e5c0adff7078eea2776dd071353979e9eb40458966903bd790ac5" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/chestnut_noxwood_support.json5" +hash = "a7a3cf4b7c6f19452856c12a3396b613345668b0eebcb94ad9f6ce2d11a8e032" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/cyan_beam.json5" +hash = "68407eb08c9e4d32917fbf43540d079c68d1eadd696ba7d06b886755eefa9f26" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/cyan_palisade.json5" +hash = "658679553dac2b064e1262bb7daa3d7a34146292b917d63b42c2998f4ff60568" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/cyan_seat.json5" +hash = "78c54e37749d287cc7123e9dabcbc4a21e064bca915ba49d1fcf22d8e43e64c5" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/cyan_support.json5" +hash = "feadce0f947f5c84a5794ec85284d3670796a16af87f39ddb297576c6249712d" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/ebony_noxwood_palisade.json5" +hash = "4fe7c59625039342872df670b5aba48ee1575671cce12e4af414daa622920188" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/ebony_noxwood_seat.json5" +hash = "1f1a6a742aefffc40f01630326dafe16a9160f316a4026c2392b395f96bd60cf" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/ebony_noxwood_support.json5" +hash = "068a2173a3ce8a9448fff1646c393a548d4e02282de9b5fcbf63ffe1adbf6300" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/gray_beam.json5" +hash = "bfbf407290ad554db8b1bb78eeb6211551f5b48dbdb5beb83638435724693582" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/gray_palisade.json5" +hash = "3b1e856ed45273ac0c69d75029c728a4a636c54e55d29e646ef933132244e511" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/gray_seat.json5" +hash = "f5331c618c35f178d3a5c13db29e59fee2f09cd5708f31096ebb483c7836df35" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/gray_support.json5" +hash = "0ddcfa872639329498e6c040e81acc4de130a5a90b068477dd51fc67bf86fced" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/green_beam.json5" +hash = "905ae2c25c86683cf6290f3d94c3a0af3f970db16f74a8072159e129282e8352" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/green_palisade.json5" +hash = "2b5c669d1ec26e49bcf6115d977c85552cd0d811e6eb884d0f5babf07a832e3c" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/green_seat.json5" +hash = "2933ca1b384204409dcd2a5d3b53725f86da86eb58e5e4b808f0abe92a7bab93" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/green_support.json5" +hash = "9d31484b6ca9ce6b63ba6635cdd32d12e48d0781b5da4c352f8332c5c612d5ab" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/ivory_noxwood_palisade.json5" +hash = "784ab89e205d326d60d1902e8f2db360b0173f4501529d0267aa148274abca28" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/ivory_noxwood_seat.json5" +hash = "bf801999d2fd9e1d5d768179054e9b455f969073121c5dafafb94a2c2fb0b209" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/ivory_noxwood_support.json5" +hash = "c188868be62708ffcab13d24ae1bd99eee28df0614d61b3bd37aeb6c77906fe4" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/light_blue_beam.json5" +hash = "ae3a274bfe042edc368c0b7e6f377b5d5e39f7af573eb23a0be301790c51dc15" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/light_blue_palisade.json5" +hash = "ac9468ccf0e6c81f72142084b887ef6faa69c531f2fb49ed57214250ae6baf9a" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/light_blue_seat.json5" +hash = "d4a00676e5436cb1a106c22e8dd72c2ca0c84be1d4ea5beb6babdb75294ece79" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/light_blue_support.json5" +hash = "189f6c61b6e16428393e9d6cee056cf2b110cfa8baa6a3276cfa97da9ae3202a" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/light_gray_beam.json5" +hash = "9eb7525891e6441321f63fdf4e085895fad73fb3a00e488d0f97b877dbf2ce84" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/light_gray_palisade.json5" +hash = "18d138a885dbe2ea3905069c92ef6e1e2fcc3f530208954a0d4d382ac937ac74" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/light_gray_seat.json5" +hash = "15ed85737b9f1bf1666f172cf655a1af7db6055d3f5652c704eaaa25a4332420" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/light_gray_support.json5" +hash = "8626214f8846fc6f43d7840f961e1f1a69bf3a8d300131e480220b3be8b1d0da" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/lime_beam.json5" +hash = "b8ad4e743abc8aee2795e934ebdf02f93aab216ffe8ae099bc76d800492961cc" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/lime_palisade.json5" +hash = "dcfc37bf175c2888ba5b18afc443f44c700956369a231823169e68964aad1ffb" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/lime_seat.json5" +hash = "fcdbc7a8e748b8e3057ac1410df817b3e4ca0f625c702f8c8e4ab74d2aa38dff" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/lime_support.json5" +hash = "2a25de2ccf964f6189978d2864ce3b067b7936d78fc8d74c62acf92e51207e25" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/magenta_beam.json5" +hash = "301aea55df3e92b74fa0d1be1c7e02dfa066adbc5880594da0e987f3a22621aa" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/magenta_palisade.json5" +hash = "750c86b317711c31f0c11ede22129a39fa6ec91b95b672b74fe91a8dbc7596f3" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/magenta_seat.json5" +hash = "ee62dafb0d0b94e5038347bea6160d5560503d413a732b1306adfe5e99d9b93a" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/magenta_support.json5" +hash = "b6656717a7a6055462d669c2567bcabba43887ca5b05874469bb273e50eee8a4" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/orange_beam.json5" +hash = "3992ce544ccac17cc9ed4669fa7c22a600ced2400cbdc078191d0329520ec3e7" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/orange_palisade.json5" +hash = "82c63cc9f7cf4829292d9667b36c18c5c6a67d7df90068b5807c22da20b83608" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/orange_seat.json5" +hash = "fcf45f689c827801b65e61e5c417856361552398843c77d116dde18edb8f54f1" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/orange_support.json5" +hash = "33cd7248ec88e613edae8dd61d160ce4624a71735c23b6b0ff6fb21ec2a01d89" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/pink_beam.json5" +hash = "6eb1cf4ae8d5be785f36bd96a6689981b82bf074f7880a6d9a576e1ac419550d" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/pink_palisade.json5" +hash = "d6e9ba7105718701321c70e131be4019ee60fda9aa888e1dd4a62cdfe0d739c8" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/pink_seat.json5" +hash = "802a6188b019fd30e516dfb584210815e0b7902c950eea4913eb0bf282a5d52f" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/pink_support.json5" +hash = "4c75d6c632be18fd272f452ba94f2a631b7f6a36ceb947959c6ae8c862fddf47" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/purple_beam.json5" +hash = "595872220c7b3de7f9f1c57f91cccff8ad185a15d80585fb43a51a492ba85cce" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/purple_palisade.json5" +hash = "d0a2ebba2e8127369956a2c66b0a4cdfe35f318872913c1fe7f7d6c75bf180f1" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/purple_seat.json5" +hash = "25c4f9f31d91a6cd15171f9d0a24a21878c79772c76aa3d4a46e89a8bb4f5128" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/purple_support.json5" +hash = "0959a5722829b3fef08c5fb637e7b129802a04272afa23d64c44d2ae8f5702e5" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/red_beam.json5" +hash = "1a5d7ecbc30bb3d4bec06e19d2181de21c9e1d7648e1eb16ea34ea39aa865452" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/red_palisade.json5" +hash = "1d7cb6b9daa82d74b7e9a8bf502430780f5704d6c626fdc7695e6376349df007" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/red_seat.json5" +hash = "c87279cef09938a21f6026ac7cfbe9234b6735359fffbcf5e2d247994a4ce8b0" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/red_support.json5" +hash = "fc4262fda0e9ce59ab7481ff75901b67b7881e3e80321b52462a275d4b90edc1" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/slate_noxwood_palisade.json5" +hash = "7e14366cc683524aa7c89d42fa8f11ac1aceaf454c4b4683855cff2bd5d2b163" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/slate_noxwood_seat.json5" +hash = "a8e78232ecd007861a151b945c36002652ea6748e05c6df1ee90cf63f70b8ccf" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/slate_noxwood_support.json5" +hash = "1ed00b85325ffc0fd5c36d190cdcb1ce4ebcffcd12363336a1ed976d44a6bc06" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/weeping_gala_beam.json5" +hash = "5f2484e63b25adb403e25cd0f1753b83c2a454f78fe5c79db7d9f4fc37ba1f21" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/weeping_gala_palisade.json5" +hash = "ce5b01eb14b03f76cd42cf9566635bb486c304a886a393f989b756a284550d6b" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/weeping_gala_seat.json5" +hash = "98cacab210aa918397da2871c0f1074aa894e0f9616a56ef601fbd1e729bcd91" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/weeping_gala_support.json5" +hash = "b1da2037121cef35a367c018cacf6080a5178d188eea597d4ebf4baf7681ca4a" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/white_beam.json5" +hash = "75ebd39fc664ff99bd5c9c6e8aad99a919a3d1aac118fe50b8e800313c005e2a" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/white_palisade.json5" +hash = "610cab9aa20b6f911b02d562b11434ef55c46447e47cf505b73039553fbc49ab" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/white_seat.json5" +hash = "f2e8246f26e69e881507ff447ebe39174fa919bbcf1429a5bad6ecd6ecc811c2" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/white_support.json5" +hash = "0ec0d9cf97da044516f23c02cc49ebec65152f1ab6a7b2545c7d9549e15299b3" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/yellow_beam.json5" +hash = "2a580e42b6917b55ab4b61b79effaacef40d08d700273601aa3c7a0393fc81ae" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/yellow_palisade.json5" +hash = "ae138a82d56d1388df9acbcd41ab9b2bfc48ecabc58dab4100bd7294e5d9bc19" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/yellow_seat.json5" +hash = "4871dd43e6d82b3253b9f0317c2fa4dda1e756a45762657528b8aaf17575d322" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/spectrum/yellow_support.json5" +hash = "94a1b1bbbc6f02a1ee0fbf43f2be89ba6fc9d3d23f4aee45a6f81ac9f69bb323" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/traverse/fir_beam.json5" +hash = "f0f26a9f2c2d2b6219a61d77a149447098cc2858f9eab89c97b49fa92b21c71c" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/traverse/fir_palisade.json5" +hash = "9f80ae9d9b3fb875e77e8012f2b4b114d17eb107b193e10f119006e1ac031c21" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/traverse/fir_seat.json5" +hash = "dee91e16b4a95e41dcdbe56219fde456f5b79da16b59257e1b26caa63dc7eb6f" + +[[files]] +file = "config/blockswap/known_states/everycomp/db/traverse/fir_support.json5" +hash = "68d86a85421cb2fb2cd7ab601f76cc96a4fbdc01a5e41564ac61bc0ea83cfa39" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/azalea_bookshelf.json5" +hash = "69f98175579aefafebefea6fcee2c91746d9c1bb6cf1776f9c444db47f914207" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/azalea_chest.json5" +hash = "3740e480128073d01d4f4e1179aec40027b77f0bbae8f70487d439d76b3887ac" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/azalea_ladder.json5" +hash = "dbbd011044053053369aedeb13ce6c6ae1cdda7a92d4c0d50e8608b0cc71e25f" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/azalea_post.json5" +hash = "c76dbb7691e05f2d319cb38f2f8111b0f208165913b254499a53f2831f58636a" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/azalea_trapped_chest.json5" +hash = "3af6b57927de5cb48e0fe91515f7530b4961e035b3b0339e6705014bd66bd385" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/azalea_vertical_slab.json5" +hash = "dc35ea5b38c554a078c90135d3e264cb65ec83e3cc8e564a40ed433a993ce5b3" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/coconut_bookshelf.json5" +hash = "8da248cee23806c6ec67909c48f75314ab4d6e94fc721545a1a5b0721b95a23a" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/coconut_chest.json5" +hash = "5ad7e9ab199243908f8fbe38202e448a44e332563b49e51bc080d7b6c8380c7e" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/coconut_hedge.json5" +hash = "92f00a9d68d921e99ed09bdd062e7e8f720bb8f37d2463d4053706c8edaea65f" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/coconut_ladder.json5" +hash = "b3aaf776d0e5d4d30e0a07d1570f2c4ace1e6641ef7a0e39f671bc773a292f1c" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/coconut_leaf_carpet.json5" +hash = "06c690b9cb0fc36387e3f6cf5de67c06bee2e9d45738a083c67a0798ceda3e35" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/coconut_post.json5" +hash = "44639140bc25aee7971450e3cab72ba222c2d41fbdc02a66f80b19d860a30dd8" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/coconut_trapped_chest.json5" +hash = "f58641e77f99b9c174182d10704950e3db8a763ea813d97f5c4fb2a25409b071" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/coconut_vertical_slab.json5" +hash = "b4e8e868484bdc126b322d2f5786d70d1d99a8b6b21ce639668a1ed4bef475c0" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/flowering_azalea_bookshelf.json5" +hash = "2ca7e3193c2f2e3f1b9541d78fc226103e7059aa4d18dd03057e1288ff9facb9" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/flowering_azalea_chest.json5" +hash = "ae0719ff90d7d523fe5738d09f2b5338b7d2195307b7da44915da206920783db" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/flowering_azalea_ladder.json5" +hash = "e62881866cfeecb0ba24c355e55119d555bfa2a60bf983916077c880d21c113a" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/flowering_azalea_post.json5" +hash = "93938210ac1f8bc7a945e50fb9e11299c4bcb9b2630ef7c4149ed975ef421f30" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/flowering_azalea_trapped_chest.json5" +hash = "691242a360d6c7daaabcc6fb73ba073fe3c244f4d3bc48465b4d7d7114fd03bb" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/flowering_azalea_vertical_slab.json5" +hash = "66d8dbe8fc5f6a1a218ad2028a0689e1db237140ca4f1575aff4cab46b3a43f6" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/hollow_azalea_log.json5" +hash = "16e588f1186ddecb0da8b641df7441707bfc29b4f6c227834a970b1557cf82a1" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/hollow_coconut_log.json5" +hash = "3632d8d08fbc34ca8ce8a7613a9c7219ef66e138b327dbe657be9bc6bc5953b9" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/hollow_walnut_log.json5" +hash = "09489fef82932b202b7881b6e01cbb47cc39dd6ac05b2083e170c461bc7137c3" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/stripped_azalea_post.json5" +hash = "51e859131c20e7cf0c29da9d3f9c0f7c1d5a32ca01ba7ebdb9a993009b17c37c" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/stripped_coconut_post.json5" +hash = "7e85fb340ef6483cacd5b3134bd2de4d52a920751882c0a2243eac7954b0db9d" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/stripped_walnut_post.json5" +hash = "7cea6ab77d56b3ddc1be5d8072cbf095194b276094cfb7221d42c268d61ec145" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/vertical_azalea_planks.json5" +hash = "50ad24ff4a4316023afce53f91b6b88fda0caa3e72f62304e264fe1aebc1eaa1" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/vertical_coconut_planks.json5" +hash = "70c30f31c6841360d10a1f4cc08d8136cdf38b6ef168912dbca335a6b1109205" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/vertical_flowering_azalea_planks.json5" +hash = "93f94b9bf24bae9444a2552a2dbc6a8afcc0fb83b5f8b7c7c9b5bd251b38c146" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/vertical_walnut_planks.json5" +hash = "8d8650d1156c597f6e71533efa7506150f5302444b1ca50dc631e4bbd4a0241d" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/walnut_bookshelf.json5" +hash = "cfcb6f884b25aa20882e3d460a33833adba6900ff44989e7be824aa40214fc35" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/walnut_chest.json5" +hash = "fa2b6172f62e70add477d910d148340ac68dfa3490aa91ae05d2eb65c757d8ce" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/walnut_hedge.json5" +hash = "993bc2e1d3ea7979611cec6ee260ed81c0c11f411db1af19992612c350687bda" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/walnut_ladder.json5" +hash = "b5cb7892be8019b24cd7db823206394d4f7bc0251bca067702d0a7bae0327fb1" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/walnut_leaf_carpet.json5" +hash = "21c4acc5a7007b0ac32fde29c1fbb94fec7083641546fa90a7fc79cb9e8831cc" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/walnut_post.json5" +hash = "9167884eee57870a6db29030221b62c8bfc3f726220c88b9f5a0bed914c298a9" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/walnut_trapped_chest.json5" +hash = "f6facd041730c7948d2747833bea37e2ed1c7cf11d540f2b2328172808315dd5" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/ecologics/walnut_vertical_slab.json5" +hash = "9d9384ba6931ea26640f1c412f4ccf4d0469fbaa4d32973ae16df469b5566e95" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/black_bookshelf.json5" +hash = "8f6ffec317a3f5dedc220835fc6222165813d046d5db5f130fc7f4e023d0f9a2" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/black_chest.json5" +hash = "bb8952919dd526418f9bbb921fd4367a278ba1cf194396563f3dd8df532a9e8e" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/black_hedge.json5" +hash = "a4279750c755dffa14b3dd7f088b1a344f99b50d84747471cd9f4b8ee7d51fcb" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/black_ladder.json5" +hash = "0aec1550c7ff8d3cc7841aa673108b58145fa53fa263bed68809ce3ca666f837" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/black_leaf_carpet.json5" +hash = "5c28cde698e3e268c332cbafb9c3fab9451ace0c5d5e1686e7db9a20b181c33d" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/black_post.json5" +hash = "9700c0ea5a7ca5639fec34f2d3c7ea287e2b0a0f9e9185efc854009ee4d65e96" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/black_trapped_chest.json5" +hash = "d9b7fa70fb07637136cba05f35d3d04cfb8ee135f4dee03bc35b6f349d7a828a" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/black_vertical_slab.json5" +hash = "8f1a5a906d0eea3af0a00aaf88336a91194cdd8fce5f55c1a76fe34069116415" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/blue_bookshelf.json5" +hash = "ca58f84f4ff26ac74a73041ae13e462d6faf25eedfbd801b6d03c0e14a17cc23" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/blue_chest.json5" +hash = "0b60fd936915c82fc09e941cb134e924fca3805232bf9fc3b127b108593b6079" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/blue_hedge.json5" +hash = "b0104f9911d1a03b6f64b77462f758e4c9043df2680fdea3e80c25c667bb7259" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/blue_ladder.json5" +hash = "e4e93e3a3f0e30e8a34ab34aa6a34dd28ed6f7763e901e297365ceef1e1faea7" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/blue_leaf_carpet.json5" +hash = "be38225a040494a134229bb0a0c5540a0f42220852e81147c157a41be4843fe7" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/blue_post.json5" +hash = "26b3963663a340f2b8ca03e6a1918d377751c44668856eaf1845f069eb6f3c9a" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/blue_trapped_chest.json5" +hash = "2c0d56e36cbb067fc70ab438e3771361417a2d955cd3bbd3705fd0bac87fd78b" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/blue_vertical_slab.json5" +hash = "17d6cbd04bebe2387e768b3ca35d881c4e72565f8dd6a5a6bea22bd2c4db578c" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/brown_bookshelf.json5" +hash = "d80b7cc2fe8481052a50cdea5cecb4a8d969e77e25d9ae4cb410b5694b747409" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/brown_chest.json5" +hash = "d4ce0bf729a3fd804bb57463e52e7e5b7896418a37ee0a1c73550a5b4eecd2a2" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/brown_hedge.json5" +hash = "c1396ddd76a625a2d983148b9f1ea79489ad12619e0f343da065521d2016b589" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/brown_ladder.json5" +hash = "9c5c1fd72170f739fbe0d1e76e4928c0d5c2fc48d13065869135d0417a3ce38b" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/brown_leaf_carpet.json5" +hash = "d04943460e0bd7e3d8ab8bc9805dbd26d5540c623d7b046b56f2e3c9978cbaa0" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/brown_post.json5" +hash = "ffcafd0a2fad5042b7cb073dcfbb153852d226b7787617fdea113aaff9bf032a" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/brown_trapped_chest.json5" +hash = "9da3c77186b81b8011e990e8ff35d7bd6a9b73d22faff3b439d92f43d3fa4da3" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/brown_vertical_slab.json5" +hash = "2d7cec9a09e663901d0e92ce6f82a6dcc121a8778d1618315a00714022cebc19" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/chestnut_noxwood_bookshelf.json5" +hash = "0bf1a62d1c4898dc2fe2c18794a2f41d68e1197f1189180db8ba451e36d60703" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/chestnut_noxwood_chest.json5" +hash = "632a9996abbae53f7968ec35ae8fb1e87b6bcfd2870582e53f6aef3a671dc93f" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/chestnut_noxwood_ladder.json5" +hash = "742b090f0c5cfa0f4e52150e2c0b0615f57b6a534d4481e49cd9eb91b9500f77" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/chestnut_noxwood_post.json5" +hash = "8d8662a33d075c955bd1b79bdeb00b4ea6dfda2ed8abda5889a2ab47a6b20fba" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/chestnut_noxwood_trapped_chest.json5" +hash = "f27d5f4fb09d58432cd2e236cccbf4c6f028802d8905805785bf18ee107fdfd0" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/chestnut_noxwood_vertical_slab.json5" +hash = "d68e13e6223b071b206a505e8fcb26825f8cc2c7d5a75bac729cb17c06e62b69" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/cyan_bookshelf.json5" +hash = "120613f49046222ff99082e4ebeb2dff81349a630f40d47c2a7703cc4a04ca79" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/cyan_chest.json5" +hash = "40d794c4cb41eb964f071c4a27eec961aa43e7c4aaeb3c293695d7258fd74400" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/cyan_hedge.json5" +hash = "b9577e162bdc8a206b4babd8f45535c7cdaff4bfbd3bab51a43635d152b6e5c4" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/cyan_ladder.json5" +hash = "e39904cd56e68dc5831dd3f0b32a2f98fda5274277af0c1417360b6dbac83114" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/cyan_leaf_carpet.json5" +hash = "8964ce4ad6bdf2a50aa68602222d2a31e03d680519e402b4fb64f820b775fffe" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/cyan_post.json5" +hash = "5511aefb67176555175e3586e9dac10073ffbd5c65c46ac4b42060da5b2d4845" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/cyan_trapped_chest.json5" +hash = "ba8db16e90bcbff7bc854bb897e217eaaf74b5458ba1e71d2b40fbfd969b7c38" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/cyan_vertical_slab.json5" +hash = "47162b5f96ca3368e3b6b49ed015724a9d4baf8e342782f4a4b68a140baa99ed" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/ebony_noxwood_bookshelf.json5" +hash = "67660f358267c8ee95ec9b388332ff0d489b74e453754d92299f9c87261b5b23" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/ebony_noxwood_chest.json5" +hash = "bf6b4f99a6ea0938c454c3aa50dc4c6210423c45465983cde6e7f1fcbd31c049" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/ebony_noxwood_ladder.json5" +hash = "eee95f3d67c14e942284ff81900c378d81aaa07acee8336d3d04fbe786943964" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/ebony_noxwood_post.json5" +hash = "e732b78abb62424c254d4928c8c73f7c8efce9e7ba7693915e8447313b357b36" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/ebony_noxwood_trapped_chest.json5" +hash = "9af24021fb89f714f5d2875127eaad55a66c66ffe9265678336d585787afc50a" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/ebony_noxwood_vertical_slab.json5" +hash = "0bd7ef3d21b331c2b679cc9c5c3a074c2caf5ab7a7baf874b6c542a69050f275" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/gray_bookshelf.json5" +hash = "4aeffe7334b5b02f2291b37b67ca7337db8fe421c42c9ba36b83933760310230" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/gray_chest.json5" +hash = "2c07c6c04e6e06ecb1ed1401cdad1ad39c7a3dff0b928e7817f0500f8a1bc90c" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/gray_hedge.json5" +hash = "8119acbe9b71c123eaeeab7501317bd0aa756c6623e45547f9872f8a6278058b" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/gray_ladder.json5" +hash = "1ec6830c01c4f023ae31bacf14ce7f9a8645d8164af8a83e61b435da931eba73" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/gray_leaf_carpet.json5" +hash = "f6418f45f3c4b80ad81538abc54d9ee5f2241d8cf37d0c82dd0def34b54d5ed9" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/gray_post.json5" +hash = "e265409096dec9743a96d338e1afc2c509cffc928d401af357b939a2873869a5" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/gray_trapped_chest.json5" +hash = "c95b36bf795146ece04f7805cc7e00310a6a42d183735b3ecbb9448b3f3b791a" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/gray_vertical_slab.json5" +hash = "2e465a5bd02699cd7c1e8fef8aa8e96944879887de195228400d79804e4a9e34" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/green_bookshelf.json5" +hash = "33f65dda60cda22829b962343bf2281bb95a963e6fffa10ecadd64bd77517c79" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/green_chest.json5" +hash = "64be208225e4727ac1a306011d6e56dae786e50b138e9f91af8b3c8f65ca05fe" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/green_hedge.json5" +hash = "60c37bd227c8687d5920fca839d02de84cd203a699f15d8b2197c743fa715db8" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/green_ladder.json5" +hash = "62faa1e30e61e18f498fe2ee0d9f1b912c6e91f1dbc69bb479a95850f2c42817" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/green_leaf_carpet.json5" +hash = "8b6efb9860c0f7b047f5eeb3acdd14dc048d8e370c15394741ab84953036417e" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/green_post.json5" +hash = "a0aabd7445505b51ca67a8b1e19327ed9034b53087d2fe775a85b8c0fa9cce08" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/green_trapped_chest.json5" +hash = "3c69be336f5b4aaad2c4f75cb8209db4178d7597fba93dd180c1b875be2d5e54" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/green_vertical_slab.json5" +hash = "382e0b8b1e32ba919b262045a8a5c4a819ecc1bd9708639f977d522201db65b6" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_black_log.json5" +hash = "436c4dd2d477fb06b84681c1757f2970d7e6af6cbaa17e46d0d3e09c237be389" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_blue_log.json5" +hash = "5836188959db5948683995f13f22fb8c9d1303a19ee84b52c4958d8e731f8e15" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_brown_log.json5" +hash = "3c44ca82cf9832ee6be9221c46a87ce21f04e3844a539d5ea6103ff64682579f" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_chestnut_noxwood_log.json5" +hash = "9e0197e7fd231a51f93367036faae0e55be0991ffbcf47e85e3c1586fef49a3b" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_cyan_log.json5" +hash = "43fe9d76350b3e6814ed42ead4842af901954ce32755957b1ff72686d27ed25d" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_ebony_noxwood_log.json5" +hash = "f6509535d69e8ad5559e84ee5a808d9b6cdbbad31584374c80fcf0e720047f15" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_gray_log.json5" +hash = "a3c28af795ae506693be0f4f9c183ed58d13949a6da2631a86ae3faaec4c1b05" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_green_log.json5" +hash = "1488c58a505262bef7fbd6917a5b3338f9cb0f35c7b5bff9c87b03e80561a6ac" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_ivory_noxwood_log.json5" +hash = "44a512d79ea9642a53ddaf77781726b83d8f28a63b5fa6be974de5f1ec447f88" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_light_blue_log.json5" +hash = "99c67a1a61575231b93adaf4d9ee6c1ae0d58d3e0796418ef54c475dd030dfd8" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_light_gray_log.json5" +hash = "bf1f126bda43075de865f984d791c63c1e7e70c72d977a307f3bc18a00d1a3e9" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_lime_log.json5" +hash = "b9c7b6b0b5912a205db9f253bfa2e2230e085550b4c21c6297e97ecddda5e940" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_magenta_log.json5" +hash = "4b4d54e73f3fe6c3572b610719780fbbb3d61c38f9d0d0816c00f1a3e8c572d0" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_orange_log.json5" +hash = "9a787f98f7b01280dc5d34cc8bb420d411a8bc28929caedd41c5c9d19c2e5370" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_pink_log.json5" +hash = "ec3c09fb727c32312f9bc811079d3df76da2ebdfbedb305615d84e78b0985878" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_purple_log.json5" +hash = "1acb3a7b59c057fb37c65722203ff69d760abef3c0e42fcc1609a2712fedaddf" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_red_log.json5" +hash = "b1f59284a7fda3dff8fbd682805790da37710532ad991c63d307081812c9a151" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_slate_noxwood_log.json5" +hash = "f1ff78d333eb85ebfc2f4211af468c582287aa7761ac501322bc39ca3c88f964" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_weeping_gala_log.json5" +hash = "e50aed0529bec31da46d173a2e885f4a9cbca4547458065c5fe8d966fb853eb5" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_white_log.json5" +hash = "2483df6c2d63bc07ec102f24ca8e002f3985dd8b258c5e35e3ebbc7fec4693c6" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/hollow_yellow_log.json5" +hash = "9c64c725a1329db8e77fc8c2d921933e2bb469e98bd5a08d4012652b7c2fb4b1" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/ivory_noxwood_bookshelf.json5" +hash = "47988445e1670ec95609927e9b960a263c89ad044172727c57cf6168c7d65d67" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/ivory_noxwood_chest.json5" +hash = "e893094cb391e6edc9c0a6ec2abfa1a1e1fee5fcd61a0ebfef00ac586ffe2409" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/ivory_noxwood_ladder.json5" +hash = "89717e4336e5ecd4f9696bddb70efdada234b32ad56ea3358c9ac4f03fe28582" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/ivory_noxwood_post.json5" +hash = "1a725ad621261f882c4cce691c882bf19cfacfba5498e2b61c363abf276fffe9" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/ivory_noxwood_trapped_chest.json5" +hash = "5bb6ad6265d5a3cc1b6b199c485f23d6164723f8d247b2094383f2e38d6c4222" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/ivory_noxwood_vertical_slab.json5" +hash = "a43a496521de0bc41e88d32c6de51fc306b4d21808be1bde5a0f0a9e23ac5fca" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_blue_bookshelf.json5" +hash = "03045a62b40b00da88d40be6ce7cb43d14653c48721c9dbf1e2845e5f9913b65" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_blue_chest.json5" +hash = "a43f99e15687ea47369ab8625be810d0b3cf47a28e95090df9ed2672d5d08c15" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_blue_hedge.json5" +hash = "4a9beb002fd42a2e2dadcc46a7be9a752b9debaad3fd9c99b514fc076da63c33" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_blue_ladder.json5" +hash = "83a8d49c4256ba69d49d76b27ee874b6b9d5e5ab899fd9574b45b990caecad8f" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_blue_leaf_carpet.json5" +hash = "e714c5cb7b2514cddfebb17d0f431685b30394f2851394b5cff42b4df3577147" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_blue_post.json5" +hash = "573985f58e22dab00137dc382ecbbc181ac7c422042c8a63452caf7ba7a0384f" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_blue_trapped_chest.json5" +hash = "e0ff0cff307a317fba5615560ad9940e9671ab099622120609ce0c4ba64bbcb3" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_blue_vertical_slab.json5" +hash = "bd560f714b981edbe088890370c3ffa86325370aefa3345288940fba57d6df03" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_gray_bookshelf.json5" +hash = "276a25cfedb28653fb5b9eb2f1119a771dd654fbb5d7b5254c4af7777a7bf4fb" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_gray_chest.json5" +hash = "2a03d4d3de5fa68a395b33c7bbf27efbfa3952eb144bc6c20bfc59523dab16bc" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_gray_hedge.json5" +hash = "8abae5edf6d3a1f7155e3a487177d23c2742b67b10076f1ffa275266c04ee4f4" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_gray_ladder.json5" +hash = "4e79bd3068574f329d6866137a82bd7566942df4f9e3b5af13d3a829f3a51c42" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_gray_leaf_carpet.json5" +hash = "a22c885f42f3f211ff0b40928a726845efaf45ae14db402786397bb3ee54248f" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_gray_post.json5" +hash = "fb0134929aedc215decdf242f335c07c7714ababd5dc7217fb17d4f3b83d5a81" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_gray_trapped_chest.json5" +hash = "644fa13def39987effd186d89cb3acc1d80b58fe7681327b502cfdde46610ced" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/light_gray_vertical_slab.json5" +hash = "a7688d4f8af8cd5554fd302b92090f5a3592f3d1db408ce588d71f49ab99ec23" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/lime_bookshelf.json5" +hash = "ee3e8da1a537f5a77a6e814118846abc3f288b81ce1f23247bf6b337984af6e9" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/lime_chest.json5" +hash = "18fab049f66ee4f994bdd6e1bae84c7cfbfe545b102e16790732be39e6a39ac1" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/lime_hedge.json5" +hash = "0a592fb5201d062d7dbb623d5bdc2a97136e068ba5d667f2986f308825a27da7" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/lime_ladder.json5" +hash = "082b23fd75625a54f1e338cc290e17ae25097483e74d1936f50f98cbab768726" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/lime_leaf_carpet.json5" +hash = "085d990179e6f04c2ecebb5380cbb3799bb6ab6f8bf67a1dad51411a5e1cab4f" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/lime_post.json5" +hash = "565b15cd10ee5881b969866f0f57a399ab9df0ca6ef5aca9cfb0a9489efcf460" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/lime_trapped_chest.json5" +hash = "b62d68c9a575045b2c88448ecaa35bd37ae09644d3d3fe6186d13eb1bfdff63c" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/lime_vertical_slab.json5" +hash = "288b85e0650322b62d6bb810e65b5ab5785874fac2c45f4551451720e7ffec73" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/magenta_bookshelf.json5" +hash = "4e3d8ea40dfd74fbddadc35d4dda75da91de030e266b1165d18f12dc30040372" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/magenta_chest.json5" +hash = "297df886aad9be4af3f14bf3fc21a8fa74d72c3215d36fa9ab739b0d7edd6462" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/magenta_hedge.json5" +hash = "4e742a4f4a2b8267e1f5e413053f520852e2ba39ada3e142e73c319f80eee34e" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/magenta_ladder.json5" +hash = "d8e7cd086bef6896911e6061c5e10fcc2165ce6da71a5733c9198d7065ee289b" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/magenta_leaf_carpet.json5" +hash = "3996bba3c2102011aa196e684290af69f8c9a7b18ada97c96b09ba89c4932729" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/magenta_post.json5" +hash = "d07b5d75d5b024b081752e7f90986eab190b861bf0695aea151d38a253cf2810" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/magenta_trapped_chest.json5" +hash = "49fa96a6a5766f43fb3f58f33e4ea6e0af1a267839efc7fb9d0b6862291ca748" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/magenta_vertical_slab.json5" +hash = "05ad40b66d686569637e557e7993b2d4cfd067eb8f3cdedaed9ba25b0d7bb050" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/nephrite_blossom_leaf_carpet.json5" +hash = "06366ca64fd94f2205ebe8589b6fb7a22dc8ebcc89a974ffb415d425ca71e732" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/orange_bookshelf.json5" +hash = "1343bdf1168cc6d9e308686c1cb2eec4801ac358ad7f00bdebadc0c62fc1fb9b" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/orange_chest.json5" +hash = "07a810ca986bf2eab847c53342e5d22b7f6c972e017e38fc083b37822f9789b9" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/orange_hedge.json5" +hash = "44c0ee89228f853805dff83a933521e84d6b3145af84565949423d2b1afe82d0" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/orange_ladder.json5" +hash = "d1c86c21af09748261dbec9f0319ac98ef50771a760ab5f10aae4ffe2dc46a8c" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/orange_leaf_carpet.json5" +hash = "8e7a60c805b09f7d7e16a0f11c3bc3d804ab23136ea4df56395c6720ec38a37d" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/orange_post.json5" +hash = "0a7235120f04edf54fcf22ad55ea1c8f2ff3ad81b2736833ac7977015d8ffbf6" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/orange_trapped_chest.json5" +hash = "68421ff2507ac66a28cfdd4853b74852dd9f88bcf217d7bc7d80467475ffad68" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/orange_vertical_slab.json5" +hash = "9fbfe0cd5294c839385ef898f458b66b0e33e646333b1627c24ed77a311ad67b" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/pink_bookshelf.json5" +hash = "4799a73b7429b24fe30d88b6ca3b475788aeef14614ffa7259f3a26334b04b24" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/pink_chest.json5" +hash = "74b028113723b775967ae6a2dd5904d8cef13b6a2c2c2d2a5c2db9fb0c6c8be3" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/pink_hedge.json5" +hash = "8ba5f1c2060cc642adf16313e79baba75adf245a5abf81d91fa1358ebf1879cc" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/pink_ladder.json5" +hash = "1fb30fab7a6637a6ab292231ee1aeb9feaa2af72640c1c8cfd205a8b81612cc9" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/pink_leaf_carpet.json5" +hash = "dd3539d8f565ed81e78949f66af73071e159f2b6ff846beeeb08322ec7a920af" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/pink_post.json5" +hash = "75ceb5dd3d51a1e182a902a6fa7dfd9a812fd4c33b3275083179b56fec24f034" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/pink_trapped_chest.json5" +hash = "ef4d250b7fea5d747006705833ded1953d88b3b6a4eac45367021b668ef4d168" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/pink_vertical_slab.json5" +hash = "8f9c76ad5779b4961eda41fa2a84ef05a7694c0d06b7a5b99bb3b23d029a9561" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/purple_bookshelf.json5" +hash = "aff01c5edf29a8453e7083e1e9e8823a6977fbd5f64c89a3fbf1d6587e587f36" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/purple_chest.json5" +hash = "f83d9fff3ba599525bb5f514ff29adcfe7b1c942560445a61db019b1f2fc498f" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/purple_hedge.json5" +hash = "b829f85248781e1a8ebf4822c32d23f2a97bf495cdffecfe662b606f105ca4c4" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/purple_ladder.json5" +hash = "02baa2c20fa2d257cf9575184546a2ae0ff0f779f8d89ba32094422ef1a66f42" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/purple_leaf_carpet.json5" +hash = "d432a14c6af0a4d5794bf3b170aed2d867b60c52af2c4fd1a2d7a9c0936789ec" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/purple_post.json5" +hash = "7d1860f4315795837ce399a6e93e5cbc3588f13dd38f6216fd8a463feeb672d6" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/purple_trapped_chest.json5" +hash = "d4007384ef29576a4541394b72d98ae1f89bb20bf43e1e6e211447ac20d6c247" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/purple_vertical_slab.json5" +hash = "8f06e7945d1f56f5032572de7e62c9242607a6fdef3e0f872ec1dec95c5eb9db" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/red_bookshelf.json5" +hash = "0d3eee7f384e2d674926f89cc5b15f0f1843514ef7c419e9e248873c12077df7" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/red_chest.json5" +hash = "4c2c583f50a743d2b9e2bdfa446f20d37e7aa8510c4b5c15d540492bb61e8140" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/red_hedge.json5" +hash = "ea702f52aad48ea89f15b194dbedc72693bca41cf8f29b5d92087a0bfedaa30e" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/red_ladder.json5" +hash = "cf9044c7776ed4efaf9a870508d61c125fc3d1d86fc74d46a250e3a68f8de235" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/red_leaf_carpet.json5" +hash = "1e1ed3a37345fa6b80c068e099622ff9c3ae2cd885ed5068f8ded5a09d70015b" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/red_post.json5" +hash = "f7a266ca925d6c5c3da7108a881696f8542b223845617af4ad4a6df0311ffdf2" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/red_trapped_chest.json5" +hash = "ff2928db774002bae609e23fb33698662e3e2aafdceaa874b9c8ee2e54671a94" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/red_vertical_slab.json5" +hash = "40fca8a45882ba2ee41ad1311bbd1fa30e496387c64624a38c58bfb0412a9244" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/slate_noxwood_bookshelf.json5" +hash = "ec99d62148ff4e85d26149584732a8a6051c49117e7ad6960654d1c9a5c259cb" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/slate_noxwood_chest.json5" +hash = "ec86f1030ba1690545d47a0d10773680ef1b23c0a68cb7c506daf3120e24dae0" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/slate_noxwood_ladder.json5" +hash = "b9c340e958ec6be0dde3f4b070a4e77f9a9f3b0e92c4d2bbb11524a2805eeb2e" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/slate_noxwood_post.json5" +hash = "96deee0d3a4b0f7c3fa56b7fac68ef76efd561eb933e2a4e1375cb4d9f130512" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/slate_noxwood_trapped_chest.json5" +hash = "cbbb2cd53dda3c9b5a6a4522db29f3f29ec834226ecfa2f6acd9313c3e13aaaa" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/slate_noxwood_vertical_slab.json5" +hash = "39c23b6aee488d53187e73c0ccbd20c1e0329bf56e7be65071db52cfce2430f0" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/spirit_sallow_hedge.json5" +hash = "4d3a258c290039d5a1c4a8bb5051756c9c76298b3416c9e8d421a30d3f382234" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/spirit_sallow_leaf_carpet.json5" +hash = "5e18f0a537b194db7816f7673b416d6502ed4261e067c2aa0384f199489763ac" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_black_post.json5" +hash = "335c95b25572cf4778280bb439915a150cbea6f41b0643bd52549455ce1c2b80" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_blue_post.json5" +hash = "367118eb7f7442e35b93d0231f4844bc6879928f47ef7269a465205c89be3210" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_brown_post.json5" +hash = "8e43330f5cfa12e8feba9623ae2b0b2e131a94afd2ba6ad1cea152883d61e2ca" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_chestnut_noxwood_post.json5" +hash = "1badba65e9a4932e4bdc6a0c1a05a15811c43bb8f8f4f837d81ff030daf10e3e" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_cyan_post.json5" +hash = "804efb6c7b7aee0d94481c14a79813b368e42861c15151b995aa445a4f760428" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_ebony_noxwood_post.json5" +hash = "cab816a491b8c9ceb4c7abe7117590aa5293d5c2b50d8c18781478c60cb6332a" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_gray_post.json5" +hash = "240a410de1d8fc68f7d37d83785f4bb2b9191e601b3524fef84b93be332e89a5" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_green_post.json5" +hash = "d24bdcd67715854f8746f4b08d23c1f59c4f687cfda0b37a7242f3a1d9a2dded" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_ivory_noxwood_post.json5" +hash = "5368e356df3b06b5edf7514a0ee215e30c1ba4ed512a85a1a8df96f3f3ed98b2" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_light_blue_post.json5" +hash = "582238fe2bd05e3a2be6c2bf9437d88d0b8f7405ac4edbabcc870db5d44da4f0" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_light_gray_post.json5" +hash = "fa7cce5fa13be7171510c3460a03aef7a5222ba07bd29a0e1219a02852f12f0b" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_lime_post.json5" +hash = "c8ddaab47d4e5375ab0ceeb25df0f1f9aab6426fa99f274490a3f0c95a9dcf48" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_magenta_post.json5" +hash = "4f2939999c286bf04946beb4824498df596d587d3933ba0b93486bd9892902a2" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_orange_post.json5" +hash = "e8595ddecd050fe005fc3977af8e5fd1060cef9b3f7777c69e01429b6cd0cd62" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_pink_post.json5" +hash = "56c0f4b3a78441955af67e44804f9e70c766cb588a6cd033e03693442580bd37" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_purple_post.json5" +hash = "382b53753d4b62106cbbfdcd224ef0ccc7de5c1708fdd229e2eb2e0986881f26" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_red_post.json5" +hash = "16732528dd0395579e26529afbbc5d259cfe0b9dab1e48bf1ad8ecc224ccada9" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_slate_noxwood_post.json5" +hash = "518d293c9054cde8f38bdf6a0177144dd31dad8496ce33cfd179a33e22cf55eb" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_weeping_gala_post.json5" +hash = "fb23fefd0aa896896336f4fe3da6b9a60d6ead581aa2ea5315047e9a11ebf776" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_white_post.json5" +hash = "6cb94c4e31b471b4cb516a6ee5ec486b99d0b340e77f65a72e5bffd90a1a2b58" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/stripped_yellow_post.json5" +hash = "97e20edf41919ae3e4a19df42f1a0c1fc925e1f09f4f972c0107de7ec1224851" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_black_planks.json5" +hash = "e786efecd345081cb769e6d496639e08e79a8911a84e7cf03d09495740f7cb2c" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_blue_planks.json5" +hash = "b043bc2c1bb5885cad15d13b9bd77f29d558cd935ddb1c23c1622841978ae90b" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_brown_planks.json5" +hash = "37903799d9b14353e5a19533053da5b417bf0f3baeddaca70b7de3a8306522e9" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_chestnut_noxwood_planks.json5" +hash = "8da19b53d0cb0e7e7c9210c4255d18d4a5119dc5e1c19a486c7e771cf1082a29" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_cyan_planks.json5" +hash = "b8195bdfce3ea90bde2be8ebf7b05c2396396fd2bc6ceab445aadd04246cd759" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_ebony_noxwood_planks.json5" +hash = "2c395d412babdabe76b6316e7e6c29b6f917a1e594ab29689f5b3f60cccc4809" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_gray_planks.json5" +hash = "d8adc71721d237e2671cb70970361b654aa485d709bf889723fee8cd2c14e80c" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_green_planks.json5" +hash = "428c0328587575a6cfa7367c8442416a5c3c64da5b184792e624d6be6db6ed53" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_ivory_noxwood_planks.json5" +hash = "6d55d5798096f44f2db3efe93075e92299cb4e93b4f4932eb8ac953ab9385f51" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_light_blue_planks.json5" +hash = "6aba6bb504ed3a84169d569ca07777ddea21089197d7943948c99652ef1249cf" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_light_gray_planks.json5" +hash = "cff1fee6d779df9747fcca52910e69efd35498ee59ab776d866a764b05e9e9b3" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_lime_planks.json5" +hash = "8d41cee04c99e896c60980f1092b53185978530e4c4b9e8263872561d0365292" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_magenta_planks.json5" +hash = "3d22e87a4ee19558b70b3172ad7b0bffdd6d9c96bd7b9e72347f7cef2c49cf65" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_orange_planks.json5" +hash = "2a25d7872d9dd7dd8eb7e404ecd35e0e93a340cae80a3437204469b0b255c5c5" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_pink_planks.json5" +hash = "a3957586b899edd0c492ea40e888c1b18449a0fa1142c4e5469bbb67a790ea49" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_purple_planks.json5" +hash = "7f210136a5b999d39b256884c4a8ba7fdeff3d9093a8d0e86fb85f59c8b6a458" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_red_planks.json5" +hash = "c1c91cc3c94ab66ba031963fe91e99b10376acc401fddc8f038e536f6ff497cb" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_slate_noxwood_planks.json5" +hash = "4c14544da726df6edd97f798ec3e5b073a07e3715b6fa914cbdce025e619b920" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_weeping_gala_planks.json5" +hash = "bd31e9c2f4ca68190534a3fa4dc29829a829ec21af503ef9c7bf43decae0cdcf" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_white_planks.json5" +hash = "5dde0cac019fb65f058da360ea243176c1c9d329098a3da31a4e610129597f24" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/vertical_yellow_planks.json5" +hash = "b8b61fa7222bee6ec3f000a963f2b1db975e9b17464b2b732105213fd09967c2" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/weeping_gala_bookshelf.json5" +hash = "e1b3e4b9f3268fbfab4076439f5fe54b7e779f637664f1299cfaeca9707f4aa5" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/weeping_gala_chest.json5" +hash = "8fd58939f79a9231b48843e7795b326c36398bd5d5dcc7e607473c2f7de3119f" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/weeping_gala_hedge.json5" +hash = "577bc7d65fb5bb4cdff3f8aca91e78752b4cfbec13cdbea47a47eb20014cfbdd" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/weeping_gala_ladder.json5" +hash = "eb247b7becd912bbaddc6d287af5dd8fa651e334059a66ed6d7148d9ea96cfc0" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/weeping_gala_leaf_carpet.json5" +hash = "393f622582d437fc4c6cd90a1679b9bf6b28d40bdd6243c4b99d9bd7e5f59c1a" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/weeping_gala_post.json5" +hash = "c7f9ad2961991c9af5fd94b795b4e10ba3def125d2b95aeda683f930f0979e16" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/weeping_gala_trapped_chest.json5" +hash = "8b2a4bf314b6be2267192a76d1e4d5eae40fbb1ca6d4d54f2435dd00fd1008c6" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/weeping_gala_vertical_slab.json5" +hash = "a70f686c5ee53d9d05b3105e0fc6b849e12bac9d9b8238e1aa6078adb52f129b" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/white_bookshelf.json5" +hash = "ebc15ba446a4b9de50f0254f1ee2f4c1b2ff309ed333f83aed78c38ee208376c" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/white_chest.json5" +hash = "5d4471bfb61e050dbf1b0285829296697118ba6b14706a86720d70be60fdd4a1" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/white_hedge.json5" +hash = "392523d74e7accfb9fae69834c28cfbae1a7e66e79498e689727f3df3c6f5e78" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/white_ladder.json5" +hash = "90ef864e6aade56f064aa5ddde57b783b0000b85e939fd54a4e2b794e6cbed69" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/white_leaf_carpet.json5" +hash = "cec36b15501835fee1c6f8f94c3dc5d225a240f09f54c3c81c5504a2322138d9" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/white_post.json5" +hash = "f8621d316b589cac387676c4b5724ad02a9887586c835d2669528380f03e4965" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/white_trapped_chest.json5" +hash = "6812a0121f92a275f3bbcac03e42fa8f3dd12e7e93bcc8d580ec642879266360" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/white_vertical_slab.json5" +hash = "ff42f5037ffe7ea1e21a549c8c60fb514052dab79f23749fce987e5328b77855" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/yellow_bookshelf.json5" +hash = "67dd6618404ea33f01799ae690ad2a440a237d809b897e2ab488d2005eafeab7" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/yellow_chest.json5" +hash = "c5774387261fff64e49bc5893b36b2d832a4ea31a032f973736591cdf047909b" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/yellow_hedge.json5" +hash = "f3e4a8f5e86b26a4411d910b869277e2eb9da531c569592900682ea08bf4ed5a" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/yellow_ladder.json5" +hash = "f9f084ab07a1bf2794a1340f33ef6f45991480bf7f943467502e3080ba73cbc6" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/yellow_leaf_carpet.json5" +hash = "5d744412b21836a1d4a218a3f51cf07903f0863314fe2894afb8c34c1861bf6d" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/yellow_post.json5" +hash = "370c69cde084aa83723b5d9fa9e883fdf47e2806fb6cda067e38ae873646e4a7" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/yellow_trapped_chest.json5" +hash = "a092feb418aa4ec4b8ef37f295a644d1790f2f021bf3c9760d34db8c955cfd0e" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/spectrum/yellow_vertical_slab.json5" +hash = "fb0c94d7a530e2afb8ad581645bfb1a2e7b9436d8b23fd74e0f35ee35f46b96b" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/brown_autumnal_leaf_carpet.json5" +hash = "905f4c10d5d852c33b44404b007880881dce57153fc3706ded45f9493801a50e" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/fir_bookshelf.json5" +hash = "d67579ed539566817692d85d32b46d7ca85c5c7cf6a3b619cb767075b825ac04" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/fir_chest.json5" +hash = "b7098f038908942c7c8406519f1a54ab8a330f62c5dad13cade0e390accd019d" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/fir_hedge.json5" +hash = "d1a3118e1444020ddf5d07e5484f8fd8369fa104a4f570cad0427866a9ea96db" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/fir_ladder.json5" +hash = "7f29341582d362128c6fa4ee6bef8e9b97326ed39acf2197b35cc4f9cbdc7ec1" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/fir_leaf_carpet.json5" +hash = "c7438d0a12b4c8a05025b436ae6304612c2f29c0616322ae7859939d04c584e4" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/fir_post.json5" +hash = "848efcb89c2b2d3d3b6af4972fc19591f621289cfc0a3f00decb459672a8008c" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/fir_trapped_chest.json5" +hash = "121648c1be86008846da2a701d6e399d24479c61c3679af8243904fec9c68d76" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/fir_vertical_slab.json5" +hash = "0ac2660fe5d90656c8fdecb97b6d16689dc92d68adb4224c804a773e7f36c030" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/hollow_fir_log.json5" +hash = "4bcdae28922fe4b0a5102c6cbb2a82381c1142bb0cf1127865f9c90b0e87bfdf" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/orange_autumnal_leaf_carpet.json5" +hash = "e23046889fe2fafdeffa73a353766e0b7d164216dd587816ebc28f2140548fe4" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/red_autumnal_leaf_carpet.json5" +hash = "b32b9dc64e711a01e825133e25634099f86d1b8793480e69f39cc435a498a646" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/stripped_fir_post.json5" +hash = "6cceff42af2480278012bf15ff1be31439c0ef0d94fe9b03b175b79a5bd55f11" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/vertical_fir_planks.json5" +hash = "d1ad6c39374b52e27ee788008807d79acba4a8b84470cebcb3020271a2f27444" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/traverse/yellow_autumnal_leaf_carpet.json5" +hash = "ef7bc532f270b56c1afe401fd1a9dadbca65583a87038eb00f87c5862783077d" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/yttr/squeeze_hedge.json5" +hash = "104ee781ed28a553645fbef003e0d42ed514577b372b87191b3e9ad9a8268843" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/yttr/squeeze_leaf_carpet.json5" +hash = "12a8e08426e2edaf8bba88b48703a57660bf97b454ff7c91d79de2980802005c" + +[[files]] +file = "config/blockswap/known_states/everycomp/q/yttr/squeezed_leaf_carpet.json5" +hash = "9d1fb8ff9463314fdff2d9331b942b39ff98dfd9f50d2c4bd91423b7f5e706ef" + +[[files]] +file = "config/blockswap/known_states/exposure/flash.json5" +hash = "c24e4f67d560a50f090277f4c7183637f194f53e0760a972cd08f8768d2deaac" + +[[files]] +file = "config/blockswap/known_states/exposure/lightroom.json5" +hash = "db4bf61b9edea612a6aa6f2db4cd93d0cd342e779bff88dcb61ec8314dddee48" + +[[files]] +file = "config/blockswap/known_states/kelvin/particle_spawner.json5" +hash = "037f6853cb1e63aafa6c962b8f0ce59190ecb5e42c7960ee105ed99f015fccbd" + +[[files]] +file = "config/blockswap/known_states/kitchenkarrot/acorn_oil.json5" +hash = "43e4ed01162e6f7226c2f7e5c64df0c66bec501a212e203f375d81b7b1c39731" + +[[files]] +file = "config/blockswap/known_states/kitchenkarrot/air_compressor.json5" +hash = "d7de424938d63f3d03e00bcf00b5e3a41f7f21483d4e05cca58c1e63453e7fdd" + +[[files]] +file = "config/blockswap/known_states/kitchenkarrot/brewing_barrel.json5" +hash = "67557c42b1369356dde7474d71b582d1388bd34a227bd87578c7816e6f674823" + +[[files]] +file = "config/blockswap/known_states/kitchenkarrot/chorus_oil.json5" +hash = "a458c5fce51f57a068d8d0d4a8e641c0276720c24e5c644197e29e0e107f4c82" + +[[files]] +file = "config/blockswap/known_states/kitchenkarrot/coaster.json5" +hash = "8e43164832606ee90069477908e854229ff9d13b800ec24c1f38eb6ba9c843cb" + +[[files]] +file = "config/blockswap/known_states/kitchenkarrot/fine_salt.json5" +hash = "9aedd22e7bcf229037e6cf160df671057055a61e1f0ef0b32ff87592e3a44113" + +[[files]] +file = "config/blockswap/known_states/kitchenkarrot/plate.json5" +hash = "cc7cc5f11e4d423aa538908b0d41fb128f0f31a826d9d928cf025a078435890c" + +[[files]] +file = "config/blockswap/known_states/kitchenkarrot/rock_salt.json5" +hash = "9dec6b4780135bb982d72b914eb49d8cf5c6c4075b52e013c072e036b4387c0d" + +[[files]] +file = "config/blockswap/known_states/kitchenkarrot/sea_salt.json5" +hash = "73993f87734aece7615f5c901041e6732c50dc736537e83387c3c9859836b543" + +[[files]] +file = "config/blockswap/known_states/kitchenkarrot/sunflower_oil.json5" +hash = "9be47f9b51426eb647cdfac6de35de1cb9f92da36ce82ecc98565dbda8aebc34" + +[[files]] +file = "config/blockswap/known_states/lootr/lootr_barrel.json5" +hash = "2c1a56ad2de7d2e1d1e37c8fc033b740b7c9bb25529d88e4cdeb72790b7a3aba" + +[[files]] +file = "config/blockswap/known_states/lootr/lootr_chest.json5" +hash = "67b3cfde67b76f237b2612c97c872f6f339b683a6c4397c9600684fc9f0efe46" + +[[files]] +file = "config/blockswap/known_states/lootr/lootr_inventory.json5" +hash = "afb609326a59323b2646c38d3cf49fce57751f4dbdfcea59fbd93362f531918c" + +[[files]] +file = "config/blockswap/known_states/lootr/lootr_shulker.json5" +hash = "efef52422e2f26df3c24325a4ba9dd7c8fac51472be5557f540ba8064965e362" + +[[files]] +file = "config/blockswap/known_states/lootr/lootr_trapped_chest.json5" +hash = "59f364f361cb973645ceb0a1e4b8c97cec28a28d52fa4027479c8d68e1c06cae" + +[[files]] +file = "config/blockswap/known_states/lootr/trophy.json5" +hash = "e4464b7f7ba8023d234fc894f28bd686bd80f9a4a3229bf4685b26a90f56a44a" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_button.json5" +hash = "ab7e0cfabfd12952acccbf9700f010eaeb1e93e754642b2b36f5c81149568c2e" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_door.json5" +hash = "26c7646edc1bbcb35402494f1c40e6b23f761795ded4f8e4fd2b466e1400fdad" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_fence.json5" +hash = "4bbd51dde2d41baee56b220a12e4e76d0dda55ddb8a96a1a79fc1d3fe442324f" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_fence_gate.json5" +hash = "00985700e7b362fcc8379927f631da23ae8faa8047c451f81c9c81a48a812939" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_hanging_sign.json5" +hash = "912dd6a5cb84f85fc3f81203932cfcc754a21accbb25cc835a11298a65dc940b" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_leaves.json5" +hash = "a6d56e7fe87744fd9c61c5c3a759a0532ed5246dc4c6a91fbfe7ea698e44cf51" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_log.json5" +hash = "fad8ae43726c71c42a849021b72dcc08e0bbcd7f9561fa5aa0da1ec258d93024" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_planks.json5" +hash = "0bb5427eab50d828f8796f1d658d758523660b5ccfdf0d5fcb236c8c9b99761a" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_pressure_plate.json5" +hash = "0c4526a68ec9c2632dd8e117d0a7ce766c568ce06a5ce806283f601947b8704c" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_sapling.json5" +hash = "53cba8e82ae62e3363b3ecae1195368a1d90f0dc3de22f704cb68a8abd3c144e" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_sign.json5" +hash = "25a516684fc6e2acfc712bed8b6209e51cf290cdaeb930d1596a36ac699f0952" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_slab.json5" +hash = "a8c1e4faee6a80ad67eae9a7d40a1b70453ee31318c3d5a0a74a3b409caae0e4" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_stairs.json5" +hash = "3ec16852356a76a4b220d19427a0863291f900f889b3c7313789aad4b0398ad6" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_trapdoor.json5" +hash = "585ba56b84ca49b2225d73a1a4fcc64d3048e40a729e55db3e84e52c9a1d8993" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_wall_hanging_sign.json5" +hash = "c9c8fec4f81798d9baefd5a7e0c5f01b235a8e0389cc43620f409cdb369d3f2f" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_wall_sign.json5" +hash = "819654efd11ec18654079dec3f9f4cbf5eb5a46e7c1f511222ccf3024ad87efe" + +[[files]] +file = "config/blockswap/known_states/minecraft/acacia_wood.json5" +hash = "6d500b4a07d70e7ba4ed555faef5060d2adf2ab3d39266df2d59a24a13174e2d" + +[[files]] +file = "config/blockswap/known_states/minecraft/activator_rail.json5" +hash = "bf55b4af899fbba377d6559257e867f152c1265c2fdf461a04233a62a30eda6f" + +[[files]] +file = "config/blockswap/known_states/minecraft/air.json5" +hash = "7dcea10c09201ba783442bb76b5e33eddce04f76550e2abdb6b6ebdb1249c962" + +[[files]] +file = "config/blockswap/known_states/minecraft/allium.json5" +hash = "a02512f65f26721cf64dddc26df5905453a527fd5ab3626cb8c769d86f0e89e0" + +[[files]] +file = "config/blockswap/known_states/minecraft/amethyst_block.json5" +hash = "f0b5c0a875c41a0fdf936bfd4b626b59f91832935cc92a43fc47b8e1671d5f21" + +[[files]] +file = "config/blockswap/known_states/minecraft/amethyst_cluster.json5" +hash = "18618bd0de606f9a23037a77eaec11b9913d169b33486e0141e5fe248efd89d1" + +[[files]] +file = "config/blockswap/known_states/minecraft/ancient_debris.json5" +hash = "3c6f4af400c58b31deaccb972fa2dc1e96675ebfd0c55650181a974842482ab2" + +[[files]] +file = "config/blockswap/known_states/minecraft/andesite.json5" +hash = "dc110b973f8b4ec56e18d5d7b997d5c15774f30f327524ae2b34f6f8aa65254f" + +[[files]] +file = "config/blockswap/known_states/minecraft/andesite_slab.json5" +hash = "00b753694b23d32b720bed9ab3d194c7806149aacc603da4ea236d892dedae7b" + +[[files]] +file = "config/blockswap/known_states/minecraft/andesite_stairs.json5" +hash = "35ece8d233f118f3707cf2b889fdd588b97b17e222c7db5654d92b5cd8c333c4" + +[[files]] +file = "config/blockswap/known_states/minecraft/andesite_wall.json5" +hash = "a118068a1cb1e5513883489d73f0e1dd7a381579bffe9dee627d69df7258c8bb" + +[[files]] +file = "config/blockswap/known_states/minecraft/anvil.json5" +hash = "498b8d1831a02b6ffd5fd1a7c08bbe77fd1a5a2ea2bda6b56ba967da1d2d37f1" + +[[files]] +file = "config/blockswap/known_states/minecraft/attached_melon_stem.json5" +hash = "639fd1ddb774cf1339c4ddf8798af4a43524fb8a63afc2fdc5a9a14834883cef" + +[[files]] +file = "config/blockswap/known_states/minecraft/attached_pumpkin_stem.json5" +hash = "a04dc5a46f12fb32da78ea9f1126185e26e159bb4ebc9f537ed8ecbc34dfc8fc" + +[[files]] +file = "config/blockswap/known_states/minecraft/azalea.json5" +hash = "e1c5876ea11a9e5fad836833c1d06df49f24f06eeb86f72d0bf2bd6ca6a2ba03" + +[[files]] +file = "config/blockswap/known_states/minecraft/azalea_leaves.json5" +hash = "02a755548b6e07789c89ee27df6e4ab86f867543204d89909e89fe4a2baac528" + +[[files]] +file = "config/blockswap/known_states/minecraft/azure_bluet.json5" +hash = "b2077b5d8edd2fd8c47d51ca6d3721b712ef5793c8ec40878c5652d0fd851de5" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo.json5" +hash = "d18877248aeaa8d2341fe05e83282f8f427f1d2ac85edec24958d852b91c2e8c" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_block.json5" +hash = "8a68f9a4fea47f5c71970ace8c2f239babfda87d0a2e7251a3dd0c06d1f9601c" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_button.json5" +hash = "4b7d7b214f73eeea5eb43b5b0e077dde9bfb0d7e4f70dd12b10a61e22860e4a8" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_door.json5" +hash = "31c0d5741050e59997e76f8f89f04979d9904429848752b7c7feeb6bf1e3203c" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_fence.json5" +hash = "64197a0225debe3cab6549bb91e2ba17e85870f2e5a9b4782f5690e6ab6c57bc" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_fence_gate.json5" +hash = "154b64987a63fd2d09174dca404581b21a988f2f4476b4ac3f74d4f2d42aadac" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_hanging_sign.json5" +hash = "2144bd307392ac8c1c50bd83b0fddd928d69a5bf3863e6a5281d066df853bdb8" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_mosaic.json5" +hash = "3c39c2101b8e9b7f294b928f51309dbb9a9ee6371294e09f4c790d9ae10391d4" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_mosaic_slab.json5" +hash = "0833ff9b63b039ac6f4063fff330d594dac11e1744b9666df9853bc1ebee8df9" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_mosaic_stairs.json5" +hash = "b1072b992ab6f6dd28815c497a09639c1116305fb6073365e323325f37fa14da" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_planks.json5" +hash = "e39c3fac53e596ccd52461cc1e83457a7a90189136adc2a3d5d1536e4f864226" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_pressure_plate.json5" +hash = "3d741bfd282048dac52b44aca6041ddc184c95094ce19d79ad5fe5e7d94be746" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_sapling.json5" +hash = "74805f060518890a2735cebb6ebf3ef336d526272ed3775258aa62b91f4ad367" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_sign.json5" +hash = "d7d030270c650d8a2e6f32cd46e12ca0daadbe3939233028e694fa303c75e4e1" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_slab.json5" +hash = "441ac166594317a9f0b7f80b11123ce0fd348bbcbc2a16ca40126bbca4792838" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_stairs.json5" +hash = "247cb0643278292a2559cb2adc9174207712cc2bf3f148f2cd3a9738b99a9e71" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_trapdoor.json5" +hash = "70d46bff220f14492b189bedda17b478b6d8f9cede1df54315399c096ef84025" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_wall_hanging_sign.json5" +hash = "dd2f6f0d1f85c935ddb8bc30ca5b9d050da59722a529ac4d8463a37789b811d9" + +[[files]] +file = "config/blockswap/known_states/minecraft/bamboo_wall_sign.json5" +hash = "74adabb1f883c752b19e716ae09e2965ac2361ceb18bfd86e29873f19e7e99a3" + +[[files]] +file = "config/blockswap/known_states/minecraft/barrel.json5" +hash = "6a6495ba9d41c6bdb39ab71d23f3571c3698328d92bf04ec0277da32c019aaab" + +[[files]] +file = "config/blockswap/known_states/minecraft/barrier.json5" +hash = "2b116de557e22958b583fafc0da780d0b4ef4402073204efb86b7d71ea089842" + +[[files]] +file = "config/blockswap/known_states/minecraft/basalt.json5" +hash = "f47305a5ba62ee79617ab36747fc4e2fc5bb15c08c693145d8a15c88ca741ef8" + +[[files]] +file = "config/blockswap/known_states/minecraft/beacon.json5" +hash = "b2f429f173c36610e0040a4bfc4ab70bc63eca196bd191bd3877fa08d815e9f2" + +[[files]] +file = "config/blockswap/known_states/minecraft/bedrock.json5" +hash = "ea66c9fd67cbc1e5270c7f1038955969f00b4007b47f5e8c44df9041eaef38d0" + +[[files]] +file = "config/blockswap/known_states/minecraft/bee_nest.json5" +hash = "66757301be7f318e0d4145628abeb5eb5ab043fe0e46e7256983c48bfc44ffbe" + +[[files]] +file = "config/blockswap/known_states/minecraft/beehive.json5" +hash = "59144aa813cd1c976444fa90e29cecb54469bcee0c750f660303fa879e349269" + +[[files]] +file = "config/blockswap/known_states/minecraft/beetroots.json5" +hash = "fad9ee1f3ff6ec4947db027e0841976e4981bef268f144c05103aa52883c3da4" + +[[files]] +file = "config/blockswap/known_states/minecraft/bell.json5" +hash = "83aa65f30196a7367e7333562f1fb83889aa05661c699130d73bc0e65c3078cb" + +[[files]] +file = "config/blockswap/known_states/minecraft/big_dripleaf.json5" +hash = "a6c7bf310ebe801dd533bb837b9bfe9c520a245625934ea0fc3d9bac9824ea89" + +[[files]] +file = "config/blockswap/known_states/minecraft/big_dripleaf_stem.json5" +hash = "de9abfdf1ec8fd3f8bcd85c9bb19cbfd8b2d6b7e6ae4a353237a42b7cc0d946d" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_button.json5" +hash = "f4dbbe6b8f09fac7826ec7324d98ef94934d5ce8c35b78ee736fac2a8b2e7a3f" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_door.json5" +hash = "ffeb6ace364623cc1050565d90e6dab390b6638ff8a3e019d58f36a7e691092e" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_fence.json5" +hash = "9c33a210f19311dcb0d2c1049dc082767667f8682fd1a8e85e89432bce1c4c11" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_fence_gate.json5" +hash = "c35a34bd15ae8236daeeea5524ac04665544deb44b04891d4b8ca89b0f8eecb4" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_hanging_sign.json5" +hash = "b47b4fd45fbd47fc1c01c9b4db21eba36ada7b2d6a476673403fdb3bc77e600f" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_leaves.json5" +hash = "d1176a879d2a5742ba9d60c85edcbec42214bc45a78a0b9d35629ccffa444a80" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_log.json5" +hash = "6dddaf9c69b995006012eddac0e5095144ba6de917046b59dcd6f8f5f5dc39fa" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_planks.json5" +hash = "884e36ec2c17382c165186e277e8eb3daffdc13a9f430b7c94b24479015a2cde" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_pressure_plate.json5" +hash = "19de7572dc214dc6dcc4e5145b29aeccd9d3b5cce5ddb16ee3c0de438c3390de" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_sapling.json5" +hash = "581ff93ffd7abd0e8c4e88b12ae76af04de8b9644f0bd66021bba57288ac6614" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_sign.json5" +hash = "ac61de4a3bc944f20f8f0529d04755a38b4bffc92b8d355939d3c71d40e102e5" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_slab.json5" +hash = "3c87ff8e2ff80669b2010ab1136d7b706858ce36740da4003a6fe34733d46b0c" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_stairs.json5" +hash = "29cf68400213a79212437afdc314f8115776189b5d74103fbb6094b1afb77dc0" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_trapdoor.json5" +hash = "1353ecc94490203d2ac1627cb6fe53375ead8da984ef5a6d6bd8ca89191e7acf" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_wall_hanging_sign.json5" +hash = "94d84a397668d7caeee5e47bf90ed49bf99686e2a77a8d3c1cccb10e71304be1" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_wall_sign.json5" +hash = "d76e0a231d5dd9fe908f3e42a434db029145bc9e9b360fcdec2ed4ab89d64e85" + +[[files]] +file = "config/blockswap/known_states/minecraft/birch_wood.json5" +hash = "647373606f14d43fb4a7901e3ef9c502e94ec86bd5943db1c01973a6c0a88495" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_banner.json5" +hash = "4d6146120547d30e886cfc40aad492f738ef656f612c7344bbc0a321d8fbbe4e" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_bed.json5" +hash = "c1b887ad7dc051f1be0f613804564bd067d8673f6c8a641c2a5e6269f9bc19ee" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_candle.json5" +hash = "2d6e87c1aaa8e0ad5cb938ea2ef26b9758fe83d6ddeb09f21279356ad91a2ce1" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_candle_cake.json5" +hash = "13017a6c0ed4629a155de1359e64653925dd0c85ccd3b68c44598832b05f43da" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_carpet.json5" +hash = "07586b1bc5828fe0d31be2d5aba6f04fac79bde170cfe7855f9adc94d5829ddc" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_concrete.json5" +hash = "6a185f1c5732dfe1549ee1fe0f023afd73d206fbfd22cd57b80022232cc07cf7" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_concrete_powder.json5" +hash = "6758192b2d7fbc6262e6f508af4e50de4d39473b44dcb7f45d0b44cec6c4b3a9" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_glazed_terracotta.json5" +hash = "8c5c63af64fd744538c7c30a061cbb589330d04ac81521d0df4349fd57f5f995" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_shulker_box.json5" +hash = "13ee02ed70ee7048bd707854779a8b585cc0a736f7daf1428115397a26e1c619" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_stained_glass.json5" +hash = "f3ca58bd34e6ec3be63b33bb979e8b575e6de5099e17929f3727e5a27acfc096" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_stained_glass_pane.json5" +hash = "81beaf35d95a101c09cd33a73db22844931146b7e1531cab57762471a8237dce" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_terracotta.json5" +hash = "84f41bb290db2d0339a656ffbedbab6eca4426883bcdfd18e19aa429a19cdba8" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_wall_banner.json5" +hash = "006158889531d659020ccf2aafc29960425dd7090a63f3fc5d6af29f7b05e3f1" + +[[files]] +file = "config/blockswap/known_states/minecraft/black_wool.json5" +hash = "edae4d093cb27c08ffab24645db5d41ca52acd243a08588d754ea1c55f0ffff9" + +[[files]] +file = "config/blockswap/known_states/minecraft/blackstone.json5" +hash = "6bd9f2279d15eb2acbf7a53f0029b7bc6248b7178be8bdfcfd7890c91d0b05fe" + +[[files]] +file = "config/blockswap/known_states/minecraft/blackstone_slab.json5" +hash = "be57590161cbd12336ac2718f3a2c4157c1c5ea92c2f656d9606d7b0af4fb6c6" + +[[files]] +file = "config/blockswap/known_states/minecraft/blackstone_stairs.json5" +hash = "fb595f9085ac6a5f8ae063b1e22850daa1b72f65d9c79844083a66ae5fcefe28" + +[[files]] +file = "config/blockswap/known_states/minecraft/blackstone_wall.json5" +hash = "2db9a8b10f9a157d883073e4f53b24519491d34b7a35aa6c51bee6b0dbc013ec" + +[[files]] +file = "config/blockswap/known_states/minecraft/blast_furnace.json5" +hash = "67297f1b6eee3fa3b4199b3700c90592773a4f7f42981f37e3a172533fb357fa" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_banner.json5" +hash = "f88fa62bafcad508956c617b94a66a2fc03ccad8f6d5dee3026921e84c218d3e" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_bed.json5" +hash = "e9c7a176f267958bd20a4d9c11a1a5b799f374498004883a155a2a809d59a5be" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_candle.json5" +hash = "21c57ec5926b0e867d520ddbd18d50cd41ab201be634cd16a69dc06d6adb01f4" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_candle_cake.json5" +hash = "ecd69d74cbca3104042ed292644747a74c1384de408657f1b6f0a2c2b66b3981" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_carpet.json5" +hash = "01ce3afbf0a5e30e84b950d81510b2179e49982d83086a8578852612bbcb5ffb" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_concrete.json5" +hash = "107091bbc9fa5aee1e53d0deb2b90c0213fde651d90fa2c25ad5fd259b6704ba" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_concrete_powder.json5" +hash = "690d0220a8327eead2918ec84bce75faa1094577896dedbf2a4fbc7a221fcb38" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_glazed_terracotta.json5" +hash = "d87ab967799a50e135a3200439987d0fb58bbf60f710b8293e41544b27e0a260" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_ice.json5" +hash = "70eca600b3a0951bdc6a8e570534772041e693fdfa0c0350893c08e22740949f" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_orchid.json5" +hash = "ef42cc162872f5e1253b6ff8b2ea6bb3bd712e0ac3fd6d58110c6da7602f628d" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_shulker_box.json5" +hash = "84df431c8cc79f429c7486a39a40d8521f02796739b970fc630a8d849bb5aec8" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_stained_glass.json5" +hash = "c6ce447367283490a7139e485bc3a82ef7a9739e420f11e7231267e76afbc70d" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_stained_glass_pane.json5" +hash = "bb3e1b0518d74e5e673773282fe2293fb31754599247d17ab6f6e8fd7a24d3bb" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_terracotta.json5" +hash = "5bd23f3252f4904201464827c7e6c38912e64053ab0f9685b605391222d6fc23" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_wall_banner.json5" +hash = "1271ffef1d65ff1b266db3fe3133ef285c222a85c9944f10f04e01d721c2748f" + +[[files]] +file = "config/blockswap/known_states/minecraft/blue_wool.json5" +hash = "12b05f2935a3bafe41ec869d23b055b494d2db95373c85b342eaba3ad46bea04" + +[[files]] +file = "config/blockswap/known_states/minecraft/bone_block.json5" +hash = "76d549940c74b59e49bbe735b3dd6245be9ef214a1f50d6db232f6d0d738ba70" + +[[files]] +file = "config/blockswap/known_states/minecraft/bookshelf.json5" +hash = "db214ec06b7ecce177c4a1fdcf9c440d9e8eabdcec3abbcdfac31f5ca4dacbf1" + +[[files]] +file = "config/blockswap/known_states/minecraft/brain_coral.json5" +hash = "69af4b563d9cf0ae7eb05f54f84b011d1809a32ba1ab1020a67fc7542017d991" + +[[files]] +file = "config/blockswap/known_states/minecraft/brain_coral_block.json5" +hash = "423edc7c1bad4f8500fed81922be68f0752fd67c2f3200a12b1eb973031f21a5" + +[[files]] +file = "config/blockswap/known_states/minecraft/brain_coral_fan.json5" +hash = "bebf93b802ceaa364e66108dbf2be27130ac7c13fb097b18b85a544cf5e0ed3d" + +[[files]] +file = "config/blockswap/known_states/minecraft/brain_coral_wall_fan.json5" +hash = "042adf4a8c69b303ede4de3e8a1309d4727995d8d71e7cbcaf635859e21d66ac" + +[[files]] +file = "config/blockswap/known_states/minecraft/brewing_stand.json5" +hash = "de326c40046008f8e5d4176c5cc3c89490e3be19d987aed09a5e744e2bb603f3" + +[[files]] +file = "config/blockswap/known_states/minecraft/brick_slab.json5" +hash = "f499ce4694e4aaaefb92628b0a73e39789a78f392629530598637a4cf4812fa5" + +[[files]] +file = "config/blockswap/known_states/minecraft/brick_stairs.json5" +hash = "92ddb2247bdac4b309f7e680c288c190cf3e4f2493eca24aea484d4377788c4d" + +[[files]] +file = "config/blockswap/known_states/minecraft/brick_wall.json5" +hash = "a708e3713fb3510da17c1b6671628f259b04cb138727791e3d040cbc3c140c7b" + +[[files]] +file = "config/blockswap/known_states/minecraft/bricks.json5" +hash = "478fa6ffa580261d595267fef4156d1c84f88042a9b7b39f77ab9615a7cad81f" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_banner.json5" +hash = "eae9ca7d33312199c218ad57d524911d22166af1a9b7cba788f5364316d5c1f4" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_bed.json5" +hash = "7eb4671d0ff4872a273cdf934ab4c93bd2dacf26f08911940184d4504bbd5103" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_candle.json5" +hash = "dfcceea5bd02b9275755ecfbbee4e1c17dce4e17ec986eae81b04124f3fd5869" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_candle_cake.json5" +hash = "5ba41d608fc604c51feb7203d79d1b8a1765a9e35369f2bf42a4225afce22b05" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_carpet.json5" +hash = "60019aec2727d4f9eafbe443b7afcd123d92bbeb97d53ac3bf2f38475ae41704" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_concrete.json5" +hash = "6de818a1f9394c66d11605e4d8e76352f2939a427f11680341df4d360a6af7c1" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_concrete_powder.json5" +hash = "5f0dc091dcab14d1b91678eb8acfb8f8e6f1620c9b14e2d06ff1210c9817fc57" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_glazed_terracotta.json5" +hash = "ff25ae077d363dbed9bdeab571a68650a35fdb19e0e39f6129970152c373e966" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_mushroom.json5" +hash = "d6baacb624be7477eb0d40f563f9af413792ee5c5c049a943025af9c93c3ff68" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_mushroom_block.json5" +hash = "d3768ae2e317ac686b69291b33d1bf331ddfe850b50559f008ef77234c012f21" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_shulker_box.json5" +hash = "139fe5659c2bc3beb72a40e07e74ff86e06dd348fd13243fc50a4a365b53f9b0" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_stained_glass.json5" +hash = "a3a079518a0be01f29c4b67a967b7280abcf6d918b737a5428100a306990a90a" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_stained_glass_pane.json5" +hash = "b9ef989827bd0809ce0042f21963b4d380f5bf3352abbd798565e2e1e178b027" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_terracotta.json5" +hash = "916c95f990e372f258b2d482181d10333063112fc786ce8fac273743a47c3780" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_wall_banner.json5" +hash = "ace0eaaae5d3493a86d058f2cdfedfb7318324c9fd3eef48e557ad80b8c89363" + +[[files]] +file = "config/blockswap/known_states/minecraft/brown_wool.json5" +hash = "608b3ab9e978d6fa1fc5d558a28310a486fa560e43c33b816fc9cd333b3ead4a" + +[[files]] +file = "config/blockswap/known_states/minecraft/bubble_column.json5" +hash = "f5783eafd56c14780e1ecf0c13aba551164275bc2b83fa22977acbabc4f67a3d" + +[[files]] +file = "config/blockswap/known_states/minecraft/bubble_coral.json5" +hash = "add42e35cd7ba1fd144fe159fa1449087e08a40dc23789b598125982cec4579a" + +[[files]] +file = "config/blockswap/known_states/minecraft/bubble_coral_block.json5" +hash = "4406468039a83af293cf872b02528d377b7f41683053b128cdd90880503135c6" + +[[files]] +file = "config/blockswap/known_states/minecraft/bubble_coral_fan.json5" +hash = "ed4331acb330346348b8c7e533731ddc43144af321d2a14907b54af060be94b2" + +[[files]] +file = "config/blockswap/known_states/minecraft/bubble_coral_wall_fan.json5" +hash = "75360fc67312703c53ab1798b5761e7a1af04b30576c4edce24bbfe2d94a2b60" + +[[files]] +file = "config/blockswap/known_states/minecraft/budding_amethyst.json5" +hash = "ad3fde0c6b29cd17d63b8a179fcad465807cfefdbe27195719dcbb83346a2314" + +[[files]] +file = "config/blockswap/known_states/minecraft/cactus.json5" +hash = "51eb0cbaad18c2e0bbc1bd49820b70e81a390cde2d7357c45c6f26b272b2dc9b" + +[[files]] +file = "config/blockswap/known_states/minecraft/cake.json5" +hash = "baaeaa1361a5e4c1af374a629285a1a687d0460ce746243e014331e88353e163" + +[[files]] +file = "config/blockswap/known_states/minecraft/calcite.json5" +hash = "b513b9ef502919ebe2bc4a396684baa16f12865bfabf8fafde7bebe73d852666" + +[[files]] +file = "config/blockswap/known_states/minecraft/calibrated_sculk_sensor.json5" +hash = "b18a5164e2f46d4c10874fa99f6c4ad242f6df48177072e9ff1eb47ad73853eb" + +[[files]] +file = "config/blockswap/known_states/minecraft/campfire.json5" +hash = "16d45a0c14c93582c6a2285d09e43e5a711f31daaa993e4422b05840b08e2b86" + +[[files]] +file = "config/blockswap/known_states/minecraft/candle.json5" +hash = "204f5eb9283d661f98ce5a01d40d4724e0f015ba9baed64934337af1eb40ba5d" + +[[files]] +file = "config/blockswap/known_states/minecraft/candle_cake.json5" +hash = "fff69b58de9053578684f4d7e244df9aba62e90d508f07a9d040b3b69d3e1aad" + +[[files]] +file = "config/blockswap/known_states/minecraft/carrots.json5" +hash = "7d23ff7bffc73b8c678f0e2e37707ec44c6a46701fdd66350c0ecb222deb75d1" + +[[files]] +file = "config/blockswap/known_states/minecraft/cartography_table.json5" +hash = "efcea00996ae2ba4427a83a6ccd98481db16c4cee3cf06cb5162d0283e162527" + +[[files]] +file = "config/blockswap/known_states/minecraft/carved_pumpkin.json5" +hash = "8782e783ea8664ede10c7c10bb3807c0665f1f66c7df5fc0d699e922919058d1" + +[[files]] +file = "config/blockswap/known_states/minecraft/cauldron.json5" +hash = "90c439ac2f16d21b828d46d0aa81f15d567f5bf5bf1d510c60d827a2f47ef957" + +[[files]] +file = "config/blockswap/known_states/minecraft/cave_air.json5" +hash = "7013440f7c77a997fd99f2771131981f5e2ac1186db317fb2bc887c6cf67a2f5" + +[[files]] +file = "config/blockswap/known_states/minecraft/cave_vines.json5" +hash = "e2f2cbdaffb905e671ee6814871d22cb33a7492d917e98ea64a85a39fb091ef4" + +[[files]] +file = "config/blockswap/known_states/minecraft/cave_vines_plant.json5" +hash = "566e413fafccc7766fd108b259fe7f4196cc50ac910b98cb2419672a559c1de6" + +[[files]] +file = "config/blockswap/known_states/minecraft/chain.json5" +hash = "f0b0c32d2993d4e88502f4a42c573d4ac63d4aee458a7aa4e7d463ade51abf88" + +[[files]] +file = "config/blockswap/known_states/minecraft/chain_command_block.json5" +hash = "7aa03fc213d7916731835b83869ec329364320e69a3842f5aa3d068ff2190097" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_button.json5" +hash = "6c3a66879ee45bc1f5681cc0d22a8cac77dcbd0104d78401ff86b1a4671e9e30" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_door.json5" +hash = "3feadb110ea8f5a934063ee995020902cecf50712da9fd51e13524e7b7854ff4" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_fence.json5" +hash = "b0e5ffec4ca7d0f641dd2ce4124ae6d7d1ea869ab35cacd8989f10c687482054" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_fence_gate.json5" +hash = "5450a0803ca65020ce01d74c000058c093007534240a704fac279f40248512fe" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_hanging_sign.json5" +hash = "6bbeb5c8b8b5e7936d24e35f1681a74acd9bbba9d95d216f0f3dd2040185ac8d" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_leaves.json5" +hash = "ac3f0426e9b40dcb0e493d74de3b7bf2326f822a13b3c62cedf33719aa24e234" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_log.json5" +hash = "b6960c0da4a3b4a919d3d985a7b3f35f7a1f37ce4a7fabf0008ba5785a2dfacc" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_planks.json5" +hash = "eca8a2248d7d65ecd8290173ced48a92074b59ef4687c5fb3e8855ac6f28460b" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_pressure_plate.json5" +hash = "68e1a52d0ece72a8e6992ceee320784ad389fac975df49f3b68a56ba96d262e0" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_sapling.json5" +hash = "f5fbf2b4660cd6fbc3459755416fcb8a7a9f2ad639c2c64d1bfca400c7404f7d" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_sign.json5" +hash = "515b9b2dcf8633636f3f2a53152f26abe1646d3f7f75f9c54fcf52919a37f8eb" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_slab.json5" +hash = "8887d5f01c2e4410d3329d76cae33aa60c0a271bf7859bc27243717ecc3e116c" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_stairs.json5" +hash = "67066dfdfc528be36a44fbbcb3935b4852bb35ba703385750fec9f713588dae5" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_trapdoor.json5" +hash = "316a0525fdec5cce875cd529025d88eea3336a3417f1b02fca5a1eb7174a4fcf" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_wall_hanging_sign.json5" +hash = "646f9ef44d2404e48b95e79ce4c869ee18d380753283812efecfeb6e3b8cf9ed" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_wall_sign.json5" +hash = "ce205edbefd9a508d546e37adaf51571f60bcaa03dcf01d51fb9c8395d890a4c" + +[[files]] +file = "config/blockswap/known_states/minecraft/cherry_wood.json5" +hash = "0646830107b4fbddfef0c87e6a877a13fd2dc9ed981b90bbfe67cd5708e057de" + +[[files]] +file = "config/blockswap/known_states/minecraft/chest.json5" +hash = "bff98f7db438aa44847dbfb020960abbf7726e502609a0f99d3aa7dc10ba4895" + +[[files]] +file = "config/blockswap/known_states/minecraft/chipped_anvil.json5" +hash = "0e42f9cfef5fe87f09c83d7573adc36a12f6feafa617807cdea01281075c92f5" + +[[files]] +file = "config/blockswap/known_states/minecraft/chiseled_bookshelf.json5" +hash = "004cb019b862ac17b98b1f347a917e8bd2c4233d208ba438e6ad8de7382298cf" + +[[files]] +file = "config/blockswap/known_states/minecraft/chiseled_deepslate.json5" +hash = "e9a9383ebf9a0398f129f517958fe3880ef813bffdf60d3324fd642a4bd1645f" + +[[files]] +file = "config/blockswap/known_states/minecraft/chiseled_nether_bricks.json5" +hash = "25b089895fc7ca7ec4f2b05d0e1f3cc1975128827187bd971ca69092f6196a35" + +[[files]] +file = "config/blockswap/known_states/minecraft/chiseled_polished_blackstone.json5" +hash = "e6f131a90618ebfbb414fc67ef4424dc9aa057163a5c47a0c26be7e8b6492d7d" + +[[files]] +file = "config/blockswap/known_states/minecraft/chiseled_quartz_block.json5" +hash = "69916484dcbc74d349304555f79503bce7a123f202f0009876a62747d5caf0fb" + +[[files]] +file = "config/blockswap/known_states/minecraft/chiseled_red_sandstone.json5" +hash = "a1db9a665bf469715863be46122b9092bc647e2237abce70e43090d1896a5893" + +[[files]] +file = "config/blockswap/known_states/minecraft/chiseled_sandstone.json5" +hash = "581dc6b11555e365474efe43e43096818a1635171a1444469fbff56fd8f5a964" + +[[files]] +file = "config/blockswap/known_states/minecraft/chiseled_stone_bricks.json5" +hash = "bfe2a0da6bf1de90a8b3e58eafbd9b6b9753dc91f141d10a69def60cb9cecfbe" + +[[files]] +file = "config/blockswap/known_states/minecraft/chorus_flower.json5" +hash = "8f2616205ee2b1e9a607b26997e8e2ad95eacbc0b5ca7f71561aff1c8299d17e" + +[[files]] +file = "config/blockswap/known_states/minecraft/chorus_plant.json5" +hash = "f1deaa70353300de8004ea86fd248db1737eb36054cd5d0188a0e72692ef35a8" + +[[files]] +file = "config/blockswap/known_states/minecraft/clay.json5" +hash = "0c67e20cd74f4fad0a772f785479fc92df78db9863c0d18ceccdde9ae8281ff2" + +[[files]] +file = "config/blockswap/known_states/minecraft/coal_block.json5" +hash = "a6b2fa53dfcbf60bdf797deae37c6678f27e91cd6765418e860f25a8811eef67" + +[[files]] +file = "config/blockswap/known_states/minecraft/coal_ore.json5" +hash = "ce0b488af624165fc79662c341cf50210d9b59696a131ff278b95d99879af797" + +[[files]] +file = "config/blockswap/known_states/minecraft/coarse_dirt.json5" +hash = "667be129c53fd3bdd91c26d4856f2abb11e69244acb8149d43b266188f05e906" + +[[files]] +file = "config/blockswap/known_states/minecraft/cobbled_deepslate.json5" +hash = "01f9817e52fc9d8a9508542bd2ce3e6bfbe92e531313a543f4df3d3d574062ca" + +[[files]] +file = "config/blockswap/known_states/minecraft/cobbled_deepslate_slab.json5" +hash = "99c2081e64be47b2e559d930660707b894a1f7e41ed3e0d9aa99583b9b6e9014" + +[[files]] +file = "config/blockswap/known_states/minecraft/cobbled_deepslate_stairs.json5" +hash = "a43ae63780aa3203779bd75118ee0d942bb475e8c237208cd0d627d1b61f11a0" + +[[files]] +file = "config/blockswap/known_states/minecraft/cobbled_deepslate_wall.json5" +hash = "d3a4eaf3fb99e42697ee7c9fc9b8086ab76cdf3c2da89865b515396fe3f901ff" + +[[files]] +file = "config/blockswap/known_states/minecraft/cobblestone.json5" +hash = "c23897f3d722811d6bdc68a61c562aedb0ea2d1f3409fcc36f5d0a7f99c8be08" + +[[files]] +file = "config/blockswap/known_states/minecraft/cobblestone_slab.json5" +hash = "3b441e5d737b1b150dfddcb04a1a0f3943bf138f1ed22b6235992a8cb43c2a34" + +[[files]] +file = "config/blockswap/known_states/minecraft/cobblestone_stairs.json5" +hash = "8d9de4d6dfee1b4944352e3c4d2d1573d23065b1ba3266868949fd3b7071228c" + +[[files]] +file = "config/blockswap/known_states/minecraft/cobblestone_wall.json5" +hash = "0f6e00ab3f5f4e5439b6eea12405255188a41c69973fd7bbc9910b8ed495d6ec" + +[[files]] +file = "config/blockswap/known_states/minecraft/cobweb.json5" +hash = "2937a6b7a471a6f26ba516e3651a74f3c548c1455ff474d16820c4753799dd91" + +[[files]] +file = "config/blockswap/known_states/minecraft/cocoa.json5" +hash = "b005cbfff711f9e43f669d9255a6b7fc9fa7a0d9c75623957133cba077f55d5b" + +[[files]] +file = "config/blockswap/known_states/minecraft/command_block.json5" +hash = "6a61973042581f5d8b0520cccbdc2c100883025329e0098cdf20d5da04086b20" + +[[files]] +file = "config/blockswap/known_states/minecraft/comparator.json5" +hash = "8e53d0b9beec2a1f789aeba21d89d59db48ba633652534c0a9f4e832305d93bb" + +[[files]] +file = "config/blockswap/known_states/minecraft/composter.json5" +hash = "ae6940939f439a170a90be8c23b58d8db67427deac0575727d85cc17fed74ea7" + +[[files]] +file = "config/blockswap/known_states/minecraft/conduit.json5" +hash = "a119cd9afeb9f6cacd608a924e4685befd4fe2f62c4f5537e7eac3ee36d94508" + +[[files]] +file = "config/blockswap/known_states/minecraft/copper_block.json5" +hash = "aaea01aa161316eae60f21898885a972435927606f11edd56bf3baf8cd17adfd" + +[[files]] +file = "config/blockswap/known_states/minecraft/copper_ore.json5" +hash = "13a487a7bd6063ad5e44ab7990dfaac385a2c57d14568082fc58005957f387d1" + +[[files]] +file = "config/blockswap/known_states/minecraft/cornflower.json5" +hash = "00b800c0c0518450a6be0806fa5448b5eec9f3d7ebb872165b7a8804aa648a3d" + +[[files]] +file = "config/blockswap/known_states/minecraft/cracked_deepslate_bricks.json5" +hash = "ddaa425671bcf9beaf24c6c131c6ae61c86721511ee8ee450fb5ab0d9b286d0b" + +[[files]] +file = "config/blockswap/known_states/minecraft/cracked_deepslate_tiles.json5" +hash = "6eb38295944ad0a4b77eebe426a36538ffee405411f0daa8382d02968b7a588c" + +[[files]] +file = "config/blockswap/known_states/minecraft/cracked_nether_bricks.json5" +hash = "526f7f5de349d9cbe2e6bbd35f4f78a7d1c07f5e5cce6dfb82b117d4bc84e3b0" + +[[files]] +file = "config/blockswap/known_states/minecraft/cracked_polished_blackstone_bricks.json5" +hash = "19cc21d57b0431bfc19deb35162318675c04e6730584393763c427037c0ea9f9" + +[[files]] +file = "config/blockswap/known_states/minecraft/cracked_stone_bricks.json5" +hash = "a25fbc870090927a2aa6f940dc46cdf7cc98046478d320523e8b05c1437f34e0" + +[[files]] +file = "config/blockswap/known_states/minecraft/crafting_table.json5" +hash = "0391cea902fc9104ffff38defd5be836e1d64c446ca5881a03e05de0d9f788bf" + +[[files]] +file = "config/blockswap/known_states/minecraft/creeper_head.json5" +hash = "884abdf6f23f8bb7ead5c69fb9e344da009e15a89c67853ad078cd3a6ea2425f" + +[[files]] +file = "config/blockswap/known_states/minecraft/creeper_wall_head.json5" +hash = "a342f5d6cb2e08c5641c7d4285311bf4df697957147ebb3a18342ebcaa0e2001" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_button.json5" +hash = "839531d8cd7a9fe6f26ad53999353a2135380e37a3f9c569dd34b7fbfd97e0c2" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_door.json5" +hash = "0c64ee50ef7250e2f91ca6cf12cbc55f73f36a06ddd1eb41e97e3c476e4e8c1e" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_fence.json5" +hash = "23310295d94e250b24e6668c7b8708bd018b932f68a0676e5da8f4a489aca74e" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_fence_gate.json5" +hash = "19f0c65ae7d92daf5b88804bb107766ffe911a219f4691fbd000cd86dd035963" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_fungus.json5" +hash = "c3013e5cad44147bc335d10a0aee3c804cb2b0967503999cbb0d6d7ac737d0e8" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_hanging_sign.json5" +hash = "619a5205134075717d8dc5d53f85ca2804a73a0f8e53828a5cb160fee8185c64" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_hyphae.json5" +hash = "2567675cf830f4109b869bf2c095a755297e2f7961a0efeb91a1072fce6a0084" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_nylium.json5" +hash = "c8a275c4a4c4ceae4084e260331ffd73370565d81ad80d5e6a054e2737b79196" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_planks.json5" +hash = "10250f2d2488c118a89cc6003d55a787f6e42b23fc930822a0a0e002d5445aaf" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_pressure_plate.json5" +hash = "c24316bcdf238e1dba18731d288cf5c0a9f64e98ffdf970d51522018ccceb728" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_roots.json5" +hash = "972891103acac60ba80a5ed391d23a2edc6622ded70a0fedb1ef01ee49952ac2" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_sign.json5" +hash = "707466dac8749d5360625c704fd7a6a59d30d8eb2b86823aae9fcdad274ba4e5" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_slab.json5" +hash = "b6de8bd3c5c33ff79e50d9b1e613ca9b34a40636c88e3f54b37a1bf1838da202" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_stairs.json5" +hash = "5293f1ef51a09b988bd2f27c4401d49bdb4c0dfcd7d52d060d6cda18cf8a1e36" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_stem.json5" +hash = "ce1c7ad37d25385050a38ecf9e1a24d2046edca00c502f480a80f44ebe96dd7f" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_trapdoor.json5" +hash = "189dff1dc177d69632bb820ad0eaee1b1fed4f2db113764cc19703c0e9df8eec" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_wall_hanging_sign.json5" +hash = "e17cb1007b91b3f9c08aededdcfd92e7c00695c2434430ebe81db741722c2fb5" + +[[files]] +file = "config/blockswap/known_states/minecraft/crimson_wall_sign.json5" +hash = "be2a51095ab9c5ada50ca7b6f76232c614477a074c89064c455b36307962220b" + +[[files]] +file = "config/blockswap/known_states/minecraft/crying_obsidian.json5" +hash = "1c989750c239fc11b8ff6a6de7b986855e88cdf77755eb36e676e7ea073061be" + +[[files]] +file = "config/blockswap/known_states/minecraft/cut_copper.json5" +hash = "2d48c51d4f012f1a7bfc5ce16e762f742dd3cb483fc5d4e0d610c744bca27a1f" + +[[files]] +file = "config/blockswap/known_states/minecraft/cut_copper_slab.json5" +hash = "2400406501e404f62b8f8aef22710b15db71b287013d3cf3f8909a0fc3142002" + +[[files]] +file = "config/blockswap/known_states/minecraft/cut_copper_stairs.json5" +hash = "a844bab542e5d5912e77e4cf979b4ee5fabcb945258cfc187c718bcb99884ea2" + +[[files]] +file = "config/blockswap/known_states/minecraft/cut_red_sandstone.json5" +hash = "daadbaa4b8bab660aea28a91673fabaf56426077da41e677d2fb4515eb8666b3" + +[[files]] +file = "config/blockswap/known_states/minecraft/cut_red_sandstone_slab.json5" +hash = "f63d9355df5b22fbf2fd9aa357623761cdca40446321cf86dd5f67227eb5d90a" + +[[files]] +file = "config/blockswap/known_states/minecraft/cut_sandstone.json5" +hash = "49507a3ba49807acc46b4ffd3cf14e5525c06f0cfe09fefa69565293326f651b" + +[[files]] +file = "config/blockswap/known_states/minecraft/cut_sandstone_slab.json5" +hash = "870a5c147de06781f210e8421464b6da52973118e9d3d82ce9964e0324f28bd4" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_banner.json5" +hash = "76ac424ea0e6f6ca35d4fae6683beb41cf0aa4d2e67882a033fd52366925e452" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_bed.json5" +hash = "36d3923f5c861535ea2a54d3c229912ffcc4946776fe498353ade36251b4f143" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_candle.json5" +hash = "086668737b840489c56361660275372e0044fbc8444cf4d8d258f050c93d8739" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_candle_cake.json5" +hash = "1cb1164bbddba586bb4d56e61dca8d4580157279f46f27c2722e27a0574759a0" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_carpet.json5" +hash = "98e5547e54d3566dfa4f0e2200d4bff034384658b8ddbb43a3e3f3939f8755d4" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_concrete.json5" +hash = "f66ef5563712e06155395fd7d6e5e2dad0f642e843be57ebfe49f3ae6505a810" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_concrete_powder.json5" +hash = "b415396051202f43e73e543fcd262077201a51a8267995b4058c802b17eefddd" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_glazed_terracotta.json5" +hash = "02a0896faaeb01e1110bd0b0768c947f7db8adc58c13522d4b0854a2c1dd6bff" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_shulker_box.json5" +hash = "4ba0c1567d8cdf4fbcb030383d3019c20c4b2749603f1294ccdd3f9626c8b654" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_stained_glass.json5" +hash = "03b108872ba521ab4543b7e60985c0a8a6fd318ab44a12789a2197af1628ff73" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_stained_glass_pane.json5" +hash = "9158db46963a293c576b5928ffe48fcda16f88e293d32b47f91ef4ddec567477" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_terracotta.json5" +hash = "e0906dc816dc1a1f623e69cde018b7cf1273154f31c484c025c92ade1918f95a" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_wall_banner.json5" +hash = "4509930b213f6f4ffee2ef7a9f1389456e47b3066035e12d03225945d5306c11" + +[[files]] +file = "config/blockswap/known_states/minecraft/cyan_wool.json5" +hash = "a0be8374aebc158d4f3881a08147d14fdb89879ee42a6c09f754d0b7971c52b9" + +[[files]] +file = "config/blockswap/known_states/minecraft/damaged_anvil.json5" +hash = "c6287fec043b6114bd3e6a73981745940e15bd90d9e29dda2e916210aaee6b4f" + +[[files]] +file = "config/blockswap/known_states/minecraft/dandelion.json5" +hash = "a335f1763d9e6460a66848e3629cbc4f42384a0b6a0a668eef26690a659bf4b6" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_button.json5" +hash = "c2098da480fdf07835313de6aa81a284552d5790fe6b0df3ebf5bdd3cd57e4f2" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_door.json5" +hash = "46ea74d0fcc339f7d6f75f8dfbd635b06f80af144407b416092002b31cfe5909" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_fence.json5" +hash = "293c23f69ca57b67f90a2d7406b2c29620a12ed048b7abd7337621bc9d521dd7" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_fence_gate.json5" +hash = "4af47f1fffd7f9d73fb256a737798e7c9a9ef11c80178c95c4e3cd2577262a11" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_hanging_sign.json5" +hash = "d1f9163ab274d87e05291ab9e6ed3c90f44a953504d3d4791b10fb42997b8dda" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_leaves.json5" +hash = "f3be5f4696fa2cfb2f09b1b55ab00b1bd49439aff2505ed77bfed7a871888de9" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_log.json5" +hash = "33dbe1f90614eaf63efa7cef0ca798d459543112c5bd9a3f01b050f2b9b23ee8" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_planks.json5" +hash = "697cba1a8bf821f3f0039e625333ee0b3a50c96c88296f7a3f2c73bf1749213a" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_pressure_plate.json5" +hash = "413997790f9af3200ef00e7fdd6937101455860a40ffa1cf0ba05f3213fe1efb" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_sapling.json5" +hash = "790764f6c8c82f16147b65400dee67e9080b5cf7e24b7b253bf3a197053f528a" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_sign.json5" +hash = "d13babfe2824688171ec549cf9a034c1a9dd487e72f3b0964eb4cee0103da079" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_slab.json5" +hash = "eb2f25daed09cf5ba99efb8322a4c909736ee27214db3493af73f11302dacb24" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_stairs.json5" +hash = "ffd6a8319a106841d621f7295fcd37699eea81c8bbb92f99b402a1533b2c6acb" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_trapdoor.json5" +hash = "8254a88a7fda0861fda580034f4c5a8b4744d06a31e96fdcf4b5af08a8e270eb" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_wall_hanging_sign.json5" +hash = "c3d4f046942ce16607bdd9eb036aa083c265384711e87911b12f41983fac9913" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_wall_sign.json5" +hash = "bb27bf93eb09e5283fa9e778eaab67138471bceb03a423556253231b71faf933" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_oak_wood.json5" +hash = "774937b0e7ebc8ee27f78d31876679287d0efc57be3cdbdf7428a482da665c45" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_prismarine.json5" +hash = "691a9bb6cca43cf3a459382cae4b9cd08092eda6ae52948c19694ca59b0fa7ac" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_prismarine_slab.json5" +hash = "632abfba7075136ce1f7fbb110b2061c3d835257d0fcbf3b8fc26bcb6610f3ad" + +[[files]] +file = "config/blockswap/known_states/minecraft/dark_prismarine_stairs.json5" +hash = "09f169db68e4d1821a7e3c175cfcd83ca7882227eef0e3035d9e37acb677426d" + +[[files]] +file = "config/blockswap/known_states/minecraft/daylight_detector.json5" +hash = "776be0dc5f8fd0a43d51f39caefbec4037864c33a537de69bba7e7d081084d1c" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_brain_coral.json5" +hash = "3c7cba6b53b0800f893b7601f92869905e547094e887cfaebdb3d9fdc08a6751" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_brain_coral_block.json5" +hash = "745409ffe1410547a8841f34d0e192c35f201a6e2f57af3b95c6fb9b07da5845" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_brain_coral_fan.json5" +hash = "f2c65670954805f319cfe2e765530ddd8fc3cf80a7eac89bf9686ed02e56f656" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_brain_coral_wall_fan.json5" +hash = "0780aab85767bf6d153c09f5829df314eb0197d947a97d6c2dab5fcfb6b01b94" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_bubble_coral.json5" +hash = "9025cce56fd16dce30912c114614dc5bef37d19f25b147ba2e10a7ecf6e3023a" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_bubble_coral_block.json5" +hash = "5a64bffafc616d06db68419decf217df5f95b4e5519e022673629ec78831079e" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_bubble_coral_fan.json5" +hash = "39e3949ac5ba3f33eb54a84a55439b177d8899d4ef9026540e0dcc3d3bbb2943" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_bubble_coral_wall_fan.json5" +hash = "f3645e56ac8fd6179c2e4962582a1681359c2266bd9099114ae958d445bd9901" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_bush.json5" +hash = "39e262bd13cc444d19cd555c90dd65ef589e44c538401c150bf8aa9144e7ded5" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_fire_coral.json5" +hash = "3714bae54357b85bedc5ee9b04295088389731c9ce60a430b7cdafc8d7bbbc4a" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_fire_coral_block.json5" +hash = "d4a466c69352411c496c137765f25b0b31fbe15a771298dcc9a56f49b4c5a3fb" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_fire_coral_fan.json5" +hash = "d39d41a1cbb43e48a5c08356b1849a6648627ca1c7eae2e7b743d5523acb827a" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_fire_coral_wall_fan.json5" +hash = "26b2d8dc8c504135fc8dc4002c4c027e8e1633de6009ce62a6ddc216c6bdbe9b" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_horn_coral.json5" +hash = "153b85c6acf5985275a4869fbecd284b871935dfdee2ea4fb942436b4e9953bc" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_horn_coral_block.json5" +hash = "0566378bdc463030fe69f7e1c6677602c4de6303ccd718a036ca6261aaa79c0f" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_horn_coral_fan.json5" +hash = "b0bde618f06ec7dc3ae67230086e6e2f8d7c7d81e0f8fdbcb48bb0ab783a47d4" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_horn_coral_wall_fan.json5" +hash = "f301eb42d73e3bd97ec31e2a6355a00d59ec3653a88580a2fde21e1f1ae496e5" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_tube_coral.json5" +hash = "75c9342317454d03e425fcac848c76d4d75a17a2ed6865f742fd25153c2251fc" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_tube_coral_block.json5" +hash = "6798aaa30e9ceab8aaff50d2e09dfed6100bd57c4876820584d6aceb8fffca01" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_tube_coral_fan.json5" +hash = "82061ed50afda09b8891fd7890d59b7549eea1643ba6eb373c06997ca75e666e" + +[[files]] +file = "config/blockswap/known_states/minecraft/dead_tube_coral_wall_fan.json5" +hash = "57e64ced10daeb9a5c72765c0fc421f131956202f91b662a58e462e8253eeb6a" + +[[files]] +file = "config/blockswap/known_states/minecraft/decorated_pot.json5" +hash = "aca1503364d2a92d3717c9b70d34814968e5cc7b500571b2a8c495831c4add47" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate.json5" +hash = "6a587364d13ebb30e15c41ebacdf43bc880ca9961e6cc4ac85f05f21eb917b39" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_brick_slab.json5" +hash = "47b1de38a4eba5216d325cf6cdfbbdf2f131471ac09722b0ff3a6f59783ee5ee" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_brick_stairs.json5" +hash = "e34ef8377047c088c035ec5b6cd48591a7db868e9016ae9a808f94ad3b541cd5" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_brick_wall.json5" +hash = "9509545de7d856af38a772f30a0d5c73748b0e485eaeaccf3cd318318569bb7f" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_bricks.json5" +hash = "49f3835872480ceea0969370b91a3b4db931238b6705eba883b73fc394b57c34" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_coal_ore.json5" +hash = "94f45aa4240e5e99ce035ea71e8d2a48c86e0fd5c409ce6d15d4c2d1264de7d7" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_copper_ore.json5" +hash = "35d1d49f8cc635f729fd64d0a3f81995d911f1370d9b582f2e4ebf34c8742bd1" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_diamond_ore.json5" +hash = "fea0ef5ff0f385084dccafd3b99b44b28d34e9f470e8d3c2dc445890f7169110" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_emerald_ore.json5" +hash = "a35459ed7d65b1d5f2d9a7616ff1e241298706744c184bb88584e28386634cf7" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_gold_ore.json5" +hash = "8a1a9109d4020f222d0fbceb674405ca11ad49c067bddded59f156078c101fd2" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_iron_ore.json5" +hash = "f0170e3fea9455e910415a2259905854f6dde36f6d5a9bf5a14897d7254cf584" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_lapis_ore.json5" +hash = "18f297f53cdf15476bde717126189704ef79a657cfdddcc8c300eb9b0fc499f1" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_redstone_ore.json5" +hash = "2549f253c4261753708b4e779ee60260605ac6af7c93590101a0c27de055baa2" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_tile_slab.json5" +hash = "302daa4f98ddb14b9c9296ffc9228c42bf49096996e18dcf2e692f6a46292fa9" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_tile_stairs.json5" +hash = "c377dabe5a33745a62e74799ec93a6063dfa7248bb0d021a4463e84f5eebfba2" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_tile_wall.json5" +hash = "93c56e5ace0ca4178ac47dd00b9682a9ef7b080606f0070254991ea144b71b59" + +[[files]] +file = "config/blockswap/known_states/minecraft/deepslate_tiles.json5" +hash = "c70035d3e72bd796dbc632f61e0a88345504a5188f99fa128320f98e73de6806" + +[[files]] +file = "config/blockswap/known_states/minecraft/detector_rail.json5" +hash = "91ea48cf13a32d383695d2e936a3653a81566b81bbf7ba87d822da57132b6e7a" + +[[files]] +file = "config/blockswap/known_states/minecraft/diamond_block.json5" +hash = "cac0626162d4d65b60b29337c06d0434bbcc23cbf29fde578ea8c79c3cfe0c8f" + +[[files]] +file = "config/blockswap/known_states/minecraft/diamond_ore.json5" +hash = "45e52c291fe34f8fedb3e082e3109d957f9c9595a5a34625c579366fbec4ab60" + +[[files]] +file = "config/blockswap/known_states/minecraft/diorite.json5" +hash = "71c9dafe94c0ea9af6aed9f45785b0c3873375ebf003769bfb3a2c9e31f86c97" + +[[files]] +file = "config/blockswap/known_states/minecraft/diorite_slab.json5" +hash = "848205d1e03d474e6ab15315579b77fb0491256c89352f2501aa56b67d9b7f2b" + +[[files]] +file = "config/blockswap/known_states/minecraft/diorite_stairs.json5" +hash = "989062b2cd5a6ade4807865c6f02ddb52f5be9d890dcb2e6f91401d310a85ed9" + +[[files]] +file = "config/blockswap/known_states/minecraft/diorite_wall.json5" +hash = "605a206864018dadfd59c9f498e1bdf3b39a679a30f5ace8aa673d717dc53711" + +[[files]] +file = "config/blockswap/known_states/minecraft/dirt.json5" +hash = "e2ee80eca3621e59189cf0132b4b0b49ee679941779baf6e12bc60e297f77e8c" + +[[files]] +file = "config/blockswap/known_states/minecraft/dirt_path.json5" +hash = "86b19f36bf94ee47d989f81cecca38380c320b59e72cb11767369dbd8e889a24" + +[[files]] +file = "config/blockswap/known_states/minecraft/dispenser.json5" +hash = "6d438004e6ae1e16130779f6d2d4fbf9e25887e41f6b71342aa513cee7c977f2" + +[[files]] +file = "config/blockswap/known_states/minecraft/dragon_egg.json5" +hash = "3932e18f38818007920e8cf4a4fe0bf240d4e1e9a8a37c7a31e4e7df76c6fffb" + +[[files]] +file = "config/blockswap/known_states/minecraft/dragon_head.json5" +hash = "759b1ff237e4f14880b35a51e8a9ca34b14e4e301ee4dd0bd3d502af55fb9d07" + +[[files]] +file = "config/blockswap/known_states/minecraft/dragon_wall_head.json5" +hash = "276f23c8b099f36aa66097cdc3d00b08630c5565ecde265eb663eb30e99ce425" + +[[files]] +file = "config/blockswap/known_states/minecraft/dried_kelp_block.json5" +hash = "2d6e03910a6fb3fcbaee30ca4ae6250dfe804f049be46109486b73f0a750be3c" + +[[files]] +file = "config/blockswap/known_states/minecraft/dripstone_block.json5" +hash = "18ecd9b90fc1131e30bd29c5e6757c013338a0b4b311e2d45372a8cf80ebd624" + +[[files]] +file = "config/blockswap/known_states/minecraft/dropper.json5" +hash = "dffbbdac16f52c9821baf89c09efc93d5acf2919d5fe7d85a9da24de4b77a0e4" + +[[files]] +file = "config/blockswap/known_states/minecraft/emerald_block.json5" +hash = "4b013cb0e977d38c21a36fd37a0e1540b96288a5bb9565ed7d689932edc8d99a" + +[[files]] +file = "config/blockswap/known_states/minecraft/emerald_ore.json5" +hash = "8deb7c03ba81b03c38abc8957ed58b700de954463e52e94dddfee22c51cc410c" + +[[files]] +file = "config/blockswap/known_states/minecraft/enchanting_table.json5" +hash = "fc127fd535467078baa1cd6c86971af364605a130e29759f1f1fe93ca63cf4be" + +[[files]] +file = "config/blockswap/known_states/minecraft/end_gateway.json5" +hash = "a76073eacac65ee1f30b8c3a6319ff353a0317b67cdb0f06cb5739501a08b5a2" + +[[files]] +file = "config/blockswap/known_states/minecraft/end_portal.json5" +hash = "9c21943da6eba0a134d8f274498bb01b94c211bcaf60fbf01fd788a40850ad3c" + +[[files]] +file = "config/blockswap/known_states/minecraft/end_portal_frame.json5" +hash = "541a758d3a99e5cba9aa2bed0098ec74f56f6ebd53cac59150c038f26889b22b" + +[[files]] +file = "config/blockswap/known_states/minecraft/end_rod.json5" +hash = "c76a405965ab504ca56435144f9495d25efa4d7fc64d2116641e61d55db1c15a" + +[[files]] +file = "config/blockswap/known_states/minecraft/end_stone.json5" +hash = "bef755be88c49a8088e703ce8236755ea0edf3594a4cd9e1620b9dbae5882819" + +[[files]] +file = "config/blockswap/known_states/minecraft/end_stone_brick_slab.json5" +hash = "c2ca0ed5b1d60efc6836ebc7eed0f516af4b5ef47528668ff8142c8ea5bcf8fa" + +[[files]] +file = "config/blockswap/known_states/minecraft/end_stone_brick_stairs.json5" +hash = "812d0c502c954aedce8a232f593a65e6af8f32a8dd9125e56f2cd272d79281b9" + +[[files]] +file = "config/blockswap/known_states/minecraft/end_stone_brick_wall.json5" +hash = "0bdd59570cb078dbe32c4c484d6e84e3196baea5a37e8041634a83af419f2935" + +[[files]] +file = "config/blockswap/known_states/minecraft/end_stone_bricks.json5" +hash = "77bbe1bf2630a48e2dc4531c970fa00e5a8e0e730ad6222b9eeef733bcc17378" + +[[files]] +file = "config/blockswap/known_states/minecraft/ender_chest.json5" +hash = "23578646715f51e58fd0e86b4a0b5d1986c15961415eeea854e9ea62a7aa7fdb" + +[[files]] +file = "config/blockswap/known_states/minecraft/exposed_copper.json5" +hash = "e08abbb2fe5e788e8014133a6d5bb4c4cf95ce8bc38624d427d45adfad55ce7d" + +[[files]] +file = "config/blockswap/known_states/minecraft/exposed_cut_copper.json5" +hash = "e4ba677c2ff2d01f3e571b10967bb77cd55ff71346c32686298b8ca8e8bb6edf" + +[[files]] +file = "config/blockswap/known_states/minecraft/exposed_cut_copper_slab.json5" +hash = "6a3dcd20808234392da83c45fb98c270056c36baac5f20b6d6b0e627a3aded73" + +[[files]] +file = "config/blockswap/known_states/minecraft/exposed_cut_copper_stairs.json5" +hash = "e418a2e63dbd57e566e7cab14d515388b5a90546f2db5b86e5b82dc9ca5b3f04" + +[[files]] +file = "config/blockswap/known_states/minecraft/farmland.json5" +hash = "eaee4742e0d55e2b96332f8fc2d37e84fc9711370a4b448a8c50d0159a040114" + +[[files]] +file = "config/blockswap/known_states/minecraft/fern.json5" +hash = "c90d90c5ad812a24f03521545166e3b04ed2473600b3ca75b4c2ada4aa8bc82c" + +[[files]] +file = "config/blockswap/known_states/minecraft/fire.json5" +hash = "91770e2aa87874372dedcd053fcc9aee2dab9f14f86698b098d9c49ddc2f6c11" + +[[files]] +file = "config/blockswap/known_states/minecraft/fire_coral.json5" +hash = "7eea115e8b8d25e7feff5c218d15c636b96af7348632af7d0873b90be1053543" + +[[files]] +file = "config/blockswap/known_states/minecraft/fire_coral_block.json5" +hash = "de098bcb6eb98da299b88591797c89a0d62b5761536cc2702ba46edbc082233c" + +[[files]] +file = "config/blockswap/known_states/minecraft/fire_coral_fan.json5" +hash = "4b0cd28c3c72c2bd6ab882a21640f82eaaafd34e846881e899655530f8d19c75" + +[[files]] +file = "config/blockswap/known_states/minecraft/fire_coral_wall_fan.json5" +hash = "b661c2a079330cce7caf422638eeffb0daa04743983d5a6533a32b9c9816c8e7" + +[[files]] +file = "config/blockswap/known_states/minecraft/fletching_table.json5" +hash = "8fe42ecc0fa15e9ab77bb0f7be73318be094175b3d945e9a22bbd05cae62a665" + +[[files]] +file = "config/blockswap/known_states/minecraft/flower_pot.json5" +hash = "745bb73a65b272d92c7fdae5c35d736b7af564fe800918ff002d982034703c8b" + +[[files]] +file = "config/blockswap/known_states/minecraft/flowering_azalea.json5" +hash = "78ac65911a9b201c461b567a71137dd8efa419925ca585e456aa3283ae4c81e1" + +[[files]] +file = "config/blockswap/known_states/minecraft/flowering_azalea_leaves.json5" +hash = "b381709696c637059d4c5afe7fe9b0730c3ac7fde0238141af879590ad2c868e" + +[[files]] +file = "config/blockswap/known_states/minecraft/frogspawn.json5" +hash = "e05d105bf40baa10d44298b6f983f99873af3f3c3d975b89d01e90a7daf51ca9" + +[[files]] +file = "config/blockswap/known_states/minecraft/frosted_ice.json5" +hash = "c8e2c11320a54d7215bb7667d63b7909fd801c2034b1b5e5ec05e10c4478d729" + +[[files]] +file = "config/blockswap/known_states/minecraft/furnace.json5" +hash = "b9989dfac94ac70580722b2a97cf2dd5dfd59cc1c4641f8ab698436cdc950b06" + +[[files]] +file = "config/blockswap/known_states/minecraft/gilded_blackstone.json5" +hash = "2940a9b63e58291f4a8689f42ea95e535495ae451885f7aadec7776b3d5c1f02" + +[[files]] +file = "config/blockswap/known_states/minecraft/glass.json5" +hash = "39201072526721b8f936721f34c52e58b6b6fd0f4d0eab7c22292610cf935429" + +[[files]] +file = "config/blockswap/known_states/minecraft/glass_pane.json5" +hash = "4ea831bbd2cf2984624441d4e3961f6aa323de7cc9df93c7b9266a1a4a5e9cfd" + +[[files]] +file = "config/blockswap/known_states/minecraft/glow_lichen.json5" +hash = "790e16498e690319fe349f2f7fc0aea590cb2e9bba2aeb62ef463cbb97998417" + +[[files]] +file = "config/blockswap/known_states/minecraft/glowstone.json5" +hash = "1aef95f858f3457b308c7bda765849cb7794ccd74790abaa07758c57f9318b93" + +[[files]] +file = "config/blockswap/known_states/minecraft/gold_block.json5" +hash = "85829109f5b33320fa7dbd21b0550a2b7524c0d03aadc355c648408c41eed399" + +[[files]] +file = "config/blockswap/known_states/minecraft/gold_ore.json5" +hash = "22767e29fdb06c810ec4faf4360b5b70a999df9fd2f1ed4493a2a60091c71639" + +[[files]] +file = "config/blockswap/known_states/minecraft/granite.json5" +hash = "0e8faae843b1afe4a3902fdbffdeb1f2f08d8c9a360fc9d2c84ff00127ffaacd" + +[[files]] +file = "config/blockswap/known_states/minecraft/granite_slab.json5" +hash = "705a76863fdae6ca9452967167ecdaba90e92652ec8f964e9c7d4936a6320534" + +[[files]] +file = "config/blockswap/known_states/minecraft/granite_stairs.json5" +hash = "bab245bc5c174f0b7eba66f25efc44a2067af2ec42031e87d4eec8e28259c6df" + +[[files]] +file = "config/blockswap/known_states/minecraft/granite_wall.json5" +hash = "f11cc1b7c68c4e41e0b65dc12beba44c18ccf370a6052d4e3432da7a2cf64b1c" + +[[files]] +file = "config/blockswap/known_states/minecraft/grass.json5" +hash = "85dfe589d12322fc7f5e171a61cbd01a1912d80091b20c534773691499a0a5e4" + +[[files]] +file = "config/blockswap/known_states/minecraft/grass_block.json5" +hash = "afdb8408c3028b0d9692cf63db7bc7da0fd3fe1bffc98b6e0ff19001318eafd0" + +[[files]] +file = "config/blockswap/known_states/minecraft/gravel.json5" +hash = "e4ce2d47cbe56d92a224282d5017b3844a43d7d9d06e3e7f15f93dd60d103ec6" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_banner.json5" +hash = "8075f2f944c5d46074b30b366a11ffeafdd1f10ea14f17afd0f676c3d42ce7dc" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_bed.json5" +hash = "20d1f6d6eb5f1236daccd759f7940f3beeae5b8a3b6a1b911aa8d24acf556277" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_candle.json5" +hash = "577823e7cda5cc91f5ac250ed52e460b63c7299db3af976e8678d7a1b2cc420f" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_candle_cake.json5" +hash = "9c40d457c96ff65437b285c4d68d592301dbe2acf168935866939fb4871704a8" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_carpet.json5" +hash = "a49aecdecc58bdd0099e628c03d4c06f2fd617b5dc40bc628469f406259cc239" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_concrete.json5" +hash = "72ae9ea1d00951d540206fc5d9d4a2bf1b6b8a433cc6eb1fe722aae6e30136ac" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_concrete_powder.json5" +hash = "fa2a0804ddb4358278765a5217b467d0edfdd50b7d4f5c2956a5d13dfed8707f" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_glazed_terracotta.json5" +hash = "fbdb1e812b4b785858203ff13b01b9ec3a0b333e5f4c58248404d5a6ce7a46f1" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_shulker_box.json5" +hash = "c9917825831d24304c3be43d72a90c3e540825fa069216525095beea7cea81ab" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_stained_glass.json5" +hash = "b1f6a29c7fe58a314cb701e426c2961e7dce5a33433daf543dbcd823bcb5b362" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_stained_glass_pane.json5" +hash = "32a0e983ed56922afd01b661d87d64c27b0c69f7b7384a91b09511b9079d76ac" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_terracotta.json5" +hash = "a1392d3c8f269716db7919f3fe3c3ee0721bda726761eff0c2ee7982d661fd86" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_wall_banner.json5" +hash = "70d2c5ef32f6f7196b48415ae464fbbe6907c4f0e9f07c316df1b598e29b9654" + +[[files]] +file = "config/blockswap/known_states/minecraft/gray_wool.json5" +hash = "b24dd204f08c734d0aa2e07876fae8295d51ec7400b3a5beb7f0afb18dac52a5" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_banner.json5" +hash = "7ee7641313c3cd364b87b3981e415e11185f00f7b3f478af5e0784e9c1ca5364" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_bed.json5" +hash = "2de5d9dd2d1d3857b403f973fe2f3696a49dec55e64570a43a2003352e325543" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_candle.json5" +hash = "6bac6faf04221c675e09865964a6df94d733c187e7dad5f8360ce324f2813402" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_candle_cake.json5" +hash = "ee11093d80b003832da58afdc5f7f1fc9de672264fb35b29a4874342bd58e5af" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_carpet.json5" +hash = "60bb49b1a25b4cf954074869f1c6a8c5f0da6a14daa5d9b47f427fd070363412" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_concrete.json5" +hash = "a1be95bf43f7df00e71709241775bd0ae34fface9fd3151b0d2a2ffa26f216d8" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_concrete_powder.json5" +hash = "cbd3e5a5da4338606d0c162e213fe7b51cc2b98377b15ff704827763ccd0fc25" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_glazed_terracotta.json5" +hash = "c3e90959e45acd30a9c7b3e5adf492c205e095a6d822ea808239cb7c999b7662" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_shulker_box.json5" +hash = "6f595388a1ca025458c5b802d1a587443c4bfdcf44abce15e6c4b8ba0cea7639" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_stained_glass.json5" +hash = "004d96dbce93ce21502c990a8c3196ddc889f735941ec039661fc30b163ad4ab" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_stained_glass_pane.json5" +hash = "3211c191b16c09372b43cd06d33fbbac19b4a1dbca76b34356c1a035f8fa49ea" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_terracotta.json5" +hash = "0229dfd07374fc706e9c060481a943491d03b1b9b1073f4e4311e7533e25b307" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_wall_banner.json5" +hash = "d335b29c8ae4ed9ce19ece88ad3c263ee86808e65a71c5c2a8ebd52e4ea53ce7" + +[[files]] +file = "config/blockswap/known_states/minecraft/green_wool.json5" +hash = "53e973c46a9e05f16ddb3e73d6925ac56800e1012c34c5dfc7393035c155555a" + +[[files]] +file = "config/blockswap/known_states/minecraft/grindstone.json5" +hash = "be7a9c41bc664d7db52f652c70536b5114f31969429c839b53e6bd8fc69b8e49" + +[[files]] +file = "config/blockswap/known_states/minecraft/hanging_roots.json5" +hash = "12cba0e17973fe6fa16832e94615761b297f505e3c924071cab7bed534ca7621" + +[[files]] +file = "config/blockswap/known_states/minecraft/hay_block.json5" +hash = "91b1f91cf59047e5309909c21dd791b5d6afc758554ada98d46225e87a35e7d3" + +[[files]] +file = "config/blockswap/known_states/minecraft/heavy_weighted_pressure_plate.json5" +hash = "259dea08945fe8f43d31d2c35338e2b8e78431a70f0518f8665227f3f2131df4" + +[[files]] +file = "config/blockswap/known_states/minecraft/honey_block.json5" +hash = "c484ce4eb37902c43d0e6c3e919906b3d265caf53cdb85d33fd052331db34678" + +[[files]] +file = "config/blockswap/known_states/minecraft/honeycomb_block.json5" +hash = "f79128c5c622b4962c9518b417d91b5aba2bded6e21345a76c27fc4c62436d83" + +[[files]] +file = "config/blockswap/known_states/minecraft/hopper.json5" +hash = "165a6baacc415023079807dfe3de251b027a0773896f45918dd604f6e1a2ce72" + +[[files]] +file = "config/blockswap/known_states/minecraft/horn_coral.json5" +hash = "fabc92932cedbe25f3134030ecb2a1cd4a837b828ec30751b3f5daea94a955c8" + +[[files]] +file = "config/blockswap/known_states/minecraft/horn_coral_block.json5" +hash = "1d7fa15f5c444085cdc6894fd9917607af3f0587f4fc2c285e18bdb8bcb4cc18" + +[[files]] +file = "config/blockswap/known_states/minecraft/horn_coral_fan.json5" +hash = "4f03d793df12709eb6210846f433bd06cfd3b204b145b404097be8c9cc2bd6dc" + +[[files]] +file = "config/blockswap/known_states/minecraft/horn_coral_wall_fan.json5" +hash = "94fef6e8a213e12cb2b50fc083fb734aa340a2951ed6107caa629916e8e91ca1" + +[[files]] +file = "config/blockswap/known_states/minecraft/ice.json5" +hash = "e0e00aa4543eec8ce0475d4c2def4aa13545bb1e1111df5f1e2ec70339787f67" + +[[files]] +file = "config/blockswap/known_states/minecraft/infested_chiseled_stone_bricks.json5" +hash = "f563111eaefd9977ed0b9d21b5b7859d027d54c23474810496b9b03823f8cbc6" + +[[files]] +file = "config/blockswap/known_states/minecraft/infested_cobblestone.json5" +hash = "1e1edefe5dc57973554feedea8da687811a672817217889add0396c7b2988ded" + +[[files]] +file = "config/blockswap/known_states/minecraft/infested_cracked_stone_bricks.json5" +hash = "5572e4a995247d6bbc34eb7610d39f3873cbdba60679ce363e379e6838d016ad" + +[[files]] +file = "config/blockswap/known_states/minecraft/infested_deepslate.json5" +hash = "f75ef80d38e2af2ad2d21c825eefc1ddd79509153f9bf2f68fd79a80fa99ebca" + +[[files]] +file = "config/blockswap/known_states/minecraft/infested_mossy_stone_bricks.json5" +hash = "9591df36c7181dedf012304e6d719457d257a5002e7ab592657805d9a0cb23f3" + +[[files]] +file = "config/blockswap/known_states/minecraft/infested_stone.json5" +hash = "216c27b830d9e73f41d1e3fc0f3bc8ada9b228f10711367723a0e13096b4f6fe" + +[[files]] +file = "config/blockswap/known_states/minecraft/infested_stone_bricks.json5" +hash = "add65f953da6a48ad3776de51ab918704d59c3b27370daf246609597f05a3bc2" + +[[files]] +file = "config/blockswap/known_states/minecraft/iron_bars.json5" +hash = "633f3e1e4c018adad08f7daeb7c981169d98c9749675b425342e5b5c7d8f5a4c" + +[[files]] +file = "config/blockswap/known_states/minecraft/iron_block.json5" +hash = "1957f7f53316471d1fd085cb43163e3885a61d98600b18add478ea47f00c1f82" + +[[files]] +file = "config/blockswap/known_states/minecraft/iron_door.json5" +hash = "9f31e9ee9f07d47003f06570cd4797c93c21951143380cfd675fa9721292cc2a" + +[[files]] +file = "config/blockswap/known_states/minecraft/iron_ore.json5" +hash = "9d6a01b1225927c8ce62064abe4ba899c798b6784cfac0bb5440dc782b16ecae" + +[[files]] +file = "config/blockswap/known_states/minecraft/iron_trapdoor.json5" +hash = "3484bdd71ab30ffecef51bb118827bb5b077da11a9fa00f6bb3b11e861b85002" + +[[files]] +file = "config/blockswap/known_states/minecraft/jack_o_lantern.json5" +hash = "fb84118f47b664e874766b29541ffb3b4ac6afbd31fa83e510d31a317eca33fe" + +[[files]] +file = "config/blockswap/known_states/minecraft/jigsaw.json5" +hash = "ed9d3f41e4a70fe53fe12c210c2a4b2bbed2137931bd431af1074f9d9eb437c4" + +[[files]] +file = "config/blockswap/known_states/minecraft/jukebox.json5" +hash = "c4dba83218d65ce01eb5b8d0c72960ff12d9265648ead6a97955cb4ca30c78c2" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_button.json5" +hash = "596e773965f8fdb9543cee47cbaa78bcd622721f357e4f0605b4902e78c40039" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_door.json5" +hash = "ff215cb6b70e86e18464eae415f5bee7ecc1fadbbe1258b0cd899afc031dab33" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_fence.json5" +hash = "796f869e019047774f961ac4cce0a24f065aec8dd7558ae4fb2f7ac9076d1dee" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_fence_gate.json5" +hash = "54b5c99511d5e1510edb6944a2947d884de5ddae22d88c1020175096d6330d1e" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_hanging_sign.json5" +hash = "87f51caef7c32ac13a2f8ab111be5064c536d015c372f3d34d981f1aeb1a0f0b" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_leaves.json5" +hash = "ac8cd520dafe755302f6a022d7c50eb545af41e9665a95ac89deeca7de3810fa" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_log.json5" +hash = "942703554a82ee8ebd0a1bd0887b30858af97c9f57b8ce4fefe4277ec9cba52c" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_planks.json5" +hash = "464e35584a6e13f33e1be67389e062a510d7e02ea2b8d5992f62fa113f16b97d" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_pressure_plate.json5" +hash = "f9a86f4ea183a69082879a1d031b7cb41e724202cd8cc930ce66537ad5ab4116" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_sapling.json5" +hash = "e3e0e0df67f20b456239e5393a2eb09f25a2dfd47051b946872730aa8a96ee30" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_sign.json5" +hash = "37934ab76addae852410c0effce710695ebf753c0c597c3a5d9bd01844c204dc" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_slab.json5" +hash = "bcf07a5e4c53a7c4870eac0c279e00afd88a6a7027b9c0856a05cd0885499d4b" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_stairs.json5" +hash = "745966e20d7b1c2f31907d250563aea9a6db0b2e7ffdffd1995f9c49d352d04a" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_trapdoor.json5" +hash = "7da4f79ed4cfa3d63143acc7c2d061a6f72b3cdf542131b91ad3c8b9e81cc653" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_wall_hanging_sign.json5" +hash = "53b3cd457709fa13bfa568523e4f50352ead133386dc9df57aebfb5bdeb0b054" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_wall_sign.json5" +hash = "0fdc5bf4503100844507a09fee860377339e12ef214877575245135a6be7bf7f" + +[[files]] +file = "config/blockswap/known_states/minecraft/jungle_wood.json5" +hash = "8ce5c29f5722e4429493c24814eaf14aa93c5f355c557d81e7277544d00125cd" + +[[files]] +file = "config/blockswap/known_states/minecraft/kelp.json5" +hash = "2616a73b3530795e5662b9d6bd04f59648b2edb2e1763017db79455b1d65c5a4" + +[[files]] +file = "config/blockswap/known_states/minecraft/kelp_plant.json5" +hash = "e57eb0d77dd925c32cb0537794d82d28139e4b802674661d1e4d2e90246b16c7" + +[[files]] +file = "config/blockswap/known_states/minecraft/ladder.json5" +hash = "180474f106ea53521622a8de618d9d37d4441d59019efe037a91f6b082cd1bf0" + +[[files]] +file = "config/blockswap/known_states/minecraft/lantern.json5" +hash = "fce0b2d26bcfef11abb489b8e4f144f67ebef3df2e38f6e9ff1b9970ac8db094" + +[[files]] +file = "config/blockswap/known_states/minecraft/lapis_block.json5" +hash = "1599a8ce345a73b636c4450b7566c6db8a5f0d82b656173742429d58c3f73d3b" + +[[files]] +file = "config/blockswap/known_states/minecraft/lapis_ore.json5" +hash = "83d9a2cfbd8fb2b704bc1de647a55cd44e66a36d8b485814f319598addf7d46d" + +[[files]] +file = "config/blockswap/known_states/minecraft/large_amethyst_bud.json5" +hash = "2f8c1ed68af799040810b069ec4056101209faf2fc50b34e226b304efda20a43" + +[[files]] +file = "config/blockswap/known_states/minecraft/large_fern.json5" +hash = "63b4c158a3a958526b47f9e7a13612b59a7d2a7ba3970c4a018752e3e06064d7" + +[[files]] +file = "config/blockswap/known_states/minecraft/lava.json5" +hash = "32530b0d85c90c23fb735d25ab40f7b94c737d49fd4e3f8d7b74de88f599cf14" + +[[files]] +file = "config/blockswap/known_states/minecraft/lava_cauldron.json5" +hash = "dbd01b3896d7cad80613b2a63562eea46391d86e40b7051539139c782a9358cc" + +[[files]] +file = "config/blockswap/known_states/minecraft/lectern.json5" +hash = "119a1259336e4e35585cd3594ff761b30433ffba0d6bd3accbdba96d9e9674f7" + +[[files]] +file = "config/blockswap/known_states/minecraft/lever.json5" +hash = "60289c394565a6f7f633820178d01ebd139ff2e312ec08bbe65e047fece65ff4" + +[[files]] +file = "config/blockswap/known_states/minecraft/light.json5" +hash = "1b9cd5c2fc7c1451a38cbdcf3333c06828bf0e6c7552302cd990aaadae69142c" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_banner.json5" +hash = "e2f8537b3fcbcdcb6fea0cd9f5fa2e831d54fff877c6b9e1fd894e837215e9c9" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_bed.json5" +hash = "259177bab48a26c66e69382cafb49e83533bdde7b384cbb4a2fd81566941d4e5" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_candle.json5" +hash = "dc85a73e404f69d6e9f2fa0cddd049743cedb5dd5f66a06a98d08194817393b5" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_candle_cake.json5" +hash = "73b3652a0380e30f317b208b15ef68227d5ace8540ffac4322eebd5f5397e76c" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_carpet.json5" +hash = "a01d33eb9d04266352b464ddd15a16bded0f3b30f042ee7c19cd888c2e045e97" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_concrete.json5" +hash = "aae7ed919755268c352f650d89fe22d09cd76930f0dc65dd6b595b1f58dc47c8" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_concrete_powder.json5" +hash = "c84f3d438bd6e497c8ae4eae04c5f3b1775a8cb37c2f91274a44d03f32286b73" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_glazed_terracotta.json5" +hash = "c2513629af4861100223e625e8b106a27446ccb4043f63eaa338964608fb14b2" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_shulker_box.json5" +hash = "087b60c11154b4c1778220c1fdde58ea142970c49124146f7bf12754bf36dd5f" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_stained_glass.json5" +hash = "08b6c729bdc6c98aba5e74a5ee22134cc01fa22c5a3b329639d6dac61c17c9cc" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_stained_glass_pane.json5" +hash = "6525df563276133bf138143eb57ecea195c439002d17864f0524efbb6d3bfc95" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_terracotta.json5" +hash = "08de2e05b6295c812f95e7cdf266b5ab38d29cf1163904f80848f2449683aebd" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_wall_banner.json5" +hash = "1d10c14b87be63ba51da844c12ff8df4737780f91fce86a60ab79c73bbe79145" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_blue_wool.json5" +hash = "a4bc014e56b3660dee73cb1b71761fa6729be36a12e8217f5ce621596fe57d2a" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_banner.json5" +hash = "11d266f0551c0012450a7e201e6ebcd90deda931ebbd0d26e11d65a0811977a8" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_bed.json5" +hash = "263991e83317c8b8aca6fd2c7c4e153ae20f73ce34f5a529c71b742597359c43" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_candle.json5" +hash = "9e6449510be12739bca1bed93a9c8d3dc94913f522b1bc04d6656a02ad909466" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_candle_cake.json5" +hash = "05b85e1e0be6e2aa029bcd61ecb4949a894694db8ee92891f391ca010de3908d" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_carpet.json5" +hash = "ec2319f529f873f7eca412d63909482db16d2de5faa781cac2929afca37d33fc" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_concrete.json5" +hash = "d9103ec10f5e4dedb3fefad0cd6bc79a28763188bc6f9e5f5307ccb032286422" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_concrete_powder.json5" +hash = "cedf624ff05e1c4bd94f6aab4b9007f8c561a15a26a60f8cd833af0e540f3f4f" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_glazed_terracotta.json5" +hash = "537ba4ffb0693bf97fa457fe52bce173039a09999f76c989183dad58159e4cfa" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_shulker_box.json5" +hash = "62f3b26dfdeba58f9ddd82aa16ffe048717a53db777b2e35a22a343b163375ba" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_stained_glass.json5" +hash = "ae491e031f0a7977ef37367c6da818c689be12f6c67a75b154f00d1d55d9a62d" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_stained_glass_pane.json5" +hash = "998c613dd619c5aae8909c69937cfe44a3cdd80336c30e273f63bcebbf55e720" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_terracotta.json5" +hash = "44cbaef1cfb791dfba88535503ce5ead6cc8c78c53916ff82e47774cd2abfe91" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_wall_banner.json5" +hash = "ee234c502f7d88b4a99664c63f98e8c2567c94c21150953f78237533f71fbf0c" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_gray_wool.json5" +hash = "1adb3c634d5c5054bd053a54571a33ee303e89e14c29bc3922cfce0dac87a81c" + +[[files]] +file = "config/blockswap/known_states/minecraft/light_weighted_pressure_plate.json5" +hash = "025d29f909cceb4c4e0bc9e72595e150e259cc1256ec922dce5c8ff63d311441" + +[[files]] +file = "config/blockswap/known_states/minecraft/lightning_rod.json5" +hash = "a0ae716e209d26812dbcedcd65617563e512856f4725164ba7d1368f583036eb" + +[[files]] +file = "config/blockswap/known_states/minecraft/lilac.json5" +hash = "424622c6163b8db5f47b16d5f531d1d5a30d1ac6a4fdbce0d072605b26790b90" + +[[files]] +file = "config/blockswap/known_states/minecraft/lily_of_the_valley.json5" +hash = "df3946eddd40658904fae503e963726f2080bfd5a8306062cf894e1da089071d" + +[[files]] +file = "config/blockswap/known_states/minecraft/lily_pad.json5" +hash = "01d428389976d9918904ee77202e162528930fe1356da8c59ce04f5fe8bc7d48" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_banner.json5" +hash = "709adb2fadcf380c6844e442bd247c89d869dcc95ad1e02af1ff9ba9db54c7bb" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_bed.json5" +hash = "c57e3073dceafb71168ece6089b052a51c718fcf78346907e32af6a966532c2d" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_candle.json5" +hash = "178537ffb305c24590f1340edf2a2f75c520a43f34729150df11e7732f15fc8c" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_candle_cake.json5" +hash = "2c55cacd2f5f177ebc8ed00b7819d0a8673cedb2b0fb1a6736cd825cc43f9d67" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_carpet.json5" +hash = "0d587f52cefc8b4c92c71774465b3cefdb7ff60efae50151cb0e6a4986e59c5c" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_concrete.json5" +hash = "f6782f9a110ad0b43282cea7644565ac7036622f0b166930ffb1e0fa0c98b1bf" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_concrete_powder.json5" +hash = "a6e49a3c2ab28482407960d1743cba5f745b325322e950b4ed5ef80e0c8e577b" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_glazed_terracotta.json5" +hash = "9412f372ef74ccc487ff1db74f3f00de11e243c100e7f5955de531506a18bc7b" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_shulker_box.json5" +hash = "9a03a36ecdc89657ad57a1fe07bac1949bfa7a9401ee05504e5c0b99897855b1" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_stained_glass.json5" +hash = "cdf89c29ac162fcec68a2e1c3c6a00bd27c07b173bdef3fa8b522817672cd89f" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_stained_glass_pane.json5" +hash = "1356e4f4206b6e2646769e6aba9cb6ea79fbb56b9a29cb9d489818a826b3e954" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_terracotta.json5" +hash = "0777117bd0345427a152de08d24643931bf4dac0d1cd1ba8627a9eb671155754" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_wall_banner.json5" +hash = "02054c9b548878f4a3ca4cd1aa981d7814e9290e51e405a1024faec5d5eb52ea" + +[[files]] +file = "config/blockswap/known_states/minecraft/lime_wool.json5" +hash = "413b01faa218d30a9fbdf8ffd1c7de4f19a2b4b40e7e2decc2aa411644e224b4" + +[[files]] +file = "config/blockswap/known_states/minecraft/lodestone.json5" +hash = "bc89682041a114fc0abeba5254ebaa99667580530c8cac4e230baf8536cb943f" + +[[files]] +file = "config/blockswap/known_states/minecraft/loom.json5" +hash = "89d2a65650b0c9a031a7caad31988c38849550f59788fe4aff3bc44de3478a73" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_banner.json5" +hash = "65bd5b16cbe43cc7828d7f42729bb27295a0e14015b456e5748205f970854be2" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_bed.json5" +hash = "80d241d62a3bd0883fe45393f432c7b50f9dbb1d2880efe034d9a1f5a0792823" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_candle.json5" +hash = "5dbfafd65455a73a91b87093d7721bc392640c1a08681c85627893704ae1528c" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_candle_cake.json5" +hash = "2749b3eb7d747b429adc2a89b0f609357f07458ae1e8611cf352ab50a55bb1e4" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_carpet.json5" +hash = "532eb11c8bb3c58e8b6d96500b9ac47763a46594262b3ceee6b1684e8aafbf86" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_concrete.json5" +hash = "e9093d3b001978bcebf31de8c536442d9c0393944378015b0870b1584f3ffc6d" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_concrete_powder.json5" +hash = "039a29bf0250ffae4491e85fee254cd0c99d355f597d911a4495702b0e5d0c7d" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_glazed_terracotta.json5" +hash = "04cd1d9a2a8d22813e0d61cf19e26c1bf1e4ff04733b3f69f089350fff7eef31" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_shulker_box.json5" +hash = "c138dc79578b324464f2f08e2b4aafe07774184ad96d08f390605da5d3f29978" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_stained_glass.json5" +hash = "8302b2518e1a0647beb5c7490e57ca56fed7b2851daaff23def65ff6da8bb0cc" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_stained_glass_pane.json5" +hash = "33792e059fb71ae73f063173832097ae7729046c9d6c1e56711813746b3bf1fb" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_terracotta.json5" +hash = "0528023e6637731854264a5b087b9b46045c5afd55ebd4a7f62dd3fba0d40726" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_wall_banner.json5" +hash = "ec483d6cf257e8616cdda8969437e90207257276f1070933e9fd99b1b1719b77" + +[[files]] +file = "config/blockswap/known_states/minecraft/magenta_wool.json5" +hash = "a3714e166a891c653d26cbf903fd73f5dc1385a89b2e8f29ceb231af9473cd59" + +[[files]] +file = "config/blockswap/known_states/minecraft/magma_block.json5" +hash = "e4e7b1bfdaa332f3979ba880e8fa7c5e27465c7c3a7ec6e4032dac5ff29e38e7" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_button.json5" +hash = "2097801a6dae2cb4d4376ae560e2cb1baefcdf4fd215329b89f8f7ce8aa703f7" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_door.json5" +hash = "592538a702e49f86eea72f740ae9e54800ff1f343dc06c0d275a027dafe0fae3" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_fence.json5" +hash = "9c64bf91234d7c1baa2f2d91c10770a1e06a95a7600bd6e312516d591d4d35fa" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_fence_gate.json5" +hash = "ee72b3324b9015bbce7d63cb6ebb596f424a85dd299ab51ad9246d9c5001d2af" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_hanging_sign.json5" +hash = "710ee5654b95dc3e0ec75dfcd4547288c9fc0782d79d0f85c4ebc9e2be15d6bf" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_leaves.json5" +hash = "cc0b4c98e57d883d062d58affd2237ec95188ab4276633206a038b2a93b8ce6a" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_log.json5" +hash = "7ac4986552a4e54a4747c54f2a92c734fde57a22358a07a20a6d26a72db079cf" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_planks.json5" +hash = "522cfe951adabd934deee3009e4586d2f8022bbdd61de8734bc4a471b169b20c" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_pressure_plate.json5" +hash = "703b3f4d423cfb3e1632cb761f6495305b76c348c4e5329c372673f604a396e5" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_propagule.json5" +hash = "72171dfe4dec8a2137b55f580b7820458a6ab18944b435ce8c9669f90cacf135" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_roots.json5" +hash = "7a2be99e175626be780bffcf05991fc3c5cf3a7f64d8d51c5ab4303ee0c4e16a" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_sign.json5" +hash = "1495b231b6721013d0789451a96d8aa54c737e7f4fc0c118347b737fac6217d6" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_slab.json5" +hash = "5ae14258bf78ec503c9dbba060a97067ea10370470381025ab44404b4ad950a6" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_stairs.json5" +hash = "134519f429f1712198252369e8a562fe84d17fabf99500eb497702b823195195" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_trapdoor.json5" +hash = "f55da31c82ba8d2a0d60ea5cb0d76aac06c8ac487e57bb15b0130c08f30626d3" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_wall_hanging_sign.json5" +hash = "2815b651f5c8d4e45fe3e557b8ef553720e573e2b2ce10a417412cf1e3d4e2f6" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_wall_sign.json5" +hash = "14819320131e267f7ade786bc69bd9a63a1eae0b6fae139d6a11bbaabc9a1396" + +[[files]] +file = "config/blockswap/known_states/minecraft/mangrove_wood.json5" +hash = "f2b63266075d1275170f810e109c5905753f0486e5740733f34932f580a542ac" + +[[files]] +file = "config/blockswap/known_states/minecraft/medium_amethyst_bud.json5" +hash = "45271afe9de527629b1ad1c46a76aa201a1ba354533ba670098cc1186293f993" + +[[files]] +file = "config/blockswap/known_states/minecraft/melon.json5" +hash = "68f8e088ac8b4443ea579207fc10d52936ed401e89e5045a5bf5e5d90263a762" + +[[files]] +file = "config/blockswap/known_states/minecraft/melon_stem.json5" +hash = "abcaf0c119be27529397dcafcda29ddab3b5182b3c061d7121d303634fc9fb16" + +[[files]] +file = "config/blockswap/known_states/minecraft/moss_block.json5" +hash = "72526b59e02b10d5cf7081144be5456987d9e4b927b794441b19d4f03ca336ab" + +[[files]] +file = "config/blockswap/known_states/minecraft/moss_carpet.json5" +hash = "ba1adb59959152327127d1bb62bf3798c61cf169a304a1b33706c4f749040a57" + +[[files]] +file = "config/blockswap/known_states/minecraft/mossy_cobblestone.json5" +hash = "09cf22f2773908aab06c059c56ce5d27bdb4d9fff5931e4c7a02511d67939120" + +[[files]] +file = "config/blockswap/known_states/minecraft/mossy_cobblestone_slab.json5" +hash = "177cfb1172ff13b54dfa8419f40bf929d9c29a05247416ffdd5ca2baa2160143" + +[[files]] +file = "config/blockswap/known_states/minecraft/mossy_cobblestone_stairs.json5" +hash = "c005b6c7c4a5858f45b617a3840f34a4b15ff54b87db82a887d38704d4f3299b" + +[[files]] +file = "config/blockswap/known_states/minecraft/mossy_cobblestone_wall.json5" +hash = "1686940cad1f615f4627cbbbf3a525f24c4e9bdc20a60be56a5c4206563856ac" + +[[files]] +file = "config/blockswap/known_states/minecraft/mossy_stone_brick_slab.json5" +hash = "9caf4c660a0a84e7fcc677d8bdb6d4733efb354ed33a2b298d78164f6c40b5d9" + +[[files]] +file = "config/blockswap/known_states/minecraft/mossy_stone_brick_stairs.json5" +hash = "47f71031c3b351b705b169317d48f78fd611622f10662cdb6f20fe0bc3f82159" + +[[files]] +file = "config/blockswap/known_states/minecraft/mossy_stone_brick_wall.json5" +hash = "b215ff0f1b09373540dfd1c9944bf9b59b47f28cfb6698cfaf94392a0d2e621f" + +[[files]] +file = "config/blockswap/known_states/minecraft/mossy_stone_bricks.json5" +hash = "48695b9c90cbb9cb40d39fb428d35922e60183eb32d95f26b7f284a8a8028f3b" + +[[files]] +file = "config/blockswap/known_states/minecraft/moving_piston.json5" +hash = "beebd9959d160e6cf3fadfe32cd22e85484ca78dada84a96ffb7fbeca8a76b73" + +[[files]] +file = "config/blockswap/known_states/minecraft/mud.json5" +hash = "8b6a6578cbdfc0389dc3fc8de5e6ef6f3cc292e6f7985b9ffb085440da422deb" + +[[files]] +file = "config/blockswap/known_states/minecraft/mud_brick_slab.json5" +hash = "8b7810361938a6208948831abb9f5b664a1308872ea0154ee57b00f28fed62f6" + +[[files]] +file = "config/blockswap/known_states/minecraft/mud_brick_stairs.json5" +hash = "bd3db4a062ba06d6b6c8e35da1bfee9fb4bb07d22e446a4db1eaa0e929fd867c" + +[[files]] +file = "config/blockswap/known_states/minecraft/mud_brick_wall.json5" +hash = "87c59892470478bdf4e216a0cea23e7eaca70d0746e64d81eb9a38f3cd9d9ed3" + +[[files]] +file = "config/blockswap/known_states/minecraft/mud_bricks.json5" +hash = "6a08ac196764e2a1b45f2241e798b2cf48a41a76ace260718ac3e15c66984ebc" + +[[files]] +file = "config/blockswap/known_states/minecraft/muddy_mangrove_roots.json5" +hash = "d295b8038a09d45e7e6be3eaf0c5f5d02b2de83fd1c4f50d86732f0d36754ad5" + +[[files]] +file = "config/blockswap/known_states/minecraft/mushroom_stem.json5" +hash = "669639b244e250b22c7265f106fb082588378ce9d88e5f0a69a605c8d68a5cd5" + +[[files]] +file = "config/blockswap/known_states/minecraft/mycelium.json5" +hash = "c8648c29cbe6dc4de291a3ff245ac7c7684883b73a6c4c8bf88b66c214d1c0ae" + +[[files]] +file = "config/blockswap/known_states/minecraft/nether_brick_fence.json5" +hash = "3b394793c73164281bee93a85b04b22d235b1539010485b4416e059e0940995f" + +[[files]] +file = "config/blockswap/known_states/minecraft/nether_brick_slab.json5" +hash = "9ab7d50b3c7d875ae02526f19f563e622dfac23119040e52b6db19e75a1d65f8" + +[[files]] +file = "config/blockswap/known_states/minecraft/nether_brick_stairs.json5" +hash = "0282e574cf5a87d6ada8e7887601eae115f0ded8637abb9bc6a1cb4cc72e9b4d" + +[[files]] +file = "config/blockswap/known_states/minecraft/nether_brick_wall.json5" +hash = "9a2017f5353fbaeb059b772bce2b2c63f639deff8e285e00384fabd4d7780a1c" + +[[files]] +file = "config/blockswap/known_states/minecraft/nether_bricks.json5" +hash = "6e93882fd031c4a2fd7699de3714b6175106cc000053c2cedcf502752337412f" + +[[files]] +file = "config/blockswap/known_states/minecraft/nether_gold_ore.json5" +hash = "8828628f2dd35349d412e6acdabf6e53836f60bd3ecdacb08e3f4ff233ada12e" + +[[files]] +file = "config/blockswap/known_states/minecraft/nether_portal.json5" +hash = "9eebc2ddbc2b8b722201f95f550261d28dd78f4df4590bb81fe8589348cd5ffd" + +[[files]] +file = "config/blockswap/known_states/minecraft/nether_quartz_ore.json5" +hash = "e8451ba6b0c3e1b7187a18f223b664cd07477a70b43d9d8d87710d22cae3912e" + +[[files]] +file = "config/blockswap/known_states/minecraft/nether_sprouts.json5" +hash = "f27e8b18be9255137268f1124679c14bd9e6e55e4f4b7eaa9cc9674a43c8c910" + +[[files]] +file = "config/blockswap/known_states/minecraft/nether_wart.json5" +hash = "33b66f2166ea67513984fdfb526af9df64bf18d728743ffcb8cae40ad285c6aa" + +[[files]] +file = "config/blockswap/known_states/minecraft/nether_wart_block.json5" +hash = "a2cfe78daae7de6858c9da329d0a0970b19d9858b99334d20d7e7d1ea405c80a" + +[[files]] +file = "config/blockswap/known_states/minecraft/netherite_block.json5" +hash = "9561162135336561eea96e02ee9b9cb84cf60f6428b2504fd1c85d0f6b76b682" + +[[files]] +file = "config/blockswap/known_states/minecraft/netherrack.json5" +hash = "e4c94f0929251eb9165fe34a45ad5605d9cbc0c15468cf799377bc341e817449" + +[[files]] +file = "config/blockswap/known_states/minecraft/note_block.json5" +hash = "9aac5a7ad395d236a4290a5a31a36000804c65d69e3d64113fbcd6e43477f6d1" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_button.json5" +hash = "f592102446ca33f2036db29750d8752bfd01978a58e9ea7fc318ffe8856ad89c" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_door.json5" +hash = "a96bc01641ced835288e0d8b77f3f08940d71cdd61a2e610f67eace9d29512b7" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_fence.json5" +hash = "dbb6830e55b8dd82ace4862eefb4f6a3ed1fe2b14060e3668d58ae1b8e72a7af" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_fence_gate.json5" +hash = "3afdb4ee09009503433b4bc58308ae120ec020ce94e785faa28dc61d77cd5a02" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_hanging_sign.json5" +hash = "52b50e0d2d8d00afd8e4e0d016ea522e560519289c44268ffb71ad6e919caaf1" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_leaves.json5" +hash = "81dbda0d9dd2ad8f1972a5181cf7a0bc12e009d941226ad273a4346034fba7ab" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_log.json5" +hash = "413ae1610e4c4a538b7f161b5a9f31d37d2b534165731fe64f4a3fc94e5fd12c" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_planks.json5" +hash = "996b5cf66424d8c3ea9927f7131bb41c6b2072a8f62bd8f759337dbbc9bb6119" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_pressure_plate.json5" +hash = "8c75ce2007405bb3be262734eea88c3311c538553b734ef414e861bd12d1c6fe" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_sapling.json5" +hash = "aac119901ac048caa700818aa504a1b991dc9b8f5595271d201818c0f88b1161" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_sign.json5" +hash = "780da8e6eb642fb3bcf8022167cf4410352f3399887b480da82cb46cc027e34b" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_slab.json5" +hash = "6345292ac810abfa9b30deddf675c674a08fe770287d9d211ffdc66550c20bf8" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_stairs.json5" +hash = "2cccbdfa8fb7d6a4e23bd8a3f60a7f460c549aa30d4ccf979744af55c16466f5" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_trapdoor.json5" +hash = "e1e351519410c07e14d8a301ff0902d1687b2bfb54f0fd0f60b26483d33edbbd" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_wall_hanging_sign.json5" +hash = "1316c1697ad0f17feb50072eb4fc6b33fda93db5507b1b3e309e544b68c51dc5" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_wall_sign.json5" +hash = "4558dbf50f9b83143425da3fb6de2ac5fc6e30e736b9850e9d1c6558d2fcda61" + +[[files]] +file = "config/blockswap/known_states/minecraft/oak_wood.json5" +hash = "f7457ec17169759e54a4d98427c94a09a32584fe0b86b604c6e1e8558550766e" + +[[files]] +file = "config/blockswap/known_states/minecraft/observer.json5" +hash = "f2276d399df622c25bd75de2a9bbf162479e6a680ad2e4e5cd09f2fe13695faf" + +[[files]] +file = "config/blockswap/known_states/minecraft/obsidian.json5" +hash = "357668e762a1ef835a45676b14669d0958c48c6176fee1f9552ff467a2146f7a" + +[[files]] +file = "config/blockswap/known_states/minecraft/ochre_froglight.json5" +hash = "b2b74db9c2d34eda81497cf16be8d65cd969d6a71baa65022d4e0362b6012a5f" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_banner.json5" +hash = "9fa150e08aae7f33a64d78846f57647786377bb4e895df8b6ec0fe6baffde34c" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_bed.json5" +hash = "f74501b07d42ddc0066a8768203d3ea3a3e3be8998e9a922639643de7a51e090" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_candle.json5" +hash = "13864ae3070697832401bb9768957b7905213a2e313d0e22e8251ebdf9500c14" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_candle_cake.json5" +hash = "cc2c4889f483919e75ebcaabb5c65994ee4f8e8c86f2d648337487417451c004" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_carpet.json5" +hash = "c05c7fc6887bcc46c5dfbe24abfaf6ea55680cf4023c98d2bd8a41b384cc3d14" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_concrete.json5" +hash = "9869c5af1c1b0da78ff3c95dbbda1bc7c841ac899660cd0ca9c8f71cba28e8ff" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_concrete_powder.json5" +hash = "dd6128f2a1c5d5956625079a89376de4a2fa5d4706e9dfcb205c93c9a4341586" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_glazed_terracotta.json5" +hash = "fd2650d4d64850f356850035a7dc7a46a9fd862837b19bdbcfc754a4f0f68221" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_shulker_box.json5" +hash = "60010e5236a5de3c06851a8ec5ccae9dbe04ea83e38753a453b7c65f38ef161a" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_stained_glass.json5" +hash = "9b5395504a6515aed67ca7438efd63b2c53d7b32a82f1f238aa0a0622e499c81" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_stained_glass_pane.json5" +hash = "a7551a416aef1d351ddcb688492084a9a30198054b3c8c9e852e0c0387e93202" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_terracotta.json5" +hash = "57bdf5fd40b48a7887b4ba3502782105409a4855ebd8fc72c1d4749e57a257e4" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_tulip.json5" +hash = "f6f7226e6daeae025c0a4e21c2ff966473bcfa7db8ea26eaf90bd9b0d96a371a" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_wall_banner.json5" +hash = "8e662b420f3ea8c3701c6a7c8f207218926bcf5363eed86ea4c2d4dbd092851d" + +[[files]] +file = "config/blockswap/known_states/minecraft/orange_wool.json5" +hash = "6389d5f00a04ca6ba8862bd17d99b65f0ec110c67d8ec5535ac40b6bb12bc71c" + +[[files]] +file = "config/blockswap/known_states/minecraft/oxeye_daisy.json5" +hash = "c4fa98f874d0b12b0b45d3ca6c3bac1617f171cd7abd47ab7430e125fe38f386" + +[[files]] +file = "config/blockswap/known_states/minecraft/oxidized_copper.json5" +hash = "d391b95a296f705e97f1ec70d230d6d0cc094e69c4506331ccddd3380e9538a2" + +[[files]] +file = "config/blockswap/known_states/minecraft/oxidized_cut_copper.json5" +hash = "f0622fbc9e3fcc8526905feed0c830e4c57622871f70dbdd310e79f8eaef42e5" + +[[files]] +file = "config/blockswap/known_states/minecraft/oxidized_cut_copper_slab.json5" +hash = "521d2f74ca8cd2d57b4f1b89cbad1424e9211759cd4de8c6dce4e62c8e1e0bb6" + +[[files]] +file = "config/blockswap/known_states/minecraft/oxidized_cut_copper_stairs.json5" +hash = "60e99c880fba0d2f077f6e6b2ea06af42a18f0abfdeb1b0cb2a4674d47e4252f" + +[[files]] +file = "config/blockswap/known_states/minecraft/packed_ice.json5" +hash = "6d7226d55bb56053d07a7326f8cb1b233d88a8093bbc73703127dc99db43a8cf" + +[[files]] +file = "config/blockswap/known_states/minecraft/packed_mud.json5" +hash = "53d8df6ffe22bb4d301a16f015ece568567c3e69a89306b894833dfc362ad8f3" + +[[files]] +file = "config/blockswap/known_states/minecraft/pearlescent_froglight.json5" +hash = "1b156141b3765965bcde2ca80f883ebcefc9ab6c1141ebb4c0f36c1522a6bd39" + +[[files]] +file = "config/blockswap/known_states/minecraft/peony.json5" +hash = "e64897f1f62d47df2756637fd6b692bb37d951482e6f985c6e0606159f3e65d7" + +[[files]] +file = "config/blockswap/known_states/minecraft/petrified_oak_slab.json5" +hash = "fe2eb79d4b6517a6840392c2619f7089ad9a4cedd8f7059e23e846f531753678" + +[[files]] +file = "config/blockswap/known_states/minecraft/piglin_head.json5" +hash = "d9fd31f1383a3c5e171bce5af5ac2e470165aa1a73c653e58f86b07e732c4a56" + +[[files]] +file = "config/blockswap/known_states/minecraft/piglin_wall_head.json5" +hash = "978d31e88e45fe36eef1535fac398b93712a24b07a8736a1be0f9e1ac41ce924" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_banner.json5" +hash = "a3573eb98fd942f5a0e0f2c32f6bf18ec4c4a467c1ae54720257096f2cb05fc0" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_bed.json5" +hash = "a5ef75432d797936cba0c3b5535e5555c428f29019a1eb4fd1cf3bab57243502" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_candle.json5" +hash = "7e9fe415b9ab6f1f9c4a1272d0cffffc9024fc5b17302565ffa6ef1095f00cbd" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_candle_cake.json5" +hash = "5874d37bc050f1b092ef8990311c1e1b906911de277808e80152aa3e5081d272" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_carpet.json5" +hash = "1edf2dff44c4d62fb16ca44a751b46c06fc07ba532a826fe4cb90a48081cce30" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_concrete.json5" +hash = "ac549ddb2067e8e8607f530d9500c7cf0ff977cc572e90c5c0d64b5bc233708d" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_concrete_powder.json5" +hash = "61453b9d495759f7158ca75510a347d0dcb020ed804fd97a2458f9bf2205be80" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_glazed_terracotta.json5" +hash = "55585311a5f308f6bca596a7680646a4ed3dac7dd2f12d25eda065001512d0c2" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_petals.json5" +hash = "3762655caf055ef47fd5a5a8c44cd42e782477cffd9d0d5bafa7967edf044046" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_shulker_box.json5" +hash = "1a5d8f35e72b9d0d1191ee3926c84dbad19ad95fc2b52482c408c58c73037d7f" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_stained_glass.json5" +hash = "4320bb9c4fcb577990a77afe17739cdbe040223c1abe1216357c35a514eaa631" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_stained_glass_pane.json5" +hash = "0ce400c688c72b9df3254953d193ff2f039e2ea697a163bed010f67ff69298e0" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_terracotta.json5" +hash = "b519973a8dfde34112528dfb709d09cfe865da321c8db84776bcc8053857cc35" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_tulip.json5" +hash = "57e2777da88cf7f7bc5432e8067905241536e853ab22a218dc93b8481c0e157d" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_wall_banner.json5" +hash = "6bed3a05c034df1557d1efe21eae3a943b1a815980b33491fc5d87379ebd24ee" + +[[files]] +file = "config/blockswap/known_states/minecraft/pink_wool.json5" +hash = "1fbfe9a3a114d6be646db6b9e0059ceaa1739b7d8505ab4fa84ce4a6aeaf71cb" + +[[files]] +file = "config/blockswap/known_states/minecraft/piston.json5" +hash = "81ff02432448467ce7a21ad901a270aee32a12beae679a425498820e7307fc3f" + +[[files]] +file = "config/blockswap/known_states/minecraft/piston_head.json5" +hash = "c32afa0bb4969ebd0dccfa8852a0fd5624c2ce6ee346548a70137a89790fc663" + +[[files]] +file = "config/blockswap/known_states/minecraft/pitcher_crop.json5" +hash = "a888fcbbd766556922022f4bfb0cfa82c8aa058e1e449e3248c17beadcac59af" + +[[files]] +file = "config/blockswap/known_states/minecraft/pitcher_plant.json5" +hash = "6c45d04ad10cf2bbce0dee5a6c68cd158c0b740cb434faeecfff75321c2c47ad" + +[[files]] +file = "config/blockswap/known_states/minecraft/player_head.json5" +hash = "83d5bc8fe36067dbffe7b1a10ece9a97393f38d7fb73d5faa991f32de23ef5b0" + +[[files]] +file = "config/blockswap/known_states/minecraft/player_wall_head.json5" +hash = "e9a4eea7b3cd5f3999db55c197f64f65741c9dda2972b57b44a0e1a620c6843e" + +[[files]] +file = "config/blockswap/known_states/minecraft/podzol.json5" +hash = "2e17e080f68553f8f9c183ed14fc48e63c0cd3ffeaced4be3a32ca33e158c0df" + +[[files]] +file = "config/blockswap/known_states/minecraft/pointed_dripstone.json5" +hash = "447df1073299bc230fd5d4865deedbdfd3f1f01d7e7e045a8089defd5ebf089c" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_andesite.json5" +hash = "a3fecaf6a6fdc2b74e1e893d5a33ac6d346f15d6fc336cb858bbe8a5c8b55e7e" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_andesite_slab.json5" +hash = "03ba953c553cbff4cacbf2ccf96e838041a219df410f7800268c03642521f29b" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_andesite_stairs.json5" +hash = "119dffc3f46fe16692916a863944d5526c052c10daed2371cb844bca368693c5" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_basalt.json5" +hash = "ae6857d34ee077e6e47e3d9e2701171bb6c21856dea08d8b93f3d6bd1229be8e" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_blackstone.json5" +hash = "49a454b5424a1316dc846107530e10cd504f390fda0bdb6a1b9d923319ae5483" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_blackstone_brick_slab.json5" +hash = "6573ed779cfe27a6b0084b1825d2d58fabe46fa9db830a73df85ee790b2dcd4c" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_blackstone_brick_stairs.json5" +hash = "df4d2eb412c1a6172915bbe035f88c734ef2ab926940391b1f737a9a69067416" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_blackstone_brick_wall.json5" +hash = "bf01aff6ba1d55130865594ac253eb670f587df6c64f506ad2ba6b4150650eaa" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_blackstone_bricks.json5" +hash = "f83b697b8063c1e4ab3f8f94d1852c8da0d86fb5034484ee61700e6f480e85fd" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_blackstone_button.json5" +hash = "4003ae4eabf471352d7129bff9f1a1116f567a22deae7f5eb245f0486a471b96" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_blackstone_pressure_plate.json5" +hash = "bdc9f64f8ff9547d61c9a61b2431d507c8ed0436f3972505281516ecd4be5589" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_blackstone_slab.json5" +hash = "ffae268c4776fcfb1df3a450af08141657e2f51db147b0ad8e0503dda7db4ed4" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_blackstone_stairs.json5" +hash = "19c5ae522f8643603a97996c63c1810d284da80a4310e3eadbae41781d773439" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_blackstone_wall.json5" +hash = "8a6e9ad5ebf514a52a52c5bf791cba817615cf4ed844e75e51191ca9c5609453" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_deepslate.json5" +hash = "379c49bbe43300f2285bc7b38f77f716bef3917ea123a17c0833ba2843400dfb" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_deepslate_slab.json5" +hash = "8cda51a33b9b99c73104aacdb229ec1a985b3555a804fd952e39cbe7779fb752" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_deepslate_stairs.json5" +hash = "b803d9904ebf9cce96e2d7dc4812ff4f32daa9e0f17a8167c26211e416e5a2dc" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_deepslate_wall.json5" +hash = "93b9241b917981de320fd01bdc7cf4fc69d77b6885a74f07a9a088a0736be7c8" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_diorite.json5" +hash = "cb7c11a814e877edcc190edb3c158584309998f04d07cce7447120e1befe7a0d" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_diorite_slab.json5" +hash = "c4312c71f537f314229b895ddae9fd6e15568a81dd13dd704a12b02f32981436" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_diorite_stairs.json5" +hash = "4edd9d0c0314676bbaf565cdb7ba1aaa3905ed6f0f2f1dc8b01ce98d22d64c85" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_granite.json5" +hash = "bc16c1c0bbec7f7f592bb83f91a3ede7ef1a2af2ed356521d9f9b64ebc0685ca" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_granite_slab.json5" +hash = "f5e628fa784d3e12100ebda1e5d8fbbadff5129ce32d793dc9e85b6b1f5fd356" + +[[files]] +file = "config/blockswap/known_states/minecraft/polished_granite_stairs.json5" +hash = "58bf17fe9930cc4e7d310092ff668c994b702c9fcdf801cf2a83d06078b2376b" + +[[files]] +file = "config/blockswap/known_states/minecraft/poppy.json5" +hash = "7b20c754e4b5a70ddaaa7ff64cb5eb463804d860be2eafd5a535c6622e55d656" + +[[files]] +file = "config/blockswap/known_states/minecraft/potatoes.json5" +hash = "9ffd01d7d01b1855e1e09451c3327395a87ed20868340500c43e8e5d9307792f" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_acacia_sapling.json5" +hash = "ca5f34ce3236fcc0e1af23ac2817c2a885d10b1f6c8ac92d60feaa9dfbd8aa7b" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_allium.json5" +hash = "8b11e55d0ab33206a105816ba237d10f92af291a164133d8c21383ab47fb5939" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_azalea_bush.json5" +hash = "83d64dd0b99eedf7fcf40662c1bab88052e4184ad4b50a14df6bdad941d613f4" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_azure_bluet.json5" +hash = "5d54f3e8e4f1189c6949ba82db1956b839b6bfb1022a676e3ac060655e772e25" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_bamboo.json5" +hash = "f3f72d45d3954e14934f061a88c44fa8985630cbf9d24a5ffea4b6bb06e3f146" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_birch_sapling.json5" +hash = "b212c2071a45f2bd6522dfcad5fba6d7b8e3813110fdb1cf543c76147e442adb" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_blue_orchid.json5" +hash = "560caf2ca55fc5fafe6cc00bbae68bb3365d7fbc5a37285f8b156dbc80e362d2" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_brown_mushroom.json5" +hash = "dd0fdd16095033379ccf9e4fe2c6fa3eda54d89adff0ecc8650d61cb009dadef" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_cactus.json5" +hash = "798e82be2ef822da8da992e534413662d9255346493721a59653210fd8608b4d" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_cherry_sapling.json5" +hash = "ace1ee01a77039ffb6657b42a39302f5952d338ba31bcac335a3102f08878103" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_cornflower.json5" +hash = "ce9adbb24c6b5bdccc4ede573dd6e1ac5a810ce859cee2d3fd0b5786cb2e00f8" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_crimson_fungus.json5" +hash = "b9fb38f2064e9970d1d045c55aa8558c9c20b5fb450a8543bd64cfdc0a93ba58" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_crimson_roots.json5" +hash = "a2c4829eaad4b8dd56fc1cf014267d2c1d84f66c9d229fee1ac5c4f022f748bf" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_dandelion.json5" +hash = "ed1d78150f9ec42661f6707867ca2dbda48e1f4cc120cc8c84d8542525502d5e" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_dark_oak_sapling.json5" +hash = "73da02d9be2966235318e9f977de4667f0d587af139765db438826a3d474d6de" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_dead_bush.json5" +hash = "339e3bfb5892dda9f8dafc39de796bb072d89a1d9dcd04b304d82817efb2fa24" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_fern.json5" +hash = "da600013380d854dc30e562fe81152337e507d2d0b77704b7c1056b8eb1bb06b" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_flowering_azalea_bush.json5" +hash = "54fcd1d182c70f5c9e1d0bb34b1ecf379e860be6888d8f62769b9a6a7680f4b0" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_jungle_sapling.json5" +hash = "a380f6105d6208f1b6c2f9ad0d8b8305fc7d4975e84550fbe13f3b10462fbe0a" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_lily_of_the_valley.json5" +hash = "c6c734238073947a45eac24292baf2d9c190d070723d63be3c11409758237ef6" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_mangrove_propagule.json5" +hash = "d4575904c9f2c39a4cd1392184101b4bbe570ba025ff3d752ca5d17e2150e2f9" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_oak_sapling.json5" +hash = "a6e149e9f67494168caaecda257d9bfbc4e17c147c61df85745eef0d7df38953" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_orange_tulip.json5" +hash = "78881343e4c6e8146ce848d30e434210b3b77928bb3d2959a73ed2283d2ea96b" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_oxeye_daisy.json5" +hash = "f078c09ccf357f5601a1dcabc3e4c835364c741706aa8c16c2058ef72d303180" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_pink_tulip.json5" +hash = "d4e9ede9bbfd9c5a2d433ccde5d8279832aad7ca2ef7d14e0b6a653e6b760b41" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_poppy.json5" +hash = "2a3ec8b672b070e6d5ff6fc6923fb3ae5d49e09be1e78665524b99490d448168" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_red_mushroom.json5" +hash = "4d1513d5ea00fe58281981af2379013f79a671820b383437c07bce3f572f7c4b" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_red_tulip.json5" +hash = "ef648b699a7c6002c521f095788d234457ce3eb02c4a8df3b3f79aec9a34cac1" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_spruce_sapling.json5" +hash = "c74d0355174e7624f07264d01c12b9102301f5561b09dd8351c83c05d8d04398" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_torchflower.json5" +hash = "cc98e78a59da9eb4786529fe28587bb15d33403aa11d88de65ebb7e8960f64a7" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_warped_fungus.json5" +hash = "160b1c8dae55fb355f5d6c71acf18e72ea4d5ca5a3b5637ec9393631460ce3fb" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_warped_roots.json5" +hash = "b45be8c3646e406fec6270533ca850bbde65b9647379a4c69891cd1fd45d7f6e" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_white_tulip.json5" +hash = "96c9d0e69afd1c3deaa032e5086cfb6c20fa7b06a7022d4e7da0be2c98f19063" + +[[files]] +file = "config/blockswap/known_states/minecraft/potted_wither_rose.json5" +hash = "1a2a63022da9740b2d1bd3cfd4ecb53277f26db0d596c1b5d9d8445fde6176b0" + +[[files]] +file = "config/blockswap/known_states/minecraft/powder_snow.json5" +hash = "d63c81f3934985c618501d3bfab928ae3297a7db76e14797450a67b9e70a0639" + +[[files]] +file = "config/blockswap/known_states/minecraft/powder_snow_cauldron.json5" +hash = "e0dd855af08828edf8e9343b8ebe3bcd7b418a57162f3033c8f7ad9507245e12" + +[[files]] +file = "config/blockswap/known_states/minecraft/powered_rail.json5" +hash = "63a9fa5cf3d36f5efbf2fe7a6ad4ce93e461c742692be2803521c1546b91838e" + +[[files]] +file = "config/blockswap/known_states/minecraft/prismarine.json5" +hash = "0958fb1851f2908be6311095e287a9c805860eca317ada50783ae8dbe1d1cc7a" + +[[files]] +file = "config/blockswap/known_states/minecraft/prismarine_brick_slab.json5" +hash = "fe09be0d6f9d97a7107b6452ec43b7b430060ea5ff01463a31f2a4990e48a542" + +[[files]] +file = "config/blockswap/known_states/minecraft/prismarine_brick_stairs.json5" +hash = "15f2e80a0bbb8bf2c9ecf90fc10790cff33a617f430ddf209694b58f44b3f3d5" + +[[files]] +file = "config/blockswap/known_states/minecraft/prismarine_bricks.json5" +hash = "17e9c082154b2c925dedd21546001f67fabea1292cab3891b79a3614b47d5a8e" + +[[files]] +file = "config/blockswap/known_states/minecraft/prismarine_slab.json5" +hash = "95f62884deeaa6846c044a35147bbe8a8419f936eeb7ad320191e070c2dbd9ed" + +[[files]] +file = "config/blockswap/known_states/minecraft/prismarine_stairs.json5" +hash = "66763c76c2a8cd0dc929f0d0130d33467a7477cd1c86f496be5562b3b94ddd3e" + +[[files]] +file = "config/blockswap/known_states/minecraft/prismarine_wall.json5" +hash = "f0175231d3dc9ec5bd6b516a8f8fa0b39ac169f95a5db7363b92f7fa575ca2a6" + +[[files]] +file = "config/blockswap/known_states/minecraft/pumpkin.json5" +hash = "edd4ed325e34b91dcf62d57396b7c65340ac9df632ee5db50047aa82d340892a" + +[[files]] +file = "config/blockswap/known_states/minecraft/pumpkin_stem.json5" +hash = "93bf46333ff6b50ec791b1c6c3beb051ec667a0bf90e68d6586eeed47e7e9db7" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_banner.json5" +hash = "8e07ddb6922aae2951386af161a7e75c3cb47fca41a83a99e6c60b18fadfb249" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_bed.json5" +hash = "4933d802e4d6b177a5adab34c03ea425da5d0b3b4e318f40c17ca88008e69700" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_candle.json5" +hash = "f0a86b7ba925494d1dbc143967d05601acb07d734327a739b8b17713623596da" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_candle_cake.json5" +hash = "912022cc7d5b338303b814459a3cbfe2c0d9f25e8df5c630c40da30b9f2fbe70" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_carpet.json5" +hash = "0977bc1d90526b226ce3d3eec3102f6c1b4092d265c1b5107f8125490798a9f3" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_concrete.json5" +hash = "c4e3b07a80802f59fa1c142c76f9b1f9b2521a36145b017340e26960b721348a" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_concrete_powder.json5" +hash = "6955739e4add323616bc5f7998b9f31ccba5f16e416f9e738e5f73d9c8266ef2" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_glazed_terracotta.json5" +hash = "8bdbcf07f7cc69c38b61d233fb40f7ff69449d86d598c0b478da29d85da1f4db" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_shulker_box.json5" +hash = "86409bac181c43150bc5769b2700d2bd7a79db32845d8c0b2f87521f299641e4" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_stained_glass.json5" +hash = "ab54b92e75ce1a4adc9881cc4ea13066a8dfc4b2d53af70fc9bd12ed633ff544" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_stained_glass_pane.json5" +hash = "9d805afa09ee583f998aac0042a1ec729561dac72af9e36fb73e2cec01c22e17" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_terracotta.json5" +hash = "d93771bc2e42130126c437222c61251fc027295ea23bd52c52d957aec250a2cf" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_wall_banner.json5" +hash = "829e7e79db6c51ae936bd882740344ef4b450800d50367043778660cfbbecac4" + +[[files]] +file = "config/blockswap/known_states/minecraft/purple_wool.json5" +hash = "2536885d0a58834ac11080726b6479d023fd5558b4e1205ff68298a5b9db1839" + +[[files]] +file = "config/blockswap/known_states/minecraft/purpur_block.json5" +hash = "bb119ae98604e6bdb1bf360b68156003b9f3349f884cea77789b02a279ce277d" + +[[files]] +file = "config/blockswap/known_states/minecraft/purpur_pillar.json5" +hash = "75bbb46a0148060812ba6390e7f8e3d256cbd4e1efb5432514c041c8ca94f17a" + +[[files]] +file = "config/blockswap/known_states/minecraft/purpur_slab.json5" +hash = "c4048a989307ff19dadae8c14d11989ed33c89f804ff59e16fd7ce431f669fba" + +[[files]] +file = "config/blockswap/known_states/minecraft/purpur_stairs.json5" +hash = "3a4f12d88b94dbdf64d1b5f0b23f19c606aff5ef91dd3bb4ea0d330cc8a46335" + +[[files]] +file = "config/blockswap/known_states/minecraft/quartz_block.json5" +hash = "1b8dbd0c18f1f9901f39079ab5aa5c3916336184bcf2f1641f4694c466fd80d9" + +[[files]] +file = "config/blockswap/known_states/minecraft/quartz_bricks.json5" +hash = "ae497c804f80cdac28f5fc417a9c2ad6a10fc33c6aa35ff12ae0936e689cb2d9" + +[[files]] +file = "config/blockswap/known_states/minecraft/quartz_pillar.json5" +hash = "7233c05f6074ffffbab870fd139ab2f67edeadc1e2543916ccf286729a695af3" + +[[files]] +file = "config/blockswap/known_states/minecraft/quartz_slab.json5" +hash = "6ba853ce33ba31b4ebe78b258661ed49afd08dc42ca92e594850f29ee92915d3" + +[[files]] +file = "config/blockswap/known_states/minecraft/quartz_stairs.json5" +hash = "9fa2dfe6db353fd90deb9c6c34d1cb660dd1c46a3e46737dfb896ae3a4963f2d" + +[[files]] +file = "config/blockswap/known_states/minecraft/rail.json5" +hash = "ddc210a48c2a1b33890ed6d5cb1c7facb5c6b3f4761cb9e056cc04bce7b72233" + +[[files]] +file = "config/blockswap/known_states/minecraft/raw_copper_block.json5" +hash = "e960cddfdf0bc11012d2ba5c2d83302f2d97476963fd2090bf8f5acb364a315f" + +[[files]] +file = "config/blockswap/known_states/minecraft/raw_gold_block.json5" +hash = "15afe92c6b56bb19f2b2aa7c1506a16fa6a231ce8edf40a36ddadf3e2a7c138a" + +[[files]] +file = "config/blockswap/known_states/minecraft/raw_iron_block.json5" +hash = "b38195d9b104d10dfc741710c2350c67649abff0461c2673919d7c3d085d9c50" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_banner.json5" +hash = "54a198e41397090b6666c1e953ac342fca9b59fb5c18d1b2aa40df64c2ed72db" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_bed.json5" +hash = "87bd1100bfbcdd0fad2ce0213a1f090286dc6208e93fbaa5435ff6db2d325ee3" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_candle.json5" +hash = "104513286499f9212c158a3805aa9f3683973222923c0fab429ba132d3132af7" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_candle_cake.json5" +hash = "3c4b5a141a2736281f231f3d8d13ab9de8681e7f972369c3250f215b9611a318" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_carpet.json5" +hash = "e564c8b2d832c2d38085586ace116b6905ce44567a251fe96ce64f2269470734" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_concrete.json5" +hash = "cdb7291fe1f28b9719a2a1e86e2e0a5a37a919c7026201cabf303fdf08ce76c5" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_concrete_powder.json5" +hash = "41833130c0fe26d2d7e65e07eee8e467c3bb89701c64052d920095b43ca2ccd0" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_glazed_terracotta.json5" +hash = "e03225bac53311d0f2ad75c7491857f79b111bf565542ad2f44cf4e090dd5e15" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_mushroom.json5" +hash = "946af579f91d613cab148aa06668f2954b40a724c923881aa3e17e88c7815d07" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_mushroom_block.json5" +hash = "5fdf948d2231305d121668185d97d0d8c7f6cc6382819a65162d02ab4c5f8434" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_nether_brick_slab.json5" +hash = "c40cc39f8b29239d687376f062ef3211dbc5d63405bf001ced8933f25aacd566" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_nether_brick_stairs.json5" +hash = "8d5da4af549f9f1d684191f1af5c26cdd5c51f0202e1ecb9e5c03899ac71ef90" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_nether_brick_wall.json5" +hash = "a642f9f629c833e2802f8ff7702597aabc9e230e9b5c815eed503b83804e8ac1" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_nether_bricks.json5" +hash = "45ee562dbe6185a36307720c9d77ecad469d9d4aac023da1bd0bf5b64665e993" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_sand.json5" +hash = "44f04ed2b482c236f6d314252a6e4629a35b80793a7ebc6cd789c93080a845da" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_sandstone.json5" +hash = "a620418a4b6f495cf69eb0fe4f280c4dfee9b4291f63da9bddedfbaf91e98fc5" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_sandstone_slab.json5" +hash = "662865056053eb47827e0d1d80cbce24382d74aaeeb1c3b8ba2d81a78644a6e5" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_sandstone_stairs.json5" +hash = "4bdbc49f0fe89850708b1fbc404651a05472f7fb7b0df59ad45eb748189a7dfb" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_sandstone_wall.json5" +hash = "53140d22fa95f02e5242720e98826e427ca75ff95ae81adc762daea2a7a15bd7" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_shulker_box.json5" +hash = "4b89d09ab6a75bfaf141113420cbb45fa8ff3108c0e1aaca6c315bb24041c540" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_stained_glass.json5" +hash = "eaf3357bb20a1d5e12d0dd1cb341598a46169f4dfa4e7e94efbeb951c9194e80" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_stained_glass_pane.json5" +hash = "120f31ac9c2af996a67aaf76dfe1cc89a5dfe933fc33086d4aca90406e5bc499" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_terracotta.json5" +hash = "1003cc53335a09132f50d7b6bd35896c9e0bd00959e63e1d3eac7e4579150f6a" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_tulip.json5" +hash = "bf9bca22d1fe42d242b1c6f92ec16e332b3cba606002b6cb1989f0d59adec16d" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_wall_banner.json5" +hash = "16b8da4722c952838a0da99991adeac6e6c563c6f2e5b8ddcf609bb5c85328a4" + +[[files]] +file = "config/blockswap/known_states/minecraft/red_wool.json5" +hash = "ef6c283d54158a91c501943ba43bcb63f32ed414ca55744c69f5ccd1253761ba" + +[[files]] +file = "config/blockswap/known_states/minecraft/redstone_block.json5" +hash = "92ad4a6213059b2d1e5328d13cc100aaf32a45601ddfc98c15083e882bc569ac" + +[[files]] +file = "config/blockswap/known_states/minecraft/redstone_lamp.json5" +hash = "de074584cbf947d94a4183542dca4f2bc4ace235d94baf2ffefd8c6731d14882" + +[[files]] +file = "config/blockswap/known_states/minecraft/redstone_ore.json5" +hash = "761dcb912ce7e79acde7bc84db5f7bc48b39f53da5c69f5e95ec5773b625b4f8" + +[[files]] +file = "config/blockswap/known_states/minecraft/redstone_torch.json5" +hash = "fb8938a77a27e23e0976fe76d6c98e5f3eb5d4c1fb65df2760456e19f0446747" + +[[files]] +file = "config/blockswap/known_states/minecraft/redstone_wall_torch.json5" +hash = "22183d2548252e06726fc8c3e63c3d9a9e9f4cb59ac8db6e70deece5ab30ec87" + +[[files]] +file = "config/blockswap/known_states/minecraft/redstone_wire.json5" +hash = "541c8f5759b64a78b398fd09bbc68809350b58f694ce819bbf137db321096db3" + +[[files]] +file = "config/blockswap/known_states/minecraft/reinforced_deepslate.json5" +hash = "e356af20b78c88dca6ec6aa45b3fe37b7d44590c73b960aeb347359aa0009c7f" + +[[files]] +file = "config/blockswap/known_states/minecraft/repeater.json5" +hash = "b6f6d1db8e911126d9b2af65ba28eb9915e30e7d66e502a589aa814207badc40" + +[[files]] +file = "config/blockswap/known_states/minecraft/repeating_command_block.json5" +hash = "0122f30827490842e6bd0a98748809109e9e2832e5ad1eefca12444e3a7e3580" + +[[files]] +file = "config/blockswap/known_states/minecraft/respawn_anchor.json5" +hash = "81d3368b7dc160698c2ad74362973d8e468e79d0e3ca2f2ba638f2a165adf5ed" + +[[files]] +file = "config/blockswap/known_states/minecraft/rooted_dirt.json5" +hash = "2068abf04689a99aa0801fb19f9aaf14e878ff1733d20ccc25e9f9b88d466a11" + +[[files]] +file = "config/blockswap/known_states/minecraft/rose_bush.json5" +hash = "a16c99be4a2a96c32c66215761aa91af5c97e9f4b0068a59a59ac5a23d13ceb3" + +[[files]] +file = "config/blockswap/known_states/minecraft/sand.json5" +hash = "faf1fa546ba6e93c16f30bd612faedf8d8467dbebdf232017aa4a1b3156ca50d" + +[[files]] +file = "config/blockswap/known_states/minecraft/sandstone.json5" +hash = "020c441107510975842b39c6f7718220a3b1bcc76cb718282aed9bba88309e0a" + +[[files]] +file = "config/blockswap/known_states/minecraft/sandstone_slab.json5" +hash = "697a1927055380e7864464e472bd89dc114eeb63f7d8a4a6ec41c31d16769260" + +[[files]] +file = "config/blockswap/known_states/minecraft/sandstone_stairs.json5" +hash = "a246463c3a136bb3d4af28679e6756f8142698155a733f85eb2b59a40ccd35aa" + +[[files]] +file = "config/blockswap/known_states/minecraft/sandstone_wall.json5" +hash = "aef4ec60e602deb5c1987f307a82dd2093945ab0f4245d2cbddba8b969def88a" + +[[files]] +file = "config/blockswap/known_states/minecraft/scaffolding.json5" +hash = "ad324f0afe7cc1ff20e0c58e2f1f6d867bf689fc8a33a0f572792035d667eaaf" + +[[files]] +file = "config/blockswap/known_states/minecraft/sculk.json5" +hash = "64e14ec50e6cda11bebeeef9270f3953d90075cb827e25102dd0f54deeab8160" + +[[files]] +file = "config/blockswap/known_states/minecraft/sculk_catalyst.json5" +hash = "a467590c6112cb58a39871f3e49337e9191050ac7f231a6bcdf05d7af283f7f1" + +[[files]] +file = "config/blockswap/known_states/minecraft/sculk_sensor.json5" +hash = "666e00bf8f3db84bf47fb5d4893ed79b6ffd62dc10d1024d7ed2245fd2aa4288" + +[[files]] +file = "config/blockswap/known_states/minecraft/sculk_shrieker.json5" +hash = "bdb64601142e48b97e9e8d075a24b5ea690e38fcb131fb27f05be07745963ae3" + +[[files]] +file = "config/blockswap/known_states/minecraft/sculk_vein.json5" +hash = "1188537a96b3113e167eb8ba268b8c50ad92edb62950455c5932f75c23a83fd8" + +[[files]] +file = "config/blockswap/known_states/minecraft/sea_lantern.json5" +hash = "4cec46a7b6b6f822492522e3e886f28e72204e80afb95b69fadc855ceeaab1a4" + +[[files]] +file = "config/blockswap/known_states/minecraft/sea_pickle.json5" +hash = "f2ede5128a51f5a0ee7d4b65034c177669f34f9b83ee41df1e2124b4e6ace4ba" + +[[files]] +file = "config/blockswap/known_states/minecraft/seagrass.json5" +hash = "c893f6dc93112d5b69593a4b7df65a05203d62abbc5c342f35c6ca192db76790" + +[[files]] +file = "config/blockswap/known_states/minecraft/shroomlight.json5" +hash = "8cbc888e4297b8838f7b382153bc05094a023ec8af7b5efe51ba9dcd9b975e73" + +[[files]] +file = "config/blockswap/known_states/minecraft/shulker_box.json5" +hash = "3b2ef55e2e56d5978d0b26049f811c696451d82601532e36337705629c13d5d7" + +[[files]] +file = "config/blockswap/known_states/minecraft/skeleton_skull.json5" +hash = "da369ef549cbb4536e7fecf8e2763cb07239b02862c06177ccec82fd12a00b59" + +[[files]] +file = "config/blockswap/known_states/minecraft/skeleton_wall_skull.json5" +hash = "56b65a55f0578ac3282d54c7b27b38adf23a15b9b775948cdb31f5289a8a52ac" + +[[files]] +file = "config/blockswap/known_states/minecraft/slime_block.json5" +hash = "55ff6a3f7fa0ea267dc5dfb297c413c38342c5af46dfb363e4992044d117515d" + +[[files]] +file = "config/blockswap/known_states/minecraft/small_amethyst_bud.json5" +hash = "3deaed36c6504e09d7df9357ac4e415838d47542f21174f4cf83ffdd5f166080" + +[[files]] +file = "config/blockswap/known_states/minecraft/small_dripleaf.json5" +hash = "8f02bb02304abc5514ceb6a2fe7ef1c0eb4b731803c4766ae563c3b51aa70005" + +[[files]] +file = "config/blockswap/known_states/minecraft/smithing_table.json5" +hash = "1119e7313b3fcf5ea41e4d891934c299c1994f8012be163e68cb9e22dab0b4f4" + +[[files]] +file = "config/blockswap/known_states/minecraft/smoker.json5" +hash = "947d986c13a86122f07209ee302bff2c0c989f13b62d903f1327e1b283d7ca27" + +[[files]] +file = "config/blockswap/known_states/minecraft/smooth_basalt.json5" +hash = "b26f3ca784a15b7d7f51fd22a079018895c74433d07dbe4aa2dac5e84c7f96d5" + +[[files]] +file = "config/blockswap/known_states/minecraft/smooth_quartz.json5" +hash = "b4cce1faf01f3dc2cde0beadb0738d7d3a3ce1d143c8afb04a75e273239ac90c" + +[[files]] +file = "config/blockswap/known_states/minecraft/smooth_quartz_slab.json5" +hash = "ffab0d811716eb93e1251c2d70d8a4acab95a27cec60d81fefcba33d788f6d4e" + +[[files]] +file = "config/blockswap/known_states/minecraft/smooth_quartz_stairs.json5" +hash = "33d8ccd69c2651f691e1160de9d9ec35ea48c35613ac9c926a1d46536c726b19" + +[[files]] +file = "config/blockswap/known_states/minecraft/smooth_red_sandstone.json5" +hash = "8c3563a87aa00161779eb6e290ea7e0198987f5cde0a17f9a753f093efa17914" + +[[files]] +file = "config/blockswap/known_states/minecraft/smooth_red_sandstone_slab.json5" +hash = "851b999d7f81b98a6ce020a154f5cd8f257da912d307a060ba9163b40478bf4f" + +[[files]] +file = "config/blockswap/known_states/minecraft/smooth_red_sandstone_stairs.json5" +hash = "96bfbc4d41ac53ef34d9031fdb9ad84825fdeaf7b92f97e7b3243ed012781584" + +[[files]] +file = "config/blockswap/known_states/minecraft/smooth_sandstone.json5" +hash = "85691794ceb5caa9687e2702c805c7f8cc72dcd2b2812dd6b2151d2ddbb44862" + +[[files]] +file = "config/blockswap/known_states/minecraft/smooth_sandstone_slab.json5" +hash = "6bcd31b728080415c82cadca09c49f55aef3814802b254ca0f3c1ad9ccc15f41" + +[[files]] +file = "config/blockswap/known_states/minecraft/smooth_sandstone_stairs.json5" +hash = "d7e4ca30fbdac3a8e410998740a7a82bf10237ad84a142a86107a47b457e30e7" + +[[files]] +file = "config/blockswap/known_states/minecraft/smooth_stone.json5" +hash = "a2752a97a8bb93ce8d748a19e7013214c6a796858570f969e44587993c903d38" + +[[files]] +file = "config/blockswap/known_states/minecraft/smooth_stone_slab.json5" +hash = "2b786b24376902ed9bbcb154f77e381ce2ee184a201b4676413f1478ec03af29" + +[[files]] +file = "config/blockswap/known_states/minecraft/sniffer_egg.json5" +hash = "595cdd700065062b7000e181187afda29fbd143c87c19d68d1f8e2a891d31908" + +[[files]] +file = "config/blockswap/known_states/minecraft/snow.json5" +hash = "639275b231e6a2308261372eb7edee7685ed2fa7ba4fb987816a701873af02df" + +[[files]] +file = "config/blockswap/known_states/minecraft/snow_block.json5" +hash = "b6ca58d27bde798149558fcb25379cd2a8ecb13df8e4e00d04998c6962a649c9" + +[[files]] +file = "config/blockswap/known_states/minecraft/soul_campfire.json5" +hash = "4ca13472c77d08df43e2fc325a88d4aa0a596f714342d79ef37d4f93a8026e34" + +[[files]] +file = "config/blockswap/known_states/minecraft/soul_fire.json5" +hash = "eb9cbe7ce0f7f03c3a4114c294d46795dce6f4751a056c98c0136c65a63b49c8" + +[[files]] +file = "config/blockswap/known_states/minecraft/soul_lantern.json5" +hash = "31742fc7131424f51040e6d8009b35240429504e80dc9373f2427a12fc9aa2a9" + +[[files]] +file = "config/blockswap/known_states/minecraft/soul_sand.json5" +hash = "c23ec5f4c9c3336b9b3e457479a02b68d2eb926bbc496cb36514b73633ad6e8f" + +[[files]] +file = "config/blockswap/known_states/minecraft/soul_soil.json5" +hash = "e31e700ef06471667bc6e5fecdc08b21d0bd94f5da5a23ca740b5145b87d8735" + +[[files]] +file = "config/blockswap/known_states/minecraft/soul_torch.json5" +hash = "11c9aa1789d1568d477052e49bc5a3ca380d53d31373f3e8423f62e9a2b4124d" + +[[files]] +file = "config/blockswap/known_states/minecraft/soul_wall_torch.json5" +hash = "2a1162d194e07a8cc68e6f1ece7e542099e297fb880c9604fb5389dcaccb8edb" + +[[files]] +file = "config/blockswap/known_states/minecraft/spawner.json5" +hash = "e944bfa912be2dc1faca2ca5f8d7fd546a57536fb01e4541700a1de3c5defa6e" + +[[files]] +file = "config/blockswap/known_states/minecraft/sponge.json5" +hash = "bb668b947168bd315dc308d5492680654432605154a6aa8fe8afaa3d141267a6" + +[[files]] +file = "config/blockswap/known_states/minecraft/spore_blossom.json5" +hash = "97dec175b0ae277746e3d9528b62079628c359ff09bcbffbd3ddcf001a745416" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_button.json5" +hash = "c972896265eceb4d16c0894b7f580724fc81f6393dbf310a960a3568b108cf7d" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_door.json5" +hash = "7ab75986e0c21eeb0e4182c28e2e21e8c908c96e4a01b8957da71185205544d4" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_fence.json5" +hash = "8e19744d31d85b8c78fdf9cc75b63b945e213417b96e46adb51f7f78066641a1" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_fence_gate.json5" +hash = "c0f9057458b027501589b9c6205e922b7e0c2c1d5fe5a296e9a1d9ce90c59fd9" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_hanging_sign.json5" +hash = "61b2f255bccc4e1f3fddbecbc2b97eddafd756da1dd380f29d9b13824af4dfde" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_leaves.json5" +hash = "a553c1413ede936d54b6da3b5163feb0f3c8f485ce52f89fcf28d99eaa12608b" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_log.json5" +hash = "86ff3ad7fb7dbffb9a9f8c0b89a7b6574ab78870633c13c0ffc211f3d1087d6b" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_planks.json5" +hash = "529d81c01981464ec387702692583c5c1651f5a35bf8a9f8ab46c2a4237a32f3" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_pressure_plate.json5" +hash = "71386ac31f15eef06616a9c8f3852e50373aa2bc2e7c58cb6065fc005eee5472" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_sapling.json5" +hash = "9d600493476ebcce01e26ed53edd96436f9b437bcf4fce131d56ba77b51daf2a" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_sign.json5" +hash = "fd395c1bd519fc0e82007461d028576aacafaa658d162b965d39b84ba36e609a" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_slab.json5" +hash = "0de2e683bdcc72833c4be6cd2b8b0e388b873b5b72de5338ec45700180e47fc5" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_stairs.json5" +hash = "f42beb2a55e10aa55a24c9eb76100e00b1f2d38dd1544fd02e2297532fe745ab" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_trapdoor.json5" +hash = "5a63b0428126bc5eafd084872a15fa7298a178228cbf7a85d1e83b6a391f0f26" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_wall_hanging_sign.json5" +hash = "f937517801da4d208599b64f41826358cb8aba6c0fc5c5da2ec50cebd7b92b5c" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_wall_sign.json5" +hash = "63d6a8f6d05cca0d622dd20218efec3165b27fcc6a69afa89cd3fae49d099a62" + +[[files]] +file = "config/blockswap/known_states/minecraft/spruce_wood.json5" +hash = "7c4bae860e3814df77961e252b3507b9130183fcbb80ae77b82af0a1b4571f4b" + +[[files]] +file = "config/blockswap/known_states/minecraft/sticky_piston.json5" +hash = "de69b9067111c5265dc485a3b8989c4416840da38c3bc51856ac0aba0c1203d2" + +[[files]] +file = "config/blockswap/known_states/minecraft/stone.json5" +hash = "8dc2e964faf1a6a56476abc85fc6006d66952981fc7681272ab7045be1dd001c" + +[[files]] +file = "config/blockswap/known_states/minecraft/stone_brick_slab.json5" +hash = "803798f3e2bc0be30f45370a3d00ae24cc4494d7e82a1681776439e984e43fde" + +[[files]] +file = "config/blockswap/known_states/minecraft/stone_brick_stairs.json5" +hash = "8fc07d578e0eb5628b2f859c602cd4d15a795c252d05b57006eb43b0538c83b3" + +[[files]] +file = "config/blockswap/known_states/minecraft/stone_brick_wall.json5" +hash = "8443c593f607073c6a553792d4ef55222de31649ffedb837f538902d96cb5077" + +[[files]] +file = "config/blockswap/known_states/minecraft/stone_bricks.json5" +hash = "877358c5f22499d85f36e36c29162c8f0200536238011fb8576091e3e937e9dc" + +[[files]] +file = "config/blockswap/known_states/minecraft/stone_button.json5" +hash = "c54aad9a01adfbb6566c1aeb9ffa0f597d09bcf80d248c8d6c2436bf111e19e0" + +[[files]] +file = "config/blockswap/known_states/minecraft/stone_pressure_plate.json5" +hash = "654332fd9fe804fb16aff4cd2b461794e21bb079464cd90ebddf29edfa343339" + +[[files]] +file = "config/blockswap/known_states/minecraft/stone_slab.json5" +hash = "d358395d37b89cada80dd86514d1a60465ef7346f7e3e353f36e070c2f0bcc2e" + +[[files]] +file = "config/blockswap/known_states/minecraft/stone_stairs.json5" +hash = "975f2e79aa7e9bf918593545db6b71ef8ea280162beb665603633f5fcf0d65cc" + +[[files]] +file = "config/blockswap/known_states/minecraft/stonecutter.json5" +hash = "39dcba68b97aab688768ba8064a3874e283bb0b84546233864b0c79f9e05613d" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_acacia_log.json5" +hash = "0b8e3d65047038366bc3d5e2bb3d123ddd35454818d9b75e124eb39e97553550" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_acacia_wood.json5" +hash = "36f40ae23fdfcce8890d685fc890934ca8805a670f13dddf3fdeab0671a8e422" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_bamboo_block.json5" +hash = "b492d8ce7b4af30946cd5d66724322b24ac6d31402839f5105c75ad37f304015" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_birch_log.json5" +hash = "57bf8aba86637871a9a5014e479876af151c3f0016b9eeb3b950ff4b545a4695" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_birch_wood.json5" +hash = "502ac02ca5ac5e6b4c82443733d8dc699b3dc5feba025b4e8d2617eb2f364d5a" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_cherry_log.json5" +hash = "8657ac3113b10f8f9c4db53ac2e7143831098d106f19dde897b7678e6d238c74" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_cherry_wood.json5" +hash = "8631e69fe656669be1a3cb681267c0de80c268b8bee6ab0e7b74951a9b6459a3" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_crimson_hyphae.json5" +hash = "a6e53c5b74a39407454988bac2e69b3c180f34650530d338226d24df7c7a0b1b" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_crimson_stem.json5" +hash = "04f48328dcf098d0f09f949fb6a6cb614c1ad393ece049ce203d268f805d3ecc" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_dark_oak_log.json5" +hash = "4e13bcb3c019d23266a77c418aaad35213e39b8691303d8f6f89462c143fe6e2" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_dark_oak_wood.json5" +hash = "d7d37bf3ee6610e8125db45375941d7afa20a7435807ab890ae404f019ecdf90" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_jungle_log.json5" +hash = "9d973eaa97249f8dc23223de4f29d58a8a21ed1f15c8477206ac02791b3589b6" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_jungle_wood.json5" +hash = "aa1a66a1063e1c28c8e62194e53c6cbf78bcdbd690750cd1a3d983e68202a080" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_mangrove_log.json5" +hash = "31d15d1f360951895f67ef8e19697f51cbf3e14c0a2d1298e998141cca1089ec" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_mangrove_wood.json5" +hash = "c830032d73569f2c4234a011ca7be1a552a5816404bafabf0ced8009cfc0c6bd" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_oak_log.json5" +hash = "c715dc00cf2368a9819bd0ce4a6bc44fe72aeb1ff0ad28d5af7af610585884fd" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_oak_wood.json5" +hash = "13e22da5905ad8fdc70cc70bd29a85166e80b565ca034f459d52f0f7cc34500f" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_spruce_log.json5" +hash = "71541074107939ad7acb814101391406360b4990c4ceaf23511b278a0e5966a1" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_spruce_wood.json5" +hash = "b662ec15124744264247957416151973fc73b40b6162da394579e9ac0396da83" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_warped_hyphae.json5" +hash = "da3aae3d5d82181f679112a8edba9b54ac7655136a53f0822d34c5a67b0961e5" + +[[files]] +file = "config/blockswap/known_states/minecraft/stripped_warped_stem.json5" +hash = "bddc3f76fdc5f23ed3c8da6f871a3cb0f6788782b43384c4b6901f046550877e" + +[[files]] +file = "config/blockswap/known_states/minecraft/structure_block.json5" +hash = "bf033c142872a6dc0201e8173010bd36534ec73bf14389ad7b3224bc364f6fd6" + +[[files]] +file = "config/blockswap/known_states/minecraft/structure_void.json5" +hash = "42912e07a8f86e08c340beae9df99b7b477ae053774f096a180f97565f7484da" + +[[files]] +file = "config/blockswap/known_states/minecraft/sugar_cane.json5" +hash = "2e7546aff86da3b281cb5c7a51a6b259fe0e622d6a91b7e65b399192721e7e88" + +[[files]] +file = "config/blockswap/known_states/minecraft/sunflower.json5" +hash = "9dc366583e061932e7f7314aff5984b7be113164694561cbe6a10db6ad1fe3e5" + +[[files]] +file = "config/blockswap/known_states/minecraft/suspicious_gravel.json5" +hash = "9c5889939fa0ff1aad3ddd05b0ae0220151cf49a93a8a4a9af9d2c23b2fe29f5" + +[[files]] +file = "config/blockswap/known_states/minecraft/suspicious_sand.json5" +hash = "d92f65e7424848f63b9764afbf46c186d5007b35038be22ecd7a01ea6a1c1b79" + +[[files]] +file = "config/blockswap/known_states/minecraft/sweet_berry_bush.json5" +hash = "9c27d63e8b10a2413eff380c0e24432495e5c924bad65aac7d086c772958fdce" + +[[files]] +file = "config/blockswap/known_states/minecraft/tall_grass.json5" +hash = "7c58e93d0ce93c8991dbd119e4d443091aac0b54e38f96713472911802f09c21" + +[[files]] +file = "config/blockswap/known_states/minecraft/tall_seagrass.json5" +hash = "f591352dd3bc20d7bb27a3d2777171f62bea00890e859a5c1c8eeddf5d5832ed" + +[[files]] +file = "config/blockswap/known_states/minecraft/target.json5" +hash = "b7203a53c5837de59349bcb46135ea7c0d2613b760077773f7b3538803d3b45a" + +[[files]] +file = "config/blockswap/known_states/minecraft/terracotta.json5" +hash = "1cdb2c4dd69c883ba23fbf05bad082dec2137483673968beac9556b59e89ca53" + +[[files]] +file = "config/blockswap/known_states/minecraft/tinted_glass.json5" +hash = "7597ae76bca52acac1e6b8aa9d6f791390b90a5f452c4f05dbccef3b575ef3a0" + +[[files]] +file = "config/blockswap/known_states/minecraft/tnt.json5" +hash = "95d63d56e75e252c71952798aab24f98bca02685ee5af2913e0d0cca99feae3c" + +[[files]] +file = "config/blockswap/known_states/minecraft/torch.json5" +hash = "125035cd236e469a7367c5841abae202d9defc5bc3d2c150c44e273c9c71d1dd" + +[[files]] +file = "config/blockswap/known_states/minecraft/torchflower.json5" +hash = "ba33a7c46ef7ff530e3d3e8905ed5b7168d86fd87a5309e3d19b557092ed7f44" + +[[files]] +file = "config/blockswap/known_states/minecraft/torchflower_crop.json5" +hash = "6bb235aa251a29ef97a204ef28a12787ea591f517a5cfdae1fa54b178289af5a" + +[[files]] +file = "config/blockswap/known_states/minecraft/trapped_chest.json5" +hash = "73ccccda2ae13b09e43b0918f314aa253221179aafe54e1617f8b5ae6a11919c" + +[[files]] +file = "config/blockswap/known_states/minecraft/tripwire.json5" +hash = "21ecc665a8173eea80cb52cbe9b75b003e81e48c1f6307b8a872aa6a1d3f8520" + +[[files]] +file = "config/blockswap/known_states/minecraft/tripwire_hook.json5" +hash = "65aa1056a3a755acfd5a4ade4ba4d952e348bafa00ee0017b1191728cce7c2f1" + +[[files]] +file = "config/blockswap/known_states/minecraft/tube_coral.json5" +hash = "eda8b2c291b7cec747981acf6f5d022b5d82e5a2828f798b1877f6d2ede2f459" + +[[files]] +file = "config/blockswap/known_states/minecraft/tube_coral_block.json5" +hash = "a2ceca9cec48c9b9b1482247e12c4ac36c2cfaac8d983ce38ca0a24fd331bdd9" + +[[files]] +file = "config/blockswap/known_states/minecraft/tube_coral_fan.json5" +hash = "04139c5928ec229fc6556b110548feba3ac30528a7eaaaf205993e4ddd7c29d4" + +[[files]] +file = "config/blockswap/known_states/minecraft/tube_coral_wall_fan.json5" +hash = "b745ac0e260f1f334a7c235f27b8d6c6b2078026211a543d8656652a1ac7196c" + +[[files]] +file = "config/blockswap/known_states/minecraft/tuff.json5" +hash = "aa35f679dbb908a870c8be5a02496c81597ab985e292e39fc14d4a1795f3fd50" + +[[files]] +file = "config/blockswap/known_states/minecraft/turtle_egg.json5" +hash = "75f9fdef29e957b6edeed53a94b17560cc75ad2892428ebcb16ce6b82e8a3e8d" + +[[files]] +file = "config/blockswap/known_states/minecraft/twisting_vines.json5" +hash = "f7d023035e89b81cf7839226833e445168252037f2800fda83d29097f9f9ba76" + +[[files]] +file = "config/blockswap/known_states/minecraft/twisting_vines_plant.json5" +hash = "234d48d86c80aa793870ca075e1be45d008c299c5e7aaf397dcf3ea2d5f86376" + +[[files]] +file = "config/blockswap/known_states/minecraft/verdant_froglight.json5" +hash = "7c968d674d9f9006371ae067283d488c0b2f4e6fed45712a0dbca09f1e6a9cea" + +[[files]] +file = "config/blockswap/known_states/minecraft/vine.json5" +hash = "fe07fb65235d7e98fede0981aeb9897d50a74dcfbca1348420789207e9a9426a" + +[[files]] +file = "config/blockswap/known_states/minecraft/void_air.json5" +hash = "475de7be3fb4f83e957bc1aa7cffae5292d284e5f2130aaa5bef025400a99ac2" + +[[files]] +file = "config/blockswap/known_states/minecraft/wall_torch.json5" +hash = "e57ff1a940d23a2b461eb44f63a72c7a12be0778d75b78f9139b34d87dc1bbd7" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_button.json5" +hash = "fba33efdea10b0917bbf46b9290c4bef16947d8096876246b9ed296405e7cc2d" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_door.json5" +hash = "56f501424be8dc6d47101922ddd5872b65b72758b83ad01b63d5b95f2777bb94" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_fence.json5" +hash = "d68e9a558821cac7e6814609defd0b6d54c77f3098d6b4bb5bb18104d40e6c74" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_fence_gate.json5" +hash = "671ac7329b4c5941f98d24ce24a493cbfd36dbaf2ce010313bcb868ccb09153b" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_fungus.json5" +hash = "80b402edd3ee4106ae4bb93e3f284658276bc17ef69f2dd6157ffff7d339ff11" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_hanging_sign.json5" +hash = "967b93bce063353ee5f09a0d8be3f299b169944d06766ae236d4182b445a760a" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_hyphae.json5" +hash = "f5c165f470cf553d8f2b8db8217a3c89ec012ef06d21791f01b4855fed6941e6" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_nylium.json5" +hash = "8119214fc42a3b4d3f35f3d30b6246e7f8ac2926308de78bd0459272289dfb32" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_planks.json5" +hash = "e6e96b0f0a9232bc512a5474a4cf68a552853f02f8384dc258df95be8d319f10" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_pressure_plate.json5" +hash = "cf05cad981938b38e17f78b33601d029b446499db5588bab917925d8402be412" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_roots.json5" +hash = "42e02401af953628bd338b84c9afdfbf6025e5fe1db7da30d16bbfbc0ae0ac29" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_sign.json5" +hash = "8a10d8f0ccf4d5afa10d1103a08523a1fa0bf719a8e1e694b4bb96888e1bba50" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_slab.json5" +hash = "7b1c0c02609d358832e092c62d76688638e670c2ae35097819a60c68f39da3c1" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_stairs.json5" +hash = "a4ede92de1c315224a642f06f34c9ccb7822babfd123c4d7b426a9823cc8c67c" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_stem.json5" +hash = "356c3d8dee0fd1944e601e9b6a3495ffe656b13037e5643b3c3d0247877ca5e8" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_trapdoor.json5" +hash = "b37b5d75013dcb347be2bdd30379844ce742ec4a1a91aff8772a9b36daf5ee08" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_wall_hanging_sign.json5" +hash = "1ff7616d393c999d2c8cf067ab0546d29c27814148da8b663b1ec013ca1b223e" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_wall_sign.json5" +hash = "1ed3df4cd1e38d4cca6370274d0eaa9d0310b4d44ed917f7b1c7ec1f12468114" + +[[files]] +file = "config/blockswap/known_states/minecraft/warped_wart_block.json5" +hash = "24796fd5e9eddfedd5ea5616eacc37fc0c0e985de5fc46b2996a20ab641c73d3" + +[[files]] +file = "config/blockswap/known_states/minecraft/water.json5" +hash = "e88bf825a663a69e14c009fdf6308d215ec478ab442662270deeb77ef4b1a474" + +[[files]] +file = "config/blockswap/known_states/minecraft/water_cauldron.json5" +hash = "15e6c64f637052450f9c53fcc31f9dde11448f44247898cf0f532e8abff6bcae" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_copper_block.json5" +hash = "3c95e724e9679ee2da57c38bc9d25f68705ac4961d40d0235b71c1f2f2ea42cf" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_cut_copper.json5" +hash = "e126efbbd900efd7a210031c5cb0945e25d1bff5e2ba4939a3019d3c973bc769" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_cut_copper_slab.json5" +hash = "50e8a41e2658d79e2031422d5938b32e9959d58719db116d1f172b3632e66392" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_cut_copper_stairs.json5" +hash = "a3261056ed5b0c4081474e64703b0c7a3b08ca3e58e20f46b93cb761eb14bcac" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_exposed_copper.json5" +hash = "1c521208744230b07aa2fd6c062b8f3a885812a01ee976f4eb59a1100ac358d4" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_exposed_cut_copper.json5" +hash = "8b01da527f163513c374e7c6b6dbf912665b6500b40c7a5eaaa83241d90a7ff4" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_exposed_cut_copper_slab.json5" +hash = "c87ca1eaa251e31e3e2223aaedff639388bf0d6db67171fbef7030141ca08e3c" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_exposed_cut_copper_stairs.json5" +hash = "663f44c5c542589f5a17e5a7d1929401b2b2915a743d4e2b051afba72fcc1505" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_oxidized_copper.json5" +hash = "a1c44fdec7f81bccd1c954141061a5a4fa6d1469d470e0e2261555d932b3a034" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_oxidized_cut_copper.json5" +hash = "e58e393c5a00949098dba8f8a481704f9ba27d3579d9cdb24b248439e22fb13f" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_oxidized_cut_copper_slab.json5" +hash = "28f13b06d227a5b3bab70ac51295dde4257bb5b758d4221e9e0d4e0c84d10340" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_oxidized_cut_copper_stairs.json5" +hash = "8d3bba7bf2375529ae7d2ddfcafd9ad678eb65834079e700389751e0c62f3348" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_weathered_copper.json5" +hash = "16898d36ef8e3053b8b5939282ddb941c829c24d16bbbd9afba537fc9e59ebe2" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_weathered_cut_copper.json5" +hash = "ae057da4639168842aba2216f80dd44299f85cfa4b42514fa75d88ccba142f9f" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_weathered_cut_copper_slab.json5" +hash = "6ca5ef0d68f7997fb3faf94bc6223f94561b00338e35f8bfcc3c63b7f493d0b9" + +[[files]] +file = "config/blockswap/known_states/minecraft/waxed_weathered_cut_copper_stairs.json5" +hash = "15bde9b0cefb779fe5014cbdd53408c20a27a4e3b9d1da87c459e00b97daf566" + +[[files]] +file = "config/blockswap/known_states/minecraft/weathered_copper.json5" +hash = "a41d26154713dff689ace757dcbdae65dcb2b78803ddd192158ed6ac7134f4c4" + +[[files]] +file = "config/blockswap/known_states/minecraft/weathered_cut_copper.json5" +hash = "5d748830d410c5e4358dfef160a9c50ba32288dbf4dc575017f5e872a37dd249" + +[[files]] +file = "config/blockswap/known_states/minecraft/weathered_cut_copper_slab.json5" +hash = "8a8a70047bd874e3b0a9fc6f770f8768bcfd0591a6fd02b095a1362ed8489d22" + +[[files]] +file = "config/blockswap/known_states/minecraft/weathered_cut_copper_stairs.json5" +hash = "3e3eb5e02c5bf17ff3cd964cac12670912217604c24c08531cbc9d605594f20e" + +[[files]] +file = "config/blockswap/known_states/minecraft/weeping_vines.json5" +hash = "0fe89c6c51577e82a9a20239ed9d4d1e2984c8a49ba38e152f1c3dc4affcc728" + +[[files]] +file = "config/blockswap/known_states/minecraft/weeping_vines_plant.json5" +hash = "996768898763f3f853d8255ba704b4db7d7e33549a58842585d0a21bba14e9d7" + +[[files]] +file = "config/blockswap/known_states/minecraft/wet_sponge.json5" +hash = "9595f6d8a76fec5d3b38cfb9c292ba5de2269049e74816fd439186b555201a04" + +[[files]] +file = "config/blockswap/known_states/minecraft/wheat.json5" +hash = "cf4600562fa9d88ad0e98bcce5578b590669aad18926b910e9392b05545ece82" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_banner.json5" +hash = "877880ee0906cd04a74fc80d28e91fc185bf026d7e52040d882a703037796996" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_bed.json5" +hash = "0993bf5f0136f17c7a9c8b730abaaf49e5cf3b3a91db03326b92ebb170bc41c2" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_candle.json5" +hash = "710c509023fbc82bcfd033d33fd950131a9e4bb7ad199ff279f452926bc51d63" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_candle_cake.json5" +hash = "b84c66910d7b6563042d4fc05122edcf0e5bb990a4caee03dc0b438b87900402" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_carpet.json5" +hash = "d16e2346c4435fe94e63035a552968e578aad87175e24799d4e0999910a5295a" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_concrete.json5" +hash = "2a3c6a022050f841dc1fe21ed988c842d2403556e05e229947f78623ae5cd161" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_concrete_powder.json5" +hash = "ca65703899bb030e152426986c800efcbc428936115dbfcad06b22c80b369c7b" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_glazed_terracotta.json5" +hash = "56a9e7d1f25ff8027a9b34e7c61126fe3bbfc4e1a364f0a063f81f819adfc5b7" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_shulker_box.json5" +hash = "105f72ed60990b1f87a38661d2550d9780d644bc85575d4118763f09bea68b8d" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_stained_glass.json5" +hash = "a1c747c1edb6c1194b74117828cc3f472e03216dcba54cdc19b7a52a2e4d12b0" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_stained_glass_pane.json5" +hash = "d7196110e5fb23a6b6cb6f1b9be0b75bdf1f79061c0cae435494c5ed3557d687" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_terracotta.json5" +hash = "1d4f67c3332aecca4bcf82ed1a3bd23362ec3e90bf542ce4d67b2748e55e9053" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_tulip.json5" +hash = "dddc8f6c3fca43b8ce20ca251d27d2637e4c85e31c594f2be3a2408454f46fc0" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_wall_banner.json5" +hash = "b274d88d12a187718d1f22452358f0cbfc0b992646d8b71f1013cbd1444f70e4" + +[[files]] +file = "config/blockswap/known_states/minecraft/white_wool.json5" +hash = "0fde871c428937b65afa814881674c8a8bbea929451b2d81d71d55e0fa528864" + +[[files]] +file = "config/blockswap/known_states/minecraft/wither_rose.json5" +hash = "cac15010b1c19ff60c40a76a1beb3acd5b9ac71f1da291bff8dd9f982dcf38a3" + +[[files]] +file = "config/blockswap/known_states/minecraft/wither_skeleton_skull.json5" +hash = "3b9890f733be23e728ab64b99954d8a87068bd6b7df60fb5e825741c19c3b909" + +[[files]] +file = "config/blockswap/known_states/minecraft/wither_skeleton_wall_skull.json5" +hash = "aa101730ff770832ef023827ca9de0dc8cd43860e31bbb9d4773df6d7093f5f9" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_banner.json5" +hash = "3728afc3a4eef4a77d46e94435cd3e2b04eb2a3cca5bf217637333425a863898" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_bed.json5" +hash = "19d80b48a19a541c0ad4e696f43e3206cb467d46d781740ee0f41551f7a57fb4" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_candle.json5" +hash = "cea44d5d58ac69cf940a97ce2b0cb139e00c056f505cfba44b608b05e8e3d65d" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_candle_cake.json5" +hash = "eb914c4467bf8c8c7c538bd1c63373d41abb94899f6d4226ed80bb7decc1f49a" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_carpet.json5" +hash = "44c6f56a02885e7361d8c4c7352c906d657539194cc7eabd9de325ec92feb525" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_concrete.json5" +hash = "24b890a1253f6d3838ec7df9a871d0869605cfbe79d4cc8925e9ed51ad392763" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_concrete_powder.json5" +hash = "288f6c841252c7bde21eaeb21abfe4204052877849ae424fe31a61e73aa67677" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_glazed_terracotta.json5" +hash = "d5c7df11803b1ae4d4608e441191bc1809b1b75e4997bffad5221b87a4b82925" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_shulker_box.json5" +hash = "3962a6fa8aa0c50ed5b7309ebaae1d5bf69ac769f1c782dfdf9673772d006b23" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_stained_glass.json5" +hash = "32c43c37c0af56b082f161e2d31920fe7181e61651bf0aadf1e14b1a5593428d" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_stained_glass_pane.json5" +hash = "70d707b40fd95792f024808ce4ed5a5db53dda0a0a5b8b72d15cd89d202cb9b2" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_terracotta.json5" +hash = "1908b8f0f534e28360b60058d341c18d81aa9717f75712351bb6adee531e3ada" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_wall_banner.json5" +hash = "f6eee6ab97db400fae477b4facf0511965749f9f1314de9def1dba73b669e841" + +[[files]] +file = "config/blockswap/known_states/minecraft/yellow_wool.json5" +hash = "3b8e64cf9164c407432455ba6e3f3f3e4c729e9c4210e7be71b19293982d0320" + +[[files]] +file = "config/blockswap/known_states/minecraft/zombie_head.json5" +hash = "d8ea023c6717e0fb4bf95769d3dca9e7a47486bbb4ec11587f4f1d51f82e8f9c" + +[[files]] +file = "config/blockswap/known_states/minecraft/zombie_wall_head.json5" +hash = "e6aec3b10cf123958c1bde6cd9354fc33b8bff95481bbca84e0f56d35424e51f" + +[[files]] +file = "config/blockswap/known_states/quark/acacia_bookshelf.json5" +hash = "f7177ee7e505e69b394faa5088cf77463e9de3143c4feebcc6f6ae8eac427e1a" + +[[files]] +file = "config/blockswap/known_states/quark/acacia_chest.json5" +hash = "2aa9b01939dea4fb3cd2daee86fc009d4caa19021b55cc26638c66407c321547" + +[[files]] +file = "config/blockswap/known_states/quark/acacia_hedge.json5" +hash = "212a3774c7e16ffe42b856714f146bf535ad6f40e2de83cc2fa640be0e15d636" + +[[files]] +file = "config/blockswap/known_states/quark/acacia_ladder.json5" +hash = "6d535a27039a17e0553c4e1a2c88c80e0acdbedba831e06c98950aa07b51bcdb" + +[[files]] +file = "config/blockswap/known_states/quark/acacia_leaf_carpet.json5" +hash = "9c065eaff2e3104d9242c78d0eaa19490b4419b6b1236e0ba503041d84fa772b" + +[[files]] +file = "config/blockswap/known_states/quark/acacia_post.json5" +hash = "55403cb7db4b6fecea386126ea42982be15689de82598ea305e79260a282e5b4" + +[[files]] +file = "config/blockswap/known_states/quark/acacia_trapped_chest.json5" +hash = "47732f151d8cf311eed7a6505dd8be0a21a4465a67634c4225a9e73708ab9912" + +[[files]] +file = "config/blockswap/known_states/quark/acacia_vertical_slab.json5" +hash = "d40d6da488ab2d7f2ba9653029707fa2ecec328eb19cb7055f9c8324f58724a6" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_bookshelf.json5" +hash = "d579a89c94c53e96079593d42c3f35a4a8b49dd3a54b88c08ffb65a8392809f9" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_button.json5" +hash = "ae70d5fea06a3834583535955ebad4f0a36843b93ed2156e932dd7cf8b7f0a57" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_chest.json5" +hash = "db3ccb49c58bd969394777abf854b23f35b831ed1428f44bfa4cdb4cd2df2620" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_door.json5" +hash = "88359765062bc3dd7ff95ef87eb0dde007e659b87a8a411fe6b4bb3f0a874090" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_fence.json5" +hash = "8bf6f2a1f410ec0e43604ce632693b93c56426676838740e5194f36bbfdac26c" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_fence_gate.json5" +hash = "3f05fd4a43076e24ce1aa613793cf54989eaf7053d965f5f0cf8a490be9505fe" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_hanging_sign.json5" +hash = "b9c6a41e106c0cf39d112991efbdc88f438cb2c9040d2316e7c01552d26c7534" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_hedge.json5" +hash = "25f21c2850ea80c13d115f689340ba7647b47c5a29b7c277748e868daf669125" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_ladder.json5" +hash = "f4cbd00a062f3bb8d26ec85594249d0a5a74453da09baf9ed2d7587bc2d5442c" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_leaf_carpet.json5" +hash = "7d7689907662f9a95b64d47b9c0fb888fca13d2aed2f3b1131fd9d41cd033201" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_leaves.json5" +hash = "9bd7f4f4f8fabbbf7655c0554665347a96e7098ea35f83b005d233f29cb8d174" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_log.json5" +hash = "edf8a83dddaeda238aaa056d0984a6527e1eb8890cf8611e1adaf676516da936" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_planks.json5" +hash = "fd784398d4ae8222f6577c5bd776ead5d1e0335ef2435fb5ed1aeb09ac75ea79" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_planks_slab.json5" +hash = "86edbe3ad2199243fcabee1871c31b8db96dab6b982f9fd4aafe66098c0c561d" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_planks_stairs.json5" +hash = "a4b9aee352124d4ab688d7cd64366570256b4f0113fea51b0a1f4f59fdda1611" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_planks_vertical_slab.json5" +hash = "47a857711dc021266d45aa4bfb1621555770fd22ae9a95cb0c311ac218d4f2c3" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_post.json5" +hash = "6de7adcf0fb57b11d6b762050243f0954f35d7dacebfbac8dd561f3e22ca8f26" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_pressure_plate.json5" +hash = "e7e474cabbb78c2e83269af5f613bbca04104cef3def8b14e2be138cb4206ab4" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_sapling.json5" +hash = "6faaeed9ebc802e20b6c01adddb4ac34993e35c8d968f326f7339163e0898e98" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_sign.json5" +hash = "fdda1b3428fd9215aa9f61d0355f7540364c27e92dcd971fc674245b96e743d4" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_trapdoor.json5" +hash = "8a9f4042c1aa38eda7675455fdcd1d12aa21ff74daa71d2357da35e8e2306701" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_trapped_chest.json5" +hash = "5ffe762acbe60d0ee1d685366522a0c4cbabcaa9f75eb3985a6803d27cea8cd1" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_wall_hanging_sign.json5" +hash = "cc9628ce5364b7095d4e0e577ff1a396341e3738b717bba0031426fbc8208034" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_wall_sign.json5" +hash = "06b8a740522d1aef588e2e6b75896d8719b6baf32c51a29da3a0d45c7313f875" + +[[files]] +file = "config/blockswap/known_states/quark/ancient_wood.json5" +hash = "7c77c7be8ed697fd18718047d93ede8b19c4da4230056311f6e555465ed15e71" + +[[files]] +file = "config/blockswap/known_states/quark/andesite_bricks.json5" +hash = "5a163fbc681bfbfd2f2dcd24a42975e954027ac64aa41dd8e885e2972dd7aae4" + +[[files]] +file = "config/blockswap/known_states/quark/andesite_bricks_slab.json5" +hash = "d34788aaa760d3debed7b110ffa84eb83b65ce888fa0a1244fdcf1871e035186" + +[[files]] +file = "config/blockswap/known_states/quark/andesite_bricks_stairs.json5" +hash = "e308f607a081e4464789a5bd22e38191c18b137d8db8881ef4cfc3c8e97cf8c7" + +[[files]] +file = "config/blockswap/known_states/quark/andesite_bricks_vertical_slab.json5" +hash = "17df303a014343d9c62a99596b64abf649261ce692421ae1bd79e06932cda4b1" + +[[files]] +file = "config/blockswap/known_states/quark/andesite_bricks_wall.json5" +hash = "fe119f387b40770df88cc584be817aa75ff6be1d38d9b052a6a19df50396cb69" + +[[files]] +file = "config/blockswap/known_states/quark/andesite_pillar.json5" +hash = "86d46a035a6950b11be7d30e3ecd5c86bddf1737ce22c5300ea86e8c399b924b" + +[[files]] +file = "config/blockswap/known_states/quark/andesite_vertical_slab.json5" +hash = "02d4468cd83de23ee6eaa81821a6b09b67994cfe61474640a018244a40bb3a62" + +[[files]] +file = "config/blockswap/known_states/quark/apple_crate.json5" +hash = "e5c7e0df5092d0a029669c4ed90afe637b52c4c94a2f1a955f5a54e2398732ab" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_bookshelf.json5" +hash = "2d834bf8cd13a9641752b0559450617e499a48e5e0cf9472370541c552a08273" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_button.json5" +hash = "4949bbbf98705468963c4f3f1e68f98fe8e9ea8ca2ef1f1eb430a381e1fb2c24" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_chest.json5" +hash = "df11fb30bbcf3df623c8f3b4d05132f76e1535df9676357cb996a0d47f26b9a2" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_door.json5" +hash = "63b4d201090b374e895684ff4aa9b5e008dd3ca5fcec8cc38b7372fc6200abbf" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_fence.json5" +hash = "95f074dd290ee6bfabb5495f3a1141bdab59bf2f5e7fe977650a7feec8a1111e" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_fence_gate.json5" +hash = "4349197d4074ddc8245d52e004257d2a0677bba95c42a85d93125ce3a8410ac8" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_hanging_sign.json5" +hash = "0834086b0733f0f0fc442694060f6c3dcfc0aa91cea0116b8b41e51d8b745572" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_hedge.json5" +hash = "26123c47372b1529ea2df6017b624de8eb1df37373eab46d257577d01045f54c" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_ladder.json5" +hash = "c7bc4ae164e6e222afe23d4d33e1618958b205afeeb33b3cce125c9fa2f117e2" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_leaf_carpet.json5" +hash = "e6aa2231b42a79f5c3d2b60c29878fefb779dc4c07c2ac0a8a30ea9c4e9a0414" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_log.json5" +hash = "68749b37b296886b9bb13ff77e655b8f82733fbdf6240ac5594f14f65634a69b" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_planks.json5" +hash = "f785c2f81b8b527578c8f90a228c1c5641e4de4b98e2c85ff31af2d09ab41c39" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_planks_slab.json5" +hash = "137de5c8d67c3c42c4dcf64c19d753d122a7e4a207d93e7f6c16e0758f384737" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_planks_stairs.json5" +hash = "21b91dce67bdd9eec328e80d6939de80900081a84b676143111683505c731756" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_planks_vertical_slab.json5" +hash = "95724f0f0c4af35c5c9d2e955374bf28c92bf49022b3171adca61be4a251bed0" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_post.json5" +hash = "7d1ee50d598b0a58a1a3242f18dc056e1249adb0992b38fef15f48f4f843ce5f" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_pressure_plate.json5" +hash = "1ed1aa338f8bfe814270e741f211716993787db74ab3ddf381b7661404634f95" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_sign.json5" +hash = "44d8914cf12517d14cd0d762af004d5a8329cdf3ed4c1b29cc47d639e68e2a72" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_trapdoor.json5" +hash = "d748886ed2377107881cc3de8e7c19721cfae3591ae598aee2c28508593837ae" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_trapped_chest.json5" +hash = "51ded51b336d2ce24ff706016bbde9bf71ec2de5544c62859a3d7953d1e74941" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_wall_hanging_sign.json5" +hash = "6f5c3bd0d021db6c631a69f344e94d92753938653cedc13854a7e022091ca231" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_wall_sign.json5" +hash = "d8d337fdbf2944df7b44615c51b02a42e19881ddcc76f218f712fcb5fb97910b" + +[[files]] +file = "config/blockswap/known_states/quark/azalea_wood.json5" +hash = "6efefc8cc30cee2a076f016a5f77f37efe657194ef0c0ddde81a867cdcdbf344" + +[[files]] +file = "config/blockswap/known_states/quark/bamboo_bookshelf.json5" +hash = "a3c2009090a11f477fdc1b62f3ed05a7c46be8cbad6af314585030ddf3aa2737" + +[[files]] +file = "config/blockswap/known_states/quark/bamboo_chest.json5" +hash = "61ed108e27a8574868854fc22aa1e2774cf7003ca09d4859ecbdbddf533d6c6b" + +[[files]] +file = "config/blockswap/known_states/quark/bamboo_ladder.json5" +hash = "77868111cbd2b2f5adcdb72ccd8ff506107575d74e8f5348cfae5280509015f3" + +[[files]] +file = "config/blockswap/known_states/quark/bamboo_mat.json5" +hash = "89631b9220fd239d9e82b628bcbabac6e0bd63a00373a9fb4e44d28fd589e464" + +[[files]] +file = "config/blockswap/known_states/quark/bamboo_mat_carpet.json5" +hash = "3e91fd834d64f6f422a0fae34d820ba795c5fba4563a44cfc90b264c70344de7" + +[[files]] +file = "config/blockswap/known_states/quark/bamboo_mosaic_vertical_slab.json5" +hash = "179cb9ad5aae88128d71f01cc597e2233d10def3d265067c72ad5030e82defe8" + +[[files]] +file = "config/blockswap/known_states/quark/bamboo_post.json5" +hash = "bd80b0058f5517c3519f003c5eb1e11bd3a7153d159f32f7deba47a8eea4cd58" + +[[files]] +file = "config/blockswap/known_states/quark/bamboo_trapped_chest.json5" +hash = "213368562d8d002d2a375e0bebc62c5a78440e7871c19457375c59b480947826" + +[[files]] +file = "config/blockswap/known_states/quark/bamboo_vertical_slab.json5" +hash = "9cb811e6b7df0e77a3e0e90922cf4b1cfc22e6cd93327286b0c2e8c2cfe69c5a" + +[[files]] +file = "config/blockswap/known_states/quark/beetroot_crate.json5" +hash = "2629e10ed8db165d61827af6e150226d4c82850dada86c982e6ba1c8e1c6ae24" + +[[files]] +file = "config/blockswap/known_states/quark/berry_sack.json5" +hash = "44590b99a1bddf8d363b6dc274cfe5e58e7b6fb52a57ca5db9631c64dce6b788" + +[[files]] +file = "config/blockswap/known_states/quark/birch_bookshelf.json5" +hash = "1ca8af83823819c3e6bb174c9405e105df3f901064794c85267822b6deb14f09" + +[[files]] +file = "config/blockswap/known_states/quark/birch_chest.json5" +hash = "639f40d87afd89616f176c95696ae4ef3856bd77f83588929559f49893c4399c" + +[[files]] +file = "config/blockswap/known_states/quark/birch_hedge.json5" +hash = "a83c168808af58960fb1dfb9dd0701538d0ad03e479958b775508bcc9f6f99e0" + +[[files]] +file = "config/blockswap/known_states/quark/birch_ladder.json5" +hash = "2d48e6501a98a106f2d936eac71956518a4f910ebcb5bae164123162ac2706db" + +[[files]] +file = "config/blockswap/known_states/quark/birch_leaf_carpet.json5" +hash = "f0b780029c86e9557a81ef7684f84f30199599c1c7dfe5179e3fc2973c5e365c" + +[[files]] +file = "config/blockswap/known_states/quark/birch_post.json5" +hash = "c75208d6ff3fa552286b67d08b9d60bd6e45042fc54f7f20d9d2ba20c136f5a5" + +[[files]] +file = "config/blockswap/known_states/quark/birch_trapped_chest.json5" +hash = "068bbf1d5d1f8c3c040ab76615bc8d0afb4f8d4db087eaa04f8ca6e82bcb8beb" + +[[files]] +file = "config/blockswap/known_states/quark/birch_vertical_slab.json5" +hash = "1f2da1fc0640527d6672b2587ab992739378e81331a5a221f1d5a211c8e33f97" + +[[files]] +file = "config/blockswap/known_states/quark/black_corundum.json5" +hash = "851a5eeeecdb43e0e507ea290a28ee7a94d568ae3f429002f334c5b097de3605" + +[[files]] +file = "config/blockswap/known_states/quark/black_corundum_cluster.json5" +hash = "2a032452541d53c0fa583afd8f0c5b8663c4aa5e2868abc6bde2239507ae41aa" + +[[files]] +file = "config/blockswap/known_states/quark/black_corundum_pane.json5" +hash = "eaa2ee1f1143f01ec1ce18f8fd1519a6e1b6eea42c55e71bacd2f009901d6125" + +[[files]] +file = "config/blockswap/known_states/quark/black_crystal_lamp.json5" +hash = "e66d7a2faa7efa253b8300804be29d580b4c717162bd68ddd09b44a70e59a1db" + +[[files]] +file = "config/blockswap/known_states/quark/black_framed_glass.json5" +hash = "67447542e5a1967f2fc65bd27385d980a076183309be4a5bad5ed6dae5eb3be0" + +[[files]] +file = "config/blockswap/known_states/quark/black_framed_glass_pane.json5" +hash = "fa5ba3414b9a2be4cc979c914a85dc47f2f1dade6ffa1ff24e9b414f1cd307c1" + +[[files]] +file = "config/blockswap/known_states/quark/black_shingles.json5" +hash = "f4c9326302161e2bbed42726cf6ea67cc757674c9dd2aa84db6fa4cb6255ae84" + +[[files]] +file = "config/blockswap/known_states/quark/black_shingles_slab.json5" +hash = "b3ea26aed731fab56cafcc3ec973eb68333b36e53ec6cbcc2a971977870a6282" + +[[files]] +file = "config/blockswap/known_states/quark/black_shingles_stairs.json5" +hash = "201f3c480110c5f305d7368713f3c3f6386f304216cdda12499e6eba208f9223" + +[[files]] +file = "config/blockswap/known_states/quark/black_shingles_vertical_slab.json5" +hash = "cbc86ce39e18c29252c35152758dd7718ac513ddc1e4f9bdedcc5b95ce09de23" + +[[files]] +file = "config/blockswap/known_states/quark/black_stool.json5" +hash = "4543e78acf686233a4bf7de6b3e9fbceea87b31b0e488eb6164b88e66c6cc1ea" + +[[files]] +file = "config/blockswap/known_states/quark/blackstone_bricks.json5" +hash = "3b92b2b3049cce353476785040f52e9ce8d1812445c8f62b4c32418fb48cfd52" + +[[files]] +file = "config/blockswap/known_states/quark/blackstone_bricks_slab.json5" +hash = "93131f9071fec42aa6cfb3fe9a764b99d7f01e2250c8daa59fe7ba54863b9999" + +[[files]] +file = "config/blockswap/known_states/quark/blackstone_bricks_stairs.json5" +hash = "ae1a22a29a67b587a66fc74388a209c634624c94faf956010b31242d200c86ed" + +[[files]] +file = "config/blockswap/known_states/quark/blackstone_bricks_vertical_slab.json5" +hash = "2476bfcdaf2258c8482b2a32a0a46c2a78788e50427be75ef1e25a48167ff127" + +[[files]] +file = "config/blockswap/known_states/quark/blackstone_bricks_wall.json5" +hash = "e831594a4069d08c6103cd9d9fe418c48293d291260ce0c5ee272e5354674235" + +[[files]] +file = "config/blockswap/known_states/quark/blackstone_furnace.json5" +hash = "45e3c82b4a9b7b52b1b92474c75f277b88844e7347c987cb08ccbc4207852825" + +[[files]] +file = "config/blockswap/known_states/quark/blackstone_vertical_slab.json5" +hash = "78a4edb1f435e5fc466a0ee88a7aabe0fb94bdb179f54a46c8efcd5ddec3877e" + +[[files]] +file = "config/blockswap/known_states/quark/blaze_lantern.json5" +hash = "499e8fb0afc4947dced1a221469ca296adab81197b95b9ebc8c0322595bf39a3" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_bookshelf.json5" +hash = "8ad3fc5da8410abade9ac8efce47a72ec874eb6beebde2d5be067649306cf55c" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_button.json5" +hash = "a022d0ee243611a88366b2e53df206e54844e5d1495910bf857d3227ddf7efb3" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_chest.json5" +hash = "eb30fae987d60fb2d0294d67dad1ded8373552652ba86765fbefbc20c2ece1b3" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_door.json5" +hash = "9bb9b895d7b35d86b8cc0bca769223a61f76e0f43b32a3b544e2e4a14bb44173" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_fence.json5" +hash = "f0ec430cb4c5ebb89655ff5163c0ba58d628f159b45db91cfd7635a6ce944acb" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_fence_gate.json5" +hash = "3f4b50dd678b6ff4ef4934e745a9af50887f984175b253d17ca48811948b00d9" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_hanging_sign.json5" +hash = "9db12eae469953310b087338374911a47c50e42fe913eb84627028615701c642" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_ladder.json5" +hash = "5c9e5df86066eac47a2e90b79fcc7936f32fb8b1a2cb1d21ebf2be1d1d95b37f" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_log.json5" +hash = "e41c07bd7b29c3d9eac82e7e6feca88aaee19c26e86964b7b232aff7e7932a38" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_planks.json5" +hash = "581436104f675ab38a3afaf9c760cb0d7e445c6db83c4a341ea63414e87b1f97" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_planks_slab.json5" +hash = "23424f1ac76f2bf7abba260e06e40e039101a1f33cf7a624448496918b25d30d" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_planks_stairs.json5" +hash = "10ede85941c7c32c6bfb968a9276d8f18aa3f78533a6cda35bca670fa00ea675" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_planks_vertical_slab.json5" +hash = "0abad0d9f05a471cb85a0442a4abd791ea370704b61af085e63cc067ceb4a416" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_post.json5" +hash = "cb67c3563a1d3b209b6bf2b2505bb01751f770ec5e5c56953c4c033d56623488" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_pressure_plate.json5" +hash = "bd697c9d353d825c6297bcba9cc1fe477ca2aaaa6377dacba99b6abc3ab7c997" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_sign.json5" +hash = "8f15caa38e2333a9906caf81d0425ccfc88d20a36dda7c25f82c3755c04cfcfa" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_trapdoor.json5" +hash = "60d03677269d71d1f9d4b40b71cf178aa0f98ea14bc2d0e26da42a7b3f978c34" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_trapped_chest.json5" +hash = "3a9204dd8ddee37a6cc41a1d054dbcc70e8316bc2aa43a78d9d7e5fc83e9ea88" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_wall_hanging_sign.json5" +hash = "9562c751fc33a2c9af17fc38cbb1a3aab80bed6c3f297355ed380c09ae959a82" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_wall_sign.json5" +hash = "b8968223bbfd7236bef44277684feaea3542e45cd19ffde667cc069fd76fb237" + +[[files]] +file = "config/blockswap/known_states/quark/blossom_wood.json5" +hash = "1c5b59f6a891fb88840149089bf36e2167527773056b45005eb83e34604694c4" + +[[files]] +file = "config/blockswap/known_states/quark/blue_blossom_hedge.json5" +hash = "a4da90cb1b91968cf13dd5e6ffb86e76bab7d22185937b80a21c03ad4587eccd" + +[[files]] +file = "config/blockswap/known_states/quark/blue_blossom_leaf_carpet.json5" +hash = "082940213ac659e35505ad6163ebd523d008aa84c55a31245ac080d03e10fb55" + +[[files]] +file = "config/blockswap/known_states/quark/blue_blossom_leaves.json5" +hash = "bf65b396329c8c4933d82ae2d4f6d7e4993e239b8ba77c3b6e48ebda3aa73df4" + +[[files]] +file = "config/blockswap/known_states/quark/blue_blossom_sapling.json5" +hash = "6812e66e15b07ad2f571d33267ecc11cc67ead3f5f14c07ae0f72e114e39e2f7" + +[[files]] +file = "config/blockswap/known_states/quark/blue_corundum.json5" +hash = "9477bd4f1743ce20fc1328745bb8f2a8af2732fd098278f4fa786c6e6ee1a29f" + +[[files]] +file = "config/blockswap/known_states/quark/blue_corundum_cluster.json5" +hash = "fa8fd3d3bef945bde1e548ab6cbbd0263c72e52685f17b1871e0a05582ab61d2" + +[[files]] +file = "config/blockswap/known_states/quark/blue_corundum_pane.json5" +hash = "3bd2006edc627dc8d9784f1c057a39d4a934e06b1083f3bea3e5978322c83196" + +[[files]] +file = "config/blockswap/known_states/quark/blue_crystal_lamp.json5" +hash = "0b52ffdd7b879f2d087e052bf3425d5569b5104a34f9d6659931a4f4c8fb8d02" + +[[files]] +file = "config/blockswap/known_states/quark/blue_framed_glass.json5" +hash = "3ef2f5d47333d06dfcb0230ae16beb56932817008bd360ad10eb1fc692fa44a3" + +[[files]] +file = "config/blockswap/known_states/quark/blue_framed_glass_pane.json5" +hash = "db24fe37ad9f9b0a34f5b545613c9d31780a7e1e19e1297c0221c520aee6c11c" + +[[files]] +file = "config/blockswap/known_states/quark/blue_nether_bricks.json5" +hash = "96eabe366f7fd306e3e5545d86e824c74d23c254c41df6188719679839748a37" + +[[files]] +file = "config/blockswap/known_states/quark/blue_nether_bricks_slab.json5" +hash = "3d0a4948b699393969373a0077fee439432ed1c1e561add8ffddcfad8e16878f" + +[[files]] +file = "config/blockswap/known_states/quark/blue_nether_bricks_stairs.json5" +hash = "f60ad62765e1f3a4d8ac7cc0a7eae97dbc2d7ab7e1efd4040a91877af1495baa" + +[[files]] +file = "config/blockswap/known_states/quark/blue_nether_bricks_vertical_slab.json5" +hash = "8ea2a5937d0ffda65a4f863cfb0ccfed5e44a633a824d547dc59a3d8e0437c52" + +[[files]] +file = "config/blockswap/known_states/quark/blue_nether_bricks_wall.json5" +hash = "798f3614a35b3b807e8335b9731fce476afa81bdff682c4f06c63a1d276fec1c" + +[[files]] +file = "config/blockswap/known_states/quark/blue_shingles.json5" +hash = "dda1d5ecbc30825c575a4ceb7cf404b575681087a6a7b01299d18ee5edc0a108" + +[[files]] +file = "config/blockswap/known_states/quark/blue_shingles_slab.json5" +hash = "fe48fbd08d92936beaca9770555acec98322ed9bfbe9ac1591c8bd3b36d1b4c3" + +[[files]] +file = "config/blockswap/known_states/quark/blue_shingles_stairs.json5" +hash = "10906044645b2f79f079f1ed3794719f45d5107c3ee1f2cc335c710773ea728d" + +[[files]] +file = "config/blockswap/known_states/quark/blue_shingles_vertical_slab.json5" +hash = "170a5c806e6cd44d6b9cde9460d64374b485428e5eb6afe6df2a0c6c9dc21d45" + +[[files]] +file = "config/blockswap/known_states/quark/blue_stool.json5" +hash = "d139b0379a35d063727462e343bed83595bdf7d2fc96fe9000852fc8dbf29921" + +[[files]] +file = "config/blockswap/known_states/quark/bonded_leather.json5" +hash = "24a34bc02fd1804028b2264aad019b397343a46d32c454b42799ca6b93fd9f58" + +[[files]] +file = "config/blockswap/known_states/quark/bonded_rabbit_hide.json5" +hash = "c9033610697361234b68b1386fa46b44e8a36fd6d9a01154e67fe1c2271faf68" + +[[files]] +file = "config/blockswap/known_states/quark/bonded_ravager_hide.json5" +hash = "61ced6560e4595a837a1d65283f20d372a7f347451ecd196e1a0f4d667cd5be7" + +[[files]] +file = "config/blockswap/known_states/quark/brick_vertical_slab.json5" +hash = "d8e0fdb7b97f9d7569457618454dbfee65a984f618c4381e4c58b20939e181df" + +[[files]] +file = "config/blockswap/known_states/quark/brown_framed_glass.json5" +hash = "ab20cea517160521b35c5283543e6fe57a6d06eadf795c3cbfebde1e9de938a2" + +[[files]] +file = "config/blockswap/known_states/quark/brown_framed_glass_pane.json5" +hash = "13422e53f92d0541a14a0659ff520f7e91bfe6b3203bedd3bc369cfab8065bd8" + +[[files]] +file = "config/blockswap/known_states/quark/brown_shingles.json5" +hash = "971a29316daddbbeaeab84fcc2eb8066845808c7007d8c67473e89bb6e85ad20" + +[[files]] +file = "config/blockswap/known_states/quark/brown_shingles_slab.json5" +hash = "9bf39a2540c095398e5f1f31c08cfc7c09a8c709eda84bbd8503bd4ca8facd5d" + +[[files]] +file = "config/blockswap/known_states/quark/brown_shingles_stairs.json5" +hash = "b8c02120adf249b8c463b6d290458efa050b891d6f75592939cf475ff6893bf9" + +[[files]] +file = "config/blockswap/known_states/quark/brown_shingles_vertical_slab.json5" +hash = "b763979972dcb742f019256e889acd0fa629ef3170055ec586a80050802cc6b9" + +[[files]] +file = "config/blockswap/known_states/quark/brown_stool.json5" +hash = "beb400abd8d479cd6cdf7f9e4e260d9a17ed1518f77f0c52d4a5ffae24557645" + +[[files]] +file = "config/blockswap/known_states/quark/cactus_block.json5" +hash = "182515ef443dae22034bb827f9138ed33787c42bf39a0a2bfdd0bb9683185cdb" + +[[files]] +file = "config/blockswap/known_states/quark/calcite_bricks.json5" +hash = "581fb5eaad4b5730b366ab08fbbb8317f58175f3ab61bcf1a03853c4313be923" + +[[files]] +file = "config/blockswap/known_states/quark/calcite_bricks_slab.json5" +hash = "396f9e4437f12c77891a229b74994734ce42a1a4c164f1393dc7e9920c8c3e5a" + +[[files]] +file = "config/blockswap/known_states/quark/calcite_bricks_stairs.json5" +hash = "1aa2d0e61156ac6517cc543cd4b6611e5cd9c85a4acb0096e82bc949282f1163" + +[[files]] +file = "config/blockswap/known_states/quark/calcite_bricks_vertical_slab.json5" +hash = "2355ea873d19aebbf4c3c22d28edfe8458d29c429f04e8cba5ceb6c630d8ca0d" + +[[files]] +file = "config/blockswap/known_states/quark/calcite_bricks_wall.json5" +hash = "8e68e63a9c48ef55c214aeed7fc15a0c20098a70dc96a4d176d669d0382bef49" + +[[files]] +file = "config/blockswap/known_states/quark/calcite_pillar.json5" +hash = "0ac012bfb56034b24e4c94968eafe6633b239d757bfe7f4d7decc96a33601b8d" + +[[files]] +file = "config/blockswap/known_states/quark/calcite_slab.json5" +hash = "300b06d11e56ad6e3c13fb680e934669b23a4402d298b5fb24b8f37edc5cf3c4" + +[[files]] +file = "config/blockswap/known_states/quark/calcite_stairs.json5" +hash = "9e96162eca56c79917b8cc7fc12ccc8964935d3b5d04d806d2413464091b5ff2" + +[[files]] +file = "config/blockswap/known_states/quark/calcite_vertical_slab.json5" +hash = "316bb439e60acd62142cdf71682fcb601f4eef4fe9d6824dbef4eab733c14611" + +[[files]] +file = "config/blockswap/known_states/quark/calcite_wall.json5" +hash = "0333a994ff71d3a1dc36388f872d666c9ccd370956e7f0d08d9c67d1123fb463" + +[[files]] +file = "config/blockswap/known_states/quark/carrot_crate.json5" +hash = "682082c792eb2836ce2ebaadc3c12b30568f9593ab3e494010783f34d4aa0881" + +[[files]] +file = "config/blockswap/known_states/quark/carved_mud_bricks.json5" +hash = "71637cd931338128524288c3c761c6497b985fcd3209ca2daf8a93a734366931" + +[[files]] +file = "config/blockswap/known_states/quark/charcoal_block.json5" +hash = "61b918c1a7d987d6cfbc1953497cddc8a7c4069e55b1557f00a4a402c3917b93" + +[[files]] +file = "config/blockswap/known_states/quark/cherry_bookshelf.json5" +hash = "edbf6a0a30b16f68246d3d6747754b079f60c51468eb88feffdff07e744a7942" + +[[files]] +file = "config/blockswap/known_states/quark/cherry_chest.json5" +hash = "4257d20f2e14dc1ec99f4f244b092d0278d5b0fa4b8eab322e35e7aa983f83b4" + +[[files]] +file = "config/blockswap/known_states/quark/cherry_hedge.json5" +hash = "bf9daf4174b1459e7ee03e567f127916bb15f936f5b1a4e02ebd9aafe4566283" + +[[files]] +file = "config/blockswap/known_states/quark/cherry_ladder.json5" +hash = "9a31b248cea9077fc4fa137009756ea2ceaf1d0146e5e88d3ed6b4e076d2db69" + +[[files]] +file = "config/blockswap/known_states/quark/cherry_leaf_carpet.json5" +hash = "0d9ff0bc35590a497454907cc5158b63ed8d14364e8b726d1471fb2a6651a61c" + +[[files]] +file = "config/blockswap/known_states/quark/cherry_post.json5" +hash = "4f36619e7b46934eadcc501074d0acaab6e84af1409068d2b45ce4566efd1ce6" + +[[files]] +file = "config/blockswap/known_states/quark/cherry_trapped_chest.json5" +hash = "2ea9e201f25cc9c4a30ece76cb88b888b71d38876ccf1f8fd50c9450f754053a" + +[[files]] +file = "config/blockswap/known_states/quark/cherry_vertical_slab.json5" +hash = "06be5b8c5ce8d9867cca39a4745cbc2161cc1c15115c97b08b48d5d2a7e01c86" + +[[files]] +file = "config/blockswap/known_states/quark/chiseled_andesite_bricks.json5" +hash = "5fc46f3e184f5d2935e2ca69c7f0ea6280ac703c468283df75db4da9e2eb51e0" + +[[files]] +file = "config/blockswap/known_states/quark/chiseled_calcite_bricks.json5" +hash = "387b69e29d1431364592bafe1f09722641c39a11c9bd1479993ce83194e176e8" + +[[files]] +file = "config/blockswap/known_states/quark/chiseled_diorite_bricks.json5" +hash = "2a202c44573c8ad9015f83b82f52ce189a11f1ba48e5fcaf2f9d80ffab010755" + +[[files]] +file = "config/blockswap/known_states/quark/chiseled_dripstone_bricks.json5" +hash = "8316ecbcdce0ab943e920d77252b4ba9a8e7ab91502db5d3b6d457f2160c48e7" + +[[files]] +file = "config/blockswap/known_states/quark/chiseled_granite_bricks.json5" +hash = "132a568e7471d74717f9e0c5c8b165f4dc6bbc75c2cf62709a24d1c781820d79" + +[[files]] +file = "config/blockswap/known_states/quark/chiseled_jasper_bricks.json5" +hash = "a2b1c6d431a0ca621c019648d7ed257534508e4e4ffedc5c91b4b3ea5da01e02" + +[[files]] +file = "config/blockswap/known_states/quark/chiseled_limestone_bricks.json5" +hash = "2e2755112a2092098530e889f14bea2e7eddde483bb77669cb6795d908da6727" + +[[files]] +file = "config/blockswap/known_states/quark/chiseled_myalite_bricks.json5" +hash = "688876685a69281fdba0aa43c02cc8799d571dfd94d426d829ce018f8c5ba834" + +[[files]] +file = "config/blockswap/known_states/quark/chiseled_shale_bricks.json5" +hash = "bd9dade198200ecec37313d99b5447fe092fc1a799f3e1c0415b67716d8d74e2" + +[[files]] +file = "config/blockswap/known_states/quark/chiseled_soul_sandstone.json5" +hash = "824af66a209452769d200174c0d350b1eb8fdef6eeb3a0bfafd5882976a2fe58" + +[[files]] +file = "config/blockswap/known_states/quark/chiseled_tuff_bricks.json5" +hash = "a7784242a2ec6e04b80f469182482ba57adc20738ffeb0d1d4aef9356100b337" + +[[files]] +file = "config/blockswap/known_states/quark/chorus_fruit_block.json5" +hash = "60734057d8f5c9a9d3993afd318529e3f969d9c80f837e19d827661190fec338" + +[[files]] +file = "config/blockswap/known_states/quark/chorus_twist.json5" +hash = "2f7b754e268a5e18409fde583bf6b6487700aeae1fb0d9372112bceb47a2ed11" + +[[files]] +file = "config/blockswap/known_states/quark/chorus_weeds.json5" +hash = "fd638c84650252200be92ac96ec681d1c5824df34188c71c0638a261f28800b5" + +[[files]] +file = "config/blockswap/known_states/quark/chute.json5" +hash = "748a65a3ba6af8713cc5d25de20bdf7f5b7d4270640d4abe088818a7bdea68de" + +[[files]] +file = "config/blockswap/known_states/quark/cloud.json5" +hash = "29c9bfb7a0e402338bb8f825b9677435f43f94fa3c5deb13026be0cbd33071fe" + +[[files]] +file = "config/blockswap/known_states/quark/cobbled_deepslate_vertical_slab.json5" +hash = "62c59822b093c360697fd3dc52d8f77cf53789dd616d5f7abc3d881ab1780c47" + +[[files]] +file = "config/blockswap/known_states/quark/cobblestone_bricks.json5" +hash = "f2373db0c34317feb76205c7b904995bb0918af0aa392fe1e3fc5ce4127c238a" + +[[files]] +file = "config/blockswap/known_states/quark/cobblestone_bricks_slab.json5" +hash = "4149dd6c516175f82d9cf3e533247b162358a030390ddf3a141295be95bbc686" + +[[files]] +file = "config/blockswap/known_states/quark/cobblestone_bricks_stairs.json5" +hash = "4f04aa6565d3d2a00d4e04eebab9be8f67fb1e17908b3aaea58921d2578afbe2" + +[[files]] +file = "config/blockswap/known_states/quark/cobblestone_bricks_vertical_slab.json5" +hash = "d832d1258d82d3914f2807678dba75a9d6a41988009ea468d89ae2db82e2b58f" + +[[files]] +file = "config/blockswap/known_states/quark/cobblestone_bricks_wall.json5" +hash = "fd9999b380032372efe1d5a37b8b8723caf7d0b5545f2c0c5aabf3c4c19a85af" + +[[files]] +file = "config/blockswap/known_states/quark/cobblestone_vertical_slab.json5" +hash = "cdaa44e397366c68db7a5855719c882e02bb42b67b3c38f065bdb4257b0ea182" + +[[files]] +file = "config/blockswap/known_states/quark/cocoa_beans_sack.json5" +hash = "9baf4905ab4029b8facf2412b1e02cb9875c39eefb4c7bbb6203aec06baa12e8" + +[[files]] +file = "config/blockswap/known_states/quark/crafter.json5" +hash = "03c4960b168428a4f6a2cd23e8c4d39a83987a1fef3dad0d2cdcae1ea30ce171" + +[[files]] +file = "config/blockswap/known_states/quark/crate.json5" +hash = "aea1e7538132c0719278efaf1a3c7096dc5698cf20df054abc47c5bb1dd3bfea" + +[[files]] +file = "config/blockswap/known_states/quark/crimson_bookshelf.json5" +hash = "c89676b08ba1cd02e92a0be9ba27855c77782c5d548b94197bd6aa7ae05b5d39" + +[[files]] +file = "config/blockswap/known_states/quark/crimson_chest.json5" +hash = "2015451e62b5c9f0ed0544735269c196945eb8bfbba16332571fb4125499ab15" + +[[files]] +file = "config/blockswap/known_states/quark/crimson_ladder.json5" +hash = "5004fdc92e41f768c240990bd5dbe8b07dcca040a1bbcf2fb7058089b7161685" + +[[files]] +file = "config/blockswap/known_states/quark/crimson_post.json5" +hash = "a2b1a76525870ec59542d41b18c45d3dbff4655f7ba59af87e11be856813e911" + +[[files]] +file = "config/blockswap/known_states/quark/crimson_trapped_chest.json5" +hash = "23de5be5b4517f6686b5df154c6d10778e81405b997b2fc1c432c2e7b7c40c2b" + +[[files]] +file = "config/blockswap/known_states/quark/crimson_vertical_slab.json5" +hash = "c3a205d4047f99a34872d71bd4f0b5c8506c3f706c95570d5efa664bc877326c" + +[[files]] +file = "config/blockswap/known_states/quark/cut_copper_vertical_slab.json5" +hash = "7306d4248696d711b9b8085c7e7cba198faa933a1549dc2ce53afe81908085a0" + +[[files]] +file = "config/blockswap/known_states/quark/cut_red_sandstone_vertical_slab.json5" +hash = "6f5569652ccd6b56358951f18b56e1b59f957615deadaf49e36a7294173ae020" + +[[files]] +file = "config/blockswap/known_states/quark/cut_sandstone_vertical_slab.json5" +hash = "6d17a4ffef35e2c954a1325ae0d6c9c50c5769cac5cf27c058f1966db1a25709" + +[[files]] +file = "config/blockswap/known_states/quark/cut_soul_sandstone.json5" +hash = "98e89a54661ba7c38dc88fb6baa15040d52a2d63f3de89fec9338bc6403e395a" + +[[files]] +file = "config/blockswap/known_states/quark/cut_soul_sandstone_slab.json5" +hash = "570b818a075d505752f7f32ba1f4b57abe1bfa821957c1ee14852ae3d0f0728e" + +[[files]] +file = "config/blockswap/known_states/quark/cut_soul_sandstone_vertical_slab.json5" +hash = "d813095fd657227566c1f60913e7b71bf71bc7abe5dfe617538c0b035145d643" + +[[files]] +file = "config/blockswap/known_states/quark/cut_vine.json5" +hash = "972ad000d458e21cc1f0cad5e29cb8815687afc57dc9908359b22d30eebb9bc9" + +[[files]] +file = "config/blockswap/known_states/quark/cyan_framed_glass.json5" +hash = "1a289c52fb9aaf8b02eefb265d2c8d4b44000eab320662e52a5c35f4efe14784" + +[[files]] +file = "config/blockswap/known_states/quark/cyan_framed_glass_pane.json5" +hash = "ce842fdae4d1f8999076149a5d83d1c1a8306d1999ef7b308cc393dcc3c158b3" + +[[files]] +file = "config/blockswap/known_states/quark/cyan_shingles.json5" +hash = "5f64c713d8cff96c05e1dbcbd787d7297d61c0922b744d71e8d9e312e8fd4a21" + +[[files]] +file = "config/blockswap/known_states/quark/cyan_shingles_slab.json5" +hash = "7ef576bed90e0a2b5374e5357c3e43062d024203393ea63c2142eba5125c5ec3" + +[[files]] +file = "config/blockswap/known_states/quark/cyan_shingles_stairs.json5" +hash = "8d4fcdf38d2383c98082b52f90ac37a6c06e8257e17369caf9af7cd5847f6639" + +[[files]] +file = "config/blockswap/known_states/quark/cyan_shingles_vertical_slab.json5" +hash = "29ce6d5dd73b1790033c7d7a973f3fadbe5deb959d30f9dd70ee855cae9c5eca" + +[[files]] +file = "config/blockswap/known_states/quark/cyan_stool.json5" +hash = "84a4ae8f74e0c8b39c8251131f4a0813671de690d6aaf2abc1759c9133a84488" + +[[files]] +file = "config/blockswap/known_states/quark/dark_oak_bookshelf.json5" +hash = "ce48a349fd3966c7314061a7ad123c488b93fe676cb0694e39f313a4cd18cdb2" + +[[files]] +file = "config/blockswap/known_states/quark/dark_oak_chest.json5" +hash = "25c4f5efd95d645bd76f4d14d28800a7be526db534518a95a3d6f2ab46b9c383" + +[[files]] +file = "config/blockswap/known_states/quark/dark_oak_hedge.json5" +hash = "627a6d7e3cd6ec2c0f1c72410edcff9a3e857b0d8bba2fb9342d360253388282" + +[[files]] +file = "config/blockswap/known_states/quark/dark_oak_ladder.json5" +hash = "09ffbeb01966da6bba3267596a470cd7c659f50c754286f64e637ccc8e3803bb" + +[[files]] +file = "config/blockswap/known_states/quark/dark_oak_leaf_carpet.json5" +hash = "fa1d8020f379b143d1283a67a4bd1acce9460b69eeb918a878f785339bd9b8cf" + +[[files]] +file = "config/blockswap/known_states/quark/dark_oak_post.json5" +hash = "f914a718ea1b40cd1e4592c05f7e3a408423bc55ea78f4db23535e8462c62785" + +[[files]] +file = "config/blockswap/known_states/quark/dark_oak_trapped_chest.json5" +hash = "4512981305525b1b3ed7a45e35ff348bd9a44c8a15d6c3dc97b89cab6079603d" + +[[files]] +file = "config/blockswap/known_states/quark/dark_oak_vertical_slab.json5" +hash = "9342cfa242361a01d74d9f5689386584695e946b133d14586ca7b6a4b6b4b684" + +[[files]] +file = "config/blockswap/known_states/quark/dark_prismarine_vertical_slab.json5" +hash = "8cafbee8e8fbba26a43dade69caedb87a78368207e576cfcd44eca73fbd55959" + +[[files]] +file = "config/blockswap/known_states/quark/deepslate_brick_vertical_slab.json5" +hash = "08de10aa0ecb7be9731ad912f9f582985103191489466c159a148f2d7b64b8aa" + +[[files]] +file = "config/blockswap/known_states/quark/deepslate_furnace.json5" +hash = "b2af0b0468a50601d22288aaf918cb547b83dd4edf40c4eea269a40a11086ea7" + +[[files]] +file = "config/blockswap/known_states/quark/deepslate_tile_vertical_slab.json5" +hash = "4c9b8bd2d59c640f512b2f7351b28749797366e6f636d1019db7661b1c998cd6" + +[[files]] +file = "config/blockswap/known_states/quark/diorite_bricks.json5" +hash = "e8a4dac0da0dfb5f936af6f1b77c1c25f93b50ae123567297d99caaebce8a99f" + +[[files]] +file = "config/blockswap/known_states/quark/diorite_bricks_slab.json5" +hash = "f42fbae2df6fcd766696e6ecc9ac833abe4338af2214cf66ef708cb9d21fc0f0" + +[[files]] +file = "config/blockswap/known_states/quark/diorite_bricks_stairs.json5" +hash = "6d39a91a0fe29985e28fface6c6e7614b6464bcd0fe171ad9f0f1fc77e8deb51" + +[[files]] +file = "config/blockswap/known_states/quark/diorite_bricks_vertical_slab.json5" +hash = "5a28d03b5cabd6c38461332770d376c67ffb97e9669821a2f2113cd4f431c7f7" + +[[files]] +file = "config/blockswap/known_states/quark/diorite_bricks_wall.json5" +hash = "9225819b8d6436c9cb491e40cf65723d9b647e50ff064c723365d43503a1b591" + +[[files]] +file = "config/blockswap/known_states/quark/diorite_pillar.json5" +hash = "7aa7a3b24d472f7f1cf645ad1460d63dae66bbcfb6251bad6321449c9d15e98e" + +[[files]] +file = "config/blockswap/known_states/quark/diorite_vertical_slab.json5" +hash = "91524d280aff73276c339b6f25b27386cde4009b18c6b9fb967ab018910ee8e3" + +[[files]] +file = "config/blockswap/known_states/quark/dirt_bricks.json5" +hash = "c23e20ac5b18f852308894dd03a20c57e3b35a97479816a31b1d24bcaeae56b5" + +[[files]] +file = "config/blockswap/known_states/quark/dirt_bricks_slab.json5" +hash = "61e857bd2e273ba9ed791028b9a408c17763ce6f89186aa1d9d587057feec827" + +[[files]] +file = "config/blockswap/known_states/quark/dirt_bricks_stairs.json5" +hash = "90ad5dcad8f00b1bb7caf74a04aac3b9e390febcede0c9ebf43416f458538345" + +[[files]] +file = "config/blockswap/known_states/quark/dirt_bricks_vertical_slab.json5" +hash = "15590f808fd707d3733e1ee01a4c2c881aaa312df3fcb87184facc7bcfb11bfc" + +[[files]] +file = "config/blockswap/known_states/quark/dirt_bricks_wall.json5" +hash = "600b43edc9f5c3e8a43dca40cc7e72dc69367fc36fad804ff7652eb66593c23b" + +[[files]] +file = "config/blockswap/known_states/quark/dirty_glass.json5" +hash = "71bb02d0d0b61813202067f046dccd8f992d5de37576b4df8f160b8289de59a0" + +[[files]] +file = "config/blockswap/known_states/quark/dirty_glass_pane.json5" +hash = "cd788b11dcb7300c181ffb8aacc10a05933ce08ad65737a88ab31e77532f1491" + +[[files]] +file = "config/blockswap/known_states/quark/dripstone_block_slab.json5" +hash = "d735f52c26496549a96f156aa782ce2c24c8213ce244467057c2f57b2326b4de" + +[[files]] +file = "config/blockswap/known_states/quark/dripstone_block_stairs.json5" +hash = "c369823f1ce5f1dde963294dd61e9a19d520d1442b2fae068b245beecf511c90" + +[[files]] +file = "config/blockswap/known_states/quark/dripstone_block_vertical_slab.json5" +hash = "23fc0ba12b0b2816986fdd141f5301ff08a13a388749371ab6f4d209c10659e9" + +[[files]] +file = "config/blockswap/known_states/quark/dripstone_block_wall.json5" +hash = "89f622658b7bfba20d79ad0055c3f238a7b797321be9b937fad9c36efe9ebefc" + +[[files]] +file = "config/blockswap/known_states/quark/dripstone_bricks.json5" +hash = "1ced9f7ce52ed091d6d05cf254d2267c5f9e61157ac8b355f3872e093dab0dff" + +[[files]] +file = "config/blockswap/known_states/quark/dripstone_bricks_slab.json5" +hash = "14e52ba8f0e0464934cbf068056ecb78864ddbbc560cb449816320936a5e3fa4" + +[[files]] +file = "config/blockswap/known_states/quark/dripstone_bricks_stairs.json5" +hash = "9f5bd78fe1aff2c754b91f4e1e1561e6829b4eb568c2a0b6f778ef401bea9935" + +[[files]] +file = "config/blockswap/known_states/quark/dripstone_bricks_vertical_slab.json5" +hash = "e61d277b45bb40f245c8ca862dd971854f8b6a285efd282854b27b463e424763" + +[[files]] +file = "config/blockswap/known_states/quark/dripstone_bricks_wall.json5" +hash = "96445c1404cbad88ba698117f4fb20902c16afe02fd12ec94a64943f3c26f250" + +[[files]] +file = "config/blockswap/known_states/quark/dripstone_pillar.json5" +hash = "b90cb147c4bc239ed0571889fd9b06e81c5e04858f53a531f570a1facd3178a5" + +[[files]] +file = "config/blockswap/known_states/quark/duskbound_block.json5" +hash = "41ac3489131ef67cca657a75e556e4cb8f44dc69f666c262c49c9c9fd78e3e58" + +[[files]] +file = "config/blockswap/known_states/quark/duskbound_block_slab.json5" +hash = "483e659eec58d232f2bc738c369e71c755010f923525b6074afd62628e9942e1" + +[[files]] +file = "config/blockswap/known_states/quark/duskbound_block_stairs.json5" +hash = "daa8e17da36054f556cc84922912f8d72e914301d331ef53325c5ac6d056470a" + +[[files]] +file = "config/blockswap/known_states/quark/duskbound_block_vertical_slab.json5" +hash = "41b1a3f05baf4d1f17151c8cc7ebb805e9a14103491b4b711466a40ac56c122b" + +[[files]] +file = "config/blockswap/known_states/quark/duskbound_lantern.json5" +hash = "258e7a07763691c5d5f1146d6e2ad6caea239863bd6d34b4bf9dfce207f1f9bf" + +[[files]] +file = "config/blockswap/known_states/quark/dusky_myalite.json5" +hash = "ccde6ba00ced1d7cbbc035b36aa3ea7212b6477ac1c4c33194b9507995870cf1" + +[[files]] +file = "config/blockswap/known_states/quark/encased_pipe.json5" +hash = "f1d888326466379899765873ac9528c79e6dc09e79eb9b97b47dd404b40e306e" + +[[files]] +file = "config/blockswap/known_states/quark/end_stone_brick_vertical_slab.json5" +hash = "516bd05f1a2db372d8fbfbcb97b6dd9c396335713bec7a82d1c4cf2502dd3699" + +[[files]] +file = "config/blockswap/known_states/quark/ender_watcher.json5" +hash = "fb747a4b252cc6f09918ed8173eb88ec064ee3e7e7beab60be2d46ed4a7175ef" + +[[files]] +file = "config/blockswap/known_states/quark/exposed_cut_copper_vertical_slab.json5" +hash = "ccbd350186ede19adbfebf897774a80784a84f20bf6d2b1755fdf3cdf74e4507" + +[[files]] +file = "config/blockswap/known_states/quark/feeding_trough.json5" +hash = "4e52c027f64d29d056229c8d4ea76dbc6844d879e691c33dbcd2fb0f3e8e8ea9" + +[[files]] +file = "config/blockswap/known_states/quark/flowering_azalea_hedge.json5" +hash = "92198e08d74c40ca4d29dd6b5e72f10e0988c6778a715965a2bb957342fa8fb8" + +[[files]] +file = "config/blockswap/known_states/quark/flowering_azalea_leaf_carpet.json5" +hash = "b96d17c991d3464501a4504404887e26294b84b12cb21d5399b512cf0b3026d3" + +[[files]] +file = "config/blockswap/known_states/quark/framed_glass.json5" +hash = "c2e910977268e6898193d5769260d4efe17d05c1ee949bb5614347670df96c6d" + +[[files]] +file = "config/blockswap/known_states/quark/framed_glass_pane.json5" +hash = "f69d8c82a8c92a98f382e1ced6240e420355caf1446b6c999908c1d328a5121a" + +[[files]] +file = "config/blockswap/known_states/quark/glow_lichen_growth.json5" +hash = "163cd41bcfec095483160ff21a2172055a8d951c177c82b38235fe6c44410b57" + +[[files]] +file = "config/blockswap/known_states/quark/glow_shroom.json5" +hash = "7f7e85a811bb11830a870c74f7d7d6c3b48742ebe1cd75ca403f84389a0d922c" + +[[files]] +file = "config/blockswap/known_states/quark/glow_shroom_block.json5" +hash = "34da72b8548d5c828714a9306883d88b9fad16828a7ab7a83418304bf89cf25a" + +[[files]] +file = "config/blockswap/known_states/quark/glow_shroom_ring.json5" +hash = "71cde4d8439f08afe293f75ae58ccf63157958f6165e874a11f2dacad98570e5" + +[[files]] +file = "config/blockswap/known_states/quark/glow_shroom_stem.json5" +hash = "e095aab265d63d51f4ef4e92bc01feaa36b33059d165887e7148c3b6e7582938" + +[[files]] +file = "config/blockswap/known_states/quark/glowberry_sack.json5" +hash = "3134fa51e91b1664c9e6d2146833b47b3ad26a6dc17960a8ebd874dc48b9de5e" + +[[files]] +file = "config/blockswap/known_states/quark/gold_bars.json5" +hash = "f353e8fa92e9f5843dc8954ad1e252ebec14dd873ce8041025ed0d2039729703" + +[[files]] +file = "config/blockswap/known_states/quark/gold_button.json5" +hash = "cfe4d24376915c24f81afc3ea64019dfda99dddd51c3460efe06b983b52b6431" + +[[files]] +file = "config/blockswap/known_states/quark/golden_apple_crate.json5" +hash = "20463ca22919e732bb3586c9f2784c9f0978389d44c47ca99518bd4806ad426d" + +[[files]] +file = "config/blockswap/known_states/quark/golden_carrot_crate.json5" +hash = "6b3713b9120bc68d39a3408b1e798b126ecae95a125fd7e3bb44433553e3876e" + +[[files]] +file = "config/blockswap/known_states/quark/granite_bricks.json5" +hash = "c49c6a3645c7a5fe84787d8c78e845b2384dd72bdc02ff63a00103181453593f" + +[[files]] +file = "config/blockswap/known_states/quark/granite_bricks_slab.json5" +hash = "a24d1fc657e82dd5acc34852ec6c0149b5eb6ef35e580307ca28de6d98f11a78" + +[[files]] +file = "config/blockswap/known_states/quark/granite_bricks_stairs.json5" +hash = "9af4349253c8b800164e74e7c78016c74f707c704efc9f01035118160084fe56" + +[[files]] +file = "config/blockswap/known_states/quark/granite_bricks_vertical_slab.json5" +hash = "263fba9b884ce9f4326830e5c7fe4f0b40215d8b49cd310aacca74b6ceb86b22" + +[[files]] +file = "config/blockswap/known_states/quark/granite_bricks_wall.json5" +hash = "990745c2317e26488f50bf97c3657bb5c2b27535b465c660d4488081310b7368" + +[[files]] +file = "config/blockswap/known_states/quark/granite_pillar.json5" +hash = "e0d62488976429966ce29c413bf5c9b61963453b8d7608d315006f1139196f7c" + +[[files]] +file = "config/blockswap/known_states/quark/granite_vertical_slab.json5" +hash = "75681878912de0577ff332f18985cdc4736439d9db89a26751879e9066658924" + +[[files]] +file = "config/blockswap/known_states/quark/grate.json5" +hash = "ba7e3e9cff42121b9015af27f70da571496b2c30a3de4db0f9aab0d1f302f3e4" + +[[files]] +file = "config/blockswap/known_states/quark/gravisand.json5" +hash = "2b743d16b48db9ebe6e23c3320ce3e1152ce30305b8210970c6a605158cfa88a" + +[[files]] +file = "config/blockswap/known_states/quark/gray_framed_glass.json5" +hash = "e2879e57c28724c5a421f619ef7895b17ccbbe78b181a6fc823b21f08a49e5ae" + +[[files]] +file = "config/blockswap/known_states/quark/gray_framed_glass_pane.json5" +hash = "c0ab46236b862697c72568c16e820fbade616fe34c12c9ab9c219c08d87d895a" + +[[files]] +file = "config/blockswap/known_states/quark/gray_shingles.json5" +hash = "73bd614e4d2e4cad1b1e0bbc74fece66c6b2a967e26d839e4248d861e6541d0a" + +[[files]] +file = "config/blockswap/known_states/quark/gray_shingles_slab.json5" +hash = "b6a9bbed1a6a5c17bbf54c9b073c93c52e03a3e11b83d16f446fc6f83135f6be" + +[[files]] +file = "config/blockswap/known_states/quark/gray_shingles_stairs.json5" +hash = "4f26c0158523617339b6d8df42bb9069405a35d9c1b45c326b7a58d2c438921c" + +[[files]] +file = "config/blockswap/known_states/quark/gray_shingles_vertical_slab.json5" +hash = "e6f6635d27ce16d84024a789a2602adacc960ffa950f78add0848091b329ab53" + +[[files]] +file = "config/blockswap/known_states/quark/gray_stool.json5" +hash = "4e76c6958543bbb8b7add42f6b41e8806310dc812b16a4fc17dabe1fe423f0df" + +[[files]] +file = "config/blockswap/known_states/quark/green_corundum.json5" +hash = "53a4140f01998c10b34e88d799b3bf4391f3b815c5aa7ba61c999c2ea6fb77e2" + +[[files]] +file = "config/blockswap/known_states/quark/green_corundum_cluster.json5" +hash = "3f22bf5f97510cff6c9d16c06fd83f6364ee15b0c55645f3870b92fee27d9953" + +[[files]] +file = "config/blockswap/known_states/quark/green_corundum_pane.json5" +hash = "c40a7608cedaf8b2453837c1f61d3f891d04feeb657a31ce9b2f7a7e3d7fec3a" + +[[files]] +file = "config/blockswap/known_states/quark/green_crystal_lamp.json5" +hash = "c4163b04a1ac7d92f44293d10d39be662cb15946e4a7feb095326d21010721f9" + +[[files]] +file = "config/blockswap/known_states/quark/green_framed_glass.json5" +hash = "823f5fe6514f49f442d0cf09c76fbf352185e94dc14e618fa5f9829b6860146a" + +[[files]] +file = "config/blockswap/known_states/quark/green_framed_glass_pane.json5" +hash = "d37f431352edbe1eb0dae9fc7a86a361f48ea9949ab5a1c163bff0e723fe5638" + +[[files]] +file = "config/blockswap/known_states/quark/green_shingles.json5" +hash = "f813d999819811def2a149373d6c4811a04f80aa8c3870c102a3824ff1849173" + +[[files]] +file = "config/blockswap/known_states/quark/green_shingles_slab.json5" +hash = "a4b38ee85b69afdcfffd34f9ccc571e451bc6d5e646b417673e2b1dd67def059" + +[[files]] +file = "config/blockswap/known_states/quark/green_shingles_stairs.json5" +hash = "d8a0db32652d4c64ec20f4525ac7bc7eca9eb61215f23978a5fcc2e11699b90f" + +[[files]] +file = "config/blockswap/known_states/quark/green_shingles_vertical_slab.json5" +hash = "f6d9d4832b4b586d1c3ad1ba40d1594efcc5d2638c76476a7debfd5cec4c9f2e" + +[[files]] +file = "config/blockswap/known_states/quark/green_stool.json5" +hash = "b581dfd313f4037f86e3df8ac36a8fc767fe45ef5ba39f1b23d0cbea1b711be9" + +[[files]] +file = "config/blockswap/known_states/quark/gunpowder_sack.json5" +hash = "b3a266db48721a5bfd6d4e539878f5a171802b86ce9fa82320d70ebd85ec63c9" + +[[files]] +file = "config/blockswap/known_states/quark/hollow_acacia_log.json5" +hash = "1dfdd2c015aca6156e442c70e0cf123af7401e52a57213267e97008ab7b5d06b" + +[[files]] +file = "config/blockswap/known_states/quark/hollow_ancient_log.json5" +hash = "63af019ee3e4954c9475df9a4fa26ab5878fe0b344c6fe910e1ce9a68d41facd" + +[[files]] +file = "config/blockswap/known_states/quark/hollow_azalea_log.json5" +hash = "e480501daa8985c33d414154cf515212f2293baffc8b5a6a4ba96844287033db" + +[[files]] +file = "config/blockswap/known_states/quark/hollow_birch_log.json5" +hash = "9b59ae5c5b556dd5953dbd918a6e7212afb19aa7a1f4d72baa6207b7f1adffd8" + +[[files]] +file = "config/blockswap/known_states/quark/hollow_blossom_log.json5" +hash = "d444a43e2dca1836216896c432c5806ba149aadf543afb9689742dbbd6d0133e" + +[[files]] +file = "config/blockswap/known_states/quark/hollow_cherry_log.json5" +hash = "415a29017888f59183d783f57657d0e01c3f8ac1f26dc37fc4304bb750eeb1e5" + +[[files]] +file = "config/blockswap/known_states/quark/hollow_crimson_stem.json5" +hash = "7e3b94ba8370b684aef6e5a46ec450415d4c20904afcc2e2e05b78c1ca479f6f" + +[[files]] +file = "config/blockswap/known_states/quark/hollow_dark_oak_log.json5" +hash = "64ddbbb007c1504e49755d88e0f01a7c79cfc5d22c40b5820a64d3d039940d0f" + +[[files]] +file = "config/blockswap/known_states/quark/hollow_jungle_log.json5" +hash = "579686fd1d144e30c5d567d496281482790a13c5bf9e6bdcd0d6731decb30e3c" + +[[files]] +file = "config/blockswap/known_states/quark/hollow_mangrove_log.json5" +hash = "c5d1084b14c8c6d5d603f7b2ed522323aca5403274af98e4c735aa67206ceb25" + +[[files]] +file = "config/blockswap/known_states/quark/hollow_oak_log.json5" +hash = "292bb84e56ec9b989ea3344ead23cd6b87ffafa2fe8bd88c73a1a18c77b8344e" + +[[files]] +file = "config/blockswap/known_states/quark/hollow_spruce_log.json5" +hash = "3c7e54de957cf1d6f4d3a1580924e3b216d00ea400cbe545ff2fceefd64b13e3" + +[[files]] +file = "config/blockswap/known_states/quark/hollow_warped_stem.json5" +hash = "67104d905f3434b083c940bcdbeb0e945caeb9fe4d964c263d1097f2911ba316" + +[[files]] +file = "config/blockswap/known_states/quark/indigo_corundum.json5" +hash = "c78142074c3090a4ca9491737ec4f34688db78bde0b58807897b965aa77f8506" + +[[files]] +file = "config/blockswap/known_states/quark/indigo_corundum_cluster.json5" +hash = "43f328064b114eeecf525f817c8b5bf19d4cc8dac52b38207708e3a2d04cdb39" + +[[files]] +file = "config/blockswap/known_states/quark/indigo_corundum_pane.json5" +hash = "fcb2b5ab71a09c4d8112143f3bfe9ef5e9ee3f58eb194bfcd861b975f80171d0" + +[[files]] +file = "config/blockswap/known_states/quark/indigo_crystal_lamp.json5" +hash = "c91e8ba198b6c3cb85e6d6f3fef8b94c4fe63037e8f23a4d2be81627cc707999" + +[[files]] +file = "config/blockswap/known_states/quark/iron_button.json5" +hash = "019b35ad19777c54fd006f06b82002cd1b090483ef36bb6aa0c0b8aed12422d1" + +[[files]] +file = "config/blockswap/known_states/quark/iron_ladder.json5" +hash = "c805563ca08b4cca3dc9bd15d4196e22e6ae3983d3261f23a54a8d398fe310d1" + +[[files]] +file = "config/blockswap/known_states/quark/iron_pillar.json5" +hash = "1043243a2893496f62fe97aa0ecb011c1d15ef311dfd18ef38c92a9cdc7e4d81" + +[[files]] +file = "config/blockswap/known_states/quark/iron_plate.json5" +hash = "dd8dc6d12722b8a741b516ae2df3c03d80e3af00396436b4d678c0e8109a0f4c" + +[[files]] +file = "config/blockswap/known_states/quark/iron_plate_slab.json5" +hash = "446d84cec7b58bc0e55980d64f32b52ccb32ccab496a5f361e48fd1f76d25586" + +[[files]] +file = "config/blockswap/known_states/quark/iron_plate_stairs.json5" +hash = "3d34900d32931f9c8e2d53777600beb11a10f08aee9f96a3fd5247a26d8bda8e" + +[[files]] +file = "config/blockswap/known_states/quark/iron_plate_vertical_slab.json5" +hash = "ecd2eba5140d1ac9e7b95ea5806a1fab74fc24f45c8b5950d0d71f2ba0dcffdd" + +[[files]] +file = "config/blockswap/known_states/quark/iron_rod.json5" +hash = "e707b21e5774252df7d4730ec3baaa437258179f3ae29d9cc6917470ac6a2978" + +[[files]] +file = "config/blockswap/known_states/quark/jasper.json5" +hash = "37ffbeeef8aeaca75e3efd9ee38f535d3b2eb58595d950fc61347a1be3b9ad0b" + +[[files]] +file = "config/blockswap/known_states/quark/jasper_bricks.json5" +hash = "837eca3163ff03a70beb943b01c436c5c2d8240f113ff504abd72f2528662c92" + +[[files]] +file = "config/blockswap/known_states/quark/jasper_bricks_slab.json5" +hash = "a989c8b7c189c929df4153bf9e1b64f1f9920737da0287b1d69ddf6ba3d63526" + +[[files]] +file = "config/blockswap/known_states/quark/jasper_bricks_stairs.json5" +hash = "51b4bccb93d9c41a83a3d891789ee59d1360c914380e08bb4e377f7534b0c099" + +[[files]] +file = "config/blockswap/known_states/quark/jasper_bricks_vertical_slab.json5" +hash = "1d511f83d37d7766786edd89bc5a456ad0dd06fce44eb664dd681320ef0c560c" + +[[files]] +file = "config/blockswap/known_states/quark/jasper_bricks_wall.json5" +hash = "edac585a380cf51617a29ecff2c159d5b1972a3be1d603c17a4f12dc6e832acc" + +[[files]] +file = "config/blockswap/known_states/quark/jasper_pillar.json5" +hash = "a832494772b33492ef398c1223727a54397510bfcd6879d96802c39ad3a65838" + +[[files]] +file = "config/blockswap/known_states/quark/jasper_slab.json5" +hash = "5c61f6f19d359770e4870807104a07ab167d29b78df6fd540b9eb24ef86e26d0" + +[[files]] +file = "config/blockswap/known_states/quark/jasper_stairs.json5" +hash = "717202a1e7a1edb7dfef15b139f18017794f07bb52e3cae38ab4d5765ac71051" + +[[files]] +file = "config/blockswap/known_states/quark/jasper_vertical_slab.json5" +hash = "f4cf1cba71c31bd8c61581d85564704cb6a5af009cc6ffac78bf4ff5427a623b" + +[[files]] +file = "config/blockswap/known_states/quark/jasper_wall.json5" +hash = "97eff48574f310f660a1a0ec5f85a267c2511825eda57f2a2d7afad60fe93208" + +[[files]] +file = "config/blockswap/known_states/quark/jungle_bookshelf.json5" +hash = "94a6c8051a759c785f809721e75ceef05a9b26a6eecaee540e54628910ba19b4" + +[[files]] +file = "config/blockswap/known_states/quark/jungle_chest.json5" +hash = "5b98a3b23b59620390625a6a0d07031dcd669e665da0e4b8bcdeff0a711743b7" + +[[files]] +file = "config/blockswap/known_states/quark/jungle_hedge.json5" +hash = "60615a884ccd118f8dfbd38dbcd84c7254e17c008efb9affb69d84362e42fcba" + +[[files]] +file = "config/blockswap/known_states/quark/jungle_ladder.json5" +hash = "8eb1fe0aa229c0dc4aef90ecf972a9f00f4787fde56a25907d00ee1a7a391cc4" + +[[files]] +file = "config/blockswap/known_states/quark/jungle_leaf_carpet.json5" +hash = "47c7112db5abc1dab974aa02c86f7ef5cb7142c1280710092a48e3a84408e38e" + +[[files]] +file = "config/blockswap/known_states/quark/jungle_post.json5" +hash = "d4a6574e3478b1d44c9f8814ce5ac30320798d7359f58863909530dad083efa9" + +[[files]] +file = "config/blockswap/known_states/quark/jungle_trapped_chest.json5" +hash = "a84319de456f8b3e49c1bc854bb61c18694e8fa2e41bbf1845d6de8c016fc60e" + +[[files]] +file = "config/blockswap/known_states/quark/jungle_vertical_slab.json5" +hash = "7c120b35f79daf9d65485b979fbb535013dce2326f649a5ad2194a895e8ed6a1" + +[[files]] +file = "config/blockswap/known_states/quark/lavender_blossom_hedge.json5" +hash = "021368b801949c12862f3ed5cb64eca76cb22107f0a4ae108853bd8a48df4c63" + +[[files]] +file = "config/blockswap/known_states/quark/lavender_blossom_leaf_carpet.json5" +hash = "09459b9511b25f092398f0d06c30f1b9cf7f35af03af2b5f6097b32f88b02326" + +[[files]] +file = "config/blockswap/known_states/quark/lavender_blossom_leaves.json5" +hash = "a183a8e03d568834fd411936199b130660d7c86e7c695f00368d9f183c041d34" + +[[files]] +file = "config/blockswap/known_states/quark/lavender_blossom_sapling.json5" +hash = "e20e689fd9874e39af32e09a9b54115b71b133b2b063c0dfc3e791902fe4de10" + +[[files]] +file = "config/blockswap/known_states/quark/light_blue_framed_glass.json5" +hash = "fcea7172596c4e2805eb867cbc1d1ac46caa47896efe4c90029fb416be77898f" + +[[files]] +file = "config/blockswap/known_states/quark/light_blue_framed_glass_pane.json5" +hash = "3257448cea71223973523c58cab821c337a8717b37e9c5ff879e2cd91c2589e7" + +[[files]] +file = "config/blockswap/known_states/quark/light_blue_shingles.json5" +hash = "a561d0f4daee4117cd67f8b60fabdbb7a9316ee98794a3efcc390d977ddb27c5" + +[[files]] +file = "config/blockswap/known_states/quark/light_blue_shingles_slab.json5" +hash = "cb90cf3a01c550af9471ba7ab6360a6a7228a9af45e059b3ea1c979259d42ebc" + +[[files]] +file = "config/blockswap/known_states/quark/light_blue_shingles_stairs.json5" +hash = "694d0b865ea614f244627d20b2f21a21e561a1d3faa1cde14a4893d77486f055" + +[[files]] +file = "config/blockswap/known_states/quark/light_blue_shingles_vertical_slab.json5" +hash = "fa8b75d1087a5c7bb0d757709a43254d704dc7242ffe62c63788e0d9897b75af" + +[[files]] +file = "config/blockswap/known_states/quark/light_blue_stool.json5" +hash = "f6d1f0d32ac684a5717b5a42e3bfe16e3df3e7bde7aa6ade934307765a5bd060" + +[[files]] +file = "config/blockswap/known_states/quark/light_gray_framed_glass.json5" +hash = "49cd0bd0131d4fe53a0d401bea6c8405c415b1c3a13743246af9a5b3f8466346" + +[[files]] +file = "config/blockswap/known_states/quark/light_gray_framed_glass_pane.json5" +hash = "5e798c346e7ffd5f16baee52752a18ad37a39223ab39dfbebc8633bb563d45a2" + +[[files]] +file = "config/blockswap/known_states/quark/light_gray_shingles.json5" +hash = "ea9565f6b4f2f4e6427b53dfcd8cbdb6d54c6aee3cad7990a8b58892db916b0a" + +[[files]] +file = "config/blockswap/known_states/quark/light_gray_shingles_slab.json5" +hash = "3d7f52957e60d034a5755c07ee5327d74925129ef8f82c2bacd594b815f36bbf" + +[[files]] +file = "config/blockswap/known_states/quark/light_gray_shingles_stairs.json5" +hash = "78fbf6eb458561ef77a47bc9c7087cb661c4d594c9c1bd98ffc80c06451296d0" + +[[files]] +file = "config/blockswap/known_states/quark/light_gray_shingles_vertical_slab.json5" +hash = "b0cfbd1370c67cf55599596a4ff493f418ca502791dc2927fd42bab1510b7512" + +[[files]] +file = "config/blockswap/known_states/quark/light_gray_stool.json5" +hash = "26d6149464306e3012accfe84301874605c3858847c2d9061ebc4af4b83da358" + +[[files]] +file = "config/blockswap/known_states/quark/lime_framed_glass.json5" +hash = "bc81e304dd9b9d062b6d079bddd7bbe9b4b6b3a7763e467595b15d6fc378725b" + +[[files]] +file = "config/blockswap/known_states/quark/lime_framed_glass_pane.json5" +hash = "37bd978ed514c0126fdcf459a73ceb72b03b0f44e56fede7da77269d89e35dc8" + +[[files]] +file = "config/blockswap/known_states/quark/lime_shingles.json5" +hash = "5499ceb3e07838f8e1e58f78f96d9368c91b5640faf21986cad0857ad69e3126" + +[[files]] +file = "config/blockswap/known_states/quark/lime_shingles_slab.json5" +hash = "0c792bfd2d60fa38ee1d65ba7e92774e940b5abf97f11c16a186c4ee80e63665" + +[[files]] +file = "config/blockswap/known_states/quark/lime_shingles_stairs.json5" +hash = "c7cce0f6598fbfee5dc3b6ab2b2c64c013c59cbb3311b0003e8ee5550cd4a517" + +[[files]] +file = "config/blockswap/known_states/quark/lime_shingles_vertical_slab.json5" +hash = "e35e60de20a242b33f034fa630f28c1253d486ad8684615ab7f32835211639c8" + +[[files]] +file = "config/blockswap/known_states/quark/lime_stool.json5" +hash = "c07f7fdc6d904c824b8ba5ac65b3d39d9ad40f85655ef991ea1e778eb8a69781" + +[[files]] +file = "config/blockswap/known_states/quark/limestone.json5" +hash = "2db30529d0c0cc3615ac9d50e2170b9a013e23fc2feff89b032e84be79e5b4ca" + +[[files]] +file = "config/blockswap/known_states/quark/limestone_bricks.json5" +hash = "a278d9465ca61aa20a006fcf101df70c2fc4309fadb9da43bf5b8d78788bdda0" + +[[files]] +file = "config/blockswap/known_states/quark/limestone_bricks_slab.json5" +hash = "2420c4d110602e6a107a95e8c7c2d8e95875912aef9e06ef0f67e829c1d43e1f" + +[[files]] +file = "config/blockswap/known_states/quark/limestone_bricks_stairs.json5" +hash = "c360fd639c239d4803ef10977a030450d53c67762bce9038e6086790b210e60c" + +[[files]] +file = "config/blockswap/known_states/quark/limestone_bricks_vertical_slab.json5" +hash = "f05bdfa49d81e11d38f491cbdac66d8496584bc399b7b465e5a7e9096d5d6520" + +[[files]] +file = "config/blockswap/known_states/quark/limestone_bricks_wall.json5" +hash = "aa9d4791467ad15c3ad8961c66e166c1c47cdbe1b45cd4f6abdd45b4d73397e0" + +[[files]] +file = "config/blockswap/known_states/quark/limestone_pillar.json5" +hash = "31a8eaedcf1172e88aaeeae4237104e3308591b0ab7f16ec0aaf60b1b4da0752" + +[[files]] +file = "config/blockswap/known_states/quark/limestone_slab.json5" +hash = "e4237da774c42eeafd7ca547d32cb69bb01302c11f880ef6aebbe2402180e65b" + +[[files]] +file = "config/blockswap/known_states/quark/limestone_stairs.json5" +hash = "fae767846738bbf3289d7bdd2eff7e71d931dc9335b6671edbd261158e54cb98" + +[[files]] +file = "config/blockswap/known_states/quark/limestone_vertical_slab.json5" +hash = "e061a6dc0a4017dfa43331affa37f70b8ca3badc832df21233951302f4d6691c" + +[[files]] +file = "config/blockswap/known_states/quark/limestone_wall.json5" +hash = "e75461b1bd3f68fa9048efcc712bd629b55daa8eb2aff6624df6c6d75de90ab2" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_acacia_chest.json5" +hash = "2a01018b8a1fb17ee28ef6f04195fa15b99cb9684ef42e98ec5652cefa77133a" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_acacia_trapped_chest.json5" +hash = "027163d9e206d299e992d24c62cb4eb9b7a3ee6407b437ea7be80708bd68170d" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_ancient_chest.json5" +hash = "e0f1faaea583d349581d8cfe131a61e9bd7788d266538369e91486b041f99002" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_ancient_trapped_chest.json5" +hash = "11fce657888ac14c94961e3923b85a3c75cea0c834f04ad8fdf464f64922fe49" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_azalea_chest.json5" +hash = "cb30cf82ee8572248386728c872cd2f52f6a60ec0572f7c20d21cb6a49eb10fc" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_azalea_trapped_chest.json5" +hash = "1c21ee0b284cdb4d8649ffe23ab4eb2f587b76d049bfe747844a02e593b04d0c" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_bamboo_chest.json5" +hash = "712fa9a481f17a82a84318cff5eee8aebc280c70da2f746553d983732cecf324" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_bamboo_trapped_chest.json5" +hash = "5e3b8fe996543933314877d5421deb7c897ada08b59c3cadcd3d094d3603f194" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_birch_chest.json5" +hash = "66946c7b312b3ac01e43ba3e816e0b127002558e1cd6aae581f0e0b81be89187" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_birch_trapped_chest.json5" +hash = "b3cde9b8dbff76f9e37a066f4b112e2650d8e8a8f4d2144ff2af4d40cec421d8" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_blossom_chest.json5" +hash = "50e99ffe85423020f5eb1b3f143e141a3c6816a03c71f78bc5e4a633e1d3af38" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_blossom_trapped_chest.json5" +hash = "cc11461a48bf7ff37336a9c831a963a3a0ef011da883bbfeef09b6a7b3ce0c8e" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_cherry_chest.json5" +hash = "72e806e0daeac44c289773e3a219f22e7caaa6244340f9eb20bda4aa95b0fe65" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_cherry_trapped_chest.json5" +hash = "9e0d712edda18b088e4d8170e7c6d2785ebbbcb3af895f6281cdb29beed40bc8" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_crimson_chest.json5" +hash = "97999fb161d6a2fd99bc4595bbbf0758f45e5b0350c9ee7bcdb700d8e6b8f5e5" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_crimson_trapped_chest.json5" +hash = "79daa4dad96608a42b70c620df4f06327afeac20cf590797440ec059711b1eca" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_dark_oak_chest.json5" +hash = "7d99dcf54407b2ae9fa7b3aa5463712746bf3f078bdbd9da54bdec6bc968b3eb" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_dark_oak_trapped_chest.json5" +hash = "308dc353f198ea8caf79a9347f07cfefe67601e5c6fc61932589d29ad7b9f7ee" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_jungle_chest.json5" +hash = "6572aeb75c5f62be18b2c5b829f7270ba7690a28709a3fd0bb382ce39fb964b4" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_jungle_trapped_chest.json5" +hash = "e7fe4645c373ef2010eab47ab55bef6660debb85fef2f4c08afac825e094fb61" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_mangrove_chest.json5" +hash = "b86a59c30728797d082adf2be41045a258133b324895d9d2f2bb10189b7344a0" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_mangrove_trapped_chest.json5" +hash = "4e184561416d34931fa0c1af5b9065e989bc58a3bef870c9660017fb7e6b1a33" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_nether_brick_chest.json5" +hash = "c5214199489f5392f9c91c04e775a2c17ad3546d26149a3d89368158e263f8b0" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_nether_brick_trapped_chest.json5" +hash = "e8b075a163e7c9d1004d3e2df2e07eb8286ccd406919b6ff1cdeb195b68fe57e" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_oak_chest.json5" +hash = "a78ec3e823a98b9469630fb593502329923ca3d7d413f208d676b9cc1ee3cdcd" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_oak_trapped_chest.json5" +hash = "5a0a2bd48707a184720e6077462572a71ea2444c91d4d1d92580aa023d230523" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_prismarine_chest.json5" +hash = "9421d273ac3f48f62c72726f0cb610073f34797c808be6a1eeba93f60f431856" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_prismarine_trapped_chest.json5" +hash = "e4f5e31fb3f44b1ef22776c93d3309e200135a0c83c12fd1a2f1bc8ed5f05171" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_purpur_chest.json5" +hash = "cced9e64295cb55dda8f672ad5db78813d8186446a749a50918f30c9bbc82e0f" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_purpur_trapped_chest.json5" +hash = "70bc15c27747cd4960c3da53d040b487ea066eb13b56b61ce1bce443ee8a0eaf" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_spruce_chest.json5" +hash = "2ebcf0ebc07b28bd81dd0efacd073499cfa242f3d511485db2d1a25a6aea632a" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_spruce_trapped_chest.json5" +hash = "129c6c5d8f71bab4453f7990b20d19daa7ca2cf34b45357f116770e4c6ac73b8" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_warped_chest.json5" +hash = "68b4618c77027ddd817e4f5801c53716a5286b7f478a63b43ad9ff5b3aaf6a25" + +[[files]] +file = "config/blockswap/known_states/quark/lootr_warped_trapped_chest.json5" +hash = "118537f963f04fc539606e572a702c0439f4dd1bc205aed2ddf0ea53efa68a84" + +[[files]] +file = "config/blockswap/known_states/quark/magenta_framed_glass.json5" +hash = "8d88b5f793a6477b5bc97bdcc35482e745d45c9998cf8760031a0f91bd7b01b4" + +[[files]] +file = "config/blockswap/known_states/quark/magenta_framed_glass_pane.json5" +hash = "80070971036dfa4a144d084b1a6ea87567c64a661a56ad6650fece07538e6664" + +[[files]] +file = "config/blockswap/known_states/quark/magenta_shingles.json5" +hash = "6bc4d7f7581e2d8c2c3ae94815913c398d6fc79c6cf35fbe51f006baca1776d8" + +[[files]] +file = "config/blockswap/known_states/quark/magenta_shingles_slab.json5" +hash = "ade8b328f0e7c99f2fa25560d936028fa5d0e4aef2b6dc67eae0046f5c8b0ce1" + +[[files]] +file = "config/blockswap/known_states/quark/magenta_shingles_stairs.json5" +hash = "004da94199278704e15c1b6dd9a072452d78eb8d928060e72102408f9049949c" + +[[files]] +file = "config/blockswap/known_states/quark/magenta_shingles_vertical_slab.json5" +hash = "36b250d5f0e147faf55bc5dce0fafe62258f57034c9bfebb12aec5f041ef3c59" + +[[files]] +file = "config/blockswap/known_states/quark/magenta_stool.json5" +hash = "464d7e3cb8b04077c259ce242dbb0a94f1e758d4536fa050248eb1466e16d4a0" + +[[files]] +file = "config/blockswap/known_states/quark/magnet.json5" +hash = "f612a994339a8279343e803f623ea9fecadfe8d8f13775b11f93f42ee20ea981" + +[[files]] +file = "config/blockswap/known_states/quark/magnetized_block.json5" +hash = "6ecb585d2316f56bb6154b6a884ba82197487ecf20131743d5d9f86617f468ff" + +[[files]] +file = "config/blockswap/known_states/quark/mangrove_bookshelf.json5" +hash = "80feaf3a38afbf431cb8216d5398cb9281554c798be9cf82e441773960e3214e" + +[[files]] +file = "config/blockswap/known_states/quark/mangrove_chest.json5" +hash = "b5b28919375662c1e75503a085c34497bdb8b17449b7cd043e7e7a6e7511ec7c" + +[[files]] +file = "config/blockswap/known_states/quark/mangrove_hedge.json5" +hash = "038c6a50bf7aa6b1ef51e963e890ca409b56081c34d486859d6da6cb052a1f3e" + +[[files]] +file = "config/blockswap/known_states/quark/mangrove_ladder.json5" +hash = "f7ad8fabffd6613af8301e3945245a12a3011ff28139d72d8caf8efafa955f7f" + +[[files]] +file = "config/blockswap/known_states/quark/mangrove_leaf_carpet.json5" +hash = "3cb757f61ca8b94eb345541729ccdfd181ed933fc88f235759d8e40a00abcfc3" + +[[files]] +file = "config/blockswap/known_states/quark/mangrove_post.json5" +hash = "8781e051649aaaf2cbbc1da41d54cee4829e63908fd705e280d490e58e9e3370" + +[[files]] +file = "config/blockswap/known_states/quark/mangrove_trapped_chest.json5" +hash = "5abd06e877709cf544d3d374b3e658320f8d3984eb2af7559b9c46e7c8adec55" + +[[files]] +file = "config/blockswap/known_states/quark/mangrove_vertical_slab.json5" +hash = "0f0e30d261f58f05fc40e2ea11d63a5ef467ac8a836d644652bd290e97059d33" + +[[files]] +file = "config/blockswap/known_states/quark/matrix_enchanter.json5" +hash = "791987795eca1969a61f6744274c0d207af28cab16da10bd62744d543638cf6e" + +[[files]] +file = "config/blockswap/known_states/quark/midori_block.json5" +hash = "0b1a50cff86ca1a22517dabc9d383e490ff908b4ab3fa2e6e3dc5222beea01fd" + +[[files]] +file = "config/blockswap/known_states/quark/midori_block_slab.json5" +hash = "22528bbe9e03bd51d777cd6efb7413bc4fc2e5dc218ee0a9c28c10b138c5fd4d" + +[[files]] +file = "config/blockswap/known_states/quark/midori_block_stairs.json5" +hash = "60622e084410626a206686e81eead1c0852ef1888121c2275009107c5596d078" + +[[files]] +file = "config/blockswap/known_states/quark/midori_block_vertical_slab.json5" +hash = "2c5194322b067a12a183313754148b7bc1830171d41e57de03996be56eef32c5" + +[[files]] +file = "config/blockswap/known_states/quark/midori_pillar.json5" +hash = "ae7b36d7ff771b7898b7802f01334ba4b948c6a53c868900da45bc2dd32ed855" + +[[files]] +file = "config/blockswap/known_states/quark/monster_box.json5" +hash = "6772d8d122127287352c3deb824d9b41ca3027d8723f1c56a2c89c25b862f06c" + +[[files]] +file = "config/blockswap/known_states/quark/mossy_cobblestone_bricks.json5" +hash = "972a4323b84cc6d1469fcc8d0941d3a72ea407d89e8ea4e743d9ab7e0bb95fe8" + +[[files]] +file = "config/blockswap/known_states/quark/mossy_cobblestone_bricks_slab.json5" +hash = "f29c28ae4ef970ff3a7ce8347b0c5f88a5e7c3e5fdb6cc67df388d8497ee568d" + +[[files]] +file = "config/blockswap/known_states/quark/mossy_cobblestone_bricks_stairs.json5" +hash = "5a2978fe8b4fa4a5f848b2309c7729a6107fdb435201c83d3a14062bd70543d4" + +[[files]] +file = "config/blockswap/known_states/quark/mossy_cobblestone_bricks_vertical_slab.json5" +hash = "2eb4855f0976d9772ea80fc2e6488e40c4493be8120fbe758b9188283a3dd799" + +[[files]] +file = "config/blockswap/known_states/quark/mossy_cobblestone_bricks_wall.json5" +hash = "49e2cb59b957ee2994ea5e00ed195d523f783a4ed013028f8ee1ec61c6ce2ffc" + +[[files]] +file = "config/blockswap/known_states/quark/mossy_cobblestone_vertical_slab.json5" +hash = "0142f1abdb17b143b995d7bdfa258e60bf180aee88064429c7066dd5508156f9" + +[[files]] +file = "config/blockswap/known_states/quark/mossy_stone_brick_vertical_slab.json5" +hash = "bce4e20350baa57a1322b7e6fb39a4fe662968ea51c8dce9f3032639030ffa1e" + +[[files]] +file = "config/blockswap/known_states/quark/mud_brick_lattice.json5" +hash = "5695bd76b029f06f33a47e55d82f817f9e2cc67e5469427eb929183ae126365d" + +[[files]] +file = "config/blockswap/known_states/quark/mud_brick_vertical_slab.json5" +hash = "81146927487bef30f57da71a253145cbfa0b6a43bc74fd75dd82d5660be3bd16" + +[[files]] +file = "config/blockswap/known_states/quark/mud_pillar.json5" +hash = "d9081188005de4d7db22b0c2e8c3bf126e8ec5ab30da525faba206abb91e762d" + +[[files]] +file = "config/blockswap/known_states/quark/myalite.json5" +hash = "87174c02c7e9c64d6ac75f99db1c260d07cd43115ec4bc5d63016eeb9d69ed38" + +[[files]] +file = "config/blockswap/known_states/quark/myalite_bricks.json5" +hash = "2ef5ff7f731a8d6fe2c3f248cc7ae3b015345c16e1358f39cf3b27831e026aee" + +[[files]] +file = "config/blockswap/known_states/quark/myalite_bricks_slab.json5" +hash = "78cf4c04d137e1af8f543566eec78395f3acd33c1bb12048e9c808ecf07d951e" + +[[files]] +file = "config/blockswap/known_states/quark/myalite_bricks_stairs.json5" +hash = "6cde2aa73982f256074da760030dd33ebb8fd3eeecc84b99307a70b934961643" + +[[files]] +file = "config/blockswap/known_states/quark/myalite_bricks_vertical_slab.json5" +hash = "8fa82f1bb50d77f4b9d90be3f2c718f8cfcbfe50b7dcf8776961354b5142b87f" + +[[files]] +file = "config/blockswap/known_states/quark/myalite_bricks_wall.json5" +hash = "6e252ebc0084be28f451efffe70642462955686453d17650a02f880397a21243" + +[[files]] +file = "config/blockswap/known_states/quark/myalite_crystal.json5" +hash = "fbb42acdbbfa05a38c978588481cd8c98103f48141dfbdd78b04b52c164f46e4" + +[[files]] +file = "config/blockswap/known_states/quark/myalite_pillar.json5" +hash = "1e93dd067e912dfae36a4aaa22f375444a35958625577b55fdfccd6115dfef8d" + +[[files]] +file = "config/blockswap/known_states/quark/myalite_slab.json5" +hash = "efb2b479bb9486193896fbc6d00df6b933d372535291bf783bf0e92a5f03f35e" + +[[files]] +file = "config/blockswap/known_states/quark/myalite_stairs.json5" +hash = "02c819ca075127d24b255a44ede40cec701399462b86fc358c1a9a3dd95e4771" + +[[files]] +file = "config/blockswap/known_states/quark/myalite_vertical_slab.json5" +hash = "8941311466d5bdd0e80242aad998d62c107eef917d98e5b3ea9b5a606661e8eb" + +[[files]] +file = "config/blockswap/known_states/quark/myalite_wall.json5" +hash = "1404d3e7dba20bf37ea422fa553740e8d5c1e9549f6862db1673feac5733aec2" + +[[files]] +file = "config/blockswap/known_states/quark/nether_brick_chest.json5" +hash = "65cf52258fae039dd1da32e3755431492a81ec0e6b98b97ecca2da7a65a3dfd0" + +[[files]] +file = "config/blockswap/known_states/quark/nether_brick_fence_gate.json5" +hash = "07ae4993fc8c3727ba44fd14b2298c8c0a0367d9b399693db7ceaa8b6b6cccce" + +[[files]] +file = "config/blockswap/known_states/quark/nether_brick_trapped_chest.json5" +hash = "d5acd347b4ff6517e9074450629f1a5cb6522eb431d1c238e419625a9230abcc" + +[[files]] +file = "config/blockswap/known_states/quark/nether_brick_vertical_slab.json5" +hash = "a4a59c559a88af7b2c8eba4daa2820d5e6e9e940e49b4ac94bf32663f3f997ad" + +[[files]] +file = "config/blockswap/known_states/quark/nether_wart_sack.json5" +hash = "2c5cd86b85dfba1d96394c5cecf1070fd3fec9212b2b7879904992baac38aa5e" + +[[files]] +file = "config/blockswap/known_states/quark/netherrack_bricks.json5" +hash = "82df2985b32bf6b49f7eeba32c84e1e1f225b6f7e59c135fcce83d86f0f54ff3" + +[[files]] +file = "config/blockswap/known_states/quark/netherrack_bricks_slab.json5" +hash = "68882d52b186c26444070af77d8505475ef3cd1db7d2119cbb5c9e66e405ae6a" + +[[files]] +file = "config/blockswap/known_states/quark/netherrack_bricks_stairs.json5" +hash = "7d91fe0d80c473fb0ac6b222a81c6c3c7978569497962ff85c051bf076ec71b9" + +[[files]] +file = "config/blockswap/known_states/quark/netherrack_bricks_vertical_slab.json5" +hash = "915961f7fd5f5956828bc73425da2cfad97605ab5997925a8179f5d0fac128e9" + +[[files]] +file = "config/blockswap/known_states/quark/netherrack_bricks_wall.json5" +hash = "0c6835f0d59d6c2d51a4a66bd881ece84f2350e6008a3ddcbc94cdd1a2349a29" + +[[files]] +file = "config/blockswap/known_states/quark/oak_chest.json5" +hash = "01b6276ff466e8871240f29ec5db38a4dd21576f17ac4d7d1a59060c83388a94" + +[[files]] +file = "config/blockswap/known_states/quark/oak_hedge.json5" +hash = "6f1af4c8e5c40d541e398665b7773c73fd1ef6b9dcedad0605ff03954932ff06" + +[[files]] +file = "config/blockswap/known_states/quark/oak_leaf_carpet.json5" +hash = "5734c879e1311d35832165b54b7429ce2012ae1e1a503c705522edf3d7d21c2d" + +[[files]] +file = "config/blockswap/known_states/quark/oak_post.json5" +hash = "17f92c52c7d5f28e23f3b85f56b482db1021c0534906cfd571dbba0a90b7eedd" + +[[files]] +file = "config/blockswap/known_states/quark/oak_trapped_chest.json5" +hash = "c68a3349a3d9e1cceab30c6b977e0e419ef923bf48c22e4a8a35e5e2b60858e8" + +[[files]] +file = "config/blockswap/known_states/quark/oak_vertical_slab.json5" +hash = "6ff6c70ce69a86bcd6072604f10524e1fda2c8fa197cf178b1134dc1a637d300" + +[[files]] +file = "config/blockswap/known_states/quark/obsidian_pressure_plate.json5" +hash = "f5705be614856ba8c83cfd39cda616e0e7ff153c27fc05b615d2a27df3ba397e" + +[[files]] +file = "config/blockswap/known_states/quark/orange_blossom_hedge.json5" +hash = "2f6964805778586777f113cba2cb228a7fa4e95cb3e73cf72f2559d1627d6e79" + +[[files]] +file = "config/blockswap/known_states/quark/orange_blossom_leaf_carpet.json5" +hash = "98f49d46429c1ca0bab4490f4a7e41a56b5dbd198834ad27b6e9bb81404fdc17" + +[[files]] +file = "config/blockswap/known_states/quark/orange_blossom_leaves.json5" +hash = "afd67cfb70a809adb42e1d16011c0fdfe19e16e0f58b1d5e733ba4cdb0d8f060" + +[[files]] +file = "config/blockswap/known_states/quark/orange_blossom_sapling.json5" +hash = "c06d1d5a8aeb81ee97479b9bbe1711bfe7ca9c29a7275875456ad1004e5124c8" + +[[files]] +file = "config/blockswap/known_states/quark/orange_corundum.json5" +hash = "760ec2d645d0015352542fa45b8cd6c0e1d32ce1831670c23110ed8c9b0d13ba" + +[[files]] +file = "config/blockswap/known_states/quark/orange_corundum_cluster.json5" +hash = "e1a92cb9d0eb83001f1f0ba885e162d3722991bd706d5cd9b614e28af3e6985c" + +[[files]] +file = "config/blockswap/known_states/quark/orange_corundum_pane.json5" +hash = "3b219758c00a3d4eae45898ec6311a63e5e6e29b5bd8228df07ae2542fb7c909" + +[[files]] +file = "config/blockswap/known_states/quark/orange_crystal_lamp.json5" +hash = "154746251eea6abd9472e42a22c9f9aaa0b626a683679001f07256681b7eb9f3" + +[[files]] +file = "config/blockswap/known_states/quark/orange_framed_glass.json5" +hash = "fdd9b4997948354f0b91fcadcb33e2648a0a2316ddb3e2513442faf505b679fd" + +[[files]] +file = "config/blockswap/known_states/quark/orange_framed_glass_pane.json5" +hash = "ec45ca31f34ed782419d65d9e7918e2ef9304986d888f6cd1e8c24a596d0170b" + +[[files]] +file = "config/blockswap/known_states/quark/orange_shingles.json5" +hash = "ef66a1fb2d0073481564e712e8e1a67720142201bfe8b080ee9f2983bba07eb9" + +[[files]] +file = "config/blockswap/known_states/quark/orange_shingles_slab.json5" +hash = "bf2f9e708b539c199e633ac3adadfda0cf499796f15c580543c72446eae66877" + +[[files]] +file = "config/blockswap/known_states/quark/orange_shingles_stairs.json5" +hash = "569f3bbaaf1344dd3a934cc43d297f8dce154c7b9f5460e14ef5684b2f054e8a" + +[[files]] +file = "config/blockswap/known_states/quark/orange_shingles_vertical_slab.json5" +hash = "486d910c688f063632d2c8bec1fb763cbe444cb710cd3e828d8e3afddca53198" + +[[files]] +file = "config/blockswap/known_states/quark/orange_stool.json5" +hash = "8dd5c6eaa4847bd2ccc6c5016e7ba0d72ab6b3341248ccd80cde3fe91a033bc0" + +[[files]] +file = "config/blockswap/known_states/quark/oxidized_cut_copper_vertical_slab.json5" +hash = "caa1fc50cbb2b59502311501308ee14050d2b6b37793db876eba3f33ad330149" + +[[files]] +file = "config/blockswap/known_states/quark/paper_lantern.json5" +hash = "cecf47491b2c407eb23f230f6ce279d6e9860b2b5a256caec0f7b08ba114338c" + +[[files]] +file = "config/blockswap/known_states/quark/paper_lantern_sakura.json5" +hash = "a989b133490ee0056c71af79c817fd57a73de3a9b4c92f9f7f4cc2823222873e" + +[[files]] +file = "config/blockswap/known_states/quark/paper_wall.json5" +hash = "8840922d17e8ace76a44c1aaa31ee26c06c7cd74bfd605be5087c9cd436ec9a4" + +[[files]] +file = "config/blockswap/known_states/quark/paper_wall_big.json5" +hash = "1f2ad692f72fe843064524c06d8be0ca48f3b33a7cfe94a2078556586dc810ca" + +[[files]] +file = "config/blockswap/known_states/quark/paper_wall_sakura.json5" +hash = "f7da7706f3afc440b7a1f2d7a4443a4ae2d655a7babfa8365eb615bf47b8b4e8" + +[[files]] +file = "config/blockswap/known_states/quark/permafrost.json5" +hash = "1e22fdcfecc0eaff96f1d00565111b8c7128b854710099bf41e51aa69b9e0a5a" + +[[files]] +file = "config/blockswap/known_states/quark/permafrost_bricks.json5" +hash = "bed35db35e9d495e8f64a6c92530d7920d3100f9ee212b30565076e9ceb6cefb" + +[[files]] +file = "config/blockswap/known_states/quark/permafrost_bricks_slab.json5" +hash = "a05836e7e9dcb0bbb684dc97dd3f987923f63130d402edaf6d986968ceb7048d" + +[[files]] +file = "config/blockswap/known_states/quark/permafrost_bricks_stairs.json5" +hash = "ee6986060909c9b0600087544f1073d21cf3d782535acc252fe0bc0b0f2a3f4e" + +[[files]] +file = "config/blockswap/known_states/quark/permafrost_bricks_vertical_slab.json5" +hash = "afd8808f7af1f252130513607915bdabc70e6dd7b62b580af0462c2855b07608" + +[[files]] +file = "config/blockswap/known_states/quark/permafrost_bricks_wall.json5" +hash = "d212fac9ced31c2d6d153290163ca31e425bdf497dded1b5e9715f3eb3266e3f" + +[[files]] +file = "config/blockswap/known_states/quark/permafrost_slab.json5" +hash = "61c7a812f51f2b05bfa3b95f1b5e4ff71e86f85e635aee65e81305df551dccf9" + +[[files]] +file = "config/blockswap/known_states/quark/permafrost_stairs.json5" +hash = "8fa56e0b666e28a9b3b75e296f78da83ef559af69b7453af9b9bc13a7a99c73e" + +[[files]] +file = "config/blockswap/known_states/quark/permafrost_vertical_slab.json5" +hash = "30adc4a0c5b7b79dfc47be711103fb1a70809a5dbdcaf6ccbc859af4118342db" + +[[files]] +file = "config/blockswap/known_states/quark/permafrost_wall.json5" +hash = "d1020e39c9f98f5e9cd9c67e4b1837b4d9619a98c8e56e48332ddc00252bac5d" + +[[files]] +file = "config/blockswap/known_states/quark/pink_framed_glass.json5" +hash = "91a731d9d6c65071db7a430c7f6414a6cefa39342f5823178b49b52dfd90c94d" + +[[files]] +file = "config/blockswap/known_states/quark/pink_framed_glass_pane.json5" +hash = "0110de2165082815f9068a61b8b25cd1275b7fe785ee72309ebfdee6c39c6619" + +[[files]] +file = "config/blockswap/known_states/quark/pink_shingles.json5" +hash = "de0a7a1c0107a3798d2a0ccc65938ebd17145104320e676664de52af6dc23eff" + +[[files]] +file = "config/blockswap/known_states/quark/pink_shingles_slab.json5" +hash = "d1be733b88170874391e8850c97574687cef78eac573278168f57ee9bac186a8" + +[[files]] +file = "config/blockswap/known_states/quark/pink_shingles_stairs.json5" +hash = "01dfdec7795e9130c4fc532c17258e879280bdbee0917e62ea02938e532d94e8" + +[[files]] +file = "config/blockswap/known_states/quark/pink_shingles_vertical_slab.json5" +hash = "5397ad78244af0b51064c3d0354ff182d9f34380c8dc27d1c846c06eeec49dfe" + +[[files]] +file = "config/blockswap/known_states/quark/pink_stool.json5" +hash = "b001242228f81b36765b159446e44fbdd7305aa3457d6766a1f5401eaf8d553b" + +[[files]] +file = "config/blockswap/known_states/quark/pipe.json5" +hash = "3cb954f92f225226a1e420135844ce2a4de4edb84901be237288b2a9d99c58ac" + +[[files]] +file = "config/blockswap/known_states/quark/polished_andesite_vertical_slab.json5" +hash = "9c412e8b4ff72d817d697dc245ceb7fbcab5e2b995eb8f42688a75705a24d1fd" + +[[files]] +file = "config/blockswap/known_states/quark/polished_blackstone_brick_vertical_slab.json5" +hash = "58bc7ffbf0d03223afb4e8c4665d3f45308c454abc5d5ff31f5d047039e676ce" + +[[files]] +file = "config/blockswap/known_states/quark/polished_blackstone_vertical_slab.json5" +hash = "7d0db167a0e9cc2ea932a51ddf21b8c3e85ed44b3e353f358941427ec0915704" + +[[files]] +file = "config/blockswap/known_states/quark/polished_calcite.json5" +hash = "bd2bc4310cee7a12af987b5e6ffc0c9d23f0f7173e7effd0ce4b653ee7344167" + +[[files]] +file = "config/blockswap/known_states/quark/polished_calcite_slab.json5" +hash = "2814294040762118adbcd1a46ae26e11365568000bff043be8a8ba9c8a8b3043" + +[[files]] +file = "config/blockswap/known_states/quark/polished_calcite_stairs.json5" +hash = "a2564a38e8ccd4047723cc2e96eab1671187f8451e1a71b2fdddb4e5c91a2431" + +[[files]] +file = "config/blockswap/known_states/quark/polished_calcite_vertical_slab.json5" +hash = "81cbce1fbac48c70f28d2d8ba1fa98be740635d62557b8e31995967683aa4632" + +[[files]] +file = "config/blockswap/known_states/quark/polished_deepslate_vertical_slab.json5" +hash = "df00b4691ace88a74252c8fc70667d6a94c9c8cb84b677297ab1efbfc7449985" + +[[files]] +file = "config/blockswap/known_states/quark/polished_diorite_vertical_slab.json5" +hash = "90704db1def904d3e05bb94dda7a9ab65f4fdf4e803d2fdbd220165e20b65ed0" + +[[files]] +file = "config/blockswap/known_states/quark/polished_dripstone.json5" +hash = "b5640f3d31a5558ae8f613cf0f4a1b50cd8ad34d1ae65290005e83fb3c23b285" + +[[files]] +file = "config/blockswap/known_states/quark/polished_dripstone_slab.json5" +hash = "b97052da8218e89e04d21716e0346f092f17f29de3f1d2273fe24cf11262865d" + +[[files]] +file = "config/blockswap/known_states/quark/polished_dripstone_stairs.json5" +hash = "bd5fa9855187ebb3fb3e7c4aecf7c870da582ca809d20a93bc3ebc4fa8994633" + +[[files]] +file = "config/blockswap/known_states/quark/polished_dripstone_vertical_slab.json5" +hash = "4479a174b216cca0450a2fb490bfd06ec9d1b95ce2f6dad437661b59be15d48d" + +[[files]] +file = "config/blockswap/known_states/quark/polished_granite_vertical_slab.json5" +hash = "12df47fd85809c9a7a0a65bc1380c0cabd5186e9f8bf58b91d9d48e1cfa1cd41" + +[[files]] +file = "config/blockswap/known_states/quark/polished_jasper.json5" +hash = "86d8a13d4f7a54fcf313d4d135d2b8e273e0a5402ae91be53a379d4c0d42ac69" + +[[files]] +file = "config/blockswap/known_states/quark/polished_jasper_slab.json5" +hash = "614dc8d1caf205f72bcd8b492030ccef6be13b05e73d740f13d6bf3de6f5fd6f" + +[[files]] +file = "config/blockswap/known_states/quark/polished_jasper_stairs.json5" +hash = "9a6b2ecd2a559207bdd8e66717709fd60ba1e8652746a4c55ac8976f00fe94c0" + +[[files]] +file = "config/blockswap/known_states/quark/polished_jasper_vertical_slab.json5" +hash = "96b835a887a31fcfe23becd42ae6927fb2620bfca37bca44bdfe282396cdbd6b" + +[[files]] +file = "config/blockswap/known_states/quark/polished_limestone.json5" +hash = "83fc87bef4147b5256b5bca412422a3ccd9de102ba315e4405780077ffb7ca11" + +[[files]] +file = "config/blockswap/known_states/quark/polished_limestone_slab.json5" +hash = "0148bb2effb00bc7a5b61d51eca4fcf7a3ede4e347f65db21eb5ec0eb4baf9c5" + +[[files]] +file = "config/blockswap/known_states/quark/polished_limestone_stairs.json5" +hash = "f89074475d87242936c23c1d666d51d6d13e5396fa6ca9513ca1c1a687ce73eb" + +[[files]] +file = "config/blockswap/known_states/quark/polished_limestone_vertical_slab.json5" +hash = "74553b01fc9584a10a9dc792d03e8a7bd6d246dd2abcd4d3ca2011354bc88756" + +[[files]] +file = "config/blockswap/known_states/quark/polished_myalite.json5" +hash = "b4e54de8b9ce051dc643a38b0bdff02080ef8dfd6c60b4cbe722226c157a8050" + +[[files]] +file = "config/blockswap/known_states/quark/polished_myalite_slab.json5" +hash = "3f0bbe69dc2c82bd8d8a591bc20ae773e8e49bc365ffa40f2605bbbc92115956" + +[[files]] +file = "config/blockswap/known_states/quark/polished_myalite_stairs.json5" +hash = "7126d01051610f4ffb5d11c1ffe5959ec0218e9ed78b11c421e6efe5e24d7590" + +[[files]] +file = "config/blockswap/known_states/quark/polished_myalite_vertical_slab.json5" +hash = "1d4e18efc43418c1e3b8645781d38d0f7ff0e66ac121fc06687331e189a07af2" + +[[files]] +file = "config/blockswap/known_states/quark/polished_shale.json5" +hash = "e6337d58ffff14ef6af04fcdea2355ba63d6a100383a5e73302f8abe578a22fb" + +[[files]] +file = "config/blockswap/known_states/quark/polished_shale_slab.json5" +hash = "0b5ba8c5d3c1201606c239ecd11d2421dd656ba51859c2d681ddaa32e1b2bb2e" + +[[files]] +file = "config/blockswap/known_states/quark/polished_shale_stairs.json5" +hash = "c5d3458b30df8fa922702b4f5219c3d053cd1759c0326e874d164744f5f2cd3d" + +[[files]] +file = "config/blockswap/known_states/quark/polished_shale_vertical_slab.json5" +hash = "2e711bbef83b8c408d59afa400d06ad2bf955085a37734a2e6461974160dee47" + +[[files]] +file = "config/blockswap/known_states/quark/polished_tuff.json5" +hash = "2ef8716c4fe1eb6b3f73bd357df313f077d9a2009a0e1b37e5d5e12883c62917" + +[[files]] +file = "config/blockswap/known_states/quark/polished_tuff_slab.json5" +hash = "b8a7be8ceaea54f4bfa591bd601aaa74e201783116a77702d0696998d98f76ae" + +[[files]] +file = "config/blockswap/known_states/quark/polished_tuff_stairs.json5" +hash = "504c605e2465203fd93d04c2c949e4e648037f25a98a7ffd6b6f9d7b8c07e8a7" + +[[files]] +file = "config/blockswap/known_states/quark/polished_tuff_vertical_slab.json5" +hash = "18d02e08a06457fbcda8b2b7560b2a25f9ee6dfe788b31381f75ae019cd18dd0" + +[[files]] +file = "config/blockswap/known_states/quark/potato_crate.json5" +hash = "31e7d11ae55774de915baa61ba580cf0dc051c72c2d354fbc257040c63676b49" + +[[files]] +file = "config/blockswap/known_states/quark/potted_ancient_sapling.json5" +hash = "e10fe6c8a7d4fd80b5d833844aa7c90278b79d44413ab40608275964662641f3" + +[[files]] +file = "config/blockswap/known_states/quark/potted_beetroot.json5" +hash = "3e12d9649536b07231fd726fdbfa5d39769a164fa9628c9b6ed1776b4ed8c148" + +[[files]] +file = "config/blockswap/known_states/quark/potted_berries.json5" +hash = "724e7417f923df5efe269de97c34d8aa59f11f6195607e75b99c6452a92119f1" + +[[files]] +file = "config/blockswap/known_states/quark/potted_blue_blossom_sapling.json5" +hash = "cd1395b577e1e450d32dc1231b93befc3bb50e443be89ee5cbc0fa3ba867db89" + +[[files]] +file = "config/blockswap/known_states/quark/potted_carrot.json5" +hash = "4fd7056546a361ecb908faf845e78bce4bd306afa9b3bf37f7abd8c0c450b568" + +[[files]] +file = "config/blockswap/known_states/quark/potted_cave_vines.json5" +hash = "3d5189e18f21db804a0e4a23bd9e7dc87f187f4e669ea8394e8a63abf728a680" + +[[files]] +file = "config/blockswap/known_states/quark/potted_chorus.json5" +hash = "ee8c110f9d9e1dd2de772c9292b762991fa2b047f5f9eb0c09ec73eb5e168682" + +[[files]] +file = "config/blockswap/known_states/quark/potted_chorus_twist.json5" +hash = "54deb265909c695eba450963dcebad69ac3837b3e0d2c3e8081025000be9a0b4" + +[[files]] +file = "config/blockswap/known_states/quark/potted_chorus_weeds.json5" +hash = "04cd3621643f1bd14ee95f5a5637845cfcb29ecfc2ee6424558de7eb5e2f4b53" + +[[files]] +file = "config/blockswap/known_states/quark/potted_cocoa_bean.json5" +hash = "27d76e4d9feb6067d9ad4263cbd9855022c40bf5cdc42b68e285988a9637eb1d" + +[[files]] +file = "config/blockswap/known_states/quark/potted_glow_lichen_growth.json5" +hash = "904acc2aeab25d262ad614574937694eca8e9fc3d2d7bed441c2f64a4e896e11" + +[[files]] +file = "config/blockswap/known_states/quark/potted_glow_shroom.json5" +hash = "20f79af74b067d2c1d85e4aff6a11af1a4c73198488eb70aa87c713decba409e" + +[[files]] +file = "config/blockswap/known_states/quark/potted_grass.json5" +hash = "2e6fd11426f875e23d44cbfc18a25d0ba1b7ab101d718d8b003fd823cb9f2663" + +[[files]] +file = "config/blockswap/known_states/quark/potted_large_fern.json5" +hash = "4ed078545c8082b2b1b27d13a3afdf715450299e5474ae39f4db26848a962056" + +[[files]] +file = "config/blockswap/known_states/quark/potted_lavender_blossom_sapling.json5" +hash = "f4ed51ab119b6e9fa8f5be29a4c8fc2520cca148a85611dabbf10ff47745f874" + +[[files]] +file = "config/blockswap/known_states/quark/potted_lilac.json5" +hash = "f2e21fb4668c3fb173fdeca763c01935340285f56d51f965728e54aca02d42f9" + +[[files]] +file = "config/blockswap/known_states/quark/potted_melon.json5" +hash = "ff916a16f5d8637813f16a111c4c0fc3f5b5b92f0c015052adbe162e7dcd0ff2" + +[[files]] +file = "config/blockswap/known_states/quark/potted_nether_sprouts.json5" +hash = "c9bf64c5bd1c89c0f09256992bd819e5fee8d35d2edf1e61d62ef315ff6a81e0" + +[[files]] +file = "config/blockswap/known_states/quark/potted_nether_wart.json5" +hash = "32676b20ad4c9394d1d1416b11562582daac694b3e3e191dcee56c3f6e048cf7" + +[[files]] +file = "config/blockswap/known_states/quark/potted_orange_blossom_sapling.json5" +hash = "0271a34fe1d3a008386044a10dd8a819742973b242b97e5c3be979063175f519" + +[[files]] +file = "config/blockswap/known_states/quark/potted_peony.json5" +hash = "71d07dd826d56e025ac47183fc7266ac2c7b5d8fa67789a77b5e1bad53be9ce3" + +[[files]] +file = "config/blockswap/known_states/quark/potted_pitcher_plant.json5" +hash = "543fb7fe142a256f6526a2dd3212c8f4676ccee5be210b3fc7c3eef68c4ba7a6" + +[[files]] +file = "config/blockswap/known_states/quark/potted_potato.json5" +hash = "cb1ce373d1bb919b9633bd5929c3eda81fc9a3f1c6a6c4d2337e660c5fb08d76" + +[[files]] +file = "config/blockswap/known_states/quark/potted_pumpkin.json5" +hash = "1fa209f8327f2429493368b1ba548eeab6603136c407e15ad8500376591332b7" + +[[files]] +file = "config/blockswap/known_states/quark/potted_red_blossom_sapling.json5" +hash = "e93be249b8bcf905544f0a1952d39290aacc2ab7ef71b9feeb8d1b4daa489ec3" + +[[files]] +file = "config/blockswap/known_states/quark/potted_rose.json5" +hash = "de34d144c2f1ba3080303de6d62455dd6c0867a66fbc03ae6019478350632a27" + +[[files]] +file = "config/blockswap/known_states/quark/potted_sea_pickle.json5" +hash = "b45f2c7583bfea21fd0d3dfdf43724c20488f9f0d7fd5f0ead0ff9eee3317749" + +[[files]] +file = "config/blockswap/known_states/quark/potted_sugar_cane.json5" +hash = "a4f736bf594866009977be5dbfb62cc1600a09c4b4facca54fa5964a11c1afe5" + +[[files]] +file = "config/blockswap/known_states/quark/potted_sunflower.json5" +hash = "059923f973053371e450a3bb279a470afa90283d128dc5128f5ccb4cdeeed64a" + +[[files]] +file = "config/blockswap/known_states/quark/potted_tall_grass.json5" +hash = "0a53d9bc841ef0d5d7e681201e15400686e18ed917ebc28402efa7c361f361ce" + +[[files]] +file = "config/blockswap/known_states/quark/potted_twisting_vines.json5" +hash = "12cba906f25953ed528e1416c41a915badc0a2e37b0dfaf910e39d4bc3174531" + +[[files]] +file = "config/blockswap/known_states/quark/potted_vine.json5" +hash = "f6d2c83d92c7dd09747000cfd5cdd2949765b835b1e4e53fe3ffab57dbee378b" + +[[files]] +file = "config/blockswap/known_states/quark/potted_weeping_vines.json5" +hash = "1774a9db5e9d66c9a4630a1662ccfbae43d2adcb298e2e7b39bf3017f75a8420" + +[[files]] +file = "config/blockswap/known_states/quark/potted_wheat.json5" +hash = "0357a2762defe89b1674ccf320f6cb567b06a1d90a104f441f5c5c8386a497fd" + +[[files]] +file = "config/blockswap/known_states/quark/potted_yellow_blossom_sapling.json5" +hash = "4d496506f94c1047416147063ad8250df088b1a92459f4a6222a248e7bef762a" + +[[files]] +file = "config/blockswap/known_states/quark/prismarine_brick_vertical_slab.json5" +hash = "7ee54280682913c7221240b8197ecc11d6e603dae8efec3af46678a7d9cd149c" + +[[files]] +file = "config/blockswap/known_states/quark/prismarine_chest.json5" +hash = "e9f6022820c97ee9afc652955f9bf367cfb059dcde035f06501385b01838ae8b" + +[[files]] +file = "config/blockswap/known_states/quark/prismarine_trapped_chest.json5" +hash = "745df81145df1ab38482b8ef9c0cd416a9de8935751bd53ae7ca0da0f8e30b7b" + +[[files]] +file = "config/blockswap/known_states/quark/prismarine_vertical_slab.json5" +hash = "a98d047a2343e6597cf84a11c89b22dd4d1b12349adaf67604a45f7acb1a7a1a" + +[[files]] +file = "config/blockswap/known_states/quark/purple_framed_glass.json5" +hash = "a3dd7fbea2167a70f48718297e03ca3ee19972db5309216a8f0e542a7ec65272" + +[[files]] +file = "config/blockswap/known_states/quark/purple_framed_glass_pane.json5" +hash = "a9123ed2fb05d3611f0c2fe2613798df92276510bb601591f9951a8b64bcb421" + +[[files]] +file = "config/blockswap/known_states/quark/purple_shingles.json5" +hash = "6b18fac30ba3e4cb73f520baf011a08ba31fa1fd49e956dac02d52087edd0a96" + +[[files]] +file = "config/blockswap/known_states/quark/purple_shingles_slab.json5" +hash = "5a7307791440b567fd83847c12098c9a4458a4499cb70f4b6bc2fee817fdb6a9" + +[[files]] +file = "config/blockswap/known_states/quark/purple_shingles_stairs.json5" +hash = "6f4940827c9593afc7614f5bf7bb6e8b53fb56c6dc88117312ac65ae1a77d846" + +[[files]] +file = "config/blockswap/known_states/quark/purple_shingles_vertical_slab.json5" +hash = "ed458734e420888cbcfeb430840107f8b480661c05680cf185bc8857c9a1b368" + +[[files]] +file = "config/blockswap/known_states/quark/purple_stool.json5" +hash = "ce0db9d29e277bba9bf760948bf037661eb52e4179740f4b3f40feafccd3dc52" + +[[files]] +file = "config/blockswap/known_states/quark/purpur_chest.json5" +hash = "402b665a601f99ef1658f064f8e5798fde89acf4b6ded2e87f1886e1762334b5" + +[[files]] +file = "config/blockswap/known_states/quark/purpur_trapped_chest.json5" +hash = "23aefdb6ba9e5104f41825b0a17c28df2517700ab61d80a7b2c254fe6e4780c9" + +[[files]] +file = "config/blockswap/known_states/quark/purpur_vertical_slab.json5" +hash = "52497049f88cc16fe59cb03270aa7531cc940d07e7c510f755c52273ed32e099" + +[[files]] +file = "config/blockswap/known_states/quark/quartz_vertical_slab.json5" +hash = "5924d49c1636f1fe7e95cae170419655e2604923d00f6c67392eebb332d16392" + +[[files]] +file = "config/blockswap/known_states/quark/raw_copper_bricks.json5" +hash = "1dab376440a87e46308e12d6f5ad7152727bfe687017295b6c27feabc216eed5" + +[[files]] +file = "config/blockswap/known_states/quark/raw_copper_bricks_slab.json5" +hash = "70543c779fd754f969a6de41949b14d18fd2eba2a6a0d0e6522b3ae9362000b2" + +[[files]] +file = "config/blockswap/known_states/quark/raw_copper_bricks_stairs.json5" +hash = "78008b18184129e7eccb0e9635126a2bf39989e2ed2a12751b9c9a482413a2c4" + +[[files]] +file = "config/blockswap/known_states/quark/raw_copper_bricks_vertical_slab.json5" +hash = "7a2273d13d44d782abe346c19a6d2e404c1ac015526872e55ce89c254287845e" + +[[files]] +file = "config/blockswap/known_states/quark/raw_copper_bricks_wall.json5" +hash = "7df8d862e58cb4431e0e4a85d5bdf2b852a2cb9ac827cec84a3e6eb0c616bd12" + +[[files]] +file = "config/blockswap/known_states/quark/raw_gold_bricks.json5" +hash = "da54a750c8079176c56ef749bfadec1c94882009b271516b2f5f74069165f695" + +[[files]] +file = "config/blockswap/known_states/quark/raw_gold_bricks_slab.json5" +hash = "59d9318e821c7499962ed8e8e0d9fc3ccad8110b29f8912c3a959fced929c107" + +[[files]] +file = "config/blockswap/known_states/quark/raw_gold_bricks_stairs.json5" +hash = "26105fb418ae53a4698d803c039627fe8aaaa749b9dc624eb6417d1dc3f0b2e8" + +[[files]] +file = "config/blockswap/known_states/quark/raw_gold_bricks_vertical_slab.json5" +hash = "0a9b7c7736fe5a45feb942d303851950ca75c76825a051ab755a7e3bd436e101" + +[[files]] +file = "config/blockswap/known_states/quark/raw_gold_bricks_wall.json5" +hash = "f62abf32e79fe9343f9484f93be03d3eeff9f6afe451428a6d6e73e5e85216f0" + +[[files]] +file = "config/blockswap/known_states/quark/raw_iron_bricks.json5" +hash = "cbb19f689dfd665168ff51f454efd4007a1927f5c9dfb943cef95c014573c6fa" + +[[files]] +file = "config/blockswap/known_states/quark/raw_iron_bricks_slab.json5" +hash = "fa4c483d3984bcd501339696c54ee72d8eae952efcaf3fe5f68a5dea94f658c0" + +[[files]] +file = "config/blockswap/known_states/quark/raw_iron_bricks_stairs.json5" +hash = "c08bda23a251b2c56418bccb84b420c1f22094a9c5d9036408107e61a26ba7a9" + +[[files]] +file = "config/blockswap/known_states/quark/raw_iron_bricks_vertical_slab.json5" +hash = "87021fcb36507d391b49ebe389409a70b915b74838820d1c9fff394533e8c262" + +[[files]] +file = "config/blockswap/known_states/quark/raw_iron_bricks_wall.json5" +hash = "bf8cfc95b7b4ed580c6f218ac8f4bcf70964699d022e9617beac3dfc389e9fff" + +[[files]] +file = "config/blockswap/known_states/quark/red_blossom_hedge.json5" +hash = "c8c55ff7ad064e3f70c3d1db3e2b00c38bcb1ee85e2011081908b1af1c458c28" + +[[files]] +file = "config/blockswap/known_states/quark/red_blossom_leaf_carpet.json5" +hash = "259a1bd89a0a49fbd2844479f5b743c1b831f1724baf4c99708aaa7a8964872f" + +[[files]] +file = "config/blockswap/known_states/quark/red_blossom_leaves.json5" +hash = "079028fb7d1282fbcbf2e84809305ee2ea986b1e46d4fceb36838ca8bc37d172" + +[[files]] +file = "config/blockswap/known_states/quark/red_blossom_sapling.json5" +hash = "ae940639e5b1362d0dbc0e1b175d4b80b5f7656cd3793170ef307211864273e8" + +[[files]] +file = "config/blockswap/known_states/quark/red_corundum.json5" +hash = "7a656d8f4350aa5b4d0379458139fa8bfa6cc623d254f049307055592e1c8574" + +[[files]] +file = "config/blockswap/known_states/quark/red_corundum_cluster.json5" +hash = "3175ee9f638d2b48364672d87150aa6c4e6490185c3ccb9ddb5c85a82d3f3510" + +[[files]] +file = "config/blockswap/known_states/quark/red_corundum_pane.json5" +hash = "541282deddfb2a0a02321cb395b6679b60b9e78f449fe1bb434a91d5f5f0ae2d" + +[[files]] +file = "config/blockswap/known_states/quark/red_crystal_lamp.json5" +hash = "d2e16a2a85f262c6f858fe7f9cc931d5764e05825ff09e6bd671b3d36bfa2d8c" + +[[files]] +file = "config/blockswap/known_states/quark/red_framed_glass.json5" +hash = "44b1a767fe3534ae8e6064139c67009ca452535a690c5625e23873c08aa71fc3" + +[[files]] +file = "config/blockswap/known_states/quark/red_framed_glass_pane.json5" +hash = "7c73fe166721dfd36c17b96a30b12afece6eaba8dcc7c833a0fb58c460ff0bdb" + +[[files]] +file = "config/blockswap/known_states/quark/red_nether_brick_vertical_slab.json5" +hash = "20ad7c3862ba137898b79346696cf14ce0cc32603788cf0f7565cd932b84eb69" + +[[files]] +file = "config/blockswap/known_states/quark/red_sandstone_bricks.json5" +hash = "53c452214d9f065d1c58def1ff2e7fa39e91f4d8759c59dfc0916bebe4a46a9c" + +[[files]] +file = "config/blockswap/known_states/quark/red_sandstone_bricks_slab.json5" +hash = "106235cf9088bb0b13e67f5a9165989f9578aae18c73b513032ac6c4f374094c" + +[[files]] +file = "config/blockswap/known_states/quark/red_sandstone_bricks_stairs.json5" +hash = "12e49c2e2746906b3609c2c2a0abbabcdac975d638934621aea5af81219b06bf" + +[[files]] +file = "config/blockswap/known_states/quark/red_sandstone_bricks_vertical_slab.json5" +hash = "4267652805e6d51a2730d6ecbbc77793f8f16a325cb64d9d4578e06b881a778a" + +[[files]] +file = "config/blockswap/known_states/quark/red_sandstone_bricks_wall.json5" +hash = "4fdac4fffaecd218fadf03a0b89049f21fe2e1e1d23a57dfe41c24885dd144a6" + +[[files]] +file = "config/blockswap/known_states/quark/red_sandstone_vertical_slab.json5" +hash = "56d0f6240473f7aea96b240449804bd8eabafbfeaf77478fb3a670771f9e5c6f" + +[[files]] +file = "config/blockswap/known_states/quark/red_shingles.json5" +hash = "b7989ae42b77d721d9f7f0f31f7752808f66a0a09be6fe05ce16b707e2548817" + +[[files]] +file = "config/blockswap/known_states/quark/red_shingles_slab.json5" +hash = "b202266669e35d31d385de9e9b4345b5c5e8bfd21afb0ac709026893eb715f44" + +[[files]] +file = "config/blockswap/known_states/quark/red_shingles_stairs.json5" +hash = "abc551cc61c2e10be5c343831d7a6877aa191919bed7a1df3a9bb8883fc7cd42" + +[[files]] +file = "config/blockswap/known_states/quark/red_shingles_vertical_slab.json5" +hash = "a3069699ace78fbc9840dc0d573acdaf7944cf6e747e7bac2c97d101ac8e73d1" + +[[files]] +file = "config/blockswap/known_states/quark/red_stool.json5" +hash = "e30d99fbdc53ef5c052aa80e25083515d6ec519743d6bfb20759d7adf3ad6efe" + +[[files]] +file = "config/blockswap/known_states/quark/redstone_randomizer.json5" +hash = "0b0e6c8b68cbc61f345743c3eaa3358edc65a80de423bd7ac6acb3f470796ebd" + +[[files]] +file = "config/blockswap/known_states/quark/rope.json5" +hash = "6d45cb3bb92f4094b36a32cad97abd37780c31ed904dd0d7966855820b0a9587" + +[[files]] +file = "config/blockswap/known_states/quark/rusty_iron_plate.json5" +hash = "9d3ccba5403723883b97c5383b606f33bc1f9ad12fb7da29b336606eada369b2" + +[[files]] +file = "config/blockswap/known_states/quark/rusty_iron_plate_slab.json5" +hash = "77286ed44b564ff9fd88391d34b76d688b87117d107ac2c2be6451d8eee87592" + +[[files]] +file = "config/blockswap/known_states/quark/rusty_iron_plate_stairs.json5" +hash = "83d942f4736b2da328f942816b82bc80b058b321d7d34539b8f8650a1aa161fd" + +[[files]] +file = "config/blockswap/known_states/quark/rusty_iron_plate_vertical_slab.json5" +hash = "460c2b159a9f37ecdccd5167a85555ccf7b12a2b166d98592f1e6c8268c8dfa2" + +[[files]] +file = "config/blockswap/known_states/quark/sandstone_bricks.json5" +hash = "5802bd7d84be73fbb49b71ba66148e5f6491a188f42c9c0b16ebae7f2354096a" + +[[files]] +file = "config/blockswap/known_states/quark/sandstone_bricks_slab.json5" +hash = "0becb66d747ae2c6b18a0256f7c65ca0ceee08e5b39b51877d2ed1454e56e3e6" + +[[files]] +file = "config/blockswap/known_states/quark/sandstone_bricks_stairs.json5" +hash = "5029ad910b9ca6f58ba6285f53b3539231c68105f28ecae7a28e5d9ce58fec06" + +[[files]] +file = "config/blockswap/known_states/quark/sandstone_bricks_vertical_slab.json5" +hash = "e44cc313d19120203089451dde963c3da4a40581189b13fcc20d1f1a31a19a8b" + +[[files]] +file = "config/blockswap/known_states/quark/sandstone_bricks_wall.json5" +hash = "2584c2415f42ada0e38cb78dd6e5000d4ceb1ddf4d591020e2d0eeda9005e09c" + +[[files]] +file = "config/blockswap/known_states/quark/sandstone_vertical_slab.json5" +hash = "77426d0028f9006aac3deacf6938b9481415b42e142fb2daffb2d82da8323e47" + +[[files]] +file = "config/blockswap/known_states/quark/shale.json5" +hash = "49c0bd763c5dac34dbf498dbe495d4a1842907cdea2743cf533c42eeb14e3b17" + +[[files]] +file = "config/blockswap/known_states/quark/shale_bricks.json5" +hash = "d38e5269c1cba20d96585132d8a8b2c81f347c73c32ca7740f09c0254c6ff06b" + +[[files]] +file = "config/blockswap/known_states/quark/shale_bricks_slab.json5" +hash = "1cf672f22f62052f0ad1c54f6de0bc770588d86de4412d6fd26bf423649caf61" + +[[files]] +file = "config/blockswap/known_states/quark/shale_bricks_stairs.json5" +hash = "1102ccadb5f023794b73523c3a4c14a557701258e3d15416ef0bcadea3a77906" + +[[files]] +file = "config/blockswap/known_states/quark/shale_bricks_vertical_slab.json5" +hash = "1f8bcc82cc2ab409f00be5b2cea8706e83804494d7b7842e653f74b93a577c22" + +[[files]] +file = "config/blockswap/known_states/quark/shale_bricks_wall.json5" +hash = "6ec6760420aa99d115e46f74fc9d868c9ff163d4dd84f6e93f273c792662ce1e" + +[[files]] +file = "config/blockswap/known_states/quark/shale_pillar.json5" +hash = "e540f9a9d6ac5509a7f5cfec07b5140aec33fc95587b78a26eb0b17157612178" + +[[files]] +file = "config/blockswap/known_states/quark/shale_slab.json5" +hash = "65b1b510aff1fc205df54089673da9c8b5d9df340f5ef3808743626f66196b5f" + +[[files]] +file = "config/blockswap/known_states/quark/shale_stairs.json5" +hash = "ce0d98366f9fdc05ec785888878807e29e81777f795e1979b02ca244c2b8ff75" + +[[files]] +file = "config/blockswap/known_states/quark/shale_vertical_slab.json5" +hash = "a4eb331e5543da3571b43a27c528a216568acdc649f677fe5f0fc6656a919aa3" + +[[files]] +file = "config/blockswap/known_states/quark/shale_wall.json5" +hash = "3b384dc0a504e3516da7618d8151f88aa6469f1bc70e12607ec42059418c91c9" + +[[files]] +file = "config/blockswap/known_states/quark/shingles.json5" +hash = "aff932575d4eff170ee095fd6eec68769fd482685a90ab5b7706c7303abc93ac" + +[[files]] +file = "config/blockswap/known_states/quark/shingles_slab.json5" +hash = "f2986d2f1a602f511dba585cb23a0960dbd3da3d984ba76e5d3c9477e1b2a3b0" + +[[files]] +file = "config/blockswap/known_states/quark/shingles_stairs.json5" +hash = "ed6b25286a0c6542d018305ab8183dd2ad108143f7896238937e5bc6d7187fe7" + +[[files]] +file = "config/blockswap/known_states/quark/shingles_vertical_slab.json5" +hash = "37f2c3c6f004c9e4d3a6a125ad0ef431b3c13711788a463ae5359749f560189d" + +[[files]] +file = "config/blockswap/known_states/quark/smooth_quartz_vertical_slab.json5" +hash = "83414eda8633ad5010d9b7ff9366da06e5847e2606588ccbf7cd107b3406955e" + +[[files]] +file = "config/blockswap/known_states/quark/smooth_red_sandstone_vertical_slab.json5" +hash = "72e6c878a9347793293389646d5e151af69b52310fdb5025a61d6f9e04dd20c8" + +[[files]] +file = "config/blockswap/known_states/quark/smooth_sandstone_vertical_slab.json5" +hash = "97c8fb5166a381ef2ca47c8189df0c19139ddc9d7ea95cf3ed54dbd03524534a" + +[[files]] +file = "config/blockswap/known_states/quark/smooth_soul_sandstone.json5" +hash = "e97825f9e8f43c2ba5462aea5e7f0dfc24fc48c8a9dbda1923acce44423e5052" + +[[files]] +file = "config/blockswap/known_states/quark/smooth_soul_sandstone_slab.json5" +hash = "69c057450a02b36cb453f4576fd422d8b036849a7a8f31f24e20f4ec01726a7f" + +[[files]] +file = "config/blockswap/known_states/quark/smooth_soul_sandstone_stairs.json5" +hash = "f41385b2cf718780bf0ca9dd899a010bdc4e460376a662f13a3bae831007a627" + +[[files]] +file = "config/blockswap/known_states/quark/smooth_soul_sandstone_vertical_slab.json5" +hash = "8231e9b2c67de2b09e6f1b897896a9a56dddadec480fcdb6c298f9cd8c5d7311" + +[[files]] +file = "config/blockswap/known_states/quark/smooth_stone_vertical_slab.json5" +hash = "15137df1557a51bbcbb3d39536ddba9636302094634d3b8b58ef1f660081095c" + +[[files]] +file = "config/blockswap/known_states/quark/soul_sandstone.json5" +hash = "bb4be22ab039b7b8ec13b60b51c5e03e02789119279587b87614e43f71bc932c" + +[[files]] +file = "config/blockswap/known_states/quark/soul_sandstone_bricks.json5" +hash = "f45ac1ece3bbd339df7b01f5d357356c0c884d1d0c1a84c11bd3d808b57398b8" + +[[files]] +file = "config/blockswap/known_states/quark/soul_sandstone_bricks_slab.json5" +hash = "5aa687dadf8a2056c6d500747bc2361be5642cd4df836f0fc73d0015da0bca42" + +[[files]] +file = "config/blockswap/known_states/quark/soul_sandstone_bricks_stairs.json5" +hash = "6614ba179c3dc56ca5e23d42d1d45424c1e0563a3916429a5071430f97b25b31" + +[[files]] +file = "config/blockswap/known_states/quark/soul_sandstone_bricks_vertical_slab.json5" +hash = "32ae5b1adf8b14f48ad8ca76b19ea13f5c603e849fa1a25c759f841986b35c89" + +[[files]] +file = "config/blockswap/known_states/quark/soul_sandstone_bricks_wall.json5" +hash = "ded61e607734f85056f08e26950c9cf36c170862518e03ad147882aad35c7901" + +[[files]] +file = "config/blockswap/known_states/quark/soul_sandstone_slab.json5" +hash = "4c5e028fed438647f2f32a7c667d889055f0bd7c6643b124a7f6f37f2e9e064e" + +[[files]] +file = "config/blockswap/known_states/quark/soul_sandstone_stairs.json5" +hash = "149e8256abd4fbe6adc28a1ff082132ba9e21340ac4916335416d71040338136" + +[[files]] +file = "config/blockswap/known_states/quark/soul_sandstone_vertical_slab.json5" +hash = "bbed7aaeccb2dc0364ac086951f5b3e61e39e4951b68cb319ebcff24b3859887" + +[[files]] +file = "config/blockswap/known_states/quark/soul_sandstone_wall.json5" +hash = "2388ed677cbca74e151372e13ab3d6721a1454b5037b335d916b0e7bdc20c90b" + +[[files]] +file = "config/blockswap/known_states/quark/spruce_bookshelf.json5" +hash = "65a3f5700eeffdf7e3421e4144a9168974542babfc89199c7591397d8739e25e" + +[[files]] +file = "config/blockswap/known_states/quark/spruce_chest.json5" +hash = "f9780b1873d63d892d36602a0b8a2110fcef3fd373c97ea2a2f8d886e20a028f" + +[[files]] +file = "config/blockswap/known_states/quark/spruce_hedge.json5" +hash = "8d50473e398dd841077eff209127a6efc3576f69b4fe51ed919831d98bb935aa" + +[[files]] +file = "config/blockswap/known_states/quark/spruce_ladder.json5" +hash = "7f57d1615ac3d70de1049e3dd6ea76b505e40bf9a100e99884be68eabde41f9e" + +[[files]] +file = "config/blockswap/known_states/quark/spruce_leaf_carpet.json5" +hash = "c0e44d70476b16f3d4e327b378056674e801d8c81570633383844157392a7dff" + +[[files]] +file = "config/blockswap/known_states/quark/spruce_post.json5" +hash = "e9b9bb9841e0c86a6c77756b76c284f24bc754a8feb378ccea19592f27ccbd81" + +[[files]] +file = "config/blockswap/known_states/quark/spruce_trapped_chest.json5" +hash = "5027c680e0291c9d6a00393d177f6e61f19d0a6ac6448c56364175bc596373c6" + +[[files]] +file = "config/blockswap/known_states/quark/spruce_vertical_slab.json5" +hash = "91b0826f57cea32c9a72fec8eed3f386b9c03239792947a4da7c3e90b18f18dc" + +[[files]] +file = "config/blockswap/known_states/quark/stick_block.json5" +hash = "32e8d481d65e64586c35cafd097a956b54164581adaa62ec6d03341d334c936e" + +[[files]] +file = "config/blockswap/known_states/quark/stone_brick_lamp.json5" +hash = "219a09a86b75c0ad0f090e108f72cc45e7ca5b11e3a17aacbf41c9fc3085fff2" + +[[files]] +file = "config/blockswap/known_states/quark/stone_brick_vertical_slab.json5" +hash = "1d4b2895d8b5a8a0e8c80373574d483ee104d5da1e3e17b99f35c0be0a493f90" + +[[files]] +file = "config/blockswap/known_states/quark/stone_lamp.json5" +hash = "e4a749b5c0c8164012ca6511a41a38e01818d0310fee9bc3dd90500fa5982cb8" + +[[files]] +file = "config/blockswap/known_states/quark/stone_vertical_slab.json5" +hash = "321f495ea4a89bfd79ef4373624293448917b74ddefd5447ade035a9367d42e1" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_acacia_post.json5" +hash = "461dbff18a3f7607b243847cb7285bfa21ead4651ab76f8fa86fc5bf8e96a2c4" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_ancient_log.json5" +hash = "92b1237a5400cb1157aaf66d8b1659a31cafcc742df09f7c6a281ef3da987c39" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_ancient_post.json5" +hash = "a16c83a64cd075c175c810d39cde477592db3e7f918bed0c46be962d5b3b3e80" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_ancient_wood.json5" +hash = "c7c32d387a98f3b46ea18b5e0c9559272b1f76f5af4bf46f20664aed17aef220" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_azalea_log.json5" +hash = "23ae3847e09645f57b6072ed756cfe31e73a4c0d38afb33a2597dbcd4e78b479" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_azalea_post.json5" +hash = "3ffeab5a579a21cbf4b33c6f55ca0c40c767c0b304336054ed78207908b60275" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_azalea_wood.json5" +hash = "55778f0fdc2808be4f960ca218bfd72b34a7179f3afdf7f4e5936bc24604aab3" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_bamboo_post.json5" +hash = "238132d12d8617c469ec63c39e9bac1c6cbc945f15050f888ea0c6b472facd30" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_birch_post.json5" +hash = "1d869ec4ee8130d76acb41b4dbad6439f58bb47b43715e376fb7b702a15430b3" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_blossom_log.json5" +hash = "b972d405ffd6d53e932618fbfb81d90165dab0f884c886352cbe5ab9e2f2c342" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_blossom_post.json5" +hash = "7e3f38991e20f43bc80571a2d4e0edbe908d91f35ff0a1cdcc8f9b2ffda918ee" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_blossom_wood.json5" +hash = "06282b8f1d36587bcecaa3ed9d47addec6c579a795f78bc8dde827bb6b57b4c6" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_cherry_post.json5" +hash = "ad240dcc310665f3a77e027f44a3613e743b386c07c37ba3bb76cba3ab1789a3" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_crimson_post.json5" +hash = "6bfc2f203beb8f64164eb831ccbe72e3f89a1950e8ade813ec3ec45d0fa1a897" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_dark_oak_post.json5" +hash = "a88aeb22058dd288c43b9227f3b7608e0ceb07529981c726ebc2444e7c7a5a73" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_jungle_post.json5" +hash = "3bbc6e3df046f3e7a1072266a19e4b7278a62631fe8c6c4c1932e9a47c4fe016" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_mangrove_post.json5" +hash = "0d6f711eacc7c1baf935cea19602d2290cec4adcf9bb854927d4b4fc81646635" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_oak_post.json5" +hash = "2068e199f5c099da8c65cd6fb11c65e4cecc20437ba450d36ec24ca189058792" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_spruce_post.json5" +hash = "0514ee1ce45ba0e09d704f2fefee4bdd87c7782a222a106b4a9d626c6075a0f9" + +[[files]] +file = "config/blockswap/known_states/quark/stripped_warped_post.json5" +hash = "12b485119957cbb2b873829bf78afdaca20235b17f86354e0fcb07e6bd80c024" + +[[files]] +file = "config/blockswap/known_states/quark/sturdy_stone.json5" +hash = "ec5f062cf1825be318bf96948dbc457df02d305a93b9eaffc82a25e51b4845d5" + +[[files]] +file = "config/blockswap/known_states/quark/sugar_cane_block.json5" +hash = "7935641bb8bb778b12e5dc99525399132c954691626f71f1a061bfbeed970a82" + +[[files]] +file = "config/blockswap/known_states/quark/thatch.json5" +hash = "e1122fc9065b7efe1b1bcc94ffd0322476b99e4b9392786ad4ce0e4d2bcfacab" + +[[files]] +file = "config/blockswap/known_states/quark/thatch_slab.json5" +hash = "f525c143e12f96b2a955349cde0c39e0bc24a4714d5f8d46cb76bfac24ab36b5" + +[[files]] +file = "config/blockswap/known_states/quark/thatch_stairs.json5" +hash = "60b4939290d9b01ebcadffc4b45895a7debbf453ed2afafb6a9e0d0346f889b2" + +[[files]] +file = "config/blockswap/known_states/quark/thatch_vertical_slab.json5" +hash = "4747c32b750feda78333e16a8f8ae381a269b5a615c5ab714dbb19d34ca3adf9" + +[[files]] +file = "config/blockswap/known_states/quark/tiny_potato.json5" +hash = "9469a410581bf575dd4c3582c03a4480fffe16114427f25d822e33ad50ccda74" + +[[files]] +file = "config/blockswap/known_states/quark/tuff_bricks.json5" +hash = "1f781d347fb300247d3962d65c29c99f86c93e45363c43ba478a9c22c7c444f1" + +[[files]] +file = "config/blockswap/known_states/quark/tuff_bricks_slab.json5" +hash = "d179f1c95172056b6d18534b19cf1417c3433c427ac2c76c35f469671e91a1c6" + +[[files]] +file = "config/blockswap/known_states/quark/tuff_bricks_stairs.json5" +hash = "cd7ccce64af8d38f773410c4cc0a115e74d6f6181119dd563e7654f5e60ad505" + +[[files]] +file = "config/blockswap/known_states/quark/tuff_bricks_vertical_slab.json5" +hash = "a0fecec9263bd19bd38170e8126bc6fb6f18cddf52677cb34fc181fbf714b144" + +[[files]] +file = "config/blockswap/known_states/quark/tuff_bricks_wall.json5" +hash = "bc4da36cbc731eaf5addb6e72cc95fd4753dfab1d8d19bcf2a4a6610f927fd8c" + +[[files]] +file = "config/blockswap/known_states/quark/tuff_pillar.json5" +hash = "b1b38c6e801aea24190b10221ff68a01858c778e4831b35073035e18355d1aa6" + +[[files]] +file = "config/blockswap/known_states/quark/tuff_slab.json5" +hash = "e8a82c94a5b97adbf712d155ecb8ca4512c708ce14a1adab238c8efd85518db6" + +[[files]] +file = "config/blockswap/known_states/quark/tuff_stairs.json5" +hash = "565f5a6bbc10c476147818c797313569122e2d61c7ef3bd5bb2453da407bf48f" + +[[files]] +file = "config/blockswap/known_states/quark/tuff_vertical_slab.json5" +hash = "d6499b7125511e54d69257855660d750804a0af871b5a51d1848da75a1a8ef57" + +[[files]] +file = "config/blockswap/known_states/quark/tuff_wall.json5" +hash = "e52fcb73f02f602791903c4cb698b0481da801861b2d0d33e05396917aaec906" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_acacia_planks.json5" +hash = "35d53906c0f4070f79933467eca95ab1e224286e9486e8ce9d65b80bf8b67c28" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_ancient_planks.json5" +hash = "0f83d7e9e0e31b4d6540bb41ec86d5b48e64a02e0d8232ba77881f051a9c4194" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_azalea_planks.json5" +hash = "22506ab84183db3680854ebdb71e8503afa5a21140ccc7c6d67a35077a65a151" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_bamboo_planks.json5" +hash = "9b095b600437d147da1971a0cfb8bae1104569cb86e0a722329591e0cca3051e" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_birch_planks.json5" +hash = "bee92fe5edcd53a58a716f69ddc8a35f8985aa1ea1768681b213e5dbea1a7231" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_blossom_planks.json5" +hash = "728bd8e6165a6dbbc5c0969f5fa128385e77be7322fd2ddae895555e413f1397" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_cherry_planks.json5" +hash = "d99bb98f7375590d02f698caadd675f3ee7afa223b9cc42c8bc901a842a36765" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_crimson_planks.json5" +hash = "339e1d887780f8889b91b1ffa2ea35a4540647ffecd223d89c832156981f4447" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_dark_oak_planks.json5" +hash = "768f5a85d409a1e6d60fda729ee957e9c3299ac315029d382f2468914f489831" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_jungle_planks.json5" +hash = "da6d16e8a36c0032e090b8f42f516db0bd10ecbaee4a9d435219831dade10e42" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_mangrove_planks.json5" +hash = "4de35c532e0d8616b51d0a206077ddb9541bcaa1daf49df497049dc248930965" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_oak_planks.json5" +hash = "180900323f187785de3f82fbf43f2fb0cf1f8058c47b3dd4af663cd1dc7ab310" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_spruce_planks.json5" +hash = "e015818eefedd8ca7af00de44478553eb24303d26a7ef05e37bc23a95eb1632f" + +[[files]] +file = "config/blockswap/known_states/quark/vertical_warped_planks.json5" +hash = "84c0cba76694a4ecd9043cc7be9ec3e149389eae5ba773a603c2f50cdd0c8329" + +[[files]] +file = "config/blockswap/known_states/quark/violet_corundum.json5" +hash = "9df1373445174d78a296a617f44ee150494f3e39aafa65ac66afa7c804e753ba" + +[[files]] +file = "config/blockswap/known_states/quark/violet_corundum_cluster.json5" +hash = "5edda563954270bbf65ffe9b52be5e4ca1bb69e19dca190f76b26c655b8c45e4" + +[[files]] +file = "config/blockswap/known_states/quark/violet_corundum_pane.json5" +hash = "5e6e59520a0963eec0ebf8f929c507b5d783d5aaf7ff930c63ec367c45f8bfed" + +[[files]] +file = "config/blockswap/known_states/quark/violet_crystal_lamp.json5" +hash = "13f46fd4161bc4e15bd8cd4a45e66d887ee1ed79196e1ee994ccbbefdc90cf3e" + +[[files]] +file = "config/blockswap/known_states/quark/warped_bookshelf.json5" +hash = "d7632027db3ba7ba1552ac274d9c26f38a3917204637831422c3fe9dfba22e7e" + +[[files]] +file = "config/blockswap/known_states/quark/warped_chest.json5" +hash = "eb8182bad837add8088057b7701e765413be82fb5457a203f23f779a7d754136" + +[[files]] +file = "config/blockswap/known_states/quark/warped_ladder.json5" +hash = "6244b2337c5bbfff8417e9b306e1439f8503a069646c6e983edf0506d75ec089" + +[[files]] +file = "config/blockswap/known_states/quark/warped_post.json5" +hash = "2ed111014b2ae7502586c30c8db8781d7fc5ac1fbcb0c451713ed9db2fad0b16" + +[[files]] +file = "config/blockswap/known_states/quark/warped_trapped_chest.json5" +hash = "31fda8adc2a6494c2e1d9361412d0d277e288a1c9a338cd84005da44a8225376" + +[[files]] +file = "config/blockswap/known_states/quark/warped_vertical_slab.json5" +hash = "552b153940f4a8ed8901f3d19e60fe1c433cd035ed1f3b6606557a67a33674b7" + +[[files]] +file = "config/blockswap/known_states/quark/water_pink_petals.json5" +hash = "17903c4e372effdb6b0655375fda0267db904911fbf11aba57e4eabcc3f22661" + +[[files]] +file = "config/blockswap/known_states/quark/waxed_black_corundum.json5" +hash = "0233f9d83087e008456c2e29cacc8c7ca1709b9e5cc6d99b4a26d577422a2859" + +[[files]] +file = "config/blockswap/known_states/quark/waxed_blue_corundum.json5" +hash = "8dc0684ab23f0b5e2eaccc7d7517e81ec4f2a9f7fdeb5047133059e3d6ea4c75" + +[[files]] +file = "config/blockswap/known_states/quark/waxed_cut_copper_vertical_slab.json5" +hash = "d76ea99d06fe782449a4768f057fe7c140c6535bd1fad6bb405683067862eff5" + +[[files]] +file = "config/blockswap/known_states/quark/waxed_exposed_cut_copper_vertical_slab.json5" +hash = "481b60b1dc5767482ce5b7791c9afbfaf491a7cc466f7461be3197a8f6a8defc" + +[[files]] +file = "config/blockswap/known_states/quark/waxed_green_corundum.json5" +hash = "4073de49fb8de18341375c1ee23ac69cd8ee2f21ba9334860d27b8869d10cd27" + +[[files]] +file = "config/blockswap/known_states/quark/waxed_indigo_corundum.json5" +hash = "401ba9ded255c861f874e03c508d96146377825e517ac02ca8e6dc488f6ddf1c" + +[[files]] +file = "config/blockswap/known_states/quark/waxed_orange_corundum.json5" +hash = "cd9621631c0b56ff29bc837256af93ccff2065ffcabf935602a662f601499f24" + +[[files]] +file = "config/blockswap/known_states/quark/waxed_oxidized_cut_copper_vertical_slab.json5" +hash = "7d17c23f4735bfb5f1dfc1f08fee074bf55024f95a5862072e28fc4851421282" + +[[files]] +file = "config/blockswap/known_states/quark/waxed_red_corundum.json5" +hash = "74eb4f681a2e96f8298bc12f857c0653f74da4f6b15b4d6c77ab736b90688bde" + +[[files]] +file = "config/blockswap/known_states/quark/waxed_violet_corundum.json5" +hash = "1b7801159a2aa257776939eabb4eb2d7df838db5b1a3e587d0429eff4b464914" + +[[files]] +file = "config/blockswap/known_states/quark/waxed_weathered_cut_copper_vertical_slab.json5" +hash = "5357e50f78bd58453aac4491343097011f36322a6b80dfd66b29c4e02d0f4b23" + +[[files]] +file = "config/blockswap/known_states/quark/waxed_white_corundum.json5" +hash = "9bf3979ef72df03852d735f45e2dba43dc3484be6afb7f1cc84e60ea135cf9e4" + +[[files]] +file = "config/blockswap/known_states/quark/waxed_yellow_corundum.json5" +hash = "b86fc8b0148d465e3be0bf69873ada53a56f10ed329d294a969cb10c82e802a7" + +[[files]] +file = "config/blockswap/known_states/quark/weathered_cut_copper_vertical_slab.json5" +hash = "cd153b20592488555cbf0c652bc5753fbea47e4774022ee5e11baf644223bfd1" + +[[files]] +file = "config/blockswap/known_states/quark/white_corundum.json5" +hash = "118130bf8ee94ffe7ae58561568cc80144eb119068c0fba211e188ad35d217ea" + +[[files]] +file = "config/blockswap/known_states/quark/white_corundum_cluster.json5" +hash = "e410b5a590a0caf51f7cc08bf74d39862ee141ee9ff6728604ed0af25b2b22f5" + +[[files]] +file = "config/blockswap/known_states/quark/white_corundum_pane.json5" +hash = "3f604b5057e270c3edd7e3733538e94375e6184efecb98516164c886551d7b6c" + +[[files]] +file = "config/blockswap/known_states/quark/white_crystal_lamp.json5" +hash = "9e74cef44a5c91d5b952c3c5d907c2cb49992fa06e28d593a297b23296bf38d9" + +[[files]] +file = "config/blockswap/known_states/quark/white_framed_glass.json5" +hash = "529b81a97a76e2b2cba134f4d5e70e5fb132b5ab847833190be9f9c59b8f1c76" + +[[files]] +file = "config/blockswap/known_states/quark/white_framed_glass_pane.json5" +hash = "e6a5f2e0d635e1302d764510efc261ecbf5fd1caaf5bcd94f08f30596d6e600a" + +[[files]] +file = "config/blockswap/known_states/quark/white_shingles.json5" +hash = "50fbf1567e778d70827baed06a930601089dd3aab814b77a0f03d61d8dee39cb" + +[[files]] +file = "config/blockswap/known_states/quark/white_shingles_slab.json5" +hash = "c1a790f3b09b24e45714305bf0e6af21c9c3c6ac734f8dbc46c3a884a0d9c7a5" + +[[files]] +file = "config/blockswap/known_states/quark/white_shingles_stairs.json5" +hash = "dc7b863e9f88aed5fe556d70702d5f2352eae3a915be0a9a608efda5725ff204" + +[[files]] +file = "config/blockswap/known_states/quark/white_shingles_vertical_slab.json5" +hash = "055018925e6af605fea9c9e01680aeb4e04f16e83d5bd36dbe9a8297c122d217" + +[[files]] +file = "config/blockswap/known_states/quark/white_stool.json5" +hash = "8b46a1d78ff180105651a97fa98b43c6146e744d807b28cd48eb02bbcc546108" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_blossom_hedge.json5" +hash = "5746e9b88f04afb453df35e522ed7f08d87bb478505160a929c07c78194c75a2" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_blossom_leaf_carpet.json5" +hash = "a42247cc1ea5c02c3be62b5b75947655a73f5ebd30a19b62e83ca7d9f619b6cf" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_blossom_leaves.json5" +hash = "60a28fdf99eff6b543264ec7835b09ad0e88c95e05f324cb2c052f91fd109acc" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_blossom_sapling.json5" +hash = "b429ac9430b8d9905e11b0317bf40522e146e7824fc83c238367bc80219d2819" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_corundum.json5" +hash = "7d2456dbeb115803eca1b2841633ab4b10c467b49d2f2d2a9b2d48aaa00d27dc" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_corundum_cluster.json5" +hash = "07da84573e0ec9d2b3e9771e413a9988f3d06efc33d65224b293dba7ce60896e" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_corundum_pane.json5" +hash = "b0939776380cd86d8c8d0a084564300bede9b9d4ee4b031f0f38f9bb7b7b753d" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_crystal_lamp.json5" +hash = "9d94fac0dc07f911e3ddc095ce946240867e085e3ad2c82f564a2059ce96a7aa" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_framed_glass.json5" +hash = "6d9eae79efd4dc2b76cb9c0952ccb2408a7397d2212b40af330a01a43def9ec1" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_framed_glass_pane.json5" +hash = "a7306f368e3496f39afc45ac8b4705441264be6972141f93807bf26d0f2ddaf8" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_shingles.json5" +hash = "46cd84ce4d46c29c159c13a8471f2e35b7c08738249487543bf87180ccceb0ed" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_shingles_slab.json5" +hash = "30bfa68b2386e492ddfa614d2d7cb8d8577dd5413c3a16ade50faecc880dbffe" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_shingles_stairs.json5" +hash = "59b7ec75e84979217f9010f84eb051712ae845c50c26fac7f537262398c25301" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_shingles_vertical_slab.json5" +hash = "c48d25fcb70c4b3ccd78d0337935b6b43d0cff8ab32bfc5f8b5335c86ddfd6b2" + +[[files]] +file = "config/blockswap/known_states/quark/yellow_stool.json5" +hash = "d33c4de048f6dcf6e18c7bc3836d40f5232aa34134e14447c8cedf72f93f9f39" + +[[files]] +file = "config/blockswap/known_states/railways/big_buffer.json5" +hash = "c91dfd295ea9f628dc812e11a8ff02b1ba766a8770a9987aaeed57c49a214e23" + +[[files]] +file = "config/blockswap/known_states/railways/black_brass_wrapped_locometal.json5" +hash = "f366b45b19e1395d86e17231c72f3c31de783acb7ed7bf59e9e1c2726bd1d94b" + +[[files]] +file = "config/blockswap/known_states/railways/black_brass_wrapped_locometal_boiler.json5" +hash = "59b0fe167e56536b7722e1fe43b5dd7d3844de4768d94e7b26fa58e4be5dde1f" + +[[files]] +file = "config/blockswap/known_states/railways/black_copper_wrapped_locometal.json5" +hash = "63fb8b31faed79879b954e1f31f259e40a0ace204408f38b1fcd68d0be37416a" + +[[files]] +file = "config/blockswap/known_states/railways/black_copper_wrapped_locometal_boiler.json5" +hash = "9bcf929c785ea7b0f29b907e14768279b86ca90062daac9b604c66569c2d0184" + +[[files]] +file = "config/blockswap/known_states/railways/black_flat_riveted_locometal.json5" +hash = "ddc51743b9a2541d3cb59ecb37508046bd5a50b6b6059fb14a950b4cd2a88a75" + +[[files]] +file = "config/blockswap/known_states/railways/black_flat_slashed_locometal.json5" +hash = "d5b0a67c4d2e25250031324d38cc59c927af68ad2f4221e4b18d4e1bac7e9385" + +[[files]] +file = "config/blockswap/known_states/railways/black_iron_wrapped_locometal.json5" +hash = "00d43a451b3d2ba77ee6649063580247c0195a51cbe363ce057447372b3686a6" + +[[files]] +file = "config/blockswap/known_states/railways/black_iron_wrapped_locometal_boiler.json5" +hash = "2f6099911a7b21bccbcf8959990fb32bdd2b45b2b3219b68c6490570d1a5c7f7" + +[[files]] +file = "config/blockswap/known_states/railways/black_locometal_boiler.json5" +hash = "d584d5f83012480d8d79d2ba1d9ed5b12593d11b9fd3db548336fd7a922c3a62" + +[[files]] +file = "config/blockswap/known_states/railways/black_locometal_pillar.json5" +hash = "522a3cf991f125a4173907e0bb0311b82c4198892330dd1d1d24619b4605547e" + +[[files]] +file = "config/blockswap/known_states/railways/black_locometal_smokebox.json5" +hash = "b81878ad9ab4450cebbefccda0b3c6311f3febdd954a6cbe55cd51209a11f888" + +[[files]] +file = "config/blockswap/known_states/railways/black_plated_locometal.json5" +hash = "8d193d3c9ac3e0d84ad09d3d71540d59dce6123b48f64b823a8c9853cd299347" + +[[files]] +file = "config/blockswap/known_states/railways/black_riveted_locometal.json5" +hash = "9cc2388b5bb0b9760a9fceddbd1a53efef76a70858d0ac6504d3aad17cc3bada" + +[[files]] +file = "config/blockswap/known_states/railways/black_slashed_locometal.json5" +hash = "adc47209f4926f3165123f1921cf275b0bb07d5dc36da2ecc409d9e7863fd69a" + +[[files]] +file = "config/blockswap/known_states/railways/blue_brass_wrapped_locometal.json5" +hash = "0c5c96e0b883c787de362c0eb91782cbce2c9d30cc1a6efb0cddadb874a5bc9c" + +[[files]] +file = "config/blockswap/known_states/railways/blue_brass_wrapped_locometal_boiler.json5" +hash = "aa79df3dcac489c8338552dcc0dceb04362b544f718e974117dcb4e646f4702f" + +[[files]] +file = "config/blockswap/known_states/railways/blue_copper_wrapped_locometal.json5" +hash = "d46bbd0eff797e3ebbc889fcadfcccae5d1288f5998ea75c24c7d5a974822c7e" + +[[files]] +file = "config/blockswap/known_states/railways/blue_copper_wrapped_locometal_boiler.json5" +hash = "03a8cf068c56ed9e6be5215a5eefeeab009c07bda311cfd87c495a31f0b7d543" + +[[files]] +file = "config/blockswap/known_states/railways/blue_flat_riveted_locometal.json5" +hash = "89c139aefdf79170670a13e0ee34cc91e7e1396a90961b2aaa604752cddef529" + +[[files]] +file = "config/blockswap/known_states/railways/blue_flat_slashed_locometal.json5" +hash = "3797238bece7e68caffe278633f1f40da50e5c098bbe1fa3d6757d934e87c64f" + +[[files]] +file = "config/blockswap/known_states/railways/blue_iron_wrapped_locometal.json5" +hash = "9e7a9ab17b73356e0498ca91879ee284582732f94505807383ee0526bbd515fe" + +[[files]] +file = "config/blockswap/known_states/railways/blue_iron_wrapped_locometal_boiler.json5" +hash = "ef59e06ecc60c320b360fc77718adce7d045290d79c97668e3b976b21d3284ac" + +[[files]] +file = "config/blockswap/known_states/railways/blue_locometal_boiler.json5" +hash = "9b82fe0d1aa062fc2105806e640ab8c07dc9430110264810e5cb4536ae2a20f4" + +[[files]] +file = "config/blockswap/known_states/railways/blue_locometal_pillar.json5" +hash = "570a21fc820552cdc46be76dccb719a6e51a66875c8ed49c1a49e633e685e5c8" + +[[files]] +file = "config/blockswap/known_states/railways/blue_locometal_smokebox.json5" +hash = "cfca9764c6f786553643bcc8ccd59e14855aad16f42163159c90aca6d0943f38" + +[[files]] +file = "config/blockswap/known_states/railways/blue_plated_locometal.json5" +hash = "49bf341c1cb77d2ebaaa3fbaa3647901de75f874b683ba6104e161e0a86667c0" + +[[files]] +file = "config/blockswap/known_states/railways/blue_riveted_locometal.json5" +hash = "499325efe35269120f3883aa544807d8e67219d7cfd6db02f9fac1743450eaf7" + +[[files]] +file = "config/blockswap/known_states/railways/blue_slashed_locometal.json5" +hash = "04682c23b5be4c946e0f30183d8a4f499a0660b3826140edea22c1016fb750ea" + +[[files]] +file = "config/blockswap/known_states/railways/brass_wrapped_locometal.json5" +hash = "e2f4ffbfee24135dbdf6360f47ac0db15f64d13133dea2ce7c485ad1698f8784" + +[[files]] +file = "config/blockswap/known_states/railways/brass_wrapped_locometal_boiler.json5" +hash = "7fa669cc87fda6ed7abda614cda01986f8a1385d50bc6895b5cf01bc7532cbee" + +[[files]] +file = "config/blockswap/known_states/railways/brown_brass_wrapped_locometal.json5" +hash = "80169538d6a74c64e072939f24ec5b02bbbe715d9bcb75b47c853ed9f9cda7c7" + +[[files]] +file = "config/blockswap/known_states/railways/brown_brass_wrapped_locometal_boiler.json5" +hash = "5ec6775208de1760908b960bb2fcbcb04e9d5cb293a40fa90b3eaeec7abb0cca" + +[[files]] +file = "config/blockswap/known_states/railways/brown_copper_wrapped_locometal.json5" +hash = "4ced5d54d010ed9829b0ceae02de040ced8120959b7b023d341c18bf1fe14776" + +[[files]] +file = "config/blockswap/known_states/railways/brown_copper_wrapped_locometal_boiler.json5" +hash = "a4b5c098a6da1d3fbf3af5478aa9460304122993621d166635f87f742c1f8630" + +[[files]] +file = "config/blockswap/known_states/railways/brown_flat_riveted_locometal.json5" +hash = "391b203ef0b74c2bbe10e7ff13d3a8f04bee95077ea2a11fc11dd939b887b1d1" + +[[files]] +file = "config/blockswap/known_states/railways/brown_flat_slashed_locometal.json5" +hash = "a0a51298f093c3b098a2abec0301177eadfa15dcdd6c39e9e2e0cb5274c2702f" + +[[files]] +file = "config/blockswap/known_states/railways/brown_iron_wrapped_locometal.json5" +hash = "d38c5183339b8b42af68044437dbff824cddd72b2ffaa99976f7d705b82b6b4b" + +[[files]] +file = "config/blockswap/known_states/railways/brown_iron_wrapped_locometal_boiler.json5" +hash = "52513b14a95affafb505c4324227e3ea0e661842879c4dcb288caf6c3eac421f" + +[[files]] +file = "config/blockswap/known_states/railways/brown_locometal_boiler.json5" +hash = "11536b271f694a1aa7a120c4374b1b68765d5bb9af68deea948cf29043fac490" + +[[files]] +file = "config/blockswap/known_states/railways/brown_locometal_pillar.json5" +hash = "9e4816ddc88423442c532a6d26c535f664994cda8fdcc0ce49ddbdc87904ef59" + +[[files]] +file = "config/blockswap/known_states/railways/brown_locometal_smokebox.json5" +hash = "acadcf92e5e39b8245013dd18fa0d955406c1890db984e5315239ef337c13b92" + +[[files]] +file = "config/blockswap/known_states/railways/brown_plated_locometal.json5" +hash = "37a3bd5ed756114089d830bbe398748e1a387cd1601db0f2072e6117c922536c" + +[[files]] +file = "config/blockswap/known_states/railways/brown_riveted_locometal.json5" +hash = "74fa867605ee7aeaeb8edce3c716930b2aceb89e4cda28eaeb066633533a8cbf" + +[[files]] +file = "config/blockswap/known_states/railways/brown_slashed_locometal.json5" +hash = "51e69053a41890e40e12f0baf3a72d9642b0ff3691b9e0ddb4843512a212af4a" + +[[files]] +file = "config/blockswap/known_states/railways/buffer.json5" +hash = "050c30fd9e637885f2fa8c36ec659bec78649e0f728bd31e3b23fee0b270b5cd" + +[[files]] +file = "config/blockswap/known_states/railways/buffer_mono.json5" +hash = "e30445d3ed9574c81b00d2985d07536f579430ac15f55e9e2194b1c5a3394073" + +[[files]] +file = "config/blockswap/known_states/railways/buffer_narrow.json5" +hash = "adf56d218f471a41b858b4c55392c90bf647df267e7e985ddcf1e3f2385e9556" + +[[files]] +file = "config/blockswap/known_states/railways/buffer_wide.json5" +hash = "3148ec8397b1c6d7b2ede7678d2b3d52f826796af51db9046b8e87a34d2ad25f" + +[[files]] +file = "config/blockswap/known_states/railways/casing_collision.json5" +hash = "c9bc3e463b7228795f4e5fa2cfda330e1ec1ec15f6e396b0dfa348679ae16498" + +[[files]] +file = "config/blockswap/known_states/railways/conductor_vent.json5" +hash = "781d04575b947bcb44dd26691d86253b450734497156c19b43fbc6c6446964c9" + +[[files]] +file = "config/blockswap/known_states/railways/conductor_whistle.json5" +hash = "8850738aeb17ac979f52496a190b6814830c930595d2fed7b0d0df444338f862" + +[[files]] +file = "config/blockswap/known_states/railways/copper_wrapped_locometal.json5" +hash = "5e2f788e7b5b142fa45512c4df573177948e9f20cc994036031dfc5985cc855f" + +[[files]] +file = "config/blockswap/known_states/railways/copper_wrapped_locometal_boiler.json5" +hash = "85537716e09d68d7f9d71274fbdf047927701aa43649ba8ac6de24be31c677a9" + +[[files]] +file = "config/blockswap/known_states/railways/copycat_headstock.json5" +hash = "9fc62b4656a7a56e3e2452f6ad8d33da4e87d319f2786c0a8380ddaed184bb84" + +[[files]] +file = "config/blockswap/known_states/railways/copycat_headstock_bars.json5" +hash = "04d7e7b88b4df2ed222f7852f2e7aa6b9a3b4cdc801123b08a3e1b360f8ea731" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_brass_wrapped_locometal.json5" +hash = "59f520e2079e7d6cdc02d151d093b2b98261bedcd36a95346dc191c0ad2f3240" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_brass_wrapped_locometal_boiler.json5" +hash = "57fba9c90f1c23f8fab84a4597892aacd3883c049273c46b291e4f76b860c5fe" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_copper_wrapped_locometal.json5" +hash = "f9a3c4bc79128237636c2d56cf3799ebfe647e326b076b6eb3a5c64b3115dd69" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_copper_wrapped_locometal_boiler.json5" +hash = "3081face40f0874f25e1e604bca1bd113d7968d654e94557beb366d95b06580e" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_flat_riveted_locometal.json5" +hash = "f80da9ab78519318fe4392f1cd721b3434359a4d92109c58225c9ab629a1ee08" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_flat_slashed_locometal.json5" +hash = "065b6b1de060f74c8b6e6c2755a946b6579ffe04d25394ad850e5a84bb663536" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_iron_wrapped_locometal.json5" +hash = "f0e1f09aba8ee6081c97449a70435fed0976f46303606fc3fbd092c7ac1d8dfd" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_iron_wrapped_locometal_boiler.json5" +hash = "3af6dfd3dfa7b59362f26a5e26c03d31dc43c2b4cf42c0a8f4a681fa05a2fd0f" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_locometal_boiler.json5" +hash = "9874fe9aa272939125a5d152f4ae8f22609ff3085e5015c21d472a7b1b2ec304" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_locometal_pillar.json5" +hash = "65199a1b21d02d48a9bfbff426e81edf52dfe43694673d8b6eaaa28f2cabfcd1" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_locometal_smokebox.json5" +hash = "058aed5e0bbe05b314aae71f664d28716f3e9d596ba4f039da0b100a59d6bbf3" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_plated_locometal.json5" +hash = "e2c2a06af52c53f09fd3ccecea0d5ed5c27b1504d21b8f7d6f9589d4a0fcc0a5" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_riveted_locometal.json5" +hash = "09d5d37592ff2b591b8db2210372b8ad9f6170c4fb44a483c626f20d609be508" + +[[files]] +file = "config/blockswap/known_states/railways/cyan_slashed_locometal.json5" +hash = "a574dbd3e84407e7bd57575489e62e7ed420cbec45241d7e36fe33a5f091201d" + +[[files]] +file = "config/blockswap/known_states/railways/doubleaxle_bogey.json5" +hash = "8deb6d688e6088fa1eaa171450647dc9f87ff47aae6e1b26024cedf860c507f3" + +[[files]] +file = "config/blockswap/known_states/railways/flat_riveted_locometal.json5" +hash = "b8ba47ab6ceeac42c424e85b98fbb7b15c013ad15f77ac0a7cc2d65e050604b3" + +[[files]] +file = "config/blockswap/known_states/railways/flat_slashed_locometal.json5" +hash = "d5c2ce82001b6ddf61d5e25cffddcf82408c477fca288ae00f74f38eb836ed4c" + +[[files]] +file = "config/blockswap/known_states/railways/fuel_tank.json5" +hash = "4229bc2b2990f8a697098ebac437d0f21ad367b399a03236a9ff92c53ae8c3f1" + +[[files]] +file = "config/blockswap/known_states/railways/generic_crossing.json5" +hash = "8714a5abca91ab1dd1a0c94044629e5a7e96998f45b170d21792d947c32dc2f0" + +[[files]] +file = "config/blockswap/known_states/railways/gray_brass_wrapped_locometal.json5" +hash = "16af2a50a4e0c20a2d4967c78919814b29cfb0e156bc4c24b4ed4099bfffc1f5" + +[[files]] +file = "config/blockswap/known_states/railways/gray_brass_wrapped_locometal_boiler.json5" +hash = "ffa9bcac59251e3d5bcec4dfc68076f59b308fe19d5469d4f0a31247c8172144" + +[[files]] +file = "config/blockswap/known_states/railways/gray_copper_wrapped_locometal.json5" +hash = "f5de48e4eae924e04f6aa85d38a3ab8325aec97c7443ff0cbc53684e3fed02e4" + +[[files]] +file = "config/blockswap/known_states/railways/gray_copper_wrapped_locometal_boiler.json5" +hash = "50d7ac695d48862a82eb674df52ab4f62cf7361b650bf7e68cf639928f26f837" + +[[files]] +file = "config/blockswap/known_states/railways/gray_flat_riveted_locometal.json5" +hash = "50ecfe1237897cbff52ef08287d167fa57f3b2758c78b6527bb323c78aa2864e" + +[[files]] +file = "config/blockswap/known_states/railways/gray_flat_slashed_locometal.json5" +hash = "bd29cc7ca9d9e75a934b18e3f673ec35bb62b040cc1da840e60b10ae14cc16fe" + +[[files]] +file = "config/blockswap/known_states/railways/gray_iron_wrapped_locometal.json5" +hash = "a2200d2ad5c13d8783d928bdc3005219b16bbbc68861df1b5f2e3611bbc64933" + +[[files]] +file = "config/blockswap/known_states/railways/gray_iron_wrapped_locometal_boiler.json5" +hash = "0b234f2af5767d1242f51ea6d420f1ddd24b242dd48dced688f4834a70ffc72b" + +[[files]] +file = "config/blockswap/known_states/railways/gray_locometal_boiler.json5" +hash = "6966dca21a96d575f2cf7e100ecedd5e93451c03de91142cb9635d2348e2bf21" + +[[files]] +file = "config/blockswap/known_states/railways/gray_locometal_pillar.json5" +hash = "8d90e1a3ab560bd5f78cc63ad7e3824cc3027e94f522f5c3d0ab8ebcba3e8759" + +[[files]] +file = "config/blockswap/known_states/railways/gray_locometal_smokebox.json5" +hash = "7ab9eeaf1751a73fc1bb3978cc468fd13d8895f2990b67d69259a4f202d64165" + +[[files]] +file = "config/blockswap/known_states/railways/gray_plated_locometal.json5" +hash = "7385f379b42dfa09791aefc9979ff6b25bceee75a48e582bb8f0b73ec4dff977" + +[[files]] +file = "config/blockswap/known_states/railways/gray_riveted_locometal.json5" +hash = "d29edf91b0fed5bfe9dac1f3ebfeacd6bc996eb9183ed7c5a6b4a5566ea9994a" + +[[files]] +file = "config/blockswap/known_states/railways/gray_slashed_locometal.json5" +hash = "3225f5cdf4ec62497f252ab886d10b1148fc5cc859df22e88d8f33fca689fcf8" + +[[files]] +file = "config/blockswap/known_states/railways/green_brass_wrapped_locometal.json5" +hash = "f07bf2ac65ee501c43076c24b8e0bf054623db9dc556808322717067a88089cb" + +[[files]] +file = "config/blockswap/known_states/railways/green_brass_wrapped_locometal_boiler.json5" +hash = "faf3cb22985a4566dd3150528b99d640671de3d2a23330c49b73b3129181edec" + +[[files]] +file = "config/blockswap/known_states/railways/green_copper_wrapped_locometal.json5" +hash = "37af238b40e206c6f514f70ebfd4378dc1bc38008d518ea848e81017c1db3246" + +[[files]] +file = "config/blockswap/known_states/railways/green_copper_wrapped_locometal_boiler.json5" +hash = "aa7ea53ae9a4887df5d2f99349d3d998df8a9412c0e9773e714d65e7f8b184b8" + +[[files]] +file = "config/blockswap/known_states/railways/green_flat_riveted_locometal.json5" +hash = "29d96ebb805b5e61cf79472297b342725b7dc5106076c91bdee556de9ea579ba" + +[[files]] +file = "config/blockswap/known_states/railways/green_flat_slashed_locometal.json5" +hash = "70941262ced064a14a90ba8fce9bb5862dfb3c9094d63b44dcb724ffc9e23f89" + +[[files]] +file = "config/blockswap/known_states/railways/green_iron_wrapped_locometal.json5" +hash = "4d1908d7144ae004bcc3d8fab505fcba72348d0daebd94fb85f59e90053d822c" + +[[files]] +file = "config/blockswap/known_states/railways/green_iron_wrapped_locometal_boiler.json5" +hash = "4e81a86d7e3ca591e1734100c8572fe8c6dd4cf0a53932bf5b952ac1baa15d48" + +[[files]] +file = "config/blockswap/known_states/railways/green_locometal_boiler.json5" +hash = "e1f3ec50233f8fba6af8b186e2c29d8eb97e763db44f465d60174333f9b2cbe8" + +[[files]] +file = "config/blockswap/known_states/railways/green_locometal_pillar.json5" +hash = "1ba362af73675850e68fb14ac001f4a38aa4809197603abe8455a15318c6010e" + +[[files]] +file = "config/blockswap/known_states/railways/green_locometal_smokebox.json5" +hash = "d066d8e83c8ebb0d2e474d67282ed0ab06cd0e4c5820fbe570a226c670056748" + +[[files]] +file = "config/blockswap/known_states/railways/green_plated_locometal.json5" +hash = "e7c8086acd1d584e3d0aacefe7b1a596017e60cab6bce6ff6155614a0826c376" + +[[files]] +file = "config/blockswap/known_states/railways/green_riveted_locometal.json5" +hash = "0e37b784fa41d06d2216a54f7625b4e607f5dfc27632599d5b6cbb2c97d66b4d" + +[[files]] +file = "config/blockswap/known_states/railways/green_slashed_locometal.json5" +hash = "59251ce04cc4aa11dd0b75dbd51241293fab6059481c15ddd47014acc7a7ec13" + +[[files]] +file = "config/blockswap/known_states/railways/handcar.json5" +hash = "dc997b59d348dc79436ee6e27f0c787a4f4096e0bd63b7500373681a7a35356c" + +[[files]] +file = "config/blockswap/known_states/railways/headstock.json5" +hash = "ab2db352d66f5a93c29d2e648acee0e68afc0765844ae3531118e52916f6f430" + +[[files]] +file = "config/blockswap/known_states/railways/invisible_bogey.json5" +hash = "325f9d143d5ceb925c9327ef9b8b2c0b8fb624bddb7e85553db4bb26089223e9" + +[[files]] +file = "config/blockswap/known_states/railways/invisible_mono_bogey.json5" +hash = "def3a9fa2b46773a39e644e59868babaf3d766b32c69c673db850c44f276e54c" + +[[files]] +file = "config/blockswap/known_states/railways/iron_wrapped_locometal.json5" +hash = "8de5b822c80f7dd280974a701da79410f1953e00e292c67babc7f59eaf21cb89" + +[[files]] +file = "config/blockswap/known_states/railways/iron_wrapped_locometal_boiler.json5" +hash = "7f48fa86bf1415b93d07dc5696620f6898000042ae5267a42c692da0e7ab6106" + +[[files]] +file = "config/blockswap/known_states/railways/large_create_styled_0_10_0.json5" +hash = "424c7ca82a247817ee4e8a9b00e6af8e5b18a9461bbeffba34b792bae98d69db" + +[[files]] +file = "config/blockswap/known_states/railways/large_create_styled_0_12_0.json5" +hash = "1860dab21732225c46ddd95ca7d0c6da6c366916f9049063cfae587a8d941a86" + +[[files]] +file = "config/blockswap/known_states/railways/large_create_styled_0_4_0.json5" +hash = "58838d62754d31b8df5c6e8e9fc55db773bdcad1f1203a6e3c5ad19d9fd79e68" + +[[files]] +file = "config/blockswap/known_states/railways/large_create_styled_0_6_0.json5" +hash = "fa7736e1e77a47caf35fe52313a3da6671bb660422a2ad198ad7510f0fe3c957" + +[[files]] +file = "config/blockswap/known_states/railways/large_create_styled_0_8_0.json5" +hash = "be99d72cc0a3e6e0d297088b04a99a64d74f90dcf618225e793c9672dc2c3274" + +[[files]] +file = "config/blockswap/known_states/railways/large_platform_doubleaxle_bogey.json5" +hash = "6d6ac896da687364cbc289c63558c26f71283d62d2f61c93b00e66122b483f4c" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_brass_wrapped_locometal.json5" +hash = "e7be77ef9300418df443a76bc582e3c6847029c68c940204003aa8641e0b6cbd" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_brass_wrapped_locometal_boiler.json5" +hash = "ffb0f4c03035c7c7582d52d37d0cf20d1013a001a1760ae32d307abb03e3b0ad" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_copper_wrapped_locometal.json5" +hash = "8e421f2661d6528187c7d0fb1732f4299cd50af119c46cfb515733971a177fb1" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_copper_wrapped_locometal_boiler.json5" +hash = "b655e193b177736327b0499be55f46b1f74ac50eeba836358ce2ddf4db343163" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_flat_riveted_locometal.json5" +hash = "ea455917f24ae277b7d4191a67c3588855387c5188c0833ac4a1b8c1ff8cd14f" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_flat_slashed_locometal.json5" +hash = "df3660b7bd10f8c9ad7890a54024ded27ece4520e2baa269b759c5844de9ab94" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_iron_wrapped_locometal.json5" +hash = "bcb5b3ab5be5b1db806a3c21b0dde5d4bcdf261fbdd15849e72d8f8a691fb9ee" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_iron_wrapped_locometal_boiler.json5" +hash = "dda87ff7f4366bbc68ac5544ecf01f84a6a55d6d371a9c3091e935f32298dcb5" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_locometal_boiler.json5" +hash = "e9afc29c7271e7e2832775856726e398ff13920f83fd55eae65e88ee2f909750" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_locometal_pillar.json5" +hash = "3275e8ebf381840837d9efef767a705942a0ae6faa0b6ffbcbcfb8d24bd14428" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_locometal_smokebox.json5" +hash = "7563dca7318da7bf2e235726de1c96e42e58b19154dd3523fae8e9a00fcc43a7" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_plated_locometal.json5" +hash = "72e1500341925a7da8abec83c8fd1a14ceb8ac469e533860a5cd7702babd465d" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_riveted_locometal.json5" +hash = "9792a9c0748631c978dcbd53e3c103d994a47a3c6339c0541569cb4b2be387d1" + +[[files]] +file = "config/blockswap/known_states/railways/light_blue_slashed_locometal.json5" +hash = "9b6ad433d16f40f0000dfe8e3c3d69e5bf07979d14bf4844fa4a94dfca440537" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_brass_wrapped_locometal.json5" +hash = "49e21d1a8fefce8e83422fc78154ab43784c237a3864a16a88a61003ef6679e3" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_brass_wrapped_locometal_boiler.json5" +hash = "233511d7fde304a22c0d045b227482f7146a197656da935db6a83b69d0fb543f" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_copper_wrapped_locometal.json5" +hash = "601540afd249d4f5033aeac9bccc1e60f73acd7e7a6e36f0e5b93891ebc72b2d" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_copper_wrapped_locometal_boiler.json5" +hash = "2997df649fbceee6995c29a186458122259efd3cae16f3ee230410e4be5b67aa" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_flat_riveted_locometal.json5" +hash = "c0ef55d5d78ee8cad5a62dd56e9a15a50b182aa6881718892844eb3f5edf15fd" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_flat_slashed_locometal.json5" +hash = "e14a59f132e213c094067bc0175870dc1c2e1018a8f2c1f46c7de86e95f8ec2a" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_iron_wrapped_locometal.json5" +hash = "b7af64f38bc08c2d6436eed94271843a7f9aab9eaa9fed769d401f06bcfc92a5" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_iron_wrapped_locometal_boiler.json5" +hash = "0393c9d1609ca3d64f706fea1fb9c945636e75c5da70ca67e72f858e7bc325d1" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_locometal_boiler.json5" +hash = "9a2f96d41cccfe856d8cc7ac05126fb485197e8705743b6dafc42a264264b660" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_locometal_pillar.json5" +hash = "79b9e105b09945cc3b90fc20672179cbb7719fee9cc9420f12fb34fd3f461e03" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_locometal_smokebox.json5" +hash = "e58416fe9411dfda00fad563ec30a9499d790aef8b83d6d4d5b4c43fc35b1534" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_plated_locometal.json5" +hash = "0ab802a8d859cd9f6a263f0f325eba2794d3db905a936e102d554c91ab02dbca" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_riveted_locometal.json5" +hash = "d078bdab2a49d083230621775ea3b8cfb53082c8ff1286177a6729c3da89c13e" + +[[files]] +file = "config/blockswap/known_states/railways/light_gray_slashed_locometal.json5" +hash = "ccadede3bb122146f5caedfb0e34aeee473ee84e4f26e660afb6b88d47800e67" + +[[files]] +file = "config/blockswap/known_states/railways/lime_brass_wrapped_locometal.json5" +hash = "fdcaf4f2063b16f3eb1b7841df1acd2f341575e9d6d4000d85c4ad3a3d84dde3" + +[[files]] +file = "config/blockswap/known_states/railways/lime_brass_wrapped_locometal_boiler.json5" +hash = "2d42a84c3d2f7297d67fd90522570181467f6201e412d0c76861abd9da5efaeb" + +[[files]] +file = "config/blockswap/known_states/railways/lime_copper_wrapped_locometal.json5" +hash = "cb05eb2b9c34fe366bf804a148ab3fcd7e8cb65e6b26de1247d90f6533f33d37" + +[[files]] +file = "config/blockswap/known_states/railways/lime_copper_wrapped_locometal_boiler.json5" +hash = "d25ef37b646dce07d862618a91dbb6e9fc5b72797850b9bdb029b0202f5de7bf" + +[[files]] +file = "config/blockswap/known_states/railways/lime_flat_riveted_locometal.json5" +hash = "51244c81a4698ea7003a060ad5d1bec08964e0e76bf4a8a64c2cb6ec38af47b7" + +[[files]] +file = "config/blockswap/known_states/railways/lime_flat_slashed_locometal.json5" +hash = "9f460fa715d23afc93a27736daa4b75be31b15738b08fe31765d74f189314f41" + +[[files]] +file = "config/blockswap/known_states/railways/lime_iron_wrapped_locometal.json5" +hash = "a898e14dd3e97583a56926a74f87de24ba765a3a4ee7229db242ca6f13e6bfd0" + +[[files]] +file = "config/blockswap/known_states/railways/lime_iron_wrapped_locometal_boiler.json5" +hash = "f5b71e4848f331715b6f5575a3786e170061013555d4abbaff0dcb4a928cdc05" + +[[files]] +file = "config/blockswap/known_states/railways/lime_locometal_boiler.json5" +hash = "2c7888bfddb268b80c9d89505b39e134ba6f5ae6a953cdd847d59d2bb35e4e84" + +[[files]] +file = "config/blockswap/known_states/railways/lime_locometal_pillar.json5" +hash = "1b89b74e1ba90890677184cdb9747a019d0a5db5f74d85a1fbb1a947ec9ee016" + +[[files]] +file = "config/blockswap/known_states/railways/lime_locometal_smokebox.json5" +hash = "359bfda2c8b598117f27ef73bd95592f310d399e55edcadb110d3578c114b8cd" + +[[files]] +file = "config/blockswap/known_states/railways/lime_plated_locometal.json5" +hash = "2f87fc9d97e411522fb368eb08c53142a1d0002c1031e3933cf2452d22d264db" + +[[files]] +file = "config/blockswap/known_states/railways/lime_riveted_locometal.json5" +hash = "80c527aa3b0e8c91396119a6408d63608c39d0d399eeac3c4a91a793b153029a" + +[[files]] +file = "config/blockswap/known_states/railways/lime_slashed_locometal.json5" +hash = "5e1151a16927bdfbb843873ea09cac1a0c68c79ffc41ee4b18184481a7603a4c" + +[[files]] +file = "config/blockswap/known_states/railways/link_and_pin.json5" +hash = "b8266eb220d6a589efb5676941798d131f6ba79466bf1a7140ad31c1c20eea77" + +[[files]] +file = "config/blockswap/known_states/railways/locometal_boiler.json5" +hash = "b3c0194f27ea95b81ed2b1ad51a430c05a9b92a899d66ece77030d58106e5e5c" + +[[files]] +file = "config/blockswap/known_states/railways/locometal_pillar.json5" +hash = "96df6e461298c47854455a71c93860c4c871fbdd253d127eb36d1ef282456d27" + +[[files]] +file = "config/blockswap/known_states/railways/locometal_smokebox.json5" +hash = "04fe868106bb3ce8dba249aa8a8ae3b585a9f73df0ead624e7fe689b1a23dfff" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_brass_wrapped_locometal.json5" +hash = "97fc821b948a1abe468db915b0420767a3f9815e9b2158a7a6db36a63fe2c7a4" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_brass_wrapped_locometal_boiler.json5" +hash = "653e123b67885e137a44987bfd3152fe3d32f88a1853b90bdf5f85a60625e2d4" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_copper_wrapped_locometal.json5" +hash = "0a6f09586cd6891a9f3df3a4d5b22994c18e021027c7db15a18755aee9bb0717" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_copper_wrapped_locometal_boiler.json5" +hash = "a4bf8a71ef5189739a8e9edfa9a8ab6f102e34ef7f8e8187e59265279e9e3e16" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_flat_riveted_locometal.json5" +hash = "e5a4fb8e3c7340711ffb8e013e927c00636f7f66bb6dc1fd9566b7f25e9129db" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_flat_slashed_locometal.json5" +hash = "37e368cc833de6f7d81be8b01fcc21cf3e17d4ab5f35411319c0b411d2a226fc" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_iron_wrapped_locometal.json5" +hash = "f20d467bae075ef878263245b30e4389b17c4229663a6be27c3eea7cfe1a0999" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_iron_wrapped_locometal_boiler.json5" +hash = "9084820eb3f9f8410cf34a42a2f0a88c423e3fcfc62cc8402128f72f17735303" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_locometal_boiler.json5" +hash = "d42d232ee39d04dd68b687f2d052f20c3eab2a6f8d8392b5c675ea6f796f9a85" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_locometal_pillar.json5" +hash = "0af98e7a974662f6649cb27f8aeb0948056d6c049dec2f0d0a5b83fc557ebd22" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_locometal_smokebox.json5" +hash = "73013ab3fe0cd5cc6c9471d2c9e7deace7f79c6c580e80e858c9b5cf3309f9d2" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_plated_locometal.json5" +hash = "c2eea4f6bbe9d405900a109ca1c280d38da9b833340396d7ec8e5be00de1ce66" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_riveted_locometal.json5" +hash = "3239d5e01f0b5be12258391f38211b80c1dc680c24c8188b06c9da6a2512feb1" + +[[files]] +file = "config/blockswap/known_states/railways/magenta_slashed_locometal.json5" +hash = "b9866cd565f5907d8c0cefe2d2894bb9ecb985e20d865e79344bb99c0c046ef0" + +[[files]] +file = "config/blockswap/known_states/railways/medium_2_0_2_trailing.json5" +hash = "76a36fdca2151be389a188b3f413f7fa658fb253c1e135714afd6b496daf5dbd" + +[[files]] +file = "config/blockswap/known_states/railways/medium_4_0_4_trailing.json5" +hash = "720e9f523368cc6126e6c486fd1da20a3dfb78b1900efe87300ab8ea96d196aa" + +[[files]] +file = "config/blockswap/known_states/railways/medium_bogey.json5" +hash = "ee7870816a5c558be1214b9149170e7cd19f105fa6fa92051976a12a9ef8e374" + +[[files]] +file = "config/blockswap/known_states/railways/medium_quadruple_wheel.json5" +hash = "76314744c268cf0c374b1ec5e27e435bbc539e207b03d75c25ff320ffef0b00a" + +[[files]] +file = "config/blockswap/known_states/railways/medium_quintuple_wheel.json5" +hash = "9796568f710ed1e8d1f7764991dad2c77e49349e0d0ba890a1073d5b12c6b3c8" + +[[files]] +file = "config/blockswap/known_states/railways/medium_triple_wheel.json5" +hash = "2374b91b0e129a4f17201a044fde9e46cb0ee748f773e959eeaea82c2ef10aa0" + +[[files]] +file = "config/blockswap/known_states/railways/mono_bogey.json5" +hash = "f192efeccc7af74075125a7f2ef15b9dc1844fd384927dcb2c635dc6d56e3f26" + +[[files]] +file = "config/blockswap/known_states/railways/narrow_double_scotch_bogey.json5" +hash = "892d8661ac0ab727e9660abb4b9fb945d33f3fe3925dd4443af629a7df4c7ebd" + +[[files]] +file = "config/blockswap/known_states/railways/narrow_scotch_bogey.json5" +hash = "2b8821f7cb51721454827631f4db32ddbf6c18bceb9d53e5148e4358e5c676df" + +[[files]] +file = "config/blockswap/known_states/railways/narrow_small_bogey.json5" +hash = "01fe58ef710d3ac53a231fdc47bc94f67d1d1e70af0b1cc511b630a1a9beb8ff" + +[[files]] +file = "config/blockswap/known_states/railways/orange_brass_wrapped_locometal.json5" +hash = "38f6732c7dfb64616e2de88faea13139fbbd01ff904f7330e9553f0a438646de" + +[[files]] +file = "config/blockswap/known_states/railways/orange_brass_wrapped_locometal_boiler.json5" +hash = "6fd1b4849ddd0a7df0bbf5abe04272cdd9058d482b89775c0f09fc549e7026b4" + +[[files]] +file = "config/blockswap/known_states/railways/orange_copper_wrapped_locometal.json5" +hash = "e51ac8bbef8f161909a64890d9e6a187997c403e65c399ea7b9c9001345355f9" + +[[files]] +file = "config/blockswap/known_states/railways/orange_copper_wrapped_locometal_boiler.json5" +hash = "4f95dd2ebe90a36a9cfa1d7bdd9b19cd9b2594b81f35d9fd432d90ee205f3e05" + +[[files]] +file = "config/blockswap/known_states/railways/orange_flat_riveted_locometal.json5" +hash = "4a2a83d361d897199c376bedae055b6eb782804e8083ac9148b7b2d1ca5f4156" + +[[files]] +file = "config/blockswap/known_states/railways/orange_flat_slashed_locometal.json5" +hash = "5ecf7751737f9dc8bd70f7d9a2c278a5df0302c047a048f4daaaa7068f58ad53" + +[[files]] +file = "config/blockswap/known_states/railways/orange_iron_wrapped_locometal.json5" +hash = "471a51f71ab87311694c9df72a51510a79c42d3b88f64a582cef8bf7e567cf7a" + +[[files]] +file = "config/blockswap/known_states/railways/orange_iron_wrapped_locometal_boiler.json5" +hash = "65d56eb9c2ed320e120686d7d6d7dfe61ab19ee84ab02802ed148c96da0bcb0e" + +[[files]] +file = "config/blockswap/known_states/railways/orange_locometal_boiler.json5" +hash = "bcea7739e12ae2ec34f453e9b75477a14cb6ea83ab863a58f573465ad708800c" + +[[files]] +file = "config/blockswap/known_states/railways/orange_locometal_pillar.json5" +hash = "73b496d6fd11b9f770b6bcbfb3e292800baa777f26ba80da4a7b60abe6d1b41e" + +[[files]] +file = "config/blockswap/known_states/railways/orange_locometal_smokebox.json5" +hash = "880733350c65c5c17902609081bf035d11b49b85618c2396b41ff10c5c537f25" + +[[files]] +file = "config/blockswap/known_states/railways/orange_plated_locometal.json5" +hash = "5ac834b64a3d7351b507a24c3f683b3b71eaa73ea0395733657e8107b990f64d" + +[[files]] +file = "config/blockswap/known_states/railways/orange_riveted_locometal.json5" +hash = "23beedd266031d128c6e2e854f03a66aa23c20486e3ef10751ff13f21479dd7d" + +[[files]] +file = "config/blockswap/known_states/railways/orange_slashed_locometal.json5" +hash = "d9bb33cc7c4bde3784f605b154528962b013d56249792499a1e140ba15e7d1d0" + +[[files]] +file = "config/blockswap/known_states/railways/pink_brass_wrapped_locometal.json5" +hash = "c90bc4389595fed5b5a746e3ba90abaaddb10e5f121a6490042f90eaed0feeb7" + +[[files]] +file = "config/blockswap/known_states/railways/pink_brass_wrapped_locometal_boiler.json5" +hash = "c3904b649b5cc3f64cc59ac4bd080ebcef8a694a81c5e3a186ba7473be4ae8fc" + +[[files]] +file = "config/blockswap/known_states/railways/pink_copper_wrapped_locometal.json5" +hash = "302b1f1b9d045088be76865bed9e70578e14e9d7079240a71491e078dc6c6a64" + +[[files]] +file = "config/blockswap/known_states/railways/pink_copper_wrapped_locometal_boiler.json5" +hash = "2fac97063be33a6f1af3bd1ff4a6fb3fa40acac60fe7cbb968e9a674b43b108d" + +[[files]] +file = "config/blockswap/known_states/railways/pink_flat_riveted_locometal.json5" +hash = "d5be48f59e53f337e643ba6c915cd19ab336c5e6707dcf2b282dd5dac00dd0eb" + +[[files]] +file = "config/blockswap/known_states/railways/pink_flat_slashed_locometal.json5" +hash = "6faa9639aed524d0395d0f72b1b029007b856f9e1d8caa2691bae47287456538" + +[[files]] +file = "config/blockswap/known_states/railways/pink_iron_wrapped_locometal.json5" +hash = "3f220b37890fcfdc0d22fbbc3fee4d6ff5306c29bf0c2ea4d806d8cd63b8636c" + +[[files]] +file = "config/blockswap/known_states/railways/pink_iron_wrapped_locometal_boiler.json5" +hash = "5689731bf23c51be404441b2d7068b420dac9a4bbbdfa0f6bdedd61a15877f97" + +[[files]] +file = "config/blockswap/known_states/railways/pink_locometal_boiler.json5" +hash = "95504275cad7ef09c96a047cd252244f400f57bc47e517131fe030ceb8a47fa1" + +[[files]] +file = "config/blockswap/known_states/railways/pink_locometal_pillar.json5" +hash = "4e41a6b0051021413e9c1ac4a31e880ea70e8e653d25951e92edb91adfc46a8e" + +[[files]] +file = "config/blockswap/known_states/railways/pink_locometal_smokebox.json5" +hash = "28202587e87c93a4de6300b310c2e5f819df5352912f10864c30e94e5bb66aa7" + +[[files]] +file = "config/blockswap/known_states/railways/pink_plated_locometal.json5" +hash = "6ac45eaab1a726a0fde67673d97cc3e4bd56437d2d6b5975151129d8969c5f2b" + +[[files]] +file = "config/blockswap/known_states/railways/pink_riveted_locometal.json5" +hash = "4c49acc1ff7f51f67f8f5dce9522f726ecd191811fb50f230f561f5f2f2c33a5" + +[[files]] +file = "config/blockswap/known_states/railways/pink_slashed_locometal.json5" +hash = "d165ab75abefdd555b2e2377b95e3c0899607deaba447aa96db07c4104f26768" + +[[files]] +file = "config/blockswap/known_states/railways/plated_locometal.json5" +hash = "d7596dadc7304d9f8cb3cfc9832e626edbb92091d22933e2154383d9c5f76479" + +[[files]] +file = "config/blockswap/known_states/railways/portable_fuel_interface.json5" +hash = "219ecf199af0c9da661266b624c6fa8269159053063f4e193cc7e3d5fce653a6" + +[[files]] +file = "config/blockswap/known_states/railways/purple_brass_wrapped_locometal.json5" +hash = "103c0da0816c135d1ea300ddb182961b7d854329fffb8ea108d8b82188b66973" + +[[files]] +file = "config/blockswap/known_states/railways/purple_brass_wrapped_locometal_boiler.json5" +hash = "c27cfb0852c4f32234006296becd629d5705fba93a63e50c5cdd4dac229449bf" + +[[files]] +file = "config/blockswap/known_states/railways/purple_copper_wrapped_locometal.json5" +hash = "8cd2af1c635fa766ca6a3477a10e2ebe6be01fee0f81b680d205c47686be82a5" + +[[files]] +file = "config/blockswap/known_states/railways/purple_copper_wrapped_locometal_boiler.json5" +hash = "7c8cf4aa6b5a57d591e4aaf9436293551d93849552b637c2a0cb86973476ca93" + +[[files]] +file = "config/blockswap/known_states/railways/purple_flat_riveted_locometal.json5" +hash = "1766cf287bd4c712fa65d5f13ab43f70042b7d0db5b3ed36c295a6425069442c" + +[[files]] +file = "config/blockswap/known_states/railways/purple_flat_slashed_locometal.json5" +hash = "1b443e383db9b6126e2062f50412e4eb863b332405ecf28d54354e55686b0b60" + +[[files]] +file = "config/blockswap/known_states/railways/purple_iron_wrapped_locometal.json5" +hash = "68733a278eade48fcb2ba188bfb183673b2d1cd6f9b0de57ae10e5c660c6e39b" + +[[files]] +file = "config/blockswap/known_states/railways/purple_iron_wrapped_locometal_boiler.json5" +hash = "19b474af55fcf14966b48f77135bba6b6f33789cce327c4d9b0a9ce8eeaa5831" + +[[files]] +file = "config/blockswap/known_states/railways/purple_locometal_boiler.json5" +hash = "623d377ba152c8f00d2addffbb965a7bac9b5e86a74f1522d797e14d21f93a59" + +[[files]] +file = "config/blockswap/known_states/railways/purple_locometal_pillar.json5" +hash = "4a9ec93af1e69b3b6700b612ff43b26563e7d526596bb1ebc8c98a21891cfe74" + +[[files]] +file = "config/blockswap/known_states/railways/purple_locometal_smokebox.json5" +hash = "99318a2e3ca0d25c5691f8b379f308b74a63525610942aa0a786d6d73ea49196" + +[[files]] +file = "config/blockswap/known_states/railways/purple_plated_locometal.json5" +hash = "2b2c7e7c16d37fefcf7a8d3a4c471c6997a0bd844ba389e18fa924aaeb3ab39f" + +[[files]] +file = "config/blockswap/known_states/railways/purple_riveted_locometal.json5" +hash = "aaac2f779b1e6fe30d71b0077545f9250aea969a72f130420e747dac2ec0b94a" + +[[files]] +file = "config/blockswap/known_states/railways/purple_slashed_locometal.json5" +hash = "31a312ac713ecd4c0a2fa7ec865a6ecbb08171782b8f5a68844235a4c6c0016c" + +[[files]] +file = "config/blockswap/known_states/railways/red_brass_wrapped_locometal.json5" +hash = "a7be5f8220c2340fa2700342a0b7529cd792d7a9e00bb6bab66a9925a3763bf1" + +[[files]] +file = "config/blockswap/known_states/railways/red_brass_wrapped_locometal_boiler.json5" +hash = "27e98ac6ffab69d6f30b469c7e34e8b0b9662eac9e180d79463e6824ded20d61" + +[[files]] +file = "config/blockswap/known_states/railways/red_copper_wrapped_locometal.json5" +hash = "ac621394c31901c6314f6f9a78eb83378d28dd202f358caff9751c2d57afa864" + +[[files]] +file = "config/blockswap/known_states/railways/red_copper_wrapped_locometal_boiler.json5" +hash = "9ee867aa9db63e3ca7086843d3ec1a62b8b5857f762a2926a6443b2eb98caa73" + +[[files]] +file = "config/blockswap/known_states/railways/red_flat_riveted_locometal.json5" +hash = "af29484b28af610fdbfaf0076c9e1b690e156a886de3225b23a8b504ffdf2a81" + +[[files]] +file = "config/blockswap/known_states/railways/red_flat_slashed_locometal.json5" +hash = "a4a67597c8007624c1a18d99ce55061fe16c69a40cc062dbb2b3fbb9c53f046e" + +[[files]] +file = "config/blockswap/known_states/railways/red_iron_wrapped_locometal.json5" +hash = "a9ce33829eed18ebba2428aadc540c53af3077daa68e65925d2d4e8e8e6ed678" + +[[files]] +file = "config/blockswap/known_states/railways/red_iron_wrapped_locometal_boiler.json5" +hash = "db818583f58f599fbff1540bd1a5f44e17573654498d2a451856bbe43968c4f7" + +[[files]] +file = "config/blockswap/known_states/railways/red_locometal_boiler.json5" +hash = "50f5cfac4e967543d64cda0a116015175b019f60e9132581b926d0e3ee2b1ea8" + +[[files]] +file = "config/blockswap/known_states/railways/red_locometal_pillar.json5" +hash = "b70ca5a97ceed35592e33b917b804d123e98b64134f888c752ed3a87befdae3f" + +[[files]] +file = "config/blockswap/known_states/railways/red_locometal_smokebox.json5" +hash = "d3d887c0d2d2ed9031d190a217bdff8f17984fba08ab2f08815b08a908d034bb" + +[[files]] +file = "config/blockswap/known_states/railways/red_plated_locometal.json5" +hash = "7eebe925c902aa9cd15f227ae0c8abad5f8497a86e1150385f6ac0dabd60ad83" + +[[files]] +file = "config/blockswap/known_states/railways/red_riveted_locometal.json5" +hash = "f0a393e8d06a64d2699e8fbacd6dbf038aee3af2d974089267dd5fdb7b8d161c" + +[[files]] +file = "config/blockswap/known_states/railways/red_slashed_locometal.json5" +hash = "ab8700798bc01bb2ca354df98fca5887aa6b1700e0f3dbf45d03bda7c9a4ac76" + +[[files]] +file = "config/blockswap/known_states/railways/riveted_locometal.json5" +hash = "8c23459bfadb4f63f5d9865df0d330944e422fe22e312abf82557fb591baaf4d" + +[[files]] +file = "config/blockswap/known_states/railways/semaphore.json5" +hash = "223c5341baaaf8906283f30c30594177b69cc6ae7c9802ee3c3406e843b6012d" + +[[files]] +file = "config/blockswap/known_states/railways/singleaxle_bogey.json5" +hash = "02798b4ca0355288a98c1cbd78d505fea8ce2e4833ae71ec306889727023fc5a" + +[[files]] +file = "config/blockswap/known_states/railways/slashed_locometal.json5" +hash = "48d2db3d6e5cbef197e914e7dbebb426c0b52120a154606225250da7277eb421" + +[[files]] +file = "config/blockswap/known_states/railways/small_buffer.json5" +hash = "4e873a7fc84bd7a8e4def4748d89fb12a0e6a70087a1538b5126f71fd004fd1d" + +[[files]] +file = "config/blockswap/known_states/railways/smokestack_caboosestyle.json5" +hash = "2c9a04d70a257178288af7b1093d532fc97e36cb3c0fd8e3d5136296bb7b3a4b" + +[[files]] +file = "config/blockswap/known_states/railways/smokestack_coalburner.json5" +hash = "8e79a71fe5792a71f65aad2f796fba93c6b3e6840b9cedbfc0fde70919dfbbfd" + +[[files]] +file = "config/blockswap/known_states/railways/smokestack_diesel.json5" +hash = "26894ac9f77daf64eb403c02a0db056528d36f1d7b331a66e3667334e84138b9" + +[[files]] +file = "config/blockswap/known_states/railways/smokestack_long.json5" +hash = "877142ca4d54f83e2cd4639424034d27e55fdc7b3dd05679a6cc6efec245d481" + +[[files]] +file = "config/blockswap/known_states/railways/smokestack_oilburner.json5" +hash = "50c9ff60e067a96340109b2f791287c0b5664f0426e302db6d98c3d39920c71f" + +[[files]] +file = "config/blockswap/known_states/railways/smokestack_streamlined.json5" +hash = "4a46d2cc03cfc3f83db0a31f44a1e3d2bce81c20f9a69f7d38cea8abba2ff4e6" + +[[files]] +file = "config/blockswap/known_states/railways/smokestack_woodburner.json5" +hash = "348fe3f815ff63866c0955eeadef1f5d8419a473206a7642d65eebeacc587362" + +[[files]] +file = "config/blockswap/known_states/railways/track_acacia.json5" +hash = "1b1db69fd485d3d8a7782b019a00aa785a2854a4ecd5fad52c579760589f0bc7" + +[[files]] +file = "config/blockswap/known_states/railways/track_acacia_narrow.json5" +hash = "4fd7cd288cf5b23b753dc0be1a6e6cf72106e5234c957717dea4fc4d8fad2e3f" + +[[files]] +file = "config/blockswap/known_states/railways/track_acacia_wide.json5" +hash = "ce2083aa976cfbbd27ece76d32e11a4d532d775e86417c0b8870d4e39e08ef88" + +[[files]] +file = "config/blockswap/known_states/railways/track_bamboo.json5" +hash = "0a383bdd8e032357b4b30bc69d654400ebfa862f0ab9d41a3e67614868b5d0ed" + +[[files]] +file = "config/blockswap/known_states/railways/track_bamboo_narrow.json5" +hash = "e9600b8f45cd84c15636f84e96bcbad05a7b673f411dc3f1771cc45d9a3215e1" + +[[files]] +file = "config/blockswap/known_states/railways/track_bamboo_wide.json5" +hash = "5cdbde0a42efe869143329575d674a82b914eceb11d01a38653665430a84f98a" + +[[files]] +file = "config/blockswap/known_states/railways/track_birch.json5" +hash = "9582d3e2753075b000099657a7f6572408924e9258daa234cfd45dca4b4114c2" + +[[files]] +file = "config/blockswap/known_states/railways/track_birch_narrow.json5" +hash = "7cd535d5f4bfd509a03b7811429b86b397e4098211309b1dd06b0b668a144e68" + +[[files]] +file = "config/blockswap/known_states/railways/track_birch_wide.json5" +hash = "1c3dd4ffa7a605b13b2e8586b927848f27c6e876e7d10534e99ca77197d9e7ae" + +[[files]] +file = "config/blockswap/known_states/railways/track_blackstone.json5" +hash = "57cd7cff3409806b90d0d8574a3d1b1f9d01dbff285c604b7aa77f4541130fb0" + +[[files]] +file = "config/blockswap/known_states/railways/track_blackstone_narrow.json5" +hash = "4f8ee092c810baf223c958059b66fa05f404db078a20fe3c5939a158e8eabe1a" + +[[files]] +file = "config/blockswap/known_states/railways/track_blackstone_wide.json5" +hash = "2967c09d280456413451b7fc9533307d0a7e8acd678ba99f46f4dea22de48935" + +[[files]] +file = "config/blockswap/known_states/railways/track_cherry.json5" +hash = "f32230245eb41b79eb27263a55a6ceb32c7a9b13e36257cd4eb3c1734d2bfbc0" + +[[files]] +file = "config/blockswap/known_states/railways/track_cherry_narrow.json5" +hash = "00d71c69b34b1f59aca3976236b82f9c6c8433db5cc4915ea8f363fd3cb8a031" + +[[files]] +file = "config/blockswap/known_states/railways/track_cherry_wide.json5" +hash = "e894e90100e13c1020f567f9f54719f6d760cd956e620015039be2414ffe5f10" + +[[files]] +file = "config/blockswap/known_states/railways/track_coupler.json5" +hash = "47e5de1965c7945029370a2bd5e00d9c2dbf0a407ae0035c59690e42674f604f" + +[[files]] +file = "config/blockswap/known_states/railways/track_create_andesite_narrow.json5" +hash = "d4ed5d8964f127844c1919f998b392673c79b50aa2b2cc79447522b39fd06333" + +[[files]] +file = "config/blockswap/known_states/railways/track_create_andesite_wide.json5" +hash = "a3b9097a76a1370052a3b7d5eda4dd5028f8e18b61b4b0fed777578e3395982c" + +[[files]] +file = "config/blockswap/known_states/railways/track_crimson.json5" +hash = "84fa0a48ea654a68bae6e8df26df2c2eba02be1f558359509e84dd233f3697ac" + +[[files]] +file = "config/blockswap/known_states/railways/track_crimson_narrow.json5" +hash = "a030e2234f23e50fff1579d975841bf7103064f7b149fff4cdcb4cc6fe7f5bd9" + +[[files]] +file = "config/blockswap/known_states/railways/track_crimson_wide.json5" +hash = "66838d44af9c8822be3610601ab966bc1a43640167b35264d4a6dd8799eaabd7" + +[[files]] +file = "config/blockswap/known_states/railways/track_dark_oak.json5" +hash = "f5b1576d04e6710fa4d769793dde19fd2e99dd6e66ca22d6c80a1793c44683a9" + +[[files]] +file = "config/blockswap/known_states/railways/track_dark_oak_narrow.json5" +hash = "0ceea4025973f0c32b9829172376a992809b6f4e712ea0b56290663babdec3b3" + +[[files]] +file = "config/blockswap/known_states/railways/track_dark_oak_wide.json5" +hash = "f87ac9b559d5525511263ea712e82969140ed30397f24811a1f430d8c12dfb1c" + +[[files]] +file = "config/blockswap/known_states/railways/track_ender.json5" +hash = "62b5fc15b71119dd1115fb8c5ceac94b98d173ddacb31378f03790c711639b2c" + +[[files]] +file = "config/blockswap/known_states/railways/track_ender_narrow.json5" +hash = "15d5122295b9a35dcbcf825fc844e6bb9470a62994b20a72af6fc85dbad4752e" + +[[files]] +file = "config/blockswap/known_states/railways/track_ender_wide.json5" +hash = "b17b1d1bcc98dadd6e49adb81ff98658065a4da6b3c782abf61d9d62290acf45" + +[[files]] +file = "config/blockswap/known_states/railways/track_jungle.json5" +hash = "44bfc793f30b68f1cf96fb7381b7a399733e1fcbcbda0bd47f164ad2c6c92efd" + +[[files]] +file = "config/blockswap/known_states/railways/track_jungle_narrow.json5" +hash = "30dd3a1daa83bf6f9d821116a4c5102f78bdd168ec8549f179308a2fbf8f8296" + +[[files]] +file = "config/blockswap/known_states/railways/track_jungle_wide.json5" +hash = "3233d9c54dec92e7616d2b3f9101552aebbfb33bf800302be2cfd6cff36dc16b" + +[[files]] +file = "config/blockswap/known_states/railways/track_mangrove.json5" +hash = "67fb37a5f3af0ff7af65db95442ef2b909eb90bb3b468f8be7333900d481ce22" + +[[files]] +file = "config/blockswap/known_states/railways/track_mangrove_narrow.json5" +hash = "fc3e2bda4a5aeff38d8a6d7ef78ebb73d0f6b578b41a656fec8cbe9ef716d5b4" + +[[files]] +file = "config/blockswap/known_states/railways/track_mangrove_wide.json5" +hash = "db0ec2cc0760d86716a8a17c597077975661b706be3be8cc47cb1fecd5b22be8" + +[[files]] +file = "config/blockswap/known_states/railways/track_monorail.json5" +hash = "09cac96f409384eac475c51f0b527cd5b4738584ed999f45562660ada2f43060" + +[[files]] +file = "config/blockswap/known_states/railways/track_oak.json5" +hash = "6ef189557a83acb18307b17c168f8223f4955329409d9abe0f6dda175dbe04c3" + +[[files]] +file = "config/blockswap/known_states/railways/track_oak_narrow.json5" +hash = "1c58597390690c69cb2c844900c302a4362ae440f152323f0cce88c295fc3f99" + +[[files]] +file = "config/blockswap/known_states/railways/track_oak_wide.json5" +hash = "f875ff76063ebfaee623b86fd63048020ba62a5e051b3ea3720c4844cc23c671" + +[[files]] +file = "config/blockswap/known_states/railways/track_phantom.json5" +hash = "4191c3abe88ffc13a73e8cde59e40df0709563d55e927affa91cbd40e9b4f6df" + +[[files]] +file = "config/blockswap/known_states/railways/track_quark_ancient.json5" +hash = "502d2254ce3a13273a3aa9141175219bbcada1a2de2c34b98697c471dd8bfcd6" + +[[files]] +file = "config/blockswap/known_states/railways/track_quark_ancient_narrow.json5" +hash = "68f4d0c2f7e0d32e361385c4267cf4ed3a55e1240a4188fbc56c217d0e585209" + +[[files]] +file = "config/blockswap/known_states/railways/track_quark_ancient_wide.json5" +hash = "70d745061b0a3e84777cd475a3b5bb80e87556f0817debd1fc2957f6dc32d3f4" + +[[files]] +file = "config/blockswap/known_states/railways/track_quark_azalea.json5" +hash = "25b982b26559ec881810264754ee41640a5d83e215eb325f19081ae154047718" + +[[files]] +file = "config/blockswap/known_states/railways/track_quark_azalea_narrow.json5" +hash = "3e8aaf5f45326447e7d29c838615004a028deed1768f26fac6806f7d0d06e090" + +[[files]] +file = "config/blockswap/known_states/railways/track_quark_azalea_wide.json5" +hash = "c0ece2f0fc5c637a34545b39ac98a94d7857fcec91bdc2ff9c75b26aa99cb7fe" + +[[files]] +file = "config/blockswap/known_states/railways/track_quark_blossom.json5" +hash = "3e5e54cddb7915df9922f74887879e3c4ce8bcbbc2b02bebd00cb1ec70fe364c" + +[[files]] +file = "config/blockswap/known_states/railways/track_quark_blossom_narrow.json5" +hash = "ee7a3a4c90f9f0633f6be31f8c885fd5ca32372334339af56f88ec47f1dc9811" + +[[files]] +file = "config/blockswap/known_states/railways/track_quark_blossom_wide.json5" +hash = "5249e5a7a9139b0ab3f34afb5c23849b92eddb1acf95a4ab0648e68145dcf2d7" + +[[files]] +file = "config/blockswap/known_states/railways/track_spruce.json5" +hash = "3e6be4243228589cc16340eff33b095b952175f5c0e956176ffa2390c17ace63" + +[[files]] +file = "config/blockswap/known_states/railways/track_spruce_narrow.json5" +hash = "5ddaf7a17e6a490de92fecd04192333cb2267bdc4d1bc2dfebd98205a43068aa" + +[[files]] +file = "config/blockswap/known_states/railways/track_spruce_wide.json5" +hash = "29754e377d68a241ac5292248e48cfcad96dfb0443b0e370bfe350049239a321" + +[[files]] +file = "config/blockswap/known_states/railways/track_stripped_bamboo.json5" +hash = "1c6dd933c06b4c7001c305d54b20fc27bbbb79394f5eb03932f5023f4712c28f" + +[[files]] +file = "config/blockswap/known_states/railways/track_stripped_bamboo_narrow.json5" +hash = "4d2382150262584fb98f1c782a5b6d23ca7b8b6c6039ba1e49e81065ad1cd0f3" + +[[files]] +file = "config/blockswap/known_states/railways/track_stripped_bamboo_wide.json5" +hash = "e73d2ddebe5ea029031c3d3d28d19c4aeeb76280849c67ea4015447eeb7070a2" + +[[files]] +file = "config/blockswap/known_states/railways/track_switch_andesite.json5" +hash = "8b60233bbe4ba69f991ae4b3f230cbaad96daa1b935cfe8def50cb5da6aa9d70" + +[[files]] +file = "config/blockswap/known_states/railways/track_switch_brass.json5" +hash = "3aa7931ee4cd270ac5d7a54c004f6bc125da6d4c6e6ff222b2eba7f1f69ceb61" + +[[files]] +file = "config/blockswap/known_states/railways/track_tieless.json5" +hash = "512dac7d87e4398d97782ace40135e83b755b53e158f5f2f7e3159d9f32bbb48" + +[[files]] +file = "config/blockswap/known_states/railways/track_tieless_narrow.json5" +hash = "4b799fede54cf39aaee50fbba6227139849a8a92d40f9db3dc99cbe27a235496" + +[[files]] +file = "config/blockswap/known_states/railways/track_tieless_wide.json5" +hash = "83bb4240613ae48c33510140f2923ad1f2208dbd04e1bc717742bfa32b0cb1cd" + +[[files]] +file = "config/blockswap/known_states/railways/track_warped.json5" +hash = "2f350728d08595cf1e913dd016ff08df9a947b2574a6d4549aa4fdaaff9a8802" + +[[files]] +file = "config/blockswap/known_states/railways/track_warped_narrow.json5" +hash = "a425902fd112f6fcb4d513e5a89c5d25af62235087abb8a43534ef5762c9d19c" + +[[files]] +file = "config/blockswap/known_states/railways/track_warped_wide.json5" +hash = "3fff1c9b4351f7370cf01fcbaa5ecbc49ec4d8f39f8f33136d64ea73e3f577ed" + +[[files]] +file = "config/blockswap/known_states/railways/tripleaxle_bogey.json5" +hash = "9a56c9be85716bbff9e679410a0476d7c739c2b068ee6f23279f64246381f7fd" + +[[files]] +file = "config/blockswap/known_states/railways/white_brass_wrapped_locometal.json5" +hash = "0993daf3aafc64602b2655c0cbd047069f67cb7536005c345f95595a6cebd622" + +[[files]] +file = "config/blockswap/known_states/railways/white_brass_wrapped_locometal_boiler.json5" +hash = "bdf7017b8a3c3d59e17a98562ae13d517bd4828a6b5b7b9650979c26fe59587d" + +[[files]] +file = "config/blockswap/known_states/railways/white_copper_wrapped_locometal.json5" +hash = "f8c9b049b5e58968def088812bd9521c266db64350a72141e1473f0a55c110ff" + +[[files]] +file = "config/blockswap/known_states/railways/white_copper_wrapped_locometal_boiler.json5" +hash = "0dcd27bc9dd78d23e3a7c47f25ddf0c13c4b55e4c88748edd0f436a915125efa" + +[[files]] +file = "config/blockswap/known_states/railways/white_flat_riveted_locometal.json5" +hash = "da151392d288d69ba2b6bec51be5adae01b382528146a53d3dd2613062c0bac2" + +[[files]] +file = "config/blockswap/known_states/railways/white_flat_slashed_locometal.json5" +hash = "850219b82a3bc682fd25fba778a780c8e6ceccdfcbb59c368d16cc1eaee78f7f" + +[[files]] +file = "config/blockswap/known_states/railways/white_iron_wrapped_locometal.json5" +hash = "6921ad352045b33f7495daa6d4758eeb68c72a8c8a19aa9aec7ac9feec2f2e53" + +[[files]] +file = "config/blockswap/known_states/railways/white_iron_wrapped_locometal_boiler.json5" +hash = "ec0889c80c63fc7df1e08192535319b6ed6225b899f8c1bbf3587a2b119e8eec" + +[[files]] +file = "config/blockswap/known_states/railways/white_locometal_boiler.json5" +hash = "d0a0e25efa41f6e471bfd1a427d6532d3043ba34b26c41996e86dada786c807b" + +[[files]] +file = "config/blockswap/known_states/railways/white_locometal_pillar.json5" +hash = "1a9ae04dd3653dcdda4ea2aea4f3c5c8e67e1ef419badb4c243a970cdd22919c" + +[[files]] +file = "config/blockswap/known_states/railways/white_locometal_smokebox.json5" +hash = "c94dc60d7bb88b8600154ccdf2b2e55bb921af546e5ec5b9cc4703fc8f1779f7" + +[[files]] +file = "config/blockswap/known_states/railways/white_plated_locometal.json5" +hash = "b1cba208ec4776300df0c13ec6aceb5e1e5c9b6e60cfc1c775e921b3259e57c6" + +[[files]] +file = "config/blockswap/known_states/railways/white_riveted_locometal.json5" +hash = "000d16746296512da4f135b861ce9a1b31c4ff84f148f2c23471b66721aeeb6f" + +[[files]] +file = "config/blockswap/known_states/railways/white_slashed_locometal.json5" +hash = "603d3416cfa166d0fa0e69f33256e0077eb7f737b754c67203fc6b1fa95e5bd0" + +[[files]] +file = "config/blockswap/known_states/railways/wide_comically_large_bogey.json5" +hash = "5fcd87e317303c74d70de2ce84c4f7bd698e30e6f55070c62c4daa6b626f85e4" + +[[files]] +file = "config/blockswap/known_states/railways/wide_doubleaxle_bogey.json5" +hash = "ad154ed62fe9c20ff51a06ec79a6cbbb71abf5aa9f4df122e3c014060febbec6" + +[[files]] +file = "config/blockswap/known_states/railways/wide_scotch_bogey.json5" +hash = "c15615c8c8f07815dbd18badd72e8ada1f6704d609cbd895de7a0b60c2e67248" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_brass_wrapped_locometal.json5" +hash = "5796df7a300b7e716ec208ed0d7498f1539cad0d64844cb7d421b3b56af2dfac" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_brass_wrapped_locometal_boiler.json5" +hash = "0d9463a4015f91da3097b1597c7fbf13c5faa82e4afc1cb3eb95eab6a723b354" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_copper_wrapped_locometal.json5" +hash = "d45f47500a05e2e57c3e223d78c5f7981f3eb7e3ea6d54404ae40c26f0838521" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_copper_wrapped_locometal_boiler.json5" +hash = "b3200541438306bd4c13e46bcdf385b47071f4cdd65f05f3ee8651aaadd733b1" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_flat_riveted_locometal.json5" +hash = "ce4b50d54f2d099bb80e99de67f23338a4d745c1f43e07a2f070b21ffb11d0fb" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_flat_slashed_locometal.json5" +hash = "a54b6692e4c5c48073abff75730c6f061fdb8a551d422d8cb561658e4b9b233d" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_iron_wrapped_locometal.json5" +hash = "e308edd8f5ea00871299a97487021f94a9ca986adb43660705adc7f3df371f9b" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_iron_wrapped_locometal_boiler.json5" +hash = "727b512dcbdb1c3155591ef34f8d4696da3738dc80657f5355c6d3ce7ec5e236" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_locometal_boiler.json5" +hash = "3fe8282b2e89f68b619a2f8ad2b1e9beb8de042d0405af43d8742348e2a573cf" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_locometal_pillar.json5" +hash = "e2b69a864fda869b9b858523d0b7568e44c56047aaaf9fb212a10fdede9fc7a4" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_locometal_smokebox.json5" +hash = "32e3d81ac21e57784dff6fb734703fe6fc2b101d887ec3ff8684fa6636b71e74" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_plated_locometal.json5" +hash = "9981f1191dc8bac804a19184155f7589a1df9d06b6f527cbba326d627e8ed9e0" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_riveted_locometal.json5" +hash = "cfc5656e3c7dda6fb265a6ad72b57625e92a1e9d40eb47b1e6b0e49fcc6872a9" + +[[files]] +file = "config/blockswap/known_states/railways/yellow_slashed_locometal.json5" +hash = "ed47488f6c4152c427f41a2f0ba189b42b158a2b51e58d0e3bd3acc45c646de4" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/1024k_fluid_storage_block.json5" +hash = "c2d85a865b0b0507537d56117ae5e3618448ee145c6b1dc7f45d27f95701c5c8" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/16k_storage_block.json5" +hash = "8101b2647e4ecf642eba24d2df64779ed9c95514c143d3a478f8fd6a7721dc93" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/1k_storage_block.json5" +hash = "883f1e715b07348471643f124273f5fb5b58fd9845de24bca50de3f32c0b38f3" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/256k_fluid_storage_block.json5" +hash = "0d0e3782b486606963f158a4f9cef45dc4ae5d8ea1b465d02d071fa22bc8afa1" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/4096k_fluid_storage_block.json5" +hash = "156be36f08237e3b6a2de07a933c22f105ce2497932f398229d83ab93072f105" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/4k_storage_block.json5" +hash = "0104efe25766f77af9f65ddaf2dcc2d77dd0170e4656e076dda26a19c8c65f1a" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/64k_fluid_storage_block.json5" +hash = "b3aea72eb68933df64accdcc8d7004fcb1e09c7f7849ade640976b5a9e3aacf1" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/64k_storage_block.json5" +hash = "10c3295ce218ab5eb70d40fd4c2e0bafeddce4331656217b0f5e03d0eac5c360" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_controller.json5" +hash = "c480cb47743cc4e406cd7afe20731088c3f6ff0ce5b996642811e649c654b563" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_crafter.json5" +hash = "b17adf0e2690b9257ad13b2e5dbb5c435148cd5cd9866b69226514516ded0fc5" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_crafter_manager.json5" +hash = "d7d0c1ecb32e6c0a9e2a6a5cdbf0df49a5e8fd35fce033c4f84c4236dd036bee" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_crafting_grid.json5" +hash = "b246eb199f72eba594c384cdda46ee30fcc43e3979566b4283d21ef48cf35faf" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_crafting_monitor.json5" +hash = "da17e9d8a823997d1f6b429e3aed8aa77f16e2832fc5ae1d6d88eb906550ce22" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_creative_controller.json5" +hash = "cbc884835ed92253ea8bb5ec1efc105f1a31ff2c5bb5edcf4eadbea34553d357" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_detector.json5" +hash = "9b1036e06e9fcad8d4245379296afde91f8dca6eb164ba062c0f916946db91b8" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_disk_manipulator.json5" +hash = "104304e90a4fd8e382b69f6dbfbeeabde4d139cc80da8ddca32a3bf9df4f1ead" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_fluid_grid.json5" +hash = "b49130c837990356aab2e92307666226f333f412241f318816166efae81d91e8" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_grid.json5" +hash = "1afe678f7154e76bd476a0e9aa26db139d1e81c1951b30f95db4fae8c508810c" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_network_receiver.json5" +hash = "6a791fc9e75160466ea65a769c75a1082143b5b973a9c02d602f315cc1e041e2" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_network_transmitter.json5" +hash = "745bb2927814a365e260bab9ed423913bb84b7a56e52ac4e21208a27af04ffe7" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_pattern_grid.json5" +hash = "41f0520d40674e18468d4e2a19a1014b0db9b885ba32eab1b1252132ba07b4d4" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_relay.json5" +hash = "d146054841103957d4b932be7eedf8fea527ca86afab2cc44030d19d823f9b1c" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_security_manager.json5" +hash = "eb6d0ffc3a0b8b449aa274a323b97facd0bbfd1f82851331b0a2959457d44030" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/black_wireless_transmitter.json5" +hash = "b2c08dd0b9395f6c08847c9c91d4e0bb439414359f939ab697e538b241090874" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_controller.json5" +hash = "8185904b081ae5a53951aee5b5bca7c31690d0322d13ffb770c6d4fe61b93074" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_crafter.json5" +hash = "109a141f1e168228111eee760fbfd8c1ed3f3a3c2e2843a1ba8dd75b855cb082" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_crafter_manager.json5" +hash = "9dcb03125ed2d2d9943d3e8185c90154c7c9952e873100aa0c1d782d2ba27932" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_crafting_grid.json5" +hash = "f6aa9d108bd3d335ea427a59e0ec74ff2f88f8541080483769bbbe00e328f3ad" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_crafting_monitor.json5" +hash = "c841567b4ec1b2359d0ad239689110a40f752ed0ea44ef9bc95374a4ece8baf4" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_creative_controller.json5" +hash = "1bf9c3171a491d8d0fd4f941bc052804009837853e1d093ed6469fb0d2dd463e" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_detector.json5" +hash = "298bc3ccf4ce4130f5ba8eede3cccfe729772e938385b25a0e90775a62ed37b3" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_disk_manipulator.json5" +hash = "74d8238bff7c11bf19f181862ab3349ec52c97741f3bde3b34518f363818f929" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_fluid_grid.json5" +hash = "c5e79ee2fc4de072f372deb12caeac7f5dc5bc510d60ff2e4b1822da9da60f5a" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_grid.json5" +hash = "efff99d4fde0b3dc8aedc61515d56ad554f7af4b89ebdfecaaf1fb5022c9529c" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_network_receiver.json5" +hash = "88a16f953ce6f6d2189f2b911ea05057f5febaf3070288dc347bc6a105e875da" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_network_transmitter.json5" +hash = "4fdbb8132bc43b82e88ad4813d51670fa6b980cd2c272f52a7c291503b0bd4ff" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_pattern_grid.json5" +hash = "039b39a08e177c5bdd35642ad273bfdc074ba5ea542c8a3b1e13b31a80abc277" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_relay.json5" +hash = "0464f28283d23b340543be76cf9b290da357209a30be8193e2dd229b4aeb0f01" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_security_manager.json5" +hash = "59a36cf5ac51b63ada3b50795e8ac781a8571a14496add965263675db2606f48" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/blue_wireless_transmitter.json5" +hash = "3fd48d7bfcaf9f495e1eb7e3f4808bb4fc5e6fd0bbc4b6975f2fbf549d1b1989" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_controller.json5" +hash = "227083936ff8f15a04ec92d35c10f85428f8c847b5df73e43eeb1fce0f534e40" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_crafter.json5" +hash = "7f63d1bdfc529ec980b7cf8f702fb48db04dba091937b5ed2703c51e995699a5" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_crafter_manager.json5" +hash = "14896a4391fa69fa3b8e936b8d7bb3dfb2fedd6c4cceb78e6cbd6b4b6e85cc8a" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_crafting_grid.json5" +hash = "476547872a34269329a82dfa7ff4baab0ab10c662ef062522d8b081a5105e264" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_crafting_monitor.json5" +hash = "358b3a3f7c39c0a468eb2dc3f9b92df050966ef77118aeb85dc08ed3074bcfbd" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_creative_controller.json5" +hash = "18799ef6e1743dba023618a44af4ae2cad043c5cb0dda07b5a196d833960b853" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_detector.json5" +hash = "d1dcf885f2e8d0e5d222e492e036221e033053bf3f1d7d342296a75c7a33649b" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_disk_manipulator.json5" +hash = "5629fcf626c8ef45e185432d35b28d0975d56849e6402f105e77aafbe1a970db" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_fluid_grid.json5" +hash = "bc3c3cfa4f93fb32c19cb914f584156c17a8a211f6bb10232aa94464e711fb1f" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_grid.json5" +hash = "5625060b8801866b9f5ca108db88617a74342400bcc8b9e4a6fa3af16b18a102" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_network_receiver.json5" +hash = "d25b69c3c3f2323692191ed84b0e212d6b2c2db40f61bf02e85bffae6dc052ff" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_network_transmitter.json5" +hash = "c8f1cfec22d258bab19cc92ed77e58823d14dbebf548ea59484db4f795d3b3da" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_pattern_grid.json5" +hash = "a029b3ac270c3872b770e55d26e3253f619374ed321f77af5dc528d6794895a4" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_relay.json5" +hash = "2c92b466b9bddc5e81c8342ff41c86b7dccec5d79fee6c8533b33cbe4f474248" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_security_manager.json5" +hash = "c4aae683843b8ac12e1ea5c4b590eb60ea276ee03071be30fce2c9c014742ad7" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/brown_wireless_transmitter.json5" +hash = "68b7f0e8c2da005d30883d2506fa95b21b9dd73b210711e226d4e554ffe84643" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cable.json5" +hash = "7fba916ba2250a0d2d4ba27138b2c1888b8467951851419422f21c5a93902bda" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/constructor.json5" +hash = "ff8a7179620184f24fcb8a66266fdcc296619ce4374d8fc6f1e049baafe275a0" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/controller.json5" +hash = "14be3f327433a59d24a21652896d6556f0bf88c32ffa219d7b52dce96268efe6" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/crafter.json5" +hash = "a6718123fd974b175e36e98868f72b3b2d2f88ed6b2423e7d0659720d3b382f3" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/crafter_manager.json5" +hash = "04e6cf94f38fabb1813e5893a46b4e5cc825fbaf8ceff1c48dd44b2042db0db3" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/crafting_grid.json5" +hash = "56782c2e738af8da1da9ba9f0483c079256b0766eadf4beb54e34511e4c14a70" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/crafting_monitor.json5" +hash = "f22a43760adc6f62a69db792b00a490a373922322ee955953c4e1b692c064c18" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/creative_controller.json5" +hash = "7ad9b0541fd984765e844b9c4df1d1f7b31fa7dc840dfaf2df8a08b2a10408c3" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/creative_fluid_storage_block.json5" +hash = "2e1cb2e1a33de2054a85e47551a855cc73f24233d6f3edfccccaa7adb9169b7a" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/creative_portable_grid.json5" +hash = "9fffff2bb189bfac3f5f98f8426d9732e4818d8ad2c11d2bbbaeebaa4de437f0" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/creative_storage_block.json5" +hash = "e234eff814c55cd15c5642528538831434d3b94e85ea6768aa22ce82fbcf614d" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_controller.json5" +hash = "a80bb1f0d551f2f27886660d1651934ac0d31cfde567dd763a6bb2ed2d77aceb" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_crafter.json5" +hash = "96982aaee8d61b53a8f3774a8ec39d8b4bcc2a004488119b981f9cca58bdd622" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_crafter_manager.json5" +hash = "21b4bd6f710ede771d10c56d38b9abf80c499d3e05ceaa733bdc14f267a80a2e" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_crafting_grid.json5" +hash = "ff82698c0862fd6e831d0584f4e35db52c36177741c66c59546d450a180d3d84" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_crafting_monitor.json5" +hash = "0aa3dee82fd1c08455c7629acc7eca2e6920b2dd3e04a0a60024b399cefa7a69" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_creative_controller.json5" +hash = "28592f233037d09c583100700e2cbfaaacdc4471a107a282cd47a6c050ff858b" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_detector.json5" +hash = "164396fc85584d12fa998e7778dd406d74919cbe023f3d2954b25f735d19bce4" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_disk_manipulator.json5" +hash = "3005ae62d08ef845047393aac65d32685d3b1d945a3a27d7862221fc046540bd" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_fluid_grid.json5" +hash = "688827ab64c5dbcecf6d9f91cf18a77ef56432038c4b3086a47b64819df72e36" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_grid.json5" +hash = "6336815b7a65cf7a9f075e886abf6beba6cf14c43ea4531a7471e6907dfd0c98" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_network_receiver.json5" +hash = "bc30b8509aa7c9fea8e6072f132fd8af4619f31ade5664d03121e5be90f4700a" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_network_transmitter.json5" +hash = "afbd785b24e9dd6f9bba9a58dc3358bcbc3930854693ec0f97b88852f1174427" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_pattern_grid.json5" +hash = "18066277131a0c3b3c84c68e2c2cea9c3bbe80293279c3b1e6c0f0d496ea9fd0" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_relay.json5" +hash = "9d47f2d9ec2500abcf6194ffb681f7d4791fc8de9b8b1f62318bc3933d6240ec" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_security_manager.json5" +hash = "3da910d0b72fd29a7624ec88d99e4275b5a134d0c05933a77148df0653b9b7cb" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/cyan_wireless_transmitter.json5" +hash = "6f850276d3d3d341fdb7d09924625d27955c703a4623651ebd4c12773470ea16" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/destructor.json5" +hash = "ae776f707020e4c7314ee69f44b273e93c5be916a5d2ec89123dfaea5ad45b22" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/detector.json5" +hash = "804f022bf10d1a8aab0f8445823a5602dbbad032986971b69db1c18a80494033" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/disk_drive.json5" +hash = "cfb0b65b9c26cbe352210a721aa6da82e0194de021e1962ba3a2d37f59cfe653" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/disk_manipulator.json5" +hash = "ca4ff5e72d431b92fa12cbb8ee7f80e08f1c8ede61f305902d6987148b81a1b2" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/exporter.json5" +hash = "57e65dd24ac5d4f2d019fb7eb1f022ad3f745744a07d43ad2edc2f69a60865a5" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/external_storage.json5" +hash = "4be43ba9e34a203a9ef75ec0fa0821651059d346f1aa8c3ef34301c70efe6201" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/fluid_grid.json5" +hash = "9180789b08a5fc6006ff85cc6a5a7be0247a93659c62dc4917b0f992f3286ddf" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/fluid_interface.json5" +hash = "8f2189eefc538747037bc5d642643baca546d9d60eb598f5d95847ec972712c0" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_controller.json5" +hash = "3997224031fa98a3baa14e53b29fb0a92c8a71634a7177fb4c57081847076056" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_crafter.json5" +hash = "40a2c9033ad88a3e8d3d938358b5b13759d9bfc6038138c005a30a6d0ce3d95d" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_crafter_manager.json5" +hash = "5f46491680120f49ed076ef1766091adc999306d6ea03bca98c3d1d65bc52003" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_crafting_grid.json5" +hash = "e1757d3114e086e62668d45a3769865f75fd5b5bd3804372279deb6034da429a" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_crafting_monitor.json5" +hash = "39b5f6814e4a834dd870e376d02f679d06821d14019159c969277486e0386cac" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_creative_controller.json5" +hash = "6a246ea8e54caa4c610c82e5520ad1a16bc402b96e534fee2f09ddec95495f1a" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_detector.json5" +hash = "0c4d46968af8647a87b400e1be12aad51088305c489c2300382cefdb1a9e5411" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_disk_manipulator.json5" +hash = "82b3f401849bc47519333649524ff6bfddaf93b2c8ffc9659b7834fda200ecf9" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_fluid_grid.json5" +hash = "d0ed04787b14486e2550976ad82d1c8236382e55a42f9f01287f53f08bcc8ed6" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_grid.json5" +hash = "32422f9e4188286eac2b8289d9e3101f11120ba2641d8adb06d2d92d90aa9395" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_network_receiver.json5" +hash = "20f3b92831c7cb4c4018cc68ec74478b7d5dfd5c77fddd1640fc02c97da8eee3" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_network_transmitter.json5" +hash = "6a7e2d2b2401f7286f9aaf2a9b3213250dbb369e291665bf4cc1b190fb7bcce6" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_pattern_grid.json5" +hash = "65d1270a3af06185afa847fd04c48a1a1eb388987caa6f6bd70d6d1f3c178b55" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_relay.json5" +hash = "bc1ea93e09e023b6d517e074bf2722b5eb5a18b61f63e1a25a34fbbe979fdfb9" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_security_manager.json5" +hash = "aa1aecacc1232eb495a32c6ebdfce5d028d61874bc4d9ff13b4c829f31c6e243" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/gray_wireless_transmitter.json5" +hash = "a040cac796efdcd35427e75a4fe185a6a7fb2e22632aca2ac945b13f4ba84c6e" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_controller.json5" +hash = "d657c15ef333105a92902da58ef4c2111a31268f0e20d1dc1452a07e3bb3edf8" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_crafter.json5" +hash = "acb537344714d057693475c2f85c3bb9531dc4152410679537e09b059d0ddbdd" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_crafter_manager.json5" +hash = "6c6f0f04ed6e1da7980f33929f94d57c38957e99879c3fe7cc39743f516038a4" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_crafting_grid.json5" +hash = "c414b70de529cc2acb57d664032a0845e626153621d9304f0415f3bc086d424d" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_crafting_monitor.json5" +hash = "25e7db668a9b47d31782bea82a38c3f92707a44f2f714aa294c3b376579bd07d" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_creative_controller.json5" +hash = "d8deca45580bbbdbdca59069565414b3516dd306d4200a6f760d4466210678d8" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_detector.json5" +hash = "4019c2b72ef353dcca8457e7db385ffd5a261d1c0efc7314b3aa071d9d279610" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_disk_manipulator.json5" +hash = "e54bb067a2fd95587aa4039104edcc35a7e985e91e320d8fc35999718c7efe69" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_fluid_grid.json5" +hash = "afc257d181f745af0baf62e398c8b27c089d7f2a0eb9ade69ce28975243ac159" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_grid.json5" +hash = "cd78e7e35bb528792b9ad49a617a5d53e09662ca48dfa646fc0adb9dd423e891" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_network_receiver.json5" +hash = "0a38ec3a431441f237c592095b728a4b353f75f430e3f0849eaf602e46b0cfcd" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_network_transmitter.json5" +hash = "ebff8820217ee6b153208969e4be149ced70beddd2ea93257ba0312e73889d18" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_pattern_grid.json5" +hash = "92dd7ebf6ec6e21eeb92698570b157b83f2ca8d638cded741d3b700b909ae8ae" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_relay.json5" +hash = "fe17c6b37c505d7aba0ff5cc8f19869ca36ac6e4644cc4149b5be94a28695b5e" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_security_manager.json5" +hash = "81a13acf60c667a64c537827c07c4bf20c03b573deab9b5c1161d77d0e6de89e" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/green_wireless_transmitter.json5" +hash = "45bf79017b03344f1423e2484c3312d2b4e9ae320ef95156bd0cec188347c2f8" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/grid.json5" +hash = "7e249c61c3dd567ed8261b11b7bae98255a994daf2da09f67c8683abdee978d6" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/importer.json5" +hash = "4004956bc5491f7f872ab856a647798a74a5473998a6cbf72427b0cc1449f422" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/interface.json5" +hash = "433ab89d5880cc2871534358c38bbc1e15eae0280d8edc39c8666a60bb5cb537" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_controller.json5" +hash = "8b040d69bb612142ab865b482e44d19d8d80e0fb2d354d06a87363bfdce885d4" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_crafter.json5" +hash = "affd361d3c4a37979546c59d11b90f9759ea79b14a69eaf39c1afce2fffec1b1" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_crafter_manager.json5" +hash = "4548647c5deaced0300d5f8ca5e4ac88338bbf783484317f2477be302ef7adff" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_crafting_grid.json5" +hash = "bcd32fc7e0810d8a28ecaf3ea025003b290c4c4505e7a2479fc4b9e454ec0f5a" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_crafting_monitor.json5" +hash = "79fa815c31209ca0c424e3182eb6fc05becc8fc94bc0daf91ef862c5c5140e93" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_creative_controller.json5" +hash = "29ea467a9560f0585b3dfef60079ddfe4484a7a96b94d2bf121df069251a3a57" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_detector.json5" +hash = "96c6e7f98d212d6cc7f82ccbd94696cee48b15a9b818c2e82b4f0dbb4e4531b5" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_disk_manipulator.json5" +hash = "8ad427815a3d2c352d24124aabe50c861af2db90c736d97eee9b6ef83909ca5f" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_fluid_grid.json5" +hash = "2371b1874905a0c896f5beb63678630c2ecbb3f5352ce567aa925dadb415e329" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_grid.json5" +hash = "fc896de8ae1a694782281180c4ec70ce5631c6af4a360d64946b5c0cfad12f0b" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_network_receiver.json5" +hash = "73c87754fad00db5f956db9c64e084a6d7647d88c82967272fe751ad8f834e08" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_network_transmitter.json5" +hash = "1100063e042a5a8fd192a674888e4b743fa4c2f515b922f3b8bd90e69284e3dd" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_pattern_grid.json5" +hash = "58724c7a913399cc5b5745e54a0457f6a6c3365441fc89a27b7d3834061fa130" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_relay.json5" +hash = "993f4a59c3b84713f753f4049963ca7b381a40b7fbc3f33b9ca316dfb9d86669" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_security_manager.json5" +hash = "154ab2b775ab9317033a4b0c711236bbab1d617585c2a0280a8f44ca8082a9f6" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/light_gray_wireless_transmitter.json5" +hash = "e2116e7c470200fbd89a47e0413d8e44e45164e9c17104f0323d6eae0cb70455" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_controller.json5" +hash = "fea5e1a0042dae52c6dae981a05b1fe69132cb843142d23cc16e695b9a8945a8" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_crafter.json5" +hash = "47207425213f6b234980843307991c5efd23657cced794ea75fc8f1071203b8a" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_crafter_manager.json5" +hash = "0a3fa68009e1b188e19d8fb00fb97e64c96406403b0fe47c33fe3f8744f660b6" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_crafting_grid.json5" +hash = "6bd57b2ca465a78ff4bedda28eac470d8e9283e1032972e08a69f15998e5265d" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_crafting_monitor.json5" +hash = "17358efc71085b4c039825c345a2a4577e62f2ac29dd7fd6b87f6a5d72411584" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_creative_controller.json5" +hash = "a619d9aa12e51f5498fbcbbbdd407c2b13aad771cb8564552be8801a4f692b96" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_detector.json5" +hash = "e5d3824d043b7a2cbaa7174dcea4bfb6d130d8cb650dd9f98d4b2e7e058a2cf2" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_disk_manipulator.json5" +hash = "8e44f053280a2f2520f3f8e036fe8bf2472a000a447df31c9c6deda364d6107b" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_fluid_grid.json5" +hash = "9caed5e9c258f8620afab4f76796aea1de5763f187f15c970d801ee13de9dee9" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_grid.json5" +hash = "167e3323e28e52f55c37110befe6c3255fb27f6ecb05b43cddf8f5eae8afad34" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_network_receiver.json5" +hash = "0331ee4229eebbbf4c0f40ccaaa3a3a61e36cb974bed2b1ca01eca203b6deb40" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_network_transmitter.json5" +hash = "fb39b5a03f1e01274c8206f121efe9099d5ef063657a9cdc8646595700542f1b" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_pattern_grid.json5" +hash = "1fc94125dc5ec0e004d78fe00992b607e1478e703e800f878f8de770e86c4fa6" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_relay.json5" +hash = "f17d887236b00e6b716d01214c48b00415c56ad2c0d223c537b3ea1f57a8997f" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_security_manager.json5" +hash = "682fa1d22b3d51e19f430001a8b37a9f893f33f0dc41095a0fd55d190e8419db" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/lime_wireless_transmitter.json5" +hash = "2a9b5f71c4550fd32e3bc988959c9568b288e4ace3bd063f2a79fb95374a35df" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/machine_casing.json5" +hash = "5e1bb712b695dc235624e90c496b988736988ce4e9af6f2a571701e7efef59cb" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_controller.json5" +hash = "8ed4599fbd48ffdc8ff49e4e46d82f0f446d68311223b4a1a55c171e4383cf85" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_crafter.json5" +hash = "2c0a2de812fb233b9fd7fc741db952be52d1cc5f493c1c5ff40aefb7dc959d91" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_crafter_manager.json5" +hash = "dc978a0f75f0879dc39948196f10c4fd8e78216c53f520725d9349664799e415" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_crafting_grid.json5" +hash = "b3813c14034e83a5c07042ea58e038920c5046b23db83eb4cda1ea8433b28155" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_crafting_monitor.json5" +hash = "a6681afaf950894ffb0cd54d4171cc1817ccc77acd142928935339e30b4f0ee2" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_creative_controller.json5" +hash = "a48f991df4c0893fc3dbd9fd8f7b945ccf59f61bf5328ee61d8dc620b4f8d290" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_detector.json5" +hash = "35b90273160e1f097a3d4f7a123f41b78d4229c950d8d32702c8ac6ac5a9d137" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_disk_manipulator.json5" +hash = "323dfa0cdb7f62042d31b63212b7248b1f34a81d82d098bcbd34b7f12b0c1c6e" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_fluid_grid.json5" +hash = "6adaf4c6ae0741a665d2ddc9c36edddab956edcb421521683c319be6210442a2" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_grid.json5" +hash = "10b70a8a05727659f6c696df2bfd50e30f8ea9badcc7935a42d5e23ed314e330" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_network_receiver.json5" +hash = "dd3bd35f3b6b05e38f1f02c52bb57dcafae01bae4c0bb3fd35f8e5d9e18d7055" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_network_transmitter.json5" +hash = "58fb8774cdf9f453d4372cf9e92ad1c9ae7af555ee8481d31a74553a19dbaea9" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_pattern_grid.json5" +hash = "d79553e70a4e807218bf7a739c241b5d14f73b6f25a0e4d9a204d5652fcb38dd" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_relay.json5" +hash = "37d01e30b5619618baa30ceea772f54064f75fad730aafe8bc5d54cf2290a66e" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_security_manager.json5" +hash = "3573073d7a3d0a4599fb2a229ab97c7553b5bd0d86c836a7840f811a29f12aba" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/magenta_wireless_transmitter.json5" +hash = "bbe10f2bed71903ae2014db65a0e8bbe9ec86f4e763cc926c4091329e295c695" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/network_receiver.json5" +hash = "5b36eafd4a2b055da2af71ec694c69f3e5c501a3b92da3984578609afb422cd7" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/network_transmitter.json5" +hash = "1dd054ca52f6456c0c284da6d1d3a32a06b0ece2a8399ad912d448793eef2983" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_controller.json5" +hash = "1565c3882f41ce1bac065f0f335ffee58f7dc7de83e399d813df06c672165862" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_crafter.json5" +hash = "64e5d64923af48e16b3518f3ad0992a61dd625fbcc3c5b7a1dff6c1f89a96eae" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_crafter_manager.json5" +hash = "16b5f60df7fe3356789bfa155afc38fb4db099bc8e916fe4be15a0d05a638d94" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_crafting_grid.json5" +hash = "ab0cc574c5fc73c187ebe3aee857ea74294ea0ef2e723c2d965488b659034eeb" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_crafting_monitor.json5" +hash = "4c9d7781735d2e3dcff57cc3a87a61c8e00587ab04c0f4611954907654e2626b" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_creative_controller.json5" +hash = "cd07b238b130697ae6ca5ddfa1f9f138eb7e0ed9a669fedcb573d441654dce56" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_detector.json5" +hash = "aad9c9cc7d66aa1681953014971b0f70bfae3885cc27008e483116c8a1be6ae7" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_disk_manipulator.json5" +hash = "095214bba35a0182eeb650b1ec4c5c6ad0ee9dffc6e62235a1d899e24d48b82c" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_fluid_grid.json5" +hash = "7ee74dd2652856853e7d293e5afecb0e25a04e68a127caf8e20611cde0e0e79c" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_grid.json5" +hash = "d7440f4a4447fded3e3273ad40c20f8b7ad593fb7f8d95433aa044999421aa84" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_network_receiver.json5" +hash = "18f85d54bee5f473f8b03f9f01a4479a939651ea29eb7514d90352c7fb5448fb" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_network_transmitter.json5" +hash = "b2b24267cff685a6e59d5a90801a253e4a06720cdf461cbf9ef1db97b6661d27" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_pattern_grid.json5" +hash = "78c002f801bcb956b7182dbce8e4236adce369356d6d6bee33c9c3ac02b9da60" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_relay.json5" +hash = "b5eb6c2ad1c60561680d8ca06272a05d6531d981a086378062f81c1049c81d69" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_security_manager.json5" +hash = "9d7e9d5ca1b95cfcef2102df1b30f51b203b9bb6948fdabc9a7864c8918cb728" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/orange_wireless_transmitter.json5" +hash = "bf426213fcb4c7a8215a6b53b6c6ca256c25ad3ea21f7a2af320047e13e0b5f3" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pattern_grid.json5" +hash = "dee350895eb5494d85c76889e394d9e997ab38d731ae9f3341bec55312e956cf" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_controller.json5" +hash = "a1ca094c40db601a81d2d8f1aeecc8152b835a5d6a1f1cda1beb26de0bd5b808" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_crafter.json5" +hash = "7b3aea66bf591cd96f3ae7df1e1740ae58abb1c0ceef536d8cc362f10cf86b11" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_crafter_manager.json5" +hash = "0d298589c77e578b758ec4ebd648c5517e53a1a4404e1eba57451702c49505fa" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_crafting_grid.json5" +hash = "a57b1944ab954155c6f40753e343c6646b9e162887e2c1a467f801f10588d5da" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_crafting_monitor.json5" +hash = "839bde07232079084bfe2474dda7567ca9b381885977a2ef4e5fad07e3d3d58c" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_creative_controller.json5" +hash = "6aab6d224de5d37d6278db34f4bf5790784183160716bb8fa2ac4a4433653704" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_detector.json5" +hash = "335fe437cdccbd08239e34b94abc4724dcf939ff4a1ca484146300eaf8180d37" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_disk_manipulator.json5" +hash = "ca75fd642dfaa7fea4cde11de731addac67f69402c543ffe9416760d3c1a7368" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_fluid_grid.json5" +hash = "7521cf1112f498624101bbe45b0595f194293d96a71507bf52a8b0cdf6badd59" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_grid.json5" +hash = "339263edef630081a19f88fcb796abe93f615efcf8d6579aedb482d436847fae" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_network_receiver.json5" +hash = "ab31307222b43ae616be0620761f9031e0b978590bc49dcde3b30c51fdf11c26" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_network_transmitter.json5" +hash = "9f6ce41a8051be6d8eb62256400e9c26393c97dfa9fc4862b1294527739ec123" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_pattern_grid.json5" +hash = "e0ac530806dc6d0dc8b0ee96acd1ba50bc7466e5d6fb26bbdaf3efba5b3cccca" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_relay.json5" +hash = "1232e07428b98fb831587bc88b9c38b4aecaf8fe3d6e58786231408831e1e1a8" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_security_manager.json5" +hash = "a47441d6d1be0441b29b914c5715114ad208ab9144caf7d9bcacb58bb912fbc8" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/pink_wireless_transmitter.json5" +hash = "bdcf47724c3ecf3d94f97232e4b989a76ea5281024dd21c673c7f96d3cbc7a7e" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/portable_grid.json5" +hash = "3543e6146f5ed5cbac36238429bca51a32475d57c1b95365e5b8704e82f9f644" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_controller.json5" +hash = "26f996a8dc21820707f1c9fd5dc428717cd4b8e8664d30b2cb7ac4a0895eb782" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_crafter.json5" +hash = "4876f22384317ece5be547d093bd7b2510b77fbe7058d536c2ee159996b415f0" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_crafter_manager.json5" +hash = "cc4da7f84ceb66afa7c672717672304acfd7250a982741ce90f130f88ada0e3f" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_crafting_grid.json5" +hash = "16734f030025be820bbfb2b850066729585fe9857cb374c10461652324c54033" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_crafting_monitor.json5" +hash = "959b3c5c898238f1d67113395f61fce16212eb6f8fe1e711d0e9cf89b2e0c33f" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_creative_controller.json5" +hash = "30849077884478664655b6a21860140f949d034a6ba0c447b9f30d86de1c7637" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_detector.json5" +hash = "b4e2ede8395f6d291f2f6abd2057bd81fb7c1dda6a14edbbaf9203caec748b31" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_disk_manipulator.json5" +hash = "6df0fb151f21fc9afdda16062cc8dafbd5f25f98060ee42c92846e418e358d38" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_fluid_grid.json5" +hash = "c42a11562aba42cb1c380fd67a8a61ad4fc514b7e33bc45d9112e2e983332531" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_grid.json5" +hash = "e5c93ec5fd6d3107ccecee22fef83debf605f296bdb99051761de01129a7ec56" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_network_receiver.json5" +hash = "d4774cd7a13e01b5049649564047ac16b2e950b41ea7ff1e0d9364b70403b84b" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_network_transmitter.json5" +hash = "0f48eaff4e42dae91abcddebca2e9dff8047ed5677d44e3cd4979e028efe26dd" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_pattern_grid.json5" +hash = "ce3ae1cebbeb350b4b32dfcc99e826463c14ae80cc8afa945d7831ebd594f934" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_relay.json5" +hash = "2a29b82ed8fc51d450912255db878c9e669dd32c42087e10b21e903c11bc2f74" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_security_manager.json5" +hash = "203cf1097db1e8d9b3109c549de2f7739e5c619ed929ab7f8d1a8a54d8e2d97a" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/purple_wireless_transmitter.json5" +hash = "8b6152779919e22046008ddc4e34e89406ce17dc15ec4b794c6e0098d8e6838e" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/quartz_enriched_iron_block.json5" +hash = "c0d09f5c7590892fa02e180c5ebe9af852a4b328dce332db4e34cb2ad5310240" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_controller.json5" +hash = "5cd8f5e3bd25dae400ad587bbe1fe4dd6b43d75b134f0d726da42fb2fc2b236d" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_crafter.json5" +hash = "770380ea87636b1a3d8fcbf0f7c2e904f9bb334f92f97316d1e823c80e0abc83" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_crafter_manager.json5" +hash = "a1fa67e70c2e1d8fd3480f26020115938149d3c035f24a05ff4a5476e4b7739a" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_crafting_grid.json5" +hash = "64f5953f22ae3c29194221126bcfc642a58b90bb154e5a9b7b054773ce77aeea" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_crafting_monitor.json5" +hash = "6466e7a5b41cafd6fd342851fd0372c557a56ee3bda481c9794413560f6f7ce9" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_creative_controller.json5" +hash = "bfa62c6c4ed6259f4666f3422218f77fe903bc097f8bd43737beaca5437b55eb" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_detector.json5" +hash = "d3d65166c02572b7b184029398645f068c2a7c62842ea73fb0e459296844f470" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_disk_manipulator.json5" +hash = "30e5e8c0643c8b69781f2326dc4ba1aeb484096e946eeaf42b959785de949391" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_fluid_grid.json5" +hash = "452ba9a52b0001228c9f4a2b8561d51b1d0b4058e61e23dc911e46f8491ec8e9" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_grid.json5" +hash = "66d8b0f45a42fe771fa2d8c26fe0c9154cf8181e626d81623e28f50c392aa4f6" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_network_receiver.json5" +hash = "750fcedf75ecb48b69dfb7084b07662d8e2c713a6c194b1053bf6e47f412fe05" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_network_transmitter.json5" +hash = "b9d033ad6796aabbd8d7da1c4fe43637345c7dec98527749447dc05bdcdb88be" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_pattern_grid.json5" +hash = "e050b0e5ee1356c9d02f30477d6fda884c95b3fea0b3e8c16e93196971d3d137" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_relay.json5" +hash = "523ea77559311f6888a06f113373c87576e3cd9e57110b191435b193d3490aaf" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_security_manager.json5" +hash = "9a50e9c868c2badf8114666d7f36c339e8f96f42d83d1c6a2a472e89a9d0a031" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/red_wireless_transmitter.json5" +hash = "df04c36c9299557e9ee61f9677e895c12354b3d4bc2e8a40475133aa1df40e29" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/relay.json5" +hash = "2b1e2155fcb9eb9be5a17fe3e3289e19bbe5633e55a37c92e96affc96847324e" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/security_manager.json5" +hash = "9fa665db7269c839fcd1eb96a9229accee283f5834198940711e9f4dd6d408ea" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/storage_monitor.json5" +hash = "1ad4518593ac7c6713818fec589c4242d3ceb08d3cf3605eaad5107771f38b3d" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_controller.json5" +hash = "a7a4bb8647bb4a3241051963b67eb9c148d32482570dae33a5858bb401c7f571" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_crafter.json5" +hash = "a638f9f844180a6bf6977b0339ff133c73939ad01e765c82d3f0bc23a524a5b1" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_crafter_manager.json5" +hash = "09e5a4daf5f57fd8ef7afe54d542d1c17392e8408fd0ab0cb0a29a5102463d1f" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_crafting_grid.json5" +hash = "4d84527d04250d1bcb1294e5ecadc9dfa2b8039e04972a48a5caf98b100dc91f" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_crafting_monitor.json5" +hash = "e85095185bb2b45375c4012854c4fa2871239dc08692e38ddda897c76af57958" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_creative_controller.json5" +hash = "bcda011bb7946d96d37c617276c612d0668fda601bfedc701497bb04e33a949d" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_detector.json5" +hash = "dc3bf4bf91713b74f1a36002bbdf8103d2e5454890c35340d069f67f713d4119" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_disk_manipulator.json5" +hash = "a1ef0a6e2439d47fd223f755f9afbd74469d4da3e1b0c53221f155283118b9fb" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_fluid_grid.json5" +hash = "360e883aeb8084c960339429c9e84089be09f8c9d7094aaa73e84ba39a27c830" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_grid.json5" +hash = "f4b38c0d9995027511659a4bc095f655aec77f4190759a98acc1e5493d52cc73" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_network_receiver.json5" +hash = "96540f1edfa60196c9959876add71af9f309b8f90d4931e5c798e72f5a09497e" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_network_transmitter.json5" +hash = "7e09f0b80c50134bcf369033bb8e81c9afa9027907c6a8eb15eefe89a61d96c1" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_pattern_grid.json5" +hash = "3a817ff7d7a29a1c125a2cfee85bf9e48836451d7df18c99a4bda31608b86698" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_relay.json5" +hash = "69c12b208d79f195c899676afc2435c61ae8b9f21e6052854733b61c9822681a" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_security_manager.json5" +hash = "38cd199feae5b6e57d05265e1e226a04708acfd156ea74a9a64948e56f04f3b3" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/white_wireless_transmitter.json5" +hash = "13ffa9d0f6d179061c724968458b6d12bf4aab6c3dec5925b6f979fe90a4fb17" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/wireless_transmitter.json5" +hash = "99b99491005001c57cf901e9a92faf82cff94a685a8eba0b3cb644d898254eeb" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_controller.json5" +hash = "f3e73547e0c1e46f2a88f1c585c46d736b08b8b8dd75bfe95b3af89636976186" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_crafter.json5" +hash = "0449ed866a6cedaf8875019d0a805732d2dd9e72dfd3d951b88221141525c1d0" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_crafter_manager.json5" +hash = "0ca63fe5a5ed22c06bf7fef89f8dd79a6d736c8181060e20207f03b159e8a4a8" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_crafting_grid.json5" +hash = "62bfd5356db5ce651fb215155e482f05ce3940d1fc8e2f571d1744c8de2a67ab" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_crafting_monitor.json5" +hash = "4caba5d614b9ec1b0cfb0b0ed824a90c4166177939c0b158a76668477ca31277" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_creative_controller.json5" +hash = "5d39e71d5a0acfdca3551d86a427d37874e6190a7c30adb8324498d707a567eb" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_detector.json5" +hash = "1d5657be0810ad63ef9216f9ef3878b45217914bb047e4a3a6e726070477d24e" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_disk_manipulator.json5" +hash = "67cfac4c37b10f380f1b65a52b810af6ecb463f7f6ce4daef4e796aa2a183f27" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_fluid_grid.json5" +hash = "2ec376072dd45478b78d3692af4dc8b4632cd2fb9d79c3d84441631856fb3387" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_grid.json5" +hash = "c93221d9e71516309741b87cdac2e652d17163678f33477d73c32d5020f36b62" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_network_receiver.json5" +hash = "3fc4c9f1ad85574e35732c7a9c9c0e68ac43a2ca44f213941e98966bb9715e71" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_network_transmitter.json5" +hash = "69def393fa075e552b79294edca705631ca43af9738daf34a402f9b63db00b7a" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_pattern_grid.json5" +hash = "fde9e10561ed756fb6448d1a6d89c954430a8a7da0de119dd6a7b834a98198e8" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_relay.json5" +hash = "c8b29a3d77b12ca0f71a4d4645917d13316f9cbc1890de416e8e806d6bd99034" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_security_manager.json5" +hash = "d3e74df923951815709424501773c33eca8775e5f9906e30d173212c25628a19" + +[[files]] +file = "config/blockswap/known_states/refinedstorage/yellow_wireless_transmitter.json5" +hash = "02a6b63469348f37299b1ca4ed92a2f5f8ad9457376e6bb781e4c0380f2d4be0" + +[[files]] +file = "config/blockswap/known_states/rsrequestify/crafting_emitter.json5" +hash = "dc92ffd098d2f0b7afb7c7b17f9060bc12e1d612ef1c54dda101f9eab78daf5c" + +[[files]] +file = "config/blockswap/known_states/rsrequestify/requester.json5" +hash = "5988e32fc5b738aafcd2095214472795f4d82cfc9ffe6c6ff134e6a21d9174a8" + +[[files]] +file = "config/blockswap/known_states/spectrum/abyssal_vines.json5" +hash = "3d97d7ffd54c3a2e969d408eed7e571797c6eea1b41939be157c2a78d50a85a3" + +[[files]] +file = "config/blockswap/known_states/spectrum/allay_head.json5" +hash = "b304e525032488ae465ba2c32385808a949f45344705c5797aa5fae78b954b63" + +[[files]] +file = "config/blockswap/known_states/spectrum/allay_wall_head.json5" +hash = "6368243969fab0433d10fec1b1211521dd7bdea978f1a9cb9bcd6003e5a8b21a" + +[[files]] +file = "config/blockswap/known_states/spectrum/aloe.json5" +hash = "fb355dd7ec5738a80207ca5cc296649fa9b3859cb95ef6447f331e18ca027854" + +[[files]] +file = "config/blockswap/known_states/spectrum/amaranth.json5" +hash = "6a60ca7389e03206555fe511e1cc3c4c8c0141a7954ec36494d9aad735f496b5" + +[[files]] +file = "config/blockswap/known_states/spectrum/amaranth_bushel.json5" +hash = "d0b81fe858714a3edb8039073347a21ace1750d869bde05de1c6531680f853e2" + +[[files]] +file = "config/blockswap/known_states/spectrum/amethyst_basalt_lamp.json5" +hash = "9f065f5d3c2eec2871e00b49ff982efdf81d4dfc6ed2a51357b258d4c45ed424" + +[[files]] +file = "config/blockswap/known_states/spectrum/amethyst_calcite_lamp.json5" +hash = "302f052bcf84699990ae20ed124953c296a3a992ee2bb1cfa466ac1e332a86c9" + +[[files]] +file = "config/blockswap/known_states/spectrum/amethyst_chime.json5" +hash = "a98125a706e8cb5b174ed89d6f6e23fe18892551ed001d53de9dd44fae985519" + +[[files]] +file = "config/blockswap/known_states/spectrum/amethyst_chiseled_basalt.json5" +hash = "8c343a6ab3aff0d3c1d187ac30262a61bbba22de25e2bb64e4c1995313b463d0" + +[[files]] +file = "config/blockswap/known_states/spectrum/amethyst_chiseled_calcite.json5" +hash = "3a8a6d1608507c8a449dd7e3c309364aca8bc9b5f6f2e66b413ae38623624487" + +[[files]] +file = "config/blockswap/known_states/spectrum/amethyst_decostone.json5" +hash = "e3b4194f1f4abd8e5bbc17c77eaa4a96fc48de4134f4e2e04d58ab52e50447de" + +[[files]] +file = "config/blockswap/known_states/spectrum/amethyst_glass.json5" +hash = "6201db36303d6eb6e8bb0519736b0fee99ecc1d0763400e68db412961a0bae9d" + +[[files]] +file = "config/blockswap/known_states/spectrum/amethyst_glass_pane.json5" +hash = "65e457197853b1930c7d9d33a402cee7fc1cf1e78db5839f8108512e2c77f52f" + +[[files]] +file = "config/blockswap/known_states/spectrum/amethyst_ore.json5" +hash = "09bbe3467280e72b599aa128b18e841d545abd22ee93d3fd7fbd7b24a36c189f" + +[[files]] +file = "config/blockswap/known_states/spectrum/amethyst_powder_block.json5" +hash = "962c26de807728b15095fc1cd44e466f0b83f5473da92f9648d48c6a9714e8a0" + +[[files]] +file = "config/blockswap/known_states/spectrum/amethyst_semi_permeable_glass.json5" +hash = "dd918875bebaa8a7a1a365aac447c375ae98de519040af20ecae873c3ab2bd7e" + +[[files]] +file = "config/blockswap/known_states/spectrum/amethyst_storage_block.json5" +hash = "c25fd5eb309ee98c6fa5f01144787484744818981a2afb6b4ba50e435d2919c4" + +[[files]] +file = "config/blockswap/known_states/spectrum/amethyst_sugar_stick.json5" +hash = "a603f6ea5ed9661d87bdb24b9fa90b7cc50e74159593f98e6a75cf3d72b7b06b" + +[[files]] +file = "config/blockswap/known_states/spectrum/ancient_chiseled_polished_blackslag.json5" +hash = "6336c609fe3f312460c4a6d72391222fb301439b85668f3cdd772944904fbcbd" + +[[files]] +file = "config/blockswap/known_states/spectrum/andesite_shimmerstone_light.json5" +hash = "d03aff6ce4f2a762a941366ee39355197846ada7314d5109fd71ca3e72637f98" + +[[files]] +file = "config/blockswap/known_states/spectrum/apricotti.json5" +hash = "58bd02dde8fdda778bdc63df1f97761da78851f254f43ebcbf5760948b34af77" + +[[files]] +file = "config/blockswap/known_states/spectrum/ash.json5" +hash = "72edd784279fc0fd6992e20480a170c971848abd7bf7b8a45bc6d2b559ad1265" + +[[files]] +file = "config/blockswap/known_states/spectrum/ash_pile.json5" +hash = "cd4a141539342059002a791a7227e0f6d1e5043264c7a5f4a9679e3abc4651bd" + +[[files]] +file = "config/blockswap/known_states/spectrum/ashen_blackslag.json5" +hash = "c2d2fa7dfacf7e741b2950ea49d966b6ccb1658e0e0d089b45f9f4e5044dac9e" + +[[files]] +file = "config/blockswap/known_states/spectrum/attached_glistering_melon_stem.json5" +hash = "b85cd96534543ec80899c7fef65a06403179fc83e549a6643f12b007df0c34cd" + +[[files]] +file = "config/blockswap/known_states/spectrum/axolotl_blue_head.json5" +hash = "92495522b0495e923efb1115506b929460eedfa8651223f85b415f704fde4583" + +[[files]] +file = "config/blockswap/known_states/spectrum/axolotl_blue_wall_head.json5" +hash = "ca0772242d4568f3f232384569e7f26f7ffa39d2f31712099e91504459e9abfa" + +[[files]] +file = "config/blockswap/known_states/spectrum/axolotl_cyan_head.json5" +hash = "2e58a45107cf825b86590e6cfa92bcc39e38021b125d5fdd1c8200cb2c80f4c1" + +[[files]] +file = "config/blockswap/known_states/spectrum/axolotl_cyan_wall_head.json5" +hash = "6dd30d3cc6e53f4a19c3f03492b4688feb00505ac0e973746c16ef984ca881c1" + +[[files]] +file = "config/blockswap/known_states/spectrum/axolotl_gold_head.json5" +hash = "33b304c64a83c1b203de5a0d6454f8f60bc6d3748e2515454d11142afdc5d900" + +[[files]] +file = "config/blockswap/known_states/spectrum/axolotl_gold_wall_head.json5" +hash = "c0dd22ba8044f251f285b191b55ad97731527921f0086304cbda558f577d2f5b" + +[[files]] +file = "config/blockswap/known_states/spectrum/axolotl_idol.json5" +hash = "3fe7b2896572ab075ee3d8bd4410aeced537b5a39996135e85c190cffe84a664" + +[[files]] +file = "config/blockswap/known_states/spectrum/axolotl_leucistic_head.json5" +hash = "707b8d623f09fb7b3d670d284b6d8947ccbcbaf473f1d46b159e1dca2481d0b7" + +[[files]] +file = "config/blockswap/known_states/spectrum/axolotl_leucistic_wall_head.json5" +hash = "7cc221d70b39a62e8fdb930f50a93a13969d70e0909e45a7b704dec237d18d6f" + +[[files]] +file = "config/blockswap/known_states/spectrum/axolotl_wild_head.json5" +hash = "e96a0bd3e8671ddbe41ac1cc5e7d510651929eb2d2b51d10903398102e062f12" + +[[files]] +file = "config/blockswap/known_states/spectrum/axolotl_wild_wall_head.json5" +hash = "7580d56ad8e1bd7eebb580c3c3f3d241ca26afefbe0b8a7451e340d66e092183" + +[[files]] +file = "config/blockswap/known_states/spectrum/azurite_block.json5" +hash = "0415847533b60cda8721c6f3b34d7a61244e99baa9f8c78f955fa66213ff8c21" + +[[files]] +file = "config/blockswap/known_states/spectrum/azurite_cluster.json5" +hash = "2653dbb77a599f1f32ba0951938a26fd5f63045b6d0bcd2cb79f147922d2ae06" + +[[files]] +file = "config/blockswap/known_states/spectrum/azurite_ore.json5" +hash = "1dd772becb7092458797e49cc2105408c84e8c0c0bd7be37b899055adcb9c62c" + +[[files]] +file = "config/blockswap/known_states/spectrum/basal_marble.json5" +hash = "f2fcc1e60c7b5c618985ba306703a14e46989718b93ac8340539590727218967" + +[[files]] +file = "config/blockswap/known_states/spectrum/basal_marble_brick_slab.json5" +hash = "bb6f5d9c01ce7b041f8ec84da09dbd05a11fb8cbcbee787ee4954b6e020626ef" + +[[files]] +file = "config/blockswap/known_states/spectrum/basal_marble_brick_stairs.json5" +hash = "6d3187c27d723a1ff7589d2bf0d5f8f0120eb01dc7ceea5dcc579592472923ff" + +[[files]] +file = "config/blockswap/known_states/spectrum/basal_marble_brick_wall.json5" +hash = "f8e5f8a0523e246613bfd6a80e5dafa9f99ec7de3cea844bfb9b7bc42e2772e6" + +[[files]] +file = "config/blockswap/known_states/spectrum/basal_marble_bricks.json5" +hash = "c15f4507a1e7b4fde21176ec93ff782d025d960263b29bfc6b2a5cd8ffd0da0d" + +[[files]] +file = "config/blockswap/known_states/spectrum/basal_marble_pillar.json5" +hash = "afcf5a64c1839cf8b7e1542cde66e5265afd1391321536f5bc39482ac1df6c23" + +[[files]] +file = "config/blockswap/known_states/spectrum/basal_marble_slab.json5" +hash = "1fecf3788cf71a83ec112c70270b132ce501deb408cd480aa864cb356aec35f9" + +[[files]] +file = "config/blockswap/known_states/spectrum/basal_marble_stairs.json5" +hash = "7a1da93053ba861bf49a7c127f0a18dea4ef0ad37a97fff322e814f793e52250" + +[[files]] +file = "config/blockswap/known_states/spectrum/basal_marble_tile_slab.json5" +hash = "b0c18edc58ce61faf6998af39935997e934b15ef4e58721e60e6e738e51ff8a9" + +[[files]] +file = "config/blockswap/known_states/spectrum/basal_marble_tile_stairs.json5" +hash = "7369b8a02f0766bf1ead8ab13fa446ce0da2090e358bbdd2d558c8dee8d2d390" + +[[files]] +file = "config/blockswap/known_states/spectrum/basal_marble_tile_wall.json5" +hash = "6cbd1e471d9c080de668c4def758f1d41f9479f4c9c820b4b2cf5e73fc208171" + +[[files]] +file = "config/blockswap/known_states/spectrum/basal_marble_tiles.json5" +hash = "115c5de164154e0973c63cb0815454e36bc98879e772b2f8399fa5ddd597132d" + +[[files]] +file = "config/blockswap/known_states/spectrum/basal_marble_wall.json5" +hash = "5357efd9754fb38e60a0e672edf7e3605f76f9b22c5fa80ad1d9f379f765f437" + +[[files]] +file = "config/blockswap/known_states/spectrum/basalt_brick_slab.json5" +hash = "68f45b3fb39a3940838406ceb08748991cce3e9018b235730976a705a1fd8e39" + +[[files]] +file = "config/blockswap/known_states/spectrum/basalt_brick_stairs.json5" +hash = "4a2dd7e2bab5b0423cad8e4b634b8906ee9c640648ea2c9cf09fe51b9ab7898e" + +[[files]] +file = "config/blockswap/known_states/spectrum/basalt_brick_wall.json5" +hash = "423da59ebfb7775204c7bdef258de4ccc305e221a79295730fe7965df9ad5093" + +[[files]] +file = "config/blockswap/known_states/spectrum/basalt_bricks.json5" +hash = "f841455bee4969c6e2aed141f58ffa69ccbad583b232cb192040e3744fd9e616" + +[[files]] +file = "config/blockswap/known_states/spectrum/basalt_shimmerstone_light.json5" +hash = "69fbb1d18e853bf1653d666132ce6acf55fb4356451236b6de254980ed9c2ecb" + +[[files]] +file = "config/blockswap/known_states/spectrum/basalt_tile_slab.json5" +hash = "e98424af39a4f0055bc2894f78d33688292cff5ab211f85f8c8583e9b9b8bbf4" + +[[files]] +file = "config/blockswap/known_states/spectrum/basalt_tile_stairs.json5" +hash = "35cab7e6b0986644e3eda9618bc06cd11d328f8487c826f436790cff4fe1d36e" + +[[files]] +file = "config/blockswap/known_states/spectrum/basalt_tile_wall.json5" +hash = "0edd5530be79ce11a15fe5d16df9056f47d2dcb0327fe1113dfbe3fc10b5922a" + +[[files]] +file = "config/blockswap/known_states/spectrum/basalt_tiles.json5" +hash = "84e2f019bf074bd1db142c111bcbed2301ac48f9378b80829b75fa51abc7b71e" + +[[files]] +file = "config/blockswap/known_states/spectrum/bat_head.json5" +hash = "40d2347cbe047032adb147e4ec78bf808918faac0e448923d5c216074e37b21b" + +[[files]] +file = "config/blockswap/known_states/spectrum/bat_idol.json5" +hash = "bc2f0336067bbe37ade9ee269d46c8c57a5ccaef4b42666b3f0f40a223654cc6" + +[[files]] +file = "config/blockswap/known_states/spectrum/bat_wall_head.json5" +hash = "7bbb4d5fa9be958d03f1fc66102de1b6cba9e3ffdbcaff9eda1a1be5c0fe2934" + +[[files]] +file = "config/blockswap/known_states/spectrum/bedrock_anvil.json5" +hash = "0dbc8bc12fa26236b0100ebd7f32668d7ef76160f6157db067820b5f691a486d" + +[[files]] +file = "config/blockswap/known_states/spectrum/bedrock_storage_block.json5" +hash = "e518d1695e30ab65ddde5499be3b415ee5df46e4ed5b23e5280a9f5decca9c9f" + +[[files]] +file = "config/blockswap/known_states/spectrum/bee_head.json5" +hash = "e80472edab4d75407999e56750f4099efc5a88cbbe07d6746920525cfbe87eb8" + +[[files]] +file = "config/blockswap/known_states/spectrum/bee_idol.json5" +hash = "cd33c9d971a521d71939926d53493273bc79bcde7915cb8faa255b0e01c12f37" + +[[files]] +file = "config/blockswap/known_states/spectrum/bee_wall_head.json5" +hash = "2cdc547c8dcc33f09560b0b818bb0e26f5db47629ef496ff97b71b60838d7f04" + +[[files]] +file = "config/blockswap/known_states/spectrum/bismuth_block.json5" +hash = "200ae321f6824de0e92990b0c8de4c117d9a4ce92aa8ecb8b6411e74182572b9" + +[[files]] +file = "config/blockswap/known_states/spectrum/bismuth_cluster.json5" +hash = "4165ebbdbf9ba0c41559c038a7b158ef2b55b6ee81bce2d38c764484b241af11" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_block.json5" +hash = "d4e1dadf6a062799bfdcf61ecc0aaff2e7578d1cf43ce02647b4294c83b0245f" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_button.json5" +hash = "144fc509e89a0b9a597be0f13f1bca03235446c81c19695422ea89ffd9de0e69" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_chiseled_preservation_stone.json5" +hash = "69b429b4211977e5e1ddf7cd5b422bba4f22e7828890670c5134afc929f95a92" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_fence.json5" +hash = "6b4fc345e99cddfe16b5ac2d78e930522dcc37ee7e6e7461610c1b1eba6bee21" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_fence_gate.json5" +hash = "0b86989917a81b1b429ec295457dc462fb4ab108c9509b35bed2e76142fc4f00" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_glowblock.json5" +hash = "3d423cc9590d8d132095df6c6b59527612fe0ebbc939522acbed9ee12d5d6844" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_hole_chest.json5" +hash = "e2d46f27dd344ce6999c7d7b8614024918147ee1da62cfb7f699e60e0e5f5ab1" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_lamp.json5" +hash = "f4eea53b460f94d983e530e53ebc010752cbe80ca23a9837d86354899983d58f" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_leaves.json5" +hash = "aee8a7269a1d620c3c0eb849cbe31c90f36e2dc2255a2743743bb48ae7503102" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_log.json5" +hash = "735d2f317dc28bf814549a7d520bacd4fdc7518214778d564e8475737a8fc31e" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_materia.json5" +hash = "afeef7f3e35bc36f0acd36e12e27c400ee972f80f8cbd59ce956cd5fda432d78" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_planks.json5" +hash = "03bed447a664a4f94fc8e209f3f3071dec72e48ddb195f1080b454b92ce32fc1" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_pressure_plate.json5" +hash = "11ae92fcc40dfa270c3dd0af6cd2484ec7e45ad4e96dfa89ae11a9f9779b811c" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_sapling.json5" +hash = "cfc50168eafbbc39104d3045700adb9ff5490294dc869ccd93ad06b90e416032" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_slab.json5" +hash = "c7905c5adc9fc0e2822b306238e8f1c221186b1984d6325b7c067e2add004c92" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_sludge.json5" +hash = "4dcbadcf00316eeb4521ce7f4caf7b9f5e4fffb33d88340f3c0732d2e7aefeb7" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_spirit_sallow_vines_body.json5" +hash = "9343271afc8385c764f1fee77a4e9dbdb865032261c36eab1dbd44452eca6482" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_spirit_sallow_vines_head.json5" +hash = "995f8aba6f8d7fceadecc9c0bf833411e7d781e9d0d5a59495d55edad048a48e" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_spore_blossom.json5" +hash = "2190a1716967e17872a0ba3396c894fc42bdf38cd3f727df50fa199ca58d207f" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_stairs.json5" +hash = "d3222ed054ae057656ee9145c1585e453a9f41c4bb813762e795131f79899346" + +[[files]] +file = "config/blockswap/known_states/spectrum/black_wood.json5" +hash = "dfb5cf0c15423b139fc10ea4713fb198b13fcfd979e9bb00632ed1887f508ad4" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag.json5" +hash = "ea8cbe7c5732a06d271d88d1d3a27a9f8e39694cd35dca58fca5f1bc80fc13a9" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_amethyst_ore.json5" +hash = "213dfe4b05f6776b59cadf09154796b2dd0affd8a76eb62f67a66003adc954ba" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_azurite_ore.json5" +hash = "9443fc58f10e0d3836a06644fca08b90c6ace2f462d752f6a8c165cf19f9e126" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_brick_slab.json5" +hash = "e7d2cb1442b9cd0eb8e8c0db5c4c627ba9ce205be37ad8c46b8eeea2cee867d3" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_brick_stairs.json5" +hash = "29f0d2b16b5db6c2206c8193630e1a18de8cc1f2fa6566c7ca7869d205e99e33" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_brick_wall.json5" +hash = "f1c34410636b6252346470af61016662aa21e41d0d47acbe78c8cd39b3993130" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_bricks.json5" +hash = "5968080e19d4e60b8ef45f928439a7c54edd7943535109fff26e140137d82755" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_citrine_ore.json5" +hash = "f1688082cf6f8f762853b6d025a5eea3844ea41aa57af433109bb7956eaa67cc" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_coal_ore.json5" +hash = "c0e7f06a9cb0fda46a1d99ce11e6429f3a9d759b4f19fc876fed7d3b903538c7" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_copper_ore.json5" +hash = "e46dd576a566611a513b8fa3ca094e0815c50cff1395609879a9edbc0a915ce3" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_diamond_ore.json5" +hash = "75ef6ae220b95071292c1e513b3b633f7a89ed732cda9721620660f18bf897dd" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_emerald_ore.json5" +hash = "ad5020b9667c2b55a970bf692549be2cd113db0869b728d220aa9d7b24c4977c" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_gold_ore.json5" +hash = "88ae2e1bcf87e5a122b750de0ed0c9e7aed5acdbbc317513eaae51525dcd6109" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_iron_ore.json5" +hash = "5820f74b5b3f5e47f8e54bc70a03b6936e48e532c991df7201d6a8456e81f2d4" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_lapis_ore.json5" +hash = "39cef250644a15a1a9a45626f282923e17d557871fcada774c0b8a1994eab1fa" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_malachite_ore.json5" +hash = "0104b97fd3ed6f0e0a6b525aff691591a351d11089e048a2dd9e7dbfb3966e97" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_moonstone_ore.json5" +hash = "eeb3611a3576280bf2d455396c87c49a8f87c22d0891ed28c4817d1560e4ed15" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_onyx_ore.json5" +hash = "9ae0e6c4d169d84fa356c2c00d580e96c0d8231623c1d9cc79e883f7bf84e5d6" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_redstone_ore.json5" +hash = "3fd4869ef74e46c3d8f0ff0b2aacb939709196cabcbd32c6cbae17a1165d0a30" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_shimmerstone_light.json5" +hash = "abd1853f264c1355701f464eb4e03a7d4b94f9fcb1d43b4cd1aa24aa2db0da58" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_shimmerstone_ore.json5" +hash = "9dc2834308c7ca0be5e73cab892c49345152819cbc4cd0ce8d297e0473ad2416" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_slab.json5" +hash = "569de300db1215d3ef241e2ff118a8da2391ccd53e08ec6e9306e5a0a01b91f2" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_stairs.json5" +hash = "42156f7e646279c32955a9c13d272cc7e6f92e0fdeca8c6459b3e65068542d52" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_tile_slab.json5" +hash = "fce03a0ee878f76001d09f33c67a0721453ded07ce1a860de5f1d7670f22b029" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_tile_stairs.json5" +hash = "e2cf91203278fa03122a7c6664f9f52cbd71a74610d05ea5efacfc56c8ce2232" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_tile_wall.json5" +hash = "c254a046d46a5012eb17d9dfce8335ad21e7f7445231a5ed1e9c38da2ee188f0" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_tiles.json5" +hash = "9afefdd3b3c9dbe0d005c208e01aac38cf5a0ca0f0ae0c41b147d2ecfd991a4a" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_topaz_ore.json5" +hash = "b6424daa1f677d59e6e391f9ededc678458d04fee2551794211d876fbb66c22d" + +[[files]] +file = "config/blockswap/known_states/spectrum/blackslag_wall.json5" +hash = "32c9123272a5a26c20fa8a6973dab41d64149ab58b187a449cf950502f22071e" + +[[files]] +file = "config/blockswap/known_states/spectrum/blaze_head.json5" +hash = "0d3babe8d650b739f86395e5f11a6ffc1331236e908ac6fe92f4a00010ca4cbc" + +[[files]] +file = "config/blockswap/known_states/spectrum/blaze_idol.json5" +hash = "0702b447e6600b8615df328e4bd9adf1ab438f92afcc0a1388f750e3f1db9fb2" + +[[files]] +file = "config/blockswap/known_states/spectrum/blaze_wall_head.json5" +hash = "02b1366a46a5fea6a6a79c50f4c41d36c0d6dd071dfd1465c4ecb1573c644ba3" + +[[files]] +file = "config/blockswap/known_states/spectrum/blazing_crystal.json5" +hash = "2e3120f423b18c719a0e0e03cbd981b27c6fbd6ffc5da2d6e1fd5d91d31c2494" + +[[files]] +file = "config/blockswap/known_states/spectrum/block_breaker.json5" +hash = "b8c56e559df1856b2ff9250fd86f7765ab580bbd633db5ca8b8a2505ca1c54a8" + +[[files]] +file = "config/blockswap/known_states/spectrum/block_detector.json5" +hash = "7d33b65292c4b028a537535f336501ec5fb14c24185cdeddff4c2326be582674" + +[[files]] +file = "config/blockswap/known_states/spectrum/block_flooder.json5" +hash = "980dc76b0019560bd90debcfdb403bbe799343c2af9b5067d9faae7d12256b91" + +[[files]] +file = "config/blockswap/known_states/spectrum/block_placer.json5" +hash = "835aa58d6384cd1b1a51c5fc759f3e8907b8914d4f032dc504791e893988c289" + +[[files]] +file = "config/blockswap/known_states/spectrum/blood_orchid.json5" +hash = "5d5dddd2c4ea2171063aa0df5d9b38037f3667951a4490391162241918cbf61a" + +[[files]] +file = "config/blockswap/known_states/spectrum/bloodstone_block.json5" +hash = "190398146142b010b6cf11e0767316dcfa87fe70bee80fb49199630ded33ac2b" + +[[files]] +file = "config/blockswap/known_states/spectrum/bloodstone_cluster.json5" +hash = "84f128e0989afeb2c69c995e5484e97ce040955dcc3816026866ee03a90cd03d" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_block.json5" +hash = "cd80c9cb048acc9680ee9189d075df6674e7051105dc9e34b4a1c1832f4e5f29" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_button.json5" +hash = "7da71bed2ffdd9dc8351bd09da95d70e840af86c09f04967d62146fae68efca5" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_chiseled_preservation_stone.json5" +hash = "07cc5ba013380f6f95778a9b951e44d04ed76a0b579098914e34e4dcbe96914d" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_fence.json5" +hash = "d3e0ec6f5671d57bb86c4c11d36692bc23be6bf16d9a5155421ba454dfbcc347" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_fence_gate.json5" +hash = "5ac55a7142cd7314e62090be0a3b24345a1c4b7a938f43c3336d357b4fabae00" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_glowblock.json5" +hash = "b5347abb95c1387c4500ea141bc1089e650210ce811b23bba9d325dd2da16537" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_lamp.json5" +hash = "d9b136bb83aed794287beb4a856d6dd15774b6e935eff86afad4d0983ddbcf6a" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_leaves.json5" +hash = "c4ffa2a9b8850aae10e8810cd3556f7fee72646f95c7fbf944548d73a22c5247" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_log.json5" +hash = "cfab0f91983ca7a0904f7ce95ef5fca01550804ae444aadbabaa6a235462b9ef" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_planks.json5" +hash = "fd1b3c188dbd2a1dedcbe8ef80f9b5c55f9d5bb6b2f84c583c13513488017dda" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_pressure_plate.json5" +hash = "c03501d3aad878bd78918f740e640868a8e9434dbb6852c620dd3dd953743cfd" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_sapling.json5" +hash = "365e27aa4038a953c38e10ba41184c57a626c173d03cd8a3a0661129ab057663" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_slab.json5" +hash = "f7ce5f694445f20f51314a05c5688b96905722aec9820da4f616f3420eb752f5" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_spore_blossom.json5" +hash = "77190693b8f2da6425470b224e4f4e7c8ff5a6e2fde0b23e3e60b8a974254312" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_stairs.json5" +hash = "a5e56c7e491a038a1de5be54245366f82f4fcf97524c30445045264026c838f4" + +[[files]] +file = "config/blockswap/known_states/spectrum/blue_wood.json5" +hash = "d09768fd402fa954a013e242d042e83fba60ca7a54330cc5b8ae6cbac7b35a6f" + +[[files]] +file = "config/blockswap/known_states/spectrum/bone_ash_brick_slab.json5" +hash = "58edc1e0a48d746a9c2e87cf393eb7ab018e9fa1768e787ff43b1805388133ce" + +[[files]] +file = "config/blockswap/known_states/spectrum/bone_ash_brick_stairs.json5" +hash = "c09e84d27576bc1f25c9454427fd5813fc0acce8d4fe5b616e7206a20a6f7aa3" + +[[files]] +file = "config/blockswap/known_states/spectrum/bone_ash_brick_wall.json5" +hash = "a00222b8469e5243479c13f75fa07e96b20fdf217c810f231b2c0e89e8ab9e30" + +[[files]] +file = "config/blockswap/known_states/spectrum/bone_ash_bricks.json5" +hash = "4915c6188cd05284245d44ac62951450ab225ffecab4e6ed919b718b182c95a7" + +[[files]] +file = "config/blockswap/known_states/spectrum/bone_ash_shingles.json5" +hash = "7b8ee313037be3b21bcea5be6ecda7ba790a6b3041e5343377171c615b60d975" + +[[files]] +file = "config/blockswap/known_states/spectrum/bone_ash_tile_slab.json5" +hash = "f28c5124671e2657934c85fc3e88c1b6c0401c5abfb59ea479a4c3c94984c293" + +[[files]] +file = "config/blockswap/known_states/spectrum/bone_ash_tile_stairs.json5" +hash = "d9091ef7151fdca76f0486f0ada384a38e8d91a9ae511afcf6014a8436a15784" + +[[files]] +file = "config/blockswap/known_states/spectrum/bone_ash_tile_wall.json5" +hash = "74eecbc190c1a0f8d8b8db4b913cddfba42655086acde37669b5d91f0ae13fb1" + +[[files]] +file = "config/blockswap/known_states/spectrum/bone_ash_tiles.json5" +hash = "43311bf72532b934c33ea87a97cba83808fd1533ecdc3c4ae4a58a666f4533d4" + +[[files]] +file = "config/blockswap/known_states/spectrum/bottomless_bundle.json5" +hash = "b4fce113d8029d7e0d75abe69efb70027e096860b3ef1364cb4b4968d901aec3" + +[[files]] +file = "config/blockswap/known_states/spectrum/bristle_sprouts.json5" +hash = "b331885306250d065f39cc656e5ce81b95177b475b7663fd733f7bdf211dfc30" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_block.json5" +hash = "5e07e6e1c494ff86ec1d86fedc61b977e607b72b5cd69974db2722ca3f4c21f5" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_button.json5" +hash = "c693a1e4eefbec4e68b80f058feb6ace934190163605f25317a1a782c64bfbc0" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_chiseled_preservation_stone.json5" +hash = "49ba57174e0d2a3b7b3215b29ca4cdbde919e2aa00b55512f4407c6e6749efff" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_fence.json5" +hash = "93b674ebd66b68c011fccc9525cade7c46726cf718591d19982de17a302d9dd7" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_fence_gate.json5" +hash = "d8db180d2170b9c90cfe09f2de929486b9f63f22dc93b86ca32b3626c33a6597" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_glowblock.json5" +hash = "0453ed9f13b1f75525934aad5d65f31849e6b35bcca8a0b6fa42b8680c8d0763" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_lamp.json5" +hash = "ca3c4973cba54c5311e9db1e15ff656c2a5bfc217472f4c50f2054a895604142" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_leaves.json5" +hash = "5b17210a10c69cf50a19e16348b1556f93c0a56b7a359605002fc695306ce740" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_log.json5" +hash = "61a91032028e8742e7b4137e9b4b1bf6f8447826bd326484774b3b485eccc9d3" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_planks.json5" +hash = "0a3fc214554d8eed7fcc17a726ddd340c29403e8529423e99a11cf295e535bb1" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_pressure_plate.json5" +hash = "38910f9cd3c33fa360139b11a3c876b32487afe5c1997637fe684a655a84552b" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_sapling.json5" +hash = "e595f4a6c42ac1c0f0800de8bc21b6903a0df69e8c43c8eeb35b3c0256142211" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_slab.json5" +hash = "fbb1e488f79570e4275e25224cafc0064678e38b521db2a805dc1c600d1b3dac" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_spore_blossom.json5" +hash = "3b21d10e72f2d9835f93d6bd0d1f45f87e56697b3dc7f5cc4af20b1c09878aaa" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_stairs.json5" +hash = "333a1d51cabd9f91bbce3daf7e4ed16a9d7587d80947635a0192f5d05c26e4ee" + +[[files]] +file = "config/blockswap/known_states/spectrum/brown_wood.json5" +hash = "4387efc67705828bfdf4084b49e929da22ec297fb15b0f7640d4a569c0243d63" + +[[files]] +file = "config/blockswap/known_states/spectrum/budding_citrine.json5" +hash = "0a12843595dedb4808be0998ffc15cc661ff148afa1169257c4c48e9cf4c423b" + +[[files]] +file = "config/blockswap/known_states/spectrum/budding_moonstone.json5" +hash = "31e15c4f1deb55658b817f043c95915568c55cc4cdf51bc5815c984f0ad41848" + +[[files]] +file = "config/blockswap/known_states/spectrum/budding_onyx.json5" +hash = "728073908843e6ff9180a9e474cb1d0f6b6a53a1694f32ac82244d566f4e402d" + +[[files]] +file = "config/blockswap/known_states/spectrum/budding_topaz.json5" +hash = "6844a529623cc184973363fb0c89fa07ca9128574bf5bbea622262a1b764d469" + +[[files]] +file = "config/blockswap/known_states/spectrum/buffer_node.json5" +hash = "8bbbf91d65dfeb397f896af29cb43ccc258c3e45f4ba60b68d30719ddc1d11be" + +[[files]] +file = "config/blockswap/known_states/spectrum/calcite_brick_slab.json5" +hash = "fe572228eb6539b38142138e0d0060351a3d73b000d0fc6e1778ba83a3cd5fb5" + +[[files]] +file = "config/blockswap/known_states/spectrum/calcite_brick_stairs.json5" +hash = "6c36029bb064d1994baf84eb4b6a0a0687a759b5d168e07f77f6cc5efc6041fc" + +[[files]] +file = "config/blockswap/known_states/spectrum/calcite_brick_wall.json5" +hash = "dd034eef2dc68dae9793b4c74e704d5686162113e1a05bbf52b4067e84516c42" + +[[files]] +file = "config/blockswap/known_states/spectrum/calcite_bricks.json5" +hash = "bc7fe22929d558f53370ed811079b90020faffe53ff7413dbd50d9b0b49f3b6a" + +[[files]] +file = "config/blockswap/known_states/spectrum/calcite_shimmerstone_light.json5" +hash = "627057e81852d6bb1f75f40634856a718cd700a8aefa10cba1fa05c234c85830" + +[[files]] +file = "config/blockswap/known_states/spectrum/calcite_slab.json5" +hash = "1b577c0a833b815fa7ab7209011a56132081271a97b5f490cb2399cd448ca2bc" + +[[files]] +file = "config/blockswap/known_states/spectrum/calcite_stairs.json5" +hash = "bbac7c25f7654f0241a527e31d6ea296a8839cf7a9bf2b088dfcfb69c36c1a46" + +[[files]] +file = "config/blockswap/known_states/spectrum/calcite_tile_slab.json5" +hash = "f919fcb72d9df34dd646a34c6d976a11aae645d629b203e6e1f46fce3916648d" + +[[files]] +file = "config/blockswap/known_states/spectrum/calcite_tile_stairs.json5" +hash = "24b607f866ba9058ecd9d9008c649399484448c70277c44089153792ed2f98e4" + +[[files]] +file = "config/blockswap/known_states/spectrum/calcite_tile_wall.json5" +hash = "1a607b552eade415bea76bd2d14169ac93cdfecb8eb7abe4c8f5a281430dda62" + +[[files]] +file = "config/blockswap/known_states/spectrum/calcite_tiles.json5" +hash = "65c5b6ef8db37439ae1d345910eff507ca0d8320e57a60533ed70c4297c55800" + +[[files]] +file = "config/blockswap/known_states/spectrum/calcite_wall.json5" +hash = "7e64f1247b57469c15e424877aff39f06c14f25fe64f825b4a8d6347e3bf257e" + +[[files]] +file = "config/blockswap/known_states/spectrum/camel_head.json5" +hash = "c66a956f9054f11917c4c4d35cb9a176905b94e89b46b55bfd1d65273f37d0d5" + +[[files]] +file = "config/blockswap/known_states/spectrum/camel_wall_head.json5" +hash = "3f1e7ff1e555dc837e13681c09d9b213929c9cc47212742528d3f4b628c8de8a" + +[[files]] +file = "config/blockswap/known_states/spectrum/cat_head.json5" +hash = "0a10227d2cbdd8c3a648ad46af722fe62f725f25b6a9797f6dc09eda2eebfb23" + +[[files]] +file = "config/blockswap/known_states/spectrum/cat_idol.json5" +hash = "8dcf90b6fd0a3e0593966506caacd3e0558db43dacfabae9e9a465c0e40bb6b8" + +[[files]] +file = "config/blockswap/known_states/spectrum/cat_wall_head.json5" +hash = "80eb08589904644a93ca34a18c17d7cb3ae186e4a38d25d687b46922dbaf0357" + +[[files]] +file = "config/blockswap/known_states/spectrum/cave_spider_head.json5" +hash = "aea8b4ee0cfc5d1626333d66797031b56e233b725826d4c7d0f185870060c12b" + +[[files]] +file = "config/blockswap/known_states/spectrum/cave_spider_wall_head.json5" +hash = "491fd61d108a06844f35eb9046934b95c78c4400094247d591cb62d36e0f01dc" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxcap_block.json5" +hash = "6117f6fe863b1cfe7573f2e21f0142b3f0cf4c9f32fc84363926d3082db69503" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxcap_gills.json5" +hash = "c45f4d994a07d5d82e812dff12f7cfb082ce1cf1b962dc341a94540fc725ff6b" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxcap_hyphae.json5" +hash = "57a0202bd86e596c33098310289d44b261eaeca2cff698c039d8914f3029d3ea" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxcap_stem.json5" +hash = "e6bd27b45f6b0652c86f5c86452d5dcab4ad4fefaea50279fee735f1f7aabdf9" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxshroom.json5" +hash = "7e9988d602634212bd97d2dde5e7fe131d322478680bba24f8fd2b8b9703b09b" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_amphora.json5" +hash = "b0faa64b02120c0c6fa3009492951589ef92497d729b646a06ca48b4132c4269" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_beam.json5" +hash = "467c0decc62ea17c84a9b14db57b94917ee3823625f6b34e5135e890bac88fdd" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_button.json5" +hash = "559ae3a989446f6a3bb552f259d1e8de1cfe69f68a45554fd4eed80780309bec" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_door.json5" +hash = "2a9559ea3e7afd617a53c58519043171f6183647f508f3299da27b48d0705de0" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_fence.json5" +hash = "4edf3674d4af3d651ebc65d514bfee1bf945bfb95fee179c68b9504a6a24a8af" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_fence_gate.json5" +hash = "2b90f268f4398ccf7d6c14de0bcd2b6c717a9e75b5807f60375d6e1e374657dc" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_lamp.json5" +hash = "abfa33ea1f36b1f0af13eafd0b615d3ad79b075d0455de9304955e4cd92bd8de" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_lantern.json5" +hash = "0f4903be13f1b6aa88619f0e3f2dfee41f0e1e6bab2eb63247104992d33f598d" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_light.json5" +hash = "fabd467d0c73e707feb0d0c945983b8ff8f2684d31262378b3a4a2d51e1268f1" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_planks.json5" +hash = "a85ab1e3d53db30ecf948a955da1aa6121b54f97ed0a285979e8f0441c24d8fb" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_pressure_plate.json5" +hash = "c420d4949758d58cd5ada6592b1361c61295641d0f5f89827d082b0fd958801b" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_slab.json5" +hash = "fa82b6562ada1db3cbb93fdad25e8be9bd16e88fdfa1c447e5be631b9e40430b" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_stairs.json5" +hash = "faa84974302a059679cef1cd6c6a95de1bc1517642cbeeacc8853470ea68ac73" + +[[files]] +file = "config/blockswap/known_states/spectrum/chestnut_noxwood_trapdoor.json5" +hash = "99c3da341d53175bf60d4c9557f661c504e204d9d56782a323af4c1c8f1a6614" + +[[files]] +file = "config/blockswap/known_states/spectrum/chicken_head.json5" +hash = "08d0b0119a532df1dda2ea880191282f51c026b7b1d89d0a089b9a7eb0e3e742" + +[[files]] +file = "config/blockswap/known_states/spectrum/chicken_idol.json5" +hash = "4ce26e4a24b841acd524dc2364e11a8fb464959294e1002d3f338915e7d84427" + +[[files]] +file = "config/blockswap/known_states/spectrum/chicken_wall_head.json5" +hash = "bf9c0a67d52da52aba6f9e1d2cdda5c6116e3babc2778015e9f392800905c57b" + +[[files]] +file = "config/blockswap/known_states/spectrum/chiseled_polished_basalt.json5" +hash = "ee2bc317225f7464dc34839cfef87f664b4bb67eae9cdd6d43b13e95a4040cbf" + +[[files]] +file = "config/blockswap/known_states/spectrum/chiseled_polished_blackslag.json5" +hash = "e772c8bc13d942ee750a900afee232583f2756d924314e1b190f5acd1e0eea0d" + +[[files]] +file = "config/blockswap/known_states/spectrum/chiseled_polished_calcite.json5" +hash = "8867421d5cf1f7d7648952976be7b6361b6bfba10a972052f75e7ce6ae59fb5e" + +[[files]] +file = "config/blockswap/known_states/spectrum/cinderhearth.json5" +hash = "64de64ded331724ed477d802badb5a68e9fb9f09b1a3980567b901ba9cee9c09" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_basalt_lamp.json5" +hash = "815c5d760303c1b659692e77d5b0c503069c256d16e5fafdbffc1e5225d2821f" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_block.json5" +hash = "0095ef5a2df8f96696eced89c116e0906a154479ffc1d8b0b29f752ec5dfef14" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_calcite_lamp.json5" +hash = "c5c90a3946167339f25b100b8a96dffabee39c4a4c6cad1f693468745635a6dc" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_chime.json5" +hash = "8caf149b275482da202fe1470c1ea3ef9aa67782b7477e289333e0b30f4e6ec6" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_chiseled_basalt.json5" +hash = "585d77f6cbb3f6ed53347e960c0a87cae46994af1840209354cc5c6b9d5ed6cc" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_chiseled_calcite.json5" +hash = "f68e95475ff8bb6b9bf3cd6782a762dfca715bf084c61568dcd16a43457977b8" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_cluster.json5" +hash = "cfcc8bccc3af19b401441bdb02dc41d167a1d75af6e5b6af521a067689a9fc43" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_decostone.json5" +hash = "0e7e0558ecbee464efb53fd687bc74d6fdd137529422ff56a0b7f4b1453ca3a1" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_glass.json5" +hash = "7d9384f52181505f12d1a445b60690de5ae6c5f6341020a97dfd0bcd3fce3baf" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_glass_pane.json5" +hash = "db0b6129ff4f3a170d2d43b996914c31f9bb2844f35ee2be91971d767a3e31a3" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_ore.json5" +hash = "83a6187008ecf16d3f6bef67e418ea67edcbef8fbd7315a3a4782789979ec7f4" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_powder_block.json5" +hash = "d8194611ae52ee4f787bcb04b062780077366be62ed27458451fda072855f37a" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_semi_permeable_glass.json5" +hash = "441e6bc31b2dcb562f1ee858c1377051388e60290f4b351e3e9e1f82919233d1" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_storage_block.json5" +hash = "81701dbf558d3b69c3e83984475c395f7cb5028f252b1a2d1828c4ecddb30724" + +[[files]] +file = "config/blockswap/known_states/spectrum/citrine_sugar_stick.json5" +hash = "c72077b19c20bf93c46ee0af64bfc8364f03bc0dc10f69494d3ec656ee9f103b" + +[[files]] +file = "config/blockswap/known_states/spectrum/clover.json5" +hash = "abef02ee8d6e55509b5fe0226040ddd81b250b772823da03dd920af1cf49b819" + +[[files]] +file = "config/blockswap/known_states/spectrum/coal_cluster.json5" +hash = "f7fcef37fbabf7831afe6b2018c3b20256439c144709a75b9d9d09304a72b167" + +[[files]] +file = "config/blockswap/known_states/spectrum/cobbled_blackslag.json5" +hash = "1889dc2e1f88c48229329ffa56603e76445f56c60f144c64cd19199202365395" + +[[files]] +file = "config/blockswap/known_states/spectrum/cobbled_blackslag_slab.json5" +hash = "658758452a5bc2ff4f8f52ee90086e231f7bb7ab2fa317a63eee5d417cfa7aa4" + +[[files]] +file = "config/blockswap/known_states/spectrum/cobbled_blackslag_stairs.json5" +hash = "9feb1552fb52109993084f4c8dc8d4727aac4264db6e5013f705d0297d273930" + +[[files]] +file = "config/blockswap/known_states/spectrum/cobbled_blackslag_wall.json5" +hash = "b22e82165e9e5fcfa1716042909c03f04d1c2e5923865a84ed0bf8f7ebadafcf" + +[[files]] +file = "config/blockswap/known_states/spectrum/color_picker.json5" +hash = "985046ba98de2265cb1734c82551b9604b16ca3089ddc6111719eab55ac2728e" + +[[files]] +file = "config/blockswap/known_states/spectrum/colorful_shooting_star.json5" +hash = "f6cfc1d7155f2a15dc4f9e900594849b68543316a1388b6051226ab8d1c99050" + +[[files]] +file = "config/blockswap/known_states/spectrum/compacting_chest.json5" +hash = "36f116c102ed84aeb4412a9cdf6676c7b4ef29788dc31a94cc11680391a37fcd" + +[[files]] +file = "config/blockswap/known_states/spectrum/connection_node.json5" +hash = "3d5f910f9bbc719741bd838622b060929e0b15e2fdc264f58f00fad5630c74a6" + +[[files]] +file = "config/blockswap/known_states/spectrum/copper_cluster.json5" +hash = "13de5cfa9465ad14c380e573ca497dcc9ee26469a7a12593b5b73c0a3715a79b" + +[[files]] +file = "config/blockswap/known_states/spectrum/courier_statue.json5" +hash = "c49d3f54354c82a2854d4268e540a1cfb2bccd69e2bc81de1732dd1fe52623cc" + +[[files]] +file = "config/blockswap/known_states/spectrum/cow_head.json5" +hash = "d1313329a2d1a29c8150948ebbeccfacc7ff814ce91d0bd7dcc157a0fe41b763" + +[[files]] +file = "config/blockswap/known_states/spectrum/cow_idol.json5" +hash = "c688b6ca0169aeed763d7e7e6e6b5df881feea5fa830e5746f5d51477dccea00" + +[[files]] +file = "config/blockswap/known_states/spectrum/cow_wall_head.json5" +hash = "de175d5f3e161505c3040776be14a35273ad0f4e85d9ff2f5c23d934c389564a" + +[[files]] +file = "config/blockswap/known_states/spectrum/cracked_basalt_bricks.json5" +hash = "1d09740f224843b407813e37aadf4f46281af026a90228e26785e2cb3f5fb835" + +[[files]] +file = "config/blockswap/known_states/spectrum/cracked_basalt_tiles.json5" +hash = "307b6b00c9df8c61d2cad25fba74090e47024655dec1b8d581dd2087b7329560" + +[[files]] +file = "config/blockswap/known_states/spectrum/cracked_blackslag_bricks.json5" +hash = "9fa503bbae04e1ad36a07ed181ea83c8e528f8d0eb56b5154b72d012649e34b0" + +[[files]] +file = "config/blockswap/known_states/spectrum/cracked_blackslag_tiles.json5" +hash = "77c950773e3a26734bb7391f5abcf55c64a86094ddb174ac90d0d148bb5c3a11" + +[[files]] +file = "config/blockswap/known_states/spectrum/cracked_calcite_bricks.json5" +hash = "06f02a178512f092654e7d961630fd047dc9a5ab84622cc12ce4310ef94bda02" + +[[files]] +file = "config/blockswap/known_states/spectrum/cracked_calcite_tiles.json5" +hash = "dd8d53ed44df64d63292b6485681fe2e0d4290a8cc223af76aafb73b16c5f00c" + +[[files]] +file = "config/blockswap/known_states/spectrum/cracked_dragonbone.json5" +hash = "46f4e8c190ed25ab59657e8b1ab7bd3407c1eb139e07a6210e43752c6bb78ea2" + +[[files]] +file = "config/blockswap/known_states/spectrum/cracked_end_portal_frame.json5" +hash = "85d3bc82f8f308974d165ce75ab41a6aeb4ec51ad4e47c377bac810874fdabe3" + +[[files]] +file = "config/blockswap/known_states/spectrum/creative_particle_spawner.json5" +hash = "a2e325c6258d88d37e1a195bcac5426ecc221e30f212a58a4e2b6dc7a60a74e2" + +[[files]] +file = "config/blockswap/known_states/spectrum/creeper_idol.json5" +hash = "cdd92071a7facd1e900004b4ac8091c48392dea3548995f6b78fbc389445a9b4" + +[[files]] +file = "config/blockswap/known_states/spectrum/crystal_apothecary.json5" +hash = "1a9bb693afff5eae7e67a3df1ce4eaa037fa3fb3bd70b47e032fd67fc4b91948" + +[[files]] +file = "config/blockswap/known_states/spectrum/crystallarieum.json5" +hash = "950a91ec35fc1a90c79571051a6b9d23df6b2d8a1ae737695fd06b4b410a59a6" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_block.json5" +hash = "3713560c6f241f0e0d64cfb55785a1caabdabca26ae5c96b24f363eddf180347" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_button.json5" +hash = "f12b7dab66fed78edbd8d2da868ce3ae1a5e1fba520ad07c1ea66f0ce72367d5" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_chiseled_preservation_stone.json5" +hash = "1fa64c29bd78b34e89fe15db87d3ad848e230505feaa977838c0128ee5a6ad45" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_fence.json5" +hash = "82f92df86d22b2290a4eff4ecfdf758793756de92ff100f76d79b76a54eae050" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_fence_gate.json5" +hash = "204640fed685250b29ade8e75b44504e18e99b99d2db09c7350c257a66a508d7" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_glowblock.json5" +hash = "da54c4cea6cc29ed6c7446374f09cf8313a7a48ed7db330c803c0b2493a94c23" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_lamp.json5" +hash = "cb62788383e34d4697daf5e236cc9d4334492bf0cc1fac1a5726b0398355ea41" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_leaves.json5" +hash = "15481f70ea72e5937e54728b1e38e7e0d5bbdb137cce4188c78b6a7a1faf6e74" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_log.json5" +hash = "e867dfbc76731d49819d4a80f976817c984d21f4c1758e24a6a2fbabcd0d4760" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_planks.json5" +hash = "a2ec88c4757fbafd2b42a9e0713c74b8a7f13728c9f265dbb7e69b87bdc99748" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_pressure_plate.json5" +hash = "a6058cfdafb5ddfd8323be53ed67e295b533c39f4da29657e1bf391ab69c0963" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_sapling.json5" +hash = "12d5f3cb601c133691ea4e43890f54f906d179ca7eb7fdc9d1e04c28a8a729c7" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_slab.json5" +hash = "3a47ec0e8d783ab972a48595f8c145967918fc29fb8752683b5e63cc1540a13c" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_spirit_sallow_vines_body.json5" +hash = "0d96ec575a8b46ac794b1646cb419156e2104373e9aa7a8f2040e0a860ef4323" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_spirit_sallow_vines_head.json5" +hash = "66928ca7554793f8ad50463a50de5a1faf13295e737d084a2554f9ac43adf425" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_spore_blossom.json5" +hash = "16ccee754de2bfb0e23610e508fec52d92bc3d04b3219054e1593a434efd5291" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_stairs.json5" +hash = "65aba2d7c0ef66e698bc7a39d822cc1d5f439fb37c4af5684880be42a761f4e8" + +[[files]] +file = "config/blockswap/known_states/spectrum/cyan_wood.json5" +hash = "0800e5632ecb9579c364ec8a33f634c9d7240389c6de1837fc40c41549c08204" + +[[files]] +file = "config/blockswap/known_states/spectrum/decay_away.json5" +hash = "cd802b285444df3be3f88d180173c5e831679a5eba65f63945ea7e586bac76b2" + +[[files]] +file = "config/blockswap/known_states/spectrum/decaying_light.json5" +hash = "d5755624720dffb1025e986fe44498060301a3e43aeed90eeba7d0edf5f0e010" + +[[files]] +file = "config/blockswap/known_states/spectrum/deep_light_chiseled_preservation_stone.json5" +hash = "ac7d17fb7e2162e8573cfb01c35663217ea7296966cdd336bc923f74fdb6bf8d" + +[[files]] +file = "config/blockswap/known_states/spectrum/deeper_down_portal.json5" +hash = "1fe984d71b5aa3c7c6a92551c049e58655c7bab7b2f1bf13f5b20704486fd390" + +[[files]] +file = "config/blockswap/known_states/spectrum/deepslate_amethyst_ore.json5" +hash = "de751fdfeccfa664fabccbaa7a2bc486302275a7b0feedda07af974ed6879207" + +[[files]] +file = "config/blockswap/known_states/spectrum/deepslate_azurite_ore.json5" +hash = "48ef512c77fdab1a7eaa0d70c2355c97bb1db5a29e72fe64fc845f452a08dac5" + +[[files]] +file = "config/blockswap/known_states/spectrum/deepslate_citrine_ore.json5" +hash = "6f92578641c9b8bc1d22f0961aeef00902e81ed711157fc94fb2432b5c81a4d3" + +[[files]] +file = "config/blockswap/known_states/spectrum/deepslate_malachite_ore.json5" +hash = "9d1ff489c5c0fb82fe781ee856d0b8fb3bb6232cd67509690a824312ce4e9351" + +[[files]] +file = "config/blockswap/known_states/spectrum/deepslate_moonstone_ore.json5" +hash = "95daa584c0096ec7aec5b1f7744b624a27e8862dde631ae8804d32c7a13d2367" + +[[files]] +file = "config/blockswap/known_states/spectrum/deepslate_onyx_ore.json5" +hash = "813ab565ba45b87a03a4c3d9d50471632673300775caa620bfeb592963b7cb8c" + +[[files]] +file = "config/blockswap/known_states/spectrum/deepslate_shimmerstone_light.json5" +hash = "23e0b82c7eb4e50f4acec300dbb3dcfe91cbaef79817df177951c0417e6b74d4" + +[[files]] +file = "config/blockswap/known_states/spectrum/deepslate_shimmerstone_ore.json5" +hash = "4892a17d6b10d0f2b81cd8094b777937b0d12db999763160c1d5f0f2608d6ecf" + +[[files]] +file = "config/blockswap/known_states/spectrum/deepslate_topaz_ore.json5" +hash = "632bf6f1213d10bc29182b3b04e40b015327abf4fac9191d38c9ddc6b42d59ab" + +[[files]] +file = "config/blockswap/known_states/spectrum/diamond_cluster.json5" +hash = "b92f291553f15b687cfc8aded727fc9367716d36ea0a4dbe932d9b662da7dd9f" + +[[files]] +file = "config/blockswap/known_states/spectrum/dike_chiseled_preservation_stone.json5" +hash = "fd7544b9f73cd3636744b1e68aabf8e5c1e1db8904b56dec527645a3155286e2" + +[[files]] +file = "config/blockswap/known_states/spectrum/dike_gate.json5" +hash = "b5a332d2de3d417507a2acbb98a29ad1cfae3d840213fee6c90965f16c0e976d" + +[[files]] +file = "config/blockswap/known_states/spectrum/dike_gate_fountain.json5" +hash = "14c844585fce03ec3d57bd42d77a72528453983edbaf5b8ff198c00f7779f913" + +[[files]] +file = "config/blockswap/known_states/spectrum/diorite_shimmerstone_light.json5" +hash = "1938635bada0b8ac7550225e33c3502dc41edd50358de7133682a7da3a101355" + +[[files]] +file = "config/blockswap/known_states/spectrum/dolphin_head.json5" +hash = "ebda985805bc0e84b891c0cdfd127aa374c9940867a390958fcf858576c21ebb" + +[[files]] +file = "config/blockswap/known_states/spectrum/dolphin_wall_head.json5" +hash = "b277f6d75045f0d1a9cc5ae01e33df77ff39e20c9990bffc0a8817a3def9ea0a" + +[[files]] +file = "config/blockswap/known_states/spectrum/donkey_head.json5" +hash = "be5269e2cdc0f73ccf60d548f81deec0d9f6924110d3f2f49530e73957e28d99" + +[[files]] +file = "config/blockswap/known_states/spectrum/donkey_wall_head.json5" +hash = "4ad8d536782c02e5807f25fa782da48204234a9f29d969a95493ab1e81a6f701" + +[[files]] +file = "config/blockswap/known_states/spectrum/doombloom.json5" +hash = "74bb8c6c92bf91aed872c36ee4acfb4de30acafd57eff83975613d302345d577" + +[[files]] +file = "config/blockswap/known_states/spectrum/downstone.json5" +hash = "e5f84726687bb3ca47bc151472417eb141bb366ab54d5d2a859e360c89aea03d" + +[[files]] +file = "config/blockswap/known_states/spectrum/dragonbone.json5" +hash = "6a4de49d664b35ab7bbac6f813e457eae546d3a2b1364f9e57be61d95944b139" + +[[files]] +file = "config/blockswap/known_states/spectrum/dragonrot.json5" +hash = "a2aa31744dfd8f6b8de908d936455a7427a89ba70f066a4f04083290a3fbe151" + +[[files]] +file = "config/blockswap/known_states/spectrum/dream_chiseled_preservation_stone.json5" +hash = "80092331013e6631e4759b8ddf3c509e958b282720baa6a9f6b7e028561bd768" + +[[files]] +file = "config/blockswap/known_states/spectrum/dream_gate.json5" +hash = "927505877ad1e722ca418cb1193a2466a92a905666249cce513f55973cec51db" + +[[files]] +file = "config/blockswap/known_states/spectrum/drowned_head.json5" +hash = "8a08535914f59dd501043f27f18076e64c25f54c894f2ed7efb6496a909cfaf1" + +[[files]] +file = "config/blockswap/known_states/spectrum/drowned_wall_head.json5" +hash = "fcab5780feb676e207c88bb5e75a94c555c688678107cd2ef66e1f46d5f9ed34" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxcap_block.json5" +hash = "b8326cf44d94bb93268351fa75e0355ce72c19347c7b904ed98e3e8cb6fd16ef" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxcap_gills.json5" +hash = "e809eed73775ebe0696c878516e54424f684e8b5ac7c6d822191c3e3e007d53e" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxcap_hyphae.json5" +hash = "8d2b42e93277d8933eddcab70221fa6e87c9263c6086b3e7fe9f5caae262a0f3" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxcap_stem.json5" +hash = "e74303bb143b731adaa3092ae265150e56104b8760e9d9f88aa8343aa2553338" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxshroom.json5" +hash = "3ae3707c2268fe24578c1e8f03128b0b24b310aa498e480f48ca7c318c542491" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_amphora.json5" +hash = "dc8e0bc898d56cde8aaed5f8ad69ee80ca3d02bdb791cfa20720154a1dc4f51e" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_beam.json5" +hash = "f4b09d3c4644e9190d94370b2ad1ac0e9a8bfd0052b5c77e1198966b82e05e1e" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_button.json5" +hash = "2d13f486fe6492d43d9f2d1c90b2dcb46444b66e89d9e7c31f58e02d19541ef1" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_door.json5" +hash = "7265ebaf787a15ba679a770e0f0cf64c2bf7f05786152ade495ed5d551be0327" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_fence.json5" +hash = "262f1626c4ffd5a901d19eb677eac91b82cd982b348648eea9e674f70dbae419" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_fence_gate.json5" +hash = "83343191d1b4f1f0720878bc89ecf2f3ca1dfe426aa3ade8c025df3f6aa2d58e" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_lamp.json5" +hash = "a21cba875546ebc183f45f86b24aa1be4f4ee9375b63dd3adf225236a88bef9d" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_lantern.json5" +hash = "cf0649eebcea695665ada8845fd77a02267d997b723df9067c5d2dbaa2152bf0" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_light.json5" +hash = "32c87890d58a68f4f6c4b00f9f5f88404b180f8f8072839b0c2df18d35ddad44" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_planks.json5" +hash = "f430dbf65ef1f81cb410d14874adc0be75aadb5fe2e66bc535461cde0926b76b" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_pressure_plate.json5" +hash = "362cedefd6a024ba768b45f7ee5a73efdf02d52f8160356a7856db2c53cb7155" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_slab.json5" +hash = "a441b964523c18b0b76441f1e35891f74c544855d637e682ee59c58224891cb9" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_stairs.json5" +hash = "b0bac357a4e54aa20aef0fa71995064eadaed1b7a1854b62235849c721883886" + +[[files]] +file = "config/blockswap/known_states/spectrum/ebony_noxwood_trapdoor.json5" +hash = "0be21ee69ac64b378c31ccad3e617d4a105fae1fda326bbaa1c68e02eed0ab5a" + +[[files]] +file = "config/blockswap/known_states/spectrum/echo_cluster.json5" +hash = "3954db092b9d5aac49a29061b0e6bdb3d9346ab63bec1e3959ee8b92c36acc97" + +[[files]] +file = "config/blockswap/known_states/spectrum/effulgent_bed.json5" +hash = "24a052a58c74d2af30e9627eed828dae12a225412a0ffc6c500ae82ab678ab51" + +[[files]] +file = "config/blockswap/known_states/spectrum/effulgent_block.json5" +hash = "713d3819ba79410337799c940a4d1420e23246e6330d8e9e63d8e19fedd99512" + +[[files]] +file = "config/blockswap/known_states/spectrum/effulgent_carpet.json5" +hash = "9d34d506c699073837c215a86a575da91281ed0369ca844d5db6339188054203" + +[[files]] +file = "config/blockswap/known_states/spectrum/effulgent_cushion.json5" +hash = "f47cb67e87932c830a09e89334c764ae883c48c27147a2c0ab0305f39ea8627d" + +[[files]] +file = "config/blockswap/known_states/spectrum/egg_laying_wooly_pig_head.json5" +hash = "b4687c745dde1f24379cf606f55f8c768c9a4f5543132b24700f661402cdff81" + +[[files]] +file = "config/blockswap/known_states/spectrum/egg_laying_wooly_pig_wall_head.json5" +hash = "3405f7c7d9c0879d0af6828d91ada40300b704ba928c4a9dbb89b8a92b6657bc" + +[[files]] +file = "config/blockswap/known_states/spectrum/elder_guardian_head.json5" +hash = "816b37076f76b884e54be0df9a91858e08a84af1e8666db0b115adc9af03bc96" + +[[files]] +file = "config/blockswap/known_states/spectrum/elder_guardian_wall_head.json5" +hash = "b2b85b50a0b5481c86650c15d353e8470a1884fb314809d79c40bd4e59ec58c3" + +[[files]] +file = "config/blockswap/known_states/spectrum/emerald_cluster.json5" +hash = "17895229c92b0e2a5eb530cdac6c9a590b2f869e0ad0f3014fbdf8471169e6f5" + +[[files]] +file = "config/blockswap/known_states/spectrum/enchanter.json5" +hash = "f180010725ab4689d318792b6350b4ed6c2ec9c11160d3810ee7c87316991fd0" + +[[files]] +file = "config/blockswap/known_states/spectrum/ender_dragon_idol.json5" +hash = "c566dfb089b2a24edd34d951df9aa1647c111288c9ecdec64ad9fd1b82f8983e" + +[[files]] +file = "config/blockswap/known_states/spectrum/ender_dropper.json5" +hash = "3ae12fdeeb64a24bcc394b930c38240dc5d0b06348072907d7893535fd3b907c" + +[[files]] +file = "config/blockswap/known_states/spectrum/ender_glass.json5" +hash = "63ac5a70c71b74b27e3ccb775809f58fd4971cd4f6d332740f3acaa1bdd2a51c" + +[[files]] +file = "config/blockswap/known_states/spectrum/ender_hopper.json5" +hash = "7578f05c4f7d5c95bb88cd9e36067dde6f8a53e7a7a306a4df603a893e70fd6e" + +[[files]] +file = "config/blockswap/known_states/spectrum/enderman_head.json5" +hash = "acebb9968a011c1a5f1c50584bf8cb718302be6c44a320b8bc6b7d6fd90b8d6a" + +[[files]] +file = "config/blockswap/known_states/spectrum/enderman_idol.json5" +hash = "e58a60ff84f575e39d161f1963ce5a540bda564901928c8fd7028fbef2f436d1" + +[[files]] +file = "config/blockswap/known_states/spectrum/enderman_wall_head.json5" +hash = "946b7c7c35d187a45fac2f6950952fa4d461f1fe967fb5be71089e8d6fdef82e" + +[[files]] +file = "config/blockswap/known_states/spectrum/endermite_head.json5" +hash = "e30b38d89ffdd0e2f83524d4b8a6896b7f47ffeb339e7c5e08a09f58e67c52f2" + +[[files]] +file = "config/blockswap/known_states/spectrum/endermite_idol.json5" +hash = "006faa0845521c9e566c281d3e9b694d2ad6e1756b67767f0dbacd4f8e80a35c" + +[[files]] +file = "config/blockswap/known_states/spectrum/endermite_wall_head.json5" +hash = "3a0efaaa4baf7d63a64a1f51f61891666202a12f19bc52b67182f2b3bb5b72e3" + +[[files]] +file = "config/blockswap/known_states/spectrum/entity_detector.json5" +hash = "ab048873041de6229abfcbc43483c971668f0afddfb4867c0abbb12d11206718" + +[[files]] +file = "config/blockswap/known_states/spectrum/eraser_head.json5" +hash = "e2955c628829fc976491ee0e888ed428b106d2f54d645bfc4b2fc807c0883bfa" + +[[files]] +file = "config/blockswap/known_states/spectrum/eraser_wall_head.json5" +hash = "3c734029f5e3bdb0754fc0dee0dec53bd4e01599f1f752a52f10c26e266fcfc2" + +[[files]] +file = "config/blockswap/known_states/spectrum/ethereal_platform.json5" +hash = "f4fedb019411f14719eeecca116d238131717675d6ba94dc503a884a16431a5a" + +[[files]] +file = "config/blockswap/known_states/spectrum/evoker_head.json5" +hash = "a47f5f253703143bdab0137475cc432755ddc843a11ae339022ff85a5d805c64" + +[[files]] +file = "config/blockswap/known_states/spectrum/evoker_idol.json5" +hash = "95566678b5cd1190ab9c53c5f19c29157329b4ed6e235177eb559502d26ec09f" + +[[files]] +file = "config/blockswap/known_states/spectrum/evoker_wall_head.json5" +hash = "ff16c3f7d29a9153c2699be605564487da9332a2f2da555c9a1db671b8cd7d5d" + +[[files]] +file = "config/blockswap/known_states/spectrum/exposed_polished_shale_clay.json5" +hash = "f5b1aef0cead10a68631dcb2ef57d3d75222f4ab025e30f0bbaf2ca98693872c" + +[[files]] +file = "config/blockswap/known_states/spectrum/exposed_polished_shale_clay_slab.json5" +hash = "00c843a7e926adabd5017120f6b30b86dac7907d65febfbea0a770373b4e3ded" + +[[files]] +file = "config/blockswap/known_states/spectrum/exposed_polished_shale_clay_stairs.json5" +hash = "3055245e16856339f353188728fa7ead945e19dd5c02f18a2868bbfc44f5f0a1" + +[[files]] +file = "config/blockswap/known_states/spectrum/exposed_shale_clay_brick_slab.json5" +hash = "ac08bddc325fdac7381a195ee152b4fa8cabcf31c4006b7a7b0f52f82eaf9f65" + +[[files]] +file = "config/blockswap/known_states/spectrum/exposed_shale_clay_brick_stairs.json5" +hash = "9a454864f9ca61bee71fe229cc9d15b3cf6599b21211b8678270f4cf7c3baeda" + +[[files]] +file = "config/blockswap/known_states/spectrum/exposed_shale_clay_bricks.json5" +hash = "92e50443ebad199e1aa4bf5e4618a328392ec0cf97735fcc9beb0ae9f4e5aa3a" + +[[files]] +file = "config/blockswap/known_states/spectrum/exposed_shale_clay_tile_slab.json5" +hash = "3e4f19985b4cefe75d14f1416e77198a18420030044ce0be41a970c722fe32f9" + +[[files]] +file = "config/blockswap/known_states/spectrum/exposed_shale_clay_tile_stairs.json5" +hash = "f1e7b33b9a2659d598d25ad0b5789e1ab8474434d7e922305772831c5dea7053" + +[[files]] +file = "config/blockswap/known_states/spectrum/exposed_shale_clay_tiles.json5" +hash = "36279a5112e9e9dfd94be4fdc8b7653e879993a70522fa907327bca480f978dd" + +[[files]] +file = "config/blockswap/known_states/spectrum/fading.json5" +hash = "902814340e544625ac3486786e8e6e26df4cc8ceac84c45d80e5c1866854cba9" + +[[files]] +file = "config/blockswap/known_states/spectrum/failing.json5" +hash = "540991ba7724de60292d5e85ba87d923d0711de04619b8d99ab548d716f93bbe" + +[[files]] +file = "config/blockswap/known_states/spectrum/fiery_shooting_star.json5" +hash = "1edef804948c17dfc36de12dbcf9e7ffb1464552758b4f3f23d8fedc5db28552" + +[[files]] +file = "config/blockswap/known_states/spectrum/fish_idol.json5" +hash = "93d0f103206f1976241530b67922d12f628d6f72270c3d7d0e196a0ae547f71a" + +[[files]] +file = "config/blockswap/known_states/spectrum/forfeiture.json5" +hash = "0855ec5abcffdee61a33a513497907eda674ecb765489e739fe88120827f806c" + +[[files]] +file = "config/blockswap/known_states/spectrum/four_leaf_clover.json5" +hash = "4f3a333b21e44759e59c6b7af34e103053f2ad4555914dfb22afd2018cf65f24" + +[[files]] +file = "config/blockswap/known_states/spectrum/fox_arctic_head.json5" +hash = "5a459ab1542f85bf7f516ec991ed90024d75166127b3d2ba9c7a494ab91f819b" + +[[files]] +file = "config/blockswap/known_states/spectrum/fox_arctic_wall_head.json5" +hash = "2e89e02a62b5f3a15758b11c525dcb377e6bf4e22014cd90d0b7314cccf6f028" + +[[files]] +file = "config/blockswap/known_states/spectrum/fox_head.json5" +hash = "cf167a50a7fde40cf0169fdbb75517e35a541c8734613ecb0555263092afaea4" + +[[files]] +file = "config/blockswap/known_states/spectrum/fox_idol.json5" +hash = "dce49507ce3d23b3b8b99b9dfc99a462d066a3abbabf639e61c27aeeb2128f0e" + +[[files]] +file = "config/blockswap/known_states/spectrum/fox_wall_head.json5" +hash = "278f6b6e40652871b73bc8e12c2cd9b657bab5b3337a4de7358f5172478fcefb" + +[[files]] +file = "config/blockswap/known_states/spectrum/frog_cold_head.json5" +hash = "fb890d270003a784992b60096c8b5c235218458a807e18fcadfe3ced495a1961" + +[[files]] +file = "config/blockswap/known_states/spectrum/frog_cold_wall_head.json5" +hash = "e84033c1705e778d778f4965509fb9762bce0bb983214ff8e2fa2a31c3a1a594" + +[[files]] +file = "config/blockswap/known_states/spectrum/frog_temperate_head.json5" +hash = "73c7b0cdc302877b1e20300eb5e19a044d591e1b332a7fc7d4ad789af190fe11" + +[[files]] +file = "config/blockswap/known_states/spectrum/frog_temperate_wall_head.json5" +hash = "370d234eedba4e3dcb04394ed32f1acb4aaf2b68cbb7c5c4a332d055cb3a6f46" + +[[files]] +file = "config/blockswap/known_states/spectrum/frog_warm_head.json5" +hash = "6b228b342191a808ad3762f7f1157b10c52f432c01009cc884cd96f8598d55c2" + +[[files]] +file = "config/blockswap/known_states/spectrum/frog_warm_wall_head.json5" +hash = "f9f8c3370f3690a5f3e1462921ab31c4a296142832b47be3dd334138d0a76ba9" + +[[files]] +file = "config/blockswap/known_states/spectrum/frostbite_crystal.json5" +hash = "8acb06d575c986d3c4c65891f8fb5d84b6af6c636485f53fb7a721ee38f22a28" + +[[files]] +file = "config/blockswap/known_states/spectrum/fusion_shrine_basalt.json5" +hash = "aff934174d5ec7dece0214c747fa055edaea14831e1ebcbf402f9b681ee5cbad" + +[[files]] +file = "config/blockswap/known_states/spectrum/fusion_shrine_calcite.json5" +hash = "53fc6320824e63638c62e8f4e63b90b42de3a1ff271fbaa9f510c548a0f251d6" + +[[files]] +file = "config/blockswap/known_states/spectrum/gather_node.json5" +hash = "500083519f685a15ea558aa305748987cfa2e11012cb146f1f7e91ecef6ce8ca" + +[[files]] +file = "config/blockswap/known_states/spectrum/gemstone_shooting_star.json5" +hash = "7b763dcdcc0f034df7a22be2b94f5f18952801d2560a1f7bee7fdb3903d52da0" + +[[files]] +file = "config/blockswap/known_states/spectrum/ghast_head.json5" +hash = "18f39b5dd5043d9f49173e9ea37eee63547455a9f9f414841f619b9dd383f441" + +[[files]] +file = "config/blockswap/known_states/spectrum/ghast_idol.json5" +hash = "36b4acb4b38a0ff7390555251b9a23e5ff069b5858773ccb8e82699a64477b1c" + +[[files]] +file = "config/blockswap/known_states/spectrum/ghast_wall_head.json5" +hash = "a24de9bc9359a9d4997927f93d3ce9fee3e6d5ad21c738e60dd2187e63b042a9" + +[[files]] +file = "config/blockswap/known_states/spectrum/giant_moss_ball.json5" +hash = "b55172595ef09c198c1eb6eaee204cc82cc4b9b60b2d2d2f17254f5d2f4c1986" + +[[files]] +file = "config/blockswap/known_states/spectrum/glistering_melon.json5" +hash = "185fae0c92aac10f1a68fba37219e834de9d9564e3044d9ceccfa507d6e580ca" + +[[files]] +file = "config/blockswap/known_states/spectrum/glistering_melon_stem.json5" +hash = "0fc3e7fea7aae0b6764942fe49ab7b813116b5064b75cbdcf115bf03a98d6882" + +[[files]] +file = "config/blockswap/known_states/spectrum/glistering_shooting_star.json5" +hash = "70b99324bf0ceb9c9ab158a797fe6e9baae57dae7cdd52c150270ce8daa15c4c" + +[[files]] +file = "config/blockswap/known_states/spectrum/glow_squid_head.json5" +hash = "6bcea7106e854c5111c6095ac98eb7ae36a94dd93b30b7acafaa55afaad79c71" + +[[files]] +file = "config/blockswap/known_states/spectrum/glow_squid_idol.json5" +hash = "7a4a9fa64b4a77c6fc445ecf1403cff17d7a9cc8bbd03bdfd49377f92a780049" + +[[files]] +file = "config/blockswap/known_states/spectrum/glow_squid_wall_head.json5" +hash = "ba383407d694410fe110c78cb3aa4d215f8beb5b5d557f606dbe9f4e3e155366" + +[[files]] +file = "config/blockswap/known_states/spectrum/glowstone_cluster.json5" +hash = "72112b612d22b9cb91dd7180a101913fddb8ba687af4a178fab1f8a4c26a6072" + +[[files]] +file = "config/blockswap/known_states/spectrum/goat_head.json5" +hash = "4db6795a800c443acf88d3e8656403a6aba86570914c000b8ba0260c534b6617" + +[[files]] +file = "config/blockswap/known_states/spectrum/goat_idol.json5" +hash = "666c542de722d9af8f10b2ee10ed1dfc623199ac0f099054cd12b7800d9cbed1" + +[[files]] +file = "config/blockswap/known_states/spectrum/goat_wall_head.json5" +hash = "192ba0d36a4062162fa16c9abd7a0063a06ca132639d1f921ed3d2a431f489e8" + +[[files]] +file = "config/blockswap/known_states/spectrum/gold_cluster.json5" +hash = "7751df4315a78a9fd580be2f40848ac026fa337357e082e61ae191958bf97983" + +[[files]] +file = "config/blockswap/known_states/spectrum/granite_shimmerstone_light.json5" +hash = "0c500d3a838cfbc8ddda5254bc81d5a2cdc01c8a12534b858c523deedfb70ce2" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_block.json5" +hash = "25df11e3da8f709c2dc240e232d7928b3c284e57acc23ce44ba06da1e2c15632" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_button.json5" +hash = "6f08b72c23a856a112f93fba1037f257fdb3e04e6a3770d54e5add67c974101e" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_chiseled_preservation_stone.json5" +hash = "b55b89a6915a3934f32d99751dfc98b67261fa89d3a69e27ce7aba79fc7438fb" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_fence.json5" +hash = "a3318f9074c3289c4de73899488beebaf7539fab8c7e68a8d16908da1f8b4243" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_fence_gate.json5" +hash = "8399f08db1f45dac3cb9383b4a463007d9e7072f308a4d318c007dccb9457118" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_glowblock.json5" +hash = "27aa9551aefdbc256f678b9214ea2fa07902ee3e9cdc104b0469dd8c99f219df" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_lamp.json5" +hash = "562f592c9488bed7a5922ca551081bb5916e45f8c7850a51a1a740e3751b388b" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_leaves.json5" +hash = "7ba8e0ed07e2b1bb964261703ab5d41899d5860f0f0a8d88658cb73c937606bd" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_log.json5" +hash = "78aa6ddbcacabd891829882496b69ba68460816c16f25f2959b72c6cffc84569" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_planks.json5" +hash = "6bc0762a2d9c8ed117aba0b856e08ece96d37f42e77d07fd140511b668f6dbc6" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_pressure_plate.json5" +hash = "c4ca06ffb4afca4a377ee960745afd162dc7d3f692bb715916726b4114f4d838" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_sapling.json5" +hash = "8f78a6b41248311b9999fff5023e991acaadf04306b80300e862ca275b08c415" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_slab.json5" +hash = "160a0272064d7880ce64d83413c3c313800540840adb0b00cb6579137d99a007" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_spore_blossom.json5" +hash = "34e39806f8a303be70af9b590fd1d49ce3d528318f020c35076b0e7fad32be7f" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_stairs.json5" +hash = "3c761b0ca33c914c05085171c5299d1e179fcb8d4a8324e4642396e8024a8f4f" + +[[files]] +file = "config/blockswap/known_states/spectrum/gray_wood.json5" +hash = "335d64810e3b5c5dd0dbe0b5a789190e7b4c52c36a265067860083b93887f8bc" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_block.json5" +hash = "44c97be5e84bb8222cab397c0bae6263a0f64cd03757fadc25e5d0893f19b7f2" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_button.json5" +hash = "96d9900bf95ffddf500759650d7fcfb3a7bfb4da900ce41cbc220fc8d79c7348" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_chiseled_preservation_stone.json5" +hash = "eb988fc147fb54415b4e6c008a431efc5a13aafe1beba2448f3b7336dd38b2d8" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_fence.json5" +hash = "b6fdc288ce70ffe25ba343db7af1f607d979cf701d6bae2de4df0580f3d36f96" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_fence_gate.json5" +hash = "80437f32d69e23b14da73001abc7bdd4692c49f006293f84f3fd853fd4d72506" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_glowblock.json5" +hash = "bf0d11d42ee26e2f76fb3cfcbe8d581d77ed132d526ffa1dcbfcae09d3e7eecc" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_lamp.json5" +hash = "f0d5cc932bc13b9216de9b83b47d00d9c09a223df936a3c31d77d23570ac590b" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_leaves.json5" +hash = "b0015951bb8334e09c2dca29f3596108778b60ed7564e944c5b78cf58ef87af8" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_log.json5" +hash = "274433662833d03dc8d1f931e52daae3d3236b9c4f48a0ce1244f4ad5c04f0bb" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_planks.json5" +hash = "4edc22e0e598a220b5bbf4123efcd1c278a1fa3baed91ad111f4ffe28665eb20" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_pressure_plate.json5" +hash = "49fd9e890e6ea60822212296e3e87fc4178f4471ff17be2011ec1522efa400e8" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_sapling.json5" +hash = "358b581bcf1467e7ee31f9ceb8cb3d0da30b8ab4626c3400b9e68c5d9b534d0f" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_slab.json5" +hash = "1fbcfab76fbcae0712c51b5fc550a44269c9cf93fb88d0ecc0bf41ebac9ef31f" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_spore_blossom.json5" +hash = "9616b37618a2e91ed3e2ee4847989c26e31b144c1f00a1a9608926b6488448d8" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_stairs.json5" +hash = "446e37013f6406a4576cca6909f042d8fb2bf104886a56de5ed8b29935328961" + +[[files]] +file = "config/blockswap/known_states/spectrum/green_wood.json5" +hash = "ab25b26ecb7dec5b1dc17e363e20ab1b40170e757036a5c13bf7b1ef26f82a93" + +[[files]] +file = "config/blockswap/known_states/spectrum/guardian_head.json5" +hash = "8b68897d779abf07838abb94e7be66d3bd9e91ce0c8742354ff764f071ff84f9" + +[[files]] +file = "config/blockswap/known_states/spectrum/guardian_idol.json5" +hash = "dcc343a2844aadd1f0fa052aba4b284558ff7e11663b1d6187f806dec00b07f4" + +[[files]] +file = "config/blockswap/known_states/spectrum/guardian_wall_head.json5" +hash = "dab9e0bf053d0e9f60dbf78bbc511375bd67cad3eab0525ffc321944782abe18" + +[[files]] +file = "config/blockswap/known_states/spectrum/heartbound_chest.json5" +hash = "82deb038919a1bced376c02a13a6bdd8e0448bf9f8b70d89a6ad0d7981fb2a6f" + +[[files]] +file = "config/blockswap/known_states/spectrum/hoglin_head.json5" +hash = "401b0d04d39803837fa365a394e3c47b0f0624a31871ddb9403882420b787424" + +[[files]] +file = "config/blockswap/known_states/spectrum/hoglin_wall_head.json5" +hash = "d813be443fcfb28330bdbbda7fdfa4cfabc9f0f1db0d0c2813e230d03ac5f4a5" + +[[files]] +file = "config/blockswap/known_states/spectrum/horse_head.json5" +hash = "208ebfcf804f1933b3ffbe36c590d4031bedaff606a86854d9acc029c912b584" + +[[files]] +file = "config/blockswap/known_states/spectrum/horse_idol.json5" +hash = "4febf77bc33e5e1e36e11e1573bafbbcefee0fe993e7d82ee57a923ca014a5b9" + +[[files]] +file = "config/blockswap/known_states/spectrum/horse_wall_head.json5" +hash = "23f9b7fc31812fa553a1e71254eeb9a0915dac5fafd0f7490ae6e67d3ae359a9" + +[[files]] +file = "config/blockswap/known_states/spectrum/hover_block.json5" +hash = "9afe1edbb652b1a5d835364cfaee3726ffa60fd62484ec41f35f8513a55c8600" + +[[files]] +file = "config/blockswap/known_states/spectrum/humming_bell.json5" +hash = "3f682fa9448d2005401fa34fb54aa217715e874939218f773c98686f49aa5a73" + +[[files]] +file = "config/blockswap/known_states/spectrum/hummingstone.json5" +hash = "142b08ac68b3e379d7b33b92198613734fca73c8abf063ae7c3a031860e109be" + +[[files]] +file = "config/blockswap/known_states/spectrum/hummingstone_glass.json5" +hash = "5971d94564853522723435b19e71965169d1a5056e5346978336087de69d339f" + +[[files]] +file = "config/blockswap/known_states/spectrum/hummingstone_glass_pane.json5" +hash = "e0cffd11b894e3089831e98cecd0fbaa0331a718951b7563b44c743b94905331" + +[[files]] +file = "config/blockswap/known_states/spectrum/husk_head.json5" +hash = "d07d00ead8d00a98f9771cd2ae463b4ae4ab3c0c6007da575ad881f97d4eb4fa" + +[[files]] +file = "config/blockswap/known_states/spectrum/husk_wall_head.json5" +hash = "7b751d043cd223deec2733183baddd77c12011b76c241778e90792bf46d3aebe" + +[[files]] +file = "config/blockswap/known_states/spectrum/illusioner_head.json5" +hash = "687f41ac4f7f1bb28a1cf73094eb074fc1b6d837a2efc77cebd51b0848ee12e5" + +[[files]] +file = "config/blockswap/known_states/spectrum/illusioner_idol.json5" +hash = "b6920031e1cfdc604999f7587104a33afa4cc96862a86b3741c2f3aee84c8141" + +[[files]] +file = "config/blockswap/known_states/spectrum/illusioner_wall_head.json5" +hash = "f63c35f950d04fda962b5ba9e3a8542e8a83c9cb27eba7a96ec39466b28e1f29" + +[[files]] +file = "config/blockswap/known_states/spectrum/incandescent_amalgam.json5" +hash = "b2806126639e806b38950f4bbbaf32fb9965ca0d0a4d968086c5ec667a8bb3b1" + +[[files]] +file = "config/blockswap/known_states/spectrum/infested_blackslag.json5" +hash = "cdd547d5aca787012de45a2792144403db668a436fe2c8bffba8f62f83209a6e" + +[[files]] +file = "config/blockswap/known_states/spectrum/invisible_wall.json5" +hash = "52caa6102842906c72dda4df9b6b4c8bd0a219521fe7e85d36a95d06b5ec34e2" + +[[files]] +file = "config/blockswap/known_states/spectrum/iron_cluster.json5" +hash = "54eb62f7b1096887cee980701b888280d386aba74aa2246037c7cd3bcc3c4d23" + +[[files]] +file = "config/blockswap/known_states/spectrum/iron_golem_head.json5" +hash = "9da0c1bbbba6721608c52d1e9c6b891d35b3c8f6bba9984e28d034d693acc693" + +[[files]] +file = "config/blockswap/known_states/spectrum/iron_golem_wall_head.json5" +hash = "645db4f98b840a479aa022667031d6e71e5362922be46619b38f5cf57cccb0d2" + +[[files]] +file = "config/blockswap/known_states/spectrum/item_bowl_basalt.json5" +hash = "4eeb0012994c5474bf2fded7901155a5362327d210db6b3de076322350810d96" + +[[files]] +file = "config/blockswap/known_states/spectrum/item_bowl_calcite.json5" +hash = "6d59f4181c9ff6bcd796e91fb301f193b0c1524a0008b0c839c6caf978920fb1" + +[[files]] +file = "config/blockswap/known_states/spectrum/item_bowl_enlightenment.json5" +hash = "5188e879fde2965908adc830d255f80e5de4cad044491331e6984134b318d9a2" + +[[files]] +file = "config/blockswap/known_states/spectrum/item_detector.json5" +hash = "59b23f6d41ff52fb90de893ffbc0d39b5c5a6041750f5db5e706245b450cd85b" + +[[files]] +file = "config/blockswap/known_states/spectrum/item_roundel.json5" +hash = "7820b6dfa26b77416a58905d9a0801592b75aec9a5f706c015ccc6b8e6ec375f" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxcap_block.json5" +hash = "d68d2540905facf71928dfb35d25ef0d2ee0f57b110633c96dc46e55746cba50" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxcap_gills.json5" +hash = "ba9cffde6cfa578cbc22c51ddb93abcf8dbec1abd390e59653f7a8b31a671a1e" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxcap_hyphae.json5" +hash = "fc18e16e6d8b456c95f6aa2a2dc3a8c008f222081b4f606b3317eb75074c2288" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxcap_stem.json5" +hash = "1a6d3eb5c1c3d09c8571bf3e155cfa9c432c5d689e2f75c9d9f83ce666cd6367" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxshroom.json5" +hash = "7172eaf1288a16aa428515cc8b5f9d9f3a7eda3790543a3c89ababf172a0cc5f" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_amphora.json5" +hash = "110c0f6d43d3684bbc533ff6f87d43e93e08b4ca2ed1049241cf20a5f137940c" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_beam.json5" +hash = "56ec3f4cc1c8c3d2f0de19ce6dc428756ae43b699df24470c492c7ff43327e81" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_button.json5" +hash = "d71a9fdc048c4a4196dd785bb9453ebbf00ff74f4e116137b3ac1edff4769b3d" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_door.json5" +hash = "ddc986b44302bc8681a89c7f8cfc12ac1529e75daaef7b74c71ef185f9d719e1" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_fence.json5" +hash = "3c7c479d8d5b8647e1410d396b914255f4d242e2d3af32fed422dd027b7ca773" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_fence_gate.json5" +hash = "b163c6158ea5a357772b4ca2867aa610e724aa08addb43c0e9c979b0af7d62ab" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_lamp.json5" +hash = "99556a7a8fc14b4ba92274d30132a9e96c9c34c9059616b8d91e093aada3bd7c" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_lantern.json5" +hash = "da4891b40aee277a584b602474ceb351a6484e34d4c19d077ad8faf32dc5addd" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_light.json5" +hash = "13d97c7ee9fd4a00667040d65fd5f5efdbe1d8c80e1dad22ff6c301a855cfc29" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_planks.json5" +hash = "f344319e5ed881fb66aef2674005051b23f5be5445bb79f461463d554fe3e72c" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_pressure_plate.json5" +hash = "a7b8ceb105f7252a3614ab7cd4c93c0788fa43a3c8f2b612dc84b803e09be1e0" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_slab.json5" +hash = "4711c139ecc7e0a5f9ce132d3f166b9606e6ffaf0060dd05ce7dab5667fe4575" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_stairs.json5" +hash = "f0c797d1fd6a9c3a196df0bbbb0c2b5ea4da8a1c0b3527340684d7d15d33f4ef" + +[[files]] +file = "config/blockswap/known_states/spectrum/ivory_noxwood_trapdoor.json5" +hash = "26cff4836647aec417c1f66a7dc3c19c76bcf03258c537c7bb51ed75d0761902" + +[[files]] +file = "config/blockswap/known_states/spectrum/jade_vine_bulb.json5" +hash = "9a57daa5a4034084c9778c0d6d80f52dc0339780da80ce39526ccee71f04d7bb" + +[[files]] +file = "config/blockswap/known_states/spectrum/jade_vine_petal_block.json5" +hash = "b0d8723d34f1e39e8c6beefd7228f93362a4a0fe409e45de3c2afab3ed6c1365" + +[[files]] +file = "config/blockswap/known_states/spectrum/jade_vine_petal_carpet.json5" +hash = "f37b7ba6c5d12049f2faee58b9c3aa1046d2a17ae86a0b4b3f81137ac18ba5e5" + +[[files]] +file = "config/blockswap/known_states/spectrum/jade_vine_roots.json5" +hash = "b3ea62462ce98978af4f062e7abe1cc20d843543620507340026a8bd2ff41199" + +[[files]] +file = "config/blockswap/known_states/spectrum/jade_vines.json5" +hash = "d7c4f06439139f91ee31be331b39dd402ce6f0d49ecc0c4db01bc04ffa26d8d8" + +[[files]] +file = "config/blockswap/known_states/spectrum/jadeite_lotus_bulb.json5" +hash = "a675e41c0fd96c471fa607ad8a8bf9c7cde6ae0592a6831d5e1d952fc1915b47" + +[[files]] +file = "config/blockswap/known_states/spectrum/jadeite_lotus_flower.json5" +hash = "122862f118cfabb3f92ca9180c7f7f086b3178926d842db3d37595d5482ee932" + +[[files]] +file = "config/blockswap/known_states/spectrum/jadeite_lotus_stem.json5" +hash = "06104d205cbb83015c666b873ddb1369ca926980658333550ddf47853e82fc0a" + +[[files]] +file = "config/blockswap/known_states/spectrum/jadeite_petal_block.json5" +hash = "513bd7b35b228303ee858850f8aa12336bd8c8ab58810b6d1a626a7c0973d159" + +[[files]] +file = "config/blockswap/known_states/spectrum/jadeite_petal_carpet.json5" +hash = "a8c7258908729dc367151823fe78da285ba1e8a79b8a05dcb9d7c07d33ebefbd" + +[[files]] +file = "config/blockswap/known_states/spectrum/kindling_head.json5" +hash = "66d2081dc522475d3c9325797afd244e83a586db212cf2fc25cc643fcfb4c0ea" + +[[files]] +file = "config/blockswap/known_states/spectrum/kindling_wall_head.json5" +hash = "9b5d8717470586778bf62e337a9170762c96f2d535450d07b2157b0652a81259" + +[[files]] +file = "config/blockswap/known_states/spectrum/lapis_cluster.json5" +hash = "e178bb8a23f46dbc34b01e1b3bc5930c3a8eb366b8ee4d604110f77d1857a5ea" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_azurite_bud.json5" +hash = "7c54e9b1e7a78b999ee58df3ad11edf27932ee0cdf3809ad2a272db15db58d36" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_bismuth_bud.json5" +hash = "5900ed5ef88aa66d6359c4bc4552583a84d45ad0b76700a1076b2b814f8a78f5" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_bloodstone_bud.json5" +hash = "0687627dad1072d1285f05c690e90b7b0e8ba61dd8f00f3b3e08f8619d99069e" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_citrine_bud.json5" +hash = "677c17345529b05e32f7acffcc54b6b3f6e2c58cd0f13f9ff9ab48d48de947fc" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_coal_bud.json5" +hash = "60617bc6050f74ebb7ba094526b5c4826f82946bb729772a6e9ab146afd978e1" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_copper_bud.json5" +hash = "f4d4cabdc68096081f1db8573a17264cb3f5284a8de60e26dfc90a057b8f745a" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_diamond_bud.json5" +hash = "e32c1cfc1025e454181b796bc1d8fe15e6e272a9f7ced00c2c56a56b5a93ca53" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_echo_bud.json5" +hash = "363cc6cc5fd9c3a2eba0fde57a583c73644cd5c2009d79d7044c39a2c5b4d559" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_emerald_bud.json5" +hash = "c7c4f38e4c1d86fa3416b5da6d95b575546a2437692a44a29dc688e8c6359145" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_glowstone_bud.json5" +hash = "dd2027fe16a2c26b7f7e99679800c90e0d54de1be6ef3a256ced5970a9ac9a31" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_gold_bud.json5" +hash = "b340e9f4dbdbcfea236535acfc6cc29c604737eed1f116710c1beaac2f9e6b64" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_iron_bud.json5" +hash = "835ec2b01a4cc17e922b7e844e26c3ca89041814bb8f92d6fee23ebf2c16e132" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_lapis_bud.json5" +hash = "3a8d156a45fb8a43e49ea3ae4a7a5289679723a12ec249aa0c5499da6284ec0e" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_malachite_bud.json5" +hash = "c872e0137bc3fd0ceabce30b7dc5373e89097a5a8f061a8602cec4d1c8fccfaf" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_moonstone_bud.json5" +hash = "0f9c6f3b00c8492bc11e71676a745bb9e5bb6b54b61627f49a94b8fa06ae0750" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_netherite_scrap_bud.json5" +hash = "7ca5777cb8df599b099b3d9548678a50a4ae724828d98f88249d48ac9182dcaa" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_onyx_bud.json5" +hash = "d13531b327df6982faee529c3207dd41c7924d59915293a37102cd9bad501088" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_prismarine_bud.json5" +hash = "90a2c255857adf5f4a7b3748f86e240ab6bec1c6afede01e9bb00ca37d515491" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_quartz_bud.json5" +hash = "8918bdf05b51e7b6e80fd06381e47897a4a07fa947a1196d6f0a54fe331c614c" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_redstone_bud.json5" +hash = "f2f8604e56de3b2456264bf349845ce7aec2661fc359b4e0592494828fa1361f" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_topaz_bud.json5" +hash = "da1969de4e88f8a64799a6a415e423482ad314a8e7005712194286aa9280fcb1" + +[[files]] +file = "config/blockswap/known_states/spectrum/large_zinc_bud.json5" +hash = "ac6a02521a30ed5651b03e47a38f49cc74a6115b17a57873fc5b7785a2f20e9a" + +[[files]] +file = "config/blockswap/known_states/spectrum/lava_sponge.json5" +hash = "def266daf37c6c75cd8edb9d36be1bac123896f9babbdf3f2943f5a40b0bf83a" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_block.json5" +hash = "898a1f9f49c178df8377ce5e2da9347391d23d236ae47086f66eccec5fceccd3" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_button.json5" +hash = "b84f13852327f50258bf7a6f08720170a4483d92602b3e74613268e2e5f38515" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_chiseled_preservation_stone.json5" +hash = "a6ab16791696b694877fc4269fd24a8cce9fd9dd348065fd802c77bcb3b65fa8" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_fence.json5" +hash = "553b1fec0205242f604a33f8a50cfa901c1ffcec1cc28413ca22ba8c3297e89d" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_fence_gate.json5" +hash = "006be8614bce6da2646e31d3c6785f1d0446cf07af5185461acfaac44951d01e" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_glowblock.json5" +hash = "dc1ed1e84aecef98f7b8e7a56b627483282fcc8a7e0d4c5878aa98b3a6564f2d" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_lamp.json5" +hash = "44d6a93d6e0096d7b4dfe957abbb2b393d1f2daa1c0439f6be24671dc2129de1" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_leaves.json5" +hash = "d2f802d45695ab4fc30cd2fd293d4a83354cfd63103d68dc069cf547c5b7867b" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_log.json5" +hash = "9a910c787b58ed5b8d3f3b70a29599f9ca82017c7e81b5134f6b7ac0076e8afd" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_planks.json5" +hash = "ef850593f4cf7379da501855533afd98c5f1bbd531683c46ca7c0ce5a0377f1c" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_pressure_plate.json5" +hash = "32a61429330723b448fc1dc77c76d48b8c59f3892c9a7b35766ff475b628bf0c" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_sapling.json5" +hash = "acd77a292ade6dd717d8bab7cdfa7d9e7954c44cbfe8840b97d7cd7b26996160" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_slab.json5" +hash = "1d1431a2305efaea94c1e6706ca1051c05717a551048940f1d7eacb21c0cdb81" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_spore_blossom.json5" +hash = "7794b28defeb803ad75c0ec46fee693c9468a5a85878a11c21a2d9c69bb6b2b3" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_stairs.json5" +hash = "70adc4d290212f9884341a77a99d0bfe81572c88cd550144bb2c140909148903" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_blue_wood.json5" +hash = "9530aee1422a861c1462f7787543c761891ace96c3258e60ddd507b908688343" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_block.json5" +hash = "dbb0d7a9d3dd761542616fb62102f17a2473d1fe58eeb5b26421bf7bb47b4dc9" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_button.json5" +hash = "70bdaeff8c7bf796ffc5ab93af90a695c295bb8608d6eccfa9719a6134a32a83" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_chiseled_preservation_stone.json5" +hash = "bc715daadc8433fb4a1061f6b21088353c419f884ba73efdb0196d7a2aa0adee" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_fence.json5" +hash = "a150ef82fba31b5fcfdd99d120d9eac50770a43814cde63d2dee503635ea85bc" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_fence_gate.json5" +hash = "b6dbf04ef9678d5c677e01a7e59d5bd3439e69751452e1a00b52247cb2a2515c" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_glowblock.json5" +hash = "ab153243dca709f9c5259ad593f6cb03c5d0ab7fc6abf58de3e3a82aec8d91e1" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_lamp.json5" +hash = "f26f0f4330104b320d15c7a3686215f47a5d1f634bbf45f6ad77688ba8106832" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_leaves.json5" +hash = "40fe51f9b541636016afa913fce43373680c8a71da9d6da961b78ea57f4beb15" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_log.json5" +hash = "66e8d036af22bb4916082e62285e2fb8443b0f1ebec2276f9cb73b7d7d2de4a6" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_planks.json5" +hash = "bc9b94b8b3bc984b71567c7671df57690fee88d9d691731beb327d1d772eba73" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_pressure_plate.json5" +hash = "97d32e30617e6df4f5655eefb89fb729a27cd12dacdf5a3233f4a2f8e836ed07" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_sapling.json5" +hash = "d6020667f45672782756ec139d64a5dcf9dc7ede9c7c9d848a0b6cd5de2b135e" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_slab.json5" +hash = "740a5cc062946f8e614a24cdc52326d9311ebefc8b33be1b01c826768e26db5f" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_spore_blossom.json5" +hash = "6d01f4c14173eecca5ec65311a2240549a4baf536400bd8ae19866a32b3da409" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_stairs.json5" +hash = "95638bd357cf3b375d35f2db035e788e3644f44c216476b7a35193d8f5b2ade7" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_gray_wood.json5" +hash = "4931051ba3b2828ea5fc6c267fa84f65b5f4edda68b50d4bfa5d8678c717f79d" + +[[files]] +file = "config/blockswap/known_states/spectrum/light_level_detector.json5" +hash = "f67c72ca55aaba44e3a699360be01716b185416c9acd035ccf2ab54beddc1777" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_block.json5" +hash = "ad9d1a49892e9b12f1587babce17a98fff81c0e7e56a7c102fea41deeae1c77f" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_button.json5" +hash = "476fbacf5706e183817c582ebf9f077092191d7248bfafdea04bc1c5416fd3f6" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_chiseled_preservation_stone.json5" +hash = "0a9559c2a869978e8d0a7eae369cae032d5e127862652ba4f761b9239952f522" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_fence.json5" +hash = "ebed2a051c4f02ddc76acbc61654c77b05a087b517c646de1b6fe15cb44b3198" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_fence_gate.json5" +hash = "2e2189b1d88c05b089fd8bf64293630b6f0bb1a8be84f3737e2b8e30bf7d583d" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_glowblock.json5" +hash = "2d98d22224f8f69373d0473f3dd9863d1fb46f6b392e331e5e52728fb3fcc251" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_lamp.json5" +hash = "0464a292be6152546bd47c7dccc20ae07c9c2da17a563e82cb1911bbfabccaaf" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_leaves.json5" +hash = "40c69f9c0596392fc950c34957b898e2c05e74b12ba95a6b7859c259f6932aab" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_log.json5" +hash = "e30e634984e7f7b6c270545d4bc7b8435e2f1018ee973c4dabced4c3cd02d519" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_planks.json5" +hash = "ccb2f4fe154e99bfd39ec42371ff650c7301bde65158abdb68a2859821ee7afb" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_pressure_plate.json5" +hash = "9d943f6d5fb51b4c0e0c7e1f1e6e4ca264d9f1f1296f687c6b7b0e37a54ddc2f" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_sapling.json5" +hash = "172b3e82fc77398348c2ee87443ccf40714a602630fd71967c664a5eb172b76c" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_slab.json5" +hash = "7a313e6166235e337cdc33225381e201835a8fc77515e91f92a5eeb694e5eac4" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_spore_blossom.json5" +hash = "c3b051933280a756fae4fd8fab48bc3ee9b5db5bdd679c6211fd3f907bdca0ea" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_stairs.json5" +hash = "7618d22c4832a04f9f09071a58a1f0a7402fb858532cacdc587352b4e32e7b80" + +[[files]] +file = "config/blockswap/known_states/spectrum/lime_wood.json5" +hash = "c11a186ff04f2cd79b7a6019aedf62f18aa88ce66a643934eb6e0c3b43260e91" + +[[files]] +file = "config/blockswap/known_states/spectrum/liquid_crystal.json5" +hash = "72c896a2dbc3bd0c1e63a4f6994cebb6067f16b613b385f89f7f46c0aec47878" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_black_head.json5" +hash = "4914b2529853081c68f85c2dc9f541fd21f84c2ccdfa7fc86d0cc67475b1c5bb" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_black_wall_head.json5" +hash = "8752900be862cb0b19706fb37f7d151d05604d8858f9f0e3a17ee6278cf80422" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_blue_head.json5" +hash = "04a0b10752984dca59ae5f6ab80e45bdc887e08cb51bd6488f7188557dbbc89a" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_blue_wall_head.json5" +hash = "e49e22a6d1ba0fcb9dd6ac5b53608d2b8b85321507143281c153ef9c2dd236d5" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_brown_head.json5" +hash = "a520c8b628e968e75d9be101f9fa091635d703fa7f0eb2113872f23c750293b3" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_brown_wall_head.json5" +hash = "65382d3681f9fdb4b956337a917b4827d3904e3b3e46e57051ec3d7a03ae546f" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_cyan_head.json5" +hash = "ba5eb9babf896027135e4b4872d69b9d6716630746ea664e3f198fa68e7eb695" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_cyan_wall_head.json5" +hash = "33781a8474e511f4c94cde685df31171433bff8c042556953958a7ea05de936f" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_gray_head.json5" +hash = "8ad9d15869b2c61b6745b623b8c2309237bfd05944897675837bf779a43a2a85" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_gray_wall_head.json5" +hash = "d22ed138d933eca49b10f19a4c53c5dead74b3af06ba94ad1a128e57daec4c49" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_green_head.json5" +hash = "940e83979bc24980e4f686494574e5689f6e86b55b3801164c6697de309ec602" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_green_wall_head.json5" +hash = "802aaaf7dc9d00086badfc73fde637999f94dfc1136d8c12d03010d990458536" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_light_blue_head.json5" +hash = "c73dbe9285b06c3fb5b408da6f6460f834f4f8d2fb0847497cf648bc3bfb219f" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_light_blue_wall_head.json5" +hash = "9d281eadc6236dfef167cc02f23599ab4a87b326719717b71060df594470d811" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_light_gray_head.json5" +hash = "eaf377142c3777c629dc2967e6af340aa763dd3349dc713ba930b996b5767d9e" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_light_gray_wall_head.json5" +hash = "505eb6bcb759ddd9063d6d153bd10e81d3a161f95fea7e356c6783f7ca5a9126" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_lime_head.json5" +hash = "7260f1e94bf7e6cfbdc05424268382c945274b848f6395e8b6b3f1e86997385a" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_lime_wall_head.json5" +hash = "b26d2702aff20a177427a5d3f810e4c18633eb8c734f868f349023e5a6ab4e78" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_magenta_head.json5" +hash = "b6a5013fe41622c6935f014368a1218eb8a2624a2701e16e50db56f67993cb46" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_magenta_wall_head.json5" +hash = "b3da0412e750ff5b28cf37261550fdd3b232f13734324faa8b825c8f056b9ff4" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_orange_head.json5" +hash = "b5007768fb7d644b71794d06e963406c3afeb1d22e7c562822373f18b599aab0" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_orange_wall_head.json5" +hash = "016988c1a44b6680bca7f65b53260930a7fcc3fbce3f8ce34dcd7376bc9ce59e" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_pink_head.json5" +hash = "8bf5376e2a380e7b0075c670f204abfb0e1b8786d88861daeae24dbc2b9d445c" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_pink_wall_head.json5" +hash = "2a6e7aa384219732ad42e1dbf71961b7d9e3d8bbfd281f567ab300dab3012d82" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_purple_head.json5" +hash = "15a1b61689dcf5d99c3a50a63d8d06b820df9bb172f825626cb989408a0a55cc" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_purple_wall_head.json5" +hash = "472a93b74d83aedcd26ef682c2f0f1e926ee23eb0e644f23bf92df5a66724002" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_red_head.json5" +hash = "cd9cce08e8323b99df00012dcee90f5c48b0ac7cab019ead7630c2f272e063b2" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_red_wall_head.json5" +hash = "6348841ebd3a550a7406a872752f8d9e3ace1567553091bcd3d21e40447395f7" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_white_head.json5" +hash = "14d24d12c516258af011af212671b87721d59cb6db722570784cfb1a86680b8a" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_white_wall_head.json5" +hash = "b10b627db022593a5c4a1e43693dcc790efc5ed0945397904e53a35c7586e166" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_yellow_head.json5" +hash = "5f744498564df5a04ef68675f2facd480f4d45b78dd7687ab6119f450854fd98" + +[[files]] +file = "config/blockswap/known_states/spectrum/lizard_yellow_wall_head.json5" +hash = "248f83e89d472a133a7dd06a2ada4c6b4d143f25ae6766887c026047787009c4" + +[[files]] +file = "config/blockswap/known_states/spectrum/llama_head.json5" +hash = "1c8524d835758d049256bfcb9f9a075dcaae780f6a2f76301cfa339d9522ec5f" + +[[files]] +file = "config/blockswap/known_states/spectrum/llama_wall_head.json5" +hash = "22b3bce7524bd9a1f76eb50c36a3b9cc9ed309675cee5e29e2e2e831069bdc84" + +[[files]] +file = "config/blockswap/known_states/spectrum/longing_chimera.json5" +hash = "4352928ebfa9c880f76615ccae59248b1c1fe5a8f7b4fb0073f7d42aeeab0411" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_block.json5" +hash = "6501e14d7338ca3297982631d89a791b18f4917b683382e94aae9fc2d97ed8ee" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_button.json5" +hash = "e49684fa9c4b098b3b758c37b20b4cb98094acad0944f3aedf5e4bbc4fbb6752" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_chiseled_preservation_stone.json5" +hash = "bbe1fa1ec020ad8e7cc36cfe257286664224ba1b43318870fbd9f13269ed23ff" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_fence.json5" +hash = "4732da9eb04ac10302c1eed2d5f8eff863fa8f6f50df251eb73458eb46608a02" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_fence_gate.json5" +hash = "605eb4a8694761a68fd45ef563b903c105e61a26fb700260fff40d941d57345c" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_glowblock.json5" +hash = "0bf930aee904ff6ecb571676d479cd8422e73adbe7d58e07ee4f1734169b4539" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_lamp.json5" +hash = "23c5a7cc5e91bf9ef609f1aed20e50915f94cd71b0f7d9c92ff6c1da23e1749b" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_leaves.json5" +hash = "eb6810247faaaaa27d1b45d0230c8b9d014d72944de53f20201c0fb3df129870" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_log.json5" +hash = "9b2df5bc0ec52c73c447342ec36ccf270a12cf98513ba6fc289b8bb78c18ea64" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_planks.json5" +hash = "7ada18d9519daf5a0cdb21d683130872d7d5e0c213a3dc2477ed4a39d7b6976d" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_pressure_plate.json5" +hash = "047f886a5ca6ecd2665c11feef3ba9d21d8db116d6825dccda2813ef017ebc71" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_sapling.json5" +hash = "51fb72169d6c4e74583c52fa3ec4bde9a510e5fa3a50a2f6c080ec0ef8cf11d0" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_slab.json5" +hash = "21e7e03249cbd9f1ec7110b7f71f89f53e8d37fa5b147e03be272f2b58a3ca32" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_spirit_sallow_vines_body.json5" +hash = "ed74fd64305b40a7411a3c25c78e7ee1de4136b17c3b2329a666cefeeb4a2e19" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_spirit_sallow_vines_head.json5" +hash = "d52eadf96de9ef2b56c563c5cde1a754c6bfbf895e4fd58a5df9c1a58399e908" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_spore_blossom.json5" +hash = "926afa03c83993ffe9c3c36f7d34fb5efa9f33898ede421e5da3c0a3292beb4f" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_stairs.json5" +hash = "bdbbdb72f4fcf54e915d37fd0d61210bd9e88a1c3785e2708f416c8c420c0be8" + +[[files]] +file = "config/blockswap/known_states/spectrum/magenta_wood.json5" +hash = "93ee3ec1b0fe70f286abc8b62539a47fbb47c82d11c67427f5bb36d96138ed7f" + +[[files]] +file = "config/blockswap/known_states/spectrum/magma_cube_head.json5" +hash = "a2b5f30c0f285f9015dc933c808187baf957ce9f44046f220d64242d9c6e125e" + +[[files]] +file = "config/blockswap/known_states/spectrum/magma_cube_wall_head.json5" +hash = "2b5b48bf61e6a3cb881ce9675d17d05762a853ce4272c46ac80c093ff950c2ff" + +[[files]] +file = "config/blockswap/known_states/spectrum/malachite_block.json5" +hash = "a7b3a52c927950b85b1a53b54b1a4cf7fe4445b10b7b832bb3c5230fa071e360" + +[[files]] +file = "config/blockswap/known_states/spectrum/malachite_cluster.json5" +hash = "8352b94a54a1ab37e9098209ef04541b61d35daef27529d9da7e4ee69c8cc40c" + +[[files]] +file = "config/blockswap/known_states/spectrum/malachite_ore.json5" +hash = "8e08ebeb96252d05e4c18d1397e40cf98216d0b5e161efb227a9cd9c211e112c" + +[[files]] +file = "config/blockswap/known_states/spectrum/manxi.json5" +hash = "b14ba617a24477671db15a60a5c3e7aa6481ea56f0a445111f06a98a7d98c83d" + +[[files]] +file = "config/blockswap/known_states/spectrum/medium_citrine_bud.json5" +hash = "1b48ab7f0952c448a80b9101fbf23cbf566c2e549656a2a059cabe27194be4cf" + +[[files]] +file = "config/blockswap/known_states/spectrum/medium_moonstone_bud.json5" +hash = "05d9706bcefc1a04e5efae7fc0e55ab339099e02a8e68c26f581bc97ba2c377f" + +[[files]] +file = "config/blockswap/known_states/spectrum/medium_onyx_bud.json5" +hash = "48a235f101c821cfc3db5eeea6d849706d1beb878cb9ffc00e03760890884c15" + +[[files]] +file = "config/blockswap/known_states/spectrum/medium_topaz_bud.json5" +hash = "4226c8beb37c774321f58b558af34ed869b5f5a0f412b68487b176cac6e2bcde" + +[[files]] +file = "config/blockswap/known_states/spectrum/memory.json5" +hash = "b74795d1218f75f38b00c4dc95a7633a85ed41bf22c8df0f1245e310f283fa94" + +[[files]] +file = "config/blockswap/known_states/spectrum/mermaids_brush.json5" +hash = "776dec702ce494805bd9472e85cb13e706d34eb96ba351614167384b83c49951" + +[[files]] +file = "config/blockswap/known_states/spectrum/midnight_solution.json5" +hash = "ba676e6e4a9a803824cb718aa7e34bd4af827afc3dcc409a27c4b872b4e9ac73" + +[[files]] +file = "config/blockswap/known_states/spectrum/monstrosity_head.json5" +hash = "a6a33435bde6f5bb13a4f22910038775c5bd4eab500a71240024619ff18f8216" + +[[files]] +file = "config/blockswap/known_states/spectrum/monstrosity_wall_head.json5" +hash = "b2d45e640abd04249708ac47f897ce43982163caef7c5cdecce833b74035a68b" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_basalt_lamp.json5" +hash = "7322cc61fe2746009295a1b4e49e8f5db8a8be8b10d5b313b1ddb3416156c4f2" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_block.json5" +hash = "62946a6a48bcf11fc9807d6affce42f1089b88a8f8d650fc4e8181d5fbfb0d83" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_calcite_lamp.json5" +hash = "a2d8024ac7c03b5b11a88983b2143ec0d2a32b9d4e3f278bc120fee3842bb903" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_chime.json5" +hash = "9e9141623c5545513049d4c234bf2648636bc7ed512df3a2ed94664f24226627" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_chiseled_basalt.json5" +hash = "bfe4a2ab3678f4eff19e6bfaca4f0862d1713fa391d870c6b99c3b4832d63e86" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_chiseled_calcite.json5" +hash = "4c7997908df54ee035d400251fb69509ff87bd422d008ee7dad471543b1f4251" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_cluster.json5" +hash = "4278317e0da598a12bcdabe72ed59ad0a1db2007651488775134445dd4f0202a" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_decostone.json5" +hash = "19da20eaee31d88a45d66c27b6631e2abea085d5d797412780e05c79d1007bc4" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_glass.json5" +hash = "c21624981bed521e5806d870a140306b40a299497dbe96da20bb37e6a2d16787" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_glass_pane.json5" +hash = "5f970852092fcc58aaff5c8866de4b685acc64362941249866e4521c63ca8e77" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_ore.json5" +hash = "969262aa11ade19c282a1d36eb8afe8e43998b4a11274f53fd213a377dd8f06b" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_powder_block.json5" +hash = "0555c2fa5c1023a04ae6da777aa621b4bece3e045d462074c7243efbc343d156" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_semi_permeable_glass.json5" +hash = "5989cdc31583a8bbd288252fc495acce8d01b44690d181ba3b523bbe3961735b" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_storage_block.json5" +hash = "2baac4362b88fd1d1ad3908cbcb3cc0ba1febb8139923c4b0974e71e995833fc" + +[[files]] +file = "config/blockswap/known_states/spectrum/moonstone_sugar_stick.json5" +hash = "284e6608f4b210137cd32003268a0e729d1e7dd7d191ba18fdae6b117ed40d8c" + +[[files]] +file = "config/blockswap/known_states/spectrum/mooshroom_brown_head.json5" +hash = "f99a4585ccd4fd4090baf94cc101bcf37b5df5cfed7f8652fbc27d0c2ebc28dd" + +[[files]] +file = "config/blockswap/known_states/spectrum/mooshroom_brown_wall_head.json5" +hash = "a32ddf71f2eb21f72e8274eb705a0517fd39784075e5972e453ebf4ca03bef1c" + +[[files]] +file = "config/blockswap/known_states/spectrum/mooshroom_red_head.json5" +hash = "6482ce308bf6311af9eebfa2d90d200425eacd35c332f22439c65f3de3b9816c" + +[[files]] +file = "config/blockswap/known_states/spectrum/mooshroom_red_wall_head.json5" +hash = "cc23d6eb0ae682959441402891c32f33bf97c77104eb3d6be31eee11653dcc8e" + +[[files]] +file = "config/blockswap/known_states/spectrum/moss_ball.json5" +hash = "4406aaa7ce98bec6f6b04c3e596c090948acea20fd975afddf2a1da7b7d66f78" + +[[files]] +file = "config/blockswap/known_states/spectrum/mud.json5" +hash = "978a643cbff48efc38a75767732d88d031c88271bd84e3dc2c24c400ea30148f" + +[[files]] +file = "config/blockswap/known_states/spectrum/mule_head.json5" +hash = "de6f58800b89c2a6ba7f76f3591d21476ef34eacdf07b71ddc4d9b5b45757eb2" + +[[files]] +file = "config/blockswap/known_states/spectrum/mule_wall_head.json5" +hash = "60c8904bb052e9f1fa020d421965b87313d40a4058a4b928ee7cad74923ad4a5" + +[[files]] +file = "config/blockswap/known_states/spectrum/neolith_block.json5" +hash = "7add685f20951ae0db4862d86f5fd1fdc6402958efdca0fca7a01ecda3659dc8" + +[[files]] +file = "config/blockswap/known_states/spectrum/nephrite_blossom_bulb.json5" +hash = "9f10f288019c56a96ff0037db56cca2f26fe193047f22ddd3eab63bce23a2173" + +[[files]] +file = "config/blockswap/known_states/spectrum/nephrite_blossom_leaves.json5" +hash = "b086b7c2dd8ee61fa7a3448231fcfd4a9acd1ccdd91ff8dfdc2f19cc448c5642" + +[[files]] +file = "config/blockswap/known_states/spectrum/nephrite_blossom_stem.json5" +hash = "a3b207aaab9ee49c2e27aaa29480234341a36b24e7d2ed47acbf13d6ec4cb95c" + +[[files]] +file = "config/blockswap/known_states/spectrum/netherite_scrap_cluster.json5" +hash = "a9a2967147d4fe3aaced7d10fb852ee3f662734424b71c664ccc64497ce56f2e" + +[[files]] +file = "config/blockswap/known_states/spectrum/nightdew.json5" +hash = "75ba2d7e688a74609a2114526e681254bd3a88620f004c027e1d4a4f170b1b4f" + +[[files]] +file = "config/blockswap/known_states/spectrum/notched_polished_basalt.json5" +hash = "98a8b070ebd493eef76fdb563cec0a3587b3412217b14d96ad1c895d91dfe1f4" + +[[files]] +file = "config/blockswap/known_states/spectrum/notched_polished_calcite.json5" +hash = "492f7116c14e696f15077338ff4fead874967a9ac424a9e9ea6bd79641a04295" + +[[files]] +file = "config/blockswap/known_states/spectrum/ocelot_head.json5" +hash = "044b6b55d93c44d37d043db1e9b4be01987c120a4fafa6f42eadfd440f33ee5a" + +[[files]] +file = "config/blockswap/known_states/spectrum/ocelot_idol.json5" +hash = "9635fbc1be32a0f6ba9424e74bbdad75b76ca2485c38d715a0a2d32e9af65652" + +[[files]] +file = "config/blockswap/known_states/spectrum/ocelot_wall_head.json5" +hash = "cc785270858452501369c6f9c6c948a4b2d50e94a482aca5a73bd316e2950e4f" + +[[files]] +file = "config/blockswap/known_states/spectrum/ominous_sapling.json5" +hash = "3a7fee355e63d7a46a58373e849dedf08acd8195eabd4684bc6fa7e16f382c5a" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_basalt_lamp.json5" +hash = "16fb324e38716e5448e95454bf4492e17f1135e470c3ccea407d50b9561b6dec" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_block.json5" +hash = "2bbba585222a22666c062cc634b7db23d6c774a3aae4f1ac0581cb0286f2ba91" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_calcite_lamp.json5" +hash = "f16ac45f99a0df9912ed28b99f1a8061ecc24f7294cd1565b9d39f62999d1a37" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_chime.json5" +hash = "cf365b627fb5104253ab25e7b9d56947ae506e5b208963ed575c04a5a78c1dd7" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_chiseled_basalt.json5" +hash = "2c508a33817a1934c2ca3776355cfc29b441a05ceecb6fd1d02a8875e78495b9" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_chiseled_calcite.json5" +hash = "2c217ba16e121d4c9cc4410e7f7903f5fb12376d981b441a0079f06c47e93a1e" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_cluster.json5" +hash = "53876c70900d5356840235da923c440f317985e0ec062fd99f308af826d51c58" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_decostone.json5" +hash = "658f4db07846e3d0d60ddf39c09332bf0a34ed96c555a055dbb83e16c703e2bb" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_glass.json5" +hash = "3a6827ecf9e48e7f5823f6718e622150e5040accab0719b3e6e7471fa2cc15f9" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_glass_pane.json5" +hash = "6d9a62ccc0fad1185e819f553162c8899f06c68ecf9a469b8ffb80e6507c11ca" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_ore.json5" +hash = "9bcb32d7ac5d351948e0dbf276ca7ab09ad255c7a3e7b5aa215c05a021a5c6ec" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_powder_block.json5" +hash = "2b48dc8755ebcbcc08f9276a826bdb7dbdd80d88815dfb10c685631f1625a5a5" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_semi_permeable_glass.json5" +hash = "d52c0358128ea11d9715287007b488ffe34872e7545fbfa976fa652c82cdac06" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_storage_block.json5" +hash = "64c12bfeefef5dfed9c31dab8dcf2a66b5b433b62567c419660d8764fcbdc237" + +[[files]] +file = "config/blockswap/known_states/spectrum/onyx_sugar_stick.json5" +hash = "100248da40b53102a136dca8127343bfa52b749ca502e57939a48f3a676a165c" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_block.json5" +hash = "afec54910b1ca5b5b22058bb598e3ce4049931ab482c2dca966ea5fdd7a799ea" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_button.json5" +hash = "32d4cc6bb823326661ba4e18077515fcfebe9e920f188db04c3a0a4a0201171b" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_chiseled_preservation_stone.json5" +hash = "cc26df3635fd950758c7ffde1d12fb15c9efb9a04791ade866370fee0fcc7b0a" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_fence.json5" +hash = "5a4becbfc8403963b203fc3a5bfc00d95d2a16caba4e20494d3509cdaaad7e54" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_fence_gate.json5" +hash = "31269dba98a1e021b5ee56dee52e8fc2b57c3bb7a7fa19b9bbff7ad5983dd5f4" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_glowblock.json5" +hash = "01090ed2b5b394c2eac0dcf1c4602af4875f16fd2999f563d9937ade43b6a63a" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_lamp.json5" +hash = "8690d5751cf8d767e4df8cde08f1b262a3ee326bc11ace3145ff27aea5de28e8" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_leaves.json5" +hash = "e67775b0898ea2babbf2ad8fe29bc345f0827270b94934b94aad10d3503ce7ce" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_log.json5" +hash = "0d9fce4ddf98bc855bf32a9c42c00c58bf92149b9ef5d19df22283db68cb9fe1" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_planks.json5" +hash = "163e4f8b972fbb1cc5291b2647e9c651a3d470f5c3adfbb2f3bc87ddca3a68fd" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_pressure_plate.json5" +hash = "5b8aad586e13e0e3d0a900cdc80d6ef596df38e8a1bba2a50d24fa73cc00f369" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_sapling.json5" +hash = "4eb091ad24bacfb821c230ae8c29c0eb110aeb6017273c1bf7cda9bd1cbb3ab2" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_slab.json5" +hash = "603f6355b61c55d687d974a1b073f1ef84f1e3df9b3fb8bb561a982d26a10a4f" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_spore_blossom.json5" +hash = "3c5a9d2ebcd0d9a9948bf3ad8af05fab83180bea19cbf21c19b344fefcbc601c" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_stairs.json5" +hash = "da42c61a1ff23b54a0042eb796dbae65c9937896ea706f05f713ae589a4b8abb" + +[[files]] +file = "config/blockswap/known_states/spectrum/orange_wood.json5" +hash = "38ce88953bc32209cfbb6a62576f27d32d8538c55d9f4116be714fca864c9894" + +[[files]] +file = "config/blockswap/known_states/spectrum/overgrown_blackslag.json5" +hash = "8abe03f6dbba1da953965c99bff0435125f9adcd4aaba9113bfa08e2af3867f6" + +[[files]] +file = "config/blockswap/known_states/spectrum/overgrown_slush.json5" +hash = "8c6e5cc775108922a6a0a56f03e5c37039e91bfe59fe28a3cd8eb3e6f57d4ebd" + +[[files]] +file = "config/blockswap/known_states/spectrum/paltaeria_fragment_block.json5" +hash = "66286e3f793a6a119488d9f72e951d366097a7a42a59224c91747d0f53478ada" + +[[files]] +file = "config/blockswap/known_states/spectrum/paltaeria_ore.json5" +hash = "a14f07f875164a82ea906921ff66547f4475997713c9e319599e4bfda6fbdd11" + +[[files]] +file = "config/blockswap/known_states/spectrum/panda_head.json5" +hash = "269c6dd89e53fbdc49f7f36596660f1becb9c352ea1b9e3f3eff6bfb25044f06" + +[[files]] +file = "config/blockswap/known_states/spectrum/panda_wall_head.json5" +hash = "a5a17d1167bff5e40cdacb90053a6cde31a0ae2ec2ca004c81397c1d88844aba" + +[[files]] +file = "config/blockswap/known_states/spectrum/parametric_mining_device.json5" +hash = "f060323a6c0cb654a88628cc171ca9fc1cc4fec3d5faa1737840599179bdd22e" + +[[files]] +file = "config/blockswap/known_states/spectrum/parrot_blue_head.json5" +hash = "646770fda2c6d1346f8e8b8d5a46065105b5b5582e12cc146802ca1e0128e309" + +[[files]] +file = "config/blockswap/known_states/spectrum/parrot_blue_wall_head.json5" +hash = "4f00eef58442043c25704aa1f40552e306cc6d7eb9b49fa5e46a1a78593afe19" + +[[files]] +file = "config/blockswap/known_states/spectrum/parrot_cyan_head.json5" +hash = "e76b4190300bce4dd1351dd8a3ccaab720c2bacd74dee7f15f6c251a3557d97f" + +[[files]] +file = "config/blockswap/known_states/spectrum/parrot_cyan_wall_head.json5" +hash = "94ca537d17909f026f055375ae3fd7f35fcadde53dcbbdb2cdf96c1e219f0654" + +[[files]] +file = "config/blockswap/known_states/spectrum/parrot_gray_head.json5" +hash = "d9ea2f795637f5701bda97c1b60f69cf92d772d24121f0e3ef6d920b7e12543b" + +[[files]] +file = "config/blockswap/known_states/spectrum/parrot_gray_wall_head.json5" +hash = "5279cfc648ccf9a4704f2d8e2f2c5d16ffc53f60968c408f51c2e1cee6a8f64f" + +[[files]] +file = "config/blockswap/known_states/spectrum/parrot_green_head.json5" +hash = "b03a16fc2cef5b2b0af94736f02caf06d6b7e1fd599ab9a4fe1d257af249a07d" + +[[files]] +file = "config/blockswap/known_states/spectrum/parrot_green_wall_head.json5" +hash = "3543581ad67148d4501838eb42c9ddab1faafe826b0c3b2aaa4b89be69caea09" + +[[files]] +file = "config/blockswap/known_states/spectrum/parrot_idol.json5" +hash = "ad6a38af25a1fd47a9bd6c4e4cfca5aa5aea9bc293988d766813e138ede54c02" + +[[files]] +file = "config/blockswap/known_states/spectrum/parrot_red_head.json5" +hash = "5e8b5aafaeb367b18f9f34079714b61f09ad7be230b0afc6cbba80f6b4bdcec8" + +[[files]] +file = "config/blockswap/known_states/spectrum/parrot_red_wall_head.json5" +hash = "ee20f7b68ed6bf6b60e0f78bbf288375c562c518acb063af89fbbf89b4a3eb4d" + +[[files]] +file = "config/blockswap/known_states/spectrum/particle_spawner.json5" +hash = "adb5e13cadae5f2b72618ae787f3f059a71b9e69dd08ee83b9a8d2550ce7b75a" + +[[files]] +file = "config/blockswap/known_states/spectrum/pedestal_all_basic.json5" +hash = "27dd3a16ce0e564e3b0866ff5c390dbf0b743cb366bf98c70629340ef05ba5d1" + +[[files]] +file = "config/blockswap/known_states/spectrum/pedestal_basic_amethyst.json5" +hash = "1d37bdbbdd6a4c26b56b63050d0333dd5592c840d871effa728525e329b278b4" + +[[files]] +file = "config/blockswap/known_states/spectrum/pedestal_basic_citrine.json5" +hash = "7a4c09a7a1542b298e4216121532ca1b6a1ad1b28ba6052266d1b8f46d172663" + +[[files]] +file = "config/blockswap/known_states/spectrum/pedestal_basic_topaz.json5" +hash = "c806736fb595afc6ecf724cc8eb364db1c4c855e06edb1e68c10598891f5267b" + +[[files]] +file = "config/blockswap/known_states/spectrum/pedestal_moonstone.json5" +hash = "a871711c45e0ea177648d079fac296b712f83c6345b13cee690a46633d529e26" + +[[files]] +file = "config/blockswap/known_states/spectrum/pedestal_onyx.json5" +hash = "41f264c1ef6152bc8f70afcacec424975c5d2f1cb5395cda391af806f417bd74" + +[[files]] +file = "config/blockswap/known_states/spectrum/phantom_head.json5" +hash = "910bf5c633a3530e1602e60242186cd37f3af8ad1d335b4ef598f598a6ba2585" + +[[files]] +file = "config/blockswap/known_states/spectrum/phantom_idol.json5" +hash = "e11661f39b5f14c6376c949e682ef56a8d79cecc190f43c9898e1813ad91f8fe" + +[[files]] +file = "config/blockswap/known_states/spectrum/phantom_wall_head.json5" +hash = "af2fda7a6e9e7a763a1873055cb43ad281cfdc5bc80b3cf33346796205fdcf33" + +[[files]] +file = "config/blockswap/known_states/spectrum/pig_head.json5" +hash = "748775b47c9225e2a987ab4893b36d395ae619999189049735f55ae404f9ce59" + +[[files]] +file = "config/blockswap/known_states/spectrum/pig_idol.json5" +hash = "8bedd1a2e4dd2f603816886bf286e7a56a8cc5c3acbefb08afb07732b727ed5e" + +[[files]] +file = "config/blockswap/known_states/spectrum/pig_wall_head.json5" +hash = "e896f92ffb3c5f977cca9d0924c47e034ea96f128c6f465372ba3a34511878e1" + +[[files]] +file = "config/blockswap/known_states/spectrum/piglin_idol.json5" +hash = "26c71c7e7ea3ddb82c23f378c34fd35a3d5d5a5a2fa91566fa611d29eb7ec2c3" + +[[files]] +file = "config/blockswap/known_states/spectrum/pillager_head.json5" +hash = "877a3d9f253f9f2aad95d88165d247bdf2a14cc69552279b576e346c8c977039" + +[[files]] +file = "config/blockswap/known_states/spectrum/pillager_wall_head.json5" +hash = "87bd1aabf494b7f29bb8f648b2afdc48407a585be8abff27f12cf84dfd0df424" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_block.json5" +hash = "91f865ddc7a786c75cc191b7e9a54700ce1038fc00f3489339ca47c612e525f3" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_button.json5" +hash = "f3198f94f2749ac9a4dff2e94ec9053744dc0f4d7f100ecf471c9ee48104834c" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_chiseled_preservation_stone.json5" +hash = "dfc32805d82ea86305fdc307abd5a83833dec4d670577fd1db9ca8395bce3b30" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_fence.json5" +hash = "55834f3ce2e26df05ccd31265a97328dc2e4c56db2faaec98d0a24d2de2393eb" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_fence_gate.json5" +hash = "82e7849d409fe9c85ca39c1bf9fc361603a45393affec19c4a2cb49436a363d1" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_glowblock.json5" +hash = "81917c65205ec23307319626d41807f3850ca3468b068abf4ef1ab9b0857ca14" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_lamp.json5" +hash = "9bd08b62ea3c8873ee688d2eb7855157a7d818e74ea5bd1ed388fd9b4fa84b2c" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_leaves.json5" +hash = "45876a57d414767ebde3055aec28bc1925cf0dde4a5d3a9469bef6f05cd4b21a" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_log.json5" +hash = "daa75bc451e488aae7229cbd8a3eff7f5e5b1b99c46f2a765cfd39cbbd8e08b7" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_planks.json5" +hash = "692cc854c5e89c6a85edf296b986c65134b8cde3111b982874b8ff8a7431f4b1" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_pressure_plate.json5" +hash = "69f4954aff221b96f5b9d2aa6dd81f9fe7d169898e259abfe9d9e037b0757593" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_sapling.json5" +hash = "be7f3ae6328788acbbf7929694b54690ab6015818fc2bd0c12d13c601b457183" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_slab.json5" +hash = "71500bd1e1c15e29a257276190810017ea0992a6105bf18b332f5fe2a5231137" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_spore_blossom.json5" +hash = "03ed2022eb9bdb88dbb5ed3c228228e713a31535956a3e16d8eac208426fc1c0" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_stairs.json5" +hash = "50a776f6f0077a9189ff71087b61c02d794a1b722d94af1334be811199ad2740" + +[[files]] +file = "config/blockswap/known_states/spectrum/pink_wood.json5" +hash = "ec7a5fa672ecdd79a3cfe6d285837c3850f0e8b61ad95da86678bd3a6dfdcb3d" + +[[files]] +file = "config/blockswap/known_states/spectrum/planed_basalt.json5" +hash = "641c2ab9133827e11080c5d2f8e0af0238673c1060027ff8e384137295d27c0c" + +[[files]] +file = "config/blockswap/known_states/spectrum/planed_basalt_slab.json5" +hash = "f47ab8617d7c5dacf01729e3b12310c7c7d9d22d4264f86a8bb52fe3f95680fc" + +[[files]] +file = "config/blockswap/known_states/spectrum/planed_basalt_stairs.json5" +hash = "f7ee37a8b7737f1d191cdff39be090838a0af6cc6bd664c4955bf5e82b543f43" + +[[files]] +file = "config/blockswap/known_states/spectrum/planed_basalt_wall.json5" +hash = "2f7f9c4942fe9a9549975bb069665e7f3eb83e79569510bf05e0358764ac5902" + +[[files]] +file = "config/blockswap/known_states/spectrum/planed_calcite.json5" +hash = "19e3fb71b62b9cce1e891b5b51dd70f1a2a65ba65ad64860d87f2248f3702d07" + +[[files]] +file = "config/blockswap/known_states/spectrum/planed_calcite_slab.json5" +hash = "b09a7a9b2b8e945f8f2e4967a123f01a48e58c35dfd7b546d013236b99535755" + +[[files]] +file = "config/blockswap/known_states/spectrum/planed_calcite_stairs.json5" +hash = "62dc2c4fc18734ce28b35789e37574eb2eb25ab1d839afd1fa5cf17d7f7cdbcf" + +[[files]] +file = "config/blockswap/known_states/spectrum/planed_calcite_wall.json5" +hash = "b20d07ff5eff4a27a17ea90f39587346e46bdb4ca98767f59bfb5a4c97a3d0f3" + +[[files]] +file = "config/blockswap/known_states/spectrum/player_detector.json5" +hash = "c4d81ae83a80fc7a9930654268ce66a4267853669e36ae6e5e34bf8bb9a82344" + +[[files]] +file = "config/blockswap/known_states/spectrum/polar_bear_head.json5" +hash = "e7d2de94848bbd1e219741dbc7d5b31daa3125984544d9503d379e6bf1f161ed" + +[[files]] +file = "config/blockswap/known_states/spectrum/polar_bear_idol.json5" +hash = "61e4c043eafd1fd75254bebe91e3c3a959ddab03774408fe427a4d45591a27eb" + +[[files]] +file = "config/blockswap/known_states/spectrum/polar_bear_wall_head.json5" +hash = "3fdeea33789d2825db604304aac72b7173845c2ff8b7869d9fe6484a85fc7b7c" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_basal_marble.json5" +hash = "c4928b5f109c88b4bfa28da35f1d4dfcf62540d295080f9cd67ad2361a4816e4" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_basal_marble_slab.json5" +hash = "540fc8c796768240de090a89f9139eebea7cf825edc55c143854b14e2af0734b" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_basal_marble_stairs.json5" +hash = "3c43e4b785e159ad7c432e9f1b57ae767c6b6bc49b5053b400e6dfe21cc3d51b" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_basal_marble_wall.json5" +hash = "ffd87940b76e065039e306baa65cb71b0c8513383edf94ab7c211b67a328bbe9" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_basalt.json5" +hash = "4d52deebaad3e7fbf14e823bc03012afeb854266dcd0846e3548eb2d4abeb0df" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_basalt_button.json5" +hash = "c7ba75eb8fe06df5c2db062e58061de57ae401eba1919ab98f217ad40cb8d6f7" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_basalt_crest.json5" +hash = "61716dd8e07633fcdef3857a55cbb22bd022d539cfc007a8c15f65026741f8e7" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_basalt_pillar.json5" +hash = "aee7c2f7a60f74fa08566e0279881cd1178226d2e4ba811a572657b7013743ce" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_basalt_pressure_plate.json5" +hash = "5e80b7a6c937d372ac451bf9b4d9d50ae5fc7da57ac19bfc169baee0eca202ee" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_basalt_slab.json5" +hash = "4de393b9f23db948f9dd96ac0ce961c761b78bb5cf82b64055d3298b05aa5741" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_basalt_stairs.json5" +hash = "c653ef4de7fadc8b93b2a3e240c34a6c6b7960da8ff66ccdefbc537dc2954577" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_basalt_wall.json5" +hash = "af496886282a2e1ca45b58407046256d95953be606058d4b2bcaa3038972de3a" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_blackslag.json5" +hash = "64f69c8a2fce8fe3f71b375f6db15befdbe132c1f4eaaca58ba004559a54407b" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_blackslag_button.json5" +hash = "2fc30cc62af9a53187da54886ebeab557bfe3c58782677dcf4d77c08494a8581" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_blackslag_pillar.json5" +hash = "f8d49989c1fb2f6f15568068c5ebb97305c83da8c3c65ce4ef03c9e63ae6d8cc" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_blackslag_pressure_plate.json5" +hash = "d970175db5369d569bf15d0d90d64e81beb848c25a5cccaac99f5b49291d4535" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_blackslag_slab.json5" +hash = "67f207be239df40d0d0907b9d9436c5aec0019ad278d2b4b3de448ffd8fc40f9" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_blackslag_stairs.json5" +hash = "b506612b29e42a2a99f94d8dea1506058f38740c51c42ec34da794e3e2d07975" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_blackslag_wall.json5" +hash = "b7cf980ddb10e4eea9e2425c0e65a395357aec6ddde019ffb49215070b2cbf67" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_bone_ash.json5" +hash = "0297498b2eeb32d77b5ff179b21918cb35f49a709d590620b0e5dbd8f424db93" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_bone_ash_pillar.json5" +hash = "4999d2531a5e3d3b138108f22d485ce195d62b4c0a36c7256edf013b45663c0d" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_bone_ash_slab.json5" +hash = "af70a846c88f92af754b2f8d3c79db5ec7588896647b7dce2035658c02a820bf" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_bone_ash_stairs.json5" +hash = "83a34127ba386b2b47188f88e644d4911375446cf9bbc579d0dd82ab76e491ad" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_bone_ash_wall.json5" +hash = "5168b8fcb7e7e591e6b6cfd65d08b48ee2051ce28a9c914b38e426cb203fe9a9" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_calcite.json5" +hash = "2169bb676866e9ca4c9482b7fcbe36e3dd0ba0f19176a2adbd97424634daba3a" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_calcite_button.json5" +hash = "3d988f788918443a83d6d6ef1904dc352ebe2bdec3f5b885229c02efa7afe065" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_calcite_crest.json5" +hash = "22e68ad07acda8106597c19616ff510febf230fc959f4cd16fb74b76f2047a13" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_calcite_pillar.json5" +hash = "18e3d8b1b92310113fbc702718d407a91a4d66348f6f46d6c98317f74f871c11" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_calcite_pressure_plate.json5" +hash = "9d51b1de98a6ac9426b57cb6d883d9abfff6addd935c304324fb7ee86e9ffca7" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_calcite_slab.json5" +hash = "c4ae12ff6317527f32b7c0bbc1e1a9d333e55997d260c592163fb242bc6c0969" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_calcite_stairs.json5" +hash = "16ccb94e2a684d28df041ff17cb6d48a9d30a05b7a0b08269ffa0cf63b14a821" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_calcite_wall.json5" +hash = "bd202fb912f18d4de4fbba41582c9bca3f185d80586cb51367d547c4cff4c5ca" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_shale_clay.json5" +hash = "90f71e1b1b33b84bed7a67ee25e82eb5ee7574e7c5ba139581ef32a815caade5" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_shale_clay_slab.json5" +hash = "28602a07b12777458db3b89585b22bd95b3ad324f40e3d0c623cf2b85291a0d5" + +[[files]] +file = "config/blockswap/known_states/spectrum/polished_shale_clay_stairs.json5" +hash = "f93bee4f14422aaef13da93b9a8a6e262a5a3e3897225db2de4fac1990c7fbbd" + +[[files]] +file = "config/blockswap/known_states/spectrum/potion_workshop.json5" +hash = "ab1ec1b9784d6b29efa5dacb3861d7822eb158582bcecd257a5234c4d5900833" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_amaranth_bushel.json5" +hash = "e7d51443dacd07e068bdd8cce32d3a01da2d02ab3596507ab869d7ccf2318d47" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_apricotti.json5" +hash = "ac04afa1387a80829a0002b4a1d7a02126401ced4ff8e158039b5927f6427570" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_black_sapling.json5" +hash = "061860f4dd67b01d1cb223be17309d256ca43f9e6769c7e20f01f8480594b760" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_blood_orchid.json5" +hash = "91c486c9fd75bb8e47218e352f41bc31311ab2c3b0e638426fcf4ed441eb06d3" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_blue_sapling.json5" +hash = "17510ba5a154f95e8ad2a6feeb0aea59fa5a5ef385399bc2eb53287710459006" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_brown_sapling.json5" +hash = "5cf90e71ed9e216e77e7dcbbc04b67b02748b9f29558e0f44767b78e91cd4326" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_chestnut_noxshroom.json5" +hash = "761ea263280e221eda49f06b80d3136657935129355dfd84579cc0b5f72b2f28" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_cyan_sapling.json5" +hash = "64be896f68ad93411f649bb470f1d79f59e9fc496a00863f7f61326c6cb75438" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_ebony_noxshroom.json5" +hash = "860da787940fe3f661d9859f3adc8df3fa5ad6ff5dfb5eaec2a232d4718df4f6" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_gray_sapling.json5" +hash = "4fe78cd40636f7f6bc9c3db2db428ecea491daba940ff941931093ef4432cf0a" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_green_sapling.json5" +hash = "c32f1ff79a8ab13533b5b79cea2e090de4cd18da6c20ddad8d341c1de7efdc6e" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_humming_bell.json5" +hash = "677233d6c763bdccbb6d1ad0b3540353fe06a42b1e4472e4ae3888d311b77dab" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_ivory_noxshroom.json5" +hash = "7d86f907704c0371494f16d9a9d4bc2e568cbc660bf1f2a47c55583cfcf91b07" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_light_blue_sapling.json5" +hash = "9b96f7476f3f6295b1bbccfcd0678d133ecce24fb0f4eb7436ae7c44d0bf87d3" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_light_gray_sapling.json5" +hash = "cb57840adf5da2500540df8ecd5b318fba369c377a5ca3832d6056bc3eb9a047" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_lime_sapling.json5" +hash = "e484b5dc98a475da354ab32341f5bf2c2edd668e270b529130ec17a8a8ad5bdc" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_magenta_sapling.json5" +hash = "f7e14347723cbe6724d378245e24a6bb30f05a182fd3570baa9d71b9b283e3cb" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_orange_sapling.json5" +hash = "4a90701e301e7c4bbe493e33787abf4266858aa6c67ddf835068e65d1f17f314" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_pink_sapling.json5" +hash = "d8f3e42ffd4ae72f83dde94051abb52c20fced81f3d6bccca8d47821b0eb99b2" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_purple_sapling.json5" +hash = "a32594b847def31a3873645da0b582c9cc39dcd330f56c4219a4092f14345d18" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_red_sapling.json5" +hash = "6bac621496a1c58346868f679995a73dfd2b4cead2bd4766b3802349054ed85d" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_resonant_lily.json5" +hash = "46d52d658142382a6380849b8c558c345d253f0284402ffdc66936a6aab690d9" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_slate_noxshroom.json5" +hash = "902593d2d6bdccec8f490f881819742f47ef731f99a5aa41db7de431b585db6a" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_sweet_pea.json5" +hash = "ac837a61a6440dc14735b8bd66c1fead67efa9f219f2984ca665b6f3e8b5a3ed" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_varia_sprout.json5" +hash = "a92ac74e2ffa674e671054b05d37ba04cc703321b1456cdbb08301e33b1347d3" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_weeping_gala_sprig.json5" +hash = "8bf2fdd3a0c8f8acbfef83a5d2dbb8ea211f278b4fbbd35962adf8c6fd7a1a54" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_white_sapling.json5" +hash = "0c9a116ab51d0bff0e0a2048db7fd811022ecf1c29451ab3d7448ea039f92012" + +[[files]] +file = "config/blockswap/known_states/spectrum/potted_yellow_sapling.json5" +hash = "cb0623b828e9a56e0f14960207e96f45cd52980a990843522b3ce72f9d3d4714" + +[[files]] +file = "config/blockswap/known_states/spectrum/powder_chiseled_preservation_stone.json5" +hash = "7511f506dfbbe57011f58f1f90a66f64c910be30afb5a51be8f2b04548008b3e" + +[[files]] +file = "config/blockswap/known_states/spectrum/present.json5" +hash = "d0f204eba71655cf3a5d8033a1682807c3d54b0abe0506dab6e6e134e128f1cb" + +[[files]] +file = "config/blockswap/known_states/spectrum/preservation_block_detector.json5" +hash = "f4afc9557d9a3b4d2d104cfab9f7a7ed025be7cf72518f0c52db7a3bb84055a1" + +[[files]] +file = "config/blockswap/known_states/spectrum/preservation_bricks.json5" +hash = "4ccd21f92135a0722b7a8411aaa056a5b2ebaedb1dd3ff9dc8f2cadb88afb37f" + +[[files]] +file = "config/blockswap/known_states/spectrum/preservation_chest.json5" +hash = "a34d8ddf4ae82d6ee39fd53bce24692ede8b95a56a616d769ea927728e31fe46" + +[[files]] +file = "config/blockswap/known_states/spectrum/preservation_controller.json5" +hash = "625ec83fa0f134599d300b96bb072ae858486d97c3e6aa678857cc4c5ca71e87" + +[[files]] +file = "config/blockswap/known_states/spectrum/preservation_glass.json5" +hash = "25480c1be2a07d973591ddb97c06962374e39965caa216664f999695186d6de1" + +[[files]] +file = "config/blockswap/known_states/spectrum/preservation_roundel.json5" +hash = "843b6064354ab3fafe607ab96d09929147404dbb4140fc150923ba0699ca85fd" + +[[files]] +file = "config/blockswap/known_states/spectrum/preservation_slab.json5" +hash = "fadfcf4ce75bc81411ea3c3e9b1162b05dc7a4eb47b527b00dab3be1ac4fbb76" + +[[files]] +file = "config/blockswap/known_states/spectrum/preservation_stairs.json5" +hash = "7807a3a7506c9c6098ed901002b28c7ca3572580f4fb71129eb0d819f4d8e5eb" + +[[files]] +file = "config/blockswap/known_states/spectrum/preservation_stone.json5" +hash = "7b5034e7dc40cb11c15a5c3e7f3db511160575e610b8095af3cd8402051758a6" + +[[files]] +file = "config/blockswap/known_states/spectrum/preservation_turret_head.json5" +hash = "38796c600a04f2ae4dacc741b3a3d2820343a4c8684a7ed5874b6f37fe09f67c" + +[[files]] +file = "config/blockswap/known_states/spectrum/preservation_turret_wall_head.json5" +hash = "9fe828699126e4ce4b05eefd62b9fcc5e2e87fc8156aaffe9fce120ef16ba0bd" + +[[files]] +file = "config/blockswap/known_states/spectrum/preservation_wall.json5" +hash = "3c534f1d5fb853debb53aa69b17a488b0e43ae51ca7b7b843dc793e8e084f1d0" + +[[files]] +file = "config/blockswap/known_states/spectrum/primordial_fire.json5" +hash = "3a15a2ed8fdc9ec50dbccc1a22ff756ca352c46a6b5687d96c0526d8e3f0b876" + +[[files]] +file = "config/blockswap/known_states/spectrum/primordial_torch.json5" +hash = "6d25bd0ccec326eec79b41f63550e9ba6961df489ce5bce4dc7d59cf515c80eb" + +[[files]] +file = "config/blockswap/known_states/spectrum/primordial_wall_torch.json5" +hash = "961e001a53f4baf44d70df0b756d66e98fca7145b01882660178e4dcf3a3adb2" + +[[files]] +file = "config/blockswap/known_states/spectrum/prismarine_cluster.json5" +hash = "1d0f00edc343d515dd08c26e62689a8dcb705f7c28e59651c8a11f9e63e8e51b" + +[[files]] +file = "config/blockswap/known_states/spectrum/pristine_shooting_star.json5" +hash = "955f269a644bbf60d2732f47d1e9a6c3ef9c5122e01743fa4ae8b4dd0a228af7" + +[[files]] +file = "config/blockswap/known_states/spectrum/provider_node.json5" +hash = "786b954310fd3cc676eb104767d499fb0d437567deac16c87198961a665e2d03" + +[[files]] +file = "config/blockswap/known_states/spectrum/pufferfish_head.json5" +hash = "2961a46bcac0932b3e26aa4b710d13f9d9b128e4f9c6fb99026c928e9487071e" + +[[files]] +file = "config/blockswap/known_states/spectrum/pufferfish_idol.json5" +hash = "a2a9d0f309772e2a6914ac60476c6a0f526469ba746834e7d8942c9f4a3453ba" + +[[files]] +file = "config/blockswap/known_states/spectrum/pufferfish_wall_head.json5" +hash = "0662126400cb13662feeb4759f9d901027e24aa1f28106852606c12ed021ab8c" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_coal_block.json5" +hash = "4dcd69cb38aaf9e13a554a602cced35e937d40ea6fc106213a27c2084ef4b0e9" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_copper_block.json5" +hash = "76cbbec1867db93cdb33bdfcf8e9efde8aba47fe83e641ba67a4400264c17136" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_diamond_block.json5" +hash = "7e884b4f7c79844095c6cb105e241f11f8a3d8099d157c9614c2de7b95ee9fed" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_echo_block.json5" +hash = "130918f95e4b61424b0daff3ddc0417d7d2184f912fa211894fb9fee431fdca8" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_emerald_block.json5" +hash = "c35d59ff22d0ec44f5ea99d27a4daf56c475c2d8b76aa067ad3ca1f3dd3f5e88" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_glowstone_block.json5" +hash = "5cc2ca4823bf66bbc352371ade08ee299f047910ccbe4dd3bb4636bbafa0481e" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_gold_block.json5" +hash = "b72b9f0dfdea809535878d8c29c697c07282ca77595c9567f330fba92c9c5e5e" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_iron_block.json5" +hash = "a181aec997c522c25785bc0ca967eac578041c99e6c43198fbe8a913b0aa12af" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_lapis_block.json5" +hash = "0d46e6ad734dd5a9b99217c577772250caa6e19ce452d60e75ec558248ab2b12" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_netherite_scrap_block.json5" +hash = "c8f89554c74da5b134695e69fd4a46ae484daa626f59d8251c8d5b39f6cbcc08" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_prismarine_block.json5" +hash = "15acfb168486449bc04aaa42bedd94af3f402e80482ec8f1525774a859579f3a" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_quartz_block.json5" +hash = "b21ea6785b9ba55ba73f9f149205a31062ed59d9ee6ee5fb3be82cef008396f8" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_redstone_block.json5" +hash = "c839d8abb5fd1c77408384b897f427363e27c9bf1e75b418bc8c3d60050c9a81" + +[[files]] +file = "config/blockswap/known_states/spectrum/pure_zinc_block.json5" +hash = "7db35f7507e22bc945087d645d1942b2b655d4de75d209365973b7e94d26eda1" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_block.json5" +hash = "3bfa96b341fb79495ef0bbaa94ca6791de4bda123b6d3fb6ecfe988c48c432d0" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_button.json5" +hash = "2c8761aa0b38126689cbce9625c77eed92c4dea79daef57b7e4b364efb4bc385" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_chiseled_preservation_stone.json5" +hash = "c5314e78507110f7c6ecb128020bea9be85877bec3500af0a5f8913c9b7ce3f8" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_fence.json5" +hash = "24924dfdd7d0234553dd957bea5b6aee2e29e25cb725873315b86f185bc64605" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_fence_gate.json5" +hash = "b8e0d899c4b8967ff81d2f913092b58e97757d99d6e56d405530e31cf0ae243b" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_glowblock.json5" +hash = "0d90540246e45713199c528a0a6a361817d85b2147608a4bf289d8352e54ddd2" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_lamp.json5" +hash = "78f0dcc4ac9ff604ab254e545bf86d99a1c95bce236b59921529b104c9900dc2" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_leaves.json5" +hash = "9b7892cd8dc65153c4d4159b7f4faa521b9a681ed648a676aeda3cba7ebd945c" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_log.json5" +hash = "b2dc50805579688c33224a8006185f684a6be039339733556bdfa671f5633347" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_planks.json5" +hash = "0c14d133eb9b404f0b10d2daa7f458d3a19aa7f4a3dc429982e9cc9b63291aa0" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_pressure_plate.json5" +hash = "0cf231c5bad15c32b1473a30dfc537200085b2a4203e31dba2ac3011028b6754" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_sapling.json5" +hash = "d07a52164bfeb08d9dc4aaee931caf0fd88c70398d7a21593c36d0b039f90a38" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_slab.json5" +hash = "16c2eb2fe77db14afc3a1846b6c3619d3189e4202b44c76129cbc6dd7671cb3f" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_spore_blossom.json5" +hash = "ff3adf3e591dd1a63e91988f9818619e142fba3ba940fd4d7bd18a7291e33721" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_stairs.json5" +hash = "94fb1b6b566241624eba803cc66ef9a42fbacde2e1c4b5940313cf40d7555307" + +[[files]] +file = "config/blockswap/known_states/spectrum/purple_wood.json5" +hash = "c6a61205d4d05b8fcbc0eac69d1d4ac7ac37dd38a818f9d64a7233b1d89421e1" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite.json5" +hash = "4bd7acab59adb77e0201c01f2a0122b93ab562ec948d9b4da45e253bf722f369" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_panneling.json5" +hash = "30e217df9a85286f46c287ebad41511c07c85656371be6c98c6f3b85e07aed70" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_pile.json5" +hash = "e97c47e0dab3771f9b5d60a26337f7d0fc6cf6835fed03def6e12ce564addd80" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_plating.json5" +hash = "735d598642a7e2547a50e8903cc144059a85cd78d002a9337633134053bc3c0b" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_projector.json5" +hash = "6e374c35a02715bd5fbd9ef65802d756044125a4f7a35dc4cf778ca486ebc8f1" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_relief.json5" +hash = "0abd9062e01883227b783225ae945f4b71b1e3257b560c56d1bf1553d6319496" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_ripper.json5" +hash = "3c2097100a57809d2f8e238d2bd2eca21dc1374df526d5bff39e0b1a86d0891a" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_slab.json5" +hash = "16709126412688304a55b076e95ed4ac10f5f3c1a3d4a5fdea7f946d762f7718" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_stack.json5" +hash = "6992a5d3ca2ee0c309ece672415c7bb6d1cf9f96e6a0f8adcc27ac8c0c8ccb7c" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_stairs.json5" +hash = "6227d91790225c0d2f3c2c6e70de2d7a64c1c50f84cd0b8fdd22b715d0dbf451" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_tiles.json5" +hash = "849708888d237b0bb1f85a12452427d5b73d14473e62a877d984135c902e5f60" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_tiles_slab.json5" +hash = "c8ab56388d4be372f16f5a6ef7625b9c7f2157e90dbf7eb161ec06cd354366e0" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_tiles_stairs.json5" +hash = "2fb0791636aeaa466795ea20e05fd7cbb3b1cf44c42d8938e5ea11fad3571280" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_tiles_wall.json5" +hash = "d286a4056cb383809d253c863065152865e499f7780b3afe357185dd02dfabd0" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_tubing.json5" +hash = "d45f251eabc4bddf171f79813ffa223638cb441129c8185ee25ca48b6a6984d0" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_vent.json5" +hash = "30d9650f8f3476ee5b3e88531ef7d54edc6331fda2a421e6c940822c452803d8" + +[[files]] +file = "config/blockswap/known_states/spectrum/pyrite_wall.json5" +hash = "8b79252711f0d7705b666730047c4dbb8ac5d6ef66d3eece44b311e3a96e72b1" + +[[files]] +file = "config/blockswap/known_states/spectrum/quartz_cluster.json5" +hash = "aa8a26113fe16059640728efd0b31da88a3bfbb365f8553fe97a001862054dcf" + +[[files]] +file = "config/blockswap/known_states/spectrum/quitoxic_reeds.json5" +hash = "c713555ff0398ac2d66c0739d7968edc67f7ca043cbaadd18691d2e472353721" + +[[files]] +file = "config/blockswap/known_states/spectrum/rabbit_head.json5" +hash = "6520cbef657035dddbf8fb910bc9f61edae04c17b9fb7f89678ad4298c91d373" + +[[files]] +file = "config/blockswap/known_states/spectrum/rabbit_idol.json5" +hash = "e379b8a048020ec21c91cd1fd648bce754c00c38c4322f9beaba750f78987cc1" + +[[files]] +file = "config/blockswap/known_states/spectrum/rabbit_wall_head.json5" +hash = "cb773c5bb92d3b93b9ec6bfdfb4c20e8d67a6d8e7656f65b110ee6578db522ee" + +[[files]] +file = "config/blockswap/known_states/spectrum/radiant_glass.json5" +hash = "dfcd27d689757b1443cb2d75dd8bd9ea6921a110b47b9fd5f682d1963066a845" + +[[files]] +file = "config/blockswap/known_states/spectrum/radiant_glass_pane.json5" +hash = "16743764b91ec4f4f1998844395ed957cc2785d1a9618dfe5b2aac521402445e" + +[[files]] +file = "config/blockswap/known_states/spectrum/radiant_semi_permeable_glass.json5" +hash = "b19ac6300dfef000aa357bb16cdf831598d01916045cd4f6fb6934c23e9f50f0" + +[[files]] +file = "config/blockswap/known_states/spectrum/radiating_ender.json5" +hash = "8167596f2c9617285a2440cec2b3b65ddad7c7fc820f07ad1ff6d8974dc36196" + +[[files]] +file = "config/blockswap/known_states/spectrum/ravager_head.json5" +hash = "001bdcee2ccdbd45d9984cd1fae2fd4a6cf1de49cee64e0836f0ac2686f71bb6" + +[[files]] +file = "config/blockswap/known_states/spectrum/ravager_wall_head.json5" +hash = "bf8157e09d9804df26d2760c542b05838bab1074e4d238e17a110536fbecc055" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_block.json5" +hash = "c837fb74bc02e7b98bbbf0bcc02eb99a300df544caebe2bd53f34b7e7156bda3" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_button.json5" +hash = "1b7f566f4a0afc761d087b1988586ffd58ad8c2d3aa3531966d983f15ade2f81" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_chiseled_preservation_stone.json5" +hash = "ec21e1941af573eb88ae0bb622c3343c7e23b35008204c1cbdd9c6a988b9d3e4" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_fence.json5" +hash = "de3cf969350ed7eca7c4dbde741cb9a2ccde3b719f5c775c89a0e4868dbf8907" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_fence_gate.json5" +hash = "056e552bbf7087355873e66e4a00350c6a6120a61599eb8738988fa269d13c89" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_glowblock.json5" +hash = "dd560d02c7a2ff8bb7fc3d09afab1e44b76722b8c9221e8d378644c8fa940785" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_lamp.json5" +hash = "fdc7552b2db04177bb2ac9756c2bd9aa6b3dd868df32fb6c168614218843e13f" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_leaves.json5" +hash = "b7166337d3775e4f50c6c0757b2046c33e78dc8c573c1f6b80539cd9b74eccce" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_log.json5" +hash = "b17828e973703d3d919c440ee9cf5eaebbe78b13270d98a98d058e753ec8d1d7" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_planks.json5" +hash = "f5d40ee4dfd69dd1dd0fab7cdd0141e6ddd2b3cbac3230f7c0df54eb4be4fbb0" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_pressure_plate.json5" +hash = "5e0006a771b1bd8a80e3c38272c3c9a0e88a1771c657661b44af9b76f8fc16d1" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_sapling.json5" +hash = "8fed3dfa26b0e2c23e1d1cb89c620993e9dfaf12f4632c2df9cf1feff3bea556" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_slab.json5" +hash = "d6d169e8adaac84d3cc94a14a335199ae79013e6af1083e05a7cb014c4064fa7" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_spore_blossom.json5" +hash = "b874f7c9991bb054cc23e4773d425d8b858344f012dc0515ca5d364688abe059" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_stairs.json5" +hash = "c335654858fe93f1bca17cb1f1cae805d8ff6fa57ac87c478616949031db92af" + +[[files]] +file = "config/blockswap/known_states/spectrum/red_wood.json5" +hash = "83b75b728ecd863a6c648f153e02d328644409311568ed6b9b2344a991458027" + +[[files]] +file = "config/blockswap/known_states/spectrum/redstone_calculator.json5" +hash = "4528cc77c1b0732dc40206654fc30b8c85aca5f579593cb248c12a56662d6d3f" + +[[files]] +file = "config/blockswap/known_states/spectrum/redstone_cluster.json5" +hash = "5d9f6de206e9ed3c9840e7d2e1db2ed64893c09900e6aa014eb535f1ed490f56" + +[[files]] +file = "config/blockswap/known_states/spectrum/redstone_sand.json5" +hash = "f1c4fe0bef50219cc2a9488cde258fd59bc8f13d5b8efe45d6554ddd3aafa65d" + +[[files]] +file = "config/blockswap/known_states/spectrum/redstone_timer.json5" +hash = "d0924b276b9746eb85c7d354614e07f379e74cc7693dedc19f81901a99618f40" + +[[files]] +file = "config/blockswap/known_states/spectrum/redstone_transceiver.json5" +hash = "8c213a1b2ff1422038fac9357c7e2bcbaf611b577f9c55530e6d482a9ce85c9f" + +[[files]] +file = "config/blockswap/known_states/spectrum/resonant_lily.json5" +hash = "be42bb4e72c252393c9f3049c32e54066568fa340c272afc3d570fe0115b52b1" + +[[files]] +file = "config/blockswap/known_states/spectrum/restocking_chest.json5" +hash = "45d199c0a638818abc793913feb46a37007b5800e6bd7484e08354c505efd5da" + +[[files]] +file = "config/blockswap/known_states/spectrum/rock_crystal.json5" +hash = "1e9bef3365a116a4eb29e515c8cf8c43042c571a453a3b2bcb15ff11b0d7ecbc" + +[[files]] +file = "config/blockswap/known_states/spectrum/rotten_ground.json5" +hash = "01e1972381b6f807d1c918c1a03f3e80ff2269d1867c3fb26e46d4ad6896082c" + +[[files]] +file = "config/blockswap/known_states/spectrum/ruin.json5" +hash = "6a6282fbc41c7dc1bf555394d776a8758b4deb0aaa610f47e2fa0a4ef16f2611" + +[[files]] +file = "config/blockswap/known_states/spectrum/sacred_soil.json5" +hash = "1ba1800a4c7522a096db635baa563ba2bdbad2e81c01177ae552c3c66d042ea0" + +[[files]] +file = "config/blockswap/known_states/spectrum/sag_bubble.json5" +hash = "cefda9f2ab6890b5b5c08c702b01a4c7b669b77d838fe323d5f18e48c0a45ac1" + +[[files]] +file = "config/blockswap/known_states/spectrum/sag_leaf.json5" +hash = "1f9724fae3a4e08f38c358ccff753935d70a73698a45615fa31e70eab0f4dae0" + +[[files]] +file = "config/blockswap/known_states/spectrum/salmon_head.json5" +hash = "33bcb9a9fd68545bb19bcaf57b6e8e12724dbd98852762a3eb6370339cb0ec0f" + +[[files]] +file = "config/blockswap/known_states/spectrum/salmon_wall_head.json5" +hash = "88295fb818a54a1ce43a924b7aff99312fff01d38e5affa7508b83fe30eb5c29" + +[[files]] +file = "config/blockswap/known_states/spectrum/sawblade_grass.json5" +hash = "8ef082644945b603cbd710dda76f087d46b536b1db4c0143d4984885bccf947f" + +[[files]] +file = "config/blockswap/known_states/spectrum/sawblade_holly_bush.json5" +hash = "97231b89d1639c3764e44e3cf08fc58863ccda2d8f0b046f1eedd89e286caa12" + +[[files]] +file = "config/blockswap/known_states/spectrum/semi_permeable_glass.json5" +hash = "e80f25efa02a9a503743412bfc02f7b6c373c18aed523c20d92197bb538a7a7a" + +[[files]] +file = "config/blockswap/known_states/spectrum/sender_node.json5" +hash = "245f17f1caea18a3824b2e7f0862394bb9184a03fd24a782dd5ac7f226be89ae" + +[[files]] +file = "config/blockswap/known_states/spectrum/shale_clay.json5" +hash = "d786a0a43a32f10ee491e3a3265b75794f300595533eeb6c97805e5e5c80d2f8" + +[[files]] +file = "config/blockswap/known_states/spectrum/shale_clay_brick_slab.json5" +hash = "6812a1dc7064094f74159c20a26054e66d54a5182fc61822fc6b7727e40d3b9b" + +[[files]] +file = "config/blockswap/known_states/spectrum/shale_clay_brick_stairs.json5" +hash = "63f3379211dd880e2acc46d54e00bca80503f85cbee64c47802474c55cd66acc" + +[[files]] +file = "config/blockswap/known_states/spectrum/shale_clay_bricks.json5" +hash = "4d71bda85fb0016685dbb605342a53ce04d77259664f44f760de0a81799298a1" + +[[files]] +file = "config/blockswap/known_states/spectrum/shale_clay_tile_slab.json5" +hash = "6b184b3297232cbcdda5aba122888d9cb3a03fa97878c876218731095f756485" + +[[files]] +file = "config/blockswap/known_states/spectrum/shale_clay_tile_stairs.json5" +hash = "bbb51dfb1ad171c730f2fc23a85d9396d25d75b3bec298db8aec7799cfeaabf1" + +[[files]] +file = "config/blockswap/known_states/spectrum/shale_clay_tiles.json5" +hash = "35ef6535efc12f20477ac6e65343c372747d842b87bee9232530ef588138abf2" + +[[files]] +file = "config/blockswap/known_states/spectrum/sheep_head.json5" +hash = "efbdb1b5af191a3bda38dcfb6b9bca87242c3587674354f9efea002d7317d4a5" + +[[files]] +file = "config/blockswap/known_states/spectrum/sheep_idol.json5" +hash = "e771f5e6783b614a1c738adf00d87d0a9f60186f325bfa50351ca21b758d6798" + +[[files]] +file = "config/blockswap/known_states/spectrum/sheep_wall_head.json5" +hash = "0c0a959fd8b7ae9aaf44a83337b7459b7c12e03af65ae67a12412f0c10a86a1c" + +[[files]] +file = "config/blockswap/known_states/spectrum/shimmel.json5" +hash = "5b11cac4a0258ff182da906931821332222651de10004caf7d4888b20aa35ffe" + +[[files]] +file = "config/blockswap/known_states/spectrum/shimmering_preservation_bricks.json5" +hash = "3c2efb12b9fea9060248366e9d0db9818fe193d08252ab3742374be0f66a3fe6" + +[[files]] +file = "config/blockswap/known_states/spectrum/shimmerstone_block.json5" +hash = "86d74deefcfd601912b1f6737befefce3dc33e7b63f92bdd5dc585b4e83fc346" + +[[files]] +file = "config/blockswap/known_states/spectrum/shimmerstone_ore.json5" +hash = "77ed27e072f9b2894723b17890d711ce8b48bdda6c2303b7aeb46761913523be" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_black_head.json5" +hash = "df0bb67c70afa5c917b85ab9bb06be3ad7490e371b651af50f85cb8ec2debc29" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_black_wall_head.json5" +hash = "3f5f2346ccefe75a4ac3ee54cb8bed08b841e37645e1fdaaf7bb7e784083d51f" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_blue_head.json5" +hash = "8ca088170bb18e8b38981488167a1f08624561b17e7d6b8170cbe014a4833bcc" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_blue_wall_head.json5" +hash = "81d35352cebc6b7ed2ab6d80cc4a76e0d0773482a4ae6297921d025fa3a47df1" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_brown_head.json5" +hash = "a59329a95b67894b5d61b451c1e9a7ce25119aab9cb38e4325434b609eef2fff" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_brown_wall_head.json5" +hash = "098d512da38ac2e5f05687727f639d66a4092c0cfba5deaca1d55a2190ce31cf" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_cyan_head.json5" +hash = "8382f35dd3205a0f3becd6bd5cd7b4e30b0aefce718d446c17223bfbcffa80d7" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_cyan_wall_head.json5" +hash = "23fd4e66eb7ff5162946d80c1e4e005768350fc36c453155e5b9867c66dd2777" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_gray_head.json5" +hash = "8434607726f70b2769cbce1807b8798031b3aed3215bac7088393ecf44a38aff" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_gray_wall_head.json5" +hash = "1dde46fb18777c51211fde2268bc359c30ff5b5f2323c4d6c1d3beb2adad27e7" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_green_head.json5" +hash = "2505d6da7a345ac596f807a23f03a1df9c1f73417fe01c73f89cea8dab3dac2a" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_green_wall_head.json5" +hash = "5f38486fe7894441b753e6328493917b2c06adc30454fdb8937419b13f41b6db" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_head.json5" +hash = "3fff0f542bd63e2b43c503f3686cf7324b2699ded1c0b013edfd717aa319d9e8" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_idol.json5" +hash = "e26c69b6504a215ee436d39c499f666c807fcc92d51c46b4204f03f9196c37bd" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_light_blue_head.json5" +hash = "99a6991c132b95a17b4f91eef837cbcb7c31b67ae0ce30fa87e6854ce57f2ae4" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_light_blue_wall_head.json5" +hash = "0bc6bf34a8c312710e661af99f147c1c8582fec3e23668038794fae71df7efe0" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_light_gray_head.json5" +hash = "ab9201a4f980424d1e2a9d65961f2f6b0a491a1ef88d34e0fdbe3407ca1bbc47" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_light_gray_wall_head.json5" +hash = "62d78289a88d372d0d10fb52bde7e7d761e602fd2795bafa2dd29ca90af34733" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_lime_head.json5" +hash = "5ed80f39936761219d71696ff6a53f7f9e2e540bf81d5664d3fe7edcf420a94e" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_lime_wall_head.json5" +hash = "a258ef9fa166fc65d66349508eaa164e85637de3613afcdc1cac7524e68be79a" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_magenta_head.json5" +hash = "e561b3162c47581c77ff933b56c227edaf90e9d75fdbfd63084f5480c408efd2" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_magenta_wall_head.json5" +hash = "c45d65aef585e590eb84c39ef030ba331af06db12efb35464f6382a6cb64e21f" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_orange_head.json5" +hash = "eacff1db9cac976bec280fdcdd035aef9b82530e8ae5b52d9eab04b6c2331d4a" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_orange_wall_head.json5" +hash = "909b83d4696188ff2c47393c4873bfd1dd2bcb46074f716330673586b2b5dc5b" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_pink_head.json5" +hash = "5b7d45c514d1b893eea06fc16f1e8b69cb225a9aa4167379d51ade69c72da046" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_pink_wall_head.json5" +hash = "684ac6e92bc44b8766358793b66c191b52ea1eace625218a29c0df6f2aa24519" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_purple_head.json5" +hash = "06cd60800edcfe9ef91b1c39506df4541513b479c71bfa19b153f164ff30f22c" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_purple_wall_head.json5" +hash = "a2a0b0fd9832ea74f05d03ebbd6f2f0cb7645859fc8347a6e33d0d1e8c36d580" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_red_head.json5" +hash = "63a8b127e2d87539ee1df70a1367f6bce65688619b69588eeb265e819ad9bc5c" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_red_wall_head.json5" +hash = "93b770a234972c28c750d198c6c89541a2d4496ea2d085e187d3ce78197f9e92" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_wall_head.json5" +hash = "80a48ef4b40a7619163076c431e903f8ab6856aebb5166de202b96359f9f6c42" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_white_head.json5" +hash = "3858a0c31f1907983e641109892f5422c54392400dccda31ed2eefcc95b5627b" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_white_wall_head.json5" +hash = "469523f2284a39d03c3ebf095bf6f9b7a859db014692671ebb5fde6531ed99b7" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_yellow_head.json5" +hash = "484df6b91ea273e070f8704e9dd71f70f011cb5b6f13027df271e75bd898f9ab" + +[[files]] +file = "config/blockswap/known_states/spectrum/shulker_yellow_wall_head.json5" +hash = "0a91518884fa8c437a488b404fb51f1bcad7faac648a43e4c662a7c2ae686371" + +[[files]] +file = "config/blockswap/known_states/spectrum/silverfish_head.json5" +hash = "80a18763cd586c9566c830e2e157ff675ca0b92d30908db347a7a8517109c942" + +[[files]] +file = "config/blockswap/known_states/spectrum/silverfish_idol.json5" +hash = "f2068a1d90ad1496b08a3695513562172a498fc13aa69c9b5ace64791ab8cba0" + +[[files]] +file = "config/blockswap/known_states/spectrum/silverfish_wall_head.json5" +hash = "8d94cb68d22fb255dd91d95769c54fe2eba308e3e1c14e759ae79263ca4e05f8" + +[[files]] +file = "config/blockswap/known_states/spectrum/skeleton_horse_head.json5" +hash = "2d912d63acbe7118c7694c02d04181b6253a2f77579c3b6c53640a71ac6dc7d8" + +[[files]] +file = "config/blockswap/known_states/spectrum/skeleton_horse_wall_head.json5" +hash = "a65a8369aba161ac9d9c0ba2159e8666bb822f419987287e5bfdaad784958c3e" + +[[files]] +file = "config/blockswap/known_states/spectrum/skeleton_idol.json5" +hash = "c9ce4adf845da16901695536f281fa0dec309821e70c482b825841cffb3a5990" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxcap_block.json5" +hash = "b8663051ec5dcadc4a30e6e39ef53e28a459e75afd5a34a64c5be49dfd2f8f6d" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxcap_gills.json5" +hash = "357b082fb2eb065a95ed938d5e0fcaafd5d5af829ed40b96c9ed6eee0e12fcff" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxcap_hyphae.json5" +hash = "ec5a1cae0b6b9b74e0d5f5b58d4dcfd83f3861004d9d4a69bacd3d863c7818cf" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxcap_stem.json5" +hash = "16385355a3eb5d31000819c14a1f92757ad7224c3b43ada5697762ee6da1e15b" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxshroom.json5" +hash = "90658f6ad3a5f65822eb3c0d95ea4f599d2ccccbeb70449c3050d292dfa578bd" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_amphora.json5" +hash = "2af6e3de38fbc14be4e3453dcafa74cf8409628dd343429e3a12f187c81cfc47" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_beam.json5" +hash = "320c329a7481e71d6e709912a307c4e59c21161f3833295badb0471412c6332b" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_button.json5" +hash = "778dab639ad2610c8dbbd9dea1b08830f162902319a68087309da0523a3355a9" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_door.json5" +hash = "54e89976998782d583d195b9f91594fec033b5465190b0fdb0f156fa5ee5da47" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_fence.json5" +hash = "115ce6570f7d6c5fab55e1e9da5a3b01a10add41846ba0aa2a3653851686ab8e" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_fence_gate.json5" +hash = "8102f831348a0d2c571d6606d0f188901b24a9401394617f985f412ded96dd39" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_lamp.json5" +hash = "e0af0f1da5422d13371727d63934775e476e2b1fc5470786b982a7f094bf20e0" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_lantern.json5" +hash = "d5fcfbd2dc2a61d68a1ee490c2b464aaadca0e556c5e6206a6e353339d028a4e" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_light.json5" +hash = "9bb184889891d27cf2d94b91a596a05002dcc665c9709706c8ce3f2925f58f0e" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_planks.json5" +hash = "d0d48487068491c543fc993a900009bf7a8369f0772e2dc1f68665292ce4d08f" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_pressure_plate.json5" +hash = "87e3e8b68de15336cb1803d4f8e9ab0c68d0b80c1bec51f7712c17ffc1515a2a" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_slab.json5" +hash = "ab5f5ddb22d32f96f50fb2ba8e2fec6c5be41dd4f583b2c0a61b09c514d5b85a" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_stairs.json5" +hash = "c34839c1fcfbcee1c7d90b0511c101306298677a6e5ea1348866898701130d3e" + +[[files]] +file = "config/blockswap/known_states/spectrum/slate_noxwood_trapdoor.json5" +hash = "9c68c38864164b0bb9d2ed7a0ecb492412419975877368c86c96e1ad74b184e0" + +[[files]] +file = "config/blockswap/known_states/spectrum/slime_head.json5" +hash = "45e94be94594b227081c97e872af81523db06b8080821f140e91f98498925c14" + +[[files]] +file = "config/blockswap/known_states/spectrum/slime_idol.json5" +hash = "d20faa7e4108aa9f8be2f020636bf838e83739d62c08573b5c28f3f550ba95f5" + +[[files]] +file = "config/blockswap/known_states/spectrum/slime_wall_head.json5" +hash = "f5340ea95d1b649caa37207411ccecf1c0bbef31050b82cb02cab1b286cd6734" + +[[files]] +file = "config/blockswap/known_states/spectrum/slush.json5" +hash = "d7458ab8e9f594394fd765eed8a0e22fac1adb70178c4888a3287be0178f9ba4" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_azurite_bud.json5" +hash = "cce5eac5aaf7f9be335471bd026984b2a0d6a5defa172fc150b3b47331522975" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_bismuth_bud.json5" +hash = "b1570aeeb0b8a3797c519f6994203ab1b1f50702ac85da8a2df19dc07e21bc95" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_black_dragonjag.json5" +hash = "b5539980611f65f1df94a02fadda074ce8fce43ea073619402f8f46be8fa6a94" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_bloodstone_bud.json5" +hash = "27b7cd17f16b63af83a41c56794a1074e758d6494319ca992008a0931a3e299e" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_citrine_bud.json5" +hash = "e0204b9197b50ab16ce67e5504041c74cef9eed3572737887c500ec181736eef" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_coal_bud.json5" +hash = "1994e9b1c7f461bf9cc270c77077c80794e468e16d305e71e578becfe11f116c" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_copper_bud.json5" +hash = "75bce0f966cb7e730570536e965304f9b1af508ca8ce50bad31c8bd4081df8b4" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_diamond_bud.json5" +hash = "f536937b2a6bc4f5d05e3774ac59fdb34a7e28c562516400b7ee85dca2faf520" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_echo_bud.json5" +hash = "676bbf807003d4335380ed5dc6274178327f55f679df5877fd84d8c161b71c7b" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_emerald_bud.json5" +hash = "84b0d25a1ba4cc98800858d76225cc98704b65d3db8ac8ec346a1556f8463e9c" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_glowstone_bud.json5" +hash = "ec94ac0f935eebed6753854b8a9c2cedebac919b7c03f51604b1c02384174e10" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_gold_bud.json5" +hash = "c0589c7c893d79c1c872ab45276b6ebff834eee4ab745e90e846473959dc335d" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_iron_bud.json5" +hash = "0dc5fb45df17c64201d5c6fd1b5c97648eb28266c7dd19c918143a0d7262826f" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_lapis_bud.json5" +hash = "b9679f730a26497a1d92358587d44174f117728cc18f7a693b780b2e2857addc" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_malachite_bud.json5" +hash = "24c661ebd06771fb26a16274a691e734040df7913fb7a0486e1a6cb62bd029d7" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_moonstone_bud.json5" +hash = "dad7796a067d472df699980263ba0a0d52f7d3a50525e8370f05edf34e7f096a" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_netherite_scrap_bud.json5" +hash = "8280ffb2723840a8cbb1e35ca09806ac5ff83e55f011213cb6f9f55b78d0124b" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_onyx_bud.json5" +hash = "1ddfb27a6f167d9105e6bd66fabe1c8f4a330582f6a792567ccb1e2bd16a2846" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_pink_dragonjag.json5" +hash = "1f63d0fb8993578142f87c995f353b021df7a21ce2b60e2d764989a330e47d92" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_prismarine_bud.json5" +hash = "496da32774f1f7578222b0bb4b4bc20fec8e1585552513145f2a10fd9ba0d454" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_purple_dragonjag.json5" +hash = "bcdf6da5636cb0303015cb17c6f26872e5d266f01e770c4ad0f98c477c30f39f" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_quartz_bud.json5" +hash = "72ddf171192b0d8306d396e428fb65f23b7f42d8f0edc464af3fb0a59a3f413f" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_red_dragonjag.json5" +hash = "e638f243e7123adfaec064f692c608b1f10d7a5add503ca5f11c05171d11fa4e" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_redstone_bud.json5" +hash = "fa0f43c32e368b317855600e76c9f359e977fdb04ab4bf39a6b1582d48c06864" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_sag_bubble.json5" +hash = "1099f9ea29df7eec0297a35b78d34dbde460f871e5eedd96d232825da2f8614e" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_topaz_bud.json5" +hash = "1ace5153ca17a8b677b0ccbbc399fa66a9ea2fc4260be4768b259b4352f341cd" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_yellow_dragonjag.json5" +hash = "d9e04f6908ac1f8c18f7aa916d9234f4cf911aa7df773eaad588ac258b07bb9c" + +[[files]] +file = "config/blockswap/known_states/spectrum/small_zinc_bud.json5" +hash = "945f70fc3e999fedff949bbad78eba4c956390750ea0fffb3b52198f7d4c03d1" + +[[files]] +file = "config/blockswap/known_states/spectrum/smooth_basalt_slab.json5" +hash = "4ee9004e4c64fe24870d1c29822507e982096b150f15205cb5636a20ccf36ca5" + +[[files]] +file = "config/blockswap/known_states/spectrum/smooth_basalt_stairs.json5" +hash = "cd2de99491d1e7835115152231a6f681cb17244170f6972aba435550871afbc3" + +[[files]] +file = "config/blockswap/known_states/spectrum/smooth_basalt_wall.json5" +hash = "c141b92babf067db2f2ed5e7b3ac93ea34b6c578748d5b46ce747af444371458" + +[[files]] +file = "config/blockswap/known_states/spectrum/snapping_ivy.json5" +hash = "8c2067fe02e5a8dc6b19a3b86ab07200ecf39f8944cd8c8bc3c9e7250d02e97f" + +[[files]] +file = "config/blockswap/known_states/spectrum/sniffer_head.json5" +hash = "ea19c0e86018bbf3218453953ea2065220f71d30e24dd2d881d9c8b0d6017686" + +[[files]] +file = "config/blockswap/known_states/spectrum/sniffer_wall_head.json5" +hash = "e1ab9edf74305c5272de3a14982db99dc214eb99343ea41cd859b165917df0b0" + +[[files]] +file = "config/blockswap/known_states/spectrum/snow_golem_head.json5" +hash = "9c19a35e18700fabee39a83013754eb3aaf36f3365962b25723314bd7779c0a5" + +[[files]] +file = "config/blockswap/known_states/spectrum/snow_golem_idol.json5" +hash = "9199ce233d5a884dab4fdb3cc06ee2733a3dcc397fb22a57ce0ef3d5b5d6106c" + +[[files]] +file = "config/blockswap/known_states/spectrum/snow_golem_wall_head.json5" +hash = "a22cf7f7b1f80bf58a0b3ea4054b12f29432f50c0372fa8fbfcaf6d904e59355" + +[[files]] +file = "config/blockswap/known_states/spectrum/spider_head.json5" +hash = "bf926ff4e181546e542eee2b5a5f876acab84c138e76c408c28d5a0dba50a24a" + +[[files]] +file = "config/blockswap/known_states/spectrum/spider_idol.json5" +hash = "3386ef276dd67236c783e43557149957cbf2c8909254df7ab2ddeb950a1db317" + +[[files]] +file = "config/blockswap/known_states/spectrum/spider_wall_head.json5" +hash = "82b88b7a06512da4c170d5f24a19a25e18e88b5b6ce02cbf22aa6c18fbd52f4c" + +[[files]] +file = "config/blockswap/known_states/spectrum/spirit_instiller.json5" +hash = "30573d13d2b3bc73e795d1388bc4539b1ceaf3c1634ab96ab9ddc309cb4191bf" + +[[files]] +file = "config/blockswap/known_states/spectrum/spirit_sallow_heart.json5" +hash = "d5507657f439578ff3181dce9a2ef0a4b174e9e2dbd41307fd101209e776b07a" + +[[files]] +file = "config/blockswap/known_states/spectrum/spirit_sallow_leaves.json5" +hash = "2dd27c5e4c65fb8ac5b8649a43deb4e3331cf2536e82992f415acc8f04d238c0" + +[[files]] +file = "config/blockswap/known_states/spectrum/spirit_sallow_log.json5" +hash = "f8e1f76737358a090eb855fc27079669044418ce483f2a666f7d9d5b4a16461d" + +[[files]] +file = "config/blockswap/known_states/spectrum/spirit_sallow_roots.json5" +hash = "dd232185f41e5336ed76e2ac1a5caccce9baeb10bbe7fd273040e0538400a9b8" + +[[files]] +file = "config/blockswap/known_states/spectrum/squid_head.json5" +hash = "f25b5097d9f9440e76d78494cddedb676c00389f9acb384d944567676abf4a32" + +[[files]] +file = "config/blockswap/known_states/spectrum/squid_idol.json5" +hash = "2947014870396b8c4aa533b11014ff108edf2e9b8f716a42f6e377194bc5d6e8" + +[[files]] +file = "config/blockswap/known_states/spectrum/squid_wall_head.json5" +hash = "906a20ce0b8aff9930ec0498663224c71662907686ae5ff1732456cc448d2d5c" + +[[files]] +file = "config/blockswap/known_states/spectrum/stardust_block.json5" +hash = "d9fd29a9195b563f125e7760e758832461c010585dba09ab40ab16c7137946a4" + +[[files]] +file = "config/blockswap/known_states/spectrum/stone_shimmerstone_light.json5" +hash = "50cc364d34896fdc57f384b8db2f5ea1f3209ded3cbea7ae14f81a5f85d8af7b" + +[[files]] +file = "config/blockswap/known_states/spectrum/storage_node.json5" +hash = "3ffab180074ecf976b166d6d88ce99467a4fc14715ff18b05e12dbdc6a371967" + +[[files]] +file = "config/blockswap/known_states/spectrum/stratine_fragment_block.json5" +hash = "e6f299c03c4b5190310fcf9b770311080de91ec1177c9f870980c11eb6c59624" + +[[files]] +file = "config/blockswap/known_states/spectrum/stratine_ore.json5" +hash = "310d59f286c9c8d46545a21f730eb39752fe17fb5480227bdf6be051bce9213b" + +[[files]] +file = "config/blockswap/known_states/spectrum/stray_head.json5" +hash = "86b9697c74f5c02ec5e4871d7a6c920ef749e42f82ef69a3fd15da575376eb1b" + +[[files]] +file = "config/blockswap/known_states/spectrum/stray_idol.json5" +hash = "fbcb9181706acdf7521e3585471aa83829d4d545065ba9e16f0f431ff337e77f" + +[[files]] +file = "config/blockswap/known_states/spectrum/stray_wall_head.json5" +hash = "f07a7210c72edd72fd57d06c55319147369ac79be371bc46a3f6022ce9f6d952" + +[[files]] +file = "config/blockswap/known_states/spectrum/strider_head.json5" +hash = "6ce9eac1f3a8c99c4ed49a7364e508850b7a83149c9caed621460b3dd414aaad" + +[[files]] +file = "config/blockswap/known_states/spectrum/strider_idol.json5" +hash = "54f9951cbbb7699ef88307a074076a9e72fa9f53619e9e07fbc634b9f0ba84c1" + +[[files]] +file = "config/blockswap/known_states/spectrum/strider_wall_head.json5" +hash = "f7dd7967be61ad5c735cf0acf5b4aac00c558882d4f4451b33de0d087ca77368" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_black_log.json5" +hash = "dce450d044653cabe2dabcfab79d38b46c993b5a104cf4016a9603660695927c" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_black_wood.json5" +hash = "95beb9c90a910055dda1291476472c0c6227a951c0bcdbe5e49a5298b27f9bbd" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_blue_log.json5" +hash = "2c7b833c0197f7ea2c6a53ca61c6ed5a0e962d9f72942fe69639712fb613d9f1" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_blue_wood.json5" +hash = "4cea1f2625604f41766ae10ae5f548e03e9c3582a8a57a77bf8768cf9f54bd5d" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_brown_log.json5" +hash = "683b9279b0a556d7600699bca1a25b8d3d9003594df5bfb2ba41e6d15decc71d" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_brown_wood.json5" +hash = "3def28097f928665b9d510c2f89401b341e02be829c078912c9ccf5c97344c66" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_chestnut_noxcap_hyphae.json5" +hash = "518120ef27a9c457e854b164155786cbbeb6a766a2030aeef9e5ef424c387016" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_chestnut_noxcap_stem.json5" +hash = "5e273759a00189d41102a83675b206ace7e0aa7a923bee81dcc0577e9dc64671" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_cyan_log.json5" +hash = "0854f852fcf6d7e24f61641ef2cdc104a519bf807177c600ade536addece3497" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_cyan_wood.json5" +hash = "a89e0a35f947944795fe30ffcb16ccd924e69122bcc3778915b89d5c666f24b3" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_ebony_noxcap_hyphae.json5" +hash = "9feb7917d9530d1c1880acacadbb6261a2e918ad9f03929349702aa95e65f0fc" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_ebony_noxcap_stem.json5" +hash = "a4fcf37c8a89a45c3763cedaf63839bd2ca6c8c457330bc378f094e4dd2420df" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_gray_log.json5" +hash = "865913bde49a32db0b7e9b440a7e92266ea63836f5c5e5780bb4e2f7e4248a16" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_gray_wood.json5" +hash = "583f5822531ce42c594af24e8ee5269e3706f66b890a5ba0ac0ddb380df299a0" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_green_log.json5" +hash = "c22cc4873a880946850a51746001fc3cf47504de94f91310559533bc5c508e40" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_green_wood.json5" +hash = "ff2f81396b677bb260bd24156fc673d9d8c2209dcc749b87ff30a7c9231179e2" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_ivory_noxcap_hyphae.json5" +hash = "4b282b1fba9f4a322458e4659fcde3178e99eb2d24dd0f00ad94f2ba7539563f" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_ivory_noxcap_stem.json5" +hash = "6638ce4e2fe9868fc4eff22e8332fbc39aaa758a1ebb69f573dfd5cd610ca18a" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_light_blue_log.json5" +hash = "0002dfc367c6277d17d63081f325e38668450fd00ade2dd454e15fd96b5e69c8" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_light_blue_wood.json5" +hash = "7127a345f42cf9a882ec22d7ca7ed9996678ad80fcdad3e5afca6610e945ffea" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_light_gray_log.json5" +hash = "d65592af29c20f1c91e4c291c2ffdba14bb5f2630829f052857caf173ee5254f" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_light_gray_wood.json5" +hash = "0365968b7c925e0e8afa8ce3e7d8744895aeb57c04b5a550d133d45c74dd0a11" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_lime_log.json5" +hash = "941f8f8d65769860e663c49224d42f371855892a006798d248f995b8aedb8c04" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_lime_wood.json5" +hash = "be0baf85745f52c31aa5e154522762847f77b5519c4071054670535ada44ba89" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_magenta_log.json5" +hash = "ef1573ebff448337ab1ede22b0fc9526c10fe1bf6e7f6d7d21f535141fc67a82" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_magenta_wood.json5" +hash = "e3b17f5b1e2768c9ecddab87050baeead7096cffc45e96e9776851344c82b066" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_orange_log.json5" +hash = "f87734b609aab063fc8b1f8ab48dc853918ad064a7bd0f1a3be78a6291fe15c3" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_orange_wood.json5" +hash = "57ab7c71abeb72f127da2750123d06cb8c2e12bb65b94271fb6326e391ef8848" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_pink_log.json5" +hash = "b7adc08f97636cc111905b39ba13ec2fe0e2d6426d2dac54dc77e816a8dc3117" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_pink_wood.json5" +hash = "ca96d3b7fe279350a574f04edcbf011ec603af8211f9e06dc5a101edd13b54d5" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_purple_log.json5" +hash = "bfc1e16fc6755656c01cd95333191400cd81b0677ca26b37c60dcabf2d7e4e2b" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_purple_wood.json5" +hash = "1d8c2995b27a386df7d7a74a1cb780f3f9b05aa199c26eb1ebf83493e61d3572" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_red_log.json5" +hash = "6431f0a17d203d40f40a0900119c7ea4225934544a653ea6b515d17135033c21" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_red_wood.json5" +hash = "9bcc0cba0aa6b5aef77c65f6d7a2b6feabaf4daa0a81d34cbb4aa7859ca0f596" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_slate_noxcap_hyphae.json5" +hash = "df4947725079fb72893b7aecf78a727737a52557c7d7dae7e11f339f08f03856" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_slate_noxcap_stem.json5" +hash = "acc5cba8fdec2016ccea96bc12d2d50915008cef6f3a611be7a9b64f9b68cea0" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_weeping_gala_log.json5" +hash = "dc26900593050a1158d19a8ce5999d2198c0d88bff98ed2776c74956caabf111" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_weeping_gala_wood.json5" +hash = "fb3edeb99f37a62ee00e4a4adaaca0a66b21ae3c28e40c97198effb0be49a46a" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_white_log.json5" +hash = "a6402535c7b2f927fa079ce12971be3ab0e07c95604791b73d1a1ccd2468b79c" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_white_wood.json5" +hash = "9bfe24cfce5cf2d8fdfbb278377ba0190488c14b018eb61f170daceb231f1648" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_yellow_log.json5" +hash = "10e51dd5d0a2c57a47a846176e113831a87190315f3053c1d80bd371b5a8ec3b" + +[[files]] +file = "config/blockswap/known_states/spectrum/stripped_yellow_wood.json5" +hash = "12bc110744f03d30babac8f1c93e61aa0b3164090e1ba44fe1a43221b058a420" + +[[files]] +file = "config/blockswap/known_states/spectrum/stuck_storm_stone.json5" +hash = "6e1067533ad9ccc944974a79bfb51ab07fb8cd1d355e86c0c4eddc504a75e461" + +[[files]] +file = "config/blockswap/known_states/spectrum/sugar_stick.json5" +hash = "32d481030d66799814138adbc1275bab63442ec23f25bfac92a6be4c0d9f8da4" + +[[files]] +file = "config/blockswap/known_states/spectrum/sweet_pea.json5" +hash = "2c41f292cdbf93c163137a34d741532cb382b51e0bda378302fed4318292f608" + +[[files]] +file = "config/blockswap/known_states/spectrum/tadpole_head.json5" +hash = "ea789607892d867b46d0f7045b9e8fedda5677522f834ea4e8fef473662d44f0" + +[[files]] +file = "config/blockswap/known_states/spectrum/tadpole_wall_head.json5" +hash = "5d10bb8f06498931d5bf2c395dd71395bef495d3ea3702ded5b9c1aa4360614b" + +[[files]] +file = "config/blockswap/known_states/spectrum/tall_black_dragonjag.json5" +hash = "039aa029379235dfbda49057f15b270e6f37b31d13bfc8bdc13a676306d925f4" + +[[files]] +file = "config/blockswap/known_states/spectrum/tall_pink_dragonjag.json5" +hash = "3de47660be1d5488f4cc18d2abb5a78c2491362e38eb4f716f6c3384831d7ed0" + +[[files]] +file = "config/blockswap/known_states/spectrum/tall_purple_dragonjag.json5" +hash = "b220293a788e152244f9ce9f556cbf2a2787bd35decbb0a6bd679f167d815a17" + +[[files]] +file = "config/blockswap/known_states/spectrum/tall_red_dragonjag.json5" +hash = "8e2bb5debb39b7f3b9d22b81d04ff59ffa91bd6096269cf5967e55de14d1e902" + +[[files]] +file = "config/blockswap/known_states/spectrum/tall_yellow_dragonjag.json5" +hash = "8d33397ada816921d2d609c64601f39be863a4c4c3b1e04949ecb211a9f2eb0f" + +[[files]] +file = "config/blockswap/known_states/spectrum/threat_conflux.json5" +hash = "8a575909af5dd0671dc787846cf1128cfaa7135d738788d518b3b0f106f27ff4" + +[[files]] +file = "config/blockswap/known_states/spectrum/tilled_shale_clay.json5" +hash = "f376e822e6c77eb1ddfb4f766751648d9609cc98c8168f7fa608c0168b30512d" + +[[files]] +file = "config/blockswap/known_states/spectrum/tilled_slush.json5" +hash = "bb588d06fba574c16b21133872fd941c22405c5682079b0562f7e4179d194ecd" + +[[files]] +file = "config/blockswap/known_states/spectrum/tinted_preservation_glass.json5" +hash = "f6164a41fce4cc432b372a53585545f438b00bf3608cc466ffa72e3abdbab2be" + +[[files]] +file = "config/blockswap/known_states/spectrum/tinted_semi_permeable_glass.json5" +hash = "b5cd28bf5b4b698444b1f0debbe7aafb8149ce9fc48ce8193b1766467473592b" + +[[files]] +file = "config/blockswap/known_states/spectrum/titration_barrel.json5" +hash = "2f57cfee01cc2fd925f6301bea4450e9bbbb69efc5af09ae0cfe441e04d9f3a8" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_basalt_lamp.json5" +hash = "7c25c295699df983f08b83ad89d59efc83688c6cd9c2d883cc6f99a19dc131ef" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_block.json5" +hash = "75be8362858bedee8ba35d6ad7e68131672dc9d85e6307c558d69408860f4a25" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_calcite_lamp.json5" +hash = "ae6b1b424d2baf9a6cbfe9dde54d793b36e1424aa65f8f09e7915ab989d056f1" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_chime.json5" +hash = "52cabae1ceb24234de49e90e099a6b4327a35070b00f0064d55a5c48543aa570" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_chiseled_basalt.json5" +hash = "eca6a0fc054aef978442f6e46483f5b2cb4b6158cd5fb2546982af0762b60882" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_chiseled_calcite.json5" +hash = "ad5c14aff387982d6e939962c845d54e63b452b113cb9cd4be1b1931aad55e74" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_cluster.json5" +hash = "9ae9804765a1b60467642fd2185d5639f333ed05f97941ed2b75bfa029364a21" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_decostone.json5" +hash = "0d113ba780813bcf506549cd2fa8dd2d0b279e6e3a39cf268acbe7fb47d525f6" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_glass.json5" +hash = "8d6213c5e90d1246357dfa309ee32b806efcb96f9d14f412097f078a0000342b" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_glass_pane.json5" +hash = "766d6401804027d635b2a90e977fbbd1ec8c65ad37bef8142b28e9b91e0d4fde" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_ore.json5" +hash = "4edcb89326c26a7b7f56de21307c78b7f9cf75045562e02b8ca4cfeeb3a0e490" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_powder_block.json5" +hash = "e0581432283f42b072bda58fe4c98e96df5c5d058bc64a2ad47ee635a07767af" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_semi_permeable_glass.json5" +hash = "452027a9fbd62596370dd7c84829f24d5a96c910787c277853da4362c4a744e3" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_storage_block.json5" +hash = "6718b859ca8dbd2afbdf0c0cd7dc4a754d88aae36e2d166c4fcda2e8755bc80a" + +[[files]] +file = "config/blockswap/known_states/spectrum/topaz_sugar_stick.json5" +hash = "d4758a8cd33e4f00ac10d3d06948dc7781e7752240a137f632cca45ba98f95cb" + +[[files]] +file = "config/blockswap/known_states/spectrum/tropical_fish_head.json5" +hash = "8b0f7c78ba183468334f8cabef9a3640ef12cd184646bd75b3f1224e559b8aca" + +[[files]] +file = "config/blockswap/known_states/spectrum/tropical_fish_wall_head.json5" +hash = "0cdfdbabfe3d316f2ec52826d3a6a0c02ab8e1a7cce9254b5dec1c0157b8ee34" + +[[files]] +file = "config/blockswap/known_states/spectrum/turtle_head.json5" +hash = "3927b8f9495351ec2fe71c37661302db2d84ba769b2f50b0945e3365d03b08bd" + +[[files]] +file = "config/blockswap/known_states/spectrum/turtle_idol.json5" +hash = "fd32a65212e68e61c8d04f3561f54411194359db137764547e39b77cf1253427" + +[[files]] +file = "config/blockswap/known_states/spectrum/turtle_wall_head.json5" +hash = "6292e2461a2e4c2c994f3d4800fe0fab6bdd151ced6794e2cb86d78b6ad60bef" + +[[files]] +file = "config/blockswap/known_states/spectrum/universe_spyhole.json5" +hash = "edb5761de16a3c0c4003b7434085246ce029ee0079c248e2d82b6e69187fc1a8" + +[[files]] +file = "config/blockswap/known_states/spectrum/upgrade_efficiency.json5" +hash = "c6cd752531d4244fd7855bcdefc2193b4b58fa3e4cda471fa6942fa0dbd9f6f1" + +[[files]] +file = "config/blockswap/known_states/spectrum/upgrade_efficiency2.json5" +hash = "8f9648494b30a280e6cf70710c7540a7a985545e107efda34ade70137413677a" + +[[files]] +file = "config/blockswap/known_states/spectrum/upgrade_experience.json5" +hash = "fc28cbdb344ce64e8ed58453b13cc2baaba0b2082fd86ce10320b3e461ca65c8" + +[[files]] +file = "config/blockswap/known_states/spectrum/upgrade_experience2.json5" +hash = "6761a230af1a0bf46e84572d7616ee85d8a5ab4be293a4570ad755f577e89870" + +[[files]] +file = "config/blockswap/known_states/spectrum/upgrade_speed.json5" +hash = "79c85a3ed6c5ca37c9865df6382c531d395d37a4b9d6aea081c6c608f5575721" + +[[files]] +file = "config/blockswap/known_states/spectrum/upgrade_speed2.json5" +hash = "f1a851fd6a03f0cf48e12c769326e529aeb5d33a94b299e520f48b827edaeb04" + +[[files]] +file = "config/blockswap/known_states/spectrum/upgrade_speed3.json5" +hash = "b31116952c13ff384c5eb934b25ab1e148487183ac3d24e8a1500255a1e092f5" + +[[files]] +file = "config/blockswap/known_states/spectrum/upgrade_yield.json5" +hash = "676111f10f4470f0fe052479c01685be01f5474282fad3f70be264a052958dfc" + +[[files]] +file = "config/blockswap/known_states/spectrum/upgrade_yield2.json5" +hash = "57edccb06719e8b01e986ea7d5a19dd55092ae0df2cf3516e90338304b83241b" + +[[files]] +file = "config/blockswap/known_states/spectrum/varia_sprout.json5" +hash = "5d4626d79ead8ab5242d0d4e0d0fdae58338777ae1f670f66c22e154bc38f078" + +[[files]] +file = "config/blockswap/known_states/spectrum/vegetal_block.json5" +hash = "b05565682335b78ef6a39a4ebe4d7707bd0a836bb12ce47050bae53f1f6d4d0c" + +[[files]] +file = "config/blockswap/known_states/spectrum/vex_head.json5" +hash = "dd25fb693eaf98237c5374c0422dec4e023cf787020f034eb9aecdf65f2b1bb5" + +[[files]] +file = "config/blockswap/known_states/spectrum/vex_wall_head.json5" +hash = "50e8fb96acea84ae2a1c3ac4b02e48aa800fbacd35d2f0f0c82652f42b9975d2" + +[[files]] +file = "config/blockswap/known_states/spectrum/villager_head.json5" +hash = "91846ad4a89eb018e30a4d1ace29e1279c27769c3766df105a029d0dfa987d70" + +[[files]] +file = "config/blockswap/known_states/spectrum/villager_wall_head.json5" +hash = "fcf5ce35875360eccd7a02d80e779b998fc99ccb05bf62284a8f48d013e482d6" + +[[files]] +file = "config/blockswap/known_states/spectrum/vindicator_head.json5" +hash = "11ee4e9142c08b0969ab26dced5dca1e79afc16bf0388bb551ed1c04b0a19d51" + +[[files]] +file = "config/blockswap/known_states/spectrum/vindicator_wall_head.json5" +hash = "7547519f18afca24792183b755f5b3cab5b5b397a10a6d39203521a12a8c3abe" + +[[files]] +file = "config/blockswap/known_states/spectrum/wand_light.json5" +hash = "87467729e5937ff99eb7f70980b9d6585b827a5f243f63281dfddbbaa26d48ce" + +[[files]] +file = "config/blockswap/known_states/spectrum/wandering_trader_head.json5" +hash = "fcf5224b075f702872bc0189cb52c4c2388c3f30c7972702431113af07ff6a80" + +[[files]] +file = "config/blockswap/known_states/spectrum/wandering_trader_wall_head.json5" +hash = "27d80affbe9567ab59f3d4165cfc2378968d034e413bbc70f422eb7f86fdc016" + +[[files]] +file = "config/blockswap/known_states/spectrum/warden_head.json5" +hash = "b32440a96770c19b310a3e85a4130f3b99c3be07c39996c2d92831db792c55a1" + +[[files]] +file = "config/blockswap/known_states/spectrum/warden_wall_head.json5" +hash = "655f7c361f86e003f862082bfda6a8927492124f405e2526a987d5fdba3cc53f" + +[[files]] +file = "config/blockswap/known_states/spectrum/waxed_hummingstone.json5" +hash = "ecfb9f4bcacf8979d78ce92b62c9f6f35eecc64ea338c5292480f2da82ee0f18" + +[[files]] +file = "config/blockswap/known_states/spectrum/weather_detector.json5" +hash = "1bc3d3d7cd09f412c8ccd8af561a30408eec09d2512bde55306c46e4e8035a64" + +[[files]] +file = "config/blockswap/known_states/spectrum/weathered_polished_shale_clay.json5" +hash = "311c9d43a3f5b6f39bbf7b3af5c22cd243a7dec5785e697bb3cf50e2bd878a59" + +[[files]] +file = "config/blockswap/known_states/spectrum/weathered_polished_shale_clay_slab.json5" +hash = "da664bf84b1d690e917d5aabaab2669eaeb20cc99559aa00d3b72fe0972e4c78" + +[[files]] +file = "config/blockswap/known_states/spectrum/weathered_polished_shale_clay_stairs.json5" +hash = "77b8f0e74712f5aa2bfd9d32069d838c1ebd80002011d8be143a4bc310126c58" + +[[files]] +file = "config/blockswap/known_states/spectrum/weathered_shale_clay_brick_slab.json5" +hash = "46825da599157bacf4444afcda175f190cc1343cb066f093e01299d65228922a" + +[[files]] +file = "config/blockswap/known_states/spectrum/weathered_shale_clay_brick_stairs.json5" +hash = "50c214776550c1e26c2478f011439ae9a46e55597078949c94a3780286ee02f4" + +[[files]] +file = "config/blockswap/known_states/spectrum/weathered_shale_clay_bricks.json5" +hash = "36b63587846526e1f58b5384c8e1e7dee064d1003db2f96c622056cdd52159b3" + +[[files]] +file = "config/blockswap/known_states/spectrum/weathered_shale_clay_tile_slab.json5" +hash = "25afa3f91fd8d0389bf231f9bc0b28b88bd3a0c9150c882557fbd3fc8348a975" + +[[files]] +file = "config/blockswap/known_states/spectrum/weathered_shale_clay_tile_stairs.json5" +hash = "ed7c2e475144d61a5cec0ef1847a168ccdfa1bca79fffdce5c2927ad7e405c65" + +[[files]] +file = "config/blockswap/known_states/spectrum/weathered_shale_clay_tiles.json5" +hash = "141373d43ff3e9284cd80e16f9f01ba65a472b1040e2da92785007d02b2cae6f" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_amphora.json5" +hash = "ef2219c7549083fb572ae9987c0f7f96c8657803ef05fb17ce6b373fc2061ea0" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_barrel.json5" +hash = "846193094935d9300afe9a2e0aaf460eeae8bb4813bda0c5f034fccdb6be5579" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_button.json5" +hash = "e9a1abbdcc576a89ddcc1512896d9db6e78e1aa1edb0c0be1132b7b6efab39a9" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_door.json5" +hash = "6720753fb10c5993de03f7b80870dbf89afa0b49fbff7a4db0594a79bd5d6f57" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_fence.json5" +hash = "f1c8b6230514c39a69dda67c4842835d0788972180f55d61e62bc4864d18bcc0" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_fence_gate.json5" +hash = "f3140616589c886ed42fb1fbed36300ae75a7c7cfe25fc93ca776b54cf0047d5" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_fronds.json5" +hash = "6ed68521f3c654db50b0642963fae5022efae4ccff7179a9afddef0b20469491" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_fronds_plant.json5" +hash = "d948a3813ad960786ad9501bc6637a6d8b8cb3359d4b8fcbbf74d17feb6e75ee" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_lamp.json5" +hash = "8e999c9b96ab6ad6c10c2f6dc3e15d810de197abdb07acb94b00ab586ca5404c" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_lantern.json5" +hash = "5e51d29f45249aa19bfad42ed289241d440e0a5ddcd4f41dbe2070dc21696028" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_leaves.json5" +hash = "838d0cc17e08ceeecdffa0c90949210d726a584cca03efb3d2f76598d011ef2e" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_light.json5" +hash = "75bf6a602b003f00ff68967fba898180d76c1ce293e27f7050ddd9511f9a6d47" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_log.json5" +hash = "39cc00ce0bfaa92105ecc53bb94f6118bcca5d69945aec2d765e95f66e1c190c" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_pillar.json5" +hash = "66b4565bec58f129ce5a194ee24f2ef3a5163cfb1562d9bf6fab2c89146c01f3" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_planks.json5" +hash = "76cde4fe7367c3f7469331e19197db770b9f505f232a95975248490c4505d1ea" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_pressure_plate.json5" +hash = "4dd4d8127d62b1d48f5cf1d0f005b26e63a0f7457e79695de2fef8745dcf4f6d" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_slab.json5" +hash = "04d6b8542af0a9e6981120491fba245ed8fb55393a258b0dfa7f3b0da8eb315d" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_sprig.json5" +hash = "842df25b43b5ff81b18db2ea49a55e07f702dcbc0d0e6a63c46bc815603779e9" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_stairs.json5" +hash = "fe7a4ac145ad9955b2c674626a43a83863ac89d0b88c4e6cca4cb4f971e507f8" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_trapdoor.json5" +hash = "b5c49c8c01394488d231fffc416960e39dd8ec0206c0de2b50521b01fda3c168" + +[[files]] +file = "config/blockswap/known_states/spectrum/weeping_gala_wood.json5" +hash = "4d33739d4c8d89d54e15709ba1f36b9557ed20e1fa4b6e00177506108861deb7" + +[[files]] +file = "config/blockswap/known_states/spectrum/wet_lava_sponge.json5" +hash = "c2eaf34544f5d009cc01a27bfe49a7e46bf43e18f2242b5e461b6d376c6791a5" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_block.json5" +hash = "2a6a1b1d985a2c8ef6176613f2f608028b69fcb5dc966f8ff97dd8b2356329b4" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_button.json5" +hash = "52c44407165bf2dbb0ff087c127c83c02d1c839d3fe00e50169cacfb2ef62327" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_chiseled_preservation_stone.json5" +hash = "48d1ccdc487d75cd697c035c35694c0b0162e0f6c4babe54fce13146467400f7" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_fence.json5" +hash = "7c81caece0311d0973f09951327584faf9e2178e082b9e8511c9524a9022b305" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_fence_gate.json5" +hash = "0bb384d07d10b72b84b7cfb815429b5225e1ac75ba3f03cd3a31f9ba65120e65" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_glowblock.json5" +hash = "a2fb239fd0db64a3a3b6872f52a9e0bd03dec8e712aa893b24f20ec9da1af18d" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_lamp.json5" +hash = "791212afe08a35128484f47ff23ab76daaaad40961c84005d6d6c1321a333c64" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_leaves.json5" +hash = "b868f6c838513fd51b47d21d7fd078834d9dbeddf0f968a144d283a8b373b05e" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_log.json5" +hash = "0f94a3353c6777a00e7ff51f6864e148e981009f12d0f446a6e5e479d35e2cac" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_planks.json5" +hash = "3ee3aa9e0fc8940395ae3643e34b5e92837d61e1f8ca0f9e6cb2aff44ef710e5" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_pressure_plate.json5" +hash = "e00f7dd6c1d351e79b81b988d287fd19ebde2736bab1b743005ed41f2c25035c" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_sapling.json5" +hash = "23c7c21ebc6f19385a95669a6bb299a8da3f11570720d9fdfe6766e4896fcdab" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_slab.json5" +hash = "7c58a4259a429fd7f6e3b78afb1320425e3d98d95796a09b179a2b3cf5f27cb7" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_spirit_sallow_vines_body.json5" +hash = "0295fbbb56c25826cd3d0607fc36397f234838fd66bb323a4b6f33bce6815dc5" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_spirit_sallow_vines_head.json5" +hash = "dd3f4895ad8935ccc7b8289f9f807181a6878b29286259ca26ba668dd55f1e10" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_spore_blossom.json5" +hash = "ba1e5424743826702e959943f627d2727f8c1fe1a0265f627c4ea2053a7df210" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_stairs.json5" +hash = "bb78e6c6ca4ed0ca9d850a9591cfe6fbdc3125b2b11429646a11cef43397ac74" + +[[files]] +file = "config/blockswap/known_states/spectrum/white_wood.json5" +hash = "4287fd4c1a3a38008bf9667e4317131abfd333efdaf1e12d717a93c76c431590" + +[[files]] +file = "config/blockswap/known_states/spectrum/witch_head.json5" +hash = "f1be7db9ce3e13ede577a05141b3645b1d4e3cb0f231f2ce6988bcc66aaed745" + +[[files]] +file = "config/blockswap/known_states/spectrum/witch_idol.json5" +hash = "29da704a9f48bc2913f699eebf9d931171fd27c1836396c7b64b7ada0edf4aa9" + +[[files]] +file = "config/blockswap/known_states/spectrum/witch_wall_head.json5" +hash = "5d8e67a4ee505a25872454fdf4186ca25454d106daf1f07792a8a9b76b54b94b" + +[[files]] +file = "config/blockswap/known_states/spectrum/wither_head.json5" +hash = "f4cbfb39027887dc424db62a2c19a665b9ee36a91bd8f83c8c64219f0a0f7199" + +[[files]] +file = "config/blockswap/known_states/spectrum/wither_idol.json5" +hash = "cf4ad0c7a4c3760d53195f0dc6c6793cca7ba5eb0a88c74f9484bc487b3fae3b" + +[[files]] +file = "config/blockswap/known_states/spectrum/wither_skeleton_idol.json5" +hash = "5416994e75fc45981db88b53ac309d425c54eb2162a0a16f62669f3ee4493ea6" + +[[files]] +file = "config/blockswap/known_states/spectrum/wither_wall_head.json5" +hash = "01af9ba80f880ec21624d44a98dd49dbc28e989879303fc4be0028d55f4831fa" + +[[files]] +file = "config/blockswap/known_states/spectrum/wolf_head.json5" +hash = "aeca3b9e3bcca5619d76a940fbc7b711aece991e82d7423e76230648a116ef8b" + +[[files]] +file = "config/blockswap/known_states/spectrum/wolf_wall_head.json5" +hash = "f54c6baf065fa26bbe5712e587261fe54dda01a3d8cbaade834f7fe425628e9d" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_block.json5" +hash = "b177a10ce205cfedb5591e5cba5f7e1d06ebae083a14eee251d4b9af282a1a68" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_button.json5" +hash = "974a02558dfaf708c206c8be35f5faf8d92af865fecc7060f28b30b09fb4496c" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_chiseled_preservation_stone.json5" +hash = "3276dad93dadf4610d13022492879c2540ffe8b68da9b695ba9a06d609c48e1c" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_fence.json5" +hash = "440289a563db0ccb043f49e8cecf8b776adf6361b82ece22d8c12e339da6f5ae" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_fence_gate.json5" +hash = "bfac7defa3b4aa5a5ca399aeaf2bed03c389eb465335b189cac8f566a709253b" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_glowblock.json5" +hash = "c0d92c567c83ceae86f024a4ed11fcaf126b1a6d111d77e4587e7e13f1d52562" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_lamp.json5" +hash = "2714699da026a1adc527562728bdc739dbb33670cee0b7f31e9a9d4f3b87569d" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_leaves.json5" +hash = "5b4542d437fdc8c56aefa14da241c88af43a9ddb419c6b5d91130322bf631654" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_log.json5" +hash = "88a7a985cf41768f302c64b613f094d8fc73fc7dbe754f4fff92d0176cb9bb51" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_planks.json5" +hash = "f9b101143db08b8d6d476e1123e10f8aa4da3ca698d3c017ff6adf1237f4eb4d" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_pressure_plate.json5" +hash = "a20af5568c6b911298322083be99435221c474e7f0b8ae92c0af3ca9a58dcd5b" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_sapling.json5" +hash = "dea3a2d7b1133b794dd0f1fbc63fe1664d5a74c49b2c56c7b1d938e34ee4a9fc" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_slab.json5" +hash = "0af40a0dab4ecb55fa5e79b4f3749277516a189f82bc805e278a4ef1cf76ee4a" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_spirit_sallow_vines_body.json5" +hash = "16c9a139eef321bed3392b6792ab9c3ec94832052412eecaf6532b49452dc504" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_spirit_sallow_vines_head.json5" +hash = "5b252278b6c7682820e9626d8dcebeaea43038e423f9431fbfc737df9a0d685a" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_spore_blossom.json5" +hash = "20ebc6db51a202f72c2d7c5d2432e80c66d9a100bc67c17ab3b48be73e9e0c02" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_stairs.json5" +hash = "3f16d8b8f44197986e8a196e297c0446fdad0f0362e76c97a21274da81091e69" + +[[files]] +file = "config/blockswap/known_states/spectrum/yellow_wood.json5" +hash = "2f8874274978db439bef683855005a22555df3fbc11bc1fdcb23247dd1586d07" + +[[files]] +file = "config/blockswap/known_states/spectrum/zinc_cluster.json5" +hash = "c36679b1ab5a63b6c35d0720b5e592d58318450896897acbf7256623d110ad3d" + +[[files]] +file = "config/blockswap/known_states/spectrum/zoglin_head.json5" +hash = "dccb9252cc4dcb5b5767d7ef8358889b290f53302cfd749e60bc554e48617f08" + +[[files]] +file = "config/blockswap/known_states/spectrum/zoglin_wall_head.json5" +hash = "1c1c16ea1ed6fe2ddc47ed4912e5c58e97bda37646b57964678baaf66e1a9011" + +[[files]] +file = "config/blockswap/known_states/spectrum/zombie_horse_head.json5" +hash = "1b192901968edab501fcba6a46a99118bb22eb157ad3bee5676c528b76853734" + +[[files]] +file = "config/blockswap/known_states/spectrum/zombie_horse_wall_head.json5" +hash = "20b671d3f47dac19554c5f13d25dc40afb824d9f2c1e8a37b61045de632d7251" + +[[files]] +file = "config/blockswap/known_states/spectrum/zombie_idol.json5" +hash = "582784844c34e327f035dce30db2839523f7a8bf57107b7777a93a0734b6f13f" + +[[files]] +file = "config/blockswap/known_states/spectrum/zombie_villager_head.json5" +hash = "472c0f97022dbbc000703bdcec77b283bce836715d17035c0f2d77067727e7e3" + +[[files]] +file = "config/blockswap/known_states/spectrum/zombie_villager_wall_head.json5" +hash = "b248b0c54745511cae8e1c1b5e7328a0487226a4c3afd0a651b4d9f67a2331eb" + +[[files]] +file = "config/blockswap/known_states/spectrum/zombified_piglin_head.json5" +hash = "7fc84b6e50fd468cb8c65cf11e1ef63660c085ef53e36b202cdd8a55c2bd48a8" + +[[files]] +file = "config/blockswap/known_states/spectrum/zombified_piglin_wall_head.json5" +hash = "60b6b67366873178f9659caef187f5ecbe1ae1d1d0683d347d239df2ec6da96e" + +[[files]] +file = "config/blockswap/known_states/tetra/arcane_fire.json5" +hash = "52c8bbc8697c2b54c59d4dc9c6c5fc7c6993f82af05216572f99cacd05f05f48" + +[[files]] +file = "config/blockswap/known_states/tetra/basic_workbench.json5" +hash = "c8ecd3bf2063e795c9b4767d11ed774e9f8a401cafb941e0410ec52ae409555a" + +[[files]] +file = "config/blockswap/known_states/tetra/block_geode.json5" +hash = "776b7bfb4f8bcfb5ed3aeed3bbc62d4e2873549ab1e99a8aea4085da5d8e08ef" + +[[files]] +file = "config/blockswap/known_states/tetra/chthonic_extractor.json5" +hash = "3b80960e643310808f3c24d641fd6524eba3e62d91542c35e4a63710920c0963" + +[[files]] +file = "config/blockswap/known_states/tetra/core_extractor.json5" +hash = "2c850f312614c7ed0aea2c0c99fb991bcfaaeb64860a525ae19a0cbf5a8ece48" + +[[files]] +file = "config/blockswap/known_states/tetra/depleted_bedrock.json5" +hash = "50ad6495dc491753ab3d29a68ec264bb0a47031c6dd1026646fac6d795ce2dd1" + +[[files]] +file = "config/blockswap/known_states/tetra/earthpiercer_0_0.json5" +hash = "49735ccfcb94e40459be0e603461a0ebad9152b8bed7e6e015258e131f8d6d9e" + +[[files]] +file = "config/blockswap/known_states/tetra/earthpiercer_0_1.json5" +hash = "b5731d6d0ea61380bf0a8ec0190a3c68f2cfb8ce764744f2aee8885f3a57599f" + +[[files]] +file = "config/blockswap/known_states/tetra/earthpiercer_1_0.json5" +hash = "4603b7d3998baf4f219cae75e011db1323ab570cbe119b3f9d02289440e03c26" + +[[files]] +file = "config/blockswap/known_states/tetra/earthpiercer_1_1.json5" +hash = "201e0e39001f7f6d21ddc770fa9135f88cd045acd6dc31fda332d9311eb2a951" + +[[files]] +file = "config/blockswap/known_states/tetra/earthpiercer_ruined_0_0.json5" +hash = "e214f46aae9e3e9ae0406a8a1ae623d948686a6cb0ad4a646f2e750b72427b48" + +[[files]] +file = "config/blockswap/known_states/tetra/earthpiercer_ruined_0_1.json5" +hash = "b608f02b231e5368a6533b027ba29e14027f50a3aadda446271e0ddabf0631f0" + +[[files]] +file = "config/blockswap/known_states/tetra/earthpiercer_ruined_1_0.json5" +hash = "474fd444e2a42a2c40b904ac87c3b8f68f7f7e706873d5e947df954fb5e75004" + +[[files]] +file = "config/blockswap/known_states/tetra/earthpiercer_ruined_1_1.json5" +hash = "41f8ad56e3f30a614999a275b106e034a6a4c0de95a4b9830becd2a5c0b84466" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_0_0.json5" +hash = "661a131de1189fb13a9a219b5ab345d616270e1a58a65bdacad8114aade3dcbe" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_0_1.json5" +hash = "13794aeaa8a83bcb341a1cf601b5e91179aa4cdfb751e53002e25759b4717729" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_0_2.json5" +hash = "e024e774daa0aa4019cbf53059084367fbd96ce896fc5f04cf3c0c15cf963a06" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_1_0.json5" +hash = "98ce30eab6f2397ad9875c2663f3049047ac7c84e5c7cd1896e08c201a8f89c4" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_1_1.json5" +hash = "d7ee5b0938fb0cb2cd80dba76acb086245d1b2385dc45512dd5525c1862ba598" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_1_2.json5" +hash = "0991f527f3fd3e81968d8aee7755e6a8c899e4353172f7bb7d3da4b39c87e30b" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_2_0.json5" +hash = "18fc1b04544c77bb93c4b6ce36cc8559b32293ed7195922816c190c38eda7d9e" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_2_1.json5" +hash = "066b49ed055ad16b056aeff4126b3cdf7e5f6d3918b5cdec0ebd8faa86f47321" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_2_2.json5" +hash = "2ad42a01bca40e1ad1e52771b126f1f9d6b089f2a944a16bb165fc00ef465854" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_pipe.json5" +hash = "6316cee726a487d0c62fc8fa5aa1abd375fdc640b2a6054e863bcc9b8524ab2c" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_piston.json5" +hash = "9dc2f0fcd478214f5f56cc88634b0198d8049a42b88f45bbc3799e3e519c57ec" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_ruined_0_0.json5" +hash = "67b37340520c588b73ebf1a2c73cc2983acf24e3e3fc6071f0b0814386d4ff82" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_ruined_0_1.json5" +hash = "892063e4f06d10e6d96bbff0f3dc27c519f295b5db541f53b09b40791db6f9a4" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_ruined_0_2.json5" +hash = "9e38cd2e26af71af0a09e65c59114e5f75f690f451f4fa62655034debedcb0b2" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_ruined_1_0.json5" +hash = "91c281836011d8e22713718eb73406ec55f7628a8974d3e3c3221430182fd683" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_ruined_1_1.json5" +hash = "b62791f4acf155ea69e98cb1ee5276f9f6b323280010dcf255bfcb7ac59d1d15" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_ruined_1_2.json5" +hash = "cdeaca5a2de029867792ae1053d7dd9d31badc51854d14a1b7b5af592ed3eb27" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_ruined_2_0.json5" +hash = "85b2928b466964fdf33d74c517abf11ab886032a7b3db7ebceffb33acb6f1bcc" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_ruined_2_1.json5" +hash = "ac442c7fbfbf64ef85c1dc15e40c440e53283acee847b26696bd7b37a409f897" + +[[files]] +file = "config/blockswap/known_states/tetra/extractor_ruined_2_2.json5" +hash = "60a6c3e58f7e8a8106b2a76a60fb339d57a5c9cf09829f72abc668c0e8021f74" + +[[files]] +file = "config/blockswap/known_states/tetra/forged_container.json5" +hash = "ef3d173dff2fc0cd0d0f43439e8a23841b57bf5f372cbcf419d4b92489b02e19" + +[[files]] +file = "config/blockswap/known_states/tetra/forged_crate.json5" +hash = "f845b156557dd3fe762a4d91c72a10bd452f5d0ce3b7fece3afed4f7ab2efaed" + +[[files]] +file = "config/blockswap/known_states/tetra/forged_pillar.json5" +hash = "614f1299a8abc418d864a6383957d5e0b6a20efd125cfd4ac7853d68ea809b70" + +[[files]] +file = "config/blockswap/known_states/tetra/forged_platform.json5" +hash = "7d1ccc66b2e4a61020f643366bdbcf5c2826b27a8e806d9c5c44c674d14a36ef" + +[[files]] +file = "config/blockswap/known_states/tetra/forged_platform_slab.json5" +hash = "f24cd3341bb4a580e70ae4fe76a26c9aea59e095e467e40e5b6ade61a861d79c" + +[[files]] +file = "config/blockswap/known_states/tetra/forged_vent.json5" +hash = "010f55d015d6dcb043a0a02e775fda043c7dd76ae2b705515c4acb6d86e95e98" + +[[files]] +file = "config/blockswap/known_states/tetra/forged_wall.json5" +hash = "1c65d90f204f67df9c3511bddea5e56228b1941f56b8631ffbd19bf9481f517e" + +[[files]] +file = "config/blockswap/known_states/tetra/forged_workbench.json5" +hash = "8fad54392011a3b0446306d4c34d89131da5e718b8549fc3d838bd1a7c71d819" + +[[files]] +file = "config/blockswap/known_states/tetra/fractured_bedrock.json5" +hash = "dd574e254562e12bf58a6c98646c2ce29f9bdc6bd41f729af87b430cef352fbb" + +[[files]] +file = "config/blockswap/known_states/tetra/hammer_base.json5" +hash = "c0d3bf9c0e127aa6ab548164a523db98c963068a95534e611fd6798f77276070" + +[[files]] +file = "config/blockswap/known_states/tetra/hammer_head.json5" +hash = "dd2346580206659bd2dcfa50a2d68308d0551bdbd681363149ae0b199796c9ca" + +[[files]] +file = "config/blockswap/known_states/tetra/holosphere.json5" +hash = "a868bcde034aca9190aef3eadb800d747d2148cd69d37dace728c7cbde56e046" + +[[files]] +file = "config/blockswap/known_states/tetra/rack.json5" +hash = "a283833fdfee79b82b6e07120433b68a4d6ea80cdc75478689d20d3b4954fa26" + +[[files]] +file = "config/blockswap/known_states/tetra/scroll_open.json5" +hash = "946f1822592c274424262518df24b8d3ca8fc8c14316ed4d75c39dfcf02e17e2" + +[[files]] +file = "config/blockswap/known_states/tetra/scroll_rolled.json5" +hash = "1f1880399a6c2bf0639ff629603a3c4090c35eb29d3bc69e9b0534b2116df291" + +[[files]] +file = "config/blockswap/known_states/tetra/scroll_wall.json5" +hash = "00877cba7e1b6a15b596a830b6d4d2404e3eca7ffa4c1b6216fbaa941b3e9e9f" + +[[files]] +file = "config/blockswap/known_states/tetra/seeping_bedrock.json5" +hash = "97d0c045a490f4ea7304d3739ebcd7c4886dbefed7f50a9f130becec133ee8b9" + +[[files]] +file = "config/blockswap/known_states/tetra/stonecutter_0_0.json5" +hash = "a4a25d123d93cf3cb1c522a6f46db97ee952795908bd05abab4c7a9b06a8e3a5" + +[[files]] +file = "config/blockswap/known_states/tetra/stonecutter_0_1.json5" +hash = "bec0840ca0b48d8294ce5ce516f61d9491d2355277664690e189537fd236bfb9" + +[[files]] +file = "config/blockswap/known_states/tetra/stonecutter_1_0.json5" +hash = "9b7949e0dbfafacee2e0a41bca8fba74432c4d276563e1921a5bbea44b0f4b42" + +[[files]] +file = "config/blockswap/known_states/tetra/stonecutter_1_1.json5" +hash = "9bcf97377f9e45a9c0273142b27764c4810a111581067bf4168562b5e5c32fde" + +[[files]] +file = "config/blockswap/known_states/tetra/stonecutter_2_0.json5" +hash = "3b9662493b8b14ffc097e9749e24fe8a1b7c81b0712ed8f26b40565ad74b6dec" + +[[files]] +file = "config/blockswap/known_states/tetra/stonecutter_2_1.json5" +hash = "6e13b55b54139238f24c2c24e24fd8a3dac4c7319e4a43789bbd47485811e0d6" + +[[files]] +file = "config/blockswap/known_states/tetra/stonecutter_ruined_0_0.json5" +hash = "e66a3d79d82dd63a643deb06a16a3e84905106b34a909f01baf02db81b90ccd6" + +[[files]] +file = "config/blockswap/known_states/tetra/stonecutter_ruined_0_1.json5" +hash = "dd06041a2d33b3b612d367d11cd49850995792997ad5dbd94a3eaa835ac4f5fd" + +[[files]] +file = "config/blockswap/known_states/tetra/stonecutter_ruined_1_0.json5" +hash = "fc68be89e98ea77ca48fb430afce1df353c468f0c40d7fce2258906630d06360" + +[[files]] +file = "config/blockswap/known_states/tetra/stonecutter_ruined_1_1.json5" +hash = "1c259c94b9adbee9f965c87e45ceeebcfda7cf63ed2a3efff56eb933d23da20d" + +[[files]] +file = "config/blockswap/known_states/tetra/stonecutter_ruined_2_0.json5" +hash = "7cff953ed922e4f7b845ca0a444f75d04873792f369ea6a179455c91d7349805" + +[[files]] +file = "config/blockswap/known_states/tetra/stonecutter_ruined_2_1.json5" +hash = "94fda6538c4a7e339270752f609ca690ba4b413399a50808f936579f9b072acc" + +[[files]] +file = "config/blockswap/known_states/tetra/transfer_unit.json5" +hash = "48cb28666f0bc5b5a4bd3522f2f24513b9127dd0a70c603ecb0607b0aa6910b7" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.crafting_terminal.json5" +hash = "270f8edcfbe48eddb4263c45368e6d6a235c76a5a4c7f1d122bf2eba2dd7ef56" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.inventory_cable.json5" +hash = "aa147973af0fa3d88823ca7925a57a61448afd10d4fb33578723edc06633c899" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.inventory_cable_connector.json5" +hash = "485a6676d9f9529becb30e63694f9f11b57834456760c3d18c0f268ed668e59e" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.inventory_cable_connector_filtered.json5" +hash = "a7ad419344d45f70987918c8e9c04d40de9d84c25f8f84f565b189ef57377e41" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.inventory_cable_connector_framed.json5" +hash = "57fbc50204dba79204c0509665cc009441eed407b74272edae31543ce9a83943" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.inventory_cable_framed.json5" +hash = "677335545f429a16e033af760d986432314449bbd24e7a6842e24c80837d969e" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.inventory_connector.json5" +hash = "373f37483b48e7ec7f196b489667e97ee267fbea7eb1ad0fca6a9143447099e9" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.inventory_hopper_basic.json5" +hash = "79e6cf8b877beec84d49899aa8ac53081bf7a389c1f5d0eba264b8eb9341c91b" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.inventory_proxy.json5" +hash = "8e7ae2809422bc039d3ac8baba931a86b3e1bc6cd6d9d90d444751d5433b6968" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.level_emitter.json5" +hash = "e747f54b71efed82f4db96f60ab68f22a0dd74cb686b0faa6653f9169b18a0d6" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.open_crate.json5" +hash = "8d5b5b728527f57eb18b7fb27afb3f21d801ccefe66f91fc7981e55ee7516216" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.painted_trim.json5" +hash = "a84c8994737d2a72f38e68ba884cd3f63a8e8b135d4378af7f711b09127d6721" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.storage_terminal.json5" +hash = "a4b65e494a6dd5918c5766bcc0b757486b637bfb3dced738bc8920ca2a76562a" + +[[files]] +file = "config/blockswap/known_states/toms_storage/ts.trim.json5" +hash = "41e37f75ad397a75e38fff9ea019d9922013c9d2c0f830f57748dddba2d29c7d" + +[[files]] +file = "config/blockswap/known_states/trackwork/horn.json5" +hash = "c8a300bbfa76422d8159870a8006fd33fe2356b06264a43a09e865b06e4920d6" + +[[files]] +file = "config/blockswap/known_states/trackwork/large_phys_track.json5" +hash = "b2d46fbb52130d2b9efb7c558efa8ec12dd8ba970d9dea64e2a37e0734cce5b5" + +[[files]] +file = "config/blockswap/known_states/trackwork/large_simple_wheel.json5" +hash = "df58a77dee6bc3d12ab54a1a93f443d6bec7bf06df3e2c29c378110337ae2576" + +[[files]] +file = "config/blockswap/known_states/trackwork/large_simple_wheel_part.json5" +hash = "55a604d2a24d998989bb760eb8162b69590f4b0876990bda5318a14822c394b3" + +[[files]] +file = "config/blockswap/known_states/trackwork/large_suspension_track.json5" +hash = "9b1b0055e622b9507a85fa8c73b8fa45771218e1d1460cecd946a0215ddf0784" + +[[files]] +file = "config/blockswap/known_states/trackwork/med_phys_track.json5" +hash = "2463d98bc22500a6faa229257c04d935c727d84358c6fc20dcf6ba7f7be8757f" + +[[files]] +file = "config/blockswap/known_states/trackwork/med_simple_wheel.json5" +hash = "e74c2690819f88282122fe36b172f39b9e897c4077221412b4989c1d996216fb" + +[[files]] +file = "config/blockswap/known_states/trackwork/med_simple_wheel_part.json5" +hash = "f4cca77b443159ac8cffcbb4ed9bab4f7c7acf99e761b694a1a3674512d213a6" + +[[files]] +file = "config/blockswap/known_states/trackwork/med_suspension_track.json5" +hash = "db16c31651c881d0f56fb1963368118d8b23d585aed0fff4ab1ea3da14f66cb7" + +[[files]] +file = "config/blockswap/known_states/trackwork/phys_track.json5" +hash = "4544fe803384e9bf0036ffd82c895ca1c9f9d93d2320cc1a12b76cbef43bbdd9" + +[[files]] +file = "config/blockswap/known_states/trackwork/simple_wheel.json5" +hash = "d49d23f3fd931e353fe9bdaa87e3d81e1a4c5305de2db45e740c2d1c13508806" + +[[files]] +file = "config/blockswap/known_states/trackwork/simple_wheel_part.json5" +hash = "6f49623a9bd5f05240a9da85abe46d1f0d628fc1f70933ed4db2d3b6a66ae04a" + +[[files]] +file = "config/blockswap/known_states/trackwork/small_simple_wheel.json5" +hash = "eda3f34859c0247878765ebd01add284f0aeb565429a83c533ec9644023af6d3" + +[[files]] +file = "config/blockswap/known_states/trackwork/small_simple_wheel_part.json5" +hash = "9eddb99ecffcaba4feea5765b15e9703db6806e7668c8da6ccec740735a5f0d9" + +[[files]] +file = "config/blockswap/known_states/trackwork/suspension_track.json5" +hash = "dddffc9419dd768b8e63a4060935d78bc6604433587bf30b6ebab712cf1118a3" + +[[files]] +file = "config/blockswap/known_states/trackwork/track_level_controller.json5" +hash = "0999c8e048ac690a8cfa0049eeeed1539d4cdb71818eb3b43d42953e4bb375a7" + +[[files]] +file = "config/blockswap/known_states/traverse/brown_autumnal_leaves.json5" +hash = "c5cdd81f31b0667c3f283fc74b334fd61ba548d5775284888599c9659546f1ca" + +[[files]] +file = "config/blockswap/known_states/traverse/brown_autumnal_sapling.json5" +hash = "55cda55df5b0ac5e625d274ff30dc556e327b63d00a401c6cf712c6db51c0706" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_button.json5" +hash = "38b17d602c396273d29113ba9fdd275ff585b628225c11126995722dd5b9598b" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_door.json5" +hash = "0b81899f782a8c5dc8858504e7851d3b6ae3ac350618b570e2d73f528e519e43" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_fence.json5" +hash = "6d1602117a9fef5414a7fd112398680e7c4cdd0bb2e674dfde6939daf5ca110f" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_fence_gate.json5" +hash = "d29155396f10dda4e2b3cf72f0fd670dc16218dce07c479fcfababa8c9ce4a16" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_hanging_sign.json5" +hash = "4306a2859dc0dc77b9c0641ebead3ce37fd447338149803803c179b09ddd988c" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_leaves.json5" +hash = "36b354bc11f06c463a777f15f39a60f82bea144a3504fa9d6dad7f1e65b01859" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_log.json5" +hash = "47ee277d4992359f0ec59e9016ada24a733394906e7f28eceab7811bef0eca7d" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_planks.json5" +hash = "068e4e61b368333b27401263d8314f17ed6ad2d0b6938acbbcdbb6b0c1b7bd02" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_pressure_plate.json5" +hash = "3f2cc0ba90ddbe8eb1c5333a5476e5fdfa69f24690b791f7cf57fc231a03d45e" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_sapling.json5" +hash = "44d6720f8fdc0acd28e4de19160f4d461e4740b4223e3ff03919a8c8f280cf24" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_sign.json5" +hash = "f519b3824f3e6013019b9901a6500f34d294ab39b15a6dbd4f5426fd0e180798" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_slab.json5" +hash = "7bb664d222b5bb00e90723250e318bf321669b51b1fc445a3b102eeb4177fa33" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_stairs.json5" +hash = "597da04dec907b88f72381706fa416d829d3e6d9849c6496530c6eca11a5041d" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_trapdoor.json5" +hash = "f812e4a85f54512e1233c82021c103f2c14e84238792a0e480f5eea8b2cadd75" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_wall_hanging_sign.json5" +hash = "4ca04098bce88825ca638f5e4b1ae454a25a7ece29d67d3e33e62bf351a2dd41" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_wall_sign.json5" +hash = "215982410ad89c3804fb5cdcaf94732faa14a583b20818f4aca3c53d385df769" + +[[files]] +file = "config/blockswap/known_states/traverse/fir_wood.json5" +hash = "465a80d9e5d364d8709fa89a40b0b7aa2bfc06d06ec53fca2dcb3e4512eb8c7d" + +[[files]] +file = "config/blockswap/known_states/traverse/orange_autumnal_leaves.json5" +hash = "22cd07a817ad7e522c348db64638232de234bfc79f7901f4bbcfaa75f22e32ad" + +[[files]] +file = "config/blockswap/known_states/traverse/orange_autumnal_sapling.json5" +hash = "282c76b2db36eabe21c1538a9859eb2be783295022b129b82d1c052fe49d410b" + +[[files]] +file = "config/blockswap/known_states/traverse/potted_brown_autumnal_sapling.json5" +hash = "b73908a6d80fb9c7a290b8d60a5e05d7c220c65dfbce76afdb7d3a66a228d0ae" + +[[files]] +file = "config/blockswap/known_states/traverse/potted_fir_sapling.json5" +hash = "dc1cf649545bf9fe60c00718cdca86d327482e2e347e71b4ae99a711e773efcc" + +[[files]] +file = "config/blockswap/known_states/traverse/potted_orange_autumnal_sapling.json5" +hash = "a70984b65aae01b9cf6ddf6665c82f4ca05e5da60308ee5e20e2d5e134390e22" + +[[files]] +file = "config/blockswap/known_states/traverse/potted_red_autumnal_sapling.json5" +hash = "523a86dee3ec34cbeb96775abb7ef9df1e4b2c7e2f489f6b5e7ef755e02ecc53" + +[[files]] +file = "config/blockswap/known_states/traverse/potted_yellow_autumnal_sapling.json5" +hash = "41d7f91b39efdc3560e30ee2a239f67eab3e4d308fd844b1fa1dd635290c8e8d" + +[[files]] +file = "config/blockswap/known_states/traverse/red_autumnal_leaves.json5" +hash = "799135e7e48f58eeb57ec53d67353b0f6d73213e0d7c5bee595e410a9cd2af44" + +[[files]] +file = "config/blockswap/known_states/traverse/red_autumnal_sapling.json5" +hash = "ef667b9cdc9b3262f609fb152f9b48bf92112a3455856f95945f380fd7f1d679" + +[[files]] +file = "config/blockswap/known_states/traverse/stripped_fir_log.json5" +hash = "2b052e9bc5b50a1e662ca9c661ccecc5a52f06cf24b73dc47c6a76c98f05d1f0" + +[[files]] +file = "config/blockswap/known_states/traverse/stripped_fir_wood.json5" +hash = "2ee6299f0d7086b371c9068cf32a8c5e37349db96e91a7e8a8599751889e4fed" + +[[files]] +file = "config/blockswap/known_states/traverse/yellow_autumnal_leaves.json5" +hash = "4a2414664cc69471d4bbdcf408c2882a670677d69845f31eeac3b421d12797fb" + +[[files]] +file = "config/blockswap/known_states/traverse/yellow_autumnal_sapling.json5" +hash = "5a951a4af3360f28e0473e77866361c6e61ede265bed125735a723d930af2bf0" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone.json5" +hash = "2a964d11f30e4d0edfcf63d5ae9f376d94caf4deb5c0dbe7712716a3b8a97d60" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_brick_slab.json5" +hash = "8fe070f36750d56a2e824dad3c730803346a390854c855fb07a928b3da31cbe7" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_brick_stairs.json5" +hash = "11a9412e12cfdb2935e9d8cfd63952757c97b10bfc6bcd841ca2ad481d0b9248" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_brick_wall.json5" +hash = "16fe28980736a03d5c82682a9d06da2a5a6ef4338586d868b10fbd56999d0d6d" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_bricks.json5" +hash = "09f51b105b7f3823a83e8b131a628aef214a01f179ff89081280c721e1406887" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_coal_ore.json5" +hash = "18fd6f2469a51cb625ec09bbe51cbdcab028f33872a0804830c5130f7cb5c160" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_copper_ore.json5" +hash = "09fef43ce534caf1d4b7645eca29b7ae1ce6140352f660110e76eb72598d8b16" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_diamond_ore.json5" +hash = "e222fc77a567106cab752af35a2139bb284c413792e948738b11b81cfe382fed" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_emerald_ore.json5" +hash = "bd04881b2c1c3bba3182f0b32dd860766fe1e3a2ed6539ce01ed4b2d1bf1c8cc" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_gold_ore.json5" +hash = "315e459d39ccaa9618ebf5cf9caabaf1e0248f9b47e57996e857a41a9976ab99" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_grassy_regolith.json5" +hash = "32675ed4f71480dfb4bcaddfbd2fe047dbf6ed89df4ffb19f5a82f059a801d92" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_iron_ore.json5" +hash = "c2d021667a5061874590eff26a8416522da75cfb90629c4befd0a64e59368446" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_lapis_ore.json5" +hash = "f2e9c45f5aeae70fcff2b651d5a24680db28493c372e280a43e6c03c5cbb4ab6" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_pillar.json5" +hash = "7a7b2f93ba66052e206d71680ca5aafd71af6ba48ad2fb17d7628071197b2662" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_redstone_ore.json5" +hash = "4d07498a32fc1b2cbb88fe9ce590936ec27b30a1d0d225d59455f77322a0df07" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_regolith.json5" +hash = "ebce437b0d96c14321a08dc1a39dff3959d1f192afe76b7bae3388a28fa51f4a" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_slab.json5" +hash = "cfaac31a1c43e9e6b9cbbae62b3145f4b3ffa0c00fd92f40017ee44c7e05316c" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_stairs.json5" +hash = "207b2a10e380e2d9ca731c71897a3fe63c323f6fc4252272a8362782ed97ad5c" + +[[files]] +file = "config/blockswap/known_states/unearthed/beige_limestone_wall.json5" +hash = "40a91b756243ff23d1993db6ff7f454e9f147de72b1629f938cb61a482371a3c" + +[[files]] +file = "config/blockswap/known_states/unearthed/chiseled_beige_limestone.json5" +hash = "8d8f3ba8bf2eca586356a7c319084e970cd0e2f3fd6bc4e7c8ce253773198ba6" + +[[files]] +file = "config/blockswap/known_states/unearthed/chiseled_grey_limestone.json5" +hash = "c8d12e6e1072a8b9dee9288ae82335dad798358dd3e5f32435113d17b4e28110" + +[[files]] +file = "config/blockswap/known_states/unearthed/chiseled_limestone.json5" +hash = "25093501468cc0b69b81a9910fd137d78c004f462aa23479c539605501fa4d66" + +[[files]] +file = "config/blockswap/known_states/unearthed/chiseled_mudstone.json5" +hash = "292f21c01d30e4cc1f76b0c90c66a478005eb8a4f89f641197d8951660e50e09" + +[[files]] +file = "config/blockswap/known_states/unearthed/chiseled_phyllite_bricks.json5" +hash = "88d402859a053ddd33388f97ddf1cbbe1f24f57207d409f6193a5c8c155dd784" + +[[files]] +file = "config/blockswap/known_states/unearthed/chiseled_polished_gabbro.json5" +hash = "f628cc9e93038ef80a605c22e5938f6df35171a0f59e12c4cab5024483c51b15" + +[[files]] +file = "config/blockswap/known_states/unearthed/chiseled_polished_granodiorite.json5" +hash = "07727fa015f88b77dba0593b14a1ef465c7f4f7d2c521ac5e03efe79c4c6d32d" + +[[files]] +file = "config/blockswap/known_states/unearthed/chiseled_polished_rhyolite.json5" +hash = "001229471788da640f3a8d067fba6bc05fd4f2d3ba6eef9cde2b0cccf76c7888" + +[[files]] +file = "config/blockswap/known_states/unearthed/chiseled_polished_white_granite.json5" +hash = "ce7d5f2ee1e83a9db741475ceee46df3c2b4ade9d0631803a0fe9ad1aec7caf0" + +[[files]] +file = "config/blockswap/known_states/unearthed/chiseled_siltstone.json5" +hash = "2a0a540cc471b2be183212d3c0e227f04cf722802f9fe8fbf3d126de122736a4" + +[[files]] +file = "config/blockswap/known_states/unearthed/chiseled_slate_bricks.json5" +hash = "b06d6924e3fbdf4a4bf9551867879f15036a005de047bb0e23ad91a7ac0e33a9" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_beige_limestone.json5" +hash = "f156e01ec9086bf7476ba5de561d7e9352e9f56a98ced2a7eb9cd9c7940f02c6" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_beige_limestone_slab.json5" +hash = "8f5171101f48b374c2d2ad1ad855479510717ed3515f3735220b0d44060fe1d3" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_beige_limestone_stairs.json5" +hash = "ab95922df40666810e4034372b341ec557ba86615e41092e24e68ac87f0074ea" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_beige_limestone_wall.json5" +hash = "33beed0fd8aea12dec5e642991c9d9f9f9b883302ee3245a654626558c3a2445" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_grey_limestone.json5" +hash = "927c788490c58a07a6bf0371886789f8f16c1c8978414835425ee5e040a61690" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_grey_limestone_slab.json5" +hash = "262d819a1666d3d246a23217dafaaad02d952fb57f69b9b132c5ba1a3fb3efe4" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_grey_limestone_stairs.json5" +hash = "e3165417c26f31d675bc63e0902f9573fdc1655ff2bf53e01cc12732d500076b" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_grey_limestone_wall.json5" +hash = "6fb4910a33994e3fc8d5fca4a1e98a1037ca7a828424b102837fe8e64878e090" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_limestone.json5" +hash = "f8a6eb77d9647d76a9835860f2986df084b5a4dc82ade0d1e7f42da82d11a98c" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_limestone_slab.json5" +hash = "66c68980d129ea63bd3c8bf62aa7ab131cf3ddcb7cce400f2ce290883360384d" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_limestone_stairs.json5" +hash = "1a62c858cc45ff6125b24e42eb43043a832904ab3c9401ba2a892bd7a28d30e2" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_limestone_wall.json5" +hash = "5996ad27409d5f54f534a47735c613f1d001efbaf43112fdedd50e0a03e6a111" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_phyllite.json5" +hash = "bf64fcc96156cdb6eb70dc17de0c8ccd94f46b1b43109c698d1eef22b1b256a2" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_phyllite_slab.json5" +hash = "f902f564bd918653ce4884380fc36a87158921cabd3d33a8af8d8ffa6a1cdcff" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_phyllite_stairs.json5" +hash = "4a7667e1df6281430796e2ceecbc81ded95e940a3bba67a304e7a1675e917e55" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_phyllite_wall.json5" +hash = "da17b5646e37bfc7509bf21abbf79fd5e4030e4a5d6768157dd4fbad258c696b" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_slate.json5" +hash = "1e57de1356bd36272e1dc1e0b98b394489b030d0d505ce2a7aab4ad2e0741acf" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_slate_slab.json5" +hash = "737ef98488afc3a4684ae676858ea4435d3522b6b85814fcdac2c1f342dc728d" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_slate_stairs.json5" +hash = "82872d2c5b7093c6bf0690b949a82dda73d2530e3eb93044950ecf8d126cda40" + +[[files]] +file = "config/blockswap/known_states/unearthed/cobbled_slate_wall.json5" +hash = "696643f3735efdd3af20853b1a8097c3e34c0512856d6fcaac302bf7b0971736" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate.json5" +hash = "43a6bb7bf6512d2fe2b1421d2059ae8123f13e105e79c45b5308aa7419b0536a" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate_coal_ore.json5" +hash = "015993d6df286050485a5961f33073268c8a539dab925e813b10292796c023d7" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate_copper_ore.json5" +hash = "df32a88a8ee52ca5ad1fb49e66413d49bfd364770670c50b631dc8564b83a764" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate_diamond_ore.json5" +hash = "3e8e55aa0b378dc4c2e004e606b28ef5fc915595ffe9334b8250155e0c983d9c" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate_emerald_ore.json5" +hash = "84c69dee2240e1920bce9177b1133d95c258319c8ea9928865a728555bba8b3f" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate_gold_ore.json5" +hash = "86bfb88e7731401e46fcec27e6e4e74bfbb721d66200272476d812f9d584c640" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate_grassy_regolith.json5" +hash = "e581e87eaca5a4eca2f3314c6f733843a1e6140f947fee8141eab83142117e98" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate_iron_ore.json5" +hash = "f4bd50e8b9aa2e9a282c98dac78416a2123c1524766138d1d065ee1131a6a113" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate_lapis_ore.json5" +hash = "97b84d59e21debf1c341b328cee9f0c027a8da5b673c554fcbf2eb11c4978ff1" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate_redstone_ore.json5" +hash = "5c88ffb9787e2bc259ec7e212149e47d5f5c19e2b1666153f9fd99c966570312" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate_regolith.json5" +hash = "b8aff98062d2dee4f9ffcbda876476cbf48bc1bc78fa11d4f107ef14102eb756" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate_slab.json5" +hash = "d4d7fff610d551908324b99723aff1a7b5ed7061f50b614fff4997b74f0afbbf" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate_stairs.json5" +hash = "097a88f6a3fcba5a6b359f81ff7e8d5484370a8da1cb836540a4b193f0861567" + +[[files]] +file = "config/blockswap/known_states/unearthed/conglomerate_wall.json5" +hash = "1faad99fe5c738f11f4f4b9710eb117a860d4b55c411d46f0466eb1e3bc33323" + +[[files]] +file = "config/blockswap/known_states/unearthed/cracked_phyllite_bricks.json5" +hash = "10cc8d3c264f2322b414a9312b5c68adf297a75087041d8478fa0837f136f0ac" + +[[files]] +file = "config/blockswap/known_states/unearthed/cracked_polished_gabbro_bricks.json5" +hash = "043fb82c72b82df85663af412bd5e75e3481061e57ccfda7c34033ed08f6b151" + +[[files]] +file = "config/blockswap/known_states/unearthed/cracked_polished_granodiorite_bricks.json5" +hash = "01f54d2a72935fc5f58a5953f5429ed1e970ad33b440001a516a3c01e4b97e40" + +[[files]] +file = "config/blockswap/known_states/unearthed/cracked_polished_rhyolite_bricks.json5" +hash = "6652381bc4737e4490e4746b0179c663fac7f27b19dcb426934bf0387ce8eef8" + +[[files]] +file = "config/blockswap/known_states/unearthed/cracked_polished_white_granite_bricks.json5" +hash = "0c07896fa7de09cbaa392132b9773cd70f9b66791fd7e7dfe7451e06d968ba74" + +[[files]] +file = "config/blockswap/known_states/unearthed/cracked_slate_bricks.json5" +hash = "5b8abc37aa0e12e3cdcb82a65e86fc42ef28f9413dc52d0c11b7d11e46b32660" + +[[files]] +file = "config/blockswap/known_states/unearthed/cut_mudstone.json5" +hash = "ec2e2660a63f36c60c21effebb5ea176a4b414d7fd402e1ee87ab6c82f9247f8" + +[[files]] +file = "config/blockswap/known_states/unearthed/cut_mudstone_slab.json5" +hash = "7f809245a7110c32bd2b8ea7a5bef8ddeb0df353cbc32e07ce6b3cbd1b1a4e03" + +[[files]] +file = "config/blockswap/known_states/unearthed/cut_mudstone_stairs.json5" +hash = "cb6e9992286ab23e76864a0de57a9987eec0b63aa68b915432f90d8270559636" + +[[files]] +file = "config/blockswap/known_states/unearthed/cut_mudstone_wall.json5" +hash = "3c2614ca82730fc881f62efa992b33ce72673072c0b3d47420b1ffc22ec480e5" + +[[files]] +file = "config/blockswap/known_states/unearthed/cut_siltstone.json5" +hash = "86575c9a62c8481ffd9bb2b59eaf172e46c1afd1d5b333b092a35ff2139df578" + +[[files]] +file = "config/blockswap/known_states/unearthed/cut_siltstone_slab.json5" +hash = "b8d745c5ed2bdbdf5cf152c15506325202d26cbbb67c13ec57bfa94e0e992d02" + +[[files]] +file = "config/blockswap/known_states/unearthed/cut_siltstone_stairs.json5" +hash = "1700e35504da9ee3ccfff99ddf0df5de14573e1824f964300485e81150a381fd" + +[[files]] +file = "config/blockswap/known_states/unearthed/cut_siltstone_wall.json5" +hash = "cd3b05b8b246ca9ca8d3b4b28e94e56fb47fe2ee3449fd8c21a002a3d7b2500e" + +[[files]] +file = "config/blockswap/known_states/unearthed/dacite.json5" +hash = "f28f12018febe095366b5b55019ef96067b812d45f7776f4b8f683e03ab9e18c" + +[[files]] +file = "config/blockswap/known_states/unearthed/dolerite.json5" +hash = "4c93934c09c91aba8cad0cdd31eaf276573d530f28a8de7bbddc3438bdadf929" + +[[files]] +file = "config/blockswap/known_states/unearthed/dolerite_slab.json5" +hash = "5842aa5bbe8b3dce81341c55d808a00c56df352fa7cafc1b85bdddf277bd34f5" + +[[files]] +file = "config/blockswap/known_states/unearthed/dolerite_stairs.json5" +hash = "54cabb33deccf7fb181aaa1ed33fb0bd4fe82ad4a7e6b56d9cc58cbbc0e33d1f" + +[[files]] +file = "config/blockswap/known_states/unearthed/dolerite_wall.json5" +hash = "aa192cdfd05a067641dc675c99feb3e6ddd0b38ce7c76aa7518e820e91cefd8e" + +[[files]] +file = "config/blockswap/known_states/unearthed/dolomite.json5" +hash = "df1efd85a9e2fe5a13fd7f15314af169d312f666064608050c9b2c6b3ba7424f" + +[[files]] +file = "config/blockswap/known_states/unearthed/dolomite_grassy_regolith.json5" +hash = "e2b636315044becf0295b0145ee54a977d374dcf58208362f21bee2ba034a930" + +[[files]] +file = "config/blockswap/known_states/unearthed/dolomite_regolith.json5" +hash = "7df7eac7bbb33d8db9317692492aa439f821df0512fc055acca1bc91dbb3e3ad" + +[[files]] +file = "config/blockswap/known_states/unearthed/dolomite_slab.json5" +hash = "6e7f676378279a855e2fb72b28d986603defc44e1d33cc4152d76dcab516ef8a" + +[[files]] +file = "config/blockswap/known_states/unearthed/dolomite_stairs.json5" +hash = "587c6489ffb8c2d338310462dc618d5e250b11d6b01b80156f5923cf88745741" + +[[files]] +file = "config/blockswap/known_states/unearthed/dolomite_wall.json5" +hash = "1f893fe429a6200dc4f6a4fe4de7554b2714b607bb7aa961a86c4b4fcbb5af40" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro.json5" +hash = "fe1c38b4c46b268adc00a1b7c4589683973fb30d8572455fe50f9dfec5be1fad" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_button.json5" +hash = "a119ae4091ddb3c9f791bc93f1c814c1802412a00c87b0d2fd8c1c190eea57d5" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_coal_ore.json5" +hash = "d5d06289be36260113e33aceb43f91c08712b81d9fe0ac19d00e4be24b20596a" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_copper_ore.json5" +hash = "0d0651b5010ef3121e3f3085875267a9426effba0405d98dfeca5e6ce79f7e4b" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_diamond_ore.json5" +hash = "20dd45b8d25381a9ce9006cfa4f1fb05095ae1d06bb80459a828c6d0131d72ce" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_emerald_ore.json5" +hash = "d649daa479d693ac2f91e86c32885a3eef5aae473933ed86c03f9ecac1cd978b" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_gold_ore.json5" +hash = "f4a07cdb5fd43a3cf25ee7f83e78ca5f9ba0cce973cac9c0f03acd0db4c22ebe" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_grassy_regolith.json5" +hash = "6e57e187eb0da07c16429e8da7171744a30b135aca730c08c7a57ca73383ef09" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_iron_ore.json5" +hash = "bab94aa4bffef8b7d578907ed18d3d1b19bde4a2255deacf6ee9dbbdc98f4c3a" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_lapis_ore.json5" +hash = "7e6b7794b759a224c313dbfd85f4904b9dda2cd33760aaca20c2f8ed0d5101d0" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_pressure_plate.json5" +hash = "0376ee712049a5a1576d589ddaf78a1103ced26495835c7d3ad7940323b7f43d" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_redstone_ore.json5" +hash = "ca872c0edba71ac5c4341ece8d7a8b6d2a3f9f1433ea3ae4cd9592c13c5a450e" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_regolith.json5" +hash = "952ef8cc983d6896061ace6796b22b30dcdc1c46a63f82486b3c0167f8924e7f" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_slab.json5" +hash = "f2bca24b1fcf22fac5da3392589cc9f2c1d297312d9efce63624d8c72a95d037" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_stairs.json5" +hash = "08e2950ef0838bb444ddc412401d6c97c0ab9bebe098a9729e39f2c769d1a105" + +[[files]] +file = "config/blockswap/known_states/unearthed/gabbro_wall.json5" +hash = "434e30288da58579aacbf061d7d0978fa93d130cdc51ea913244e531dcc1bf15" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite.json5" +hash = "57b548b12107967d85435c8748749298bf6de92bd57b6fc31e32b0d87ab804a4" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_button.json5" +hash = "55246519ef95fbf61e079e61b9e8b119f38f071d5cb3d4abe3451dbfdb9c4549" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_coal_ore.json5" +hash = "eaa0396f7ba31eb6a0fdac481c71480b0f53d31b152fee749c67c9f9701bba05" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_copper_ore.json5" +hash = "396943fe441a4a786af2dfcac9515a9fb3d32d60dab6a96a760cf4cd5f8ade8b" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_diamond_ore.json5" +hash = "d9bb0a047e52e8db9aab2690fe214cbda403e4fc096d7fd2f505c309890acf55" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_emerald_ore.json5" +hash = "2f532278fe93e054eb267a68803b161c3030c4c16eb0fbd160903d102bc4c2cd" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_gold_ore.json5" +hash = "07724ca1232237de00a3bbf806bedd8bf213518d9a4c169d82448dbe4f6e3bcb" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_grassy_regolith.json5" +hash = "9f0480ae29cb8bd755aa503c0d875541d7649f0fbed85990044ff03ea4e2573a" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_iron_ore.json5" +hash = "9f6ead5edf0932ed0ba90a1dfb0b0271050de6a73906c7cb943c6e0c2071f433" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_lapis_ore.json5" +hash = "c498e69e4b50b3b4200a9bbac40ed1f36d1b46ce8bed7508db6b01e8c8dfe903" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_pressure_plate.json5" +hash = "04fc546cb1363caaac71f48be57fcbba8db5cf1ed032a832f343cf4ca06ee2bf" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_redstone_ore.json5" +hash = "252baae962c7182f55c987172f3b8a8cfed4e28bc904c13e391a8d9f2de0abe1" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_regolith.json5" +hash = "db1c2dfbaadcf9215bbcf86a030dc6e00416bfbf179238ae33d5d4787bfe4e45" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_slab.json5" +hash = "a3208032ebaeddabc33ff8de8073bfc5296ab5f1642cee2f6d8f00d6aaf7ed53" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_stairs.json5" +hash = "d0c38ddb9c9940b76b2f607f96ee60b7bf600e9159a718fb64b7a200eba35594" + +[[files]] +file = "config/blockswap/known_states/unearthed/granodiorite_wall.json5" +hash = "033dacbc990f76e0bc002e929634f6fb347c9ddb196eb62a2ba16137cc2a4e76" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone.json5" +hash = "4751e28ad241b772b0951edadc4b55bdddb0c85c5488e4d9faf9193f7aa53b3a" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_brick_slab.json5" +hash = "4c8404aa773e37684dfd395cf6a32b7e14e26ce0c2d3d44e8ae3894a659c8490" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_brick_stairs.json5" +hash = "997d24ccc1af508b3b253b107e33da68db31eb1fca187d9bc8191d6557ffc219" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_brick_wall.json5" +hash = "814f920a5528928d68e596d89ecb4fce7966ee480cdb4fe6290d2ef05c467716" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_bricks.json5" +hash = "01e279adc00427f977f00f89e95ed09e3fba5b0ed5786e8c1e95501b9d67cab8" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_coal_ore.json5" +hash = "1ce452b6450556e9c7a89970191b547697539e2395f13d850a06bb485077d833" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_copper_ore.json5" +hash = "3202ee7402543122a60a557d01df8fed2b86e6e7437da4292e478d4eae348b28" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_diamond_ore.json5" +hash = "812a761fc3ae874627f21f1e70f6c40a85aaf7060c9e17ef12c46989bd6f657e" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_emerald_ore.json5" +hash = "c4dcf09f82621448413a39e4fe9d6ade27267506062ae776e9eab6f2ff6e6e37" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_gold_ore.json5" +hash = "127b4b8d459eee1d36aacefbd91496b15c2b7aa98587caba6477a864745fbb32" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_grassy_regolith.json5" +hash = "8c60501674fca930cdddfc6fb1047f870f632fe4cd0d4bb35f9a36a2609ff41e" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_iron_ore.json5" +hash = "d8606f4ea6256ad4027513084aa1f099b11e1eb045c7838d5fe01da96d3d9c40" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_lapis_ore.json5" +hash = "405a3aa017b1fb0a2406024259368e2f97009f097caf8e22d316db5d54e15b67" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_pillar.json5" +hash = "807ef95fc031e80bcefccba5035adbcfffd69f56f001ef852a6f68ce4d0c216f" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_redstone_ore.json5" +hash = "175673809eca1c09e22179f7eb368431016e09cbeba08b42c13031cd32138cde" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_regolith.json5" +hash = "59b8cce6d22399759975db22a7f336165675b911def58606efa024aba2bf0ff3" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_slab.json5" +hash = "3f1a8106ab8c5693fecd245ad2bb2425f4c86e1244b9ca91d86f1a76cd51bf74" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_stairs.json5" +hash = "4cb0b6656ae14bb17ad235c1c1280e5308dd4d8e3eaa55b73bf4d29858609c52" + +[[files]] +file = "config/blockswap/known_states/unearthed/grey_limestone_wall.json5" +hash = "0ce3af044094273445c7d6fb341c199e8cba493a38786aa91488382336b7785c" + +[[files]] +file = "config/blockswap/known_states/unearthed/kimberlite.json5" +hash = "9921d145a1571dbf14ea007ea2778d4f36d8b68aedd9f83cce7f5e3b7605c0d5" + +[[files]] +file = "config/blockswap/known_states/unearthed/kimberlite_diamond_ore.json5" +hash = "de2303b203804d79e1f1932415f27e501ead3c4f25a2a43dcf7ddb10cd82628c" + +[[files]] +file = "config/blockswap/known_states/unearthed/kimberlite_grassy_regolith.json5" +hash = "7ae253c52725cb6a068a270d9d4ea767929cacd433db8e6102613d8b4a474e43" + +[[files]] +file = "config/blockswap/known_states/unearthed/kimberlite_regolith.json5" +hash = "9f0e7910a3536917aeef5141db7fc57759941600553b5c2b5a9a6061de664d0d" + +[[files]] +file = "config/blockswap/known_states/unearthed/kimberlite_slab.json5" +hash = "e5a483304722f2e2331d34ead2aa7ffe0275aa98db7d54c118db6c8f965ef753" + +[[files]] +file = "config/blockswap/known_states/unearthed/kimberlite_stairs.json5" +hash = "0ce37330fbf720386e7651b56ba1ea95341c0c02da1a05f7c228c9b9d0aa6190" + +[[files]] +file = "config/blockswap/known_states/unearthed/kimberlite_wall.json5" +hash = "4df04a473519d47e5fb61fe8fd7a663b8b192bc275ec3c6371690c1108878850" + +[[files]] +file = "config/blockswap/known_states/unearthed/lichen.json5" +hash = "1d6153d5c43ace6b48638b445797ca95615d5ee8c92a19ea6c0dca92b4e43d2a" + +[[files]] +file = "config/blockswap/known_states/unearthed/lignite.json5" +hash = "5354ea1576ec9c978544e297b366a459fe25a2e8472349ab56bdb2dd09fa444b" + +[[files]] +file = "config/blockswap/known_states/unearthed/lignite_briquettes.json5" +hash = "1711799b48f1e05f2a6f5d55a25c04a13bda5d33f23c25410c63fba6f3cd4a21" + +[[files]] +file = "config/blockswap/known_states/unearthed/lignite_slab.json5" +hash = "ec2005b6cc3c3a7359769ae75302e590135584dd5edce58c58025c322634809c" + +[[files]] +file = "config/blockswap/known_states/unearthed/lignite_stairs.json5" +hash = "64bc9489cb023dd0a803dd8fef194b3f164ec8e88c94d18e423eaa3067c97ab4" + +[[files]] +file = "config/blockswap/known_states/unearthed/lignite_wall.json5" +hash = "60417a97c8db24f8f4befc27a15c259b057859969d4e143ead64914942bc8e04" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone.json5" +hash = "00976cd152928f150321d3b1dfc09ab47d7f79b6b638bc3b9d11aac790475794" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_brick_slab.json5" +hash = "8901d634e7c9704c8e12dabd2ef10eee54d5ab4c9455ebb2192bffb3d0e4a3d2" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_brick_stairs.json5" +hash = "1318e15c5dcec4a5fccb21bbd6cff992dd156a13435023b7855d7948463f7fbb" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_brick_wall.json5" +hash = "47722a1f3f1bf675b5a3776114a612bc7d2c73726d7daad680c02717776f0a6d" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_bricks.json5" +hash = "2acf91ea69d85178880dfa0f46177170f5f281e4dcd6096105306c45ba14cb73" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_coal_ore.json5" +hash = "fadbdc6a50db293a23a026f0285eb6f6d4cd222aec498fd8d14f562a82c6b43a" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_copper_ore.json5" +hash = "a3dae234588189bf1a9c03afe068ed0aa84368450b25d54271fa1ecd8c6425ff" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_diamond_ore.json5" +hash = "9f45f44cb40af1369180dce15bf1bc719e7f4af1ffe1c717bdd7a27a74a583cf" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_emerald_ore.json5" +hash = "635f9298a046aca8b733b546d01276f840e04b8e33b42dcc909c8e2f25a915cd" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_gold_ore.json5" +hash = "9472d1c5e4cb519c99dd90ea74e5026d38a1373746103ab57d02623164526bf2" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_grassy_regolith.json5" +hash = "3fe9e189fa63963a609b46f3370b4c9473ad8f9a36e1ac79e25d687da0802bc2" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_iron_ore.json5" +hash = "4dcf0beb03c7d0bf9212caf900046797a79118f238e6d31edb55d37f0f6d1fe2" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_lapis_ore.json5" +hash = "cdd934d80a71e08a2a5bfef9922cdec84ad601c02bb2ee77b897fbd26cae3182" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_pillar.json5" +hash = "ebf385407f1415400f4c9b4c633c549748b534b825876be544f0fa7b8457313f" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_redstone_ore.json5" +hash = "1e7c398e533ddcd71c701e20faf04c5b169496507b2c73461c08a78c4c259238" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_regolith.json5" +hash = "0cfa15df9f277694f74a81bf853066abed9749d7ba19d91ad383c67da70476b9" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_slab.json5" +hash = "42744dde02f2bf9cb5cc5a20d4e37d43e3f271858ca51abc4832dd3b93849fc2" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_stairs.json5" +hash = "5bae92fe6c18f6f14ac3d6fb333d455708a15b3fe738c6251e0f41ef83f9c07f" + +[[files]] +file = "config/blockswap/known_states/unearthed/limestone_wall.json5" +hash = "d9fea6fdd40d73080eb754fe3da378a7f0cf0b124280bdb693f557239fe216b3" + +[[files]] +file = "config/blockswap/known_states/unearthed/marble.json5" +hash = "739f381022f5dd81b9655ce1256ac5763b4232183552d5a96d944ac77c0f033a" + +[[files]] +file = "config/blockswap/known_states/unearthed/marble_slab.json5" +hash = "890ab6437357dc6577aca94f1f326d1ec0025ad170dec9aab335de9f02a5dd0b" + +[[files]] +file = "config/blockswap/known_states/unearthed/marble_stairs.json5" +hash = "8da72d5bc8a5f0ca1570ef45e112ebaba90a2c3e6bf8e1fa4d405df339bfe745" + +[[files]] +file = "config/blockswap/known_states/unearthed/marble_wall.json5" +hash = "79557ed47334723939018fe76388842af5669d7e2cc19687428c3565e81b5159" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_cobbled_phyllite.json5" +hash = "11aad1e945a533e156cd023ebac334f6c230dd6843cc70d9fc1ad97dd574edae" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_cobbled_phyllite_slab.json5" +hash = "91a696ff232cc11ea784b8447c0e801ea0a415e95f61c2952919a1fee86fb0af" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_cobbled_phyllite_stairs.json5" +hash = "bbff40b312d7581d2bc0505e482d6395017d18a997d97b38c9936b1cb478cf59" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_cobbled_phyllite_wall.json5" +hash = "e42f5f5cdc0f1198822307daa3a81f07412d2bcb9dede8a99bb55d8a291bb684" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_cobbled_slate.json5" +hash = "5838ccc5a95e359323320d2aeed4b279f3fb0ce94a4d419f02e72889b7dd03a1" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_cobbled_slate_slab.json5" +hash = "3169dd06411881a1c69faea7b68e09462662315a6928428102d09f31dfd75e48" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_cobbled_slate_stairs.json5" +hash = "f55723f2583e9f630cdf262762f47d9dd4880909065df1172a09a9bb9a6c2832" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_cobbled_slate_wall.json5" +hash = "0d72c5d4baf8cd78e2f69aa7e9625e7e5530ebcfbafb4944fb548008f2090b21" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_phyllite_brick_slab.json5" +hash = "c7b005ccefc59dca07092b1c527d147ea28dae9641527635261543f048385259" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_phyllite_brick_stairs.json5" +hash = "f99391a6128f4ce059cb378307eb78289bac16f7eee9fda88d39d5e5473d80f2" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_phyllite_brick_wall.json5" +hash = "9015e1f95b3ae3d776d8e25d39308fa0eac27b6d5135fc7233b42d8d9e08288b" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_phyllite_bricks.json5" +hash = "0d3d110f3d5c3537e85b8c559e0a0ab14dd6350d0d4c6d209900f0498ff87a69" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_slate_brick_slab.json5" +hash = "3154899b20fa49e89ca011b0902a6fc9a7dfc487061ac84325102630ca9d410c" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_slate_brick_stairs.json5" +hash = "a69abf80cc8060589b17e3c3fee1355004a4be14932305080029f1d9f621374e" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_slate_brick_wall.json5" +hash = "c604a97c8b2ba17c883eb87c08fc4eb1fad50ab6360dbb68314346156708abe0" + +[[files]] +file = "config/blockswap/known_states/unearthed/mossy_slate_bricks.json5" +hash = "ee0f4ab11e0be5abd842c5ab7e10ab544e64eb4951db78630adca77b03da2870" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone.json5" +hash = "ad42998e6f561bfad072881a2b09d21e471c8d53d48b3c925e5c6611699cdbcc" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone_coal_ore.json5" +hash = "4ff4cf573e531acfe19982b1628c5e5f77194b8fee810aa8d87da476a36dbd32" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone_copper_ore.json5" +hash = "19ddf7d479f9b1888f090a771bc32ff4ff5090fe871f35cc4d8f6d6380002096" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone_diamond_ore.json5" +hash = "faac1466e779c87d568832efb4d4fcc1859ea03a4e7d7ee99a66323382bbcb1a" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone_emerald_ore.json5" +hash = "3d988361879c8efe522d7afa1421b7fce922d965a8478216e539fc0cc33e399d" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone_gold_ore.json5" +hash = "7e58036b74dbd5036be2986f0ae78d5d4731fedc3a7daa58d3c2dfd771619fdb" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone_grassy_regolith.json5" +hash = "4e3ace636c66fa74d6742023002e397705a391af376354e1299b28cabd270147" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone_iron_ore.json5" +hash = "99b0aab2ebdf5209d8d3479f33cf3e7ac64c351d7050566854745be1023ec742" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone_lapis_ore.json5" +hash = "f8b3c054af1dcbac1c27fec4d50f71ef55dde3d419fc8011aec88705b151d86f" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone_redstone_ore.json5" +hash = "fb3b3278d1312402352d84b2d1401abe446437a861910309340901ad513e0a57" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone_regolith.json5" +hash = "f442cf9b823a1d97dc14ac89ae4b64caea5080a9435a91e57c432a5e8c782e61" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone_slab.json5" +hash = "a857beb495b357c9d0a51908b85b344cdc6ba9a94c3b9d0af3b16ff0e4afecac" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone_stairs.json5" +hash = "5f90469607439ba06f50401c2e33d1162e07858b1d08e5f9542d6fbb71ba24b8" + +[[files]] +file = "config/blockswap/known_states/unearthed/mudstone_wall.json5" +hash = "4efc435003a3de9a18254853787f14ee74bc6bbfa2a31104dd3ad846ba86ccbf" + +[[files]] +file = "config/blockswap/known_states/unearthed/overgrown_andesite.json5" +hash = "d3af621e51a3b8ceb60f2157b164a0e996f5eb1f7ec343a9ee00514aec4c426d" + +[[files]] +file = "config/blockswap/known_states/unearthed/overgrown_diorite.json5" +hash = "2185c297fb4051cd0776ddba0947735aef8bd08c015c0384dc9cdf6305fb1aea" + +[[files]] +file = "config/blockswap/known_states/unearthed/overgrown_granite.json5" +hash = "c731fe33bce727ed722ac46536ad34361101b26d47c903eaa78b453f46776687" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite.json5" +hash = "c64e93d2503586efaa3861dfc8a4e7c0804c8233ac29dc11b4d3ba5975b68ed1" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_brick_slab.json5" +hash = "a532d1b4aef4ad84489caa6081b6d5c1038ad7fb2b01471c37469fc67138a3d1" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_brick_stairs.json5" +hash = "4f9572b82ae4e0c60e6d7236c915742ac0c81c9957241c91f52e3e27b84cc6ad" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_brick_wall.json5" +hash = "9778298a83652e57aa4cb866d9ed50641a3f1e4124d010c74c7592db73792bb1" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_bricks.json5" +hash = "2f2a00c8ccde9a2e4174ceecf31e02eca3f51e7bee884493a8dbdf70ff6a6e4b" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_button.json5" +hash = "2a16b496a505ed3017152f4b790e66f12a430d24422a19dcb16db5dfb77815ea" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_coal_ore.json5" +hash = "bc4ac165fcbedc804680934eb84156870cc6229ba6b780949f4b1b9d5c7712fb" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_copper_ore.json5" +hash = "add14cc13415da1a1cdcaeaab9cbb4606de3198502f222d04f03e9717d4a0171" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_diamond_ore.json5" +hash = "6d64f94567ef12dc5190c825cc06fec22349785eb25891178e42d6af7911688b" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_emerald_ore.json5" +hash = "c51686d6e54b0dbe30e16ebc3048aa4390efa0e8ed1a504557a21c9952d098fb" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_gold_ore.json5" +hash = "203ed1cec354e2fe6edbf0748526f4da221f683492426a4226cdc9e9a4607fb9" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_grassy_regolith.json5" +hash = "adb3a8300799243248e07fe51a53e46f6b7f63e0e4e2e76ab979add1809b9963" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_iron_ore.json5" +hash = "1e5b1b2f87bdfb6b14e68cf430b644dc63db5f8e21a15cf3729f5cbb9306e642" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_lapis_ore.json5" +hash = "6ba6e074927329bbb3d2cffbe648ebfb43db73952180f8fdf0a6a42853c50480" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_pressure_plate.json5" +hash = "bf4d1ad84ba8bba61dcc0bb0ff7ffdf85e294aa66d507270b9dfc1cbe6166a3b" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_redstone_ore.json5" +hash = "021e755bd5325c13e74dd0377eef7ff46d8b206bf17ded8d264aa928dc723bb2" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_regolith.json5" +hash = "45c3ce9fa721ab649c2337dabf4c6ffab5031ef02c3bf9c0b0709ca4cdef8d6b" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_slab.json5" +hash = "78ea33a352e919117f4771ce6a00d91a9c260bb72e1d7da339d7e71f30929a14" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_stairs.json5" +hash = "72f5ee40de2a9352aec50eff00802a80c43bf6c2a98afeb016516ac0a3c759a3" + +[[files]] +file = "config/blockswap/known_states/unearthed/phyllite_wall.json5" +hash = "1615480ff097317b9e9c89028d98084379f5d5fa8a886759f006fda38264eb86" + +[[files]] +file = "config/blockswap/known_states/unearthed/pillow_basalt.json5" +hash = "ea3d359b8d308839a224078976197bb4bb0cfba74c644959f2504786707adce7" + +[[files]] +file = "config/blockswap/known_states/unearthed/pillow_basalt_slab.json5" +hash = "f461bd81122486bd6e5d3c3cf9b7216b61e4e18a5d9c5cbdb3223668f13d5b79" + +[[files]] +file = "config/blockswap/known_states/unearthed/pillow_basalt_stairs.json5" +hash = "2ae23eb7fed933bf7775a4793d602bb068786783b2813aa8e4cddb74da710cda" + +[[files]] +file = "config/blockswap/known_states/unearthed/pillow_basalt_wall.json5" +hash = "688a000132c39ad1c91b354ceab1d6f7d2b0f72d1acbca969b7bd834a1abde9e" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_conglomerate.json5" +hash = "6e26585b5ccec79a8846d696c3743eebb03d529d785583bd943c1d8a4d48fcf1" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_conglomerate_slab.json5" +hash = "0dbdc1bb8cd4a35d4224c32302c9ba6d6f65c57302baefdbf90a7c332f6ba2a5" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_conglomerate_stairs.json5" +hash = "1c8d88d4fa72f7639683eb8029a101c2e0fc0727bc174829a2cf16562d980e96" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_conglomerate_wall.json5" +hash = "c5da62313cc154f17a36916ea6c65c890825167e093629d548b30edb6f189f85" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_dacite.json5" +hash = "3666dde705775706b1785fc762236d0af14d3d65313b7658dbc9a535f49153f4" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_dolomite.json5" +hash = "3ebd2e0f355649fc4dd2301988d7219d6596824def7cb367741652e8ef0e5bbc" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_dolomite_slab.json5" +hash = "310b30561838e9434727f73287e4df272bc43f564228633224d4b9c1a862fdc5" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_dolomite_stairs.json5" +hash = "0546e049f5651013ac633f4bd18e0050068e15e778905b5e9b25285764528d58" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_dolomite_wall.json5" +hash = "dad7f5f1ab5f53fc2e0ad3256737696b5f4768dd262083450761fa731a024dcf" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_gabbro.json5" +hash = "799e34f779c82c586dc5d149b7fa3c269c3a021aa8304c4646b0b573d7aac559" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_gabbro_brick_slab.json5" +hash = "83685f07b6cfcbf83808f0525c50b949c9bb135851f3d52a9a1d90762f973150" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_gabbro_brick_stairs.json5" +hash = "fcaa5711c5f4474d363ecb62ba0e518e5a60ff01c5cc4f9a60bdf544d6e7d74d" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_gabbro_brick_wall.json5" +hash = "e0c0b4aaf6aef25fbfa44836910a3b11ed9825f7adda1cce9e52e78d1624e44f" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_gabbro_bricks.json5" +hash = "8ce1a80e2908d610771f33339e26ece2dee323db8c12c28b851c0af136b5f365" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_gabbro_slab.json5" +hash = "834c8165ccf331b640db21bdafafbb8051a485dcad133ff1d70bc4722c46783b" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_gabbro_stairs.json5" +hash = "2b024da3f45792a34d3a71547a7b59e29b22da568873216b7a91aeed0ccca503" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_gabbro_wall.json5" +hash = "98354877bfc06c723321472581ecabf209c5f84478d77ed41bbe4da2dfc1ac66" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_granodiorite.json5" +hash = "734a03bb7a1f45a3c50330d991a905f473a9a81801691176fe89a3be3dd585ad" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_granodiorite_brick_slab.json5" +hash = "b3e2074a5569e267e501cffebe93575f648754064aabcb4d55b675d4be5d0359" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_granodiorite_brick_stairs.json5" +hash = "fb9857425f06b81eb3b999b4ce06ce5d8ef168fa4e50d6ea561cc008f2a90718" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_granodiorite_brick_wall.json5" +hash = "1bb8bfe5e98ad4725967976fe1693b4c0c2d833140be0830f62e965de2fd7672" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_granodiorite_bricks.json5" +hash = "33f1fc75c8938065c8e9f98da2bb81ca5c58cac2c7e6743ff38784d9119c9a2b" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_granodiorite_slab.json5" +hash = "f804c7fbcfbf3addfb0db38b9c8e6d5299a4192c9195d9df43fb6c4670436d74" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_granodiorite_stairs.json5" +hash = "19aead3352f312622fe5fd6c1da385a58347ed405c1a0a10832bb1706c3c94cd" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_granodiorite_wall.json5" +hash = "cced93998aca235b7b978f9cc07f158f3e5b04ca09fe4cdc5e0ebbd0c143534c" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_rhyolite.json5" +hash = "12a27246393ec32509552cf4ff4c0c2829121cad1dd80ec3b06cfeab959283a5" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_rhyolite_brick_slab.json5" +hash = "19998e623c9c03fe24c9919f30fcbfed6623aebb22d1ba006f6decab393a3570" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_rhyolite_brick_stairs.json5" +hash = "d40a8e960dacea04dc79663f8be801761762643dfe2545a07a9cf3b0ed6c80bd" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_rhyolite_brick_wall.json5" +hash = "615ff9a978a723fffad39c16259bb539637f9f4ab7b5ebbd7abf36845cd67c4f" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_rhyolite_bricks.json5" +hash = "2f09cda352c07695f41f436cdb77d9ceba0e0c901958e832311c81cd9a16b8f8" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_rhyolite_slab.json5" +hash = "4c9e430837fd17951ce0b7b83294c3416ae81eca6bde5f5a0ee8d8e487a0907d" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_rhyolite_stairs.json5" +hash = "07c451605b0b370f6a4801d2177cade7a3dd26fba47737b1152254f9fdea3d64" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_rhyolite_wall.json5" +hash = "10aa7167c3e954644a1b432ff824b04fbc07d717cb5abdea69a818668aa214e5" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_white_granite.json5" +hash = "45d281fc8cbbd7e4417db74996bde3fdea2208a164a9ed0abca8ae0d868e2105" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_white_granite_brick_slab.json5" +hash = "29a1bdd84917edbc04d137155bf80c41249d75c39ea4953821553bc8606483f3" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_white_granite_brick_stairs.json5" +hash = "4eae310c4383175f676028f505b1f40f41d9c5ae03d5bcf24da2cf09984a0cd6" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_white_granite_brick_wall.json5" +hash = "55e6649d3efb936ed3cd7f250d7987acfa9431fb31a99c30191cd91a1dbd4d64" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_white_granite_bricks.json5" +hash = "9939630ed58588b82703a4b6344893dbb7b944f606b8b4949e31f74c35fcbf3d" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_white_granite_slab.json5" +hash = "f14a0d244f41f369581c077040bf679678153111016a4d366855eb8cdd926da4" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_white_granite_stairs.json5" +hash = "ae62addc542a8dc361a0521fe052b959ba8675d301e29e2a353328e52ba449b9" + +[[files]] +file = "config/blockswap/known_states/unearthed/polished_white_granite_wall.json5" +hash = "d80b3a535ba171c8d1e5c39fcd9478596cab8016a9f56ba31e4a58239d1f4053" + +[[files]] +file = "config/blockswap/known_states/unearthed/pumice.json5" +hash = "aabbefcb9923a0c8a73e92ce84b50ce7a05a4f01a2488241d7dbb34244555312" + +[[files]] +file = "config/blockswap/known_states/unearthed/pumice_slab.json5" +hash = "a7b973a208c04de9d7d6f49b7df3babc074cd3a5b89a2e5d730041b5df6b667f" + +[[files]] +file = "config/blockswap/known_states/unearthed/pumice_stairs.json5" +hash = "84ef369931296383fc756fb101a11e5bb26d9a1caf0c43bc4b8a998db7181b78" + +[[files]] +file = "config/blockswap/known_states/unearthed/pumice_wall.json5" +hash = "51e2ad430be9c7b821b01937c18558a4e603e68b535fb4f6599ce8dd3e117d1c" + +[[files]] +file = "config/blockswap/known_states/unearthed/pyroxene.json5" +hash = "08b3983cc362ee16dd46f0ed254e312308adcd1216e4e779b36d06fc90eefe3e" + +[[files]] +file = "config/blockswap/known_states/unearthed/quartzite.json5" +hash = "e15f7c8592f5334e9019b2c3dfdf3174200b3f0d3a452ec349b8de30a2818c34" + +[[files]] +file = "config/blockswap/known_states/unearthed/quartzite_button.json5" +hash = "260068b6a0c62abae9bdc9d798f8c3e1c1a139a62ca76e15389ff8f0c006b3e7" + +[[files]] +file = "config/blockswap/known_states/unearthed/quartzite_grassy_regolith.json5" +hash = "cf1df0f210235c1d5af6e378710c38479bfe5704608da93cab886f083d9e359f" + +[[files]] +file = "config/blockswap/known_states/unearthed/quartzite_pressure_plate.json5" +hash = "7d4de7b32317a10c1fccc257556711f97bba8017c20c1b9330d297e7e5e93d31" + +[[files]] +file = "config/blockswap/known_states/unearthed/quartzite_regolith.json5" +hash = "bc96624eadffeb4309ed5463894d0af14754f1624eedf34bf10125557b4347ef" + +[[files]] +file = "config/blockswap/known_states/unearthed/quartzite_slab.json5" +hash = "19818e3929cf7ed40733252d941897267fdd1b7877f4984221c0d107c3ae3265" + +[[files]] +file = "config/blockswap/known_states/unearthed/quartzite_stairs.json5" +hash = "a35cee269cc89f21ffbd927e32950256be77ab750e0dc83c68c42f63e0ec9d1e" + +[[files]] +file = "config/blockswap/known_states/unearthed/quartzite_wall.json5" +hash = "d7dd560bca64946533b274f0220fd44017aca05c7d0f6777bb83019648bfb5b2" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite.json5" +hash = "ca66eac4ebb69f10bb8deb8c634f7f7ba4169d1c5c9ed2bd942de5d403702c43" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_button.json5" +hash = "4c77c2467c7e10eb44add41368f5a1e2e7de6c27a14605b53637c4a42f7eeafe" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_coal_ore.json5" +hash = "3c683da83600ec773376f655dbd6c8854c8e17ecd683bf4d5b63033dfa3b8546" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_copper_ore.json5" +hash = "23af04dd1f3ae4db062916f4dfc9f6121788615d4a7e6baa4dd58653553f1000" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_diamond_ore.json5" +hash = "4b96b709a55ea07af70065b95770f02f570f43a11d02b161418daf2b986038fe" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_emerald_ore.json5" +hash = "01a88a1689866d3825d6ff181b5abf217220c9536d90280eccedf69a221b6da5" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_gold_ore.json5" +hash = "451488362464f868e32092a98415d5181bcf489faa5255b2d31e4887497fdc26" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_grassy_regolith.json5" +hash = "79844332aeffaae9e6adc6998015cf3ccb5139367fad796b258337a010b2e369" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_iron_ore.json5" +hash = "1d6144e923187990b97838dc1ea5c5d5f622685ff37b11214fa99805bd9124b0" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_lapis_ore.json5" +hash = "bfa9f3f04342de71b6b99f7ea8d75959ad714f7b16a7a2d8cca4367e9de44293" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_pressure_plate.json5" +hash = "0324e424cdf3f091813c947968b83d518a02d4177cc9823fe9becc6acb5bb343" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_redstone_ore.json5" +hash = "9eddc39d1a2043858d0fd57d49131027de23af7e0908f30175d781c54f9d46da" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_regolith.json5" +hash = "440b4dd8a9e320649ae9f44ed9c659a14f684fe8d967f02dc2e2bcdb992d7402" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_slab.json5" +hash = "7f39edecf3d05dc3558bbb28bac8b3d0bffcc67af14f59c86bdb59550aabc60b" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_stairs.json5" +hash = "bdb25f660871a09669e6af8db5482703e63623e5e74003c9efbba769fb83b63c" + +[[files]] +file = "config/blockswap/known_states/unearthed/rhyolite_wall.json5" +hash = "90f63ffbac8c1edf42f3d0a5abb89d09c907f69e54b4ccc6883f09fb7214d837" + +[[files]] +file = "config/blockswap/known_states/unearthed/sandstone_coal_ore.json5" +hash = "96b124a017d27a5f8f2e61531a2102039ab06ce8e0696b9230c2a9e6ec46bb3f" + +[[files]] +file = "config/blockswap/known_states/unearthed/sandstone_copper_ore.json5" +hash = "2ca7ad02f9135ffb4d56ebc85cea5799fbe3f2cd891c5977655ae3114d83f254" + +[[files]] +file = "config/blockswap/known_states/unearthed/sandstone_diamond_ore.json5" +hash = "a1ccb0651176a8fa834bad540b47ba72cd462212b228c8b2786ae8f7cdad46d1" + +[[files]] +file = "config/blockswap/known_states/unearthed/sandstone_emerald_ore.json5" +hash = "527deb929b88a1b329571b01bfd8159a1921598cd78595af1c203f51633cd2ea" + +[[files]] +file = "config/blockswap/known_states/unearthed/sandstone_gold_ore.json5" +hash = "e027f68379430bdd301df338c16f6b73f8840b262d400c0ee52cf7bb0c3b8528" + +[[files]] +file = "config/blockswap/known_states/unearthed/sandstone_grassy_regolith.json5" +hash = "d004c617b09723ac59f566c1c8720e623f1a24c9b5adf1818c9cb43cf4b84c5b" + +[[files]] +file = "config/blockswap/known_states/unearthed/sandstone_iron_ore.json5" +hash = "0c5fb80720929dbd80e219c772ac0ed161dc3c149621bb093a828767221063ce" + +[[files]] +file = "config/blockswap/known_states/unearthed/sandstone_lapis_ore.json5" +hash = "eb1dab25fa3407982635aadf9b7acc7b0fc6bc228cf9ff253abedd4ca7fbed91" + +[[files]] +file = "config/blockswap/known_states/unearthed/sandstone_redstone_ore.json5" +hash = "1cff7332a3d23d91e3ba6e0378cd0d8a057e6e1514ef51b4eb8b516e971063ba" + +[[files]] +file = "config/blockswap/known_states/unearthed/sandstone_regolith.json5" +hash = "17b03ea396215369efdc50fd1e5012c74cae6ad4ec95c733a199dbde7514b420" + +[[files]] +file = "config/blockswap/known_states/unearthed/schist.json5" +hash = "52f11d498abe68eb3cff0b85c1133d119010ea09ad73f60fc4b1815fe3e3c19a" + +[[files]] +file = "config/blockswap/known_states/unearthed/schist_slab.json5" +hash = "d89363767acfb6cf85ca664b3ab4490ebdbc76acbf7fcbfbddb573837102f9bc" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone.json5" +hash = "c65152a7f1ffd7f361720e31767a4ffc5e305ff0fa9e68b4e729ba8fcd28a735" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone_coal_ore.json5" +hash = "01e8df5dd1101044abb906f31dac8d1ed1c82e4dbcf26ea122b094a78ca855cb" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone_copper_ore.json5" +hash = "164309e3b94b79925685d277cef032c0d069934d03361cfa37a7ef2e5e2e40ce" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone_diamond_ore.json5" +hash = "f8a6450276fdfdaedb07c737e63510508179f3c8a371f4d0fc7452ba7a482161" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone_emerald_ore.json5" +hash = "a8edaf01f145e5a423c226329a18c33d83030e9e1087d872022fb7089c495d78" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone_gold_ore.json5" +hash = "682a62a3062269b335f74d9b170ea96da4179c6e0c465c6494dc4bdd753c48cf" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone_grassy_regolith.json5" +hash = "7267e6732060cb35071ecf379873b88a59a58b23a01b51e8689cb40c75404a24" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone_iron_ore.json5" +hash = "531d151fd42f725229ad33d115723a19e1cc2716e4b1ee45495bb3a6550c12d2" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone_lapis_ore.json5" +hash = "1009cc280602ce106142be87293017d49e0d896337fe9de5ff8990c8a600d30b" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone_redstone_ore.json5" +hash = "f059cb773489372792ca641581698eeb1e8f2c2294f54629c84e2a39811d7fba" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone_regolith.json5" +hash = "48b84db899036eea0ebb9dfdcfda2ff4330d03bd63094efde20829e18f0c148d" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone_slab.json5" +hash = "1f883920e25e2816dff8b2c3db46a84844460ba550a16a854e7725d3d63e49da" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone_stairs.json5" +hash = "8732a3fa93768eabdbfd493d848e8e37a16a821c802317d5b6e2332916a1c0d2" + +[[files]] +file = "config/blockswap/known_states/unearthed/siltstone_wall.json5" +hash = "34db25d1059b4946968768c1dd02c43d957c5b6f483b0cf1b6b770d724af2dfe" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate.json5" +hash = "894c21a7f1e0a0beb04f9f01054076ff146a4b95fb82566273b0211e64c96f46" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_brick_slab.json5" +hash = "05a54f7e53ffc20395dbb15440c2b555a1d988c19fe7512eaa6ee162a1867c55" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_brick_stairs.json5" +hash = "d5be642e26fe69555cee8b871ef5c662b1594893762ce8fd345cb81a9a36f128" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_brick_wall.json5" +hash = "75a51510e60d1097cf93d61d4b6d1ef431d7b0bc806aac600e9b360a455b8839" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_bricks.json5" +hash = "b2e130b991dbee5e80d891eecd2354ee04df5ff40237fb21dc8e470910f06ae7" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_button.json5" +hash = "2612821a2114e945750327c17a84ce4b9abb5eb9bbcc79ff87409c0ae23a8195" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_coal_ore.json5" +hash = "e93fbf89c1e25bf1db2e62e97c7b173ac66acf6211559dac849743b92f376c1a" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_copper_ore.json5" +hash = "189aef30c20d015790e30caadc76eec0a4380f205911c34fbfe0014d2e241563" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_diamond_ore.json5" +hash = "c0419ea3e8ed5b6af928583cbc3c66e3abce24660c9294baa4bdc428514f0e3a" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_emerald_ore.json5" +hash = "acb3eae62f2a99952888e997bca1997e2b4e874f968c68e586638ecf4ae3c7a0" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_gold_ore.json5" +hash = "c5a05bd33d80c956881c030215d4b836185d02200721f135d099ffe0862b55de" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_grassy_regolith.json5" +hash = "15c9f05e386a18954cf8ff7d3f3644d78850e5dcc4cd2740e543ee7e972b2da9" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_iron_ore.json5" +hash = "d4a15fa23792b253074e4b8ee76b2182783f1c358707a9a843b8de96d141ffca" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_lapis_ore.json5" +hash = "87c459af5788a14837e8a46106132d1e96a66905b0134adf5e20011acff3245d" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_pressure_plate.json5" +hash = "157af14b7f1b6e69041a1ac5f36b0f661e4cd2abafb17f38f541954578a3d4ef" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_redstone_ore.json5" +hash = "ef3fd8773222c605d8f80ac9d3d9dc31ca9b495624626fe6df501af1b5372922" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_regolith.json5" +hash = "ab0619bd108d1c930ae5f3ce90c6d8bf6e45a1a7d1d9c1e691da9999816589f0" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_slab.json5" +hash = "4461eb0f5d784debc93cdc05718f3e60527595cb54c890e703e1b2d54f18742e" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_stairs.json5" +hash = "87417b709abc641fdc1b7c94a31fbfa24e34cab55eb6557e83332ed1a6978f19" + +[[files]] +file = "config/blockswap/known_states/unearthed/slate_wall.json5" +hash = "b873e7ecfdd120f942be5cbd94fecfa27a28063c332fc75527f5ad6822d3e8ee" + +[[files]] +file = "config/blockswap/known_states/unearthed/smooth_siltstone.json5" +hash = "c11d403df2d89394f50cafdf310c008d3193b56e67c37a629cf0d7d5f252b88e" + +[[files]] +file = "config/blockswap/known_states/unearthed/smooth_siltstone_slab.json5" +hash = "39ed689731f73522b9c60c218f04bac5c91360ed6215215416a772521457eedb" + +[[files]] +file = "config/blockswap/known_states/unearthed/smooth_siltstone_stairs.json5" +hash = "db315aace5fc02e82baeab00942aa552f38a70c7493ce4b61c43fecd126f533b" + +[[files]] +file = "config/blockswap/known_states/unearthed/stone_grassy_regolith.json5" +hash = "a8427ee0b64af6cdfa061118d0aefb879a4daaeb492358c68d03028cc3526ada" + +[[files]] +file = "config/blockswap/known_states/unearthed/stone_regolith.json5" +hash = "914c5427d2ca3f27563f91c3bc4373e2d2a03bdea5788b3df6da48b5db187a4c" + +[[files]] +file = "config/blockswap/known_states/unearthed/weathered_rhyolite.json5" +hash = "d5c78a2a52a79c06c0bc7ac3b59517a7c32248957240d9a3e1017e33585afb2e" + +[[files]] +file = "config/blockswap/known_states/unearthed/weathered_rhyolite_slab.json5" +hash = "353189304a64d7eb9fec44fc5e0e65883e928a9dd2d91dbccc20f34936c671bc" + +[[files]] +file = "config/blockswap/known_states/unearthed/weathered_rhyolite_stairs.json5" +hash = "c37ae39754a90c2b18c4c6e2bef21f6e5d835b20f86361d3ced660c3ceaedc2f" + +[[files]] +file = "config/blockswap/known_states/unearthed/weathered_rhyolite_wall.json5" +hash = "5d29f4a86179cb88a86878affce3a1e99b4ad6127db772597c03d6024db83244" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite.json5" +hash = "49272cbe5f0519800d9b520247c94529a3e9ce69b92a5fd5d6850434d8cda122" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_button.json5" +hash = "b52ff5ae099de1f7ff6ec149be4970a1c086a861532f44c4fb3a03075ceaa3c7" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_coal_ore.json5" +hash = "47361ae54450d47094b9f366a6a4efb1a3f140dbde617801cdf9c17679fb81b1" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_copper_ore.json5" +hash = "a94491f47591662411fcb9d81993a74d0e5d559045ede3e46b76aae09c05b135" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_diamond_ore.json5" +hash = "4b4a9c604194dda335a931868ca6616eada699aab6e3228b3997150ac1a02474" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_emerald_ore.json5" +hash = "9700ea77bd032863e3643f7a0c1e18e45094a956b020fdf6de7ca6735d3b2e8a" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_gold_ore.json5" +hash = "b5a1fa48f9922333c3b8e59fb0365ff8eb2976527b9c2eec0c780e9d1fd2ee35" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_grassy_regolith.json5" +hash = "660b42ad7c867e7aaa265b3585be1e2a6b21a75f9cc053f0d6084c9f155033e6" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_iron_ore.json5" +hash = "100882ea7fc0ec17875ec4434f757006830bf932f79aa84e4733a7f7097f89c2" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_lapis_ore.json5" +hash = "8831f37686865c371011da95a85e88af08fd420bcdb751b5a18ac8cb621634ef" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_pressure_plate.json5" +hash = "dcbbb2e4c3b215a1a2a7594f8e2acbad37171fa6dfb11729f8871ac36e5975bd" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_redstone_ore.json5" +hash = "a16eaf3071fa35470fb620ead820281b5d71a156ff59dafc17cf726c01255cc6" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_regolith.json5" +hash = "257029345c4337e462016b82ad3426b1f9ee9e4eaeca697c948bba62a2ee28fb" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_slab.json5" +hash = "d6cd19d8fa36bfc94a7be6e4288f492051a6ca8dd19bc96ed037172960b330d9" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_stairs.json5" +hash = "44126f0cffd32776f68640f99d03ea55ad6b00bd6a7b27ba6741da075b99d7c2" + +[[files]] +file = "config/blockswap/known_states/unearthed/white_granite_wall.json5" +hash = "cb7c46429d9ff82748fe8538ca0af06e96690d265404dab15de7e1e0c8e2bcd2" + +[[files]] +file = "config/blockswap/known_states/valkyrienskies/test_antigrav.json5" +hash = "ef34bf5005466a73fcf267a1991742a648fc69b27d44c736443b0728f3de54c8" + +[[files]] +file = "config/blockswap/known_states/valkyrienskies/test_chair.json5" +hash = "14117feb7c4a6457137320c37ec4fd83bbac787bbaeb953f50559403fe235eab" + +[[files]] +file = "config/blockswap/known_states/valkyrienskies/test_flap.json5" +hash = "3ee5a467a138d25fe204cc29767b4a2ee24fb8768d8cd0e426c1edcf54a051d7" + +[[files]] +file = "config/blockswap/known_states/valkyrienskies/test_hinge.json5" +hash = "d12d4c2cad07a342d8211e5d3e40c7fc3343bb3675e1f8e473cfea6ba4372c3e" + +[[files]] +file = "config/blockswap/known_states/valkyrienskies/test_thruster.json5" +hash = "0ea78b7368c9e53213e4ebf98c16be204a5a0d215c9158da7944a6a83f67737c" + +[[files]] +file = "config/blockswap/known_states/valkyrienskies/test_wing.json5" +hash = "bd47ed719a8f342749baa1dc4ab0c13681212c36cfad829ce1a34b937587d3a8" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/air_compressor.json5" +hash = "add013566e7f6ab83b673f9d6c5cdba27c062acdcaf59a1265567c9a43539398" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/alt_meter.json5" +hash = "08785a6535f3903cea55345b46996abce54e5a72ff28bb66f69b4994188245b1" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/andesite_flap_bearing.json5" +hash = "64e15fce28d19bf6744dd2c9254b98dee08ceba87dc0a697c94047d68c28d0e6" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/asteroid_block.json5" +hash = "596e17ec8cd74145d8f96a2fddeffc04a89dbc33be37a99d186a5fc6144e535c" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/balloon_casing.json5" +hash = "92f59bef2d259521a6af82a3301960b29e3c0acabacadeb6d0fc1657120691b5" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/balloon_encased_shaft.json5" +hash = "689b6fc00ce2f3e6d6a3cb7f7ee9667d5611a115225483c277aa33dcd828d612" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/blade_controller.json5" +hash = "f808a330ec8eff6af53b727396e2185ebf0c6437dc64e0c79e3f98179b48043d" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/brass_propeller_bearing.json5" +hash = "473bceb8f21b4376c4563f88613de293e330162895ba23eed3eeab0e50905094" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/charged_nyx.json5" +hash = "6446a2e4d297531e85eeb87f5abed8f730d2d7c5a7e8a5efcc92818992d1861a" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/chiseled_wanderlite.json5" +hash = "5542a0c9e3b75b48832bdd640246cc72645bbc5b9d3092469a8d704a1a40ead3" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/clock.json5" +hash = "aba3a54fb933f4096e6b77d6920e6effe896a5b187b382aea2f8130c6b15ba0e" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/coal_burner.json5" +hash = "ede5a24cb144b3e3dfd36e6cba1c5a2c0bc82c748df996b012b8564e9389cec0" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/cobbled_nyx.json5" +hash = "666aab7d5d2ab43f6ced50aeed1420e5b0258a89dda48d2b1d5d2c90df2f5fbd" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/command_seat.json5" +hash = "774d9d96f83de9ffdeed8527bbd947822e5d644263e0cbc59c80328bc3d32c81" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/copter_bearing.json5" +hash = "164c052811e132279053ad67e071b09698d90dd6b0f884fceb3882546330dd44" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/creative_gas_generator.json5" +hash = "29551c0c7e81e5a3f691ffa5a10ef0824fd5ecc4a50b44bfbf4d7e876b4177af" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/delivery_cannon.json5" +hash = "8062fed52f370e9ee577673dca3004887e7b4dd81a5c901ada9d9f33f9996c55" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/delivery_chute.json5" +hash = "4faaea8df6e9998349b567f0fda45b9e9801c319c79b0bb7c1bfea1173e84a46" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/distance_sensor.json5" +hash = "46f9c23393060ce556370762b7931059979e340e045861f5cb2fc0185610fd22" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/duct.json5" +hash = "31a6d15cd2b6171359fca6bc956991e6b05c8dc96e99742ec16e63ec2429014d" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/duct_tank.json5" +hash = "2c62f5cab4f9f09e3f9cab85ba11b012e0aba75a5466221901aa9f81fbe77f70" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/exhaust.json5" +hash = "497a2d894c3be785b2c19d4a5b860f57d16a42f00c3be99199872acc6265cde4" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/extendon.json5" +hash = "4db77a691f2c6aa3cb8be818d7d8088af78b6968b12edca642ecf76e295b37e5" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/flap.json5" +hash = "feb702c483c7be9ba18159d42911ff1b83a58b653fd98564aabd7d0fbef3bfe5" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/gas_backtank.json5" +hash = "173f85b6afe5048d30adfe5222af1a0ceff63f217372eca6039faba399616d87" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/gas_crafter.json5" +hash = "f73be56b89856b90894c4cec7524d3420f7f1abaf6c51be681a133f867cbdc58" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/gas_engine.json5" +hash = "c36473512375ea81946a28a77d914213df29ab3a53ac6a8a9a540a24a1c32e29" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/gas_heater.json5" +hash = "51e8af114e0c32f93e8cd7ceb279d4cbfbdafd91e4d793b9d946f872f129ad7a" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/gas_nozzle.json5" +hash = "ddf0e65b5dac63f369ced59162958ea6d3436b601fa725ec4b935110cc0679bd" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/gas_thruster.json5" +hash = "d6be5f5e54dce9496825dcea015f9a6145714f20bb41af7e5efda25143761a64" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/goo_block.json5" +hash = "73876826d09d925558456edae26304b9b8b40afd45d1f296005ba3dc1a639d22" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/gyro.json5" +hash = "afd2da9e87379e933600c6c1bc56581c3d2b220871a669d820ecf0d91302112f" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/gyroscopic_sensor.json5" +hash = "e6a45723362758f61aca6b222960abaa57fb8f2abf1bf9cfc5ce1cbc6fa10bb4" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/hose_port.json5" +hash = "d1087da8f6225e633c3ce481dfe64c312d3d0ce39e39b682f9ad3b15ce6d2f69" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/impact_sensor.json5" +hash = "b0cfe171deb1db1d15cad884d6c320e1e814ee94d318f30604c4bd75d99dad26" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/juryrigged_propeller_bearing.json5" +hash = "fb0eaa3ac67b8f3c90eaf5c201d9be61f53547e3dcfebde05ab116e7a29267b1" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/lodefocus.json5" +hash = "343e491f3130dfcd582c5e4d2886a4996cb27b1b6609da130c9f7470bfe4a880" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/nyx.json5" +hash = "c81e3ba0011a768ace9c664c4a5ab97cfce64ef3964e36aa6b9fd0c5c0bd58f4" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/phys_bearing.json5" +hash = "765fc029d00a87bf3cc004190d8392fc1ac2e9fdb06f221051a4a32449a6b75b" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/physics_infuser.json5" +hash = "70a6002d6f7d16f42b70ffd483245853a6461c068e8be76a598a555eb33cde45" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/pump_duct.json5" +hash = "363a7f3aa56a94efb5ee3e34d54b8b6497c5fa4054fbb70f1a9470e76be16511" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/reactionwheel.json5" +hash = "9038d5559dd2e5b8ae8d6f746b5a2f58f25f7ed3865d2cb13442e2683d5b5076" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/redstone_duct.json5" +hash = "ce737903379cee3dced24ddf08f2347d8cb228cf626ba621ab6114e0eb9e4f9b" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/redstone_resistor.json5" +hash = "e06cf5babf8842e1957fa0763c21716f69779019d55ae42f01ae5ff704cde222" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/slicker.json5" +hash = "f0a11a1514fb7bad622df2b027208e73de14c94f3560a3507adeff5cede8f9bb" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/smart_flap_bearing.json5" +hash = "5bd2129d0f2f47e35846eca8a61fa95ba0fe793f6e16aac54ef2b1737f67b87d" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/smooth_wanderlite.json5" +hash = "ec26c799e6b31371f93019293cc3648483c5bb2879c166a0cf2481f02b87f515" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/smooth_wanderlite_slab.json5" +hash = "3a663b2a3bcc62b3a17107f4c3414af531cc2227dc71fb5832c4e8686f33f968" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/smooth_wanderlite_stairs.json5" +hash = "5ee1e6cdb102a30a821c63663dc18e03f4a78a3a85b0d9432547cb130d2399d8" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/spinoff_bearing.json5" +hash = "f8075a253c634de5c7e303b94287b1f75c438ee8cfe7b5f326e0fdfcc3b9c7b1" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/steam_generator.json5" +hash = "a60aa87869e2f8cad40a72af3c4f2f687c6ce525b13f7da9bb4b2ab0db9541f8" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/sugar_rocket.json5" +hash = "df56b56e838a28f1ddfcdb44634fdbf5b2d94a9312aaeda9689d49355597a6c7" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/universal_shaft.json5" +hash = "52b4c892a34ce1ae10778f92a48ec517903359b060a37bbac5606afa3b1d23b2" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/valve_duct.json5" +hash = "78e00a650e68245c6bba66f145c14bea503925e95eb11f746e38a35f361f5aa2" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/wanderglass.json5" +hash = "1b51bf83b2a8366242e146bdb3dc33b3915f0ff74aa95cc38562b4ad75f3161a" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/wanderlite_block.json5" +hash = "43d15b030983f3d13c6c345676870ed3206f97b7786f92e4c0ea5dc490363579" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/wanderlite_bricks.json5" +hash = "103ccad8d3d406565a92a9549f0ac0661c44eafdfdf446d794bb4ab35b4b14cd" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/wanderlite_deepslate_ore.json5" +hash = "74ea9996cdb765ba24efd0714cdd58d8616136cdf65117f1c8c4141f22f84447" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/wanderlite_end_ore.json5" +hash = "65a0619e31f6a6331014c24b407da614af441cb5598c229cb228709d4cbc7e82" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/wanderlite_nyx_ore.json5" +hash = "9c198536592772cd60faf36f14b5b2159294e931a3e7ae95120452e9e6831bb5" + +[[files]] +file = "config/blockswap/known_states/vs_clockwork/wing.json5" +hash = "52c7a97c972dc72df4d2c43c0a989b34dca89e501f66e45ee7b66bb12eaf71aa" + +[[files]] +file = "config/blockswap/known_states/walkietalkie/speaker.json5" +hash = "56e408b82f537f2f9be23ef3637ce4193f4bbfcc22caeaeb6c2d49d0e7559239" + +[[files]] +file = "config/blockswap/known_states/yttr/ash.json5" +hash = "eabd437a51b0dacf64f171ba36e8667657f61bea77cdadc3af0ad6eb08c0818d" + +[[files]] +file = "config/blockswap/known_states/yttr/aware_hopper.json5" +hash = "93f1b19ba915bd65452fddac004637414bb733821a7c13d37929e46c503d798c" + +[[files]] +file = "config/blockswap/known_states/yttr/bedrock_smasher.json5" +hash = "a07d0f34e562c6db66a80353135d3016864cb7c65e10e7cc73892eb30d790d84" + +[[files]] +file = "config/blockswap/known_states/yttr/black_global_pinch_glom.json5" +hash = "78ac2dd6f73c132262e5e13b0988ed8ec1049f3f90f3d5ac6d260eda596396c6" + +[[files]] +file = "config/blockswap/known_states/yttr/black_pinch_glom.json5" +hash = "b7f776fc429dd2367a52d37fbbece0e6e813acb8638615eaf167789e9c611b2d" + +[[files]] +file = "config/blockswap/known_states/yttr/black_void_glass.json5" +hash = "44dfa40722eaabcb50a784e451def35d36602c5f1820cd6b6381b122af1c9df2" + +[[files]] +file = "config/blockswap/known_states/yttr/black_void_glass_pane.json5" +hash = "52faef237ff9935770ee48c344e53bb1aa4aa389bab40506d9ff72ac3f05ec09" + +[[files]] +file = "config/blockswap/known_states/yttr/bloque.json5" +hash = "41ae68f63aacef5549fb12d8f6655cd92a3a2b89fbc61faad4c38116ca2aa0a9" + +[[files]] +file = "config/blockswap/known_states/yttr/blue_global_pinch_glom.json5" +hash = "9039f4a9d92aa92b9a18b0cae6a45728cbc0662c2571f82c12b40e1c2d529efd" + +[[files]] +file = "config/blockswap/known_states/yttr/blue_pinch_glom.json5" +hash = "73de4607d5302a540fdb5642078efa77a6da5ceaab4c518717c1b9b809b80331" + +[[files]] +file = "config/blockswap/known_states/yttr/bogged_high_note_block.json5" +hash = "abd8c87b32958cc80d67d31281ad35bcc23da902f1504e2c76ad0cdeafe7f4b1" + +[[files]] +file = "config/blockswap/known_states/yttr/bogged_low_note_block.json5" +hash = "644f6df8591c45dcebd729f8b8f1853621349b0d1f1c8f4562a0ef6e00ae7db3" + +[[files]] +file = "config/blockswap/known_states/yttr/bogged_note_block.json5" +hash = "e2348510a39c6694cced50a1d469f7d21999ef02fd5e1ebb70a441561c4997e8" + +[[files]] +file = "config/blockswap/known_states/yttr/brookite_block.json5" +hash = "457ebb01bcfad56ca3470b795f3a5a0ebe83959ad6d1296ae7f2786528d475ea" + +[[files]] +file = "config/blockswap/known_states/yttr/brookite_ore.json5" +hash = "93250e79a70eb96b99dcc2b4665e89e66360cc03ef220bb92605c728dd4831e5" + +[[files]] +file = "config/blockswap/known_states/yttr/brown_global_pinch_glom.json5" +hash = "69047ffbe42e25bf3035404e7145258194f3cde6b122b26d02bbb58e2f0af638" + +[[files]] +file = "config/blockswap/known_states/yttr/brown_pinch_glom.json5" +hash = "b8cbf7b1f8e54a188a2d01acd92b2359c00f0d156533481007b4440380000e5b" + +[[files]] +file = "config/blockswap/known_states/yttr/cage_lamp.json5" +hash = "88c2e2cc81a341bfecd187a11105baacd8b3d374d03ca2cfbcd04bc88ea5af78" + +[[files]] +file = "config/blockswap/known_states/yttr/can_filler.json5" +hash = "3c94082165441b05b430a8c150401764472c53d910c58b28fb64ed20024fa3b5" + +[[files]] +file = "config/blockswap/known_states/yttr/centrifuge.json5" +hash = "846ffe899adb724cf9c44d71dceaa00716c78984ccd43b0e3aad59cce638a1ca" + +[[files]] +file = "config/blockswap/known_states/yttr/chute.json5" +hash = "f0c43678efeedd2867b40e692da1a531b71c61cbf2ab08119165ca19975b5289" + +[[files]] +file = "config/blockswap/known_states/yttr/clamber_block.json5" +hash = "4881830d9152f68f49533fe1226879e6b511d98da9029bb61d4731cc3691b943" + +[[files]] +file = "config/blockswap/known_states/yttr/clear_void_glass.json5" +hash = "8cca927a97cdbad4dea24b13189fc1a5126ff03239639aac53aa074004391bfe" + +[[files]] +file = "config/blockswap/known_states/yttr/clear_void_glass_pane.json5" +hash = "0d685725e1b71a675cbf6c1f1637627fd20dc6eb4959c4097178a0d8e43fed8c" + +[[files]] +file = "config/blockswap/known_states/yttr/cleaved_block.json5" +hash = "894f94ee577313b0f158d57dd7449663df9be27945d418751d94653dfcca173d" + +[[files]] +file = "config/blockswap/known_states/yttr/compressed_ultrapure_carbon_block.json5" +hash = "2991255df30c92fdc25348a149acfe51947edd6d995ad8fc0957a12e9d216152" + +[[files]] +file = "config/blockswap/known_states/yttr/continuous_platform.json5" +hash = "ae020e579f4e25d9dff1715c9018450c4a1c052d731a3c406524f3bfec8fcd86" + +[[files]] +file = "config/blockswap/known_states/yttr/core_lava.json5" +hash = "9f28ee280a5907d527463b4e0b6c940b54ded9394f545650f58f2e5f5ebacae9" + +[[files]] +file = "config/blockswap/known_states/yttr/cuprosteel_big_plate.json5" +hash = "d2ef1e55fd4899d8092b613ef20ed8c55aa9f79ac9288777cd7ddc209dbec8d0" + +[[files]] +file = "config/blockswap/known_states/yttr/cuprosteel_block.json5" +hash = "9825a809365cac9658edf6d47873dc868911a4157b90a4f8dbe6bc9d914e38d6" + +[[files]] +file = "config/blockswap/known_states/yttr/cuprosteel_plate.json5" +hash = "057970e70a8479e05791aa4a173f280393c9a6dcac35a48db2c02c59aa952ac3" + +[[files]] +file = "config/blockswap/known_states/yttr/cyan_global_pinch_glom.json5" +hash = "496718eaf4eb7c99042d7f1be1382bd742ae7b5b292bdb4041df09292415ea08" + +[[files]] +file = "config/blockswap/known_states/yttr/cyan_pinch_glom.json5" +hash = "e7434fd7059f3e58ca807a36f46f3de41e000f04d0a1947a3c6677c03d156aee" + +[[files]] +file = "config/blockswap/known_states/yttr/deepslate_brookite_ore.json5" +hash = "e3a6c2070e67dc2493180566fe16f9eb79602efeb17164274c200c59933c17b7" + +[[files]] +file = "config/blockswap/known_states/yttr/deepslate_gadolinite.json5" +hash = "f98cfdeb727a0745744b016d078e9f30af0646bb1461aedc2d13ae4405b8caa9" + +[[files]] +file = "config/blockswap/known_states/yttr/delicace.json5" +hash = "8866983756c9059fcf4bf7762757023aabb2d05e359f5d2107e374024e0de940" + +[[files]] +file = "config/blockswap/known_states/yttr/delrene.json5" +hash = "6b494f30fa3c6938b4b92adc4386cf479a23475f9c29af2519c40cb0c761fe75" + +[[files]] +file = "config/blockswap/known_states/yttr/diving_plate.json5" +hash = "daad51a4e26aaa71183fc74ea1c78c3ffc1d9b1391e9251041de059bc3e30898" + +[[files]] +file = "config/blockswap/known_states/yttr/dopper.json5" +hash = "5dd7bc0b583c4f821c97e822e76a12ae5dd8d9f5efd3501c899d50619e6e21b8" + +[[files]] +file = "config/blockswap/known_states/yttr/dormant_void_geyser.json5" +hash = "6c42c4894b99fbcd0b31587a449b2311b3197a515ddb25c2220a4b32033ac597" + +[[files]] +file = "config/blockswap/known_states/yttr/dry_ice.json5" +hash = "72ea84efd63a0067d70e1a08391115498c92d3b7b9d38dd45974dbd63c05803e" + +[[files]] +file = "config/blockswap/known_states/yttr/dsu.json5" +hash = "607af954ed128080e42971450d12fbe4fdc7ba8f842c02186db5cd03d28d43d1" + +[[files]] +file = "config/blockswap/known_states/yttr/dust.json5" +hash = "de2353a4f55d852ff2159cca11584f415b13b42e2a23d1cecc982180f048fbf8" + +[[files]] +file = "config/blockswap/known_states/yttr/dyed_project_table.json5" +hash = "63bcba3cca99cf97028638c88148323743b37265cb474e5fa97df3c39d9582fe" + +[[files]] +file = "config/blockswap/known_states/yttr/encased_void_filter.json5" +hash = "b6fdec74497a96092fb2d7f8f424e5b7c4269dcc780f252cc87034343af15c97" + +[[files]] +file = "config/blockswap/known_states/yttr/eroded_bedrock.json5" +hash = "7fb6d218bdc542175337840bf07d6ea17c9c035c17407cd9f01ec24dfa258b3a" + +[[files]] +file = "config/blockswap/known_states/yttr/fixture.json5" +hash = "d7e83760e35207702d98aea7b31f2da44bfdfd3cf5dcbadf4e6b4b8151ea14ea" + +[[files]] +file = "config/blockswap/known_states/yttr/flopper.json5" +hash = "7cc745c86e11c2754690770a21dd7b09cae2686d945bc50ef2e2049fafa4a5b4" + +[[files]] +file = "config/blockswap/known_states/yttr/gadolinite.json5" +hash = "c2e2683f9762c54c09241e942fe0affd71eb1b37c1c0287446481eca1ac387e3" + +[[files]] +file = "config/blockswap/known_states/yttr/giant_cobblestone.json5" +hash = "24857d8f5d155c6ab3198d88ec52f1e5e0936acdfc706da6609a5f2ad181a43c" + +[[files]] +file = "config/blockswap/known_states/yttr/glassy_void.json5" +hash = "1c0b07e2cc64d81c593d94e1ef8c7d229a1023ea7ed7d22f8b9e6c579a066700" + +[[files]] +file = "config/blockswap/known_states/yttr/glassy_void_pane.json5" +hash = "56aa7aeaf65bf9c273d2d4c98b07209330f88566f26dc1ed11a0a9ebb6576364" + +[[files]] +file = "config/blockswap/known_states/yttr/grasper.json5" +hash = "af32649e251be480e682963e52e89acdbb30adda647a02d5b29af221f3f1dc3b" + +[[files]] +file = "config/blockswap/known_states/yttr/gray_global_pinch_glom.json5" +hash = "773f79c3d7b7e4296bf2dd1d7abc003824760ee979dcabfd5b6168fa686f3496" + +[[files]] +file = "config/blockswap/known_states/yttr/gray_pinch_glom.json5" +hash = "89c80c4f115657fa0999b2c299bd9ebdf0dcadfa6474bfbc983902d43af210a5" + +[[files]] +file = "config/blockswap/known_states/yttr/gray_void_glass.json5" +hash = "afbf9f7db8c9c71b6d15ab1ea2cb046fba02b8104f3982fee6df8bde7e533d9f" + +[[files]] +file = "config/blockswap/known_states/yttr/gray_void_glass_pane.json5" +hash = "f44e912bc26e812cb565da22fde8ea6967712381cf7a071e9c2c71fe422fe7b6" + +[[files]] +file = "config/blockswap/known_states/yttr/green_global_pinch_glom.json5" +hash = "26bad248ce65c9dac769b219210b151192a349f01d21c5066b2dfeb7770a9ad5" + +[[files]] +file = "config/blockswap/known_states/yttr/green_pinch_glom.json5" +hash = "dabc00ae736f141a7538c0376304ce1579e9717557d883e52385adb7ec77387d" + +[[files]] +file = "config/blockswap/known_states/yttr/heavy_yttrium_plate.json5" +hash = "0448b8c6419bf202ff0c24983fa89dea50986c4fc90da721e36c6ecc7094c76d" + +[[files]] +file = "config/blockswap/known_states/yttr/high_note_block.json5" +hash = "ca510e244001498c43c06b21bbd7147ded6e06827bbb1af06d300ac16fc37dc2" + +[[files]] +file = "config/blockswap/known_states/yttr/index.json5" +hash = "57a40cc95b4ccf4e5bc855846a1a0decd75c54b87768e4e0f5562a41e1dffc4c" + +[[files]] +file = "config/blockswap/known_states/yttr/infinite_void.json5" +hash = "26ce52cfa9a7da8bdb987be2b56af3b2f7870eb1238efc8155e8c1af745c4d43" + +[[files]] +file = "config/blockswap/known_states/yttr/inred_and_gate.json5" +hash = "b192550dd47ae8765f5841eb4c7a1a9578cf41f8af40379b968cfedd2aa3dbc5" + +[[files]] +file = "config/blockswap/known_states/yttr/inred_block.json5" +hash = "be0191e9d1b255e41d67d74556b802fae559bde3d6d0fdcd7541c6cb09d4bfaa" + +[[files]] +file = "config/blockswap/known_states/yttr/inred_cable.json5" +hash = "7c5961a730ffdf6f876665c5bb8031e733d6ed2407ef63874d1af947bd0d3eda" + +[[files]] +file = "config/blockswap/known_states/yttr/inred_demo_cycler.json5" +hash = "9149d709877cedcf9c41e04cc502aa81144b7afeb440bfaf8e263d48ca510372" + +[[files]] +file = "config/blockswap/known_states/yttr/inred_diode.json5" +hash = "3b4c843efc8dcb42e6c978c932ab35dba60ab7239f7117da79024b663c65580d" + +[[files]] +file = "config/blockswap/known_states/yttr/inred_encoder.json5" +hash = "3bca4ec6741415a0e84b1299ef0d4a8eaec257b4ccf978abcb01f57c78ad5780" + +[[files]] +file = "config/blockswap/known_states/yttr/inred_not_gate.json5" +hash = "ef79bf8dbb077e7f20680dd94e6459538b01c21e934f1ac94603de52b3547c13" + +[[files]] +file = "config/blockswap/known_states/yttr/inred_oscillator.json5" +hash = "80b0d26921c4df1a8ac1b57f60c38e9f67606d5c854486626cf95c00ed303c83" + +[[files]] +file = "config/blockswap/known_states/yttr/inred_scaffold.json5" +hash = "d2def9d3b79bd27494577664d7e4b66c5562c63355d5f5607ea98e846676030e" + +[[files]] +file = "config/blockswap/known_states/yttr/inred_shifter.json5" +hash = "cb977a9748f1496eb1d2d2fa116fa73e0b677d81224c2e52a7d8df05d3528321" + +[[files]] +file = "config/blockswap/known_states/yttr/inred_transistor.json5" +hash = "d62c4795ed21f893791a99a3f4d8a240cb02502e75097c85603e5d4bfe818981" + +[[files]] +file = "config/blockswap/known_states/yttr/inred_xor_gate.json5" +hash = "0a3d1ea2063aa1c012d6621747ff4aa5437d15f1ee4add724a09acdb1483ddc6" + +[[files]] +file = "config/blockswap/known_states/yttr/ir_lazor_beam.json5" +hash = "3ea2dc9d59a870429d80d08f161fc7f7aae1aec67533f62808ad342588e814ff" + +[[files]] +file = "config/blockswap/known_states/yttr/ir_lazor_emitter.json5" +hash = "f47e80424785f7c9ce515132cba8ac3ca401c66ca01a3336ac6279ff32280cdc" + +[[files]] +file = "config/blockswap/known_states/yttr/lamp.json5" +hash = "80b63200863484756b4fd9f218371e8d3099ded6d7f1f3b907831dac8d73d78f" + +[[files]] +file = "config/blockswap/known_states/yttr/lazor_beam.json5" +hash = "2bada500afde8891749be3ec930f5c32096ff14617b6b53e5dbc25d42baeca40" + +[[files]] +file = "config/blockswap/known_states/yttr/lazor_emitter.json5" +hash = "5a69bbe723b8654edfabd9720723aae2c3de131f07cc7d7b5bdc7128e10ec086" + +[[files]] +file = "config/blockswap/known_states/yttr/levitation_chamber.json5" +hash = "ee3064281138045d504647293c57c901ab9028ed3ec36ebd559fac7676777a39" + +[[files]] +file = "config/blockswap/known_states/yttr/light_blue_global_pinch_glom.json5" +hash = "d270c72769a709d79f925b2b3cb32e09d8d31ba4a1db4e0e368820ca685e30e2" + +[[files]] +file = "config/blockswap/known_states/yttr/light_blue_pinch_glom.json5" +hash = "5fd0dd215b81b63a93d1cb006a419bdceabd481e37843c44c7cdafe4e16067be" + +[[files]] +file = "config/blockswap/known_states/yttr/light_gray_global_pinch_glom.json5" +hash = "1a9ed6420a98905382db67229cee83831db8fe994fa0080bec368cfc941f328a" + +[[files]] +file = "config/blockswap/known_states/yttr/light_gray_pinch_glom.json5" +hash = "ee565bbbcabd33d1eb659d7138c9eba367be3b85f3fdac4103a0c7bbed5cbe43" + +[[files]] +file = "config/blockswap/known_states/yttr/light_yttrium_plate.json5" +hash = "d42fd1d2c8f479ce44598be881c48ef7197b86f97ddc8c773b0df8681cbe7aba" + +[[files]] +file = "config/blockswap/known_states/yttr/lime_global_pinch_glom.json5" +hash = "465fd587f6c03be0ded01133324558a1dc8bcdfaa5bd1652e88dc17106c7d4cb" + +[[files]] +file = "config/blockswap/known_states/yttr/lime_pinch_glom.json5" +hash = "d7423753a7832ed98f9294da952aba8d838f44915645cdffe01458b5c1ad837e" + +[[files]] +file = "config/blockswap/known_states/yttr/low_note_block.json5" +hash = "45e2f6a07e32c66f0f9a0f329e1883fd7fc8f4b81cda8241fdf74c80b1ecbdcc" + +[[files]] +file = "config/blockswap/known_states/yttr/magenta_global_pinch_glom.json5" +hash = "e3539629d67137d608f524f5eda0c5462e223db465e4821933e096e1da22e6bd" + +[[files]] +file = "config/blockswap/known_states/yttr/magenta_pinch_glom.json5" +hash = "d4501affb9bf62e827ea83a574fc9cdae385df9e9f20e0f297e406b68a64952b" + +[[files]] +file = "config/blockswap/known_states/yttr/magtank.json5" +hash = "5bf025ebd039599ef41271e94baaee7f321cc96acd2b6dd213e4e7b5049705b2" + +[[files]] +file = "config/blockswap/known_states/yttr/magtube.json5" +hash = "5f3a270ca46b67ab19afae1e12e79b0e2edd3a8cee60497b6bd5fbff60fee61b" + +[[files]] +file = "config/blockswap/known_states/yttr/munched_flower.json5" +hash = "3ee886c971e6d8723955a10daef3d21bcde61c47294f23a4a6010bca90950d85" + +[[files]] +file = "config/blockswap/known_states/yttr/neodymium_slab.json5" +hash = "ad556ba30ac7a89e552af2a42a1e59c65ec41288ce3e85c997095148a036a292" + +[[files]] +file = "config/blockswap/known_states/yttr/nethertuff.json5" +hash = "546fb8918e1aa15f03d38f202456b2276fd1ce2faeb75c84a6abf2b6b5dfae00" + +[[files]] +file = "config/blockswap/known_states/yttr/orange_global_pinch_glom.json5" +hash = "f483e1331652bebfbbecb7649820557fc140341d10ce6393ad0fb6a41f150db5" + +[[files]] +file = "config/blockswap/known_states/yttr/orange_pinch_glom.json5" +hash = "c508e8adb6bb5223089c5520e4ad6af6129f6f903054d5c5b451b5043bc5cbc7" + +[[files]] +file = "config/blockswap/known_states/yttr/panel.json5" +hash = "36c19b038b964a914b51bb3e6a3f27dd624166db6c53a75c80e692466bfbfe98" + +[[files]] +file = "config/blockswap/known_states/yttr/permanent_light_air.json5" +hash = "f51520825b5b42a901fd241a0d81ac9eacd038b68233e755fe08641f0651cc72" + +[[files]] +file = "config/blockswap/known_states/yttr/permanent_light_water.json5" +hash = "1d925408682846213955475427b94d8c6a3220beba496480021336080c9223c4" + +[[files]] +file = "config/blockswap/known_states/yttr/pinch_point.json5" +hash = "8d7bdd3de73da86d369ac2ee1ccf88f48c335c36cd37b8d33833357f74f1bf0a" + +[[files]] +file = "config/blockswap/known_states/yttr/pink_global_pinch_glom.json5" +hash = "29e12659f0aa4ae8f4ec801c6b95058cf88de51b4ecc540936e98c9bd0ba8cc8" + +[[files]] +file = "config/blockswap/known_states/yttr/pink_pinch_glom.json5" +hash = "83eb934aa7919255cd9a5d78a3c1b7e647a4b6b36c7adbf66dc810244446474b" + +[[files]] +file = "config/blockswap/known_states/yttr/polished_obsidian.json5" +hash = "7818205c2d36f00a1d0f818a0ac96cbfe4b60fb1d5f542d271c32d3d41b54f22" + +[[files]] +file = "config/blockswap/known_states/yttr/polished_obsidian_capstone.json5" +hash = "6c4b459d44e59dee5db041d4255740e0600b0229da58abf49132d548fc917818" + +[[files]] +file = "config/blockswap/known_states/yttr/polished_scorched_obsidian.json5" +hash = "e144eefc77f5fcbc9d4b3d7b57f98ab971930b11c4e6308c07f50d854e65ecc3" + +[[files]] +file = "config/blockswap/known_states/yttr/polished_scorched_obsidian_capstone.json5" +hash = "f4d1baeaf740e1792d99cb89a802d958fb803215b3468c2e4e2740c5374c5a62" + +[[files]] +file = "config/blockswap/known_states/yttr/polished_scorched_obsidian_holster.json5" +hash = "a95b7ec6c5b2f001554a03b881a8f82b5cfac9634bacefe985fbb51d9979aadb" + +[[files]] +file = "config/blockswap/known_states/yttr/power_meter.json5" +hash = "0094dcfc7228b1655b5e65e0f9fc66ac39f7cf2f82587ed8a8c755cf4f779773" + +[[files]] +file = "config/blockswap/known_states/yttr/project_table.json5" +hash = "63beb60f9a01ebde19f579b346a5a3b72d41db10a32266b8a41d4ea0b3de5003" + +[[files]] +file = "config/blockswap/known_states/yttr/pure_void.json5" +hash = "bb474eae4a9fe578dffe0ef6bfbc64b1c42a208821c0640e81b773ae5371bc1e" + +[[files]] +file = "config/blockswap/known_states/yttr/purple_global_pinch_glom.json5" +hash = "5708db2e980785a7a12ac6a295ab76a16c27ce69d438bd2898e8b0454293ebec" + +[[files]] +file = "config/blockswap/known_states/yttr/purple_pinch_glom.json5" +hash = "b0599dbd29f72e688e04770af435dc8a1f2d85e7f5beb827c1d19bfc0d9f8cda" + +[[files]] +file = "config/blockswap/known_states/yttr/rafter.json5" +hash = "1320d9d3a3557843e7dd0354b3f79f3ec615fd3434703c931816b032117c35e0" + +[[files]] +file = "config/blockswap/known_states/yttr/raw_gadolinite_block.json5" +hash = "27fc35e93a2f764d43248066930926092aa67bdbb7d4737edb6d691ce5bcfb0f" + +[[files]] +file = "config/blockswap/known_states/yttr/red_global_pinch_glom.json5" +hash = "7e6a6121fb3baa9b611e4578d7959410819820257649e045758a0fdbdf154675" + +[[files]] +file = "config/blockswap/known_states/yttr/red_pinch_glom.json5" +hash = "baa5a13de24c3061479b398e606e2ab70f64cbe9b8b62e98ede225e6e528032b" + +[[files]] +file = "config/blockswap/known_states/yttr/replicator.json5" +hash = "7d51a9603dffe38f852e9e52a0f1172df7c3b61b1be35f336b9bc0cf313b7a9d" + +[[files]] +file = "config/blockswap/known_states/yttr/root_of_continuity.json5" +hash = "d1dcaf3f356b656e2044b421a2a939a799727c2013c299c2e8dfc574eb1a23e9" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_bedrock.json5" +hash = "3ddb0ef1443ced4e4399959f3173ecb6a623a8d1dc7d1aed50bb2f942659624d" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_bricks.json5" +hash = "91204f74282e329855d07ef2a36bde8ba4bb7750d77d75ddfcd284e5c4f01578" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_cobblestone.json5" +hash = "6169c3d987fa1c436e711bc7c1b53a9e91b35f985cbfa352e77772eebc134994" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_construct_rc_1.json5" +hash = "aa1c69518cc1faf8ca62351bd3872eecba49077b1f67478a8314d598317d57aa" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_construct_rc_2.json5" +hash = "de8b88db4ce52699c6b13915d434bf0f7efc76f9cdbc8fa200e87f4c7ccce526" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_container.json5" +hash = "7345660a58668c854405883b9838e7e02c0256f7ad0bacb1b5bfa6e6b70868df" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_device_bc_1.json5" +hash = "bda2dc156b3527b5e18f2ac89928efcbd9a42884e8666037ab92c6b7af3a6868" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_device_bc_2.json5" +hash = "982b594836f74a5fb6e13def8f853c732743ac2691333b991167ae5b44036702" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_device_fo_1.json5" +hash = "e3849b5103f654699b43f211e13bfcb6f80b482588d3d1bd4663d8c045aadb92" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_device_gt_1.json5" +hash = "0fea1db03c43800d8f2e201781f6369e342a8442e353eef4adb98f87817a17fc" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_device_rp_1.json5" +hash = "84afe7e0994fc3bcb11eda4d1b2c334384690cfd765a145dbc60c76fa9de1159" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_frame.json5" +hash = "c94b15c9efaf6a484ce913765d5a36b29d68d05c4c8f14469c4dd2591c19a7c2" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_lever.json5" +hash = "8be4addec1820e5c3039908a649e01bcdf9e032b89b385b009e71fe5f02d0583" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_pipe.json5" +hash = "a4a750b2b5b12c37da4d2d4d85278d74e97e8b9d4b7a7360723ae72b266ef185" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_tank.json5" +hash = "6ae3b4f7ad90706b50390fe3a03ea6ebf9042d5a1aaa6b54297ad81d28912ce4" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_torch.json5" +hash = "baaf46089284a2bf368b66a2232d7b8a6af85463175b6a6b5eb36bfa0b75a025" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_tube.json5" +hash = "24ad9808f988ad3921ff83a0a586eaeef10c2125577aa5607684e5caa2d23c34" + +[[files]] +file = "config/blockswap/known_states/yttr/ruined_wall_torch.json5" +hash = "805c745b1cf1b785a6c21d151ce9cb103793930c7d773caf0cefa717bf9edb0e" + +[[files]] +file = "config/blockswap/known_states/yttr/scorched_crying_obsidian.json5" +hash = "fd36e5756707146ea4f1bc81c4ba1118a00f4071a03ed3d5eab066d7bdbee2ac" + +[[files]] +file = "config/blockswap/known_states/yttr/scorched_obsidian.json5" +hash = "c71e33f57353b5acdbfdd377094783a862f395110d101c99d3987f05c177c93a" + +[[files]] +file = "config/blockswap/known_states/yttr/scorched_portal.json5" +hash = "24d2b4f206e0eb4d0a2d2c70921a5015fe018cbc8de47557eb0c9cefd44d7e4f" + +[[files]] +file = "config/blockswap/known_states/yttr/screeper_nest.json5" +hash = "d9601b6eeebabc2603833a7d21b339e87a42d3fd6d0a76bcf094ad26253ac122" + +[[files]] +file = "config/blockswap/known_states/yttr/silver_void_glass.json5" +hash = "c37fa6febde8327d4f69eedcdd6911e98650ef2c8023d4cb2f307a712cc0772c" + +[[files]] +file = "config/blockswap/known_states/yttr/silver_void_glass_pane.json5" +hash = "a303385c4667f4d1eb4521c94c16619b744e664d8b6e0738f052f87ae6e8b27b" + +[[files]] +file = "config/blockswap/known_states/yttr/skeletal_sorter.json5" +hash = "771684579b2919039c24eca47501f0c61b2f2c68214ab0f55f5da3db6ecbe8fb" + +[[files]] +file = "config/blockswap/known_states/yttr/soul_clamber_block.json5" +hash = "f914d59c72bcd55577ec62e4e8495cf8b8a7b65f4bf81efef41cf0acb3346dec" + +[[files]] +file = "config/blockswap/known_states/yttr/soul_planks.json5" +hash = "a217821958182b0a5d44f64747dbc949f478e2533fdf8f1f512982370f44072c" + +[[files]] +file = "config/blockswap/known_states/yttr/specialty_bedrock.json5" +hash = "9e6a3709112b011e24787a311e462deb34a9cd307908e52fdac8e602a3fd0442" + +[[files]] +file = "config/blockswap/known_states/yttr/squeeze_leaves.json5" +hash = "9d65ff5a42d57d5d01a75d52998fe21392e97487a7ba6af49c2eeb80e7b2728c" + +[[files]] +file = "config/blockswap/known_states/yttr/squeeze_log.json5" +hash = "8d03d00971093da80aee9f024c9bc4eda90d865e30ec4948a842a6625d479c3c" + +[[files]] +file = "config/blockswap/known_states/yttr/squeeze_sapling.json5" +hash = "795521bbbb5200ddd5bd6fa8213a4d0720096fcb4a7b000af782aab5ca3a46c6" + +[[files]] +file = "config/blockswap/known_states/yttr/squeezed_leaves.json5" +hash = "c96d22a77c26c2d7f292406973521126536d483be20962b2896741520cbfcf15" + +[[files]] +file = "config/blockswap/known_states/yttr/ssd.json5" +hash = "67e8556863b679fb0bd84942b14db466ffea1c4d0ba6614b89fd11df20be4155" + +[[files]] +file = "config/blockswap/known_states/yttr/stripped_squeeze_log.json5" +hash = "bf8f33dd5d0a2431ab1a2630841b4dbded71b84912bdd8f577afe94b97c380f9" + +[[files]] +file = "config/blockswap/known_states/yttr/studious_grasper.json5" +hash = "112172035f310896002fbd2be1048682a814182f21cb43cec94017e3df14fa92" + +[[files]] +file = "config/blockswap/known_states/yttr/suit_station.json5" +hash = "5a4f30f6a26809884379568dc078b1e810afea64f2d3b460cfa6e6a31b2c27f6" + +[[files]] +file = "config/blockswap/known_states/yttr/supercooled_neodymium_slab.json5" +hash = "e8294af88ee07a8f5fba831cadcf189c33ca8bfef4354d872b453097ec3c950f" + +[[files]] +file = "config/blockswap/known_states/yttr/table.json5" +hash = "9430d7dcd6d5cfd19b0f60efdf74365cd3c04551584f51e2d59652f268023288" + +[[files]] +file = "config/blockswap/known_states/yttr/temporary_light_air.json5" +hash = "071bce2fa063419b2fc80a66dd1d7d11543260ec1b3594c0413f59dc7cc272e7" + +[[files]] +file = "config/blockswap/known_states/yttr/temporary_light_water.json5" +hash = "95f12aeec2cc6e2b944afe4495a3b037a2c58d361cd406d65e942b5f10a36d60" + +[[files]] +file = "config/blockswap/known_states/yttr/tint.json5" +hash = "040db62cd09e311a7495cf33b616dc81dc1460f20ca52f4c7e557a34ffa00d62" + +[[files]] +file = "config/blockswap/known_states/yttr/transfungus.json5" +hash = "78b0af288873d5d18a5115f7ffd941e295723759ca6ed84c226f3e4b501a14b7" + +[[files]] +file = "config/blockswap/known_states/yttr/transfungus_spores.json5" +hash = "ca8b41946394aa61209fdb5ea6f71974d2ae2b0c5461003a9c8066e86f56b562" + +[[files]] +file = "config/blockswap/known_states/yttr/ultrapure_carbon_block.json5" +hash = "5996afdf0b0da356729be0c69bb188440bd2c8c905da85ffd545145963db17db" + +[[files]] +file = "config/blockswap/known_states/yttr/upstrate.json5" +hash = "20c66501de40567b8ee69e90fdf6e6be996877daff6f84c1ff1e4de24fde4ee0" + +[[files]] +file = "config/blockswap/known_states/yttr/velresin.json5" +hash = "ec7b5207d28d60be43663d7c03cc7f2c29a1fa016fb51ef0205876a5fa8511dc" + +[[files]] +file = "config/blockswap/known_states/yttr/void.json5" +hash = "9cc85e69996d1d4c6422d67d3e6f2908ea613a9eaa3f5758305e893f9c32b24f" + +[[files]] +file = "config/blockswap/known_states/yttr/void_cauldron.json5" +hash = "d42d57c6b26dcecd5f7f06da0ba3190291f2c66f4be33fda1baae827c608923e" + +[[files]] +file = "config/blockswap/known_states/yttr/void_filter.json5" +hash = "909b20b462da13f108343c9901477f7ee122ad50b5bb8ce591926a6c951e9e46" + +[[files]] +file = "config/blockswap/known_states/yttr/void_geyser.json5" +hash = "12cc134d386d43b75292f5eb62040b0127d6a611ccc8df0ec1754dd05ce67f9a" + +[[files]] +file = "config/blockswap/known_states/yttr/wasteland_dirt.json5" +hash = "8d638537cfd03924cb63d5e4e7d5e06ae311e33969c8ca72c272a56fb2431fb0" + +[[files]] +file = "config/blockswap/known_states/yttr/wasteland_grass.json5" +hash = "a4b9a4f1b9f345244069395956d72aa215c379f33a33261c083bbd9712293d30" + +[[files]] +file = "config/blockswap/known_states/yttr/wasteland_log.json5" +hash = "da6c0fa1130107668a1af02731f305e72d715d5b4b0805a8ed3e13cebb147e98" + +[[files]] +file = "config/blockswap/known_states/yttr/wasteland_stone.json5" +hash = "9233659844a4dab5b996c8e169f8f9a4b977e3d0818236db8ed49fcf6546391f" + +[[files]] +file = "config/blockswap/known_states/yttr/white_global_pinch_glom.json5" +hash = "f229eaf63cdbc8e84927bbe9bf2e75e1f8def773723ed24dd0f8e06d370bf87f" + +[[files]] +file = "config/blockswap/known_states/yttr/white_pinch_glom.json5" +hash = "32e42beb4da93c55d40a335eaff42cabc6986d1ff3b03b26039a7baa1a631947" + +[[files]] +file = "config/blockswap/known_states/yttr/white_void_glass.json5" +hash = "ad607331c784c6d3081bca5b295a406be75d98481fb81572672ace000fe2826a" + +[[files]] +file = "config/blockswap/known_states/yttr/white_void_glass_pane.json5" +hash = "f23d224488331ff76f16963cad87d0164f67fc8d8d6cca94ce6b4fac5d60026f" + +[[files]] +file = "config/blockswap/known_states/yttr/yellow_global_pinch_glom.json5" +hash = "53076572c6081655e0d195ed054417b76b136279241cd4268aec951a4cce1d98" + +[[files]] +file = "config/blockswap/known_states/yttr/yellow_pinch_glom.json5" +hash = "ed07c01db8d3f715a63b467fc266836ddd4a1a11c73a7f661746700c045dacc6" + +[[files]] +file = "config/blockswap/known_states/yttr/yttrium_block.json5" +hash = "1be710e092547fe7c4152016dc959920c6c5176e0f40157bbe053a02a57797b9" + +[[files]] +file = "config/blockswap/known_states/yttr/yttrium_button.json5" +hash = "a3f9f71ccd310a3427eb85678df218baa28edd8fb6ec9c5c402a35b7a8852f37" + +[[files]] +file = "config/blockswap/known_states/yttr/yttrium_plating.json5" +hash = "2a68ad869c3d027de512d5e38acd4f8640b16d41e27d9b5d0f035af25b198f89" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/ancient_sand.json5" +hash = "377ff358175f424eff8ee48bd40c76af9dab13ed22cd6be657dfbab9aed1e8c6" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/ancient_sandstone.json5" +hash = "21e950fba77a3d024904d9cebfd6ea5eeacadf71202b04d35721ccdb4dfa47f9" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/ancient_sandstone_slab.json5" +hash = "549da0b489bf2a50dea08613d559a74ec6bfe042fba463b57af301e20c758776" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/ancient_sandstone_stairs.json5" +hash = "bb12582eccfc11646c7c1a017c60e8c7076fd67dd5acd374c5ab4abcea484910" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/ancient_sandstone_wall.json5" +hash = "d62637372514ec4ef6e5e17357596cac6c84a5c7b4c5048b40eb802bdee1b3ed" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/brittle_ancient_sandstone.json5" +hash = "5ff4b4d1b2014ce3360ada50a80bda15c9c9cde2ffc98f92f0762922e347d1f4" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/brittle_red_sandstone.json5" +hash = "4cfeb3bd56fd893ad2edcb59f4ec9780662877277d19da940b52043bf20ec7b2" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/brittle_sandstone.json5" +hash = "8313d09d7e491d34113eed41ea20103acbb7480498602749bc21afd620e1d739" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/chiseled_ancient_sandstone.json5" +hash = "5e45264e6bb1a13791bfd549a5f89a5a6f94aa658c8718ce8bff8853570e7a47" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/cut_ancient_sandstone.json5" +hash = "2d52b255f77b01da22460be539695f449271f16ebf02040c7bcaf5bc3a19c6cd" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/cut_ancient_sandstone_slab.json5" +hash = "b9563fe9ffcce5c6dea8188b89cc54f1fcfaec60ec3e11d95f9611b1a491ea56" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/frost_lily.json5" +hash = "c682fe2977a1109d66d0c85962bc02415100cb57309e051479474b687244ac36" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/ice_sheet.json5" +hash = "8f5e9b682ef22e11e21a7b5615ee8edcad0916ec91d34cab916eaea82627b8d3" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/icicle.json5" +hash = "354c2412c545b18d5473849c440010b293671f7d021e9b5e58434b5260c701a8" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/layered_ancient_sandstone.json5" +hash = "284e9db317af68b8ddb327a10c50f302dbd1cd314226387036a4ed5cc7804c12" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/layered_red_sandstone.json5" +hash = "08c40fa3ac59418cc5bddd8ff3c13140a501f3635dbb03cff25323da6c65a3a6" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/layered_sandstone.json5" +hash = "81d61e994123bea688e14523983bdd49ab19cda2a064de98bb5edbbf02dfb5b5" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/potted_prickly_peach_cactus.json5" +hash = "5eebc3851645befa13627122e8928ad53385590bd94ce10bb57124c70a2544b2" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/prickly_peach_cactus.json5" +hash = "c68a181f20f25dddfc2f4b16ba4eae817241ee3ddb39d8f0523ec870016544a8" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/prickly_vines.json5" +hash = "295bb4f8bb29535876157dfb347009fda6eceff96e695e7ac8f4ff39941ca0ed" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/prickly_vines_plant.json5" +hash = "17b1e8677ca2d853fa824cf5da46778eabf310cb8c4149cdb25d344340b68bcd" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/rare_ice.json5" +hash = "63404a0e2efb4e39039151ffd09afdfa10d814a0bbaffba8fdbdeb64eb9d9174" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/smooth_ancient_sandstone.json5" +hash = "a6e344935d7c9badcff88ecc65f4e643924e9967409d05212c6ddc17cb280b74" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/smooth_ancient_sandstone_slab.json5" +hash = "e9e47f8eb61c92256a788df038194ed874edfe84b8ac11f88e36a1cd68559a15" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/smooth_ancient_sandstone_stairs.json5" +hash = "720b386d36c2eb8166a6afbeb8fbc6a68d23f206604b223c65f3854b6bf689c4" + +[[files]] +file = "config/blockswap/known_states/yungscavebiomes/suspicious_ancient_sand.json5" +hash = "a310ccbf861257bbf227532ad6c8958bacacf70d266d9901013d23e75179dd8a" + +[[files]] +file = "config/blockswap/missing_block_ids.json5" +hash = "62f528a6cbed5a846e9afb0f42b90e91a7bbbf0948412643d460ea872b8bcb51" + +[[files]] +file = "config/clean_tooltips-client.toml" +hash = "09314a9ba7b3f8ec517b1b2a93cc5ff64209eacf7b2e1465f49ef1e23dab343c" + +[[files]] +file = "config/emi.css" +hash = "73d52312d01b859cdae0f46c97f4296841c46c52e684bfed7f33d6c7ed758c43" + +[[files]] +file = "config/fml.toml" +hash = "91f8d7300f51ccd4e34cacfad79634218ab901bf6ad99a572d32c16a5a8b8d74" + +[[files]] +file = "config/fog/config.json" +hash = "32ac62c5ac949a5cb91a0b89e2ef77922115f6fd32565b0f10539355d099b6fd" + +[[files]] +file = "config/forgery/block_logo.ini" +hash = "1a58d3ffaaf266eb0f6f3574f15559689fa237be980a13b741834d640d9a8375" + +[[files]] +file = "config/forgery/block_logo.png" +hash = "f2938cfb35d857049425b51f59ce557dd8f329e6b76bef68ffb561f118a4def0" + +[[files]] +file = "config/forgery/classic_block_drops.ini" +hash = "45e501b8528ef8d27c2a67efd27304c81cd0503f8b0671094e6653eefd394b12" + +[[files]] +file = "config/forgery/dimensional_tools.ini" +hash = "14eb4e8cd105c580403c4e5bc6bba831c81aedcf4e6e04485c74e9d3f253689f" + +[[files]] +file = "config/forgery/features.ini" +hash = "55e31d4cc91a9d750bcb5c5193cfdae7d4df72d689076dfa03c7beeb4d221c2b" + +[[files]] +file = "config/forgery/fscript.ini" +hash = "06d742af1c186bd89bb808f7ff407865f1c08b1ebf7bb2e52ae2d042b64acd16" + +[[files]] +file = "config/forgery/gear_components.ini" +hash = "5a9291467f9f7918687a0d138a61e396cb9299b0b4ea2e4cf4f4d6f3594f865b" + +[[files]] +file = "config/forgery/item_despawn.ini" +hash = "24b26ac0b8ff13889b6b3b00b2309366eb72c36014a9679a82f4cbff46c275f4" + +[[files]] +file = "config/forgery/taggable_players.ini" +hash = "af3ab16bacd182f93a437c950e93ed8e6df8d18341ededa8115a1cbd624f4317" + +[[files]] +file = "config/forgery/yeet_recipes.ini" +hash = "939cfc95ed4a7480ac08d3f692538a348af72c6db693349c61f93f926976d1f2" + +[[files]] +file = "config/hungerstrike-common.toml" +hash = "b4f762127e2742ff1a62ed2099a49b2d8f1bd8bfb5ec71dee9b0da7289fc28d0" + +[[files]] +file = "config/inventorio.json" +hash = "22954522892b24f7d20d707480245ff0cb4ce66d9cf04f64761198d5c2770566" + +[[files]] +file = "config/inventorio_shared.json" +hash = "26f09fa47335288252b4b22e5fec96f42de26a0eb582f4c35a46f2605225fc2e" + +[[files]] +file = "config/item_obliterator.json5" +hash = "d3de859fa2c2adffaa742e1b4673b581b71f2d7235edfb676801d1f492c58b09" + +[[files]] +file = "config/jei/blacklist.cfg" +hash = "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" + +[[files]] +file = "config/jei/ingredient-list-mod-sort-order.ini" +hash = "8daf20c1c912b9ddd9c4a0fc49d30f15ffd0c746e7aa701a688d8063379be8c8" + +[[files]] +file = "config/jei/ingredient-list-type-sort-order.ini" +hash = "e65eeba3f67f7bdc8a73e4a961abf5e8871191d606f7ab2bb8aca5a92df97b04" + +[[files]] +file = "config/jei/jei-client.ini" +hash = "34588df52d85317d1678a70c5bcfd905833cc7eb3b6077c500789fd2248998d5" + +[[files]] +file = "config/jei/jei-colors.ini" +hash = "30ffef1681a9b0255e65a756406f85b1cca8b0bb3c0fab357c2727e325401bd0" + +[[files]] +file = "config/jei/jei-debug.ini" +hash = "44e73ad4423c5bf0381da8e934861ac552cca4a12d4a007801cacf6eb85d12e9" + +[[files]] +file = "config/jei/jei-mod-id-format.ini" +hash = "e599aee5e27e630bdd45cb7c85ab22c19d7206b89554e217f49908da64e26512" + +[[files]] +file = "config/jei/recipe-category-sort-order.ini" +hash = "d2deb47dbb36e67bd86ba82c942d2131a458e91665dd6dde678c69aee0886cd9" + +[[files]] +file = "config/jei/world/local/New_World__27/lookupHistory.ini" +hash = "e3f2d50f15cc603594bfdef5573903d969c0a842c3a04726ab51d23d6edf027a" + +[[files]] +file = "config/jei/world/local/New_World__29/lookupHistory.ini" +hash = "a3edfa53525d7b86e94b39c9bedbe2f9b3606f17ffa2e032abfde1fcc0d07a60" + +[[files]] +file = "config/jei/world/local/New_World__31/bookmarks.ini" +hash = "e75c4da084d14790bf7710ffa1fc2308c59c8c8663adc059b41bea23f7d96b07" + +[[files]] +file = "config/jei/world/local/New_World__31/lookupHistory.ini" +hash = "5767c4a403d83021234200196cc465f6066ac267407865a9d3a7283109caef48" + +[[files]] +file = "config/jei/world/local/New_World__9/lookupHistory.ini" +hash = "b6b8542382c6bc419115082344385443b163febafe0baedfb1e2871e25409250" + +[[files]] +file = "config/kitchenkarrot-common.toml" +hash = "5181e405bd0c162c45bf95d8aaaa46ddb8d1caa8e58562c28853e6422a00b451" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/acacia_leaves.json" +hash = "31e75d00e9b0b8d75adbc6baf709a96e38f9cf5dbaad5d89b43f50aae6f52ea4" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/azalea.json" +hash = "c68b7f8dbc220818566fad986825c6ef94d1ef566e930967bb3e795cb69e0b04" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/big_dripleaf.json" +hash = "a38e3a8dd1614cb7dfe9dd7e492d25411c26366236b36316e5d17b393935e989" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/big_dripleaf_stem.json" +hash = "a38e3a8dd1614cb7dfe9dd7e492d25411c26366236b36316e5d17b393935e989" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/birch_leaves.json" +hash = "6e24a13c788d5517951a295b1918adb3d59e838fdc4bf2eb05694053306a81b5" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/cherry_leaves.json" +hash = "3d0dca22ad9eb32a1ed55eef07e9a9e520de468e60d2c717bbcec90bdeef3545" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/clay.json" +hash = "8736a99245fd9ff694c0bed4ae7da7e4629969a23c9bcef9fa5b8aa00d0a1aa6" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/dark_oak_leaves.json" +hash = "436029c03c09b1c166bcc347af15a56bdda7f552ef64b52fd9cb059f348a0d32" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/flowering_azalea.json" +hash = "4a4863441e4094ffdb4f01a1a83c0f4b813cdf0b937b274c37fdcff8938f9be4" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/jungle_leaves.json" +hash = "84246fa14bf8f09a31928b7901e47a3284113aac7a5376c3214897704dd5cd88" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/oak_leaves.json" +hash = "e24b8e2d59d81ebbbca055f0de26164abd5ebf769c74b960755b35761211de1a" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/potatoes.json" +hash = "ca6f112d7dbfc41cfc3bdfc771b0c26d825ccb7833eb08d49d31f52b362e0a10" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/short_grass.json" +hash = "aae6455419974085bcafdfa3e88ae37c7d0ecd1817ae9bf9eae984ecf675d4a8" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/spruce_leaves.json" +hash = "5be22fd9b410a3704ad82e72842215ca570c04ffd06f29106a1c08647a0c19c6" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/loot_table/blocks/tall_grass.json" +hash = "31e75d00e9b0b8d75adbc6baf709a96e38f9cf5dbaad5d89b43f50aae6f52ea4" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/recipes/bricks.json" +hash = "a3ad8ec11aa777d0280a016de4cab76d4ccb1e545d9c1a3a4bdbab98823570cb" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/recipes/decorated_pot_simple.json" +hash = "512c8566f6f3fb79869914741ac037e6b7122ed29434dad745e0de180dfd2948" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/recipes/flower_pot.json" +hash = "8fc3dbc01394489b974658f33d99b780af64961bfca48cf111f33c7fbb615e31" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/worldgen/configured_feature/amethyst_geode.json" +hash = "08efca65163c0e07db848ad560676d4726106f8249f7a4551c886be95367fcb8" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/worldgen/placed_feature/ore_andesite_lower.json" +hash = "2a2df6262dc620a31126c43bd9692bd476fdeb20a0c99b65cef76210fb558810" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/worldgen/placed_feature/ore_andesite_upper.json" +hash = "2a2df6262dc620a31126c43bd9692bd476fdeb20a0c99b65cef76210fb558810" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/worldgen/placed_feature/ore_diorite_lower.json" +hash = "3175c9170dcfe87c3ff6892b3b0a8909fadc212fd9297fbf10cab8ccd8b466be" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/worldgen/placed_feature/ore_diorite_upper.json" +hash = "3175c9170dcfe87c3ff6892b3b0a8909fadc212fd9297fbf10cab8ccd8b466be" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/worldgen/placed_feature/ore_dirt.json" +hash = "54d46fe9bc94c417af530963d86b5659716b4f2152f710a147bb5833c8931be8" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/worldgen/placed_feature/ore_granite_lower.json" +hash = "3175c9170dcfe87c3ff6892b3b0a8909fadc212fd9297fbf10cab8ccd8b466be" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/worldgen/placed_feature/ore_granite_upper.json" +hash = "3175c9170dcfe87c3ff6892b3b0a8909fadc212fd9297fbf10cab8ccd8b466be" + +[[files]] +file = "config/paxi/datapacks/debloat-lite/data/minecraft/worldgen/placed_feature/ore_gravel.json" +hash = "c6f7ebb7d5f03d8e30bd4df4acba3dcc8780de069174d5fcdc2d3f128af48233" + +[[files]] +file = "config/paxi/datapacks/statures/data/origins/origin_layers/stature.json" +hash = "6335ff8abe56dc2e3386b1bbf74195f24f6f98e415c2eca224307d6247638a71" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins.disabled/impish.json" +hash = "b9b1f5b6b50251e18deda5122d20dd0e1cb741c788febcbf809160b5e215bd0f" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins.disabled/oversize1.json" +hash = "447e55d4706881304a1938738ea31398c2dc9cda530e572dd492f8cfeacd383f" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins.disabled/oversize2.json" +hash = "e3affd568bb521be80e7273cc6df9645690897f9ee6f2ba75eb8cbead34d56da" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins.disabled/oversize3.json" +hash = "ef5def2343bdc3b05d24c0af3e34e72377f6b5d9197e8e19fb51a40b20b94000" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins.disabled/unaffected.json" +hash = "ddf03b1352cd98c50b313da653f7d7ca16df927c21890fb6ceea1e5748a7ff82" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/demilanky.json" +hash = "703e9e12e3aa8e6d0b5546df6883b7d8497e59c8961e53a4470985bef2b2973d" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/demishort.json" +hash = "51e43269f16a234217519b44c21076202b2a036c1ef2b599c120313a5889f6f3" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/demistout.json" +hash = "45656255fd6f37a7498c04502ecbfc00f5dd841c6487a6a707c04736e836b711" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/demitall.json" +hash = "63b056644734c2d7de67bd9acd4848bcf917cfaa0a0baa6ac218f93b0332ec77" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/hemidemishort.json" +hash = "27f16ddcb71c3d129e8e82b8d27028a27ff2544182d2c60b3798f937bc90b68d" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/lanky.json" +hash = "f099fd949b212331d80555871c7ed809b8c77a2ca6f34bb3bc34deedfe3abbeb" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/orcish.json" +hash = "0180f0cdd9db2f31c2489415a3953dd617a7dbcaa26b9503186a4ad4619e0b07" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/semishort.json" +hash = "1f7f86f5e9e8a9a4b3e25df55bd0ed1902bd48513514c153d744f7c27401efff" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/short.json" +hash = "8bd176711e9cc9e27ed3fd85aaaca39fddbc2f4b177dfbfe20cb7743e45aaf2e" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/sized.json" +hash = "ec27caed74b1251d09ac0b9b3725575d4a7c078a6e2f73ad09100b210bea4617" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/stout.json" +hash = "3a2c5e453d21930aed8ce2e1e5949024dd0a3377b034e0dcadfa462a488c544a" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/tall.json" +hash = "661216b9c1154c61ee827ab2fdc8b13aa9a9a0514b0614e711daec217214f314" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/taller.json" +hash = "7999b6910e9cc8ce784fcb2a4e8365afa33b6e224c55a7d18b21fad6c9b1f2fc" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/origins/tallest.json" +hash = "6aa0a979283618d0e9cd29aa9a1cfc6d321b016493c2a95225bfef6227520e14" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/demilanky.json" +hash = "14748fe909211bac1d7aec829da00e1c4792634918d923c8709f031bb20fde11" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/demishort.json" +hash = "bd76c17bb1ba1369192d479319e7351d42f6ca0fa9be97313bd473e86773b255" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/demistout.json" +hash = "347e7053816e37541eab3713126de509c33e20cf612473dc25c6841443d807da" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/demitall.json" +hash = "bc94ce78301396417505502faf9726164e4f5a8b89b3ec6df50b2ed7059d2459" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/hemidemishort.json" +hash = "41a4f9b39a28604445cb757bb919f60ed924b32f2d27b2842710b220cc35b17b" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/impish.json" +hash = "91efb5213c21127191f4861fea8edb0507259eb590f192aeda0e08efa608a01c" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/lanky.json" +hash = "71f9a3f2bb6682b4e462f48fe42073c78cc0bb7602ca38a0e28991012ff21934" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/orcish.json" +hash = "2074006e14fa39c0210f84e2904076ee7ac06a90187f3ff1742ca19596573902" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/oversize1.json" +hash = "5062976911dd0488491f0114a408dc002aee01b9b53b73214fef15dd17a7cff5" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/oversize2.json" +hash = "b3e49408b3cd049a2d0db49dbec4c1b9037ce3646a9a8ac2e6c3521e32e42f4c" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/oversize3.json" +hash = "5ec9de1d87dd3ffcde3e3c105077fcef827a73b15952d63d3e4eb2e0a294e3ef" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/semishort.json" +hash = "10daf6cfacd764f2c8090508fdb7dce3d9501d6c3f589858c52977f1f3ad30bc" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/short.json" +hash = "0dc9a45780762310bbe3ad02ea3f07fee67ddbd74dd1d3bc6820f13a0d96c633" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/sized.json" +hash = "63006999dc4a16e9964bf45aaf313be3cfd2074ce681cb302308c3f2b5c98623" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/stout.json" +hash = "d24f51211bbe4564bc5a50d4803b82bfa1b5fb06b60b5c1b5b2e7dee7f877caf" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/tall.json" +hash = "c063fee23d204b17956436e4f48dd1c40a8f3c411d2716eb4c72578cd2d93c50" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/taller.json" +hash = "0c563d0ab41a743bdd4ba53fff2e91815e16ba96d612b137795ff86665eb1780" + +[[files]] +file = "config/paxi/datapacks/statures/data/tinkerer/powers/tallest.json" +hash = "202f49d91ff7d62546467e9f383b821fc5aa490319de1b8b5362f87d425084fb" + +[[files]] +file = "config/paxi/datapacks/statures/pack.mcmeta" +hash = "a4215020bfe3cfc8148bb1e9ffdf2914322734404711dfc45eb8b3dfb9be0dbe" + +[[files]] +file = "config/paxi/datapacks/statures/pack.png" +hash = "03cca73f41d2634174bf902e040722a5ded5159c0fab200327634d7971653772" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/advancements/obtain_adoghr_disc.json" +hash = "81b0a754d7384b04c6c0554906218c2384a2b6b190c5c25780f405a20d75d3fe" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/advancements/obtain_chicken_nugget.json" +hash = "1d031c9b5f13dfb06c11b084abc6b69d321b31082f955321a36e203c50688889" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/advancements/obtain_gilded_netherite.json" +hash = "b31179cdd860192c226bb967a3d7cce0843c0b38ab74a16ab562dc8a1cfb0dc9" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/advancements/obtain_glow_stick.json" +hash = "50e969c75dd2d753d86b3da6126e126c1f2131c7874da67af20cc4a327cf48c8" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/advancements/obtain_mysterious_bundle.json" +hash = "e36b1e174195ff9f1061f32195b3e6dc51d3821fd8c626f2c7d1eddb3bde6194" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/advancements/obtain_pocket_jukebox.json" +hash = "3d4489984988f9c9b617996fcf8d9a2a8bce130cb6ebf96a548b05abfe4da905" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/advancements/obtain_rose_gold.json" +hash = "50c3a3e54328f84e06c653e98d224ba68e1992b0b153770e1c5c9c75456525df" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/advancements/obtain_scoped_crossbow.json" +hash = "491720c15f4db48c82ce6c68b2458001691e1faf92f0b01a17ad94debfd67f64" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/advancements/shot_self_scoped_crossbow.json" +hash = "d637fad238de20915177acf756c30fae59e761840dc206975ee19feaff58b967" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/advancements/use_watering_can.json" +hash = "2de50a2e13f88a28421796fbe75288898c2f9b3823f5529cbb7e8208d2311b50" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/loot_modifiers/additional_loot_modifier.json" +hash = "6a3f7a21f1a4c77e49b44a9e7ec23ac313407de93cb014759b50cd40d06655a8" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/loot_tables/blocks/amethyst_lamp.json" +hash = "781754e319e009bb8b77622650e6bb2f19a41f4db77f15a5633946718bcf3188" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/loot_tables/blocks/copper_patina.json" +hash = "535b023046165d7162626c9ebc28fd59669327da531d2fcaa189d0c32f7ea9ec" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/loot_tables/blocks/glow_stick.json" +hash = "f8752240dee68fa6eff4899bb0617e589718ecdb5291f3ab3e96d97d244b7c32" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/loot_tables/blocks/patina_block.json" +hash = "41bda3d2332faa71131cf22ada9bb1857560f4e6df30d32dbdbbf61490945fe3" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/loot_tables/blocks/rope.json" +hash = "ee0bdab8e5e214a64e0ef5a104d7754dea966bacf884aeb3d9644c46e17f3aa8" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/loot_tables/mysterious_bundle.json" +hash = "716f3804c1159b7390621f6fc76abeec8bcdcdfe545e599f32cd825b4b342831" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/amethyst_lamp.json" +hash = "dabe6749de0412f693e169e58d12e47e31ccf4f7a364a275b162049868f61a30" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/berry_pie.json" +hash = "af8e251b717aba147501d58f3a2d39631e2e9948a90bd212cafdb9588d7cec74" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/crossbow_with_spyglass.json" +hash = "5ad93a4d1ac0559858ab8763067f71434f72890c9095a8cb80bb40f81a5649a2" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/depth_meter.json" +hash = "531e73e51341b46031fac1e966a3cc36b2fafe97aaae90fc8382a0fc0921c41c" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/fried_egg.json" +hash = "0c948d00cb0fd99f6a9cc34ae4204eda76191b186de81011111082616a2efabe" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/fried_egg_from_campfire_cooking.json" +hash = "0c1aaac8267a69088ee571c7094cac40830c2d1ee442cd72f478bfb8dfa16cfb" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/fried_egg_from_smoking.json" +hash = "7d4e4bff9b94ba1decad4769b0e4a748cfaa61965d9db5a6a5bb110e1842f367" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/gilded_netherite_axe.json" +hash = "012ab8f5d372bbbf46f2ed118f9be5f68b5e0b4810c677030266222c28e6d732" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/gilded_netherite_boots.json" +hash = "87876398c7e78b4195e5edd34782fc5a4f478ed674e6a430fb107fc311252e12" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/gilded_netherite_chestplate.json" +hash = "791020221bb0e053d7aecf92c27dd1f154ab3ad1f0282c311f77d641c9fff425" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/gilded_netherite_helmet.json" +hash = "d2482ecc785794d8efca3fdb33f382f65c7f01c3f56c17ae08e7e5a42b95660f" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/gilded_netherite_hoe.json" +hash = "fda0895df72b29eb28cf74ac9db88e2595a87bed3e889fcf5c3a51195567c87c" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/gilded_netherite_leggings.json" +hash = "c62d1b8e75af8791dfaf4e462d9fe03cddc742cfb50cbc9e9a2bbf20e317ff91" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/gilded_netherite_pickaxe.json" +hash = "1ab47e169367f08e362cd640bbe98804c5116cd45755feaf214c9eeacffbc601" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/gilded_netherite_shovel.json" +hash = "a20524098be6547dcbd8c96e1236de1d0957513c472009b2fe43f0ff8372b9c1" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/gilded_netherite_sword.json" +hash = "24f9d2c33ffbd066709b7a9d6be8a2adf6f5794a879ea98a5cb0fb13ccfeedeb" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/gilded_netherite_upgrade.json" +hash = "c6719187562f017781b01832e440eec2b59e2d44a4b1a509035efdf46c97dfdd" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/glow_stick.json" +hash = "e703eb962e583b83f11ee4427f78884d58f9556c4d3adf05013e3f47f8f59829" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/honeyed_apple.json" +hash = "f5157f478395995efbd561a3726e30ae58dcfa5127fa9a679670732d6f3170e1" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/patina_block.json" +hash = "19aedd2cb14efadcd8505e9c2867ae2fe26245ff95c06c02db128fc4a9163cd8" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/patina_cyan_dye.json" +hash = "8c0cf42fbb7b531fbfe4c42dccedf8dd0e6740bcf54848c794a5619e0e369d69" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/pocket_jukebox.json" +hash = "208f8b0cfeb8260f2df2337be49ab15e7e7fee9408ad2a2f8fac6840b8c4d12e" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/powered_rails.json" +hash = "37d54b9e945c3f59a2b02593293438b936478a1862261fd52b99f890ec2932a7" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/rope.json" +hash = "5224a055dd3686f44a66db9b9e5f8d5d67133f8b2a45ee542aabcf4e0b5e1371" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/rose_gold_alloy.json" +hash = "93bbebf7d7c00329797588059ff98827e4e0d21459cf2c7f488ee33440e5c41d" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/rose_gold_axe.json" +hash = "8a8e7fe5337e41d657d08af5b84c244997afcde70326813e37ef57c95d5610b5" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/rose_gold_boots.json" +hash = "b9ba148102053853e6a99675bb22a96fe61c510f5518b0f3bd1178b30b499318" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/rose_gold_chestplate.json" +hash = "fda6b17233c9893306ae74f41e0eb546c64f4e9fa89f07120d13bd364f38d15a" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/rose_gold_helmet.json" +hash = "94a62f02a00b3c3ddeb838fce81c1dc70a6f6e918cd85f22beb1d483d32b783c" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/rose_gold_hoe.json" +hash = "94a179a00bb00722708e52d36e5d920e23ab4493ae3e381b87389cbdcf19b43b" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/rose_gold_leggings.json" +hash = "bb9bd5dcd3938caa4976c3a546df3d5c6e013b14f2871da44c41f8b7ddf6bf71" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/rose_gold_pickaxe.json" +hash = "56be7701bb67f4e94dea8731dcbbf3a82948e40bd41182c58a180788c4406a9b" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/rose_gold_shovel.json" +hash = "77a2ac3af536f64aa9d50921cb5baba011ff80940233dd149904756bfcc01b80" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/rose_gold_sword.json" +hash = "d7ef938a9237d07581ea4064172b29041504af32c41b71bbcc20314f3df1d0ce" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/rose_gold_upgrade.json" +hash = "23e6ef5699bfede410a10cefb9521c9436b935899b686f28dac6b784405b8acc" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/trident.json" +hash = "67f05839885ae0b2270ad8930877103b4f30c9e5015be7b3b225586628f8774f" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/watering_can.json" +hash = "0ebb0ad59a77e291cc63b1c00c1dcae9474f075b349662e4f11af625363a7f64" + +[[files]] +file = "config/paxi/datapacks/trees/data/additionaladditions/recipes/wrench.json" +hash = "e515f5906eaf56d47936d6746e46758e50731808bf7d281e5c3221bb9e56245b" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/create/honeyed_apple.json" +hash = "f857c8d79537ab290c020d3fc5c9aa3aa83ee275ed9f8973542409bf07aba6a6" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/create/sweet_roll.json" +hash = "0864e109dbe0564ccfca6f6bfb549a9929254272ce5c5da7e9cec48156634b66" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/crossroads/magenta_bread.json" +hash = "ac775d0b738826a958a90f02fa10ccedf169f87a72c74f913d002b2601b0c673" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/bacon_wrapped_potato.json" +hash = "7a0f1e0095a65d7f102ca9e6868fe987b67ab47f7f9bc3bf8d232f3a33126d4e" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/bamboo_potato.json" +hash = "09e62571562e4a36a8ff4756e6ca8886f5877bb03ea57061881c1a2c6aa147e8" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/beef_in_dripleaf.json" +hash = "3de8d56c738e53c467b8807f929cd7a5468badc866645ab3399402aeec165ad8" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/beetroot_crepe.json" +hash = "54e5a79df4448dde00fc168f8084c5fa5f9dbcbaebc403f7be7676b06a11daa1" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/beetroot_salad.json" +hash = "323f670b2a6e9d3de99abc1941473b77b04281b756b8abd1a738587e72583dda" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/birch_sap_donut.json" +hash = "59c19dc60e4ac779c0f6603a33f8d08128b350f0430fbec2c9a5a89398ba501c" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/carrot_and_carrot.json" +hash = "c5bd549410fb7b38ce27dcea6781c8989888d5ea3710e45b40f9e3f0746960c8" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/cheese_slice.json" +hash = "e3cc995f71f726cb3611ad528cdde5e6ed9e3b366d1656bdecc0d3293987d73b" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/chinese_crepe.json" +hash = "e9f71de5534e3b88fb317fccfb9c5e3a0ad369422143dead8aa87a1fb7546f4d" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/chocolate_croissant.json" +hash = "0c1e432138248e022a3e24966988d1940199d10a6beab627943f910bd80ad3c0" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/cooked_vegan_beef.json" +hash = "3de8d56c738e53c467b8807f929cd7a5468badc866645ab3399402aeec165ad8" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/cooked_vegan_mutton.json" +hash = "f86294c9fccbb8940365edc617a3268b7b5f5213186f26fa37f93532d4dd9ce3" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/cooked_vegan_porkchop.json" +hash = "c5231acb75bdadfb32d2e3712d7bf48579c3c7c80cb264d90599a4658f92065d" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/crimson_fungi_spring_roll.json" +hash = "54e13f23eeca00b64829d66c74378cdca41556f5b6e6ce1a441d8cdb8c2d6a1d" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/crispy_bread_with_kelp.json" +hash = "bd86dd75e76d99d7a358345a52a84e16ad32b071eef5708838d6886bcb27ce39" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/croque_madame.json" +hash = "b6167b110ede597891e2c295d5a65a6c96717ddaa149d817bbb0fcb23fb2fb66" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/drumstick.json" +hash = "d78b41b8181bebc612642ed62e5ddb2b486bad03d2bec42157aeffbeca0447a5" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/flower_cake.json" +hash = "6be86e2cfd2ff52507ba5404c136eec19d89af9b8e0011830887b800322fae66" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/fresh_salad.json" +hash = "ca2ce3f7e37f8fde4ef8433e0ad296f3cac68ebeba7c6d800d8a7ad73b5bf4d3" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/fried_chicken_combo.json" +hash = "e723c7ac0c9e0dca82bbee0294b522885d386aeaf5a45d82b854b77d3b23bdfc" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/fried_pumpkin_cake.json" +hash = "d554ba7dca6f3f11224912293634dfbe960e4bf926bfbdbc58601fa2c9cace32" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/fries.json" +hash = "d78b41b8181bebc612642ed62e5ddb2b486bad03d2bec42157aeffbeca0447a5" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/gem_carrot.json" +hash = "b85642dd3768cf1db92c5f292e1e1dcb9531fd0662991b92eebc6fc409eaf5ba" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/golden_cheese.json" +hash = "19a3652081ba78d7d6917cefc197bf8d8c1dc5eb354d19475b7227be23b62354" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/grilled_wheatmeal.json" +hash = "966a69d9a25d0e63cb916521e900c6a5f93a13ba25b5674682829073248e2b43" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/hi_nrg_brulee.json" +hash = "1d654c6f68e8f6315575a058d8754cc8a03e0eab49041354cc79f50ccf263a38" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/kelp_with_sunflower_seed.json" +hash = "e2171a199da8a7a50966d35c229947ffc8b735cad7b8d22ca97ac6bfa80aca30" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/lava_brulee.json" +hash = "a5e6482482a4f33358b2c9b6713338d8dc53163ca7ee4aa80d94be8813d9456e" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/leafy_fresh_chocolate.json" +hash = "7b0f764b62fa58dbd118a66646d47f311a820158882ee7ed1f3a9e6e037d7884" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/lush_salad.json" +hash = "bbd7b04e37ed07f2f95a48bf501b8dc796386e7081ed78b575aafb72dcbbb1ba" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/mixed_nuts_mooncake.json" +hash = "59c19dc60e4ac779c0f6603a33f8d08128b350f0430fbec2c9a5a89398ba501c" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/monster_lasagna.json" +hash = "34957ba0db93e826a0aa427552db682879a5bf99e9e81fcec090275bfba7684e" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/pickled_sea_pickles.json" +hash = "4f45483c2ec9a5a85c4dd894b645fb5efda1aadc88ed26864831a4ab48b327f0" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/popacorn.json" +hash = "a08b5adaeb8d7d1ee075a94eb608a77a8d29240826db6e02dd74aef7694bf567" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/raw_beef_in_dripleaf.json" +hash = "6fe6e9fbb1318ac80b774d75a7790dbcf8894b96d7c38ed4049c3295e9069396" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/raw_vegan_beef.json" +hash = "f54b881715b30e11e9c9e4f4113c251f127cbc4d5bb7977a550bdcc2ba2a0799" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/raw_vegan_mutton.json" +hash = "f54b881715b30e11e9c9e4f4113c251f127cbc4d5bb7977a550bdcc2ba2a0799" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/raw_vegan_porkchop.json" +hash = "f54b881715b30e11e9c9e4f4113c251f127cbc4d5bb7977a550bdcc2ba2a0799" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/sashimi.json" +hash = "288e05ad86b5fed249756d11735c1e74a92d1883c7f2e856a4cb836739832fc6" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/seed_pie.json" +hash = "e1b261295cedc5522f52339c441cf54239ffb16f8189ac6f34374e4074a37a20" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/small_beef_in_dripleaf.json" +hash = "06969c2b679df08dd569c59f10ec6b52f27e50b5cd592417b62dedcb63fffa50" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/small_monster_lasagna.json" +hash = "3812a1217bab49c0516ff4ca53b99f7e42e04d6e3be336889a9d738412da11c4" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/sweet_roll.json" +hash = "caa1e1a800435329ef2edc55913e8e1ada260101f7a63c3b3103992d21494536" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/kitchenkarrot/travelers_salad.json" +hash = "6185e4e2b07047d57f9e024cb11f08c30102cb13eb7c125994f0237d4d52fde9" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/apple.json" +hash = "5878c436ef8e2e7cb753782af7ab82bba5a1ac6aa87dd987111696a609cba9f7" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/baked_potato.json" +hash = "bf334bd733d8c4932b487bd26e38734da4e0236a235d9bd70ea0457b871fcbf3" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/beef.json" +hash = "79c45e12edd955c4f6c0cc71574d7bd5b866e2ef28964e6dd89d138906716df0" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/beetroot.json" +hash = "37a7b02b1ca1c488d593cddf6aab8184c4e11df8ee10cb169834874a7612b453" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/beetroot_soup.json" +hash = "a5cec2468ebe713f96dbeb1ebd5c3204ad18bfed794dc5503e6f8f77c8d79d10" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/bread.json" +hash = "bf334bd733d8c4932b487bd26e38734da4e0236a235d9bd70ea0457b871fcbf3" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/carrot.json" +hash = "d98a6ee460e70916eeb0355c90fbe544360be420dfa5b5d34e081b0a09490e0c" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/chicken.json" +hash = "79c45e12edd955c4f6c0cc71574d7bd5b866e2ef28964e6dd89d138906716df0" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/cod.json" +hash = "b2ef1b56c9c1ee6bacf752c79d8e59cf3794777f8527d481c2c4add31fc55514" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/cooked_beef.json" +hash = "5cea0ba1cbe0b73298f947d54ab0af4328917750fdf180ed8ff26e6089aae887" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/cooked_chicken.json" +hash = "fcd395a023d2dc62080fcf134639729fc0b8695c5b4160aae8cff8ac72005dd2" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/cooked_cod.json" +hash = "2c8097647194f0cd5d76b5750deb898a97673693daf0a89d1524816ac5c142f9" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/cooked_mutton.json" +hash = "841b6b0262bc1e818119d54340033322266b3ff6a10dc66e9ec31af4361653dd" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/cooked_porkchop.json" +hash = "17edc43670991ee22b6bfda1c0a89e77538280ffba14994cc695dd20ae682cf6" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/cooked_rabbit.json" +hash = "08977e5386a0ae38f3293609830202608ee0efa8ce9d3bf8beeffbf229ef1c3d" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/cooked_salmon.json" +hash = "9f7dd5402bfad1e7013d3f6841ff8ea8787f750bbaa103e44b9a1600c70dabd1" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/cookie.json" +hash = "c0f49cdd85c56f1324da1f29f96fe23e5cb5926493ad47d14216c0c3fe72c898" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/dried_kelp.json" +hash = "79c9c64612063af70461ca5d71eeba0e1edb750e8ae8a9391b7d26287de52ca9" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/enchanted_golden_apple.json" +hash = "8c36029c7143395952a677d7a832b868ad7a75f2bda83acfdcbcda60d5d44726" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/glow_berries.json" +hash = "9043ca3298ce93ec3680d34a54d89fbb47e631cfc14305a42382ca783056d1a8" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/golden_carrot.json" +hash = "1692bbcaaa1773f59f68c753ba1e0ba20d9f8396c8b372c1b2cca598acf96d85" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/honey_bottle.json" +hash = "39900d8dca86cf6d84cc7accfbd6ae0a8e8eb10474a7a0821261b450a6a4e8f8" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/melon_slice.json" +hash = "980d98a68798a63abfa2185ebc3c8621fa2eeb03a4cf280197edc0b751370495" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/mushroom_stew.json" +hash = "503800b3676f804a1dd489a1df079ef70cabc7aa658f5c36ad6fbec33159c6d2" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/mutton.json" +hash = "79c45e12edd955c4f6c0cc71574d7bd5b866e2ef28964e6dd89d138906716df0" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/porkchop.json" +hash = "79c45e12edd955c4f6c0cc71574d7bd5b866e2ef28964e6dd89d138906716df0" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/pumpkin_pie.json" +hash = "35664c831ece4fd58b43d0d7b1ae8f7f5abfeb8c22790a7ac40b9d6be6f5cd21" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/rabbit.json" +hash = "07e0ec5e21c688126759ce0be70aa6a8398892914b341d568d997f6d0cadcf76" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/rabbit_stew.json" +hash = "19f70f2d1bc6a7983a6b53abbed24b3371a2c8b0a79ef1e75593dadcddc329c6" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/salmon.json" +hash = "79c45e12edd955c4f6c0cc71574d7bd5b866e2ef28964e6dd89d138906716df0" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/sweet_berries.json" +hash = "8e266a5cb8148839cbcbf726d6c5ec229d7dedae076a0353abc51e40d2e14d21" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/minecraft/tropical_fish.json" +hash = "3bede8cb938a955caddbcd1315b912a97eab42db58d7ad6243789ad40aff2df9" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/quark/ancient_fruit.json" +hash = "f2ab917b6548dba2cf94659bea8b67bc4299c1835faa3f43725527e46b3bbe28" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/quark/cooked_crab_leg.json" +hash = "9e1f2d3c81c478fd9aeab305d9eceb12fb347c37996a823e4a1995b4fc65449d" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/spectrum/cooked_lizard_meat.json" +hash = "d2b31091816d49227df2b866fa1c319d97188ff098cfe91d8f80d5d80d345844" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/spectrum/enchanted_golden_carrot.json" +hash = "838ef4419475d7a2bc277d1e77a001616293dc4886832cc95ec0c8afb9e6d604" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/spectrum/jaramel.json" +hash = "59c19dc60e4ac779c0f6603a33f8d08128b350f0430fbec2c9a5a89398ba501c" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/spectrum/lucky_roll.json" +hash = "59c19dc60e4ac779c0f6603a33f8d08128b350f0430fbec2c9a5a89398ba501c" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/spectrum/nectardew_burgeon.json" +hash = "966a69d9a25d0e63cb916521e900c6a5f93a13ba25b5674682829073248e2b43" + +[[files]] +file = "config/paxi/datapacks/trees/data/foodbenefits/foodproperties/spectrum/nightdew_sprout.json" +hash = "2c7621d06796b9c70661bafe4452b6bb0b9b1b9baccc0a23aed8d4b35674a02c" + +[[files]] +file = "config/paxi/datapacks/trees/data/forge/tags/items/ice_cubes.json" +hash = "48c1eeeba9552e2f6e12d861449c829632315e94fdecb9c9877bc04d67548c3e" + +[[files]] +file = "config/paxi/datapacks/trees/data/forge/tags/items/nuts/acorn.json" +hash = "6a58b3f7c6aaa63bfe4abc00736e2617d8d15e33f0c947fd5ce6d3a3dc7d0f76" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/biome/autumnal_forest.json" +hash = "0e12d97f1594fbd51e8753e21f59d1622883fecf0c8f808b6641b308bdc519d5" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/biome/rainforest.json" +hash = "d87ec2916586d3a2a85e91ea739d35aec618471401631b67e9235100d0c7f340" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/biome/seasonal_forest.json" +hash = "fcbfcd58abf6672c40dbf6a85cff62a1559d79fd6d2abaa1bdf3eb31b74660a1" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/biome/temperate_rainforest.json" +hash = "03e005362b3ec6f48be832fa8d3772f4f6eb1b9da8be4df69685f009f7b48e2e" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/configured_feature/autumnal_forest_vegetation.json" +hash = "628a56212b2af397f66e3ea350f0cc7014f17689a10833e8acffcb7c30bb4361" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/configured_feature/fancy_oak_bees_002_seasonal.json" +hash = "109d406be63b3f484ce0397ddc6c20be1336637d8b05b69793d4f7777554faa7" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/configured_feature/fancy_oak_seasonal.json" +hash = "bfed4dba1bead2430ce418f998d2465169f41844ba10e4648189850b04408f5e" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/configured_feature/oak_seasonal.json" +hash = "305c761726ad74b2a6c058e9db86065b71955da4bb8648a98b7a93d8856be52a" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/configured_feature/patch_grass.json" +hash = "16303b47c6bdee262d704b36edd158108c96be23a08d3d21ce44d7594b424848" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/configured_feature/patch_temperate_rainforest_grass.json" +hash = "6e92a9880eff7d15534d33cdd1c2faba5bf5c2c1ce788a14161ff1357309da9a" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/configured_feature/trees_jungle.json" +hash = "f48f06d70264ab7b00001c54e2d1f4e3848595d1d38a5fd72e19148772ada670" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/configured_feature/trees_rainforest.json" +hash = "eaedd1cd7227887c96ca002ef04a5afda035e398bde03d82c1f86831ca47fb94" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/configured_feature/trees_seasonal_forest.json" +hash = "d38d07ac8dcbf6eab50ae3e3c040c617d185187d4551f6ecd4f6ff63f5f7bbe1" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/density_function/overworld/caves/cheese.json" +hash = "4b48ea53086fe9ea9102fa60f0205f656a5ec5a074e158b67b21372c56f0862f" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/density_function/overworld/caves/entrances.json" +hash = "3b1f8c500c58b78810612e363c9201600b65749f8955bff098049d73edb39708" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/density_function/overworld/caves/layer.json" +hash = "259c17d4b3428cbfc6fdaf857d72b382b23e545f211306ac96f40e3c28c6a5d4" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/density_function/overworld/caves/noodle.json" +hash = "b8d630cdfa42fa9d2f10c1a0156211e04888bbe949a55909572862484d7777d5" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/density_function/overworld/caves/spaghetti.json" +hash = "b2dac94e854edde0f1ed1556f842bea882bf9508089fa164088233d0767246b8" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/density_function/overworld/factor.json" +hash = "28758370c2311f6f820e4ee9af06fa3ea1dfbe17030cf68908b5e2ff85aa3818" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/density_function/overworld/fluid_level_floodedness.json" +hash = "26a8161b6c9e4a9ba148a8a57e1b828e8b1f027aa0f329f86046b70a5167e470" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/density_function/overworld/gravel_beach.json" +hash = "97aeff3a0bc336ae938350b3a6fb6e6504f9e2470c298f004e7b5abdd27b70bc" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/density_function/overworld/river_carver/noise_selector.json" +hash = "e7cf515783df2bbb92c107e2449430abe1e2725275835413eed3c49b88789993" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/density_function/overworld/river_carver/river_carver.json" +hash = "13837415342ade6f339a7a0e6a00eda3fbac641b28f984f297fd879d38004fb1" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/density_function/overworld/rivers_extra_density.json" +hash = "461507e9d24cc318f0aff657d275ca5e35217c3a1f1ec868ace404eee1b2ed43" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/density_function/overworld/vegetation.json" +hash = "5639091a592752125c1a75cc12ac810264a4c5f04b5b13086327b47eceab1279" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/noise/gravel_beach.json" +hash = "d398def44bda3849ab1185a85f1537d6bee8368398fc9f48904c689fae29f9c7" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/noise/sand_beach.json" +hash = "d398def44bda3849ab1185a85f1537d6bee8368398fc9f48904c689fae29f9c7" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/autumnal_forest_vegetation.json" +hash = "b500918214d273e9e466afc60f616dc4429391ead9c1310b111e1d0c0245fe22" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/fancy_oak_bees_002_seasonal.json" +hash = "6d8e4442c4d0a3786e9c35928b1db25a1ff70ce4d2a3d47de8c76ed2f1ac9a44" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/fancy_oak_seasonal.json" +hash = "183e3eaf5fbc1b5fdc9b97a1b7b5dcded97f3a6cb0c18a9525694a7865af30a2" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/oak_seasonal.json" +hash = "8cb1e1071daba65ce6fcdd633fae6975f74a265408b2c1813539f9e4e0aa7db3" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/patch_grass_plain.json" +hash = "c40fb5273f7da5c0e12e95009c4a006cdab445e6540d10103373493fec30334f" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/patch_grass_savanna.json" +hash = "1961443fd5d66ecc682bfa91f6efc3fe8325ee4ca0be4aeb92a5c2916f39a2b2" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/patch_grass_temperate_rainforest.json" +hash = "48489a8a677cc6f38fcf9269e5b4f2b08f416cfa654bbf717d582b2dc5ea5f38" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_birch.json" +hash = "9c26a6375021646909f646f49533a0ef8da01847f71b406cb5de60e9d04b83af" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_birch_and_oak.json" +hash = "fe595c7e86d4e1e3947d7e9edafbf3b8859814499a8723b1ec9688d08f176e41" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_flower_forest.json" +hash = "97569ca6406f2aa8c4d4e2ace6bb2ddf048777e7e8c0b14a9dff2536cba9bf59" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_grove.json" +hash = "0db2e541513791672fe2c4c22db8d9c7de2a57a2dbb640cf8c8aefe5b7e357a4" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_jungle.json" +hash = "cbe1ae334baecd600db855c930b8f46a7bfe3f4384afe9f56e8e18c77048be3a" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_mangrove.json" +hash = "4f282e878e7ce69fdd3cc1b07914e0d32192b024517b2a4cf547053285bd5080" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_meadow.json" +hash = "494e07b75025c472da38badcc854e2adc15a4a5c66d8aca037dc23e964046d4e" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_old_growth_pine_taiga.json" +hash = "67e5b043dd0b456f4f8e04e6c89dac13520b5981d587ee73223cde542863f4a6" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_old_growth_spruce_taiga.json" +hash = "25ee75422aa5ae4312b711f20d4f1b1cb0ab23baaf49cc4b434d3e290f6dc924" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_plains.json" +hash = "a03789585e04fee01856d473276401c30c450fc7552a300e33973c76f053d096" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_rainforest.json" +hash = "ef752f83da59181859e7ca530a2283d81be1a6b73548c0cde48b152741d4af4a" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_savanna.json" +hash = "01bee7c0ae50ee92236dca65afdbb581dce13a82d20bb0ac3c3c8f6bf44f2a3a" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_seasonal_forest.json" +hash = "1707e14e7ca536f5dd26da26ea323a036d70409a3c20df8eca0f0b6039f7096f" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_snowy.json" +hash = "23d748b91d2f3863e4efc89ae7ac785a6c5d423277d163062442a225cf55e07b" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_sparse_jungle.json" +hash = "f8cbed2b89dbbc2c280078c480d0be6c43a004b664b0e4e0aad56b435db06207" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_swamp.json" +hash = "37b60ac6fee82ea8dabb74e40d4ba953fc9efce7ff0b280d95e470657b6a6b99" + +[[files]] +file = "config/paxi/datapacks/trees/data/hybrid_beta/worldgen/placed_feature/trees_taiga.json" +hash = "e91574e167519035f467d28d6495da171f7b0a09dbb64c4db00a86d40ab2e0b3" + +[[files]] +file = "config/paxi/datapacks/trees/data/inventorio/tags/items/axes.json" +hash = "06694de4ca78f93983d9b3786021179dfe2b59a84e5990126f176b7d71f43f44" + +[[files]] +file = "config/paxi/datapacks/trees/data/inventorio/tags/items/pickaxes.json" +hash = "06694de4ca78f93983d9b3786021179dfe2b59a84e5990126f176b7d71f43f44" + +[[files]] +file = "config/paxi/datapacks/trees/data/inventorio/tags/items/shovels.json" +hash = "0ca961f0893cc79232034676a2211ed95ab36488d5ed0bf1b82660e123fa1a61" + +[[files]] +file = "config/paxi/datapacks/trees/data/inventorio/tags/items/swords.json" +hash = "13a3a8fe1ee1cb3c2d37fcd890a1a37d17a8004bdb37a571f2d5a19ddd19f224" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/drink_dgcoke.json" +hash = "588c34efebe181a1cc926374ca0952ec7aa0afa0296b0767b08e5726c970981f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/drink_liquor.json" +hash = "9d6bfaf4e8bb0eafed248d936c335e6cb6f19ca129574d2d6302be8caffcd236" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/eat_ultra_cereal.json" +hash = "06bbbbec3846903d5c1e6f2cdd4e2a7a677d6323b326b48a8cdc389bcddd2f30" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/get_acorn.json" +hash = "539d0c7212f6a3fc96a88203967a648468dd87723036621cb9b6bf8ca581b0fe" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/get_canned_food.json" +hash = "71e34d6515df64e615e8fc346fbceb7b7603e76ba6a598d60cab9dc6dd6bfd0e" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/get_canned_hoglin_confit.json" +hash = "ed0f4f4b00fe40c14122665d95ea49b0c470381ee990dd75b205e0550fe21639" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/get_cocktail.json" +hash = "f3f5b56ede6b83591be25c105301ea72029951a5b84172f63448ddd768a4b661" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/get_gem_carrot.json" +hash = "aa2239e066fe9069de396f1bf1ebb686ba8bcfbd16fa08d82ace7181937c83a7" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/get_pillager_pie.json" +hash = "db4e5b2acda59ac3382d877da424033164f7b0589c3a0eaf18a2520cb6ecdc04" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/get_water.json" +hash = "49aab3baad70508791a5cf87004da18cbb276ccb0a547043d9a5a2108333cc09" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/place_air_compressor.json" +hash = "639b0c5b14560140a7dfccd331ac3943cfdc983050bebf54184236455f50b6d9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/place_brewing_barrel.json" +hash = "c33bf437ac409325f25f74ce3d5ec6d34b658b17590b72592b803f767af244dc" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/place_plate.json" +hash = "7326a1bbe6ee7ee1c02178300b15f9e8bb4377b5c3bea4b6c760cb298560f54d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/plant_carrot.json" +hash = "f2ee9e4ee8941b77964c38a0af5007c75f7ffed3998fc14d462ebf98503a5407" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/bacon_wrapped_potato.json" +hash = "79ce4db912519d4ddea2d7e939ae3f3d06c4abd0285628b7b1f23190957212c9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/bamboo_potato.json" +hash = "bc90177ea9ed21c625b079c1a670b651fe5f9477ff8c5ca6d0131cd7ed0f56e9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/beetroot_crepe.json" +hash = "d1af692d199c1b3c470744f01c05283d5e12feb2b771226f8890ccad29af8db4" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/beetroot_salad.json" +hash = "59815d7414e776fd9dc867d8a7b65fbb453c3a24966e689d333b993fc42337b4" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/bikini_bottom_sub.json" +hash = "ab10b483d22e41afcc2a36cceac049715e4c38cb3e364bf054bf738ddb542bdf" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/birch_sap.json" +hash = "9fc09adec32c833eb9cc6823bd0becfc118a8315ebd5c7a0d006797232e96b19" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/birch_sap_chocolate_bar.json" +hash = "71e6d3b6663cc877ce86cdda6cc3ceccf43c1a0e855169702a7184dc932928ef" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/birch_sap_donut.json" +hash = "53797b7da95b920e223c9776ea25e40974fa4f9df9e2a5268cc7ac2ee77f0394" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/buche_de_noel.json" +hash = "6734f684017acc7c0501ec87ddb84a30267ce268a6d11df4c5c247575480455f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/carrot_and_carrot.json" +hash = "0021f7a6ba03ccfa29150f63176bf3b11a0c063125b97d6eae4369e50f07226b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/carrot_spices_from_carrot.json" +hash = "6230743132e265baa13910992f26f7faf85243a847ca6e9566fbefee3c7a25b9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/carrot_spices_from_gem_carrot.json" +hash = "b975b3951c19d7a488e086ffb46fad229f7a086f7deeef6529b05ca0532713be" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/carrot_tart.json" +hash = "b33fa20656cddc66b33e17c239c28443f56365122620857d32bdf4ddcd73848a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/chinese_crepe.json" +hash = "5bbfb7ec0f1262281bf1d68224ab2bc1f8e3854061a76bb749190b2d2ddf2189" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/chocolate_croissant.json" +hash = "06ff9773d0ffb35ce90ebe328d478c9d0f1ac74c273e7441bc01877c1db280ef" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/chorus_mousse.json" +hash = "fff6bd3e76b368fe2d1867a720083e2bd36e74bddfc69247e1d09d1769a978b6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/creeper_cereal_porridge.json" +hash = "014727ccd69fe01e2410ed0a34c71811caa53d4f65f8f4dc204bdd1176bf01b5" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/crimson_fungi_spring_roll.json" +hash = "bf06ff5a8850c156c0a1ad12f45f9bc2258d129a29350a012368ccfb33d8ea77" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/crispy_bread_with_kelp.json" +hash = "9ada39025ea2099f4f25b858a63cb621c1944f61749c2f6c37548bdb9cfd7c64" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/croque_madame.json" +hash = "2f6c3af241c3e5d74094f3f2bc12f5dd364a580c6a066817e6487e4894e2895e" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/curry_udon.json" +hash = "0ec9042b41e1ec3048c84cab3b4b0d839886e4617ef0bfe2777e1437407df37f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/drumstick.json" +hash = "c9967f6e8f403578018cf5f16fe6c257d09e61ecf206065b7d999fec07c4eacb" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/dungeon_pizza.json" +hash = "2cb5b9de3ab507476015a5929a373ad3c89d5f273886d5f78f3da8ff07e15680" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/egg_tart.json" +hash = "c73c6adea21590acc321783a195f95dbeedd02f338bf602b0ecd77acf1136c84" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/enchanted_cheese.json" +hash = "72c530346fc6546dfaea88b62bbdc665ae9da157bbdbaed3adc7ec379e178964" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/feast_pizza.json" +hash = "e1882ab07c86e7b42fa2ac1a83e085106339d949ef08d60175d4ba62264ef88f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/fishermens_delight.json" +hash = "f7f4d45a815e9ccc1ad0e3623447206f393aba1742698e9b91cb21c86f3fba37" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/flower_cake.json" +hash = "a94331eb06fc2c5d317f785c4b180c4b7f1321f9842544efdecf96a2d9501541" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/fresh_salad.json" +hash = "529a8da474adc3258f4f0866e0f67bac60ed9b63e02f8403a29d20374913d2a9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/fried_chicken_combo.json" +hash = "4da0f2797f2434386465da1cb7f3af512508762e02e04d41115640facfbd07c6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/fried_pumpkin_cake.json" +hash = "5642f6d4d9fc166f03f1f2d06ba72f2860a2291f5daddc546fec635a0c765b28" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/fries.json" +hash = "ec9d249fe4a4918b4efcd8dbb046312ec912eebb0d48ae170d00dfced13fe486" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/fruit_cereal_porridge.json" +hash = "cdea07fefbbc0b06fdf33cc349c26bd6ddf5cd5470c066e2343fcfd29c2a2b1a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/golden_cheese.json" +hash = "abc9ff6fa2508ce7cd537d6986020c35bc73f76795505e84a4a49e49aab60438" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/grilled_fish_and_cactus.json" +hash = "2b49a8e7debd6a4732384053fbbe4da81e8f3ab67d551873694f53515d0386b3" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/hi_nrg_brulee.json" +hash = "8f99bbaa35777020e2c76e19253d7fb755f2304f8664af5c62148e718794497b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/honey_brulee.json" +hash = "1f62cf8083b299325b5f3ff5ae9f70decd7d772ba801fad81ef74568f4214914" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/ice_cubes.json" +hash = "50cb3ec8f9eebb0e48995959a77f47260470f346857c9a737b0133ffb5ed3d33" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/kelp_with_sunflower_seed.json" +hash = "9a97456700011f29ae10bcb6ee098a70af4b23a24fc67324bd1662d13eadafca" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/lava_brulee.json" +hash = "3b57b00ac2be5e66ce965dbaba1195609d47e7768c0f3130c54b0945c3ed4276" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/leafy_fresh_chocolate.json" +hash = "1345da9b8c17525bfe2f5d3febb36b0227bee0120b62b05d38702297b1737268" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/lush_salad.json" +hash = "3c1620ad79480719ece8ba914aa06215be8333f613ce261367ae9e76e73181f4" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/milk.json" +hash = "b3e64bf5aba3f1051a19795e94f47ce477bfdc7ccbd9cacc03e5ebdef1d5225b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/mixed_nuts_mooncake.json" +hash = "2d7ab43d1e4e37462af4664c7661b30525d2e4aa12eeac74895c4e76dfc5226f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/monster_lasagna.json" +hash = "12dd07285476511fe41ad07b4572e1f7ed0a74b4253bf52f2eff7f07d80b8986" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/moss_fried_lamb_cutlets.json" +hash = "59939b456bc584b13d37f9018a2776d74634eda9fdccb1fbc5c47ae08d706077" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/phantom_stew.json" +hash = "5cb3cfc3aa36b7311258da2a204c71a048223beed67858bee6939b597aae3170" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/pickled_sea_pickles.json" +hash = "dc46b8f403de83a91c012b61ea427c1c5172b827da0360a764f90e77889b2c7f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/popacorn.json" +hash = "feb709874dc3cec49bef6edb3c39da50ffabd9821b40911294146c23d532abb7" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/raw_beef_in_dripleaf.json" +hash = "37be150549f0e37a2f3ac2df7f6dee70f034cf24429087e4a2e43a046974b5a0" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/raw_vegan_beef.json" +hash = "7eabd910dc46bed36940f5333024310290c7d6419da9d50c0dd8e0f8841e108f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/raw_vegan_mutton.json" +hash = "7fbb7d30c146e6d1a2b9981ba0e6047833378896f9e7bb813925f10571881ca3" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/raw_vegan_pork.json" +hash = "4830ac7d89126070e59218e3e5dab989cf191677562f39661387b5d061611028" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/rice_cake.json" +hash = "409f9397cadd7dfa9caa5fb5faa0ada5e2c71d4d3525ba81610152e5c6ad7881" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/sashimi.json" +hash = "b190afc977cd0a09380e8d3bc503438c4f2d6dbbcee180e3eb3ba456ad4013f0" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/seed_pie.json" +hash = "0ce9da1074d681122c7b8fb8beb103c4a9242cd8c183e765aaaba78d6187caa3" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/shiny_pizza.json" +hash = "96fce592b847f799adf22b9dc5c6196d7a71959558124d38a993b628cceb0401" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/sirloin_steak.json" +hash = "b833719d45e010e58ac7fe4c9ff55e791dc809249b68258ed061b7331e45c98b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/slime_mousse.json" +hash = "9f8127d76acd2539b406b766b7e2b2fc8233885bd900cf4150956d0a4d4b743d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/soothing_tea.json" +hash = "9ec33aca4303963a2d5eed6f0ce1d4390146d7c190a1c4c86ebb5ae4eb0231a4" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/stone_shore_quiche.json" +hash = "5efcfadf6c09353d6c7f01b759a891a008b5f502bfb3bd38a231a52dda5deb92" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/sweet_berry_milk.json" +hash = "0e7cc12ac5ac9bf73eede4c2ec94f89128dc1fabe403bad5c952ba5f42205b24" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/sweet_berry_tart.json" +hash = "4dbe0983657c5fb46830628a9eff66090b1e551314821662a7d160295d6c0929" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/sweet_roll.json" +hash = "d70a1f8045459db726540e5cbc191a1bdec5765b8ceb3e68d1648faf5dbbab63" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/travelers_salad.json" +hash = "74576aca65bff8cb6f45044c96728c850d68c4311e39dd4a6ee9634b2778384a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/ultra_super_delicious_cereal_porridge.json" +hash = "01e9ca7717486542e5215b0ef7577cd3b327c4646efe6942bfb13cbc09589c7d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/food/woodland_tater_puree.json" +hash = "c779eebea15f2ddd865384003041deded69be64ed42267db9739ecb0d5fee19e" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/acorn.json" +hash = "6053931439083af53114cba9064ff1b660a448e57c3d386b651befeaa764003d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/acorn_oil.json" +hash = "7566b6ad35a8410302cd83b15c89db7ac0a9b0eab25556800989bf3f7a28498f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/acorn_wine_base.json" +hash = "109e3afd60e200a11b8ac6d9044e691e0a3d2183022dd9b4e8b0d25942f6608e" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/air_compressor.json" +hash = "d7f902dc9471a8bcdbce3f59d1bc2ae70f12ee92bf5d53ba3187629de08ea73f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/bacon_wrapped_potato.json" +hash = "1dcc3630ba8728459ef4c568fbc2d291acc72e2ffaf4a07c28d33908ca7ce8c5" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/bamboo_potato.json" +hash = "aebe96cdaef60ee643367d55cc98ce30a18e8d1f248d8455106072ac66e7788d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/beetroot_crepe.json" +hash = "f32916ba088f541e9051631e91a2cb7a925138e9a7678c7896b562e778713633" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/beetroot_salad.json" +hash = "b8ccee679b0602de9c45901b4f1e0b034aeef0c7c6596d51004a1ae52e6c069c" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/birch_sap.json" +hash = "3679fccf057fbd016d693efd0999a97f988bf3cbb7f1b021773a6aeed3fed8bf" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/birch_sap_chocolate_bar.json" +hash = "d17c5606e199acaaf1d7fa5663df44bbad22dd3ef2cdc0cdaece538a2212916d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/brewing_barrel.json" +hash = "0cd07844b494ea26792423cd9cb999ced657a5bf7ee6195f69b3b314a3c1f941" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/carrot_and_carrot.json" +hash = "d68e0b1b8dc4b852b9af8f04089c642694a087b4a7aab7b93054aebd3263d4af" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/carrot_spices_from_carrot.json" +hash = "53f99c73a6f96ae9b782d8da544e1fa838f8de4d6f5b3c1a6417a24ffa7b9ec0" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/carrot_spices_from_gem_carrot.json" +hash = "7740ae082cd61796aaa3d8a5ea1a55eee22c27cc393c0581967c5a1026f84305" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/carrot_tart.json" +hash = "c65196be742f0d551e66ffa810547e4e07991b78434b1c2470dd5d6acf4c15c0" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/chinese_crepe.json" +hash = "ee6940e94323ef9f36a216b9db437cd0d4a95fb7a664db5120476592f8e13592" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/chocolate_croissant.json" +hash = "88d08422d6710679559970fc471218b96744ef09eadcc3d5934cfc810985b0d4" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/chorus_mousse.json" +hash = "b034a6156001cdb95e3c1c551390ab084fb586a41c2801aac439696cab9eacd2" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/chorus_oil.json" +hash = "0032f5beac4fb8578f772174309257c5a37481a899f86a2e23c0375e770613aa" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/coaster.json" +hash = "e79b61e9407b959ea64161c7495e06a1974dfcd843a2a4ac8906d96a30b6127c" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/creeper_cereal_porridge.json" +hash = "f57c59352b38b41efc11911cb4808b7d2ec2a563a70175ae15cc5be9ecde9e1f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/crispy_bread_with_kelp.json" +hash = "20e1b787683aed7d3f8fd087135edf642bff396dca8287f3328e230612f1e6d0" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/croque_madame.json" +hash = "e78f588e2ee35e5f4305a36d209c24d0c27470c1459d30e75d48399341218685" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/curry_udon.json" +hash = "827cdb4a2753d0f8e2149254d1ca6f13c0251d350f3aa08665441ff82cc2f6d5" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/drumstick.json" +hash = "1d5dd136f67fe1ac517229e100b09551742038416d745c992c5b29caf23fe6da" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/dungeon_pizza.json" +hash = "c971214a5cfa005ebed2f5f9a384efbcd4083b0238b8761b6396e54b07a52e52" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/egg_tart.json" +hash = "3e205dd61ecb57f3f1d7543949a78e3aafc8c7e439ccb93e46a3687c841948fe" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/empty_can.json" +hash = "9d53a1974949fc8f5c5ae762038d5c6d86da1e2e09a9acd6b98372511d563281" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/feast_pizza.json" +hash = "b086f53dbd6235a48d92796dc21c71362f6715e8df454bdaeb03e8a8c6154a44" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/fishermens_delight.json" +hash = "e8495e9a5d9f6a2261c4a1c707891b061e18b7ffa2b127ddede0fe80ec43bc21" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/flower_cake.json" +hash = "759d14aaea6423f26c1dddc7e78933a4284b4d97626e1d2a9e9b331b55657500" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/fresh_salad.json" +hash = "a8c7bebe6bd6966012f5f0c5612b9649361d5609ebd6634a7fde15bab577fd08" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/fried_chicken_combo.json" +hash = "aa2661c714e17a8a51e5f9f37c612c45efc454962e9c5f1e681061ddea180755" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/fried_pumpkin_cake.json" +hash = "42efa41bdd8ec35ca400afe6a685317042ed824f22abc73f5ff7dfc06a71672c" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/fries.json" +hash = "caee7a0027b3945c54e0c31c4377a44efb3abeab44ef56ecbfff9b65c5dab03c" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/fruit_cereal_porridge.json" +hash = "4213e3da228ddea461590c13f470213dec4d018990044a170197cba42cf5a94d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/grilled_fish_and_cactus.json" +hash = "3f901fbd8b4e612b0fed1de5ca9d43f296073460b1ea72a98c17baef254b1976" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/hi_nrg_brulee.json" +hash = "49baced05d82d3bd3c74c0b5ba39b67e218897c22fa2833015a6592dac531f10" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/honey_brulee.json" +hash = "49dea980830e60bd897fb20ff251af27da8363f54511478ddc2e8efc8533d92a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/ice_cubes.json" +hash = "0e7556c59391858bc921c732bc3e5bc1416b29f0b0014135a3e9991326a8b2fc" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/kelp_with_sunflower_seed.json" +hash = "2c5a7f56c438938eff1a109e6755e7a654e60694e21d2aaf571bae963aa8220e" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/lava_brulee.json" +hash = "4103d9ef4d3b0f3183a5dad3ca502f9081493b6b4499d6ea62d77c53bbf60b9a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/leafy_fresh_chocolate.json" +hash = "ff1d868072e32792e2dcf8c18365329c024706fe7da17be92d98b99ca0d1d491" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/lush_salad.json" +hash = "91e80bdfb339eb50a91138f7662ba22965d4115cbba012f2dff076f145c2ddaa" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/mead_base.json" +hash = "e97d5d7685f005b54161455f89a9958c1d1d8f12b084e45ba29170dd9f2c7b26" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/milk.json" +hash = "d46b967b7e080558f10e0e31970518d60e70193810e176f53fc3c072e43aa97a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/milk_bucket.json" +hash = "7fefd85020f491aeb25f8289340fe1932683f1ba7e7a8a4db9c9b10877d014c0" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/monster_lasagna.json" +hash = "957cb2974971b55a301efd0ed9f7a63f615b1210b84f5aca31fe9998d92f64a6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/moss_fried_lamb_cutlets.json" +hash = "6c6f39d7d4f47434c358cdadf1a8ea6c55c6246a5b0d34361bbc362e3553a85a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/pickled_sea_pickles.json" +hash = "8ecc55d3df7a2d284b4079546543a32cc4fd3fe5f99b6f7638891fb78bec6176" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/plate_item_from_plate_pieces.json" +hash = "b728b8650cae233f38ca82dbdb8b4b1d56d0e1a94c5d7ac854823d9a0a41393d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/popacorn.json" +hash = "96b8d1601cd897aaeab42e50a9a201ac451c0e98ce8a1464bac4abe2eda43c86" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/raw_beef_in_dripleaf.json" +hash = "ba96590f9ebb2c5c087c0c8ec2e44887ef986b4e7c7effac37efd3b3a85e41a5" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/raw_sweet_loaf.json" +hash = "a9ca7e7bc97333236e76b7c172af230d672eb09af97033b200e1fe2671f0c93d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/raw_vegan_beef.json" +hash = "69d7800629036e37af2cb657575c067ae2693ebb4324bb13b87b9817336fa1bd" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/raw_vegan_mutton.json" +hash = "4e538cc0872ba8364560f54118cd65119b9edd3b97eff29d839d77225f87e9ef" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/raw_vegan_pork.json" +hash = "d42a6ae4e483487216ec245e2ab4f244c293d6f07490742136630072cbeb1fcd" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/rice_cake.json" +hash = "827f22751bc6d61ccf07f909b482f1abb103939b414a75fdb4f96a0f09195e6c" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/rock_salt.json" +hash = "69b0537d9ba0eb51c45398f9ae363671994970e142a43d6fb4e24f524fc0a590" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/rock_salt_with_tuff.json" +hash = "edd8cdf6085e2ccd63699ca733582cb164c98bd5b1df53e38775d768471f248b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/rum_base.json" +hash = "f72ee4a0101323e65de93fe12095f4b089b9d1f4e01a9e3de58634a8919780c2" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/sashimi.json" +hash = "c0b946a4ed67f32feb5d6d47c678e331090fe359f59c680eef18cd59bbb40c82" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/sea_salt_2.json" +hash = "2444a272a7bbb56d48e1d800f14f991dbbdbb3211d8f6b0195de06988c7f536a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/seed_pie.json" +hash = "4fe068a86398d876a57cb27f9da7307f3e9bd5be235073d67d32237ffce5c283" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/shaker.json" +hash = "4c036c3f3b97e84125404991b316823f5b146910c593544466d8a9c6ea6e86c4" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/shiny_pizza.json" +hash = "4421032ca4e08d80fb5bad6a5da5558c1787648a7811a8ae7185c99fced06f12" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/sirloin_steak.json" +hash = "4745e662a3102b1f65f5c50afb8a9f73ef7b64e661e1cbb67ae3d08d7fbc3b1a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/slime_mousse.json" +hash = "5c292fc14fa29348c7810f2ec30a665d649942534afd75a33a6eb85e05c6527b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/soothing_tea.json" +hash = "5d6272de274ecf8156e7155652c399fc4b9f7524c94210361255e11b4cf699c3" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/sunflower_oil.json" +hash = "1750f72a65f3a1f308634c12bafa76ce50996b0ba3b335dbe847200a5cac8df9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/sweet_berry_milk.json" +hash = "a1eb49369550d9e209166dba76f44478ef542f9b1c4e12e451945f44096979a4" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/sweet_berry_tart.json" +hash = "d35592ab3e61d80234aa56650d02f0ce7be47fdb8f6d524ccd8dd94d87a7fd17" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/sweet_roll.json" +hash = "70264e537cd6bc66ea7979e9085a3ebdd66dc32ede28e5a241128454026fed08" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/travelers_salad.json" +hash = "2177838ea0f5d1267e3d2c167f3e356c4568594075996afc13503e2273e210e8" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/ultra_super_delicious_cereal_porridge.json" +hash = "7a967b9480fad3a47c206b96b8f5451595321e8c58a7c798201e8545a416bec9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/vodka_base.json" +hash = "81c15adfe02513ce6e2b73eddb875ef2b8a45a50bbbebb089c6e29aedaaa2d3a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/water.json" +hash = "6b88cd0a52121c2f0b3c9740a0a31d398846c2befc0b8103007b7990b991111b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/water_bucket.json" +hash = "5233100e35d0ff18884496f62fff6d5bb1e844adab90ec116bb4649bec58bd10" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/misc/woodland_tater_puree.json" +hash = "30397d2049d9f5f11876609f9011fd7cad97ebabb1a730f3b260b7a3b79ab481" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/root.json" +hash = "4146eaae892299f03c5eca1b956bce23daf7e07aa04998a1cc4768614946bc7b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/tools/knife.json" +hash = "eddcabe0c510428ea61cbcef13e9994899524eed96ce9990f32317c17e686a7a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/tools/plate_from_pieces.json" +hash = "6572925c0135a8694423eae73a632b34ef81e256a49aa14d8b199945977494b6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/recipes/tools/plate_item.json" +hash = "e4f4310bf77de4ca7fb6df583b33561bd897e4f80c0556ee0cc9c5b1082ba1d8" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/root.json" +hash = "ef806bdc7532192a0a441f2cbda4c9f149dd038b4239070482057e54c3c8ddbb" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/use_knife.json.unused" +hash = "b8fdd681ed457a7d0ed3a1fbad4427c7baf0889f916dcba0278a7612e9de0780" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/advancements/vegetarian.json" +hash = "d0b2264c4322ab276174deb6e19776b6ae16c00739d9636fdb11b8f10e2a0639" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_modifiers/gem_carrot_loot_modifier.json" +hash = "4048f091e2fb1d731a414d7ffbf890324623f22458b31a1d429077c94450dd0b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_modifiers/ice_cubes_loot_modifier.json" +hash = "50114b256d9aefbab224cb114386f63ee384220958cdd3c9dc1b127f8fe2d05c" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_modifiers/piglin_barter_loot_modifier.json" +hash = "0e7dc60cf63a75eb0743ee01f539e4e24be5ebd2c0e42c5d152df81446d4eed9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_modifiers/pillager_pie_from_mansion_loot_modifier.json" +hash = "b0bc89b24ff4f8cdf27f4938e078ed10cbbcbd5fd65df67a11ef1f332f72f649" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_modifiers/pillager_pie_from_outpost_loot_modifier.json" +hash = "368a304b34c2ce84c91ef8f31e1b0f85135753a2bce40845f487fa8afba46223" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_modifiers/pillager_pie_from_pillager_loot_modifier.json" +hash = "652b1299c1c485dfc5ad1b92a1eef6127cd54df11d50082b312e2ca11bdd4b3a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_tables/blocks/acorn_oil.json" +hash = "13e02f0a041b2e0c96b40b32cc6f50ea0fb3eebb0544d8064136c0c4f4c23496" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_tables/blocks/air_compressor.json" +hash = "246e2631efea709ebbfe7b517ee159820215c708e44fac1c1f530f9a3444cfb6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_tables/blocks/brewing_barrel.json" +hash = "2360511614316c3e7eb8a8969ee01f57a24491dfd4c42c99cb2e29570912d4db" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_tables/blocks/chorus_oil.json" +hash = "5de2f664b631de1574dbb65baf5e6321b256654a9a2ec757e8e1c8ecae1dc2e3" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_tables/blocks/coaster.json" +hash = "fcffbe1c67ecd5fcfb07b27135c5d78c99cfe68376f32751091013e75f612d8c" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_tables/blocks/fine_salt.json" +hash = "8acdd72843229361cae512d5ae528a5505d69cde375e05f2e570b903d30d2cdc" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_tables/blocks/gem_carrot.json" +hash = "13fbef3d543a09a28a176e78201be75fd3b9b63bf560d2bb02a14e70517a30ad" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_tables/blocks/plate.json" +hash = "7a4ca4abe1388100de98b4fde92cf1067ce7cc782337485a48f5c11e5148d5c1" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_tables/blocks/rock_salt.json" +hash = "eeb8abdd921a8321e318e24d338d34633449a029a5fa00dd27e394368ab2b822" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_tables/blocks/sea_salt.json" +hash = "7f8be79a628992338182a67e2e13c20f4470e483c05c1ff7ee8e9fcbce9e1a42" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/loot_tables/blocks/sunflower_oil.json" +hash = "814ae574718aa4a763016518f0702f287097eaa989d75e47ec55f5b48d370d13" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/acorn.json" +hash = "fca879899ef58205808e4f6a21b50f6fb9ec7afc6a00d6434456f0b708355c6f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/acorn_oil.json" +hash = "f3c7a6f2ca545134d0dc37a8a39df8976caf7b450cb5297e15e5029e59c7f31a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/acorn_wine_base.json" +hash = "ebd1e505e8be7eb009154f00000f9973be63d6fb34abb7b39b86f6a880b04082" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/air_compressor.json" +hash = "39f00f5c57c709ba56074d0cedf472c474d97b0449b34bfb1fce15530e73187f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/air_compressor/canned_beef_potato.json" +hash = "2e8937459cfeabf2ca12bf2d2619c3448ebeebc4394099473ef30336b12f8ed9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/air_compressor/canned_candied_apple.json" +hash = "91527a6ca1730a8332480aac2f922a36158f80638aa525835878bae1c460ff70" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/air_compressor/canned_mutton_pumpkin.json" +hash = "62acb51f3f57224157a5beb22f6eecdbd698300d0f3f2dcfee4ecab7cf3334ac" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/air_compressor/canned_pork_beetroot.json" +hash = "1647c4ec6662f3851301b559f02ecd6deaec1e516b60b4542422854b02315687" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/air_compressor/canned_sweet_berry_milk.json" +hash = "83a166e68bbf948fe385a2fee138c86f95f999c0ab3f0292bc32b4f652d2dfa6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/air_compressor/coral_coke.json" +hash = "90d95ef718616131b16c8ea387220c2acb3896f7cb2af974ea0480d5015e5739" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/air_compressor/dandelion_coke.json" +hash = "a5e4ad64f3e6eda847d9085e962627d06e0b7bd5bcaf45749b3e5e034199b237" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/air_compressor/dragon_breath_coke.json" +hash = "5adf448e34bdc8c0bebf2ef346da546875f309ba59c03fd9fe3d3c82aae9e803" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/air_compressor/kelp_soda.json" +hash = "c399bddc01b09eed7888ff0e37247222fc1af7d1f4ab6793480decfeb334159d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/air_compressor/light_soda.json" +hash = "5400dca645640c122efc1d3101d7e010e5596df8bfe9705412c1a75646bca209" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/air_compressor/twisting_soda.json" +hash = "3d5334562a04084266ea5549f537728ec262b83953aa368d328857d5d8ee293f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/bacon_wrapped_potato.json" +hash = "6dcad1d94d344cdd4df6b277fce782481bcf966b7f5d52629ff5158d49209507" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/bamboo_potato.json" +hash = "a6084521a71fd91f4734827dd346edb21444a02e0a959d7d43794ba5ed8def1b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/beetroot_crepe.json" +hash = "b58c5edfda44042e31a324291cde025f35b5211e768e1bdc7f7e0a4af0c4da1b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/beetroot_salad.json" +hash = "9fa1066a287526a8bfedaf3b50480e91949673399edd84435452b792f5e0c674" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/bikini_bottom_sub.json" +hash = "da2e7ab54ff9d774333553c1032f89f0ee06518633e5b44749a3d8464aac1a19" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/birch_sap.json" +hash = "6058560192cd7b6eb826657e1c429739ebda5ce9c98a998d78d917ea36bf0b27" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/birch_sap_chocolate_bar.json" +hash = "81ab57883e7618978e567a964a4f7066f2756fbcbf684285dc754f3aad5bd1c2" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/birch_sap_donut.json" +hash = "72b6dc1a593801b17b539245aa174b5222330f5472849f971413a32973acca3a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/brewing_barrel.json" +hash = "6f7af31458b33d8b274ab0dd19ea1bed9a8c10c86828f65983fa821cc11a0988" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/brewing_barrel/acorn_wine.json" +hash = "fa86f79e907269d353b7a66efa9ead0542792d263d7329669e589f5d903858f6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/brewing_barrel/cheese_wheel.json" +hash = "ef235164508f7c0a9ec20fb589a235557bf3d490c74a05d936e9d23f2e8c772e" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/brewing_barrel/glow_berry_lager.json" +hash = "fcdb412e9cc9b60a38e70dc3e5dbd1791c4444c40999c4446ba9ea4af4675873" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/brewing_barrel/iced_melon_lager.json" +hash = "94f7623b62e5a0227f4caef73fe58aafa7b65902ac8f4a0f1a521dcb64248147" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/brewing_barrel/mead.json" +hash = "7b0a7da1033129cffa46b8b20455506fbcfb20fcc981d890b28190338fceb596" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/brewing_barrel/pickled_sea_pickles.json" +hash = "02f84e6ec620282332574e97057747808909de83f6edcc36e2e6a1816d0d61f7" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/brewing_barrel/rum.json" +hash = "71c24f936c6d9a12562d2eb04213ef146167cc3a9f864d7c0b216a2d4f2d75cd" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/brewing_barrel/vodka.json" +hash = "59b2a69829e0539509adafde17e0351e555f0fd66ba47150d2a5dd64e2f6905e" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/buche_de_noel.json" +hash = "431a10e04cc36631d6ee74acee8697f205d52533efa2e6f8209a9ff571491a95" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/carrot_and_carrot.json" +hash = "9845147b675ff434f094c64eb60eeea0a5591548cc411aa9c55c68567806d39c" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/carrot_spices_from_carrot.json" +hash = "d8ac514c604b9ee36e90224e5c217a5725815f6bc3f1587b9c66ea623c5a5376" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/carrot_spices_from_gem_carrot.json" +hash = "aef68d3b2e7d79ba5c3008ca8bbff745201b663d404bbd467cacc0106fb49bcb" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/carrot_tart.json" +hash = "7c0972e6d2790c35bc745cd250d7699696a562cfbb041ea3e128a550cbd34227" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/chinese_crepe.json" +hash = "a27ff14994db475914e34100284c571595801cd9c7b93c101c4f13a9247ef6d5" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/chocolate_croissant.json" +hash = "1ec841e42e5b7c5565c40808bab72ee60d482585791ac358705162090a436521" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/chorus_mousse.json" +hash = "be549eb820f0cd69c7dfe5b89c8d9536c5c912276f11049337e6560fc904f651" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/chorus_oil.json" +hash = "b8afc532c4598b1ed0d9857341e21420d5d50d7c503b7bdf698d2239d091fe96" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/coaster.json" +hash = "4c0e1a0a736ba79772aaa2a12b32ee4cb1b4021d052999f2469fe5c963c050fc" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/bane_of_arthropods.json" +hash = "474b21109e48f217a0666dda2c134c634c7b9f77ea723c2623caefe37c1050d3" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/birch_sap_vodka.json" +hash = "39089e2f173efd95ddf2830e934a87ee78bb23a62f1a6883627dd6b2cf7656c6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/black_pearl.json" +hash = "16abdc5211dbfcb6b70d8b83c284e2b0c542d40d3abf56029f3faacc5d0f6425" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/jacks_story.json" +hash = "fc4d91074d249a92069309305c614b5b597d652855714b4f7621962a78dc8461" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/july_21.json" +hash = "67281d36e35865a2d4db6c5356816edd3c9bf268fccde0c1166492805940e47d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/light_yellow_firefly.json" +hash = "83cf1e9341028d6187de68c0b19b2430ec720fdd71ea828e6b7dee70f01d593f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/milk_acorn_wine.json" +hash = "6ecdcd3114918414c9b00d1656fdb99654ebf21ac577cf81a01af6d0c1b179f5" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/mushy_sunset.json" +hash = "f8a100f3440b396e620c20f117ff421dc8a4a3986c0c1b79abc680362ae133a8" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/nebula_chronicles.json" +hash = "3a1902ca53cf690e9e575e07ba606c0d86b7318ac1858e75af33554462cd19ea" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/red_lizard.json" +hash = "1774ba9a308c1614726c5265bd62072f2001080236ffa32c99d38a4486bb4552" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/sculked_garden.json" +hash = "c5bd5594c9a59e156cb7eefbedc1eb1addb42046ebfd399385ea32c29a0de403" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/second_guess.json" +hash = "d1bc8d2da4c14a61b57889ea177cee49780a0c57b27a43aa5a82b4d2cd2ee9d6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/shanghai_beach.json" +hash = "3a8b948bd04dfca16a17611f3d638d112c381e6448daf4c2aa1a9c851138ed8e" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/shooting_star.json" +hash = "6d9a9711874110a5d20de8de50ec449ca458b3104e78ca5d82cf36700cdb3fa8" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/slimy_ball.json" +hash = "1634cf5d8a62a53bb13998af50a1bbbbd50274e9b6327868fcbd68dc18657f4d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/sweet_berry_martini.json" +hash = "49182f28f78d0a6af82ed43df333d344fa6e9a1f6164ac9ec504ed1d5c7f1246" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/tears_of_stanley.json" +hash = "1935c647266c3b5da6376a49684f60c7903b7aafa5000a49985d35d951abfe84" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/tsundere_heroine.json" +hash = "7467c71164ddfb6dc2109333d635256dd9854f15356b6177a717731a0528857a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/twilight_forest.json" +hash = "ea840b4bf43595a6b3e5b9c44c81e52c64a368d7289495f0e62525f17d889b64" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/cocktails/yura_punk.json" +hash = "b85d468030e2f1f2cafe352764ee8798379e645c634d15775feabd9420f7d8d1" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/ars_nouveau/fruit_cereal_porridge_from_mana_berry.json" +hash = "4499abf3d5e50a5bf0ae5a8098b16ade136135f7da86abf319b5ca4a79c0fcbe" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/create/compacting_ice_cubes.json" +hash = "fa225aba676cddbffff04b858bc2391ee0e18835553b04a542d4b6be9969c2b0" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/create/crushing_carrot_spices.json" +hash = "79b5f9d2f8c6a062bfa0da76cb71c983d9c618529702a070a13ca2d3815f33e5" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/create/crushing_rock_salt.json" +hash = "3ddf99a5af3ffad7e1beb9f10d5889f9daaa16a61ca334749e8a64ca645defb1" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/create/milling_acorn.json" +hash = "dac48ced5acf9903d6348cbd19c6496974f3f9f185a264da2a43b08b81535972" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/create/milling_carrot_spices.json" +hash = "0ea99c9b5775a6e54ef412731cf504d321f596a0a3b7ce6528759e54f49beea4" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/create/mixing_acorn_oil.json" +hash = "0e7f5e68d807db6065cf356590fb668f5bc55d69bf669b15545e8573522b6575" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/create/mixing_chorus_oil.json" +hash = "b9b0a74c34f7dbd2bc657fbdcb6014fc1f34f1b2cd34152ee2cc0c0526eab47f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/create/mixing_sea_salt.json" +hash = "91ff362c0d6f317b0de8430c95c212b7b54b08c190c85399a390af682bb2a3bc" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/farmersdelight/cutting/beef_grains.json" +hash = "f1ed8afeb4649e9f8a9851a1b11fc320607702a757df85057c8c3bbc25c8354c" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/farmersdelight/cutting/dungeon_pizza_slice.json" +hash = "7e988a29c9a06bc8d67395870d9dba8077170064f83edbbc4b9ea27760e9f990" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/farmersdelight/cutting/feast_pizza_slice.json" +hash = "ddddebe02b7b2e8b0195e444fe1d4733271056ea920e3a5f8f01634437e2a126" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/farmersdelight/cutting/shiny_pizza_slice.json" +hash = "d37d96092bc8088523a9bd41f5d666360a44c6b023a78874d23cae4206ba0e1e" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/farmersdelight/cutting/small_beef_in_dripleaf.json" +hash = "76cd5653a8ca1601f6e12ffa15eb78903066e2ddf2bbddec749d651558db28be" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/farmersdelight/cutting/small_chorus_mousse.json" +hash = "8645ef9cabbc3785be53cf180664ab00a55cf9cfe45dc5e12642d852061a37e5" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/farmersdelight/cutting/small_monster_lasagna.json" +hash = "6fce1827077e9135f9e43956a776b9a5749fc24e41d1e6c6b7740c0f3dafb4ce" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/farmersdelight/cutting/small_slime_mousse.json" +hash = "06f9b4857eb1a40700a7e539f6119663930f23a7bb4ac6011331111d1d496f79" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/farmersdelight/cutting/sweet_loaf_slice.json" +hash = "c9fc047412435744f44041a8f102059ab8c211c22e750b38e38614d22045a789" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/locusazzurro_icaruswings/fried_chicken_combo_from_wings.json" +hash = "a10e12cf1a9e3c3c72ff8f9e39246d8fc99a0a62fa4bc547966c442e0fff027b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/mekanism/infusing_gem_carrot.json" +hash = "f87990121cd46b1fbcb4adb06524bab8a3eba2fbe2b1ea9d65574b914a90e8f1" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/sakura/cooking/drumstick.json" +hash = "5256e76e6e2c7da9cfbf73ea3d732c587952e324455921fb9b7537c12f1bf902" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/sakura/cooking/fries.json" +hash = "0ded9e4656d6b585a3ba6a4e6f5834124d7d177f3ccf2e5494059f4572892ea9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/thermal/smelter_gem_carrot.json" +hash = "bc0483f1ba403e6b3d780853a85bffcb947b1fa45187b6f35a3a4d173074c224" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/twilightforest/chinese_crepe.json" +hash = "fcfe08f2dc6cbb497ede093400dbb6cea8e25476b285a2a48b551d1a7e3c6a80" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/twilightforest/curry_udon.json" +hash = "6dd2dd4657a63c57d1f93125ca0daac3de3c61139ed00d8a56d89bc70a56bed2" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/compat/twilightforest/feast_pizza.json" +hash = "9f891d8ecbf685b29e2dd2e71a3da2dec4c93516974f73891ca64159659267b9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/creeper_cereal_porridge.json" +hash = "63e888161ff78cff9401efbd3f3e3fe5c160a6f7b0a9e3a0cc94481ed0e15a80" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/crimson_fungi_spring_roll.json" +hash = "62599b986aee01fe16b34b2246d565b699a2deebd81826b6d55bcecb02891125" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/crispy_bread_with_kelp.json" +hash = "7c434a3950e30db50131a47675b50d2774f57c212f49e63325d9f74fec42d8c4" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/croque_madame.json" +hash = "20fcd4c805e4b5e6972f79f18658f133d01d4fa848c863cddbfddc5b856497e7" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/curry_udon.json" +hash = "21cb61acd915d8e9f9aa2cdda8b2b33040303f77a65f9078d919465ed2835a66" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/drumstick.json" +hash = "5dfce35a29ee8a38e4df9a91b478d73f3179649772a7f0337a4098d6b03af20d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/dungeon_pizza.json" +hash = "72eae3d847a82c2d7aa53343ae09db0fc656c04216a04c12d5808d0ff4a57cd9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/egg_tart.json" +hash = "fe2673baac5a8160e62639bad0a4e224bb800506c07595d48c484dceef12de55" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/empty_can.json" +hash = "5f40130c98f4c6bbc3384a2353bf773c6542f6bd0f1c50db6e5023f427273bb6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/enchanted_cheese.json" +hash = "1dff0444a1990e848cbd271bd732a157ce5320d6ad1177f8bd2a1e61d62294a8" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/feast_pizza.json" +hash = "8b7cb96aa0942ae9ec1a77bb99585fb28488f076f7f75c2304191f60261ee0b9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/fishermens_delight.json" +hash = "3aeb8f5b8423566dce9709ac322625d58aacf205125443f38a93cb93ec52036b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/flower_cake.json" +hash = "756651dc1b0294c05524a1c94f80a4bc1ffd002a6c45b82662b8989393125df1" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/fresh_salad.json" +hash = "d06cb7c8573aad3d3b10112c933c732a3797436b04c2e97e9e5190b5f1efc1ab" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/fried_chicken_combo.json" +hash = "404898c97881dfb1c069ed09d273589a6581acea619aaf2c514a375a0173888e" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/fried_pumpkin_cake.json" +hash = "f9534662c20a0c77920ddfbf928d633f8bf38fd5158481524d93db55eac768a1" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/fries.json" +hash = "904fe6cda6e4d61e8dddd68d67630a33ba259f8a22119eba817b8aa2057597f4" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/fruit_cereal_porridge.json" +hash = "bc8d4bf940b4d829e4718a687dc66e5ce7d246cc5522a05509a2f6bfcce295df" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/golden_cheese.json" +hash = "214b2af41595fbf3f5cff65b410f9cd9ca122cb3847962b7ff4cdca4a29e72fa" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/grilled_fish_and_cactus.json" +hash = "68f88a8846a225ab06622839c64607ba7ffd12b6b9a4f640bcd6596132fb29a1" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/hi_nrg_brulee.json" +hash = "f606d3bb93e8077fac734ec5ebf6c9ef54597830bccce27f6cfb343755e53993" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/honey_brulee.json" +hash = "62b5d43974ee6753e86ea51bd85e90c9d27a6ebe9a043b1ca1540194c7c323d9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/ice_cubes.json" +hash = "d9d535579be5d4a2e2e5275bfd72e2668183ed750030306da057dbff0070b24f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/kelp_with_sunflower_seed.json" +hash = "a347db663a95efca66a19fc75fe34bd1abee153b3232b319077a3278c1997e2c" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/knife.json" +hash = "aae06470b3ac9b2215d65198f05089b3e2acb513899b6fd188066404ddfa4153" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/lava_brulee.json" +hash = "f76dfbd9a3ee95b525b3e3efcb0df8f1a8d80167a040c606389b77336784dd86" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/leafy_fresh_chocolate.json" +hash = "38c1fd711cfd08d233be6ea8870fdf503fbe72e0e9845d8a9d610e7f644fe684" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/lush_salad.json" +hash = "aa1be9fe0d8d28d635a383ea16931655bf148f3d8e7459cd5333985b3808f8e6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/mead_base.json" +hash = "3d0afe3131e5b84edc7c54bad6ca0360e6a2cee5dc317f4553b13ae488e139d9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/milk.json" +hash = "bddc2312455e4dbd77edc9c4c0de4b8b746a27de4aaf2b19d8a22d6044e94f93" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/milk_bucket.json" +hash = "a5d93693bbe2c7b03478660153f215ba6a98488a882e515173edcef1f51346d6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/mixed_nuts_mooncake.json" +hash = "34ed70b43fafe14f89b6e148fe75d0c5073f2104f0cb89f351e2bd7a1cd2a98b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/monster_lasagna.json" +hash = "c178e668583bd8809b33e21924a8b8f2d1c1ca57a68d49cc9dab2f36c08d2764" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/moss_fried_lamb_cutlets.json" +hash = "d9e539845e53a22ed1717dc1cb68342a68d74b5086bd3a5b13d3d3a87b740f67" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/phantom_stew.json" +hash = "5c28cc47f3964fa558c377192595b62ef12ba2177440a15365d683ebd67ac725" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/pickled_sea_pickles.json" +hash = "432a5c7753e1f44e7a05825e75b01af42e16d41836c0c84e039bbe4825a6278c" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate/beef_in_dripleaf.json" +hash = "93867835f75ad86e60b6edc11d2fcc85ec3fb3a4a8efd23226d3ab36eac8f80d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate/cheese_wheel.json" +hash = "fd52846f1e6336900de02a6632c537f2c52d53f62ef8826b8965d1abd14a4767" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate/chorus_mousse.json" +hash = "f67d17c78cbc3e67df701dff03b1ca3f497a2a3f780145a6243807a9fdcdf5c6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate/dungeon_pizza.json" +hash = "7d275737a91196144fd578c707cda5ff2f6d8eac5ae41d0b7ab706c209ff5405" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate/feast_pizza.json" +hash = "0240305e68ac48b5d86fed6b7f6d14934907f9f4bf48c1cd9bd9ba9030117694" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate/melon.json" +hash = "fce510965581d7255543d515423a7fe7e7d3541c85e1081f3c92c25afca13834" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate/monster_lasagna.json" +hash = "d657fecb1be982aa48ba5d03edb6d5705c80b358349b36d9bf8240e38234bd7d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate/shiny_pizza.json" +hash = "e7356fd5cbe8eebcf9b45b11174438bc8aa2204cfe4f82f8676f97f061dda506" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate/sirloin_steak.json" +hash = "6caf5efb498566a86615f16ec383bff943fc48d68b6b2768d5dc875c07760acd" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate/slime_mousse.json" +hash = "8bde8d02a92bb49b161ddf635b7cb0d5b74e67dbe120b40de2d5e0f55b89f4fa" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate/sweet_loaf.json" +hash = "d55fe2692c795fd865c81759308ef64c6f54401c795e2e7e490de24cd697af70" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate_from_pieces.json" +hash = "10b40d7955aea303b3b46813b52b0abca7cc35db201c6ae2bcbf72b8fed2cdb1" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate_item.json" +hash = "63d53dd420435ed26f88e40486761510d5f13b4d369af6df61a2406d0d806e0b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/plate_item_from_plate_pieces.json" +hash = "e498aa77045df8067f88e828bdf636b6e61b6b6ae52a0f662b3d108eb2f6b317" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/popacorn.json" +hash = "44ebfd692e524ea9682d337422bab12f3facbdc36b8bb8ef8aa160b3386fdc72" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/pressing/tin_ingot.json" +hash = "e410c4f9860e6689565efd4b79f369f31aa086821ada59320e0797e1716a8a47" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/raw_beef_in_dripleaf.json" +hash = "55a64ffa2b1ea49456ca7ddc138427f75fb05046fe2521b08b9a40edcc40f3df" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/raw_sweet_loaf.json" +hash = "76f44462ce718784099e28af99c7c7efb4c7ae6535dca95d884778e4cde1a6cb" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/raw_vegan_beef.json" +hash = "571c03a31127d73b954e4dc0547c5f842bb1e9a4520491a17b3fb8ed32022878" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/raw_vegan_mutton.json" +hash = "3882390aaeb9aa05909b1b1c55cdf959f33a8894e8f096e4716e934afdd49697" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/raw_vegan_pork.json" +hash = "95f8c3e443e1eae6d40d692b25462deb7f9e57b482d920cf99495c3868782441" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/rice_cake.json" +hash = "4c25b7ded029f60c41d4ae8bcecde95970d0a6f0a5721eca3a7d674dbfba2fa4" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/rock_salt.json" +hash = "602093ff0f17e795d8da99e94f9784e35bc4bcef847c676135fad87ff9a8cb7f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/rock_salt_with_tuff.json" +hash = "8e5847aa0bf97a4f0f9d49e8e9bb601cdbfbe638b73679ad0321a7f706e34fc7" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/rum_base.json" +hash = "197051a997f1a140f07d89695cf23a9013ad79fae3782d97c75627f8278c6988" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/sashimi.json" +hash = "126b3c9ddb29fc4a6ed9b86777aa05c4bfd8b038f58bdee67168e8b4f31f5029" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/sea_salt_2.json" +hash = "71e719b1053bdf15ee1eeca691187bff279f31d644ebd8b06f597a950b0c638a" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/seed_pie.json" +hash = "9272778b722c88c2c7b927859d74e55fd79f4ec4b72d062dcc380aa7c75a8ae4" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/shaker.json" +hash = "710ec41ca4729379161f27b1f7cbcc7a67ec1f5dff7280a35fdda4a2fe923915" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/shiny_pizza.json" +hash = "0f606a64be800d27c015a649bd26316b5cbf5e2efa185a213fe554cd32ee5b56" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/sirloin_steak.json" +hash = "d87f97493bbb0e59ed0cbd941537405d07edbc5528cdd6c1293b314b249ac347" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/slime_mousse.json" +hash = "5f6ceba1860ddcdc394c6f4a5b0e7ebc7651524e619fc0d247dcafb81beba539" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/soothing_tea.json" +hash = "4bbc46ae625f2970c57ec29f9fcfb08c388469b9aaae9c2b3d8a71668d361e3b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/stone_shore_quiche.json" +hash = "380f4d33eaa52f62426e14a2dd7687ed7d4df3c396a5d680485fdbf6dae8492e" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/sunflower_oil.json" +hash = "8ca72c80cd79d8baa289879e575d5437cec00e4914d39bfe5781e69a83e47f9c" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/sunflower_oil_from_buckets.json" +hash = "f554c8467c9c0d3e222b3bc8addc340785f666bc84fd95cdcb94486d7c3ef9df" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/sweet_berry_milk.json" +hash = "757d963afa65401eaf8faa43bc494d8efbe00cc200e21dc727ee83d39eca10e6" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/sweet_berry_tart.json" +hash = "aef6db921414a8a250e89abb76bd01d6933537f28f3f55322d23b7b315bf9813" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/sweet_roll.json" +hash = "d7784b4a0fa545c1cf806ab6c0a450be3a0d0eb5a108c769d7c8a890b496a847" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/travelers_salad.json" +hash = "af254c2af66aba9c481587126eb99d8c8031abf3c1cf36234ef5730b0336222c" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/ultra_super_delicious_cereal_porridge.json" +hash = "f5cfc3895ad43793eae43a493f47e4e533af2e223ad45a4172771a8b2551d72f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/vodka_base.json" +hash = "65f1e4a5f50103c7a0e5d74e3a13480a68ab239189d44b2a2c0b64f612d16b1d" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/water.json" +hash = "952cc4821b62fffaab0efd7fc3bfee088cb540538097792b2ca56360420974ec" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/water_bucket.json" +hash = "a78a854a2c380e3aa8a9787d5b36c879b88f4f4c5550c400e153ad26b6ede5b8" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/recipes/woodland_tater_puree.json" +hash = "09536e597205409783090ad3f38663dbbcccc34f3e64fa325c9b394e5e9c7ffc" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/acorn.json" +hash = "8ff9cbcf3e62f12665c3f02ea814aeb2a9117058d6ea8e0d3b287bc15eccee38" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/base.json" +hash = "5fd5ae120c6a9821793300bb0ab7a71b00560af01b184bce53fdc8e698d1a76f" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/container_item.json" +hash = "37fc1bb2b293bec1726cac36073106502d79e1dbe41037c1b1e22e09bc178ee9" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/cooked_meat.json" +hash = "ad8895158040103b63d429fdb14d3fffc9718486d5a293f2341127a8aa6e3a6b" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/corals.json" +hash = "f592897feef30b9bf8d9d27c68dd390e2a40ea447db5118cd43c75b5d8d7f5cd" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/fire_charges.json" +hash = "5113e04f40d1cb92451cbf1ea9db3ce728e2b65cf84f7dacb6122458ce51f4ff" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/fruits.json" +hash = "77c7e9e9d8946602ff15214adbe8936ac9c31fff99f28816f51cff2f553fe3e7" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/grass_spices.json" +hash = "6bfbccfd90a1c7e88a2267d8936130ef3e6603d03cc0762dedba0846b6213513" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/interact_with_plate.json" +hash = "f0a01800e8a70757f035ef2f756a40b0758ed3edbd2ae98d7b9e936a3c425eee" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/knife_item.json" +hash = "3b75f6e6fc064eb0406c1817da16457e97fb9856c66e1fbeebbc400e37c637e4" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/meat.json" +hash = "f303b32e3ace05cb4f7d36e945610ada9494b8e113a082fdb2ab9f1c6cc71f67" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/raw_meat.json" +hash = "afbc5eea2818db9a62a2cc60d41199f95874ae2191a9b786d7a3936110255d7e" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/salt_rock.json" +hash = "2a4fd2f253bd086dacb950eb17772c02eb34bbdb8bc57dccfff6ea9378b00e03" + +[[files]] +file = "config/paxi/datapacks/trees/data/kitchenkarrot/tags/items/vegan_meat.json" +hash = "a56b1de91e9cc13376e61b7274a4f8c0f4729b7ee6f90adeb138ad4405d8023e" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/dimension/overworld.json" +hash = "a0121dc3b08129136a9f42aac0af9c61c4a5017ce9ff2e5e3e8b99cfc6f2ceb7" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/dimension_type/overworld.json" +hash = "36551e9bf34cd51be33080090a1fe72dca0f61c39db5b96b5b5825d498c8b593" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/loot_tables/bastion_bridge.json" +hash = "bd901bb64402d5d45f0a218aabb081a046847790e70a6548885157e2c8476c01" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/loot_tables/bastion_hoglin_stable.json" +hash = "007f918781194f16b45d317346255d42f6bef6e6c0b101a5887192430f48c3c5" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/loot_tables/bastion_other.json" +hash = "279acb076773a0d8e187620882816aa580fc0e16d20edd8824fbbb8f27517b70" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/loot_tables/bastion_treasure.json" +hash = "36307240d5ed1ef6dbd8498c0e1c235eacb92c90678c9af98897e717792f14bf" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/recipes/chainmail_boots.json" +hash = "c4cb16bd51e92aca20e279a1ad5d994f2bf7785fe36b0fc67c851d01a616168b" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/recipes/chainmail_chestplate.json" +hash = "8d021168605fa77f3095cd836b45fb4f9393cbc9e8a4fe0ab7c4dd97bea99c62" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/recipes/chainmail_helmet.json" +hash = "4faadf136b38e520356ae021621ace33b3e00a1d7ab44703286f6a4f4616fb9a" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/recipes/chainmail_leggings.json" +hash = "b3bb75ab57ca146da241021659602e962aac683b3d0a4bedb49d5d9faa32c2d7" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/tags/worldgen/biome/has_structure/pillager_outpost.json" +hash = "33975eff3c2c6cf9000bce7825e1256f756eb8a353be7e9b7011bb4298f97a65" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/tags/worldgen/biome/has_structure/village_desert.json" +hash = "33975eff3c2c6cf9000bce7825e1256f756eb8a353be7e9b7011bb4298f97a65" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/tags/worldgen/biome/has_structure/village_plains.json" +hash = "33975eff3c2c6cf9000bce7825e1256f756eb8a353be7e9b7011bb4298f97a65" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/tags/worldgen/biome/has_structure/village_savanna.json" +hash = "33975eff3c2c6cf9000bce7825e1256f756eb8a353be7e9b7011bb4298f97a65" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/tags/worldgen/biome/has_structure/village_snowy.json" +hash = "33975eff3c2c6cf9000bce7825e1256f756eb8a353be7e9b7011bb4298f97a65" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/tags/worldgen/biome/has_structure/village_taiga.json" +hash = "33975eff3c2c6cf9000bce7825e1256f756eb8a353be7e9b7011bb4298f97a65" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/tags/worldgen/biome/is_forest.json" +hash = "e3a868566b660eee5426a2c4180c035b7e95d59d101d19ae947962e69a49069d" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/tags/worldgen/biome/is_jungle.json" +hash = "e39941a4b867d5d5e541b390ace899ca420e63dd7c6dd16de703313d70443f62" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/badlands.json" +hash = "bc98a5fdbf059772804c508e11628652fd3f992352d09ff1a232b85bc4af74b0" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/bamboo_jungle.json" +hash = "e564cb151475e4f5d1869ee56ac8b22a4603b3a4cebeae54f2acf6f79f847d94" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/beach.json" +hash = "081ff8b7e63666baefbdf411a5d386f6bc59691e61e83055625a6ba105a3c27f" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/birch_forest.json" +hash = "9eca6fcc7a153c383fad1c051559d7f300d4ac46f025b1ca2b78cc699c523d2e" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/cherry_grove.json" +hash = "caa5bab3f50d729e38607cbe553650847d5f4e8d22f7d877ffe26a956e170dfc" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/cold_ocean.json" +hash = "8af48310abde2d24b528ebafd83dbbae58114697ccf4f222c3b3f054b1194ed2" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/dark_forest.json" +hash = "1815498d55cc8fcf7481e9feb1c2e3cea1a6bcf78af808acbde1c3b9e37aff7d" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/deep_cold_ocean.json" +hash = "6ec7f7582dda4bb4860c62f5c4ae8f7b0df50d473a36174c1148326e11482586" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/deep_frozen_ocean.json" +hash = "7efc4e25d71249b210944af93588764914760dc2b97f7c05c7716dee6067bcc1" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json" +hash = "e22b051c787eaaa63882d701022e62076bd49f80364b5a7020bfdba91314b71e" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/deep_ocean.json" +hash = "47fedf16ac94f182c4d2dbcaa8110e3144944035bb602e69eaa5cf88b984f56e" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/desert.json" +hash = "a8290df1b1da77109d876c7b19e1a0781e7216c8a65e570b5fffebf1f639d217" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/dripstone_caves.json" +hash = "14428e9ca98c1829fc6b1cf14dd6f016720349634c368bdcda457a2c08abdd50" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/eroded_badlands.json" +hash = "46732e043a0193a6439f41ad034dd3ff1ae2eb742475a7a5c5555f669d75c67c" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/flower_forest.json" +hash = "41b3414ab2eb346030cd4840dfd3f62d989cc970bdc5870f3d90f51294890e4a" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/forest.json" +hash = "da21f7e5c5977e59dc2d5120161c4a2118ff61aa057679df6e6410daa158ce0a" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/frozen_ocean.json" +hash = "1ce674eba5f63203910b076dd23b5dabecb4d893a0673b3df36483575303a50e" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/frozen_peaks.json" +hash = "bab5e2efe0ff4261b52e494c8ff082246f4ef75d38c472bfce8c2755c8ab5b51" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/frozen_river.json" +hash = "02320ff1b915bbc8acbe7baffebf168780e871d17c9d09d3bf4cd50e1757e1df" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/grove.json" +hash = "0286774f88152202a301afa9805ad34b847b4cea320c6e39f96f5087ffe14cee" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/ice_spikes.json" +hash = "13f82fd11acffc332c1ab6656367c7d1706c0337a660580e18db69f3ded82665" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/jagged_peaks.json" +hash = "8e230725f165b4499a330edc451fc8c44650b01dad38011ed20a2851afc24779" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/jungle.json" +hash = "df980dcbefaf44c559f4bd4002f7353873ff633169a0487b6ffa93e43b5452a1" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/lukewarm_ocean.json" +hash = "9e45543b89b606e09b940dc3b8c82df1d546731c512c21f3b81ff7fcc205d939" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/lush_caves.json" +hash = "626a03564112f9510e446b5f4d6b662aef6f4425116305e57ea18bac94c93a38" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/mangrove_swamp.json" +hash = "11d582755cb4cfae94da287e47b7ccabd3b89b89ef945fd11e298ea039c4ad2a" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/meadow.json" +hash = "199a831149befd9cc60c965ab32d2eccd0f924376b2afc52e30afb4d0d7fbf96" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/mushroom_fields.json" +hash = "7f79039761e6e67c76fdcd65cde7ebaa14e37c0cbad9ab4c2820b0702ff901fc" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/ocean.json" +hash = "716330ff861aea80258a1c84bd5da75c6a16d0324f901dce2de87ea0b5d0669d" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/old_growth_birch_forest.json" +hash = "165689976f586a880c3444eaa029ad03ffe47ea9d76542c2943a89aeb14dbaa5" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/old_growth_pine_taiga.json" +hash = "628766a34f7f7f6f9d70e60b0d42dabf6b3ed29fffcc327cc5d94ea082c8eb82" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json" +hash = "43d8f741016a09d0278f91fd50425b38d493449e6a688b19fb04eac30aa02e0c" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/plains.json" +hash = "2a5d3587c0b45d4ecde96b8d2fed5478865d68d6c3818ed871d1e82404b5db2e" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/river.json" +hash = "bae64690022b3988cf6776aaad6d44a505667e1cca5a0b046d02c5b537c79982" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/savanna.json" +hash = "39743fbfabd40a8f10520a8f0d36f09592ec1b2e4344df5b1680f029b5f85501" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/savanna_plateau.json" +hash = "09382c8f42b02d21ebeb87ef6fdc82bdd78860d6b9d9f54f37a275ad4637aeb0" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/snowy_beach.json" +hash = "ec3db2d980c5cdf3380a2d410a9301632e6ac4f7967ecf517dd2fdf1858e7939" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/snowy_plains.json" +hash = "ad8a51efa0cfe230f17a0f892c88d884e7d9e9fa175d6f5de90b12ee5b585514" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/snowy_slopes.json" +hash = "4e6f3614c7c973a6c7d1da6c223ad998051b09953623d17ac7a9ff8a61cda8be" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/snowy_taiga.json" +hash = "55f7f649d1368901988da85fb2b0e9dbe2a667e439ef36375b8983a5a6ac40d3" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/stony_peaks.json" +hash = "94b71f3b07b70e118fcdf3e7035b0b7f6406c85b35b47d82465017aac6220ef4" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/stony_shore.json" +hash = "edae3e804251a470a28b4395b70b1303f379a9a40870a75267bd00b03cd29a00" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/sunflower_plains.json" +hash = "39636974d9f8bce32e53cdddf4ae641a7a434090925c7afb31dbb61e8315a6aa" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/swamp.json" +hash = "7b5ac7fc6912fbad2ce90987da30e17bede5fed2641a3f91ce7b3b8dbda730d0" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/taiga.json" +hash = "324583de532f6af2d6477072fa8e58103395660fa9796569df6b1e8fb0a0460b" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/warm_ocean.json" +hash = "2e148094c6e74a638e9b1b7b4a793ddc2ebfbf210a5d37a7e2aebb03ebe5e46b" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/windswept_gravelly_hills.json" +hash = "bdb00c7d5f0d776d75fa5db9517973db36cc6483066354158f59874453b6b21e" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/windswept_savanna.json" +hash = "c3d0496c0e88cf1db84ea36d974e48d8420decd2b99f3ece92c80018bb4efde2" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/biome/wooded_badlands.json" +hash = "0ec496404318edd5c776af27271fa51aea68509848109e18b9b8fead4d61816f" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld/caves/entrances.json" +hash = "f92b181869375712268846f1fac620e750fd331cc38fdd12d84915d5aca9ae76" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld/caves/noodle.json" +hash = "050bdb9b04b7a2a3765460823e4f95805c294bd0234f40eb76446327edece778" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld/caves/pillars.json" +hash = "24ce67322f2d163fe3f8b6cb9c88b08cfa47f7524c1012566b1b0ce01ba12c90" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d.json" +hash = "64f17e438868ff14a18e017a357b06371ebf7f5846af295ce2467ca89fda04ab" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d_thickness_modulator.json" +hash = "e41f54b39ec00d43bf3d1b1c988f5bfbe68fbacc9e1042a3822daecb46b9f897" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_roughness_function.json" +hash = "b6d660c27b66eb617654da24041c6c88da755eba583cd9e0e2692984fe9fbfd6" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld/factor.json" +hash = "c62b36cd1c69fc35bdfa5a7cfe76bd30960d5433cb93d311a3b0ee5c18c2fb97" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld/jaggedness.json" +hash = "888c61c569cc05beff1e1eafccaf3ee2d5d7673535455b4c0f5d59d4ae6d2684" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld/offset.json" +hash = "bf62d37a983918c17fbbee0b30c873b9443245d87b9e5dd59e0ad839bdf4a3a1" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld/sloped_cheese.json" +hash = "ee60e501c4ad50bd3d2776398555920b381190e608cce283a767e602f7024258" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld_amplified/depth.json" +hash = "bbf5c46d34f34009865f7618a7827637edf412b9dd23800b4c670508cef707f5" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld_amplified/factor.json" +hash = "eba0c4b773c404b2e4b1fec1db943cd7448172661f10ae48e31b3c03a2b385cc" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld_amplified/jaggedness.json" +hash = "20230738426c3e5df39812d153831302992f0b4c908eafda152add494b797a3d" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld_amplified/offset.json" +hash = "e8084c7878845a9a4485967a0336556f6644216472af43c0c3b9982cb28be4fb" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld_amplified/sloped_cheese.json" +hash = "57cda03ff2a40bceb3e7c7cae73469e229c702b34812229bf6d94235b74cd58f" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld_large_biomes/continents.json" +hash = "e8fb9760d521a5b7185a0e3aefa2489bd416fe9a0f18ce3b7a3e95a29e8f7e59" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld_large_biomes/depth.json" +hash = "ca9a7d4cbc8000bdc9ba31bab349309d31e8ce005033fb8ca70804df22a2c70f" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld_large_biomes/erosion.json" +hash = "d65b7a3530862da47156479d70b1fd6a4432a39817c36e0b9c9af1b47947e344" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld_large_biomes/factor.json" +hash = "3e65f1f170a769d840a446b305c577921af1c71d93206a3558257d9bc315d98e" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld_large_biomes/jaggedness.json" +hash = "27031b05196a1b86672087113554ba7ba10f123dfd0e105388e003f5877fcbfa" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld_large_biomes/offset.json" +hash = "054ee17edbaa138478711ebdd9fcbbcad0ef918640551476023c160f96dd51bb" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/overworld_large_biomes/sloped_cheese.json" +hash = "28d5a01a07f16ed4acbd31bc7c38a85091195671922e0639f244afde0230793c" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/shift_x.json" +hash = "ab55564130965a5df7bb578a04b438a530f197c4fdabd35b4bdf30e84e4669d0" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/shift_z.json" +hash = "603a6c4d11f8d4f16742dc4196193ecc60e0850c9d16feb1008f5bf860f28638" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/density_function/y.json" +hash = "5ed09c041999cef58fe6e6206dbd7f95dfbcc310cef192057dde0c8e704acb74" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise/continentalness.json" +hash = "b9632b0228d8f2927aca494d958cdac10d265fc1e83e837ba0b58b22e9eae01f" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise/continentalness_large.json" +hash = "7b1603ab711c47e3b142d68fd6dbac5281c1da3de92d7d8c083f8f46a0753904" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise/erosion.json" +hash = "0444228573337a2d9f7ccaa73a78353de73283d58f1fe27ee5b27083cea044b9" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise/erosion_large.json" +hash = "a152550842a7126e9d627ef4564792bf35524c0a2b1725b7fe5c8d1975470d7e" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise/jagged.json" +hash = "e176bb3cfab852e5b92cf91ea02ba5c650ea9475b8799da701fa728f61844b7c" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise/offset.json" +hash = "685ec5d37332a7bcc5aec62ee1835b69af9c1c0b8daf7411753713ad135da59a" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise/ridge.json" +hash = "62cf6eb0bf49b414e2ecdc8f29531d205a4a46482709f4869e87d77ce2e45f6e" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise/temperature.json" +hash = "8f5c2fea9428deafd5831359a03104afa2b60de84e29e3c1db810cc38b0052e4" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise/temperature_large.json" +hash = "eb266cadc818706a4bd7c47906b63b6732b2050a8fa8f04606a1ff78f5ec5fca" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise/vegetation.json" +hash = "404eb9e94518246236aad8d23a06a7a27960b004454a10253035d5d188b8c951" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise/vegetation_large.json" +hash = "d5fe0bb7722cc5599e46dcfd0400784d0a54769819cf6a2a7846fd657c59baa3" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise_settings/amplified.json" +hash = "18a045595b19d326d0198f16bf90347d00ea6eed516a0a6ba0eb87b078a36b70" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise_settings/caves.json" +hash = "892666f6e566934f015c9504d8e0668ab1f53573f04f3da54b948d0427b9c9ec" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise_settings/floating_islands.json" +hash = "4433a0970aea30b5806a61badc771cb3becb46da69af4e7d6c553c34ba6907b3" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise_settings/large_biomes.json" +hash = "8458dc43e1937ababa47fa5b1fc735b5d10371425fdbb2e8e5f476391c5827cf" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/noise_settings/overworld.json" +hash = "ca9cc392e5d6d2c5da7de65a694d67bb2e038205bacb0e93bf4f9df170583780" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/structure/village_desert.json" +hash = "a558ac3c16e18450bb54b68ce16db25bf147a5da633b940c92e86e15adc5c7a1" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/structure/village_plains.json" +hash = "804eaa16796db37c2e3fa7d1eb176ed27afa89088257459ea32ee605db1eb4f4" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/structure/village_savanna.json" +hash = "0fa8d5e256e2023baf0417ca530afaec0410b162eb0aeea6677966a73c00126e" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/structure/village_snowy.json" +hash = "32f2255d755ba222cbcdfb4ec27912427351b508217b0232402d87e692e4510b" + +[[files]] +file = "config/paxi/datapacks/trees/data/minecraft/worldgen/structure/village_taiga.json" +hash = "032d4eb361187b11afb51330855fb5f948f34a174b075dbb57a35d287e780014" + +[[files]] +file = "config/paxi/datapacks/trees/pack.mcmeta" +hash = "7d7066c39148fd7f40168414b7a40fbb47538fbc663c674cb8518dd8322545f3" + +[[files]] +file = "config/paxi/datapacks/unoriginal.zip" +hash = "b05f8f3ea55f8c9f1728b9cda65c0c00415fae6ae4e4452fe3a6bf0f581cc18d" + +[[files]] +file = "config/paxi/resourcepack_load_order.json" +hash = "1abf6afa61922979aa1b15f3e83d68b3f8e4bf5270bc4d2406982fe9131574d4" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/Read Me.txt" +hash = "100c49d0d1f6d3c50d8e10f37ef5650e68dde4acc2af03653260a5bd6468dc5f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/create/models/block/mechanical_drill/head.json" +hash = "8a8d735fc5161943457c418494d7c1a7ca7f5e2d064addd1a138d370474790ff" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/create/models/block/mechanical_drill/item.json" +hash = "f959c05797012c159e071b2f60bd2f7f582c89959ee7c397aca52328e4615aee" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/create/models/block/mechanical_harvester/blade.json" +hash = "79c275df8a4310435aa21c7e06936ebb321db4e777d8c23921dd27eb9806970b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/create/models/block/mechanical_harvester/item.json" +hash = "5023fb18262e52e264c6a1e1c71c799301fa52165fb47d7c4de840c11d31c61f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/create/models/block/mechanical_plough.json" +hash = "999a86d1feff71e45dd93ac10940297cc534a4b6a73d2676a6b4d5c514d101b3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/acacia_button.json" +hash = "5799114bf1fa10f5fb1c610c7fbeec77be0921db7ccd362d451ee5e5d443a18e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/acacia_fence.json" +hash = "45e3d9cfd4bf20ec6c46fb3dec0167fd2262e53194acc32546ff81441fff2fde" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/acacia_fence_gate.json" +hash = "1caf95e913732203dc8ac4319106f9dbaa4333dec1b47ae8bf162ab984e1839d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/acacia_pressure_plate.json" +hash = "2193e30ddcd7cf91c62d85287981da7be59a76c3425baf4e6ca083ad86c9d36f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/bamboo_button.json" +hash = "885bbaf6d459e9b24b5dae359b663bc21ab1c796b801f8d695a0aeed136fe598" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/bamboo_pressure_plate.json" +hash = "a33ebdd008862e810cc40672aff582f9a6d2d0a51f3030fcf2a59f98359ad4dc" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/birch_button.json" +hash = "65e6bbb936baf9facbddb1acab4b1bceed6c064bce0325e92bf6873a1e3d755b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/birch_fence.json" +hash = "99e6778fcd3252c836227e267878222ce8524ebeaabedcbdc6b5a705a5b19a65" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/birch_fence_gate.json" +hash = "563d6c60c289431ffa50b032e805cc3c8656536426fe650137cdee0863b80039" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/birch_pressure_plate.json" +hash = "b01c6384bf6d3943eb800d1d7efa44e2002bcfade6f7b857c8d4185863f810b8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/brick_wall.json" +hash = "f5b42b49a02653f557cd5f64bd4af2aadbc25a9a4f6a4dc9f333053672c09f83" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/brown_mushroom.json" +hash = "f726194ce725a3c17ef5b0e266ea608d750981a148312c1c8cdab1b14c20a863" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/cactus.json" +hash = "e02eb6cc423e917344b0ca9a3ec8f6dd46d9cba4dc235d7787d5ac93dff581fa" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/cherry_button.json" +hash = "81ebce13ab2b133b7d5b83a6f598df40b8d2afbba31d7fc7a526a29bcbbcbd07" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/cherry_fence.json" +hash = "8a9c359d81ea4ff6e08fc9cf857f22cd104f2bd5df5107bfc43debe64fc58732" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/cherry_fence_gate.json" +hash = "41a649326033691b7e52c313d1e2ce63d5007ab60c7ec2fb4b62fcec02763f66" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/cherry_pressure_plate.json" +hash = "c73748defb4258b238ddf67578a069c8b253177bb6a45af0b199d4e76382bae8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/crimson_button.json" +hash = "752f78f8d7ff2babd48a4c809aaa765a65e9ef5a4dfe4f39a05841d07883ff2b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/crimson_fence.json" +hash = "8a567a8609e608a8aabf993613e4f8b646fc01c106f777a1e567ff9ada32c057" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/crimson_fence_gate.json" +hash = "99f303e47fc2ba7427ba8ab88c82a474c759b78e61ccae27ddfa1a0b30ab1963" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/crimson_pressure_plate.json" +hash = "10872bd3924e63c1efb0542bcd8a5a3b124aa5404ff78ac89016e17fde2403ec" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/cut_red_sandstone_slab.json" +hash = "c362b7374be7403f2dcb67b29aa733747547ca6e6875158e7e3557fbb0ebd9a6" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/cut_sandstone_slab.json" +hash = "ae3f6087641f3df6528f628771b4cd063381ec15b7249f7b45591deceed90c86" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/dark_oak_button.json" +hash = "2cef5b0d416820e4ec0d65090ac5f1569d12780456d958630e0a7183b55f62bc" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/dark_oak_fence.json" +hash = "cca55480a173637271046a9f046d8cd8ab3aafd9e3630c794efb0489344f46d7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/dark_oak_fence_gate.json" +hash = "66737975608bb9f24e390fc54afb8be692062bb5629d59a3a0e2601690358b5e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/dark_oak_pressure_plate.json" +hash = "e226bba261d92898770f36dda7ee0c314baca0c52012f53c01b568e2cc7b5b28" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/grass.json" +hash = "6cf296c25edb5c7d3eae57dc4cb4dd3d26c3c55394be2156ce2a8e35ed612d17" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/grass_block.json" +hash = "cb19e1c118d91fec440318d9783274d2d1a1d1bed44fe76bfa41c9db45eb27f2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/heavy_weighted_pressure_plate.json" +hash = "083a198da470115f0dacf3a243233f56c1d2ffc4c12766c15bdd04358c39ba19" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/jungle_button.json" +hash = "18373a621926275b7a28b4df77e1445f1be00cde13cb319c1c6e330e27a23211" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/jungle_fence.json" +hash = "48185ef6c0925e335a8e820fe80120c471cced54b59f89f35f38f14318109cfe" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/jungle_fence_gate.json" +hash = "c21ca4e42361999f5d64903501e5b14a5cfee65043655831ab94d55d75eaa4ca" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/jungle_pressure_plate.json" +hash = "9d38edb34cfd48d9ef7e389e3ff4cad2641a1f1f979e8b10b007dc16438434bc" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/light_weighted_pressure_plate.json" +hash = "734c96bd3fb6246f496df81c5b2074e9ca27f1723551b0a7921ba2e4c5597234" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/lily_pad.json" +hash = "22ca77f6b325ae9ce8f3cbb90190623e526260273d00a14f7fc122a6c81a2e7b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/mangrove_button.json" +hash = "9e0340c52fc0240bc702c68ed9afbed5443515e6db7406e95195bc49bda3ea1e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/mangrove_fence.json" +hash = "fc867706a040e0653a0dd858554f6bf386e8622c79a1523d612e483761fb0d50" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/mangrove_fence_gate.json" +hash = "d85b3164b127ff7cea227e4b800b5a637f783c79497747d85e8c20d51dcc39b3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/mangrove_pressure_plate.json" +hash = "ff54c4d22ae71e79301e655fda097b2c07a93059075e301ef5fd591f99776eb7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/mossy_stone_brick_wall.json" +hash = "c0afbc5e78737ba87baef15d9d99dbedf287e9c2062b8ce0a81a95ca28c54b70" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/mycelium.json" +hash = "f8a6e6e3f992ee2735908cbb386a5832f62d582b893bd8c98eb16ef39a3e8e9b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/nether_brick_fence.json" +hash = "bece04bd71e1defc4975df54d6dc507255aa389b23a6963efeb95da380ab1bb2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/nether_brick_wall.json" +hash = "d7359751c54e46018936432bd65517f6d6f2508a2ff9dd59e5f7eb28e6e780f4" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/oak_button.json" +hash = "060d5724ccc442a7756b7fca30b82861f4d3da66cdfbbff40f7ab6e02dd3ddca" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/oak_fence.json" +hash = "90e27fa4ed6c37b28628c6139ffcac8cb808fdfc305ec1ee3f34d945263d441a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/oak_fence_gate.json" +hash = "077297b61a935e0dabd4017d1d5a18695c010f6be35b998e65a2ecd5a25464df" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/oak_pressure_plate.json" +hash = "5297c6a8198baf08bd47d11c6209bdd314c71005387176b34eb31084cbc2f3a1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/podzol.json" +hash = "27fee772721b09025eb84c7065b2b6b84be721e75b330c9571e485d3116826e3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/polished_andesite_slab.json" +hash = "362fa7e1bb2f05ae9f61c1931f53e0384ec8874142f4ffb8a12c42692810e15f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/polished_blackstone_button.json" +hash = "3a8738353fc70ede786ffd3fefc27da9ac445148e5c675206f28f999aff0dbd2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/polished_blackstone_pressure_plate.json" +hash = "3cf930a9badcd48274b8ab1d168bfca7b6cf48b0aea427f9094bddf52c71ea46" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/polished_diorite_slab.json" +hash = "c8843d584f0d4371cca5faa18c4c89dc7c9b1c549ee11c4dc1ef7758860b4ce3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/polished_granite_slab.json" +hash = "a5abac0d060d3b3e0702f052aad31d4316171b9e2427a2a7259967c72d7c6c9d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/potted_cactus.json" +hash = "9a1e123e5447937e9690b3cf338528e4281a50bbeae0ecd9b62c4753f5f7ef48" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/quartz_slab.json" +hash = "c463ef43a41d1db4e54056e37ad6a3609dcd3194da1853009a636e58c8c3a6a4" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/red_mushroom.json" +hash = "a222b63c6cf976acb86ab10a38d27644743a46d1258946e4914e298299482334" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/red_nether_brick_wall.json" +hash = "d6a3234c53979c173b41fb3ef748ff43a9c744ae9a801f5c14e0dc3bc52bc421" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/red_sandstone_slab.json" +hash = "407c367a4262ab8624359955a28e78c1e81eb68859bc1ed9d03c28c83874967d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/red_sandstone_stairs.json" +hash = "80d689b57587687a0fbf279249e7ec09e8cd75dd73c826c8d922df0ac4fb31ec" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/red_sandstone_wall.json" +hash = "60d33446788e6c5bb335fde9cdc66fbe1c27aad79bedb7c8d62125427033557a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/sandstone_stairs.json" +hash = "e47f55b9cac5fd78778fac0fd8db54f3df60bede2bba558dd8117292617309ff" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/sandstone_wall.json" +hash = "b83bc84320ca7db9fe68244767824926fe3d6e97e90c6f17c96cb1c2e2687565" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/short_grass.json" +hash = "08e715368255a35234c7bed30832b5ca8682b0b0a2c68d7ff0bb12be00ef164e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/spruce_button.json" +hash = "1cb15953ebd2304abfdc869ed0eab404b99301a93709283eae80ff32f06a60ec" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/spruce_fence.json" +hash = "5bb4418a0693dcc0c7dfd7ccba376610672e7d8c73cddabbd1d9ef9c56cc224a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/spruce_fence_gate.json" +hash = "bf229e51589a2794528844cf7733319d8a1f375ebd439b4fee210a432f5b4823" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/spruce_pressure_plate.json" +hash = "219d223364dc924b0f7a9c65e04905f825a5d483e78bd633f094580b603946e1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/stone_brick_wall.json" +hash = "3bb9aadd0d18e190a78abd3d61e62d6b2b5524e7f5c7ca87636d67e0244c7dec" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/stone_button.json" +hash = "95f1a01f1c71cc3cd5ae47da26867deb6bd4f96fca13a2fff0209ad2e803341d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/stone_pressure_plate.json" +hash = "bab70ce202a1b0c7f9182fe8d1a3bfbedf44ef24b77d30b4066e5d1f2a092f57" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/warped_button.json" +hash = "85d5c0af6f7c098b158d182f564312bc219561b0c3453751d73a5f9082eb9ad0" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/warped_fence.json" +hash = "eaf54ed10b76a5629eb370684b6fa0a07d126b294c3a25c940a193bcc9c06f94" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/warped_fence_gate.json" +hash = "8e467780b3d1e2a10e0e18cbdb58f13cb5b8c834b7ecdec0eaff0daa4881f414" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/blockstates/warped_pressure_plate.json" +hash = "d4d651ec5ae6b88bcd5392d828c92d8245f929d9f1320ee9ee06f0aa0fbad147" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/acacia_button_inventory.json" +hash = "b1db28e89d0af13a6549d63453de018084cc00bf705bf593d07a8745ba26f344" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/acacia_fence_inventory.json" +hash = "e94b9b501c8608dae54bde9c926553f059f14d84421760b5fafab48db289453c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/anvil.json" +hash = "f1fc19fbd1eda94b9aaa027812756612e229bb49ba21f86c3cfe7c0c798ba8f6" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/bamboo_button_inventory.json" +hash = "7a703f81391d6cc7968ce20d6afedc84b4775d758951b843d1992b6ed1a7a59b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/birch_button_inventory.json" +hash = "e186639fe0271eac4ff7191229475eea724bef18f14722e624e063ac2eaaed9a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/birch_fence_inventory.json" +hash = "6336c81d54543704104b9f4c43e9d77bb181633b72781de49e1a93d3e2b8168d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/brick_wall_inventory.json" +hash = "e69abfa7ea9540a72ce2dd3f5046db7b72732e4a4973c8ecc2fdfd0c74acc90c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button.json" +hash = "7791ef8a09e72f0d8ec89edee776120a12bcd71291dd2bca6105e1c375c79b73" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/acacia_button.json" +hash = "30bd2343efd36028f2949c9a9e6d4ba76328fc1dea18ad69ee40231367bdd00b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/acacia_button_pressed.json" +hash = "a49878551af1a0d32a81f6163a21802935b1c42dd22ea23ed17af997d0b2b81b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/bamboo_button.json" +hash = "c76ccb6293bd2edaade4cfe6ba1b53c3a132f1a0b20de18c66de1a68f0736722" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/bamboo_button_pressed.json" +hash = "d245e2b8188416962695aede72ec218929aec31fe19954e60fd3ca2b3f287e45" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/birch_button.json" +hash = "476d4e0e419150d8f14a32fbff0e6d9bf2640427f2144061909749832d48caa1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/birch_button_pressed.json" +hash = "8f80275c99e2ebcf690556c7665a5917c4bf37f23356f2779bd8695eed904081" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/cherry_button.json" +hash = "d409e46c401af7992af2a798881bcfcbbce55037c247adf75adfb4184cf1d049" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/cherry_button_pressed.json" +hash = "df145ea65acd089e8c7de22be18a063ad65b304d079bbdf4c24e5a2c24ca355d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/crimson_button.json" +hash = "c8e3b8f2eda4114a26fd01f7e48d21d5f65c5232d0b77ba7d916f8799928f537" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/crimson_button_pressed.json" +hash = "9edd2f814fc0fe60ff3f956cd98c5076a3dbcc8b57c6ae85ebfcfe91f1a22da5" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/dark_oak_button.json" +hash = "51c8f8564b38954a4b73cecc0abb42e6f73d5262e1a9cf037e07c7578e5ed073" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/dark_oak_button_pressed.json" +hash = "81ec0469403d45f7d280679a0d1ed831ad2657717a7acd0fdaabbee137151348" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/jungle_button.json" +hash = "9a35e9a51e572eb193608bd42d0327bd2fc5ccea7c289a0c0a1c4aa65fccd313" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/jungle_button_pressed.json" +hash = "d4697460b918cd75b6165596d80e10f1f2db89b6a666b9e6ab0a17cf4c8dbb72" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/mangrove_button.json" +hash = "9f5fdec2316bcb3ab45a5d0c8fa43fd0689032963ab2af8e973d74186b1f21ff" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/mangrove_button_pressed.json" +hash = "1ef59f5aebd1ed77b748ba8624f0817e2d65c2e3b82011cd7bb2648de8e0ddc2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/misc/button.json" +hash = "abb653c69cf7b7a4887972a1fca23d80a8687d9e62e6fbb660d523a26ad3f8cb" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/misc/button_inventory.json" +hash = "c4d117ae25e219b07e73c5b6f175b067fca8a8e82257c9ce52c4fe783427c2fb" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/misc/button_pressed.json" +hash = "c4b7e38853a4d220e0d285446387f7c54e817288038846fb9550cc834f408b3d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/oak_button.json" +hash = "0452f05044435d592e508935ced1c7eb9098b6754cac9a0136096f0b20c0ce16" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/oak_button_pressed.json" +hash = "af3f14805d1c03c35935a1daef9d3796b4eb61afc3d1f0752a582b755ad21223" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/polished_blackstone_button.json" +hash = "6ddbd32304c8bece2a7e3e0326e377e2cb60c91cad169ca437d58011e1259706" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/polished_blackstone_button_pressed.json" +hash = "6a094091d2c3fbee6e6037f5e87ea771934937d596d337337792cac8de245cd9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/spruce_button.json" +hash = "2196e05a7f04273f7d2be804ed3a5e59b70107a84b699ea01c929fa002bca0a1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/spruce_button_inventory.json" +hash = "ee0edd6f99b107b9bd29a7758611b489785f612ed97432d4ae510d247f8580b8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/spruce_button_pressed.json" +hash = "5b7ff012855018a6dfc8016df800e17fd7bad784278283df60856c35e4711af5" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/stone_button.json" +hash = "2d77684609a71e5d31b7500bb45f89bbe37857a647320962399624343e833cd9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/stone_button_pressed.json" +hash = "5d74c219f5ccbfc656f59b011442daded36f70b1154b8b4d929c3a26e189f8e8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/warped_button.json" +hash = "827728a781b3e6ec70fbc300049161861fc769007fcc3543e1fa61e532e7b506" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/button/warped_button_pressed.json" +hash = "6058594e8d7e230455de50075ee4f2f363f127bc94bded9492c29c08e9c9b4ba" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/cactus.json" +hash = "b287673d73e6f79ab1827a1dcc2bee7aeb0688d2acdd9f0ada4b835ac73b54f0" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/cherry_button_inventory.json" +hash = "4abb391af737dcc52d3a08e831af8bd6b003eb7bf3015730a36fecb8e4b626ca" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/cherry_fence_inventory.json" +hash = "f2b1ddf0a72e3a7bf5f0e653f36237c9b3469a7c55ff20b51e69d74f8747bfdc" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/chipped_anvil.json" +hash = "672ad77dc8c2aea6f788e9a71dd1b3e68196a944959dee2a8a48a2a1264e1056" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/crimson_button_inventory.json" +hash = "dccaf325c23e410d66feb394700ccb84c778b3fd076adb3c6365ade2760c2f6c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/crimson_fence_inventory.json" +hash = "63e9945abe15de9e5c6e3da861d94f27d29c32db2712c63e963bace1f0415b98" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/cut_red_sandstone_slab.json" +hash = "4c9b249ecf49c0e356cef41b03294eac7c3eb2d33d52ab1fc93be0944ac511ea" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/cut_red_sandstone_slab_double.json" +hash = "24bd87ec3f65f3a27cf605841118bda56fd4f6c11cbdd0fae8be625ef9c96376" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/cut_red_sandstone_slab_top.json" +hash = "470b42c43a2d8c7c69d910ed5072c163a59e3bf9e0f191f134c8b9a99e9d9802" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/cut_sandstone_slab.json" +hash = "5b8235ae6de96c247e74f109ab997453e47260bf5c554bd98e4dc8fe3181581c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/cut_sandstone_slab_double.json" +hash = "547b450437ca8fcac0181fec2a2b0708e71877d9d37c4b8bfcc3543b98339c37" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/cut_sandstone_slab_top.json" +hash = "9b21075944a4cd2e91e39fbfe27c0b3e89f46e42113751f7bd0b9a17a14fc003" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/damaged_anvil.json" +hash = "df6ab33ef4898799b496ce12311f443310992defd1091c715e3e53b3689fd8aa" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/dark_oak_button_inventory.json" +hash = "ba7ea48bf4466ce20d471a091a55e92f852b9f859cabc0cc6bc4195201f8e107" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/dark_oak_fence_inventory.json" +hash = "39803fcf99c060dda97ff4c94bce2e2b569e00d094e3e9fd5bc6513973f044ba" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/desktop.ini" +hash = "3e3f5f280298e4b8d28e5d8d9f1ece9912ef7d82afdd014a6fab456b782f8d8c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/farmland.json" +hash = "badbaeff0a1f3425f471cfaa247efbe86b548ba2613251a8ee061d0e0f9bf9f4" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/farmland_moist.json" +hash = "5995f196522500da16a5c855a73f39dd2b8f5f05d0117767c2d1ca54b1580e3b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/acacia_fence_gate.json" +hash = "949eefd863f3594331058526f68efd75c7a9199d6fddf37ffc35a1e3e7b5b5e9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/acacia_fence_gate_open.json" +hash = "607636ee1931a35b1cbaa8b4b84cc80bb64fdda414e04018c44b4664c334f1ca" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/acacia_fence_gate_wall.json" +hash = "64ac45ffab5655bbd8b1c3cd4cbea813b6d5bdd5f240d1528240645d2fbdfbc5" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/acacia_fence_gate_wall_open.json" +hash = "62f7226f000fe10d6cd2925ecc616b0107f65544a246da2855420a8ede16538f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/acacia_fence_post.json" +hash = "bf1344a22a8db3832f4cb59d2f62419a3bc5bc2446d5096103d14c026f4e3ee1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/acacia_fence_side.json" +hash = "9cdcb359aa35bf95fea5251a46b5ec32b9591f0493ca1552d3f5144c1d11d479" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/birch_fence_gate.json" +hash = "2765ade414ec313255430c9137d43ae4d31436945c36c8abf3c8ac350a7addff" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/birch_fence_gate_open.json" +hash = "7798806fac7394aa8ca50ade1753551ef4f4348d9e101cf4122de113560153ef" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/birch_fence_gate_wall.json" +hash = "2c097799d21dec9db640b3147800a73ef43863263c5770ce67dc449f0f020687" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/birch_fence_gate_wall_open.json" +hash = "0313c0e60c1364ad00faee123f5fbdd824e781cb614c0a07fb3b79ea82494862" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/birch_fence_post.json" +hash = "39f1f39d90876fcc0d0acf979add2703bb753ae22921f68b7cf523611fe02a87" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/birch_fence_side.json" +hash = "534b83b43c0d9c4aac0553d4e8898af3025cf3fc33f4c87e516e7559d5c3812a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/cherry_fence_gate.json" +hash = "d1b6261e673b55c44b6a7ef31d189a329dd87f6221961c72487519974c1b836d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/cherry_fence_gate_open.json" +hash = "758fd1eb0ac99c4ba52fc5e35f6ca20c5fd1c53f6ef8abd101b4ac6827fdb085" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/cherry_fence_gate_wall.json" +hash = "9ce603bc5550f6438af0692dd228ead59294a7db6001678c7daece4ebfad3768" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/cherry_fence_gate_wall_open.json" +hash = "62b20455eb4cc2a90c8e3345d01e66933028b11ca0e72f5372f926eb486c9711" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/cherry_fence_post.json" +hash = "67cf592fade5adc5d293d724e2056a06339d718cafe142323b69fe57cf8308ed" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/cherry_fence_side.json" +hash = "db8d91f20f98d84c1a0e31a724f4716a9defd8feab5e00cd009248a5c9105a6a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/crimson_fence_gate.json" +hash = "b332467a6e1e496127c43fde2c47ef6da8b575651ebc85e59e83e7af14348dd3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/crimson_fence_gate_open.json" +hash = "ee9220583ab81ec0cad4ddc21da46f5e5c135c9bee6ab2f9ac34939cfb2112f0" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/crimson_fence_gate_wall.json" +hash = "1d204f8118a3e9729730d7b545c013b27d8dc8da2c6d01a353350cad4dc716b1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/crimson_fence_gate_wall_open.json" +hash = "2892fc3a0bf70377a275ecef3836e89690c8252b7ac3cae92b07b82332459cf3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/crimson_fence_post.json" +hash = "c5b23422b94512e58acafb166912a3ede1822aad0360365d2ec999ab8ac30989" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/crimson_fence_side.json" +hash = "21c250876abf1a30a39923a3f1beef635e0b5ec0b51752024f6698c7f1ed30cc" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/dark_oak_fence_gate.json" +hash = "d75ed0a5bf0a6b0a87dbb96466a58be8287f2b6264100139338037ec28c3f47d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/dark_oak_fence_gate_open.json" +hash = "42f281427a8e0f11aa71faa4644d4fb31c8c98104b295bbf61f73a4eb84d6bd4" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/dark_oak_fence_gate_wall.json" +hash = "b36124a8b391bfe3fe71b6a6e1c78a207c4d499d4e10f88326a65fdcff7d3d45" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/dark_oak_fence_gate_wall_open.json" +hash = "76e5cb99f9d07e62a4f35588605f0b1497a2afb15952968b3d4cacd4f9ae143a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/dark_oak_fence_post.json" +hash = "03dc726a7ee98333ebd715841130289e044e1dfc28d31d10a835db386be97e15" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/dark_oak_fence_side.json" +hash = "3b7c00e258cac26c09fd46745994c20029dc94bc4cd0d7af986c1a0df162801d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/jungle_fence_gate.json" +hash = "d8961cb77259907fc6f99418089b08ae7fd78b55f9e724cd26ba52ad1fea649d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/jungle_fence_gate_open.json" +hash = "5dfe774a8e50a79bcae77ac9238238c3411796d552fc4909074ba3a446845efc" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/jungle_fence_gate_wall.json" +hash = "429be9504fdd604843318ca29b1b762638cc04550528edfb9b90f774855900ec" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/jungle_fence_gate_wall_open.json" +hash = "a929836932f53ff7ed34e74e223ed437d89e6cd3192d0aaad52bcbad672d5707" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/jungle_fence_post.json" +hash = "ed560e0dae04f594da231834396a993b7291f73f4346e47e105fd1cc6ec6e49e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/jungle_fence_side.json" +hash = "2dc408cc35d3c1d718c8e08e7f48403e988a287267f593f9fc4b8a205565afbd" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/mangrove_fence_gate.json" +hash = "80b0f35e7898247804a4f11f2a7f34579fcd50539f3d1751d87a9a3cb7819c85" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/mangrove_fence_gate_open.json" +hash = "7018692fde5aba6867e433af68bf222a7fee703ac792912564c8959b617f8c65" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/mangrove_fence_gate_wall.json" +hash = "e24a8e19904b69b371899df0af8435a1b75e38e1d8ba3d12eb17b4c242fce518" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/mangrove_fence_gate_wall_open.json" +hash = "82f1e88954fd8358121d3f7bd05626f73b2a9a915065277e694789040a30645d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/mangrove_fence_post.json" +hash = "0afadee87b5565e61b5859cdf5d8d8389db9c14db601019c44f281c536b5e3ba" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/mangrove_fence_side.json" +hash = "5dc422cf236c9ba12608b0ddd60de31e4ba1ecd6c2fda3675bc54ac762395a05" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/misc/fence_inventory.json" +hash = "a202cbead9a9e2742a18a4ff1ea6131af345a1c64c03b4b6fa5ef8edc0cb0942" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/misc/fence_post.json" +hash = "60c158b234ac552501c5a563f72504dc1beec2965de1b95dab8640f2d15d3a64" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/misc/fence_side.json" +hash = "6af8a1514d29365bf61cc0dda3ff0ecb4e58cf0f70ab6a3be050455bdbe38272" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/misc/template_fence_gate.json" +hash = "d1b4bf2fb052deb506584387ec96fcd74ce9f895e0e21b7077086ec0cf10a4d1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/misc/template_fence_gate_open.json" +hash = "14ce266d6e54ac1a54d41831286bbef361a1ef09bdf0099d4040277f76630ff8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/misc/template_fence_gate_wall.json" +hash = "4575fa51d54cfecd12e41e8466c93bff3391778f59411069aa3cc411cb1a6ec1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/misc/template_fence_gate_wall_open.json" +hash = "565ebe6914890220e3392fe0943062b810557188ec9e3f6b1353bcad65c26c07" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/nether_brick_fence_inventory.json" +hash = "967c30cf4329941583c1ba0fce314e7d7e936b3aec8a0d71d3c79f4c992fd8a1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/nether_brick_fence_post.json" +hash = "a4e83f80490e06b06c4b3dc46676f26a341b77621f2305b2cdb5871ec53ec8c5" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/nether_brick_fence_side.json" +hash = "b51e3fb6e6de878e5fd44a9a459bd5bf574f18cbe8fb05d460255118b211af15" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/oak_fence_gate.json" +hash = "5db09070be4db65d65e0b3a2cffe13cc326e023c6a93757d340a8c679cc34a6b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/oak_fence_gate_open.json" +hash = "e72d00cd09b98c3cbbed6d3ea2f27387e910d2de6a53522240092939bd17f213" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/oak_fence_gate_wall.json" +hash = "a72b461143519251b088462611c904272a144075129fdc697305117fdce22231" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/oak_fence_gate_wall_open.json" +hash = "461644b02d9a8590f0df3add457fcabc838179b74fefc858a713371f81770044" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/oak_fence_post.json" +hash = "6b2557c3ef70ed12d0d6b10b02bd843080ac13b782fa384368c2e3ea27712c7b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/oak_fence_side.json" +hash = "ea824cbe07c21ac17c3af3388f3cc9769d003c5a3ed54314b8e29860538d7e75" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/spruce_fence_gate.json" +hash = "ebe1011dfd4554ad0f450a9578cbb311704835fd7ca8770414f46914e707ad70" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/spruce_fence_gate_open.json" +hash = "a6bf9322da0755ba968ef3e8acbfb6c8002fa114a66b7bc82cff3f3f8cf698d6" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/spruce_fence_gate_wall.json" +hash = "7b1d8da1fa1780a037fca71f72c3157e13aa2ad152812641ce84b9d530f11b6a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/spruce_fence_gate_wall_open.json" +hash = "1d87d04c0ce2a09d6d77399ee5dad7d4684918e9e74a790012b4220c2542020d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/spruce_fence_post.json" +hash = "1063a63beab47b28bf4e40071aa0036863586827cee2d300c6e178cf3246d9fd" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/spruce_fence_side.json" +hash = "e3c38feb24394d6a7db1790405d08884d9ed2d1479fc9aaf7ee6e61d0e5de4ec" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/warped_fence_gate.json" +hash = "fc43a761c9016b0ac3a52fda8429789a46255532f012fe8aa45b272e6a0eab0c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/warped_fence_gate_open.json" +hash = "92580cf77c95c9f05e2ab71ca16135471a90da431e06c83d7da9abd6e62c39df" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/warped_fence_gate_wall.json" +hash = "808736a73112f59095f05ec94c9a7607a5625554379d664c8e06377108a94a45" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/warped_fence_gate_wall_open.json" +hash = "76e019162b47735315326f8bd02984d13f8a5c4153bb724dcff9d3a788e524eb" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/warped_fence_post.json" +hash = "60f4a9e10217d947977355cf37089ef6a19adb6f43cda8b365118370130f385e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/fences/warped_fence_side.json" +hash = "9819712621db717519de46e8f9a469b203e33a2160508c3f7db7df34074f7051" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/flower_pot.json" +hash = "06912a393f16f6acb690a472fc3eafd350234d28e23b5b339e7f9d3e902c4055" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/flower_pot_cross.json" +hash = "ca5d084e274d39187a53f3fc3f9701f60babcf0fd12c518485822e6e4cd3325d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/grass_block.json" +hash = "fdea6afda5fa7d47241f181b56879e6807efc2b18a119133e3a871c411bf661a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/jungle_button_inventory.json" +hash = "927097db1d66f9ef285addd0b76cf531bcebf2b050b718457da247aa78124f9d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/jungle_fence_inventory.json" +hash = "23dd530f6ac7f20366e4db52eda2984e319f64101e1abbf2cb04eb27881cf0a1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/lily_pad.json" +hash = "d5f9060d02397896267b7721b76d747a5d7ddbad98c91c8362001b216afebdd0" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/mangrove_button_inventory.json" +hash = "2f2023e582d2ad90c24d9c97ec82e68021b553c489a585b278fe4af10df137c3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/mangrove_fence_inventory.json" +hash = "bd3a1155480b8b40b86d9e8b271a7e03d97da71b3f9845c6dbfa47deec6b739b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/mossy_stone_brick_wall_inventory.json" +hash = "469a4dc5b9874385e5442ff48f08176c0c48ffe8e0fa25ebc3d047019fd9b953" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/nether_brick_fence_inventory.json" +hash = "8595e09a1dbad60275dc7394cc86df4d5ad02188e3e178cb9615e04da36dafd7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/nether_brick_wall_inventory.json" +hash = "935c10989eff9570ba8e3cfe695dc1aae0e5f41fbfeaaf00c519cf7361bd4dea" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/oak_button_inventory.json" +hash = "c28002415f94dd1ee838d188d3e36c54ff8d5f7cb0f25511f1ce06c9dcfc532e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/oak_fence_inventory.json" +hash = "8b004433e63c52797dd7ac524c214ba38f4374dfa88c7ac29b7bca62d0415939" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/acacia_pressure_plate.json" +hash = "b7803b59641f173933eab56816ca96b9fb0f3d87fea5686c477c7b777279ff1c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/acacia_pressure_plate_down.json" +hash = "29fb05eb7746b800167612de0a6bf2f7d0585ffa5d99660b8570438c9c40c495" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/bamboo_pressure_plate.json" +hash = "93ce55fd73a7afc0553aa8e365ecca6520cb757df806ce3c40a54dd079a04b23" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/bamboo_pressure_plate_down.json" +hash = "1b35116134e3caf08633889721c58feb0ba08a5931709244c400fc550ca879e7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/birch_pressure_plate.json" +hash = "24189e5c6ca2f92ba5ba7047c90f4eb5b38731a412b8d008af6d97512e95aece" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/birch_pressure_plate_down.json" +hash = "81b128056b72f1a257b41b039e4357f2949de14c27e5e1bb6522286a75172bfb" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/cherry_pressure_plate.json" +hash = "74bde1211ea0e16a24484e9973bd1871cc9a3a80289be3bf04844b6ce9eccaaa" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/cherry_pressure_plate_down.json" +hash = "0ee0989be5a08a5c07582d3b7c4e287394c3b402ce4db61e3ebc921c1275c956" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/crimson_pressure_plate.json" +hash = "7701098c50bd7b1498e0585aad9e4f67edccd2ba08a8f2c752df00cdbdd709ae" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/crimson_pressure_plate_down.json" +hash = "74369d5b475733a4a6286e739f4c2f90b7c55554576a6fd41495c50707a1b42c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/dark_oak_pressure_plate.json" +hash = "ade11a2ca58e105d557b7e6c680a7bafa02862e19414b4c588d86363ba346e6b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/dark_oak_pressure_plate_down.json" +hash = "4627396eab7f6b520334c0c0c7a49c4a614307ac32b19f5e5c94a31afa156d00" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/heavy_weighted_pressure_plate.json" +hash = "dc05216f69304a2d89002afff8e4117cf2d74af9f4ed7a0aec7e541d8bf2c6a3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/heavy_weighted_pressure_plate_down.json" +hash = "87f0e4f0e852d5fd3cdfc9db4d7ff8e1fe1b504fe37b7e6b8d24502bf0d79683" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/jungle_pressure_plate.json" +hash = "07ac42d10058369ffe6a0933d4cf0e9f7f2df3d30938ca3758fc4732f7526843" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/jungle_pressure_plate_down.json" +hash = "7c1eed1e71077eca7401e102b593b940914d516467887742d6b297eb26f0d3f2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/light_weighted_pressure_plate.json" +hash = "bc63d8fb839a6caf52e9d85fa7eff503c65a1d2781eae23c2f1b79b29f9a97ef" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/light_weighted_pressure_plate_down.json" +hash = "33cbd735ad13bc0cba3fe7855068ed4da15debab581c8211feb5695910a49aba" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/mangrove_pressure_plate.json" +hash = "1ce7740371fab1cb0362f5fdf4cacdb1bbf0c6bb243cc5109bc04b5321f17e8e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/mangrove_pressure_plate_down.json" +hash = "47da0ca09b7f4bdba8453e598149d9671eec51f0711134b0b48526e233396461" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/oak_pressure_plate.json" +hash = "1a8004bacaf482fbf63e3c02de3d7b79ffab8032d713eb19e5cd1641dd868c7f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/oak_pressure_plate_down.json" +hash = "333a4dc2f03799d463753ce9502c81585ec816fc2e092c5f4704fb7ceb55de17" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/polished_blackstone_pressure_plate.json" +hash = "e748db67e9ffddb053a38bf8a55c92d3f83bfe0428c3a167b5200e1b1172ef71" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/polished_blackstone_pressure_plate_down.json" +hash = "b6d45c448423edf38ca80949db02a49aba0880f0f8e5b7aaedb0c2d3bc347807" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/pressure_plate_down.json" +hash = "6f6e387c5fd4e8d857653cedf521f056fa2f2508e65d35f8813675a73cb90b13" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/pressure_plate_up.json" +hash = "8851b0e2478f7ffc8e58b94f05389df9488821e6b43e55e5e4b8050d618fc8cd" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/spruce_pressure_plate.json" +hash = "fa9a261d6750a37392dd32770e159b11a074cb1d68a657c06b612069594ab46c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/spruce_pressure_plate_down.json" +hash = "c98983cf98a101f73772dce03dfc7074b00776fa15215f5ab9731d12937d5501" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/stone_pressure_plate.json" +hash = "bb2b2c6af67e98074cca92801ca54c6952d3a72904c23f9170a3ff2fe26a1715" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/stone_pressure_plate_down.json" +hash = "ff65e2cf5427692ae19cce984b7e302ca6981a62214083ac88c851af90452a75" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/warped_pressure_plate.json" +hash = "d610e14c532f93ad68e198b0af14fe5796f64a474080da75621cc1f2726d3e95" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/plates/warped_pressure_plate_down.json" +hash = "4209672692fff857f810296241b536fdb127a58e3688358d8673311dda9c1a08" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/polished_andesite_slab.json" +hash = "2ee45e5183aa557cea331cfc6f18698a5f7b189fc20d7732b28166ff453e12d9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/polished_andesite_slab_double.json" +hash = "75fbd8b5f8572fbc32e5ffd579e4d6a13105340c657a1e81550cff8175a960bb" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/polished_andesite_slab_top.json" +hash = "d0609dbc7dd159b3e7e010cfd00b9448c06f0b90826d292fdb9c146c014f54f3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/polished_blackstone_button_inventory.json" +hash = "e75762237706416bfe2ee92bd4dc71688b4b51dc5f2dfaed3cf9817cd8f3bbf1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/polished_diorite_slab.json" +hash = "366bbd477317b76e8316b5b756c2192525d7c4df8b23e134d0000f0e58473d66" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/polished_diorite_slab_double.json" +hash = "32f289a4b7d7f5483ebef038a7e591b58a3bcc3a6f66b4c907be8f7388102014" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/polished_diorite_slab_top.json" +hash = "cd664f8a3bf3f7f5e16042c9d1eef4591e20d90e9cb6325955fe09359f90580c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/polished_granite_slab.json" +hash = "10074ebfcdc2c6f522f5731a4ff9036a71b2fd83c35b62e8db6b177bd635ccdc" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/polished_granite_slab_double.json" +hash = "3cc3fbbe98d45b36c25f1e2e2d2507e5865068adf62ddcf782ce791093f6f752" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/polished_granite_slab_top.json" +hash = "efca6bda16565f18e5e43d9613adc39f2a25b1ce606d1e9ac949cab7d60b4714" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/potted_bamboo.json" +hash = "b964a9a7558be38ac33239d2833de1156446d643bd9d5323776b1b5ec12f7e29" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/potted_cactus.json" +hash = "5ce9f9aa036580c0883e2aefdf5625f6107beb8583de5a83460d86c64ce50e23" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/potted_mangrove_propagule.json" +hash = "19276de8cef9c027dbc1b982f6e9e6776701ca03da23699b19d1fb327892ca45" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/quartz_slab.json" +hash = "ce1cef2324612e4ee838fd52f66f5b352a2b8c9a459fbe402d4389950d3b6fce" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/quartz_slab_double.json" +hash = "31fe3701614e36114c60cb6a58c1de1486212d96f9328df0e87e4fc839b8f822" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/quartz_slab_top.json" +hash = "5d1b40e32f707aee4c135db9f0956652d8b4b4cec617ad9a95534c6d630047de" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/red_nether_brick_wall_inventory.json" +hash = "5fed7f007d77c55bb4748c5493d53284e01568155fe322533b4676f1dfc8ac7c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/red_sandstone_slab.json" +hash = "9b64489e4abb589ee24f646edecf4a23f4e27c96763a3693297b6d161a66086f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/red_sandstone_slab_double.json" +hash = "47e28c111857823980a4523d992b796a45530af185cb522a86f7650b1ef35e63" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/red_sandstone_slab_top.json" +hash = "74277c5e44e12e1b516fe499578c81b0d68b5d8cb9ee3fb9a2d29d43ed364e6d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/red_sandstone_wall_inventory.json" +hash = "c0a325102e85b2da0399a7b69303c7eb6c9fcd13ebfe9126f10dd19ae82ea110" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/sandstone_slab.json" +hash = "d70cfd402bb0a13ac09bda5c2dfdb93356e69386a24d4ea5210f64087c61a84b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/sandstone_slab_double.json" +hash = "03733ec57395a8564b33a05ca1e7e461b0b27b9bb7984ce66b6951c8861e3302" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/sandstone_slab_top.json" +hash = "0a7df5adaed9b0d9876fdab73a4c33b6e3c36d3e2aaee2f4095475e0574a4758" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/sandstone_wall_inventory.json" +hash = "bafe6ab003e87c330aa16d7d74f05333a73186c7f06cd4c4dc6eceb2e13af4a7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/spruce_fence_inventory.json" +hash = "9ad64fa83d0a66c1c9d062505335cb47af1890d56754b601acebec1faea69c75" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/misc/inner_stairs.json" +hash = "f7ca77be9f9f620359c9c46a74fcc2d8076f9d51b78206dcb04b0c7287dac693" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/misc/inner_stairs_invert.json" +hash = "b155d92f8b26d78db941a58f5c905853bc4b2d01ce7a5ef3998165b937a25f8a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/misc/outer_stairs.json" +hash = "885bbb7d8809c67f7dcebd2eddde32c18e22a6efd36625206b22762bc1825f96" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/misc/outer_stairs_invert.json" +hash = "b87671a96a066a62d5cfcdc123e1a48f69dde43db18f9196693fa8d53ab4dac8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/misc/stairs.json" +hash = "ab207f705e2b65887ffdb6d9021f49bb892db9d84095da104bf2855d2f37a7d5" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/misc/stairs_invert.json" +hash = "57429244073811945a5ce8526dbb8a933fbdfdd12cdcfe16a0fe1319bfab12d2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/red_sandstone_stairs.json" +hash = "aa11ccfa969d387e9ff755935ae2ffae35836cb90c058a6fb3b1ef00c3be4bf4" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/red_sandstone_stairs_inner.json" +hash = "9d8700084298cce899d815ee7c21e69d6eec154b1502d516115d9187502dc7b1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/red_sandstone_stairs_inner_invert.json" +hash = "bf84c26fb0b922abae6861bd8645aa4713fb9cb7fbf4d837cd65ddd4e0d9eaf9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/red_sandstone_stairs_invert.json" +hash = "e1cd229a041857fbf9cde50904a634f9129ef46f81e248acb466b0b6dfb13a12" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/red_sandstone_stairs_outer.json" +hash = "f02154d903af531be3079a0efde89925928bcf2425bcc7a6f2cc557a2ed928b8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/red_sandstone_stairs_outer_invert.json" +hash = "f807682c793b06c70ae42e768715df42b038cb67d1822f725e4a680da1706e7a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/sandstone_stairs.json" +hash = "d1c22a6abe927cea433bd23f30bb3a4f5ed3cfb7916c3bbb3865ba93e50ab784" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/sandstone_stairs_inner.json" +hash = "c6ee60d366a8a8cd6733c144c316fb2a5e01b3440e946331005746e81da4ad80" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/sandstone_stairs_inner_invert.json" +hash = "f855df8fd297ea1e5fc5d3c5698d7eba5b639600a93ab4d0d24ef4f47b326ff3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/sandstone_stairs_invert.json" +hash = "887d0d6f5d226769d04b7b6b05956a2809beb164098a3009638a2a61b465b618" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/sandstone_stairs_outer.json" +hash = "c1e4eb501d5f517aff8e1ec33f2b9ed956db3e61ab72b50a3de7fe95f200367a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stairs/sandstone_stairs_outer_invert.json" +hash = "ad60343f37ca848c947159d526da6e3117dff30ac4f6c0d01eb7b1a9871664cc" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stone_brick_wall_inventory.json" +hash = "ccd966aca9e26ffff16ec752a00848695203b2177bdae7cb4396001a0ef2ac54" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/stone_button_inventory.json" +hash = "500c8a1b9d1cd830a03b239249c42b805d7e7922143a2e8caf0d948d388b1afd" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/sunflower_bottom.json" +hash = "d90ef2e2942d0e857dee9008f1231a47bcca09a6f25a69edeb70a70f4b4e093a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/sunflower_top.json" +hash = "da977a124bf39f7d6b982592a6486e8a80e927ec6d2c66d4e5ddc3acc4054922" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/template_farmland.json" +hash = "ebd07355e5ae38451efb79f2562697dab839ee3108c5e3e5927687e8fa27fd3e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/templates/mushroom.json" +hash = "a97a9897484aac29daa4010b3a3a392e85c17a4bc8358eb8c7a7d9af609c9de3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/tinted_flower_pot_cross.json" +hash = "6b6690de21605b7820110aeec1999d7d1a52d36b42c56070ba8fcb5c9f1b9e95" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/brown_mushroom/brown_mushroom.json" +hash = "7a1c609761c7b4dac10f55d63c510fe096eeab8ace580315d800d087eed4979c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/brown_mushroom/brown_mushroom_02.json" +hash = "e826105be0115d8c0bd6b81518d9d9938d0b69772195ae6c77c3e5dade115a59" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/brown_mushroom/brown_mushroom_03.json" +hash = "71d277e67eee09d53bc0d812ef1b96ab8bc77876a366e3095ff44f806a49fb16" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/brown_mushroom/brown_mushroom_04.json" +hash = "c230f6c7d34239f52ca1eb8ffe582443911919794cc724b2ab88b48969f232b1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/brown_mushroom/brown_mushroom_05.json" +hash = "9bd7051bdd7d4953389e5e3dadbef73b313cf732a81f826c49b036bb0c632ad2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/brown_mushroom/brown_mushroom_06.json" +hash = "2d9b35f03847e67ad7c5dd256279a5f481124f8b48a851e71ff1cb97bdfe7a11" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/cactus/cactus_flower_01.json" +hash = "b60727569951c712a0492cbf40a4a2d7a039279c3649de4cda420a2413a555cc" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/cactus/cactus_flower_02.json" +hash = "77d3afaddc3a9ae2bf2a549efbe7e7e52dcabe08106941c08e5805112984ff1a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/cactus/cactus_flower_03.json" +hash = "7b47c85c5ff1157a62f72506ce441d72adcb5a13cee2afcd775b419f64863f67" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/grass/grass_block_clover.json" +hash = "5aa32d4db4712fb6fcb27d6c0aaf7ad45a77523af5b649ba7427cd5df65a01d3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/grass/grass_block_smallclover.json" +hash = "e5e896cdfa721e1168c46d840af02c8871a62aa221f3f6c799234894ebabe76d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/lily_pad/lily_pad_alt.json" +hash = "880663c91ce9530d0b352d319112366d6997a88a4ae7524b8857cf5f6c8fbbc6" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/lily_pad/lily_pad_flower_03.json" +hash = "e297f0de2bba610072e766b309e3dc11cc0ed558b33dd9b4a0630e7289238ea1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/lily_pad/lily_pad_flower_04.json" +hash = "2e4d95f71d84407836ed42ce0886538a86eb75d77e266dd9d33ce33577bebc37" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/mycelium/mycelium.json" +hash = "a64d4bb1f1969ab37964f65815c4ca87927679ea7bbcd17b9ee4d85ce86c6c01" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/mycelium/mycelium_clover.json" +hash = "62a2d485da32e631a94646aadcfa49b1c8d9368f9b5c60489a378e7a22290c09" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/mycelium/mycelium_clover_small.json" +hash = "37e5bebd5cb1f38f5cd1fa0c945cb617d114cc9ae2f1d1ac3fd12c1c992f6646" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/podzol/podzol.json" +hash = "234071fe2ea61274c6f00e526c70588c0c8bdcadf192e84e1fc3e262adf757e0" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/podzol/podzol_clover.json" +hash = "f4677682472acf9c095ad2b461208a560aef97e3317cfbe7ce28cdae8731c508" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/podzol/podzol_clover_small.json" +hash = "4c9a63259a50c27893e3dcf280d92f794cf31f0a15500c6b5e749aa4d332ff48" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/potted_cactus/potted_cactus_flower_01.json" +hash = "be2f894216d0e80b377d55afb7d6d7e8a0e74ee3f47dae8d996f4eb05a16db60" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/potted_cactus/potted_cactus_flower_02.json" +hash = "fd37013634f260ef923c04d41829100cb2c1f800aca1d64a229a138af6cf9bac" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/potted_cactus/potted_cactus_flower_03.json" +hash = "5d038bc8bcdd0812e0701577bc6978c66b6b3b85bc9f2a2e45c973e6bbc82ea1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/red_mushroom/red_mushroom_02.json" +hash = "72946e64c25d6d248200d97d899c923f9abad6e52530b22181993240f0fd3919" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/red_mushroom/red_mushroom_03.json" +hash = "0a32fd15bf7df5d108def13d6724b498e472c68b2c58f558656ed978974c636a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/variants/tallgrass/short_grass_short.json" +hash = "ea8a37b0b56cbced45ec12ff0090ab59d044563722a11a2289667e17e19aaf2f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/brick_wall_post.json" +hash = "ca16403ee4eb1a0c60a6d53923446d269d28f8eda834aafff24e218cee0e2454" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/brick_wall_side.json" +hash = "92b667b22f82e93279860714d492b28e0a77684f47825662b223effd8a5b8d1c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/brick_wall_side_tall.json" +hash = "269d9b5297fb99de1c3b776d8c74a695f3935749519238cd12d759cdd1a38921" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/misc/template_wall_post.json" +hash = "a248802611814efe34350188825627132b678e3ebf517c5385e692bbad41f716" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/misc/template_wall_side.json" +hash = "538d625538deb306eda935fd189949265f97b4abb3b1f4152172dac4fa030330" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/misc/template_wall_side_tall.json" +hash = "c94f4c32d723f35043a39b3925cd0a189c2d0cee51824f56821657a0c68291ec" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/misc/wall_inventory.json" +hash = "b048a4093da85fa9eebb097d4d04939b3b1c7ac37bc8ccfc9923b773eccb808e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/mossy_stone_brick_wall_post.json" +hash = "a44b84d951d8255e52d0b157aef6d3199e3e2549cd22bbd138e551c7912a06a7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/mossy_stone_brick_wall_side.json" +hash = "495d28ea23fae519a2a292edbd287718bcef6e794b37e4b4012c5a75292c39c9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/mossy_stone_brick_wall_side_tall.json" +hash = "87ce8f0bd436c16da44f70b01ea8e5a9fd898f7f38d432e6631bed58740f9feb" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/nether_brick_wall_post.json" +hash = "bf86ce842168117416b521c077c4f8d293f0f4619b6fdf956ea6b08d203aa223" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/nether_brick_wall_side.json" +hash = "2983dcb07c0366702a3232010c9d0181e4b20936d26002a85852abf12f561386" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/nether_brick_wall_side_tall.json" +hash = "31c072a38eb9cb9746ced552801f5a9413ed1a4674a4bed6600aa6e409a50f3b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/red_nether_brick_wall_post.json" +hash = "74899c0bec586f05b3b78c3cc290c5f191403e7c7ae03790fc711c1c3c47f704" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/red_nether_brick_wall_side.json" +hash = "1e46d8df6fc2ad7429f97ae5befa8775e20df9b281a534bdab9c6d84f87e4f21" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/red_nether_brick_wall_side_tall.json" +hash = "1bf573be4e2d7db54032990bc79fff594b52a14b34e69a3933dc5169f4e6fc8f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/red_sandstone_wall_post.json" +hash = "e28dda7fae75232512d3e5f3d041676d10c5acc85bf14ec50c94ad825b956d47" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/red_sandstone_wall_side.json" +hash = "e8f026e8ad1459611244f1731b9935132a449ec200c15d7c1596896f30359bc8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/red_sandstone_wall_side_tall.json" +hash = "79f7c979cf3f07dee3a340394c92e1147fbe83858e6d47e6b2691dc86cc7bcee" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/sandstone_wall_post.json" +hash = "9f9b904fd7feef1dd05a2892f3447f4c30ba668617d28439b7d090cccbaca5ee" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/sandstone_wall_side.json" +hash = "19a43728fe22aee5ad70394b7ec8f2017fb6ac27c9607273c006925d2ce62cc6" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/sandstone_wall_side_tall.json" +hash = "651f92f8dc2b66f3d728a47c16817c399323c0504b3853695638429dfe9ca187" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/stone_brick_wall_post.json" +hash = "5f9a5492118debd864433d4ec05df9a70adc2fc4beea96c38777d4c104449c8f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/stone_brick_wall_side.json" +hash = "0a75b1aee131620e920cace21f3c565749219da9c6c7f492cd1668467dba39b8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/walls/stone_brick_wall_side_tall.json" +hash = "c51b3a83cbbd78219fc63a2e12f2ab3d6d034ba2851f168b7fc561a9769e8869" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/warped_button_inventory.json" +hash = "8bd17682897a52d8adcd5e74817a799c62e6f7e37f01fadb013b98da1b8ccd9a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/block/warped_fence_inventory.json" +hash = "bd244c51db9e8dfda60c28d1a2a79e45c389eadd87cc3d784a4d53cc8d11b541" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/item/acacia_fence_gate.json" +hash = "692ea38cfc71b4db4478906c807a50690aa9b91ec93ad01e374a9dd4c2a1f8d1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/item/birch_fence_gate.json" +hash = "158491316d175f224fa26dd1d40c93dcb72cc273322501e1a7ab77241ea19720" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/item/cherry_fence_gate.json" +hash = "a17fc22a8ea358dafa5483b524c8efdbb459839008e9aa14038d40c8a8a62086" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/item/crimson_fence_gate.json" +hash = "0db9daf0ef5222b308bbecdd25ab5e6ba2734773385e704bbdc92833a27a44cf" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/item/dark_oak_fence_gate.json" +hash = "7f8a908e4f81cd59136cf0e4558fd1d6ca8f3e99c0ddc9c215ca5dc26cbf3c53" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/item/jungle_fence_gate.json" +hash = "a95906183737ade49a45e59d60d359b5c7b1c4301a5ab0c7c199cad3b87c5ac2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/item/mangrove_fence_gate.json" +hash = "c2b179e4254da3df3ad6cf6e4898f571a6998e253175e0db37b6427dc51f4e8f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/item/nether_brick_fence.json" +hash = "72bd335e51f0f8df2eef174314782cb1e3a36ccbdb2c659bfc5d6f99bbb77fba" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/item/oak_fence_gate.json" +hash = "80c7b532e66628b4b23024ef94871e478dba14cbb4c92d49cdfbaf5162e592bb" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/item/spruce_fence_gate.json" +hash = "ee2a47067ff63b3ce5948eb8a89c688d468425981ea8ccc707d55e2568b9055f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/models/item/warped_fence_gate.json" +hash = "e1ae62a96a11fa3831db4d12724fab8a2afe3ef97784de8274530a10bcebec7c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/acacia_fence.png" +hash = "48b659fd1b20e61613cd121bd9a7ffd9500471db2f5ab7911ea9666d0e80869e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/acacia_planks_button.png" +hash = "1b25420cfe06be8f6c028de6279b1208573d861e5ea8fb7aa8c483dd41bf738d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/acacia_planks_plate.png" +hash = "c5e611ad13efb257def69b9ea5bcdd2b1a15c8131eadcc1e6233f8308db10903" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/anvil.png" +hash = "75fc7443019c94ed7fe47651c0ec3f642002648afb9de2cd8cd5ea14bdff8ab5" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/anvil_top.png" +hash = "1cc8d877075ace416de728c9cfaf05a808f2ceef4c41c7c957e4f133dfa02a24" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/bamboo_planks_button.png" +hash = "5e2a3f171ced56665f1d6033be7be440b74a18c2708cef53ce0e5e74aac04e5b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/bamboo_planks_plate.png" +hash = "b12438e6d68e8ca1d9ea9873af64021d301df2a458c5c2d403e8171cd52b3593" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/birch_fence.png" +hash = "55c464f63955a43e804e3bd0c7398b4354b08e4da3d400f27c70b8a9335ba969" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/birch_planks_button.png" +hash = "8a9dc2d1cef2980c2de8dd7a2a8d78946ad3ad20e6b331f3871d9f69d683716b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/birch_planks_plate.png" +hash = "a3a4ed511f63a37eebb79533ad0b761ae4432e72c91ed407582acd1f47a619ed" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/bricks.png" +hash = "f23ef4c69e3598cab98a71b6a4b0c2855497bce1c88830aaa74689104ea89655" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/bricks_pillar.png" +hash = "15ecf4ce791b0c1201bd41ac3160ece53013ec5fd811907de326fdc280fda580" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/bricks_pillar_top.png" +hash = "43cf6969471dc804a515416289e232f99d6cba3661fd20df15f5743cd155448f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/bricks_wall.png" +hash = "d98107c22472379e38d7a01aaa1ff565808c113a02d6c53916e1bb092502d82d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/bricks_wall_top.png" +hash = "d8ae6f347181e9fe2af1fff3117c7922fd2154809c33071c17c1160bb919ad70" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/brown_mushroom.png" +hash = "4c7943e88d9aaec21e23f03aa2630037d96a3aeec3945f52b6e6cfec40217c3f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/brown_mushroom_02.png" +hash = "be6069de9b249e33ed28f3179971adf08edcce051c0e06e2e0c26dc09268cbb0" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/brown_mushroom_02_side.png" +hash = "e70c297b6a09799a812648eb020d6d767e5cdf2369fe1e7a79d88465e8bc584f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/brown_mushroom_03.png" +hash = "0b535c0029be0babcea960311f4ebcdff438e0825743b5eb496a2dae3ad3fbbc" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/brown_mushroom_03_side.png" +hash = "8887a1cf6ef04d6420812eb871e6c4ff9da6a29923db28329346257d271fee9f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/brown_mushroom_side.png" +hash = "b9fbc4d9db3f777cb5cad7113ba3c84bd941f9d167386f1eb251e6c1d768a57c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/cactus_pot.png" +hash = "4650d2eddcdb3523ca618f4c73fad0e5445d2c9ecdc4601dea5b9533e6b0f451" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/cactus_side_flower_01.png" +hash = "5f00593f320b3a9df4a9616206525c0c0f2772a51073627948e83032b7f85870" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/cactus_side_flower_02.png" +hash = "8a0ed1c5fc670552d421e9bed6b150d1e533e5494b0dabbac9e79aa05204a863" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/cactus_side_flower_03.png" +hash = "6a1f89badf48b20588fa42fc8f33215c1d590f9655b46fd832cab0d49fc8536a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/cherry_fence.png" +hash = "34ed497b8568393982d967ee157c9c3e6567f9cccbc3bde06f2559579bd301b4" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/cherry_planks_button.png" +hash = "428d31d5226ae4b6cdc22929832426285b0e1f2c69afbe08389357c065893beb" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/cherry_planks_plate.png" +hash = "4826a056ef1b192ebe35c320235392f28a5cb946d31ec281f6c3136701d90bc0" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/chipped_anvil_top.png" +hash = "3af8609edd1ad821d4591f2b4cf811ead67c842bc25cbfe702ace1288034916f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/chiseled_stone_bricks.png" +hash = "99c9fef5ac09ae3ee7ccd72c857ca2f0af205b8bb91bd582e7de69773a4619d8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/crimson_fence.png" +hash = "67a16ce694ececeeafad03414036cb3417576539f3b43da8bdab8327f00a9253" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/crimson_fungus.png" +hash = "2515da600e1a040ae4881ece023c948ff43907954c5243bc7556ecbdecd131ed" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/crimson_planks_button.png" +hash = "3f7c1c79d2f1424b5d83feb7e895478d7633ce488ca126e9b89eafea2a1c4f41" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/crimson_planks_plate.png" +hash = "eed7885e430961c3cb69300522784cd292fa678bf14e33ef2cd8b413e397f661" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/cut_red_sandstone_slab.png" +hash = "4696c3766d6dae1973f87901a0c2a74db6e09c84ba16e6727146c0f2a48fbab0" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/cut_sandstone.png" +hash = "3deb1313da4ee31db72e5f29ebaa352d8f6ad77fbd5567bf539a35cc4d6f366e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/cut_sandstone_slab.png" +hash = "b43f26d0c76f6b513cb874774e42c1d346e98594b606cb613b67a893ece32446" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/damaged_anvil_top.png" +hash = "6c767324d6eb2a8992c72aadd87fd4bc11873c514770bea65450b3f6f139cbce" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/dandelion.png" +hash = "c06f2b6db73b2dbba70f0859a517a2d319e49db0fd99ba9c29a02967feb950b7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/dark_oak_fence.png" +hash = "80140ff8dd55d3bb331941a71e41e642d9fc4654694f292e36e357850ab142e8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/dark_oak_planks_button.png" +hash = "4a61cbe67007971ad0b7c47aecc0d5613b991824e8696441c7d48927fb8a59db" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/dark_oak_planks_plate.png" +hash = "09f61425c660840cc2ebbd1a80a266e7d591c31e39864c7049fc6a49c24119d1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/dirt.png" +hash = "c77d2104b159255b9cbae7d308f4555d45884f732b367c270477dbbf462e1f2e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/dirt_path_side.png" +hash = "65dfa370d965b1f7e2362ce9d4988aefdd4e18dba401180775c06d8ebe5e2347" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/farmland_moist_side.png" +hash = "1b133e4f480b919df4861d450c81331014de18c15059b64d5f58c1027dbef7a9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/farmland_side.png" +hash = "b426a9abe450e1480bb3d988728870704b06df33bb15619abd270191f1d69c14" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/flower_pot.png" +hash = "95c18034fcfe07025144243a8fa915ca23e062b5732570615f79bb3adedbc7f6" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/gold_block_plate.png" +hash = "f5a9fb17a1e3079cad0b268e3a73d4d9ba26ae8a09e1fec131a241e3fd753171" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/grass_block_side.png" +hash = "83957988fd1590646acbec149d21f1652bd7472d6e5165132b1db73a66c43c0d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/grass_block_side_overlay.png" +hash = "9d78186a0150472174fb3a6eb86453ff3c7edf6c5e66e996544a674589e2ed5d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/grass_block_snow.png" +hash = "d068070bc6a38990df69fbf21ce9a98fab455866def6062f1dc8e237a8becaf2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/grass_block_top.png" +hash = "52f44b64ce884a13dfe35e4b4da2e35898b790dd4d7a5ea536f1b0c0d56d29b4" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/grass_block_top_clover.png" +hash = "5830910fd282bc0f938dd234a8d120ae55d1e569adb222b3235adca3c8569df4" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/grass_block_top_smallclover.png" +hash = "68f0300c523c97817c0342733e6818cb75dd5c8741435352b6f5782507e3f443" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/iron_block_plate.png" +hash = "ae8c3a35c166e519a89f7a7d87cdf523e267846e6324a9d871cce788d4e81c8c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/jungle_fence.png" +hash = "f4bb1b801942bc767835afb22ff2ee33e0723009db69ac77363ec4f0f41a0552" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/jungle_planks_button.png" +hash = "b2444768beb79c0efcc0ab615cc29c1c2fc29b3664f3fa6a1f8d8cae85fb1490" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/jungle_planks_plate.png" +hash = "b2d7acb57cdfff28ffe786ad550acef50e72259fc243ae211be4e93789d9f01d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/legacy/cactus_flower_01.png" +hash = "1d45fed568b80e22d59f535cec0b6e3092a201e10a19050d57d22152e06ff7e2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/legacy/cactus_flower_02.png" +hash = "94b070dd3aa5e8a53d19ba4d7360d4c9925303c0f2b47d73e9867e5e3f701c77" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/legacy/cactus_flower_03.png" +hash = "858bbafa19331a4344972c76ca140258ac169c486832601f4406d7dcd86a9391" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/lily_pad.png" +hash = "7adb6d923c8a7d3ba542448d6ab5469848c4857f10f1935778f95b35e6f50c27" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/lily_pad_alt.png" +hash = "4339c3db83a3682bb9f4a1c2297f186f52373d832ca0ca30ba5665b241d3a999" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/lily_pad_flower_01.png" +hash = "10ca595030bc16b29c7756342a38e76c47db108dc3118843c245f8b144ea05e5" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/lily_pad_flower_02.png" +hash = "41ba628629010c1fee43f80726a9643652662cc807c3fce273fcb2ac7c412851" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/lily_pad_flower_03.png" +hash = "2c0a008b88d700f90095d2f74711c7a1bc226d82f3fff11d9abeba14b16e9a39" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/lily_pad_flower_04.png" +hash = "977336ab7bcc35a3d84cd0d42a39fdd2f172c883d797cd52ca19bec51a12d61b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/lily_pad_flower_base.png" +hash = "77b2c8c9e5cb963076b9da920ebb55f361f60d92443f71241d30b9475cc66666" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/lily_pad_root_01.png" +hash = "5b3c4862681357118fdab0669d15168e6e8af044f7d25cb1ed87904c65b5fd74" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/lily_pad_root_02.png" +hash = "63c5123cca991543a9b01a83cae63fe9b3c940254093a69211f79dd26d84d728" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/lily_pad_root_03.png" +hash = "60bc61cc3c93f0f7f98abf0492a8069c1ecc17a5879786689beda0085c571e55" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/mangrove_fence.png" +hash = "096ea2afc4af1b5d17b3f4d23cc312f911bcfa8732e10277d8865f56fa54fddd" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/mangrove_planks_button.png" +hash = "b196918ea517a2f0062ecf1647eb7c8791f9eaeac31af17d47e88691bb3b4661" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/mangrove_planks_plate.png" +hash = "fe481ec59275bd7287252120547c810ce70e7e0b2c7e924d55033e17b7bfb5f8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/melon_side.png" +hash = "8d93b9a42cb0a1fc03f33ba892d00d9387ae10731fd4d15b83ee1452b7cbe6e4" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/mossy_stone_bricks_pillar.png" +hash = "bf3a89ddea7db604ab8f1d3a89acea6f992b5fc0c3e33b84dc41cdc9ca6af2ee" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/mossy_stone_bricks_pillar_top.png" +hash = "29cb9f4fa2f0b6558931ad00df32bc33b2369c9d85f63ed2f74575d142ec3b58" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/mossy_stone_bricks_wall.png" +hash = "309b28fdd186e60709b0e354e1cbd53fc702fbcac20a21f10ad9a31441daad62" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/mossy_stone_bricks_wall_top.png" +hash = "497425c4c06cf814f8f761e4c0c16a0430dccbb56801feac5ccd43f19de69e3a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/mycelium_side.png" +hash = "b05f84101d98436f2b730920b410d7c93b4124d6e0833b8307aacde4217954dd" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/mycelium_top_clover.png" +hash = "bc860bf38a53df434ca0a39a34b5c472440ac90889fd02939217e0f065ff68fd" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/mycelium_top_clover_small.png" +hash = "f3f8418af194d17750fd33781ed0f78bec101814299e696c6f2cb51e0dd61052" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/nether_brick_fence.png" +hash = "a55797f34e17c5ef94e7425e2960aff180d89663e355505e63d79e48505fa02e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/nether_brick_pillar.png" +hash = "39cc0fe9d5e7adf27320e726041625c20db6b86ee755db931cfc1e6a223cfb35" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/nether_brick_pillar_top.png" +hash = "e22fbeb4614b05cfb1e0258132f18fb651ede1ac15463254c04dec82d88d502f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/nether_brick_wall.png" +hash = "c0d5a3b2b6b133864f2aa6359c29c3efc8bbd9d0ec28ab2cb5f840f1422a3218" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/nether_brick_wall_top.png" +hash = "046474d18279ca482901ebceaa0955c0b5c1d19262922da52c2e9851282b204d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/nether_bricks.png" +hash = "b66b862e9ee8255f779e1c0551e01ff50114a062f8f0fefdbafa8c472061cdf0" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/oak_fence.png" +hash = "e020a51b89d35dc2a4833544e3467ad97b7afc73f7f8f142844680ec1662fdcc" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/oak_planks_button.png" +hash = "efacd169c025d03770a9b86f937a34eea014895f43a3565b299a83ac06e000d9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/oak_planks_plate.png" +hash = "5ccda9658f7e34bc5ee74f6afb314784c4cc896d74c0e8c0c240acca9b5fc141" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/oak_trapdoor.png" +hash = "cbdbd4fd9da432926d2b1774f086560f7333d701ebc99aa38d4552f914a74186" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/podzol_side.png" +hash = "01226826deb4841be9563cf1205d676f705ac6729cc597a5b8f51ef3e8dcf8ad" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/podzol_top_clover.png" +hash = "f850ce6a7747d126e3cbe21df868b6e0536d3408142681e908c46b0ca6c5166b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/podzol_top_clover_small.png" +hash = "de87da236a6d79c94c8bd39fb30b5b75147637f84f8f3f0ffb66819df0e6471f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/polished_andesite_slab.png" +hash = "5644d86dd112b1f4620d60c6c4f9959329898ac441281fdec7e93a0da805106e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/polished_blackstone_button.png" +hash = "91ee6d28293e21c6398d27ed64232914180a3bd8b28a347b25b7de526637902f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/polished_blackstone_plate.png" +hash = "e7c9aa08fdfd510e7bd61518da7eef823c42ac44d9cef4b5147795db23bc7a67" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/polished_diorite_slab.png" +hash = "42ee700ba64300bbd4a90920a73fde707b27519e5f3e92885375d3a42ae1eb65" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/polished_granite_slab.png" +hash = "501cc52686bf338c2217951894841ecba1fc8d63d17eac5dd63d311750cf2933" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/quartz_slab.png" +hash = "3dee1ba07e024924fce90a1ad27f2a08d62357bb0f73922f0bec78913eae7c10" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/red_mushroom.png" +hash = "abeb8b575f4217b5eefc058b9de14252ca07a8667da1d446f0c02bc7343e4350" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/red_mushroom_02.png" +hash = "aba2f3e8355dc3e7a8655edca4512039a83a50f4554391615ccaeafdf317befe" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/red_mushroom_03.png" +hash = "179d50497d7e56aff2cbaa805e2ee0c259e69af43524dbf8812aa8ff1e18c896" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/red_nether_brick_fence .png" +hash = "97c6bdaf15b0a45dcd88577950191f53114fcae3e9a4f24e1d70634affb1f191" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/red_nether_brick_pillar.png" +hash = "45e1857a19df22d136df8a07b96656aff2461a94f37915356df0d3d6c923a7f8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/red_nether_brick_pillar_top.png" +hash = "05551cce717b841a8cd678e1f2efaaa39774b1f1dfb9702780e8ad6f692bfd2a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/red_nether_brick_wall.png" +hash = "3c70ff70fe9e7d02a8fe99d16b415ddc4181ad49376a698212d9bb5079bd4404" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/red_nether_brick_wall_top.png" +hash = "5c0a6e2e221f5a88294d7cc632778d4d3e363b9290b8d1c06407eba462ef6279" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/red_nether_bricks.png" +hash = "a03781b9f91f21e0ccae4e52fae45de7dbe8db4a388661541b00991202e3fd7a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/red_sandstone_slab.png" +hash = "fc1b58436e1946a7ff4fdafdde53c957abc4e77b449bde8e4e3dd8779ca706d2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/red_sandstone_wall.png" +hash = "d4df25d0b65594737e89d69af3911cc51e74addcc1dfd8a42586f3c0ffd2a01e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/sandstone_slab.png" +hash = "8cff967e0cfd402aa7a9d7a0ab10fcfc7cbfa4fd5723520aea6c8854da7e3fd2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/sandstone_wall.png" +hash = "69dd612e7d169ce180f7d590032e47b1203eddc3b99329d1c955333377afc846" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/short_grass.png" +hash = "41fdf92b3d0ef28b72e3a6028f42e143cbe1bdb3159f04f5b3f18b67867497f1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/short_grass_short.png" +hash = "53ca7007cef69af904293f5f548886c819b2a4fed95e5403d0bda0562c2d59a9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/smooth_stone.png" +hash = "2a17e5a32134f510a7335b45f6caf3abf2c4ec4fd8ed99e51080b64c32af2d84" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/spruce_fence.png" +hash = "dd2e2fee1a6b614211e9517808c2e0dab3a909593b7c3c83372463267ff47b1a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/spruce_planks_button.png" +hash = "b91c1ac50baebdc4ebfc5ed38689e746bafac1b1946292e8e101538febded56e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/spruce_planks_plate.png" +hash = "d48d0ec26a08c5c0fdd55fbc0786c5842f55470f9316c86e1c7bae70fa585be0" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/stone_bricks_pillar.png" +hash = "0d53739b72b137346b8eabb772d25a3f7e796ff681174e3044eb59d95b46026e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/stone_bricks_pillar_top.png" +hash = "323d06c732d03e8e3bb31d97fb3d6c8bf7653cbd3916e8d7ca21f87a1fc48b61" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/stone_bricks_wall.png" +hash = "e51ac6db1b703e47661680608dc6768879015fc4dcbfe4c4ed52dddae34ff67b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/stone_bricks_wall_top.png" +hash = "7dc564b37e007be71d791d6d06fbce3800fec93c90b33c7d609af8456eb783e6" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/stone_button.png" +hash = "eac9451bc0c72988b07fe54413ba3b2d9bb44e97a13aac2aab4a06a6f81e27a2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/stone_plate.png" +hash = "c699396aefeb76c9ce62b7406b1aa5ac3f30cbaf075c4e44da9a52b4ddcb327f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/sugar_cane.png" +hash = "39cbfdff282230945facfd79b71dd43ebcc07c66f93a6ff6e9e51e908f541727" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/sunflower_back.png" +hash = "b35417d7067bfc5911785ba51977c2d46cb7af533692f7e0855b33080b7edfb9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/sunflower_bottom.png" +hash = "4b5090aaff4f2a1fcddfd5165237847463b6f7a952e0f7df229f740b9a51489d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/sunflower_front.png" +hash = "63b2431066261e6fd2898fd6a48ab101b1563de53975451aba20d0ee3ad231d6" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/sunflower_top.png" +hash = "720923ae969a5460a56ffb345348906475be0d3f060dd66272c55351bac4253b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/warped_fence.png" +hash = "3eaf81ccc1849a3d88e7fee9a66055f36ae3d601ecbf7ca2a205f7d2e2735156" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/warped_fungus.png" +hash = "4f93fda71fa49b66512661bea9d32ec5ed4ecbf3281af45f0527d6fdb044a942" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/warped_planks_button.png" +hash = "3e0c50490ca3baa257548a41a22b2bf54764a7e2e4228a95567afd2de7abe663" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/warped_planks_plate.png" +hash = "35deb80135fd9f308c84c39e539e61a35781cc678d2a6e96917fea9038de801b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/water_flow.png" +hash = "65f451316b1c0b5a90f46490251f40455e8b20c9b94c7db7742077bad40061db" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/water_flow.png.mcmeta" +hash = "802acdb8f55f30146d5ed18414b21ba35650d4e550f81825ea104131c12dc4fc" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/water_still.png" +hash = "3359304005262bc90926f48cd8ce627e8beff4a70b1b9e7101619bde2233d5b0" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/water_still.png.mcmeta" +hash = "e9b8025fde1b09b0a4d2a38427b04f98f28a593045be6d177eb2b29164c872b0" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/block/wildflowers.png" +hash = "e2b7b13e61c40296200431416dae830a815e594225b17694c0b975586b1b6f26" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/colormap/foliage.png" +hash = "e432b64f9678440693bf228fe602f6736cf630bc9aaecb743b920dfd61949015" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/colormap/grass.png" +hash = "c3271aa7e73ae4c9436d6c055120d9d5e005b0a818ee827e82d2b0c7a29d1f97" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/black.png" +hash = "e0272ae22e8e54d919f6eb7fd46aea577256a6d2935da0c6a5995be2269d9b28" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/blue.png" +hash = "635b1e742ccfa6c2771ec7d1c66a5bf9563a1c958273e17e367229c2e2a145d1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/brown.png" +hash = "becd83127213f0c0593ad974427c62b06d5c138e09d4f969c1449bec81841abd" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/cyan.png" +hash = "c286b2fa9ff641dd719424c1c6d4e3f29b4c37063bbfe2c5fe974b611bcb8c0b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/gray.png" +hash = "77a8f517c88a46cb66c180529cd15b14ffe058c68346669a500b116d67db11a7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/green.png" +hash = "b81cc80f3242516e2451bed05c4550e915aff903ae1d959dcbae787c8418bc59" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/light_blue.png" +hash = "6ea41c15fb1051deb8892664442efffd44bbe6cb554d745ec27d98c6a494eb1c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/light_gray.png" +hash = "389fc134c21be6de8b0cdac81d4182b4bb0ba4b860ea85f793f06bb198fbe681" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/lime.png" +hash = "e849bb9c614ffc096cf8d72a6025e99e62ad4d8bf59c5985b926fae917fdec06" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/magenta.png" +hash = "75bd4617c33c509d3600a8b6825d326f679db2677d2f3d8cbcd2fb39f5fb2773" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/orange.png" +hash = "b9fd92c12e95672958c29e4cb92f455366edcb3fe014747a99ee4512f36c5c02" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/pink.png" +hash = "d8edb598013ef03ac0e37a230ee4dd1fc57a6bd2cc1e35bf585f3801d55a73ee" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/purple.png" +hash = "807a0e11ad8594770a3ad0d294a248ffae0e6cbb205fd16141de12580630e274" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/red.png" +hash = "06fe1dd63e76c1db5d54109daa28f47a6873df0e83d6e4f37949f0a568c6eb86" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/white.png" +hash = "6385e38dcc077948e5080b0916b935c2631bcbf6fa0cb6deb8ba39867347a5f7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/bed.disabled/yellow.png" +hash = "d7ac82fc479b690cd17b6ebd7c69f395c9e3a7acee096bb18088602b02d58f6d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/cat/black.png" +hash = "8046ac16df8c13ae154481391ab540617c2061fe29a7fb14335b469c984fd371" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/chest/normal.png" +hash = "6f9e7cc1ba8ed69d1fe1f6b1cef007ee7a23e20cd81daf0a700d7aad973ae7cb" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/chest/normal_left.png" +hash = "4ad713e886d8ece177793e2d2a22837c54e7e0d87e5f699cab82f93a15aa763c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/chest/normal_right.png" +hash = "4ee31cc5b2b6c519ba5abd98a325a46f9d2ec1db130416c079cbb4371fb62541" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/chest/trapped.png" +hash = "0076bcb9f407f962ebf7e59fa9dc4d0bf35063f1ef40b8bcc8542c16d87aa18c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/chest/trapped_left.png" +hash = "89a182eb1a3c1938b48c29193eb4a33a141d9a2e9a13c9d4517be4db41296668" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/chest/trapped_right.png" +hash = "cfb3bad5ffc7c77608ed380c8799ea56e47f1f757c81f219b24d065e849d46c9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/cow/brown_mooshroom.png" +hash = "777b56742f8f361d6f24a82b608063c0c13d7e9fbe49e3d18039d6aeb337cc46" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/cow/cow.png" +hash = "d430e14d2a127f71fb847d55caa4e7fd34c10d5c5fdf845fb1c57d46ec9e61cb" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/cow/red_mooshroom.png" +hash = "9b90a916d92aa70e4b44fc5179a2c319f7f07c5c25137fd856778017db3e4d8f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/illager/evoker.png" +hash = "d1da23c5da17d37b32a9a6f5589d39af4db15433ec3b011258279f9251876264" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/illager/illusioner.png" +hash = "27c8eec66417b0a59f73776f6177004fdb42882adf9b5be59f9e7be5c284c722" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/illager/pillager.png" +hash = "554cfa461b0adfefa16548ac6413a42d4c56e9e1db0a1b68dfd08baa56b3cb7b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/illager/vindicator.png" +hash = "db803cf9e4aa179e0db04d4f127dee8707464559795a59c79ae62852f8477bb5" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/squid/glow_squid.png" +hash = "fb7aa6f1a763a87e2c94b2154e648dd7a97ea55441bc44af93e90542afc87a50" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/squid/squid.png" +hash = "62e479c570f82516013e1c9bcc8ac6ca983818d086b527d7fd93fd701785bb7a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/villager/villager.png" +hash = "e508dcb9f0884fec7815af123143274bb09cb197d2bb11eb40d890ff29183eaf" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/witch.png" +hash = "e1d3df17db7bd4c0c2b30d27b9e33fd1400e1d95ce78cc688469fc7998314203" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/zombie/husk.png" +hash = "bb97f23adf475d65940b060525fb4bac83c3ed9a6201bf18f45da2892d3a4af6" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/zombie/zombie.png" +hash = "8096711447179e6e71334e8d65fef71fbb8eecfde29c230abc33d4ff5f702822" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/entity/zombie_villager/zombie_villager.png" +hash = "365d4a7e19eadc1d93f9ee8c9c571e5387c72ca25f30c1cd4ca0ab4bd0f14ae1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/armor_empty.png" +hash = "20781cc49e3c62e08e5a00861e876a3e40ce30f50073dc9f44537f3da68e1af9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/armor_full.png" +hash = "b155d8d05a04102a955cd6b99fda9f76848f5264ca73298e84194de9f7a602d8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/armor_half.png" +hash = "544d76ba6c547418a9f5a1f253aac1f179ad8b477c289738a512cbd1c35a2c51" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/crosshair.png" +hash = "a3a7e6ed57fd186a3ef2519608281a7fc405573c58a461833d5880f93bfca5d7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/absorbing_full.png" +hash = "af00043296e5ca11050934dcdd2d62ecf6ee3518dab59d6228cf7e7f64b77072" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/absorbing_full_blinking.png" +hash = "59896740bec0a66c23decf7a19f51cdc699a1b479365a68ef170f66283cf0182" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/absorbing_half.png" +hash = "ae1510a9869dd738d94b91388371baad7d5bafde020771249f959deeaa8358e2" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/absorbing_half_blinking.png" +hash = "906aa8c18f9d2def0966ca21ed77b059524fc61678bc91c5960a0e34b2ee611b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/absorbing_hardcore_full.png" +hash = "d26cad7bf0b1cb010325ef68dd2ab8c92f8bd9ca1b1948b1a3a9d46cfdbe5559" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/absorbing_hardcore_full_blinking.png" +hash = "5274d1e9a092623e35ad21816834410c5d820b1ad9970fb7df45b917976280eb" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/absorbing_hardcore_half.png" +hash = "0e5b8d4a268ff29aa7978d6dbdab154385dd79a7cc1dafd4528168428414cafd" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/absorbing_hardcore_half_blinking.png" +hash = "dd31ee101bfe564dee9457eb694e718585878eef8a7b873d2ee7ab8ab14f9e15" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/container.png" +hash = "bdbba368f3ad5f579a0a4a97c56e3aff5a8cdae961172b18d2fe5c8749d417dc" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/container_blinking.png" +hash = "38db3954773088cc214ca5de84fa0fae4e188deebb6952c919739c26199df8d7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/container_hardcore.png" +hash = "9815d6fe68e0b99e9ecc5e98279df05376a951de38e1e863f99ddac9e1920919" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/container_hardcore_blinking.png" +hash = "e048366b13afd7d0c3c8e866b16f08d279e8ae2398414d96537da5a809f4429b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/frozen_full.png" +hash = "d07fab912081a8d1e6d9e8ef80382c28d056fbc97167b601e04f8e411b554889" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/frozen_full_blinking.png" +hash = "19766cf09c6736e436b2d9660bb0be5581684123e84b9372d4ffbbfe845ca61f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/frozen_half.png" +hash = "914114d7dbe66183e2049e84db2de22cb7c8adc39e513d72e76aec00eae0ed13" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/frozen_half_blinking.png" +hash = "a197a46f04401a7c774a7a7f3b46e31e579d9684198bab07a8819b9166225c2e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/frozen_hardcore_full.png" +hash = "5cd039d151d7104f0e506bd2fdd5d81e19278a5b1c1b2537f67cf5ab4aa5fd73" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/frozen_hardcore_full_blinking.png" +hash = "c3598bc6217f5a1f22662493bcc948430a1906dbfc16b88810446f0d99151e86" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/full.png" +hash = "f32f93235d660b878909e17dfc434964cb514a1eaa6a7ae40442433440642d4f" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/full_blinking.png" +hash = "a768d4059546e8d2d44b32ef19e826b030813524784406f384cce08394a2dc18" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/half.png" +hash = "83140d986866f08aedefa9dbcd4191375ceae9b7f95f1d1e5f07f15b31b5dfe0" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/half_blinking.png" +hash = "db2ec5dd1536f579f084b0291daee7afddbe32c33ec4ff62160b5917d3268c20" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/hardcore_full.png" +hash = "3f84f3f9176f83e1f660ed3cb3bb18036cbe17b6bb4bb3903886be2f98d226f7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/hardcore_full_blinking.png" +hash = "6644ac6e8e01d7c3749114ffceca6c08839cf2dad553d6b227a7075e7da23f69" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/hardcore_half.png" +hash = "23efce07d337b808d04bdd1ad827095cc32b75574b745979124fcf7d15530737" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/hardcore_half_blinking.png" +hash = "5a8e81791e6e0e459a3917dda4e45b21fcc522a0b8031fc5bc96518586fe1f54" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/poisoned_full.png" +hash = "8569a6f6883775da6c836012c235442e1ba0abe180c007eb516039e7cba965eb" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/poisoned_full_blinking.png" +hash = "2421c137c12be645a23194225cdeb5ca1d9901c5566ece84ab54bb0f3198b11a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/poisoned_half.png" +hash = "43e12677fce9b7b16c5e772fc6b7137b490e299fa63a19099c109329878870af" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/poisoned_half_blinking.png" +hash = "14fa63260074c9c6524a17fac399ecb41233392fe4d740cbb397186f8ccb1e8d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/poisoned_hardcore_full.png" +hash = "ce04ab125ec3bc993c6195954740698009aceeb5593030f28480eb5a437f8e22" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/poisoned_hardcore_full_blinking.png" +hash = "51713d4f9f064f9c2de6ac445730f5f917908f099f3ecf5c71803681fbed687d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/poisoned_hardcore_half.png" +hash = "e25af92b96c717af79c54e47d890a5acb34c417eb34169df90e043a4b13b3779" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/poisoned_hardcore_half_blinking.png" +hash = "a8d9f9f0959aa36d5f5453516257337aa7b5d11db7765a961336ec6269af3e77" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/vehicle_container.png" +hash = "b231753e0446a55052f1f0e1b741e397d1b6159a9780942a17ae917ee6e0840a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/vehicle_full.png" +hash = "4403b1871d337b1d06295876e33bdd439d1fdf790ef878ac0f369d81d5197fdd" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/vehicle_half.png" +hash = "b5d10cc85a30473d8e55f2c65a2974e94973d346238c4f078dec746483e4225e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/wip/frozen_hardcore_half.png" +hash = "02c794179d20068199999dc332ed25d6dd4eb24c38b8470bb1e920e549e14fdf" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/wip/frozen_hardcore_half_blinking.png" +hash = "4ccfabab53e4cfbe1cbf4e5550178f68ca994f3fa62c038c6111b4fb6cd8f020" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/withered_full.png" +hash = "37bc0c5538ce2c1abefd15f46b1e352a6f0e7e31700bc19e8bc12ccde6e77342" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/withered_full_blinking.png" +hash = "33b780064f770bb2a2c45af5ff3fdbdd5eb90694b257b8a843ccedae88e04c4e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/withered_half.png" +hash = "72e9ae6e01e408518b0b82f8b3596fa3e25fab5112f5ed062b056f4211d084f5" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/withered_half_blinking.png" +hash = "970b78e5d0f35b2fc4a0c4f1670668ecc59987410bb93bf38d00bd196648e955" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/withered_hardcore_full.png" +hash = "abf83988e96e0bd312244b3ebdc49edf33b0692a3ac0fb0c4c9380140d0608e4" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/withered_hardcore_full_blinking.png" +hash = "981672d1e52d3d0c3ccafe3bb00c8f737658e95d91b945e8a47fc752923eed98" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/withered_hardcore_half.png" +hash = "5af23e1178178bc14c1ea4686f3bd76942e726397438175882153fc6634f1e01" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/gui/sprites/hud/heart/withered_hardcore_half_blinking.png" +hash = "29917e65602092c0e7db6b561f06df67cf86113e03eccd6f0c4c576c272c8679" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/diamond_axe.png" +hash = "8c453309b2e6d68fd3df419665870bde470b9e5b7fa6e3f4ea1720ba8ff3728d" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/diamond_hoe.png" +hash = "6822e056d8f6389076fa73559fcdd5ef70957bf72c6290ced882b12bc92566aa" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/diamond_pickaxe.png" +hash = "e77bf11f0bf587f7ba79871f7fc45d0f4298213888904dac2741364b87025b4e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/diamond_shovel.png" +hash = "e5730f4ae869227728aa5827a04f228658c637ae0031f7245353ed1c848fa85b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/diamond_sword.png" +hash = "5a373128df3b5f046f6b137a855f9ae332ace6c4d4b3f9eaa5bcb26bbd70cc94" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/empty_slot_axe.png" +hash = "9825041edfe0ef2fcad7e2bed3f9aabeb131064640b7e78ad658659320fdb0a9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/empty_slot_hoe.png" +hash = "7780062edef0a8e342788c74c10247bff93ea212d0dd29bf416c374937fdcfaf" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/empty_slot_pickaxe.png" +hash = "62a4abc24c9251e4c9d1a4355881c7d62cbdb634f4231465e462c52d3be76d15" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/empty_slot_shovel.png" +hash = "cfa1523a9a7741588626f98b2a9f0644614b3eb29a7375fd4d4fbf9307a9963e" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/empty_slot_sword.png" +hash = "4b404f64420bd476fd1143641183750fb4aba62033af231e874e5bf383207ab7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/flower_pot.png" +hash = "b6889d150744b7fb009f9ca44a797b86e091fd8733bfd30eb0bb595dcb9bc761" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/golden_axe.png" +hash = "f7e801d5aa328d3cdc25a732628eb497849e2ec39d18115c6e1d947a9d30e7fa" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/golden_hoe.png" +hash = "f17901b4d57a46a2a3092a3652db2dbe69c1c4441ff86ff60ed4eaa8abcbeb11" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/golden_pickaxe.png" +hash = "958488aa76f0c55af6f4b359f91b2d04be3488e24575b9c8e239f060aa743b46" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/golden_shovel.png" +hash = "16272385f4c54648d81b2e8e40d71776dc75ab67938427c11fd1e4e25422f8d1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/golden_sword.png" +hash = "dd52d881c7d773ae6f02875fb7f881791be35e3437df8acae86e985d411f3ec9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/iron_axe.png" +hash = "62a324669c8ad12138a93d46a5208505a132a5fe7c958d78c33cfcfcae85ae35" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/iron_hoe.png" +hash = "41666146d22831f153332dcf5a0ba883a77a5c67a083f0371384c6694d92633b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/iron_pickaxe.png" +hash = "ec9436002a70850cce5ef516ff5b27a0b5fa4cc77ac647484a8f41be738bd98c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/iron_shovel.png" +hash = "0b59ae7cd3e25754cc1c8d79b5b34ace991116634e3ca3bb98a7dab8d3de6869" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/iron_sword.png" +hash = "ed1fa2f83955583e70a19791455d13989e8bd93b1d7240e775a57141022bed6b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/netherite_axe.png" +hash = "9cd3a6c4e0d65f191b546faf78184c474f9954e6385b818ea7d4fb9083c80ed9" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/netherite_hoe.png" +hash = "f2e090a9f5182ec0005e791bcd958c1929f007611657da0a9c6f440ec408021b" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/netherite_pickaxe.png" +hash = "6d71c3484b70f491d9dfbd2c419cb39ecdbe214f8916f4e42f2eb1666fc92ce1" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/netherite_shovel.png" +hash = "f4a4d66242d6261570b5adc63c3b99089d2f3a9c9c545b53f338831c8ae6a7a8" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/netherite_sword.png" +hash = "fbb43ce6109e21871abb4871c6e073c8f300a94be7e019d1e7395d11392cebbd" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/stone_axe.png" +hash = "eca39355c878b80fdc3466ba67734043d07947b9ea94e1556ed5f7a2d52eadde" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/stone_hoe.png" +hash = "2823d87a79638939b4b9bdbfb95dc1d99d34e789e4d2368f8f239de0d9c8670c" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/stone_pickaxe.png" +hash = "32c6f8ffd3fe1139781f5efaa81f090d273cf55ab2b4acdfaf923e772675f215" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/stone_shovel.png" +hash = "229e37b542308373fc69337b457a0c11a687de459a61f94ada70f20084b6eb85" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/stone_sword.png" +hash = "cbd7e326e61f971b9e30d15bf92384e96735e6de635097e59ee5b1759ecdb80a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/wooden_axe.png" +hash = "6ef2fc3d2bc1447b478c7b6616cd780d50de129d68e0f6f7e7233a5a0ec320a3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/wooden_hoe.png" +hash = "3754b3451f421c6f7d24be3c454cdbda685282219e42d2bb603497fcf48ad18a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/wooden_pickaxe.png" +hash = "25eb8f0a0591b2d990cb93dec39047274eb7f437bd3ac942cc8648db55c37970" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/wooden_shovel.png" +hash = "6ce6fcbb3b20d9a201cedf0cfd8326992280f9788afa405e4a4014a65f640830" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/item/wooden_sword.png" +hash = "e8d3353bf7d0cf6134b9c253e0bc937ac7e0f77c58c8ffb1ad9f987a549432c7" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/misc/shadow.png" +hash = "34271f1789bb2a2ca777a84871db5e661f7d5ee1c231deec1082e65f896c7079" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/models/armor/leather_layer_1.png" +hash = "44d8bf3800a6690062d8a092625f7f137d6d2da0c1477765c27de69ff249f94a" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/models/armor/leather_layer_1_overlay.png" +hash = "87419b46d6ebd2e37d8e4944749f1e07b6a0e5edcd4256f484da387e56c83725" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/models/armor/leather_layer_2.png" +hash = "8fb11816afc425b78a2bf040a440c082df9854c40268dc9cc767ea7b6fa030b3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/assets/minecraft.disabled/textures/models/armor/leather_layer_2_overlay.png" +hash = "7e51e0b40196398bf5b3caa1e223a4aad81aec1e6945b4e0bc3f018c5a8fb7f3" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/pack.mcmeta" +hash = "c32ad182df726aedcf5cf708932916dbe5487cc72eaedc0792f0399f03a68c65" + +[[files]] +file = "config/paxi/resourcepacks/ArtisanalDefault/pack.png" +hash = "33fed94650c02e88a123286d12ca16dfb3334ec47a6d15ddc8c45689282bc074" + +[[files]] +file = "config/paxi/resourcepacks/BetterCreatePalettes.zip" +hash = "2ed5afaa6f789d43fede24fe580b103efc550aa32644220a0f94f6f213eabf49" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/abundant_atmosphere/textures/item/ashroot_hanging_sign.png" +hash = "82ca9b584a9536cb82580430743dc280231da8f3018b3df59591b6f0361ec8dc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/abundant_atmosphere/textures/item/ashroot_sign.png" +hash = "1e4730a5bd3a3bde5c32d66f609f61cb3cd180f1c20be67358da657d294dd640" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/abundant_atmosphere/textures/item/gourdrot_hanging_sign.png" +hash = "df6e9433a2f66c51280bc38bf0270c5183251ba3da210e57e1c8c09e85a51c15" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/abundant_atmosphere/textures/item/gourdrot_sign.png" +hash = "506b0a72d1ae4526bb2a9b3992d6fb5692af19f07e741910107498fba1945b73" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/abundant_atmosphere/textures/item/red_bamboo_hanging_sign.png" +hash = "b6612a634be9ec46660dd8e9643940fdb376a616972f2583c9e2002fc98e046c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/abundant_atmosphere/textures/item/red_bamboo_sign.png" +hash = "1623062823fbe6c05b6f4d08b64516ba84a9976e39aa65629500caf20e58c183" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/berry_good/textures/item/music_disc_fox.png" +hash = "b3a1ddf4d34c41842b883c59cfa02c083a04fa4fc663f19c0a29e7c32f1b1d1a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/create/textures/block/pulley_rope.png" +hash = "e17d6cd022e200216035e0966f998c17ae1bc16f572eacdc2464990462b9cded" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/create/textures/item.disabled/chocolate_bucket.png" +hash = "7c28ff141fe5dbf976b246c79efd3098a0ea8c191aebe7f3cad5152d08f2221e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/create/textures/item.disabled/honey_bucket.png" +hash = "c89763be90a1ce447ee9500519209f078feb07c54009445ecec04e4f0355b846" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/bokken.png" +hash = "196d2bed11591d26f562311e0e7105ecff572f391dfb0415afb4197a3afebb64" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/diamond_dagger.png" +hash = "4daea421131bf884a42cfa39d22c51ed3ba35480bc1f213d2300ebad3f3e1f96" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/diamond_greatsword.png" +hash = "39e6af7739b1f24fef833eb7a41aa79d0b4bbf8bd0e047ba899ac8c567205258" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/diamond_longsword.png" +hash = "f6528f6b1ce34dd87e17f3eae33a3554c95b9a27ef6f9a01fb773f91573f06d8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/diamond_spear.png" +hash = "39d3828564ffc0ec02462b1cbd93403799e2ebaa66b0113e6d05b717c545ac45" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/diamond_tachi.png" +hash = "42a760b26143abadb983af4e055d3ed576aab723e2775cfb5fdbe02fce18c275" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/glove.png" +hash = "9967dd694b6e789c9c95cceeeb9b208f84efd2eb07679892feaccedc451140aa" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/golden_dagger.png" +hash = "86067170c6fef041de8a629a706abbefbb075fb5898a85ecdd4d08e182357c0b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/golden_greatsword.png" +hash = "a363625abf15f9ce5dc5b53f0cfe9ae27ad1e8da05b333555feb6a83d4668bf5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/golden_longsword.png" +hash = "076f5020ee36023a76dc5b23041a98e7aaa3cddedb5e05586d5228665ac30a0f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/golden_spear.png" +hash = "eb734be9cbec036b1730dfa2350cfbd49d56c7da57b9df215e7c2e3cb5a3a537" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/golden_tachi.png" +hash = "2140579f7ffc3242afc76e2f1a7b3b00e64243d0ed2f1fc01535c09aaf143a9b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/iron_dagger.png" +hash = "78276b968f43e2487356a42c9b217d540f94fa79afab508f4c9f27d1acfb5f2c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/iron_greatsword.png" +hash = "ef30af9938229721bc57c377a144c6d6445dad8d0958558f5061dca350634f22" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/iron_longsword.png" +hash = "01a9a4863aae41fe4a64999f44d17f292bee568aafcbf1011177197b52e9d4e0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/iron_spear.png" +hash = "a3ce05084ab1dae803d5cf563b03ff216885920eaf089f7ac44f12c41b642726" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/iron_tachi.png" +hash = "68be2852e5e966308d518963cc01e0f5983f60fe8bc87a6e00cfc9ae4aff1d49" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/netherite_dagger.png" +hash = "8dcf6ff9dacdf0c5d7c2e4c39bb7a389d9c986d0c4868c27a000cd5274427911" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/netherite_greatsword.png" +hash = "b805deae59dac9b39d9d709c2d632bf5bcf881653531c550e87043e3190140c0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/netherite_longsword.png" +hash = "fc0a84f8c54813086ecb6483f33f31859230a9962c288197c23a04727b9108bb" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/netherite_spear.png" +hash = "3c5984acd454b90bbccbbcbb6d154b25af4980f12ec91d956d318fb0b92038af" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/netherite_tachi.png" +hash = "48428c983e8f3b0d868218cda0d365d5d3d0ea2d38b69e11ae72eb53ff7dfd8b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/stone_dagger.png" +hash = "2d55a11dde21312d4c433f85f52180aed33af9cffc0fb8a7e752e1d8c74dcabf" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/stone_greatsword.png" +hash = "c84cca23dd652048602b20eec5687ac1e99a383c4a05822c1c4e238d791ef5ae" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/stone_spear.png" +hash = "eb22cfcf545ed2a7be68eab9f4c8aa714effba75e90d070a0cd1015a87a65178" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/uchigatana.png" +hash = "18cc1c542a19813757c96ca8cbede4e177e8f5d2f745fb54b193f0f7b91d0eab" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/epicfight/textures/item/uchigatana_sheath.png" +hash = "95f566b37a43502d9fe74aba994f00f56de46f15488a285be795aeb53387f115" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/etched/textures/item/blank_music_disc.png" +hash = "e6a2b5f583f18a5c15ba844cab77fc6339361050ddfd9c2f92f6399fbcd5a916" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/aged_photograph.png" +hash = "292507f44026f98cbe0d57b7e16ab5457d6cbc3540804cd83b434059cec21a67" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/album.png" +hash = "4dadbfde6f7f4cbbe09a0cf507360fa5e278da32063c35b0b4670eb092f9eaa8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/album_one.png" +hash = "8cb553d12b303bddb49d6fdd248e56bc49c282dda6d2054fd8e9dc4ab449417d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/album_three.png" +hash = "00852a3991d5df881492c5893af46c122f543fd2664a8e0aeef9afa462dd58f1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/album_two.png" +hash = "608c091b1e59cf286303ad2e9f2acb58058b769e2a7a4579778a234966bf99b4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/black_and_white_film.png" +hash = "c92325e668c8b96de226e005211271aca65e0c7923c5517fc94d13ebb9749937" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/camera/camera.png" +hash = "5b65f79aacb8be2ddd76ba61cab9eb21f12125226db63e86484803247b07e4ea" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/camera/camera_gui.png" +hash = "350f9746470d95354bc26de781a9d7f99919e82ea824456244222cc0e275a1c4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/camera/flash.png" +hash = "5f29f54eb03bbc4df8285cf788814d26527d931e773aac6eb363500564ec0a8a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/camera/lens.png" +hash = "64b9501aec384bb8d209a33b04718b016083734895ee065708e7380a1ca7742a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/camera/viewfinder.png" +hash = "de5e8d3ee0b1d3040e2c616d2c3f55113d9f4911970f413c553f285090b98a4a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/color_film.png" +hash = "967aef3d55341b556300a16e92041110c21a00e316824ad013f73d789ffe7dbd" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/developed_black_and_white_film.png" +hash = "308cb002837703b8235c8a8df6f9adcea5208d2055e70326b7640b95f2b33466" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/developed_color_film.png" +hash = "beadc73c0920a263a51a35eb800af45a07a09bdf984420105cb3e454fbf20b92" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/high_sensitivity_black_and_white_film.png" +hash = "0f99f4c8f7b32b605a1fd2dee59bd128a712adb8ddf82da71a8d6f023002c598" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/high_sensitivity_color_film.png" +hash = "c30591b25dd6d64bda08bfa99d5b252ff66d609d20ee18d1b4ed9754bf8f6a1f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/photograph.png" +hash = "5b838532e8a7eb0f33ffdd4dafd3219f756c1505e9ff5f2f2642604680353104" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/signed_album.png" +hash = "93b3cc2573562b60eb0baff944068287ede256c18ed9e11ebfaa44e102a832e8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/stacked_photographs_three.png" +hash = "a26618ad7fb0b30091ffda296efa7ecf850c8d42aaa43a8b511733e6d4cf50a1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/exposure/textures/item/stacked_photographs_two.png" +hash = "ec69206b3df958a19dd43d667ef5100d4c2b0024472c10d7741ac7ffd6af7b89" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/block/brown_mushroom_colony_stage0.png" +hash = "887a5f179bd89d745ff1a1c6bdacac0f0ef427b077aac94f1b7551c1321019ad" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/block/brown_mushroom_colony_stage1.png" +hash = "196f87aa8396fa8b6f08f59f477bd3df7ec602765e3ccbba3edbbb650a152d69" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/block/brown_mushroom_colony_stage2.png" +hash = "ffb7b13dd3126c19e4d3ddb02dbfb3134a508d4268d82eba3b4703562e92476d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/block/brown_mushroom_colony_stage3.png" +hash = "fe9afe8c843647838d56d69e8faa7164fcd60c1f8d66d1c2228adab1989dd94b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/block/rope.png" +hash = "a523856980bc51e85189dc1abe1f13852b62536bcb69cb7195dcfc9da5dabbb7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/block/rope_top.png" +hash = "09ef813d3520485cc9d16143dc0a2a6fe57eb8927ccb4b2dc6861c27ed9eb399" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/block/safety_net.png" +hash = "db27101a2b677fc4275adbe73d600e42ee9140e0ca12a20f24662aa60cae396a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/block/tomatoes_coiled_rope.png" +hash = "a9dac9c9d8de6ca2d4876353186a06f0defed6b1b8ac27a56fc4ea99a650298f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/black_canvas_sign.png" +hash = "11c59b31ceff81024ae748bd52f7e913c17a2085e2caa7bf5e8031173863a76b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/black_hanging_canvas_sign.png" +hash = "39c6d90f7ec4323bcf76710c3e8fe81c11a80da68b071e484a1309684780573c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/blue_canvas_sign.png" +hash = "9056459ac260c868707ece294fe09673d9589d9dac663891db1c94107de3493d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/blue_hanging_canvas_sign.png" +hash = "c9d453e61a523a35e6a6e09cd74bd6e87bc4e0d2328f33ba4245f8126dfd28e6" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/brown_canvas_sign.png" +hash = "e339957f435ea438a1a41879af96beed4b75ec5739632104eb1d72b2395e3b49" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/brown_hanging_canvas_sign.png" +hash = "2ed00df332a6b0a6d79bee500bd2d00eb2381c4fb95d18af4ab6a15d554752b4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/canvas.png" +hash = "7258abf05933bb62dd4ffde492869607e7911b22ac5b796490129fb28461bd1f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/canvas_sign.png" +hash = "c1c95b4c51a71d75092ea52ef95ed1d9e43f75a9cb370641456a5fe6e59efaa4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/copper_knife.png" +hash = "33d8228fd5d04cd4393b445bf3f4205fe3ef00b3a8fbd8172038a407b768d88f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/cyan_canvas_sign.png" +hash = "0b3ead2068aa21c9fd7695ed6f6d0c05b48bfd002a755abc81d504201456fa2e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/cyan_hanging_canvas_sign.png" +hash = "041312a8dc889d0f6fa8f7f3f4ea5e23d1552e8322d08df1571633835786a8c6" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/diamond_knife.png" +hash = "8c43c8296422d24a88ee6eafa337b7ba50f2020c91d052687e60ab11ca023eb3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/flint_knife.png" +hash = "c72245178dfe7b51ce57b654b573a7c71f82429985269cc6f952f798c446be45" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/golden_knife.png" +hash = "d9bf0dbef1390d5eace55800bebf90b4f697b22c465ebd03eb642e05388163e1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/gray_canvas_sign.png" +hash = "d8727dfc57f65ad80ef31b7a59cbc7706170f3056b7255fcf073ac6778968613" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/gray_hanging_canvas_sign.png" +hash = "f2f4653d7f13c40e50ca6c8c654e5dded6a25f60856f86e9bb393577ec26a97b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/green_canvas_sign.png" +hash = "2c0fe2572a16ef8413400c2063f4652c92d65a74b46efe6838f5aa9ea8eb33b8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/green_hanging_canvas_sign.png" +hash = "ff50465ae8d48c20c7a7039d5265a309f8205570270e9908511de3e18c1368e0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/hanging_canvas_sign.png" +hash = "fb480a1866308f15b9e26327cba8f5528b18ba6d864ce649fd4ec4891ec41d5a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/iron_knife.png" +hash = "6cdf9083760802a4151c83fb52111e86c95de76cd2c503d0cb60e1d060c90be2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/light_blue_canvas_sign.png" +hash = "267a40d9a871102665ef0947320903e9d16616b6b74336d434cfee502da16244" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/light_blue_hanging_canvas_sign.png" +hash = "e59350c3f60c26f96839f8644b279ed7872baa48a6024d67458eae4fc6137786" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/light_gray_canvas_sign.png" +hash = "b87c56b957752a0cb04165a3e60793693084d4ebd57cfd0a4d4a1f874435360c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/light_gray_hanging_canvas_sign.png" +hash = "c047c170516b94380eff895374223eae7abfbd933a42e7a71d0208031365d2ed" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/lime_canvas_sign.png" +hash = "e40c74576df08b89e2208a5c94a7e09226cf672411b22ed520dbfa7d1c82c16c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/lime_hanging_canvas_sign.png" +hash = "591598bbf3412bdda1f46c51df7f7d8a9c46c1358e989d20f2a3a3868170a162" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/magenta_canvas_sign.png" +hash = "e931bd33d47b41a48f999a40c0017563edde5d17bb8220a033763800584598e0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/magenta_hanging_canvas_sign.png" +hash = "e57c881700817068ce4512b3d2d133c0d9c676586ff884e1eac0a72cb7541511" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/netherite_knife.png" +hash = "5ac9c0f50d922c763cdf6163a6e7808227f5db8736784f7585b94009f5e7b6c2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/orange_canvas_sign.png" +hash = "64bd350ceb00363bb1cccc60e61a3bb103f7f6eff136c1243e78873dc9bddb87" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/orange_hanging_canvas_sign.png" +hash = "3257f354840ab8ad33e89c43d94e2378170a29e24b4f12074cb312e1c5a57358" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/pink_canvas_sign.png" +hash = "1579182f5b5e0da571907f3e94e9d2508d68fc5ce36e35a9e2d1e3e9cb5f67c5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/pink_hanging_canvas_sign.png" +hash = "25a88976bf7200e77eb4cf8b9dd587d26761dee48c9a76fa388bf93bf69b02cd" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/purple_canvas_sign.png" +hash = "56927de0c43ec6a678410c83c15b2cf3cfdb0862c5bd70d93eb9b9e58922aa81" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/purple_hanging_canvas_sign.png" +hash = "243c07558d5756dc6659f0dcf89d360e8d3d9c48c1e483d9c32fed402951116a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/red_canvas_sign.png" +hash = "3b0bb7e1a764ac9acdcbafdcb37df27b44b72497d67cd2a731a161a3147c4006" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/red_hanging_canvas_sign.png" +hash = "ddba759035cd0d1b6208f359f9833ec75b6f75adfba80be5a6b7047389a8d72c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/rope.png" +hash = "e87cc47ad0e36f7006747174930f3bc2bae5213a03655b0139b9f780002f717f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/white_canvas_sign.png" +hash = "dd81baeb533475cf729469d0961c91cc19f31f7246d52f942ce0bafc4709eed2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/white_hanging_canvas_sign.png" +hash = "015bae24a2ec7c218cf102a721a992a09a4296b5e232359cca6a16dcd9f26a5c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/yellow_canvas_sign.png" +hash = "023ef56ed6272fc93e8a5f600aa3d02858aaa861ea01d901a14270c57527a07a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/farmersdelight/textures/item/yellow_hanging_canvas_sign.png" +hash = "16dc4a88ee0ffef324716e8800dce57d42988b25b5bd32351cd56d4c7b90b7fc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/blockstates/comparator.json" +hash = "9767c2a491a5d7aec84d375da212e3979870373a32bec3d44b57ab7339d07380" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/blockstates/cut_red_sandstone_slab.json" +hash = "8b697fda91e7dae3f0535e5b05727c28a0a3f507a7f06824e6e4d59810bb360f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/blockstates/cut_sandstone_slab.json" +hash = "3cbd44123553f0f38afe1cda947462474dc140217f2e68bcb95c51f3a830ffbd" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/blockstates/polished_andesite_slab.json" +hash = "395e7d338fe66372431bd91a64a3c58ee51eb0e15f40590c509e5eb0a90bab4b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/blockstates/polished_blackstone_slab.json" +hash = "ce0d0b0426b71929265eb7bd9634a1f347b2d49738bb92f0d56208e9d4d38cd6" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/blockstates/polished_deepslate_slab.json" +hash = "ef3cc9525222c117de85f4efc3bf0bdc817419b976725403972c7e255acc8d13" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/blockstates/polished_diorite_slab.json" +hash = "12191def7fd4d752ae2f378c10e3a92a85b068994f4bb3d4969bc594d6d0b35e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/blockstates/polished_granite_slab.json" +hash = "026c20a7f2e6c2e6ad779d1b93ab6878a001eb09df812cea8e9e2dfb62f3daf3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/blockstates/quartz_slab.json" +hash = "f446dac8447ee3ba1866519febbdb57e927fbe043a73002f82af16f6be393c28" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/blockstates/red_sandstone_slab.json" +hash = "2c8b36fabdc739291e1901ff9f47f42e2e2eb585d99d5733b978ae9b567736eb" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/blockstates/repeater.json" +hash = "836c0d0eb4f9806039b2aa95b95c1e3d24a73552e062cad5555bb473dc18f67e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/blockstates/sandstone_slab.json" +hash = "771ec44d72df1648421eb9e91927efbb61cd81a2c5b57f2b37cf0953f82685a6" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/lang/en_us.json" +hash = "03d5bcd12bd5cba966b3109d04cd3fb3819a888953f709f9b32342905eedb57c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/comparator.json" +hash = "3e01a550bc995889857f4c86192d1026bc248a6bf0645707c51f7e91ac5ce316" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/comparator_base.json" +hash = "a4cb1ca43864a2401ae791d0ced503dc9049eeead08f213f592a78045590b9df" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/comparator_on.json" +hash = "93e038584ef56bf87fd87391e90df05057c89b7244876815a31734e6883e34fa" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/comparator_on_base.json" +hash = "8c70485036c0eae487f6b88e6b4e9077ce2a2c4567c4a1b74fb03ce25d1e8d0c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/comparator_on_subtract.json" +hash = "33493d8720a4efe5e3e1c9895fdbd99ec698241a5042db32151c185e954fecbc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/comparator_subtract.json" +hash = "e9691790592f1e76618ff325aefb800e7cf09f3560669010a73324d065a6803d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/cut_red_sandstone_slab.json" +hash = "de343b59ea17722318949df164c9c8b31cf48d0092ba4f55887bfbf91cd5fc44" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/cut_red_sandstone_slab_double.json" +hash = "435d561ab3b6ed1739333f514c9764ee11d264c64db97a2c96fef0a13f463171" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/cut_red_sandstone_slab_top.json" +hash = "f276c3f761fcc548a0b8d5086aedbc75624d954f534842a14210fd44b8609c8a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/cut_sandstone_slab.json" +hash = "1fc4aab5aa261e655604eae07df80b4300813ad4977f6e88fc83588aa70e6475" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/cut_sandstone_slab_double.json" +hash = "3489f611a1ca0ae658309d82c8a387199d6c29dd0b86a97674770933f43e4af2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/cut_sandstone_slab_top.json" +hash = "d1e66abf09a539174e3052c5f15d9c7ee0aec6014ed422af8974df90fad18294" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/lever.json" +hash = "0bbf055feda6bac85a89edf04ee33ad4864d39f835267edf8b246fe29f6bed87" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/lever_on.json" +hash = "c352b334d5dde5628cffeb3f3588754ece8ad8c753bd356c71e5b3803049442e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/lightning_rod.json" +hash = "f6bdf921bc4699a46cc30020aeeba53d5e26f583545213bb2db3b7032ca67ecc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/lightning_rod_on.json" +hash = "89b13b6235a15603b368639f668b7f76e77254ce4e84f3fa9035aa1f63e64187" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_andesite_slab.json" +hash = "85cd94ade922bc3de288c69a9b82fd25abc39ec31265da9acb9bcc1f0737b4b5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_andesite_slab_double.json" +hash = "009b5284aee0bb5d24dac25b6641ab03e8289b62e0349b5f6473e299c739be73" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_andesite_slab_top.json" +hash = "2ff9c0db8c576962d526b9c599a5c7e94e664ea7678c9bae84631ce150200e45" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_blackstone_slab.json" +hash = "c8dda1d93c8d5983f2f79541ae3ec8e290b67fb39df30710c74bda1fb6d15969" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_blackstone_slab_double.json" +hash = "4c6ebb6a79ace23521b5bf726b64b3d723b4d24ddec3a3a472058fe958a50ad0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_blackstone_slab_top.json" +hash = "270884e2af11a1139f80a676b298710475bb0845897c79f5d713304cf320f22c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_deepslate_slab.json" +hash = "5b6845279c52ad736cbf68355161e4f5a33d7c0a44e8359ab9e3aa3227967c35" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_deepslate_slab_double.json" +hash = "967b3c9c3d56638387596f2e2d98e5bfef4b18f066b2940fe63f153477f0c945" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_deepslate_slab_top.json" +hash = "61645680b4b91a501c26467b19e83e985f5b1fa27b260db9aa71ee03e72f7b39" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_diorite_slab.json" +hash = "e2da03a7a021df455683b079bc75731bd0f561decd0d4ed6f506a561c43b7199" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_diorite_slab_double.json" +hash = "0bf526f9606989ed7a9dcd369659a90e29de6a27744deb7208956943d641594d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_diorite_slab_top.json" +hash = "425e1bf3e1081629baf7076b585fc33c1638c214f23398b28038879e4c832359" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_granite_slab.json" +hash = "caba3a676684dd78331d01f6c2e3c81ce772184bd9aea144850bed0cbf3a1cb6" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_granite_slab_double.json" +hash = "8738dfa61edb4f2f276c876638d927f42b92d1b9620c85a01380a2969e7b265a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/polished_granite_slab_top.json" +hash = "ea90b1da498b8c5a62ed7224b1c030a4f2f38a5781d690665de7dc7f71889ced" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/quartz_slab.json" +hash = "851d29ad90e32a09eebc706697adfb671d1eeecedff6165c0a7ee804a1e4093c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/quartz_slab_double.json" +hash = "b10a95348a44c98fadc01ad922508de7d58e8910be43f1cf58c7234d2557b279" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/quartz_slab_top.json" +hash = "40c20c23101bedfe1f383b5032cae5b3b012dadeabb85c308935df00b03e81e2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/red_sandstone_slab.json" +hash = "4e56ed559ac787c1ea31053e8c2ca4c5fcc7155156bba5afce7c7a52615f1a4f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/red_sandstone_slab_double.json" +hash = "73ed85040cf442d4130143e3f44f8cfd46bc2e20bd06f1d63af4f24554e8571c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/red_sandstone_slab_top.json" +hash = "7157ffcd4b325565309e38b6846fef42b7cb4e4b3b6293a722d92f3220d15931" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/redstone_torch.json" +hash = "9e50dd156461b5428017357f0b70ccb318bbfe33ba1d16ed18b681182754111a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/redstone_wall_torch.json" +hash = "ba69eca2cdb96d79a9d5b535be55799eb3a603f70bb329bea38eec8f31c80587" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater.json" +hash = "bb6c56e2131074aaa4c7cb65dbab5aa4fa20669d593ff641e1d2a56a2a235830" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_1tick.json" +hash = "e8c192b4d944536233dd8f09093b714f7dfc7a1f5daa0fc5bd5ad06364bfb1c5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_1tick_locked.json" +hash = "2f1ba3d25e09cfda5214f66401a273b18d6340da79a3423695e240e4fdec3c0b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_1tick_on.json" +hash = "f4b49b1667d49d5968e81c496bd349697ae74126ee0f18644238c8949a7ca534" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_1tick_on_locked.json" +hash = "9a722b9ae3487d123f88428e57a89743e8f4a82369bb4ce4736a0c1a050fc828" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_2tick.json" +hash = "81cae283f887ab389c366345182337d89a94999dc085bc44c1c9aa5eb94ebed2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_2tick_locked.json" +hash = "2c374337d85fdb77e0ac81c94a763d7076dfb8538e1516caff7264e76ae90a25" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_2tick_on.json" +hash = "c1c25d760567cfe3041538d350609c91cc190e1dc84151cf1880d09657c88187" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_2tick_on_locked.json" +hash = "1b26fb753ef8e98479052a5cc4db607a16f099eaa773c4c183aba9583d99a748" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_3tick.json" +hash = "78a4e9a28594bdda6cadf5214d73db61ed31daa6ed989d7632bad926abc13222" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_3tick_locked.json" +hash = "3a4d13eca90f5f7df7c6ffe4e745393da67d5413a26f2b14346f1d064bd7de2d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_3tick_on.json" +hash = "87edfdcaa7825c0a852392cc3b9f6326143c91a5a40fbb035362ec33bc93d1d7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_3tick_on_locked.json" +hash = "6ec06bea62432d2ee71d9056392f4fd1faa1187035eb00617e518c71b7647080" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_4tick.json" +hash = "6180858e2b32b28ecd504e15270e1dd4ef1aec49e8ad2394ce3adcd8779ca4c3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_4tick_locked.json" +hash = "a5834fe4aaa11c1ade2f9b38ec838631edf0a96b9194e819ca571bea5f6778c1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_4tick_on.json" +hash = "b2eab52b4b814ae8c2cac6031ee8e1e5ac6994e618827997c667bde0fd132e35" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_4tick_on_locked.json" +hash = "e2031cb62680567563c780aa8ee846077f7901719bfb0241880f2d7f4282a4f5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/repeater_on.json" +hash = "89763fc633afe6da064bf50e0d783a6cd8083cac0310a4ff7f526a2c557a22a3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/sandstone_slab.json" +hash = "46bdd44d77fe8d4e88189703927ba4655e8209ef1587e0106666793bbe3e9a7e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/sandstone_slab_double.json" +hash = "a9af556f664711b9a0da7d12c63c31cc670a399ad5e35af9d041e4b518a3378b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/sandstone_slab_top.json" +hash = "3c6ef3705821d10cee45453d48d1742aff96dd6c0c249ab607f39aac622d6c35" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/stone_pressure_plate.json" +hash = "66fbaeaff2752494c229277532c65e1a4ec3684b5d97a5d647cd21e09a7a557a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/stone_pressure_plate_down.json" +hash = "6438a5294bc6eacb25f0d2942b41c2cbcc8168e168230ec422c9accacd46caf8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/template_cake_with_candle.json" +hash = "5a4d97ea71886ca3ccf776b173a7f8057798525a6a648c36f62c9833ccd0abf3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/template_candle.json" +hash = "3e300721986d1cf84eb41d1658dd0e4e4387be467cc5087dc480afd140ee5a75" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/template_four_candles.json" +hash = "32c60870c12510e8c1e01158d60cc405bd6ee0333537ad8de41d149b7fe523ad" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/template_three_candles.json" +hash = "72e4dde95a2c614c03b1f74daf6a406765b12d822fb9c24f11afbfa3749a9327" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/template_torch.json" +hash = "eb982c6a24706fc7f43444d8bfd46ee07f501898be984acb38fb84f7cfc94b6e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/template_torch_wall.json" +hash = "abd5012abdf467d6b356c6c20cee9bb80f0b6875f239a0b5cce33cfd61ea1596" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/block/template_two_candles.json" +hash = "9cc373b4595d6e2b2d209d88fbe069cc46384681bed04aeac3571ff2ef371f1d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/item/enchanted_golden_apple.json" +hash = "95a042092a19dd751d899d90db702e441fd5a606b953a53a5d7928a40d24453c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/item/lightning_rod.json" +hash = "ef22781f83cabd4b6f2cf267c4f9935a3d66e148df201a746fde4c33c9de22e9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/item/redstone_torch.json" +hash = "872faeab35941d3f8d34c5b40445b324660a25ff8a208618274954183211ecaa" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/item/soul_torch.json" +hash = "d80b2197c4e4dbee85194a38e32a7d7254998ec3b0e91f5cc4fec89448ecc55c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/item/torch.json" +hash = "64a6693128e14e0573709627bc1e15ac7f658be2db6735924b651625bae3f8b4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/models/item/tripwire_hook.json" +hash = "f53d5edf0a68139ecb4a97c897a854148811a3cbbb305f961a47aac5424fe25c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/particles/flame.json" +hash = "c824dbf5055eebbb72b486904f5f119b62e06374e9cfcbf6df5e6b0272f876ee" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/particles/small_flame.json" +hash = "32f22fd1c16666df44524481ec5c6ab60f884bc9f69e4ed83530fdf17e19e4c6" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/particles/soul_fire_flame.json" +hash = "f8dc2027a9d49e44c44c1f86d039c92a526ef6d264b88432724e93b1c514ec8d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/black_candle.png" +hash = "d3f4765eecd4ce2de2a3b057fc60a4838af71d90582cda9a710694a6f3b6b47e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/black_candle_lit.png" +hash = "8fcf495c52d6af833a7912b51b31815e3c8f481d23259f97c44be6eef52a9b8f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/blue_candle.png" +hash = "2b637058ad453e085285554f7a392bc4453d53d9577152d4d08afcb1e08cab9f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/blue_candle_lit.png" +hash = "0ab2bf6c903dc9138f8923d511895b009ce2ffb3a7e9430ec74abaa270be7715" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/blue_orchid.png" +hash = "5660d416d975c460031a9873e4d5d4061c8f87abda0b2df327095425f860eb56" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/bricks.png" +hash = "552948278e548b4ef8bdf6a1782afbbc68dfdf7b9a963627d780bae3936fd9b1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/brown_candle.png" +hash = "92cd6af00ef9dcac46af9fb1a03ab657126b89db2b4790232b079d50ad2ae281" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/brown_candle_lit.png" +hash = "f24b7ef1e4415abf07abe7fac9f5e7f2e0c2e4bd0e4eccdfd69ed912c8264c4c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/brown_mushroom.png" +hash = "89f09eff6cc09497f6d0792d58a4f082f913f1adeeb06629c0f0a197d6689a3a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/cactus_bottom.png" +hash = "0aa5d0745a359dcd8943c68d9355cc767a9776dbbd3558d739c73472f3b25d15" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/candle.png" +hash = "6499b4773a8d57ce4d6b7c1a520496aed7a38ab91049c0030aa4d87728aaae73" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/candle_lit.png" +hash = "351a4511447c9f77536458b572309573b1128861f3d4200c4c37ec71bf990b7c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/cherry_door_bottom.png.disabled" +hash = "a61d7a9663e7339861a111dfa7235e1437d70268e5fc8adbb6a98e93711a3387" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/cherry_door_top.png.disabled" +hash = "9c0e002c64fa2e046b9e2f29c65d171d1f5c1812f7e8e166d236fc6a7b68b2e7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/cherry_log_top.png.disabled" +hash = "7a7c0d57d20a90620be8e7dbd94752dd0f6743092a56b694c130ede4dc1b688c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/cherry_planks.png.disabled" +hash = "d99b25203dc109ff930f8a3af40b844d0a141ac1ecdbc4930c676837ae5423b3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/cherry_trapdoor.png.disabled" +hash = "b9419432f6eeb1a367205d683f424d4ea76cce4932a621fe5c32200f1a40c3f9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/chiseled_copper.png" +hash = "5151b64eeb87dfa7235ad5d0397a1778da369d91cd2729db7919e7d4997db1c5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/chiseled_stone_bricks.png" +hash = "c3df78e5693d032349a82d3f6c8d2378c880703b043a28197e8357239a7f5cdc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/composter_compost.png" +hash = "d0486cd3999735cc941c27bd918982ccf264bcd5189ac463f439aa151c17ea6d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/composter_ready.png" +hash = "9bdd8bf1cd81e2e7700636e0b03c588d48fe4edcb68b6e76faeab3e806b6c70b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/copper_block.png.disabled" +hash = "fb1898be25a2ee26e55ae70292f9edea82c6c41172b588059480c7790c9d8130" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/copper_bulb.png.disabled" +hash = "25566ab9d814306a74fc682c6cc4330b14df9baf9ec49e6d98623e42062405c7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/copper_bulb_lit.png.disabled" +hash = "374e1914a2b76c8bcf09f2347e13da905fad31a94bff669f52cc631c497b8cfd" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/copper_bulb_lit_powered.png.disabled" +hash = "8bb939861deb3502cacf94cce4b25d431d2e7ecd5d407ab8c32cf669c0328b22" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/copper_bulb_powered.png.disabled" +hash = "f5688b4b7c56f295e0073e74f027317e590547bbd11a9408100e0896121d93c8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/copper_door_bottom.png.disabled" +hash = "01a5e034d457c892eb11cf922a788fda7270b258ac78031374f2d140aaca36ef" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/copper_door_top.png.disabled" +hash = "f9df63ded6e1e52488af752dd425cfd9025964e7ebe2e835bb3f01e2b6921fb4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/copper_grate.png.disabled" +hash = "cf3f1edcde9b1c4d8b2e0791d04d3c59cc57a33b29d27a85f564620fa91a5653" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/copper_trapdoor.png.disabled" +hash = "df1bcce29b34a588ec20a33146bbc31a7d8951ae85a565c29787a8f812f30bd9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/crying_obsidian.png" +hash = "6b6a7a15c21e1fa969781ec39e2bc48e70e8508855b27f77df4ab23c677a0e5c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/cut_copper.png" +hash = "04a13d903e724ae5f7dc0c0f4569e9a9e2d103687d7911a412e0bd5946052274" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/cut_red_sandstone_slab.png" +hash = "17b0250abfc27d884faecdba3b1a205ae05946c044e5e9d49aa17df4b2ccad86" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/cut_sandstone_slab.png" +hash = "884aa9f46c40e830302b3a48a0f6a44bc300fc1666df76638851478f3ca14860" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/cyan_candle.png" +hash = "7d3b450b73dcca1766ab8e1c82bf8664c64b5438f180e88a00bcb063e9f0d5df" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/cyan_candle_lit.png" +hash = "0511a435cbc8d5d9fb640fc3317ddc969bf32988b41b70b2b8eca7595afaaf94" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/dark_oak_door_bottom.png" +hash = "ebd3bf6a81000798706692317eb5308b3ece54fecd5e26a61050183afc834c93" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/dark_oak_door_top.png" +hash = "89dbb6831c99fcf694afb343065f3dcd0abe52b159d16923b9f45a9ef42de172" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/dirt_path_side.png" +hash = "9457b03563f9440d699dbf187ef9bc59bcac1103218f01b1766829e6ec160f45" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/exposed_chiseled_copper.png" +hash = "45de1b32efa1895e1221514ca7cf7554a072423be84e69937ee6bce785105e0d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/exposed_copper.png" +hash = "27d4b3e6d00dd521abb49d09ca1f7989d6ca70093af2d57996ea0833997e19c4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/exposed_copper_bulb.png.disabled" +hash = "4548147d538bfeeed98c039a4a1e20ebbb76153ad2d2dff2cde91ec5e5307e70" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/exposed_copper_bulb_lit.png.disabled" +hash = "eaf7408c571e47601c85101f4ca92f81a2fe830c8c3384c98e392ed06a0c3ac5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/exposed_copper_bulb_lit_powered.png.disabled" +hash = "59f955b7059026fa2e3cd8c06540144d86a86083351a54dcf0bf0e8afe2a4060" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/exposed_copper_bulb_powered.png.disabled" +hash = "c6b41faef91c5eedca9ce540c6b32c2493f8ca3a0f49d8a4b5f2999d1ae30cb9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/exposed_copper_door_bottom.png.disabled" +hash = "3abc1f40815e2b5c7127cc06bf05ad67b2a2cdf00adcc21c76dad34c01f93854" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/exposed_copper_door_top.png.disabled" +hash = "d3bfecd784e0186777531284cd5c9976a2fbbb1a8056d6a280009fb764540753" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/exposed_copper_grate.png.disabled" +hash = "5f6d87ed8934b67d8ebd8b6337f849a2fb94c296763b8e58fa4553c5f3726aa5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/exposed_copper_trapdoor.png.disabled" +hash = "6f2dc5a159ba08cc065ed930254ee4c755e1482c7a13a0acc8d7b0fdbcf6f819" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/exposed_cut_copper.png" +hash = "2f488f97e70c9690566dfcdfe2ede2f3b82f1589c1efca5870155a6a52adeb26" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/fire_0.png" +hash = "5d780dcf5804a2960cf72db191200b7d7201b8aa522b1d9623b8c8d31d85cc4f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/fire_0.png.mcmeta" +hash = "5f3e552df12ee396d7ec7d93b9cf56c3c9db521d95514d7580ee9b1367cc93dc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/fire_1.png" +hash = "9384c27047e0e2e33c02b7e6838f77bf20e46b52e95a38edef9d8459f3dc8ecd" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/fire_1.png.mcmeta" +hash = "4a5dad045d1c6172b28dca8eda5ee036ecf966137cda30c64770bf48689c92d4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/gray_candle.png" +hash = "16395531150b7c492def3ca93e624a0bb12eb26132fc7625877dee2e62c41272" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/gray_candle_lit.png" +hash = "b51322fda3238706364302938483cb5a57f726ecf987fc20a44fa1b348a15ba6" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/green_candle.png" +hash = "a1f373887256fe1c12c69873b783678f0c3c5d6f627386688ae22aff9ee3585c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/green_candle_lit.png" +hash = "db6241b72963531fcf6f429d41845deff96d195d2a752a582fadb7f55fe36538" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/hay_block_top.png" +hash = "8a05a80f8fecf1be175a82687923e2dbd67a7cb05467bbe199a0a4d13cc4afe7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/iron_door_bottom.png" +hash = "2f172eddd5a5e3addf1f2a93eaa154413783ce0e7dd4919af0eefd2b03b6fdea" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/iron_door_top.png" +hash = "9bf0caece1c6e716f54cb22d73513f1145c4a6065c4d5df4fd9c5bdce854b3fe" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/iron_trapdoor.png" +hash = "94fd188b474911325631f61c649d494e7d000e248adea9a3df1e000b78903e65" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/lever.png" +hash = "bfcd117280f744f7ca0ae5acdf8b37ac964d9d1b582c244773f92788073ec70d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/lever_body.png" +hash = "5e9dec2fbf22d9cf0aa8b3359e33ca92ef24f6110c4027f9fbababaaee7c268c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/light_blue_candle.png" +hash = "1a08af2c8c978e0115c21f4ecd69fb6712c7321a1301aa4d3ce482fd79dec8ae" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/light_blue_candle_lit.png" +hash = "9867eef1c289cfdcf33660a56183a0ea7830c4d56d2b86839198856aa1d44f23" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/light_gray_candle.png" +hash = "bb4db8f58ac5f2ca22b8ccde632cf1b44a6184bae44fdab237b176055b5e3bd1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/light_gray_candle_lit.png" +hash = "84c5e96fdc33dbae9a49938a79a0cf6b6d2c96a7489f7245d95befa31c1a6238" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/lightning_rod.png" +hash = "ec4b38f3941f59f1b0479b9f1d7ae4bf29a8667eb069540d93fb0becffefc1b8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/lightning_rod_on.png" +hash = "19e93910b9317720ab5e842a6895c6c34c1aa7b0291617fa1f61b9792877e921" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/lime_candle.png" +hash = "9d406ee4895c740e1800030400344ec62a8caa2aaa29eeabf1bbfaaad93d18bd" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/lime_candle_lit.png" +hash = "ec1050db6fc205723f14fbec3c29fa9cebfc8a3567ae94fb0dca84a49aabbf5d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/magenta_candle.png" +hash = "0a9cb234983c50eab9d5bd1403b7024d60801cd4c50802f4ebab90471d391b51" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/magenta_candle_lit.png" +hash = "8f5e83bbd19e56a6bf23ec16429863827e032aab83227467020d259d8c0905bf" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/mycelium_side.png" +hash = "a2c3a9ce1673ba4e39d5f96d593409d279f0f73fceaa74b7ae171c1315a0ace3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/netherite_block.png" +hash = "372d5d94d16f4af0064dd9b7e040d6c743e0ff4a4b9dbe421a3cab099ffe4a13" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/orange_candle.png" +hash = "6e6c7b45423129c38fe7f59577468431a39af37d742cfb5f08b4936130b86ed4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/orange_candle_lit.png" +hash = "317ead5d98aa080517170420f361483eb0ef2309ca57e4fc4f73cd89db84151b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/oxidized_chiseled_copper.png" +hash = "6daa635e2c21dda2e7c804fd08843adcfc4bb93dc5fb15f6547d03d57f45eb10" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/oxidized_copper.png" +hash = "7105338911234ad01b707eed07b15faa6343853db025ffaa2e9182f848c8ac2e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/oxidized_copper_bulb.png.disabled" +hash = "b7c1084054d85f4d65a4f02640b072bf24f68d9313e51f5074b3d0cfe4fb7eed" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/oxidized_copper_bulb_lit.png.disabled" +hash = "682a092e4451677a36001827ce2cd38101cd90b8790314b0e358fce446cecdc8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/oxidized_copper_bulb_lit_powered.png.disabled" +hash = "3ff4f6d11d155aae8db5796997021aa0e30edb5d64dbff16917968a6848ea158" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/oxidized_copper_bulb_powered.png.disabled" +hash = "0e399634853d6151b0addf36eb5177b0673bb8cb78c047833be6f7b8d962f6da" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/oxidized_copper_door_bottom.png.disabled" +hash = "1e261ed670ba49cc962db4eea61e9836e2b4deb2e651e1e3accf4a1ffd8b3039" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/oxidized_copper_door_top.png.disabled" +hash = "f8e203d7afa4de7bb42d507eeecbb5fd5ef0d29caa7e581a8f4f65748a199ce7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/oxidized_copper_grate.png.disabled" +hash = "be3e6266b8dbc80e928cf94d14e857dc51b474573aa9e077b9d7409a1dc45f3a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/oxidized_copper_trapdoor.png.disabled" +hash = "14227dee91f5f1dd238f46b16b6bb8c7eae1b7404686828a7076bbc3ec4af3e8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/oxidized_cut_copper.png" +hash = "89d151fb9a0937b551ebb347d91fe4fa77473419efb91c6cfd20379541e79c0a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/pink_candle.png" +hash = "5096b99c864c734e76e60152da46238b04ac2901e33ff9936928ccba28d6cf32" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/pink_candle_lit.png" +hash = "e6ce266760ace7596f6f30ac584552fc8e84349591bd3a08eb63ab89c1bfb9b3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/podzol_side.png" +hash = "9d055919c0111e2298ee6024f04e0d29fb3915b3ea98d476b5d27c24a57dadbf" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/polished_andesite_slab.png" +hash = "c363f8131e43f88ec6d33ab748424d57325a7dcd3216cbc9f63845a7aa593c69" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/polished_blackstone_slab.png" +hash = "ab32387588573cbf2ded6b68ae4c09caa26c890f1af87a58ab13e05cce94b142" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/polished_deepslate_slab.png" +hash = "1b7cc63ef5a84ddc4b7166d09a99cf7713818475df9865c7eff44dbf5c5f3e6b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/polished_diorite.png" +hash = "22bd0547bfde320504eb4e7d13436e2721557a8c93c691e5d08b65f14fa86d21" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/polished_diorite_slab.png" +hash = "5d14e533e85912537df85430846e814e9fc738aee6fc5f1528991a7727e43e63" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/polished_granite.png" +hash = "7e1f56c0fdbc1c7fe3016f5a375bd374924480c3b472f62433945f308d0b257a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/polished_granite_slab.png" +hash = "febcd65932635b6a13ac98059f8f2d550bf63e70d0d4da8762e7da1887673486" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/purple_candle.png" +hash = "e35c23a5786633fd9b746f0b72ab0df1e8515b22ebd39e78f434bedda9ed90ff" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/purple_candle_lit.png" +hash = "946875f7f440ab6ac6b0654f2b6406f35bdf6e7f6534762b90b139cbf42438aa" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/quartz_block_slab.png" +hash = "17aa2357c261e7d6445399b62e0282b72366130432a5d36bddcced05209e2ba8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/red_candle.png" +hash = "f3ad20bacbb9671bfc7ffc0cb4bb625e96f7bde65ee1cc556514b1c4c824f67a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/red_candle_lit.png" +hash = "fe4647f9bf4d5c6dc421db0c86ea19caaee9a766b6f86ebc2d95643fc6f3ef5a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/red_mushroom.png" +hash = "24243b9bc1ed5869084d2fe6c0726a7853908aee6341e163ad4b4800275ea94b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/red_sandstone_slab.png" +hash = "72f22e7d56214fa827ac58fb635670bf9187517db8d7038638e049c4b7c32fdc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/redstone_block.png" +hash = "9c5d7ae8a67427b24ebe6b22a174b628719896ecdd1294115741b45de0d2b443" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/redstone_torch.png" +hash = "b99c48b58d7732864b7eb88d02eec178ccd8bd63ca7cc3bce86d0a76c0957d24" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/redstone_torch_off.png" +hash = "f5cacd61975c18af3de4beca01d4efe5cf31b584f06e5d1bf64ef9dfeb245418" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/redstone_torch_outline.png" +hash = "6a5b4dea98abc01c2442efafc5c6fc87f4c47476d68a71ed6870749f77c2342b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/repeater_locked.png" +hash = "550d77273ab147a7b5905c29ff8993f5d0e25e41fab4bd4d17c24e44c53a947e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/sandstone_slab.png" +hash = "d4f9b93e8a0a1456bf794e06daeb0c0350850f72956db9915f80e72c4cc6d5cb" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/smooth_stone.png" +hash = "a38cd2a32ee98e62f35666427f98d481bbb13b0b75c7ae01d1ee56963665c633" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/smooth_stone_slab_side.png" +hash = "2cd12db4f43850b9ed65d1e3073aa3176d94967848684c865c152f5ab93fc40e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/soul_fire_0.png" +hash = "ddaeaab98095897fe6ccfd4e59fc79fb108f848bdd674f9eb96d4cfc9ee1c65f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/soul_fire_0.png.mcmeta" +hash = "5f3e552df12ee396d7ec7d93b9cf56c3c9db521d95514d7580ee9b1367cc93dc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/soul_fire_1.png" +hash = "d543833e52f77d7950e52b389732cac94ef22aab78d4f735b0112a9f6d61dcf1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/soul_fire_1.png.mcmeta" +hash = "4a5dad045d1c6172b28dca8eda5ee036ecf966137cda30c64770bf48689c92d4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/soul_lantern.png" +hash = "363c93f6db94b2347fdb740c22ba490cff43d4254576750c7613621b0cd4af9b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/soul_lantern.png.mcmeta" +hash = "ab43ea296a95583eedccfdf88654a383555c004f4e996fdb5bedba54250b4886" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/soul_torch.png" +hash = "4607ac864abe3ef65841c81722746c8fdfaedfef9f8b6abf5d2c6883112c0ce8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/spawner.png" +hash = "0928609a0970cd8cd1f3bb3a983e3a7e4ffb642541d2cae55e5971602ac1683c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/spawner.png.mcmeta" +hash = "cff8ab338f577ae141f24869f747314311ff470771bfd26a38b78cd790957fb2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/spruce_log.png" +hash = "07512c134ee4e270fa503b92597b283204254760b1024ea862fdc9498e019601" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/stone_pressure_plate.png" +hash = "3fc47ad5bd53e45719d00358c68eba438b27d824383baf8d21cd9e152861ca96" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/stonecutter_top.png" +hash = "1cbb457f9a949ca154d21ba7e865335a1b5fd0324d8548200a50eaa9ac6a73e1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/stripped_cherry_log_top.png.disabled" +hash = "f3d926e01ca134aaf1fa082364588f1fb42764106bd39066e6baeb4f222122b4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/sugar_cane.png" +hash = "cf493355a1f315bc2367162dd60b3be83f4850bc10c3eef0cbf173bba09bead8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/tinted_glass.png" +hash = "5bc11519d3b48b4cf6452de29760b0421e0e67e44334927bb0fded43efe87948" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/tnt_bottom.png" +hash = "ed4c1b13728f2ee7ae7053d7bdb0b9dabf97711acabd88c48c1451cf2fb338f9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/tnt_side.png" +hash = "2866a6d137595794188bb686f96218607d7a7acdc49ce1b078755b9a3f9f7388" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/tnt_top.png" +hash = "0b29404260485988eebdc9b6d293d57280996a3901e98fc83f4d9ad161562440" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/torch.png" +hash = "cdff978d0f40121335b930b70ab9979336422da3e5c46341d259e795543629ec" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/torch_no_outline.png" +hash = "38be5a9fb712cb81d81245d38f669df298b6e8490018f0617986489249ce0494" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/tripwire_hook_wip.png" +hash = "1ce7d67bf0bfb889b219ee96c9ccc3f67db93481051b8d5b65ecadbd5ae1b588" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/tripwire_wip.png" +hash = "e723a7fea897b89960fac9e1e7eba11154127c8749248bd9c68279a947674fab" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/warped_door_bottom.png" +hash = "6607f4f13fcac0ea34c9c7ff184540b40a79f07382dd50430b1cbc403859fc5b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/warped_door_top.png" +hash = "9cc9b78db56a45ebbff823623572fca2048661e7247dfec3809d6b66470a738f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/warped_planks.png" +hash = "f6135edd444c6a922605252717fffff59f25844709da4412f31642c2317d38fa" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/warped_trapdoor.png" +hash = "a1aea114864e9450219c54e97f6670cd1100cb19587a31df5e0761e6fabf995c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/weathered_chiseled_copper.png" +hash = "7ccf90fde3aa6dbd7189bc1c5681deb8b3c04e910eb14f44622b8921e5e7362f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/weathered_copper.png" +hash = "1c143c93030173259f2840c704cd3abbfb726d55f117670b0e9899ec7c51f196" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/weathered_copper_bulb.png.disabled" +hash = "135846c8802bde705d843e4d8e043ef715eeed9ec819c41ab94ab8f872e1bbe2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/weathered_copper_bulb_lit.png.disabled" +hash = "4c0beb9a174a061037be4b6ac356c97a23e8455330147511d086a3e85e6fc2bc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/weathered_copper_bulb_lit_powered.png.disabled" +hash = "044cb7b1849b95e25683d8c22753515a034e5184e016288ac0a13f69a7633ead" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/weathered_copper_bulb_powered.png.disabled" +hash = "d7204adc4de962452dd75edc3301b350e526a7c8d50f380e4aa5b7e15e2b6fa4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/weathered_copper_door_bottom.png.disabled" +hash = "b7eec1e38ab7f2effb25f1b976e7348a55f05b1a609b20774686e2d67e435788" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/weathered_copper_door_top.png.disabled" +hash = "16c5c062724d87c9881f5293f5e04053471d14678c64594a79fb7a90feba8290" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/weathered_copper_grate.png.disabled" +hash = "93d862b0cd152e86b5c1ab43b404f5e879ad12bd0fc3841344523d16af9b9da0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/weathered_copper_trapdoor.png.disabled" +hash = "ff1325233535faa77c5f44f0872389bede8471c67aeddd2127287479b86fb8f7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/weathered_cut_copper.png" +hash = "cce3d02a2754b3ac9493c3abd8fec999508477ed92c3c95dd80cd89286bbb63b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/white_candle.png" +hash = "dba7089c4e71bc4525b1aa5a35a07b739141b50a39aa08d1535952764ff372cb" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/white_candle_lit.png" +hash = "4fd56b16a338290061d9cc24edc6ca95b7666ba20e54f1ff7b8fde321ac79eed" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/yellow_candle.png" +hash = "f248e39bc327505bb95b57d5c0dc5305309b83b152d29c72c57726c9f0948c7a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/block/yellow_candle_lit.png" +hash = "6a93b0fffedb61731a45631628b1d1860ec74cd072819b260a0c2aec0585ea83" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/boat/cherry.png.disabled" +hash = "e82cbbe694296cb2acd5f7652edcd05da09ba728a2120b43cf0546db989fbf94" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/chest_boat/cherry.png.disabled" +hash = "2dbaf8640e4873f835d0161c11d69c7672524bf9b4199c179985036119f0c6b4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/decorated_pot_WIP/decorated_pot_base.png" +hash = "e5bcaccc034525a4087a4a1616b6bf372a0b2e87d86ae50c93ec6477a14bc40a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/decorated_pot_WIP/decorated_pot_side.png" +hash = "c9598119a42689702c4d9d84abc82c251b999af6949c1991776a66dce5208451" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/enderman/enderman.png" +hash = "30b892997704fd0143cfd8538f196852a946ad1e9e2fec228e121a1c43eb4b54" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/experience_orb.png" +hash = "2a4e77c22f9874b18e649186e4ca05c041fff66603f8c029bc56f13c511247c2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/fox/fox.png" +hash = "6f792c8351c49c6a1cb6972cfc0125db9f01148d11c3a9ac488b729fed4a2a81" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/fox/fox_sleep.png" +hash = "7929d32f7c80580d59e3941cddfc2bcb3582fb9e8a208a96c5e1ebdc8d82e1c2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/illager/pillager.png" +hash = "aa0d5fcebbc939a4d6cfc0c5193190586f849172873f47b7cd7f07a8621d657b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/illager/ravager.png" +hash = "45126f4416aba934b6eb4c046f76909bf1c0d1653ec0793527401e055f0e5bf0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/projectiles/spectral_arrow.png" +hash = "641d9cc54338eb3e1c5101018eb574aee984269f7bb631fbe7a2a62161c62be8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/signs/acacia.png" +hash = "b9bb3833009893108cb4e6f5b9a8e990d35d7058bd2b944c9060bddda44a298f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/signs/birch.png" +hash = "f28837e1d5cb096c12ebb331e707f0961c7205c065e39a41aa85421aa2c0dee8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/signs/cherry.png" +hash = "43298317cf261a484f3fbdccc30025047e6db8b474c6358535a45135d0cd307e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/signs/dark_oak.png" +hash = "37455fb19fe5298455d94d60ba65267443c5951eed862c2961bd128c2dd2b415" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/signs/jungle.png" +hash = "a73adb1088bed5f54b750341f6237b6828399eaf4e52ac046b6f73488190a511" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/signs/oak.png" +hash = "1d9f90c7819e2da99a3d437cfe1c1057192b72961746facb7d30ddf26950c37a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/signs/spruce.png" +hash = "4580b94653856224d3bafeadf4fcfa7252bad10af08307f5fbba1e51ed2e0256" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/skeleton/skeleton.png" +hash = "ca90acb2bc8d3be5330f42adf0de0eaf83b062defc9919ee92a3210a0d6d06e1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/skeleton/stray.png" +hash = "49c457e4625f8dc0dff959d43bb67c3232e7eb3ebfc03b11bdbe9e1b3e7daa03" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/skeleton/wither_skeleton.png" +hash = "a675b938d61f286a87c7ba0fddb0a7a8333f5bb3febc54fef283fbec5e813e03" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/zombie/husk.png" +hash = "16a65178a47afdb9481b9125fe0f2bb57a13e3717dc0e9806a6b3b17b8ae573e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/entity/zombie_villager/zombie_villager.png" +hash = "4a008aa1d148b14d1aaf83d5dcd448e91a935bf5d70a0f65531442cf47e1543b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/environment/moon_phases.png" +hash = "aa50c1dd6cc81e61d6348d740a7720233dc381152ddd07644000a2c78ef01acf" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/gui/icons.png.disabled" +hash = "8137499a3ff494fe5462df8bb6e13bff5caace227602bc8c9766e53f8ea26c00" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/acacia_hanging_sign.png" +hash = "282cbef8a7c89fd2d7e375f93e32f5ec62e94e3649c10a86f8badc85c525b429" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/acacia_sign.png" +hash = "807717386e5fed9de815df5812c34c290fd66ba88241f579f403be5245f9ae0b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/apple.png" +hash = "c1d6e71eb13c1d0d5607b8ee3cb519d597812161bb6dff9e2bb5d7ec3a5a5f4a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/axolotl_bucket.png.disabled" +hash = "07e9910be2a4e88c1e6a3b7b70a279625b0728405324fc82e49670ffe8e17a80" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/bamboo.png" +hash = "cf14bd7e2116f47ee2563bd81d7659cbe0a990cfe0ccd4ec1715cbc513a5a53f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/bamboo_hanging_sign.png" +hash = "1ad3435caee59ea25e31371cfa5f9d540550d584c366d3b9170719432cf4f53f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/bamboo_sign.png" +hash = "9f70b149c8737e1ea343a51a6122e95da6d426562a72ce1f4e66c563450d8f7c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/birch_hanging_sign.png" +hash = "5ededef073bcf62c36c07d59e8098fbe36c66d8973c6f662681e3a2c7d09c4de" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/birch_sign.png" +hash = "cf45a07b17e0469e0e98582c1984ba9b4d808f153a18a8c092ba4f2601db28d9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/black_candle.png" +hash = "7ac1cc8abc8c04591a1d6cb479948bca3523dd18159eec2a29029dfee80f905a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/blue_candle.png" +hash = "e09791052fec2afbd1a8afe1795af646a9f9442f5708796a26041bcc866af052" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/bow.png.disabled" +hash = "5f3a94ce18a4fc4cf17847e75ed8b2abcf8b2643401259c4748636cbcb884803" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/bow_pulling_0.png.disabled" +hash = "72fb296e1c1b1b7293cafa4fc340577f5383448e3aeeb089414072fe903d6f9f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/bow_pulling_1.png.disabled" +hash = "6d80cb85c73efa04f39d683061f57ccb0f6dd5401dd9a0c4bcbc8e9b6a76e3fa" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/bow_pulling_2.png.disabled" +hash = "252371a6dd988ecc5f0ce3c977a427bb3287112b4a90b9ae4af5a32f985b7d45" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/bowl.png" +hash = "55d04ae8e10577bf957cea647f2a0f76f8e2f49d4a8d2e1fb80a4be829638f2a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/brown_candle.png" +hash = "3fbd34e6eb766e5f65c1e15a6b3cb28f58ded8c623ef365607ef33bd0474afb5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/brush.png" +hash = "74c4f0a730fb92d24222f89d4869229b65ec2e7c166ee130a666789cdbe48617" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/bucket.png.disabled" +hash = "2dde0fe008757040574629b2ceaebf0b8e538753518442a4d7c3dbf732031b9c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/candle.png" +hash = "1e0e97dd0f4ce5942ae11e526565a79a068da4801d1f4f20d1fa3a7fe7522b63" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/carrot_on_a_stick.png" +hash = "602560f51fa3971380cc032c35e7067bfa8c404ede7771bcc0239f30ed333acd" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/chain.png" +hash = "fd6a9f034f8257a05deae15bace9e8bcd7fff0e118a23c390599f7a67d03334e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/chainmail_boots.png" +hash = "b0c90dad083a196fc29e353c479808d7f9aecd8d5136a329f15e0d36b719acb2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/chainmail_chestplate.png" +hash = "7a7f6c46fac87af3782de63b9d4e6943755ce2f7e0d10bdc75418460945e2e54" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/chainmail_helmet.png" +hash = "b79af2c1ca1173ce61738f8f4d1a79f55fa396f62ae86de05229bdb16d8fcb80" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/chainmail_leggings.png" +hash = "803fdb189e18a69d274f08caefbf6a5ac2bc3f848e296e76d1bf0ff84900da9f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/cherry_boat.png" +hash = "95ace960a231dafd99ec7c067f66aa71b08a035f040584ec028f879b36ad96c7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/cherry_chest_boat.png" +hash = "631fd73581417dce051650ef50f41245d2421cc8f73dbf1313a268faf9a828ae" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/cherry_door.png" +hash = "9ca93ca34b9565843c851935c6a1b1e2b4c72f150ca2e84bbc7e3f5975188850" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/cherry_hanging_sign.png" +hash = "85691eb23bcaadcc4814f9b287f338ae0125ab20b0e343d90b8041011297f78a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/cherry_sign.png" +hash = "bac30b2300dd84bb005005f5408604bf35618552f68a9254356d8a93f5d33284" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/cod_bucket.png.disabled" +hash = "d6bab3efb9bc991c76ce17a5c11110b6a2cae0db50d7c4215a335f1fc519ed7d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/copper_axe.png.disabled" +hash = "b114517805d10e91039dbac4dba54188ed4a3d158f946a40dc3e4d0b1a9b880e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/copper_boots.png" +hash = "62bca741e77ca25f161cd5147cead1d516a8f08c4e9d3b6b5f0902dc69a4bc8b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/copper_chestplate.png" +hash = "7d4b63b95462c7bfb8b98498b6f63fae295b3c4764fd8d84a355cc32331f3c64" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/copper_door.png" +hash = "b8e4d5509eab81d1bb85de38a6a953c641024427e83b17644735b8608d6a3a3a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/copper_helmet.png" +hash = "991cded5f4c561529f52026e98bbc0c0a3d78fe93b22a9b63d7c5fdac71c7875" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/copper_hoe.png.disabled" +hash = "e1efd3545b2b58e1054d774c83919dc04e1c18fa48d3361019b495ff9a7b74c1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/copper_ingot.png" +hash = "db6d019b0f4fcdf320ddb7c3f1e12c8337d1501058ad1886034ee0610ce883ec" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/copper_leggings.png" +hash = "f96f39686863ee2ef6d777ccc3803f45f2c09c07ef8f328113af23420a9d0b18" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/copper_pickaxe.png.disabled" +hash = "e136343972cbe2e02ecc07c80880d2fd8b9153eeb88294d5a1ef7cbc1dd914f1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/copper_shovel.png.disabled" +hash = "fe40ce6a307aa962b0e277e6a4677177d989093611611afac1b589051ef33a62" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/copper_sword.png.disabled" +hash = "5bc945aae0b7887d42ebb00aad67aeff5be49a5097966744c439cfa9ead86847" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/crimson_hanging_sign.png" +hash = "9bf81636e7994305a6edf07c2b0274a70eecb3c156ba979fde06cf9d0981c132" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/crimson_sign.png" +hash = "71a52db427e6a8f2188b7722cdc78054c6b63ca9c5a8238efb1503ded1d508c6" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/crossbow_arrow.png.disabled" +hash = "a64ce6e288bfdb72277c879fdfbdd1d7a43e394cdf91966bcca1a6ea22b0c784" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/crossbow_firework.png.disabled" +hash = "998b7c47f4ec5c103c96a93152d15e12885dc3edc08f30ff1f52e31f91a5f6df" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/crossbow_pulling_0.png.disabled" +hash = "a60831a25c6cfa1fcea4505657ba6b2e84fc1d12519c8545a8e184f047432f4a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/crossbow_pulling_1.png.disabled" +hash = "04d9b0ecf824d3bf4c99598e05b0aac8c667d1b6ab85626e3a40b7b9f6e4ae73" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/crossbow_pulling_2.png.disabled" +hash = "cbde1d037f4aa0e5687fe900d3b0396d6961d25559e0e819878408d8fe88ff46" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/crossbow_standby.png.disabled" +hash = "c2919a4e90cbf9d5223fe13e70d38ba57279062ed0d84e78ebc9c58147a9df94" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/cyan_candle.png" +hash = "7f2e2cb25550e7ca5453f2f278050f91082479d1432b033eff6a8fa723e624cf" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/dark_oak_hanging_sign.png" +hash = "a1586222e308f1fc5b77b644fca82abcfa8b7bf11ff952524354de1ae16ec27b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/dark_oak_sign.png" +hash = "17ef3e433cc62005abc6b6fc9bcc5c9459e4fca8957d32333f828d6299eb222f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/diamond.png" +hash = "ac0cef9e049ad3e7ebc997ad0a87cfa8cdac46b622736b10ea220cc049e30d2a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/diamond_axe.png.disabled" +hash = "f105ffd1d5e30d60cc0016f3f1ca8c71392d22e79c62410978b277972482ba93" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/diamond_boots.png" +hash = "ee3659087bfbf6a3b8fa632587b6205471de486a2f516560bd0ef24e9aa1de3b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/diamond_chestplate.png" +hash = "ada09f53f65595b74e16e433a2b12f122fd43d67a4a577690a726b0fffb28510" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/diamond_helmet.png" +hash = "e12ade337284f3b865ed8dd0b4b930afe6215fbd0fc1a81f7ff30fa9b122db8b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/diamond_hoe.png.disabled" +hash = "19c8e525a87bb11cb1277b7a02081837c2d1c147e911584a941a7a8e40476c75" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/diamond_leggings.png" +hash = "77a8099c5da6839bc1af98b46ddb0de46f7499c50c897b50f24c826c0081775e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/diamond_pickaxe.png.disabled" +hash = "762998c169c4896b1e9f16426ad40b8c0be1f784358bf9301bfa771d7d1f6efd" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/diamond_shovel.png.disabled" +hash = "5c9e2be7bc8fe26c79673193840dfa18f1199df45a93ee628150838ea78413ca" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/diamond_sword.png.disabled" +hash = "b123bea366c597afa9b1566984616957c23eeb2b068a5ae35f5cd7ac0d1856af" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/disc_fragment_5.png" +hash = "6b6be38a559372140827441731bc5d8e595de64f32bbd091eb2fbc93ea9786e7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/egg.png" +hash = "f4a99bd29cfcd009f149079aae952c1e40501e7f939753fbb819788b6d1eed34" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/exposed_copper_door.png" +hash = "1bc1908572332fa8f029951c50d56defe9b63c214554d885ff326226236b0609" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/feather.png" +hash = "8e7b25307576d15492dd337f0307ea36627c6bc0e6647be998ba67efadbb9206" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/fishing_rod.png" +hash = "a71548c0101ce79590c15cc27e6fe158e7af7d3af8eba015d00699c971e908c1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/fishing_rod_cast.png" +hash = "84134fa7b230a5ef1790fa44cc27774a958152e9c425510b5aca23494a7050ac" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/flint_and_steel.png.disabled" +hash = "913f9ebb1034dd27f362c582ffe02d38d4962869eff42bec5f8cf3ef9112113a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/flower_pot.png" +hash = "3b0a8ccf160be6f27c6356f1e03d49e89e51c04f25dc005a1f33098fae563f7c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/glistering_melon_slice.png" +hash = "6b5400ffc0b4aef574379a32d132f8a266c2201c9917f325785fbcf2735874ac" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/glow_item_frame.png" +hash = "c368e0162ee0e8c82a8827c504be5b0f9316624ca151e6160a4cd399ba8e1c47" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/gold_ingot.png.disabled" +hash = "62d23bcafa2b6bda6b466eb08ec604fe383c1629f39da080e39acc420f1aee11" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/gold_nugget.png.disabled" +hash = "75819df42c4a401a35b61fc9f66c08937442bfa8d0293272903bd2237dacd334" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/golden_apple.png" +hash = "600765475513f388030397ba061a5447192e73a81d184efb3e26c2501d137fc9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/golden_axe.png.disabled" +hash = "a71c677776b176b8ddb05880ec040c2b12539d7048cb4b4a7c119265d8583b40" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/golden_boots.png" +hash = "7e1c9d06d776dd8878b64139e2389dc0f1d99c593594e993efea94d4566d7c43" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/golden_carrot.png" +hash = "f42a5c368686ed6deda6e98dd8c26050490f9ec6393ca93b7bbc7f99b544ccdc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/golden_chestplate.png" +hash = "d1406bf62b380055a67e52f17ede214b706db3945871a22495a9f145d484c656" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/golden_helmet.png" +hash = "689ee0aff3d685897ae319532da728e26b81b1419a1cdc509034ee6e57d9dd73" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/golden_hoe.png.disabled" +hash = "d8cd741ac33c1027040dbdd7cfa8240a604dd9da0eb7bdd27ec286f04c3d5352" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/golden_leggings.png" +hash = "0e444b043f116367234861e3f2944f03f10366ece1b3881e9ace2c33ec2c8e3f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/golden_pickaxe.png.disabled" +hash = "f58e1575fdefdf7c54745464355ca238c4bdee5dbc6c85a73b8333284b512fd6" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/golden_shovel.png.disabled" +hash = "03a53356cf303f4af376d35b5df3caaaf8cc7772e521972a2dc3b683949213c0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/golden_sword.png.disabled" +hash = "59c40dd01b996d76b79c874da1dd8a012602325deec1a515c07735382a36803f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/gray_candle.png" +hash = "5e54dfd5723433c759ccd6db84016070c8433c9e37d1dbc7974f26d0a073a911" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/green_candle.png" +hash = "73160ea0ea7370b58698ba7080498129ca48c51660c0c33685e37d943fc8be8f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/iron_axe.png.disabled" +hash = "3dd46b58be836d7595a64117591d0d667992bf22c3f71d44b60af1d20ccc3cc9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/iron_boots.png" +hash = "ab12353a0f4850ec345ebc484c3d493c6536baa8cc25d6319981ae4665a46173" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/iron_chestplate.png" +hash = "20db2eac47feebc4935d004c52b93f26723a4bc89e8ddd95c5d11a1624f50824" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/iron_helmet.png" +hash = "e183f1a218812c17be809155679d8406cc6349e20690cecd1c39afc5aeb120d1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/iron_hoe.png.disabled" +hash = "271ceba6c983da887d2f68035c3221ee5e4556136544112dfa34af4a3b084eb3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/iron_ingot.png.disabled" +hash = "2635fc8892030f0ab037e967dd7ddf93a216a3d224132d3048a52c2531317875" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/iron_leggings.png" +hash = "bee0bfcaebaac2a527d08447510b1ed1a776e8865444fb690b3ecaa844323a79" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/iron_nugget.png.disabled" +hash = "ca5df7ac08469192a1530c2950e23ea91c240f53a12634b7bed9f566758beec7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/iron_pickaxe.png.disabled" +hash = "4cec9abf7b7174799a48210e98044786a52c9b2eedd66cab7542b27ab931495a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/iron_shovel.png.disabled" +hash = "a81f55b03d04df50968371a72d8ea34061ecb184655de97a78eef681434c862d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/iron_sword.png.disabled" +hash = "c1f06fbeaf1d5472d1fc2ccfd6b62246aad4e639994487327d8633a7ed0434d9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/item_frame.png" +hash = "cc43771f39e78b6b117b106de160bf6893ba584aabef255bc875c07c50f6786d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/jungle_hanging_sign.png" +hash = "b2f45477b6b50c38ae7626c0a0751999f4138c3359567e1203bfd2aa69c1e2a7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/jungle_sign.png" +hash = "99128ee928c990c86e7f79482cdd3b8fae8a2e62eb1152d878ea86ec46549b97" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/lava_bucket.png.disabled" +hash = "9f9b18fd520f43b750d5bb6be608512ee8c6a720a0edd5215758b21c17829922" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/leather.png" +hash = "6b96d95808fcfa79eff82b5d1d8b59ee74df3a69cd2071e28f36f8fd3557823b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/light_blue_candle.png" +hash = "ee524ce3992bc9004e90e8208d86b7b27bdacf61e62c4ce0806265b8e5cf08f6" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/light_gray_candle.png" +hash = "9e0782b8f7e79a0939028071757542ecb42fa15efcd4582a32a3a3f23cc1bf56" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/lightning_rod.png" +hash = "5780fe1a7dadb2d42058347043977eae700fbcbd1502f0c44d1a8d7fccf80daa" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/lime_candle.png" +hash = "a564fb4e4325dfcbf94ecbb61800ca019d5d8ba332fb43e36b8f9fef7824a434" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/magenta_candle.png" +hash = "df93a0a2e4d77914cd731d194a7d6aba8f1d1dd101497e67762b4d9a03425b52" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/mangrove_hanging_sign.png" +hash = "7e104bd5cf7fcd34638f5ae7784a110d6b9edfb166b5549f13463f6d8922030e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/mangrove_sign.png" +hash = "0f20e2f070110e21032070981b46502520c3148df4fe0110c4f882cf3bc69a85" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/milk_bucket.png.disabled" +hash = "e699c430e322a70c50e29395881a6101d596aa9e46b980522cf6880446837e26" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/mushroom_stew.png" +hash = "f3a09e8641efaa88ee50603664ef888aea12a57c1fd158eb0fae30da6eb0fd0b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_11.png" +hash = "aa9255c0a3625333ba6be630fc59923a02949a91baa6ea5917b8ebc4ceed1cda" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_13.png" +hash = "ff9a7c89f7ac04efd7fd6f7fdfb8b461bed10acd8a2bf159cdea8d02cc218681" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_5.png" +hash = "5bfdbc21b8ba27753502ff588cb3cf41fbe54b37432993a5368d22f1a2a0835a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_blocks.png" +hash = "d9ae07aa631c1c5408228cef808dace4a47b3e6d397400ba7361f4d1cff31327" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_cat.png" +hash = "bd1134e43a640f2971d6011ef2ae1e6bd94190379acf91d4ab388c6d07a09c50" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_chirp.png" +hash = "c3222feaf13ec47e42f96702fbcb7ab945ba0e96c31b50b6e27905410237cdcc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_creator.png" +hash = "7149c4ccbb8cd7084683831080688050f4f462df2710a0975eb03e5aea7c2ee4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_creator_music_box.png" +hash = "862efcd76b580e4f0e09cf5387c0a48023761fef030dfcb1a406db13420d93ce" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_far.png" +hash = "31f3dd794467befb271c749f57ae62bd1bfff84b168e069472dfeb2c5176b013" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_mall.png" +hash = "0afdbe67929669722465814489a8d7dd2c65470a8dbba8d4766aee3f3590d2a7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_mellohi.png" +hash = "c0d9bb52405e163d82a2bac23fbd37fb497a3d730f1b4b157f894bcf37d05ba8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_otherside.png" +hash = "bf14131dc9a3ae1353664be451956f5491f5a81fa3dc50f4cde58e50bcea76a2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_pigstep.png" +hash = "acd1aa80575f753cebc0606f8918ebd372e76658de32536f308465977f787db4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_precipice.png" +hash = "90dd2a29c4f0b9356b0cce1f3c9deadfd4784ca72223437be95759d01d2c83fe" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_relic.png" +hash = "94a5e604148fed66d2b407fe9cc9476c4023324b789796107f87dc35388fcd92" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_stal.png" +hash = "1f0a34ecf01faa7fcf26339609fc4d76756d49b183b1c0fc5daf9c4102cc3f11" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_strad.png" +hash = "694319917112803b4a6e27e938c7538fa85d7bac09fe1f5b819c4ab3b1ad2838" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_wait.png" +hash = "f38d7338d33954aa49bedefd66ff1f6f16ac84e07c40bcf90f346f4eda1a8882" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/music_disc_ward.png" +hash = "e3f17b431ab7313d90e4cc9ed34c9d18c38f51c0c4a64cfad46ee3b2bae23593" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/netherite_axe.png.disabled" +hash = "6e10b9c3555f162d4bc4d5e85b052236db0ce12cfb4252b18f66ce3b4289d377" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/netherite_boots.png" +hash = "82107205dde0e8a5e1b69087c771e835391402b8cf365104f03185506e15522e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/netherite_chestplate.png" +hash = "19baeb31cbbdcc1215cc399867fafa6acf43dd7d39c124b422e6e283b9b3b0bb" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/netherite_helmet.png" +hash = "33b423eaed3083d42726dde4162253604fbd72c08cb8c41cb7286e22c5f44d5f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/netherite_hoe.png.disabled" +hash = "f45de948fa28515b22c8f3d251b80484ad4cb7c0e6fdfb2979f9c52013c34908" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/netherite_ingot.png" +hash = "f8ab564467e2c8a6103ec6dbcfaab7331daf3342db91baa0b768f964ef771848" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/netherite_leggings.png" +hash = "c0dcbad926fde92fa6337a794d5e37a2598d520a6f25a5dbbf1ddf748e004411" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/netherite_pickaxe.png.disabled" +hash = "423c0688a681cb9b9949879cd74e382f986daf2cf2479153a3b0c611ff4ff57e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/netherite_shovel.png.disabled" +hash = "34051da608d79e87d2c12e4da6a6d93ec9e6285da89c0dfdb9741e553fc2a5e5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/netherite_sword.png.disabled" +hash = "ddf12bbd55a047fccf584e0b75c41d44dfa58d1b584c32684f494195252f5700" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/oak_hanging_sign.png" +hash = "d0a079d2e09837633f663d702a9602792399c53b64977682ca0778ce03c37ca0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/oak_sign.png" +hash = "28e9e9a64d1568fe8a53ce142d5da0ba844ceeb87a2d3f23f998d5dc5e604bdd" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/orange_candle.png" +hash = "c13ad179bf74bff65564497e2b7ddfdf9746ec122b3e1e8fa6ad04d458012c76" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/oxidized_copper_door.png" +hash = "caf0e38d3e11eeff64ec1a7dd63879ce8238bc1dab314a0d2da609268daedf46" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/pink_candle.png" +hash = "858c56e7d8cf4690324cd0d8f7720170beb5f42697a92906b571663c64350507" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/powder_snow_bucket.png.disabled" +hash = "4b4738f6b52969f637a3d0a5253ee210aef54a2e46b2c5523edce87b06aaefd2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/pufferfish_bucket.png.disabled" +hash = "dc4001d2b13a101dc8130e479905bef09f1354e8adb478418616fcf1dac17d51" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/purple_candle.png" +hash = "4317e5e41253ed9273340b609e768c68268bddf10b50601d96e7902fced5e688" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/red_candle.png" +hash = "60c7061ae8fc8e103f0171af39b55920ecc40bf21bb0cb6aed1bc116c2ca1426" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/salmon_bucket.png.disabled" +hash = "47d14948cd1faa00115b281fa7d9f6a896b330f71769937ba2a6c90352e7b72c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/shears.png" +hash = "6bbc34333127b6eb3e32783b3d85ab796f339a22e09e4d19d97b3bcd69cbe148" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/soul_lantern.png" +hash = "0135283a9c4cd69e846a26526275fb1437940d05bf372bf4dc46fb7efa28662d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/spruce_hanging_sign.png" +hash = "180283e05fb7a1ba87f4d3f80ca69d5dd7e03e98b82d9764703369ea38e9406e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/spruce_sign.png" +hash = "bc8b839232ad24b1bc23439b14974fa141d68d968fa617725b4de7691c1f33ab" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/stick.png.disabled" +hash = "845c9550095cbaaa239ca7ba1874a1c7056291ff7836989167f86226ca3c3bc0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/stone_axe.png.disabled" +hash = "1b46edffe70d5cb0ab854a3b370362db081a572aaffe74d103dc7a6407d1d011" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/stone_hoe.png.disabled" +hash = "c08597387bbcfabfd94dd6be66f0c9d9f6179a50db73edc01de01cdfb156a3b5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/stone_pickaxe.png.disabled" +hash = "48ccddc201376b0faf4cbbe8c7f9fd2aa359f036fed0dd5c3c6b3de2abf8297a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/stone_shovel.png.disabled" +hash = "9512fd72e9da827d8dd7a6592f9c1e3f88437e8e14a7a49c67c1b51c3aecf054" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/stone_sword.png.disabled" +hash = "0ebbbd53e1dd80f55635c244de8f5b13df6faac6d79d2e3c6ab900a046d6b0c5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/sugar_cane.png" +hash = "1c5b40c8297ff7fc643ce2133863297dcbbb8cb1b061a2c563cc98271a04b8d0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/suspicious_stew.png" +hash = "58feafbd20a94f060792d033dbfed45539a7f9b3888d4e5072ed6e8d476883e4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/tadpole_bucket.png.disabled" +hash = "df8bfa829b034fc54f54d55588ca6454fd3d08c6a2b403fd22749dd83238e099" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/tripwire_hook.png" +hash = "5eb31f66086606eab9f6681f6d9fcee3ad62b7f17e200a36ae0541f2501aae6b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/tropical_fish_bucket.png.disabled" +hash = "f3ffc9156b3cbe936bb0a2efe60f4b49ac2d02dd43168da9bbd51f56648e8bd8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/unalloyed_gold_apple.png" +hash = "f0cad395e3403ec14a2a7e0780554a8466953a7a7a3aee0306baf50823009722" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/warped_fungus_on_a_stick.png" +hash = "b2b0a548faa40b1e1cf8ba1c21dcd82da1c9ec25758edf9bf7bd2bbc9a71ad7a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/warped_hanging_sign.png" +hash = "52a33e9077092f93ad43a95f1252a0eaba7c34fda0390eb296416b8d6462bc16" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/warped_sign.png" +hash = "c402c0b97fb6197882aa6ae4eadfdf555fd041e2fde9f57d06a80f9f42f574c1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/water_bucket.png.disabled" +hash = "151943ef9d9db33b6e3d637fc375ae1f5886a0a2aa0d750179e76d27b3533783" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/weathered_copper_door.png" +hash = "e1ba2b9f4bfb64dc79843c25f2e60633779fd858607ebc00d7cb9e9903c156a6" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/white_candle.png" +hash = "a37d3f16353d3dee517eb7ffefab2f76968f1b9ad678fc0ff80605d15ee10546" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/wooden_axe.png.disabled" +hash = "2292ba0143778e33eb91b42a31905ae69cf663affa49152be705d2c6566cb94b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/wooden_hoe.png.disabled" +hash = "1d251c1a46bfebb53595dc8d84468dac0221692ab25e76494f4ac4350a3c939b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/wooden_pickaxe.png.disabled" +hash = "468617701849180d3188714cc68fb014c53aff4131f6a1ea1459c41b28232680" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/wooden_shovel.png.disabled" +hash = "bfc38df86276ca7a51affd8d9373e82c977ebd0608ce5d37855d301774cc17e8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/wooden_sword.png.disabled" +hash = "8918542d8713b6ca5e40008d7982fc0c78231c2afd83387701a3eab878379225" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/writable_book.png" +hash = "48ad93e711ae8e2ed9f2d68bbe80ce9c94ffa4bde0780c983b308ccd019fa013" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/item/yellow_candle.png" +hash = "ebc17d38bcd7c0f82689ffd2e2d97888089ba94dfb414caee7c6d18b36bad2b9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/misc/pumpkinblur.png" +hash = "74fa903a6b057f03fbf60749a383e55257140bf040897f6b7e83213d94d61c01" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/misc/pumpkinblur.png.mcmeta" +hash = "3a6ff34246a85cde1c0c18dab595318cc54d6fb603311292ebd22e8017f2d556" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/models/armor/chainmail_layer_1.png" +hash = "cc8a02fc987c1baa31149ff85e6f302eca5f65979a0e059406e438e16157f515" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/models/armor/chainmail_layer_2.png" +hash = "f7b9da52d0c476c7dfdb90b748377ce3b9658165f8c65b1b2de565d977604594" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/models/armor/diamond_layer_1.png" +hash = "c9da9b17d95eb473c477d1156822927d6d7dd5fced7e9466ed07efc527d6f81f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/models/armor/netherite_layer_1.png" +hash = "8ee8a3524cb8cedf8d502f107f9bbae289d8ea5728051b83b13664ab0e267e22" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/particle/flame_0.png" +hash = "ddd36a47777b6ff7990e5c9e266e0f57574adcb962131fcc3996e90418769d33" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/particle/flame_1.png" +hash = "3a6850ecf8b4d84464d28474158a21e6f5624dc37e24c3451a8f156b403f0e3b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/particle/flame_2.png" +hash = "132f6606cda7788926c282e9c6ca6bf76b15461bef306cd0faa1b1a96a76a419" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/particle/flame_3.png" +hash = "42a7b4c7107c39716f182109ead1b35bb94ddd60eb37d4680ef09e2480236c31" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/particle/soul_flame_0.png" +hash = "83fd0a5013d077633db237890f97cb87bbfb09fe516c2bf833f107caca0857a2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/particle/soul_flame_1.png" +hash = "88e8b2730088faa88be898a75fde6dbd581aceaef20170227f3cdc90ef9349e8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/particle/soul_flame_2.png" +hash = "64ccb672ad90fcd66cd0f7882ec4d0a649cad34477b8e798f2fcfa9aee05bad3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/minecraft/textures/particle/soul_flame_3.png" +hash = "4bca0b1f8898c331d3d54ce6c7ca943a6cd11f3a6b8ac4bf19543367a3fee3ec" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/newworld/textures/item/fir_hanging_sign.png" +hash = "f7ab907f8ed22167735354b814756a73e9081c57edde8ef1f24e567d4a3fd13a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/newworld/textures/item/fir_sign.png" +hash = "38520a1f32017f8ba1fac694e40c6f587026820a8743dcf61adfef5cf9c0936f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nirvana/music_disc_jam.png" +hash = "ad0d6915bcc35dfe34df5f853576ad4dca1c079dbe6d6a7dda81cf306e9d71f7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/plants/cut_sugar_cane.png" +hash = "507e087af5bd67b75b989b323ee03d8de79d13f77a197e18803084fb2ebb6c74" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/cherry_bookshelf.png" +hash = "7806c517cdbe88e49cbe8760bcbed527ca490877b02eb9d84e1ae88be1c9932d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/cherry_bookshelf_alt.png" +hash = "5f5a7ea2b64d9e6080b0196727d21a0d1cd7e21964f55bf8c29bb5b8c3c080fa" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/cut_sugar_cane.png" +hash = "507e087af5bd67b75b989b323ee03d8de79d13f77a197e18803084fb2ebb6c74" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/trimmed_cherry_planks.png" +hash = "9652f60292bfa87edd655498f468ce46b537d8a98b0d782696722feb5ec6ee64" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/trimmed_cherry_planks_lower.png" +hash = "001436918bbe3ebc346a569e9e4de235a1e418b6c96dd56cedb8abe73088b971" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/trimmed_cherry_planks_middle.png" +hash = "26ab89d3b05958f0336a1734f9e83a97934ea56619c1fdd0d7182485abf587d9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/trimmed_cherry_planks_top.png" +hash = "f59c6749bb1706639a0b6bba9948be3b95df39a574856bc376fdaee1c8c8161a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/trimmed_cherry_planks_upper.png" +hash = "159d13d4d5d99ae9c7cf803d81707ad2188868517299c0132a20884859105730" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/trimmed_warped_planks.png" +hash = "06e2f0f1594bffec01a99743f08ab21fa03167740003972dd00729ef141202b0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/trimmed_warped_planks_lower.png" +hash = "d70f38915b78f21c03d39ed5820bc2e11ac03df1a56ef4fd38abacd141bc5f2b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/trimmed_warped_planks_middle.png" +hash = "67583c3492eb2c892f849689eb14cd351751a1a8360a058d7939651011154893" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/trimmed_warped_planks_top.png" +hash = "43a26a093d69002b672808c1005c5825730e7036c650d5f7827d8d8aedc25ea1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/trimmed_warped_planks_upper.png" +hash = "f493905721dee33e9d99700d89d5b10555bf4116349ca64a4393f15b2b64a4ec" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/warped_bookshelf.png" +hash = "9469eeb1d74a94d8fd2fcc0a99d5c5fed2bdc1bcbee9866bf4156fbf5cb396d4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/block/vanilla_woods/warped_bookshelf_alt.png" +hash = "c57e81210b927f0b4086ca46c60092e4c06e16acf828bbbbd1b435dc3af27cb9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/item/billhook_bass_bucket.png" +hash = "95dd0299f8187859b273933ed2dea3ad781b643e5d454bdf796ad8814b161e35" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/item/cave_carp_bucket.png" +hash = "5ed3cc5262858743dc6d62ad6e7dd4de4d373e55aae0303ecc9d6e88a6274328" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/item/maple_hanging_sign.png" +hash = "6b3f52557c5380cfa93679dc832593f587d1445047aeceee7c255d1762251c05" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/item/maple_sign.png" +hash = "659c7a58173330a830218a4f7e0fb9439e9afb8b24ad169916d4ef5d6e2556f7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/item/murk_bucket.png" +hash = "667e9308aab9fbb1a54412f611458d96447ed0b03d2d2865484f5a8904772506" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/item/pine_hanging_sign.png" +hash = "f484693b007f78b6280fc01ac92d5ef3baaa81efc3b60b028fe9ec86292cb094" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/item/pine_sign.png" +hash = "79eb717ed3c2da4290d0b99fa4445258c872472a30984e4977d92a18558bee6d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/item/walnut_hanging_sign.png" +hash = "c42715c81abe0c72911123740099d66578e313d161dadb61293ed71a02f5e372" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/item/walnut_sign.png" +hash = "6d6bb6465119e70d00e659272d944c9fe92740b2c07d864f9daa780662da2597" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/item/willow_hanging_sign.png" +hash = "e69f840008a34e7a6dde11cded0c0155b5accc4b2a0b4d72c14f9eef226bb2f1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/nomansland/textures/item/willow_sign.png" +hash = "7889caeb6b1d3a9909e2f33f4c3b60e9fb62e816551025defd1a946b3f2a3e0c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_acacia_front_1.png" +hash = "ac4a4e2217872a44bb3781a1dfec76188fa93d9385c7926b664f1a9e52cb84d6" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_acacia_front_2.png" +hash = "c0edbf345704d30073438ae03f537ee023e143d7a701d44bb2d95159ee4767b7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_acacia_front_4.png" +hash = "045d1bc54bd41b6f885c04c81c7f3bb1a812632ba64c026bdeaa06f16b91624f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_acacia_side.png" +hash = "f52420da796a8cb1f266ad5d555d75245cd5350480642c67af2de65d65631c9d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_acacia_side_h.png" +hash = "8a61950ef57bd909734af7434a22ffa3137fbe1951f790136fa35e59ccae0b5c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_acacia_side_v.png" +hash = "d4c054e29970b2199735eb9ca00a73d21a9d2e77d90991133bf6521dc10233cf" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_acacia_trim.png" +hash = "f52420da796a8cb1f266ad5d555d75245cd5350480642c67af2de65d65631c9d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_birch_front_1.png" +hash = "7c54994d47bfc6e21aa0dc03f28d319ae5393872218186e186359a512eb9ac06" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_birch_front_2.png" +hash = "98d9dedeef1b31f705d28001732ca17647a1ee79847112864b0526ac93f59faa" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_birch_front_4.png" +hash = "aa6cb5d45aef3d15c220ba75805615846c1bf726a50878e93c102db0b73bbd5d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_birch_side.png" +hash = "d07713ef9f621e6496ecd3b2c18f5e0dd19ae5548d470f601d0102b9ab985df7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_birch_side_h.png" +hash = "6ff90c79846d8f518f47a5dbc2595074e36d80a3bc374330a2e0fa4b3c073b2d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_birch_side_v.png" +hash = "868780ce4923884f380ac62e0d2205b1a857af7f214bfa4fbad60c06b6a70b9b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_birch_trim.png" +hash = "d07713ef9f621e6496ecd3b2c18f5e0dd19ae5548d470f601d0102b9ab985df7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_crimson_front_1.png" +hash = "940ed7d8a5609d44c6ca9aca39e51c9e1af0f45dd72a49445c880f46c57a6c9c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_crimson_front_2.png" +hash = "3e3523a8ae06e2b10190adc73ded546eae27ae4537068a0175adec6ac03ded09" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_crimson_front_4.png" +hash = "8d54955879bb593a112335232f5436fcb87ef0fce1c645fdf33877adaa9eb0fc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_crimson_side.png" +hash = "39e90f724c338694a69eb5cfbe26327e8cfcbafc07376e40522c8b037d33e854" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_crimson_side_h.png" +hash = "d97e36a2439780753fb5b2b3f8290508c989b7b668ae4812c9dc11a4afc54041" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_crimson_side_v.png" +hash = "9e69166e0cd91a65bd1f74d483550bfb9c8038c3d9c14d58fbf8da9a395ce189" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_crimson_trim.png" +hash = "39e90f724c338694a69eb5cfbe26327e8cfcbafc07376e40522c8b037d33e854" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_dark_oak_front_1.png" +hash = "3074c2af1f2eb4cb2c944992cc541eeb224b1679c3870fcfd21fef00bdfa82f3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_dark_oak_front_2.png" +hash = "08e8fe99eafc4e67dcee22787e5a0de3b10954964b874da7b31eab1f2dbb0e05" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_dark_oak_front_4.png" +hash = "05a32345440b60a85947a26a8b44d7df1215d604a2285cac3bb27cc3d935eb35" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_dark_oak_side.png" +hash = "7fe4953785b910511838d617fdf0a9c7307457a107aa4b4d4581cf2cf4b13e3f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_dark_oak_side_h.png" +hash = "0c4c083a942136555c63192bad0f17886915636719e52d1900ceeb26a52fcd35" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_dark_oak_side_v.png" +hash = "a91ce1a665800a804b5b0a27b17510067bb79ed967dd69314c2f937f211102e5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_dark_oak_trim.png" +hash = "7fe4953785b910511838d617fdf0a9c7307457a107aa4b4d4581cf2cf4b13e3f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_jungle_front_1.png" +hash = "bf00e340d04d7afabbf24dbdd8aa46c27e03e548f85260d01594b56d64d4cedf" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_jungle_front_2.png" +hash = "dff1a616ad5c39450247a1e40191c7e8f43702a2d9d261ac48d6e033e4dbecb6" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_jungle_front_4.png" +hash = "619ea02f71c16b010a614d21e9fe9d9ec8a7dbf80bbb138492aef570fdd85c93" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_jungle_side.png" +hash = "ca01e2fa3f4d0c558d1de1b8eeff88a843a78242add3aba1911610a669318e92" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_jungle_side_h.png" +hash = "c42117d0a98be1d90305416e7bbfb1457bfbadf2e0d73105fbb89af6e6e248be" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_jungle_side_v.png" +hash = "4b043d0858f1c0c9058a7337d16c1aa5638557bc071ab1c1fe26bf740867152d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_jungle_trim.png" +hash = "ca01e2fa3f4d0c558d1de1b8eeff88a843a78242add3aba1911610a669318e92" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_oak_front_1.png" +hash = "ed977e217f10a3f3784a2ff68ac02f65d683e59d255e86ca42e7d4b0f229f21d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_oak_front_2.png" +hash = "cc4a9bda3cef55436e192f347c798ee697936798b91b38d5576768f8bfea96b2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_oak_front_4.png" +hash = "71e76bcc5181b290186966bc84cbfd5f57ecfc0b3d9496834586f17d385ea9e9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_oak_side.png" +hash = "eabbfa0d3e805edf0aba1eb3bff2c4a4deb2b2568ace458c852df765651cd653" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_oak_side_h.png" +hash = "5ac93660dc07d767468960d8fc99fe146dcfc4bf5471b007ab03f29a51f8e3fc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_oak_side_v.png" +hash = "06a6c4688d22b671e48c62d8703e3edee8bd3a823f8004fe62983e64cf657c43" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_oak_trim.png" +hash = "eabbfa0d3e805edf0aba1eb3bff2c4a4deb2b2568ace458c852df765651cd653" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_spruce_front_1.png" +hash = "e41b550a3d9a4487ac056f1fca215afe2c6e2598fa674e65b9fa3474645deb58" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_spruce_front_2.png" +hash = "0bd0622dfa17bdac2dd23b713848f7b04ad574368a42aa7fec0851449d1f04b5" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_spruce_front_4.png" +hash = "b4b8b1f3a07e3d720d849668005ec53b6a714a78de463ca398aa61de2280ba56" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_spruce_side.png" +hash = "cbaca879ea91040762020d3073c25f1f55cbb85e58fa8a041530c9d017210ef7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_spruce_side_h.png" +hash = "b996c32834fcc39a5da3e547b4113080b4c8cf28c27b96d4123d6a86b86313e8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_spruce_side_v.png" +hash = "16b20ee2ea68d0fd2adae183eee85fa9d2efc3794e70f6d1fa6e4c35e7abed1d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_spruce_trim.png" +hash = "cbaca879ea91040762020d3073c25f1f55cbb85e58fa8a041530c9d017210ef7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_warped_front_1.png" +hash = "bca2d2a12e89cd6d14f20a93d27ec04573a14b799ad4a99f30fcc183539d2636" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_warped_front_2.png" +hash = "e87a302d578897867b3e7f1db132a1204dfd49f1f65910e60735112dfc1679f1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_warped_front_4.png" +hash = "73efaa2b95c418b5c2d39da2214ac67dcd441b93add2abadfdac04c1a936c161" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_warped_side.png" +hash = "86eb541781716b68a9a719aeef9ba917ec0d069b73e93e3689597c771712b072" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_warped_side_h.png" +hash = "cfaccbbc728ba48c4b79416fe23f8a75fd72c3164d5b7ee7a16e2894515afd8c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_warped_side_v.png" +hash = "82bfb28eade1bb732dc8fc44105c77a51e70ebbd0a8ca9e860ad11d6dde64f96" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/drawers_warped_trim.png" +hash = "86eb541781716b68a9a719aeef9ba917ec0d069b73e93e3689597c771712b072" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/indicator/lock_icon.png" +hash = "33253ca6b95efd93470e8c905b1659790d90ed76b7009da2dfc598b26b6e4d8c" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/indicator/shroud_icon.png" +hash = "baf9f76ae4d0bc0acc246ea35386c460e3b33bb557402a017c6072649f7f3555" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/storagedrawers/textures/blocks/indicator/void_icon.png" +hash = "f29dddbca95f0dbfe6de74a9ccf8cd1526c1ce4dcdbee676b665648013ccfb4e" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_1.json" +hash = "d2ba9410e902b25a98e5d2db74a0187a85804d236d7d0c00f93b74dc1f2d2025" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_1_lit.json" +hash = "95b24d8b033b9417e6e70cb6f92d03ba41bfddbd4b178f530a769feaaca28c41" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_1f.json" +hash = "984f20a7764ac4e598cfb3a8a2b03de52be47af96eceb421aedc0262bd7d39de" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_1f_lit.json" +hash = "22024f2f056af69bcca3ab59ab8876c6d03ac6dd71b779d8797e61c6cab7eccb" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_2.json" +hash = "80519a6181fc3a7e0ded29415167b899bafbb397a4d382c22479e7137d3d10aa" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_2_lit.json" +hash = "9f5b56cd72917bfa847b9fbbc023e66e91344cb0ab220cc2f9501b6457e81541" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_2f.json" +hash = "47ca1c2902c4fa945cb03d4aefc3bba3c41cf723f1f37af07bb4f5b63a0bf1da" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_2f_lit.json" +hash = "bc847891be1f34f4b1dcc5862061d481e7a7191f31c0c1dde151c42b22e8c9f2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_3.json" +hash = "ea8a847bf75bb0a15f0d622ce69b50137fef2741d3312ef8fe7b6a5c926375c9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_31.json" +hash = "f0c2083d9ab4f8fc91c2223b49f7cc588be58493f26872270e29c5cf0cf0ee26" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_3_lit.json" +hash = "7d73e18f6b8fe3cb1c51579dba121e062174fa6b00c1d9f830331482d23fe109" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_3f.json" +hash = "ef68f2398983eeaae4a031af2c40728218e65234a9ec4502105d0697f09be813" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_3f_lit.json" +hash = "1cdd8b0fefe63cc7a532a72d2262b92e4db4e1d70f519cfc96ec961ce7a26143" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_4.json" +hash = "4db4f41f2c381d7d0dbe6916194cdc19f64dae50fc1d6d3be1bba211432490b0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/ceiling_4_lit.json" +hash = "0a98046d4b0fc94db70a1c7964a0ce2891117597f6395aa7cfd7aaf1598a4847" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/floor_1.json" +hash = "a9fed87f0e1768a469c541560dd492eee6ae7a24efd483b5c196070a58c4b8d8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/floor_1_a.json" +hash = "3017b44fe510e06e8351f5ab3e3a7b11a03ab9882ffaddb61583a314bc174ac3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/floor_1_lit.json" +hash = "17b8107dab361ec1b869c8fae4cb1ab690cc1b2be9351889529ac5fdb7368a34" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/floor_2.json" +hash = "d765ff7e3145dbaf194a34af71e376a5e5776a83ce26a7627e49a75ebbe31ee0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/floor_2_lit.json" +hash = "c98cdde7b0df0a42765950545b5609d1d7fdb5440c8087b8b951fb6b5e2319be" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/floor_3.json" +hash = "a25f036e09e6a555d760b42e2ad1ac996bdda2e0411d22410c413a78a80efed9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/floor_3_lit.json" +hash = "1754dbad0a1a8f39bcafdc3b0cdbb7a83a39d5ee33e8005b41a3c5229f95a7a1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/floor_4.json" +hash = "8569ef20f48cd9855cbaadd5fe85c571c7c5ea802f8b53f29150ea8b83501afb" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/floor_4_lit.json" +hash = "6897b0613cc7b8bddf289fdeb1c7a69f29547e6ab01d9f05631a3ac3c72241c7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/wall_1.json" +hash = "f1665c96c0a934933124e4a1e748d4849b22c5c211724c10ab97065343c41eeb" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/wall_1_lit.json" +hash = "9d88bfaf41fb900f50e0ae4271f08e90ed1d813297ea56c50b0d19db6c21b9b7" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/wall_2.json" +hash = "7f339ea4c67b2387febbef5908b5361fd61ba3673aba978e8a5d9ce517074604" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/wall_2_lit.json" +hash = "f5f4cac14c96e09fc01700c3d13825b5e417dfe1f0ddcdb067afa0f62e087df9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/wall_3.json" +hash = "ccef72d5d4f243a7d80db357a552b6c1b019b61acc919c265c95b5a6767c00f4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/wall_3_lit.json" +hash = "aa16606b302b22ee4a9d9866981ea5a16716e0ce6b705ee603242641995febe3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/wall_4.json" +hash = "62d16326d3e78634f364d6b2bd19e321e38ca14b5cb1c910bef450c8a18aa978" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/models/block/candle_holders/wall_4_lit.json" +hash = "0adaeb727635cadebfa433cb49645c562da657483633d88895664d905a3089dd" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/block/checker_block.png" +hash = "d2d1ef31df9bc936ec824c250d84ef2a04e46c42d1d66a610fdbb6f61a98beb9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/lumisene_bucket.png" +hash = "3686a938ce1843fe309a440653af04eda6acbc34d877a38cee23d542bc14d33b" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/quiver_full.png" +hash = "317506f9ec92155da7cc9e0921eec6f31e9a634d5ac5a042e209d3806522e402" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/quiver_model.png" +hash = "cff6ee0f6d5347286be9487d03d0cccdcffd1f854dc8019052ee627446ac2fde" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/quiver_model_overlay.png" +hash = "5cc7a088d7c05eadcd138589edba68795583d0b423cef96cd87c780a7f0abc5f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/quiver_model_overlay_dyed.png" +hash = "0ffdc956763d2bdc790d364f32d5b4b6a8ff45c733d6e0748e28d90d94a6e186" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/quiver_overlay.png" +hash = "8d35957abe03b48ac0819ec09b45d109e414ec05fc235612a32f2c3ac6f34623" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/quiver_overlay_dyed.png" +hash = "ddd4a2a3940bb9ce5ff9202175a5275c51b62144d577fa73dc0c13fb42e1cdae" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/rope_arrow.png" +hash = "fde42c21dab040f7eaf2f49e46db072e459f0c7a410f36fc116cd9336095eea8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/soap.png" +hash = "5ac42830ee2f1b14cec9e245e60b728436eeea79b8f52a507e0e42451ab4d4ec" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/way_signs/scribbles_template.png" +hash = "55906b40b06804ccc80203af1c41e8531c0ed52864de1162f12eab7f02dbcf97" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/way_signs/template.png" +hash = "3a717f168099c113f1e9597e7371b485b7dbf92af6f9b45581b01194cdac4f5f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/way_signs/way_sign_acacia.png" +hash = "834a7d93bf671a8699a1f761b04ba7102c5ce2ea385a0ac2e2eef4097688bbea" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/way_signs/way_sign_bamboo.png" +hash = "b8e5afdaa1a9ed68b45fb2a1ecebc8ca6e0aec8ba3a9a173abfb4c9c021ed2ca" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/way_signs/way_sign_birch.png" +hash = "44f39a06d982c280a50c0c9b39df7d21446c4549dc332f67a527c2f1750766c1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/way_signs/way_sign_cherry.png" +hash = "9b02987fda2385585eaab67c4c9f5750dafb063d883275cad8658e9f9bc2eb69" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/way_signs/way_sign_crimson.png" +hash = "936d1d99a7a0fe9e9218fa5053db4b3195097584c6b34f66d383916994fed210" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/way_signs/way_sign_dark_oak.png" +hash = "c7961f9ad19a748e1ecd52193bdc248fcfd2fea308524dc06f6549702e1aae10" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/way_signs/way_sign_jungle.png" +hash = "c2b4819eb3f24930c203afe6ebdb704a58b65d14c35ffbf940e46ee0f382029a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/way_signs/way_sign_mangrove.png" +hash = "6ae0927bb473931e82cb5ead44faf53f3d11b4585538ce297b5028d81e3ec3e9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/way_signs/way_sign_oak.png" +hash = "3a717f168099c113f1e9597e7371b485b7dbf92af6f9b45581b01194cdac4f5f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/way_signs/way_sign_spruce.png" +hash = "b8967b3c3a193fca204dcd051ddce580064ba03a745fcc4caf6659d751ebdcc1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/supplementaries/textures/item/way_signs/way_sign_warped.png" +hash = "628a47bfb1855f4a93886f31fde1372b186a6c021bf266fd47888fd25be8c602" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/axolotl_bucket_blue.png.disabled" +hash = "df11879b45aa9b81a142571110ed35fcc5fba187dc42fc091af135a6e3820067" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/axolotl_bucket_cyan.png.disabled" +hash = "e6959a9d94df25c3e80ecfa4b2537ac75c94d4320ff037e9701f36c14786e63d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/axolotl_bucket_gold.png.disabled" +hash = "f77d0e035c3c737481c27584ba89526cff8e9e853ab7ff87187e7fcdb5eff923" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/axolotl_bucket_wild.png.disabled" +hash = "9bb665b073a79ab6d7182e483ae0f7f0dd6744a947be37a08f793d6152ed323f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/bucket.disabled/glow_squid_bucket.png" +hash = "68f1f0fdf4225e9444d19183260057c6aaacad74a5b3424c7b402a97582c06af" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/bucket.disabled/lionfish_bucket.png" +hash = "0f51c94dc99d7a991b58fdb4ab0fd32710b8f9893894b5ac7a5a1dc72c53c2d0" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/bucket.disabled/nautilus_bucket.png" +hash = "2c0d414f7eca386d5a100062ef7905875c4cf16b95c538a73c068855ee907e61" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/bucket.disabled/squid_bucket.png" +hash = "f57afbae1af756ead2f043897011d1a3645292eb887a734145f2be5fde4eedb1" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/perch_bucket.png.disabled" +hash = "0353383b19c7b4d5c167969d7237f59d0c8434aaa7ce3276588095c08ce3b6ca" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/amur.png" +hash = "37f4998d6fbeda7e79420aefddfb9e7b42619a4cf48a31b594d31a838dda6194" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/black_southern.png" +hash = "d680087b9c832ed38ddade4f49f2e060b2da87a292aaf585d6b51caaaf12ac87" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/brown_southern.png" +hash = "6b989f8efa32cd5fe43ff0845c37a60aec05144a3a4ef1a19493280269fd45b2" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/chain_pickerel.png" +hash = "198dea7662cc595af0fc787341192cdc69923bbd9906915ed15214ffa73a4387" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/ebony_southern.png" +hash = "d3c4e391e86f928ed083f9d2254cc6d24fc39da3e277b4d8b6ff3a97f11a52bc" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/golden_southern.png" +hash = "8fc6213fd23725828d9d27826084b8c6c18cc4eae7dd3d6de5b2151135d7f7ba" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/grass_pickerel.png" +hash = "2518999de818bca422b3ce09b38d786562b17bd334e2f97a94e5b6cc9571858a" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/jade_northern.png" +hash = "1c0882195aa0015cec404f0f132d403d55c4c7f759603b454a88819fa0248f06" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/lemon_southern.png" +hash = "6229b166a2de3ab25dd1d41d4b22987f0f87d4b157a6652f97facfdc4a7a085f" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/mahogany_northern.png" +hash = "2efc5aa7496559e277d4834aa2d396860eff48973a50c8a01b6c6e192acc5646" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/muskellunge.png" +hash = "6d86d45acee01f52a4f6ef000287469a4dce5f4ac21bb21624e615571e8137fa" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/mustard_southern.png" +hash = "6867a5b93f6e191ee1e1e9b8067e7b4ace15c8e86d8f51c0e07f0bcc925c1698" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/obsidian.png" +hash = "d5165792ed8a9d34541ce8954b2bf35b21b79ad77884ee1e25b9ad9a7cef90b9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/olive_northern.png" +hash = "d4952b37ee57c48625022dbf232bee8d3696f35d0cc73d18c376caef215ca8f9" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/redfin_pickerel.png" +hash = "443061941fb1cf340a2eea02cbb12c8535d62aeb696bd130cfaaec269ec5b650" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/spectral.png" +hash = "7e920d6269a91f4ddd55cab6b2e446b3b9644542466b87c9956bef6fdd6e357d" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/spotted_brown_northern.png" +hash = "371c27832694620d6f001bc38071b2c68a44f2fcdaa300f8150d6470794368f4" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/spotted_jade_northern.png" +hash = "5f36ad76965e3c6d14a46c64eaae0fb66e1b7a4b96a1fbbcb1a8dc3fbe01d3c8" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/spotted_mahogany_northern.png" +hash = "a3b9ac9b1f812d799088b6220e770885d9fdf58e23d67ffac8a176850dc047eb" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/spotted_olive_northern.png" +hash = "efe688c265218474349d6ce4c3e6d791d4cba0f3fdf5b602b9282aacbcde7694" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/upgrade_aquatic/textures/item/pike_bucket/supercharged.png" +hash = "db74f58415c958dcfa22319e32d9bb809759c333115a040bbb6c1361b96053cb" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/voicechat_old.disabled/textures/gui/disconnected.png" +hash = "331aee436163a341a611e7c36eaff818f583c5e800e38b81584ea8de282cb012" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/voicechat_old.disabled/textures/gui/gui_voicechat.png" +hash = "640ce30a5c7817297eb4f4672bc20f0513ec88355afcf021b86b95e32409ad60" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/voicechat_old.disabled/textures/gui/microphone.png" +hash = "df0eafec5327e7d51c1fa2fa70ea921deb266c3a3a83645c1f7f66b961de53df" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/voicechat_old.disabled/textures/gui/microphone_off.png" +hash = "19ccf33c7f7631ff3807611b33f4e35493b18438bf169f7e7b74f92c4862a2e3" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/voicechat_old.disabled/textures/gui/speaker.png" +hash = "b86f064a584b18ed8a32f6a93f5d98fd3280f445d79c9dcb655512883cf62750" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/assets/voicechat_old.disabled/textures/gui/speaker_off.png" +hash = "c32e2ff232972c5d012cd008e9ebea4d7bbd8669eda513c67801ce829171fe73" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/pack.mcmeta" +hash = "bbe4fb36ed6cc12de483ea0f743065dfb7dbc56b5f7e57fbf8d62c3f14daa987" + +[[files]] +file = "config/paxi/resourcepacks/FarcrsReCrafted_NoTools.ignore/pack.png" +hash = "f06b9e446a1dd24b7a7334fd203f7aadb4d90a51a86e59b41a9507603c79ac09" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/acacia_trapdoor.json.disabled" +hash = "8ab18c31d17c0fd651c80ce5d4f6ed43ae5d23729c9956fe2e32325a8fd02a6b" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/anvil.json.disabled" +hash = "d095b9828cf4b23a2711abd2ac13081b5d442bc2444688eaa5abf0655a5d0775" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/azalea.json.disabled" +hash = "c98fdb9a90e4910d91c7d4de44568b47d6043b7a3e280fe797c7588c842633fe" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/bamboo_trapdoor.json.disabled" +hash = "5cabef5ce055c67881837fd4414d1924ff124ca368a60416fbf62895a3b87021" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/big_dripleaf.json.disabled" +hash = "b8eda3acf7d9d487dc757f3702309cf869fddd2903c0add9a34d1befc3783a63" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/birch_trapdoor.json.disabled" +hash = "7bccd4b62618ba27972e5e737dda8b0ad9ae6e4c6f09d7645eb2484f42bc4c44" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/black_bed.json" +hash = "18a15181fc4038bf1947a033faad9906ebe3a9f4c3176c5caf40e11ad257567c" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/blue_bed.json" +hash = "e1346257894244bab0f2ec84f58440a10933c0760b4305028747875d20d43516" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/brown_bed.json" +hash = "cab968eed3a25946faca535d312db1200e991692cd6c60eee1f8947963788e7b" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/chain.json" +hash = "349d68e6111ebf566981c58c49ebdd33dbe24edca0c83ca3856de03772e1446a" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/cherry_trapdoor.json.disabled" +hash = "84c17af904108ac0838fec3149696c637b84f9551afd83443b3cd7c7b8d0b528" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/chipped_anvil.json.disabled" +hash = "6bc5ae1597b3cd7362712c4ba6c90d28634ffff5005a869b5d8cfc4bf3d7273f" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/copper_trapdoor.json.disabled" +hash = "3d9fe6875d52f9b01f8c483f8dce482aba3f9620976dc68bbad2e549e0d33eaa" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/crimson_trapdoor.json.disabled" +hash = "f4c3b349fed9e5969e61e8c3345cb9ba2bff0127d5bb3e64c6941b095be1f5db" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/cyan_bed.json" +hash = "d7e244ad01982aafb7c8c664bd3f895032f380369e1c711a419df679d1e9fa68" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/damaged_anvil.json.disabled" +hash = "a850aba7948d4b6411e0686b76d8275a5b525a7af9b2474827fd976dddcad9d4" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/dark_oak_trapdoor.json.disabled" +hash = "51375ff301a2aec03d5afe858e92190bc8a8efcae0a7fbc047696c25a2b890c0" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/end_rod.json.disabled" +hash = "0838cb5f0d153f1c87179f4ad52681a3a20ae7105a630c0996d81bba00b09d8d" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/exposed_copper_trapdoor.json.disabled" +hash = "e86b06f12296f48a7c69b8ab69236b60b79ac49c16bcebd0dac45697c32b2b31" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/flowering_azalea.json.disabled" +hash = "a0cb2b8fe8550c1ff8cc8db74d2993667c6fd73da02f685410382ed3422ca619" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/gray_bed.json" +hash = "e7fd8b84b4da99a9447c4ca04078cf9700f58e63699999e089f9524604dfc2dd" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/green_bed.json" +hash = "db12492c2126e6d8ddd6b118d3c0f7cff8e22b41694414bc2a47ad1005598c52" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/grindstone.json.disabled" +hash = "57cf7b04a93a9e027b531a0930d8707cb1edebcb89eb73dadb97e9251fd2e80b" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/iron_trapdoor.json.disabled" +hash = "1ea4c512b7d11792d7eea4c7387b026f4895b144ba9029d57354673c98bc7a4a" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/jungle_trapdoor.json.disabled" +hash = "f97f724ee7a5728cb71a114b11814a54abb6f42f9c9781f84a625aa89c70edc9" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/light_blue_bed.json" +hash = "993f6b7bc9eba548a8c967bf1d6b3ef7d2d630beb5d3bc1eb494acf9f4928448" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/light_gray_bed.json" +hash = "efcdc1b0013db5fa941ed3ffa0c6b60d24472125f7ebd88b016c6ec400982e8c" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/lightning_rod.json.disabled" +hash = "bda3d861449a8d01ae232efafecd1126fc93bb20905ccf0643029115f3ca9dc0" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/lime_bed.json" +hash = "15d52e5376dd440473dc2965f9f6c3fb9bab9674102395d10d6dc6410706de2c" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/magenta_bed.json" +hash = "39ebc7a689e8d942948c92877d76940b7cc4bdfffd8926711ac42596cb89c8ad" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/mangrove_trapdoor.json.disabled" +hash = "6c091c444f9e9377f2caa8c9bcff8f5f9ff251ec4804676127763d5c9bbbd2df" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/oak_trapdoor.json.disabled" +hash = "2c4f666c4d8e0e959905a8c2111056b7f01c1d945936713978d571207971545e" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/orange_bed.json" +hash = "24266d9f8bcd4c9e0c776b34102927942572cecc538aa7f195be53be42edd771" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/oxidized_copper_trapdoor.json.disabled" +hash = "34c74e7a57e1ea72626a7d92660353bb8fee33aadb72c91f496a735b17b09a49" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/pale_oak_trapdoor.json.disabled" +hash = "67c206d8d78b8aa2cf6bf75dceff5f4bbccf3270ec2affa09153f9649e11ccc3" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/pink_bed.json" +hash = "00a83deab17f10ee064923365958a942b81dc060014705d9b3c8084cdbd8f160" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/pointed_dripstone.json.disabled" +hash = "56309634090a4c34541b3834de17b70761af48dcbfaf995bc199bc7843cc3d94" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/purple_bed.json" +hash = "a750f5c0b9eca690c973435d9a19c9dfcf3ec949a0801dbf2f28ffd4e9f85b06" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/red_bed.json" +hash = "7edf6457d613a3cf4190aff3830c537bd017c5cfdfcf8b1947877017467e7d4a" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/small_dripleaf.json.disabled" +hash = "7399b65b6f60ada95c2337da1bcb4b1352348ddffe560d5ebb7ea13cefbffc02" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/spruce_trapdoor.json.disabled" +hash = "0d1931dca12317cac40fb5da3318faded62d5af1ef5937c74f99d8c179ffc281" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/stonecutter.json.disabled" +hash = "cdee186edc1c7a20cff49a686190d2ee4cea73359e798677b569babc57866f7c" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/warped_trapdoor.json.disabled" +hash = "ed6156acb96eb8b378d120060f456986d74e2b31a65ccb94ab8325f288671663" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/waxed_copper_trapdoor.json.disabled" +hash = "a1f412f9a5409000a15a8f29e5008f43b04b4a0ccdcb7cafab10e0865404392f" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/waxed_exposed_copper_trapdoor.json.disabled" +hash = "d261260ed0dd83aec0618218e39aea205ec6281289ab7b72a1bf61a3652acaf1" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/waxed_oxidized_copper_trapdoor.json.disabled" +hash = "f0ea3a86dffb7974c565670d6e5ba1bc3c34a6cfc91da94a41765503859bd566" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/waxed_weathered_copper_trapdoor.json.disabled" +hash = "1e9d89cf6b3d081c6efa4346a341569636b6f8713a921271b392787604354c7f" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/weathered_copper_trapdoor.json.disabled" +hash = "14d5b12bfdfae89e9c2eb68a60b1fb9085b8c3decb54e3f38776775fbd736f0b" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/white_bed.json" +hash = "1105b23b79743fd2f31d40d4a593a7b87186fd1ff0c3ffb3e60af46bd681419b" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/models/item/yellow_bed.json" +hash = "de313637e3dc4c34ae9bdcaaf8265fc4d10cda611fdb47bf46fa3af1351643ff" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/acacia_door.png.disabled" +hash = "4b19276e650bccb5574057d793be77f83ab50662462c4a567f40ef2272a79f09" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/acacia_trapdoor.png.disabled" +hash = "1eef19d3842a94adc542b2ca3b776d927d7b3707bddcabcc9c74a58bc3ead67b" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/anvil.png.disabled" +hash = "8980164c2f6bb20c94e4e23108697c29d5e93f97ad02c15767f6b6c12cbb3770" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/azalea.png.disabled" +hash = "79ebde0abb85d1803719155b17d6269c20a7c1d001fc8d0dbfb03d2ae106e18e" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/bamboo_door.png.disabled" +hash = "5c47946b34d86321bc61b870d554e1458cb65100c18c6025b75dbd1605c1befe" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/bamboo_trapdoor.png.disabled" +hash = "86f076e8a7be59238599dbcc4764f7f340a6e6e722ae17cbd3d7d60070e95571" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/big_dripleaf.png.disabled" +hash = "638ad5ff62dd50cee1fb29b79f322457844da950c73e719a757fa95cb467cd54" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/birch_door.png.disabled" +hash = "21a6a6161d678521f420d05fbf73ab0ab330daa036357d4c9aeb340cc33e6f65" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/birch_trapdoor.png.disabled" +hash = "e4d7c34cc0fbdd20cf60c4140eec075d08d8bcbd652c029bb21ddc85ef29f452" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/black_bed.png" +hash = "a2e3188d208d7f782a0fa39b73ab6ca07b6b76fc46b72b5955c711b404e6c5b8" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/blue_bed.png" +hash = "629665e5ee008d179aa146b6257d9a0e62ec54e2575f5d6882d88138783adbcf" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/brown_bed.png" +hash = "04afcdd1f64b9b43decd7c6953e00528610498606d4814fa91ab4f1a5c4d5fcd" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/chain.png" +hash = "a49e36ee53b310f0fc0ac40d18ce8feabc6149f9d654697eb46e75fa32a666b1" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/cherry_door.png.disabled" +hash = "1e6082e52a3577d700f2373c97a5c91b4c1662ccd5f48b98dfa5debd87a8bd47" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/cherry_trapdoor.png.disabled" +hash = "2c4a8f3afa04662ad0ed717a2d28c4a6bbe087608f1d4d7d91268bb7b275edf5" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/chipped_anvil.png.disabled" +hash = "629640553b94a4d82cf2583028fb6b8ade984c90058ec68a50b57a05a15c6897" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/copper_door.png.disabled" +hash = "4ff0dfcca34af360c0d97fa8c33f883bb8c3cf222aa59753ed77a22b8e9dfe68" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/copper_trapdoor.png.disabled" +hash = "426e4b84c49f069315692ffc72e68e7c2cfb44332ccdd007fa6f9a632bba2f80" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/crimson_door.png.disabled" +hash = "bf91a5ac8d7abc761341e9555723e2aeaafba8d40ded2f9c57e09d685d2c25ee" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/crimson_trapdoor.png.disabled" +hash = "c39535be36b7d071cd97d1a1ea5b095d019970a681e122aebad77e706fc95f4e" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/cyan_bed.png" +hash = "ff3de6eee38e6e24ec0fbe28b03e95116982b8bdb861d36af420035f913079d1" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/damaged_anvil.png.disabled" +hash = "32cb615e1ad6e492c8d2e0cef38f9284ca977c4f8404a0a25f7ee91a91e1fd43" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/dark_oak_door.png.disabled" +hash = "08db6e8bce1931d84b89ec5116f419d7aea646e4e5301c6bc90abc901c0f98a1" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/dark_oak_trapdoor.png.disabled" +hash = "e45fc92c4a5ead52627327c1e362eb65c9950b6f70ad8339673cff79366c82dd" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/dripleaf.png.disabled" +hash = "48638ec22c84d4476b967ad85af53b937918518b10014efd2f694a1853abbe35" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/end_rod.png.disabled" +hash = "2feee58f421138c244cc2e79bf158292b7430be00c253e34ba326228ceee4fae" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/exposed_copper_door.png.disabled" +hash = "956486bebc5d2598769c724f10b43f537d70f951644abf4af97b01ab5033c109" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/exposed_copper_trapdoor.png.disabled" +hash = "6aa4d0072655cf0e9f672d9684b1d910d8cbede3e28020df45b3629ea3c013b7" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/flowering_azalea.png.disabled" +hash = "03c7b32e6f2183ffd07f91dff7e238485620329b0e7664c7762294a8724ed4ac" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/gray_bed.png" +hash = "972bf982d00ed85ab013ecf2aa2d640cc682d4e5fbd758c3de7f28a52a77be8a" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/green_bed.png" +hash = "7b07aea1cf6016a64a5da6e0d7d7de465fe6b8a87ec7fecfb0614751dc0370e3" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/grindstone.png.disabled" +hash = "bb547fb78d35b0f1735c1ab0574be5ac08dfe1539ad496bc085a73840f4171ea" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/iron_door.png.disabled" +hash = "4893aa70ad5f92a472f83caf890db5a731c45a7f2f3339d119159349f8bbce87" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/iron_trapdoor.png.disabled" +hash = "75dc7dbf2f3a11c84743dd9a355147093d94b589bf8ddb5e3d3ceec53037afb4" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/jungle_door.png.disabled" +hash = "4953bbe7fbe81267a2d1a3df6d9498a275dc032b59dcf7ae63c4c527eb0d87f6" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/jungle_trapdoor.png.disabled" +hash = "f4df594febba7c7da64a720564e831c6520557c1b454929e8321daf53692a1c1" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/light_blue_bed.png" +hash = "c1a206f9c7cff52201df93ee0de56a1963de709ceb5d2e7410ea127c607b43a1" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/light_gray_bed.png" +hash = "69136cf7bb69360500a85fa580f7c88fe02361be988b30f53a4d271253844ba3" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/lightning_rod.png.disabled" +hash = "3ef380aea0b27ab0f5318769886b71ebf3b445bf6a718072c3a168138a25e309" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/lime_bed.png" +hash = "a0e11fa40321bce33c1f3b9d65768fceebde9bf6f5f2f63d25333cec01129dec" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/magenta_bed.png" +hash = "fc957ab3475e5ac6ae9878819ed6ca79d85e8e80bff238a07546dc625ce78574" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/mangrove_door.png.disabled" +hash = "792f8c7416de239cd677306b448a311bba80c39d3d184d208f74bc37bf9b30f4" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/mangrove_trapdoor.png.disabled" +hash = "4d636f72ab2d743af02a7584a1b0bdf51544b357a618eaaf150843828f2cc24e" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/oak_door.png.disabled" +hash = "1b0b45b87c527826d1b7cc66289369f228e06f63536535b6c5fcad5ae9f60664" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/oak_trapdoor.png.disabled" +hash = "f0b2621af4a5d4068c37ce6eb7bcf26da20227a23d68060c76360d7fadafb025" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/orange_bed.png" +hash = "c10666697b4e4f4e14da56d8fa6ce46d5b09a7335aaf34b0b1c71ac01b8d56af" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/oxidized_copper_door.png.disabled" +hash = "68bc50c2982c2ce18172f6fd451655e2d66afb7a334c62db8ed864b3fd5a7c0e" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/oxidized_copper_trapdoor.png.disabled" +hash = "c68565388c81f95b571eb21d005c29fe9044e8852f1beedf193aee563033b4e7" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/pale_oak_door.png.disabled" +hash = "759a216b152546d7adb7b77aaccc2356d0c667b068cfdc37deeec14c02241242" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/pale_oak_trapdoor.png.disabled" +hash = "175152355dc8b1aaa8157a48c9c2620d51da5ccccea32a9438996472030266ba" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/pink_bed.png" +hash = "fde74b99a9567248c1eeaf653ccc26123b1a9d09982facfefb9e33339607df28" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/pointed_dripstone.png.disabled" +hash = "d7323bc20c40badffd46e226e75033195b4465ca226ffeff18b57495b6b015dd" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/purple_bed.png" +hash = "f08a179a0559057b3719a23a60e23ece93805c9bbb3ad1fbc4244eb7512af1fd" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/red_bed.png" +hash = "cb71fb280063e8d3e3dbdcb6d305e84da42f1180fb307354d3863a244220d292" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/shield.png.disabled" +hash = "eae77ebd0ce1f37b692c5fb4d41944dafce809dcd9a63a5fbe0ecc8963835c93" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/spore_blossom.png.disabled" +hash = "fd0f946fd7013753faeb23bd36458bbcfb858351287e968db4c3e6a8c8736a3f" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/spruce_door.png.disabled" +hash = "c7d034b22fbacdbb1ef1d7be7e26f15b4f99bfb7db9c04e8922998a53d3f4b25" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/spruce_trapdoor.png.disabled" +hash = "59579a7fbd9c68d01c7e161d1212f8e4382da695ea1838b0763f725e47d2edb4" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/stonecutter.png.disabled" +hash = "2d3a80d3e626005e79149286b4f308b40a5514ee7c4a4cbe5189e837c30574ee" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/warped_door.png.disabled" +hash = "b0946a2898c8a663030ae6b6d18d8cca7687690f3f709d1aea338fa4ce0395f3" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/warped_trapdoor.png.disabled" +hash = "8a1d4c30a3b3675a3b4ba6d6cdcab11f29242b2167ab3682111a980a4207ac58" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/waxed_copper_trapdoor.png.disabled" +hash = "426e4b84c49f069315692ffc72e68e7c2cfb44332ccdd007fa6f9a632bba2f80" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/waxed_exposed_copper_trapdoor.png.disabled" +hash = "6aa4d0072655cf0e9f672d9684b1d910d8cbede3e28020df45b3629ea3c013b7" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/waxed_oxidized_copper_trapdoor.png.disabled" +hash = "c68565388c81f95b571eb21d005c29fe9044e8852f1beedf193aee563033b4e7" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/waxed_weathered_copper_trapdoor.png.disabled" +hash = "a3700f085f30ff6be4e6154046c9ae3cb309d27631549fd01afa68a245f0cba2" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/weathered_copper_door.png.disabled" +hash = "a2c63b7b1cb438187652d214ef75c19d97612ac17accb5a0195f8b4b930aa49e" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/weathered_copper_trapdoor.png.disabled" +hash = "a3700f085f30ff6be4e6154046c9ae3cb309d27631549fd01afa68a245f0cba2" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/white_bed.png" +hash = "932a7e82862efdbad23741ea5c1bf692533642fb5cf5dcc7a2963042ba223703" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/assets/minecraft/textures/item/yellow_bed.png" +hash = "1562b5d94613d42d3cfa442e8ae9f7d686e56f1261eaab4772bf0d751512b443" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/pack.mcmeta" +hash = "97d45a6fed056b09f08f505a3e7027449df4ad3d1bc2b83e795bd235179257ff" + +[[files]] +file = "config/paxi/resourcepacks/Item Sprites/pack.png" +hash = "3520bb7a7db5790add6ac4d2a75f410edca1faf22a774c5ec8712461f2f1f82d" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/lang/en_us.json" +hash = "39781c4fc1ae8623a82deac24b8705a094f8aaeb110f036b835f77192e262c8d" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/models/block/cable_framed.json" +hash = "e04e43861c92bdc64d2a29970514274cac1a46c710ff24ff63686607cdc090cf" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/models/block/crafting_terminal.json" +hash = "fa0540b364e97b37a41a7adb83b6f6682a3455b7733b56d018aeddd2f02c565e" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/models/block/inventory_connector.json" +hash = "6e7f3a11f4d540e9288469456bdb6766dfb79011a958fad208ad27bd7eb30501" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/models/block/level_emitter_off.json" +hash = "42fbb68d6f1f68fa087c66f57a64b1e93e70b3bfc65c82ca905ebc0d24442a3c" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/models/block/level_emitter_on.json" +hash = "edb0a3cf764c169aaeb9865e40734a676b84a76165a291aed72cf9caedc1019e" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/models/block/storage_terminal.json" +hash = "869838aa666cf12fd9cc63a88b7a59eb62f08f2508919681f992a8a9506bd20c" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/models/item/ts.inventory_cable_connector_framed.json" +hash = "de77e6cccbf5263e9fa50e976e47d340a05b88a54b7be3605ca06d314b4b09d5" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/models/item/ts.inventory_cable_framed.json" +hash = "620ed21dec51c11502170054e6224783069ca308f549db307af7112affab1e59" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/models/item/ts.level_emitter.json" +hash = "e90d500ef3224f1315259bbb1b00acd3a66730751f3b3765da2e6a49db11bdf7" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/models/item/ts.paint_kit.json" +hash = "83eec0441b82300e940247fa446c922f4e0f799a4077e4b96f46b65de7cafb32" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/cable_frame.png" +hash = "25e527feba20e3710ef4d04dd26a2ee6b840354fdb68edc7979bd569546b8802" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/crafting_terminal_front.png" +hash = "e585e946843f0c72a117f0e50648954e8e08cd20cb145958b56ca3ad3d22d692" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/crafting_terminal_front.png.mcmeta" +hash = "abf28852e57166700510a905ff7924bed463e77383179271043075012f3aa391" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/crafting_terminal_front.xcf" +hash = "7aae18c6680774d41bf2f4951e6d61822f3091a70b10aa3150d645f2831873c1" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/inv_cable_connector.png" +hash = "79d816ecb891f9d967301740a7e8fa01050c0e5795d716b2402db80773a90d31" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/inventory_block.png" +hash = "606d23c98d01fbfa442c11ba7461569800df5ec201bce8f26b8f8692c815b278" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/inventory_cable.png" +hash = "971eb6660a1d9a3d55a3a660943d34a9ee1d7c8307762eaec3bf3a94431f2476" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/inventory_connector.png" +hash = "19389e32bcbee326269e926a2ff222b93bb7d7551a7d9271014bf26bc858e6d4" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/inventory_connector.xcf" +hash = "a05302462785289561ba08c4ee1ed77625a56fa806fb5acda98a5e2d5f0fe993" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/inventory_connector_top.png" +hash = "6de4bbda5b3cc2510de08e43cb17075225e5abb7cbef7e61c6cf9154ba21dabc" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/inventory_hopper_basic.png" +hash = "4d2dc86fe5e52b86d78106b1a58959ef4429abe96e1dba0659e05f048e15b0a7" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/inventory_proxy_bottom.png" +hash = "3a57e22c6999ec44601ddd58f8fe83b733c76aefcc5a0d99230b2e720b7c99d1" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/inventory_proxy_filter.png" +hash = "47787fb93c00d56ddf247a6d0b6b0eb57c85932daee394400a93900afab8d254" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/inventory_proxy_side.png" +hash = "eadba9e114698c5d046be705207b4f6d2a7535686f1facb3f67b3d49718f4a8a" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/inventory_proxy_top.png" +hash = "0c65d0fa896e3a11150de272cbe52eb275103b7ca561bd64a82a12c298df2cdf" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/level_emitter.png" +hash = "df67bb3d6726b314f0b724c35924e8da3c85e43926cc0e1f61f455f1b6490f6e" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/level_emitter_off.png" +hash = "6bbb623eaa8d8ca0fc4670d49c7ebc67aa6257211a369e9bbe941c72b90bd3ec" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/opencrate_bottom.png" +hash = "3e46a1ec0f7c2413043db354c037eed34a36d868d0fc328bcc8c4a1c04f10833" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/opencrate_side.png" +hash = "d2221bf0dc24adc24dcaf18c954afe75df730075a83c29c64e28972cbc49dbb6" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/opencrate_top.png" +hash = "2ff14574d9b20f663b1c6275c4576e3ffeae5a518ec23a64b0e9c44b82f71095" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/terminal_back.png" +hash = "6a9d2ce0221a27154d2137f4625a9a371c56dc2452cb189d9c7dba82e8eb7fff" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/terminal_back.xcf" +hash = "25d259f94c31196168853d97d697736fd6d9ed6ead0f7c609c98b5848d58ca5a" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/terminal_front.png" +hash = "3f5c4cd25957b04c671ba2f349e43136b93128e368ddb8fddaf423182b2de711" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/terminal_front.png.mcmeta" +hash = "1a3925b134ff4e25d2092f12db23787c7c908c68bcaa91186a732c89e637e8ca" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/terminal_front.png.old" +hash = "90f4129ca1625b65f305799db8532f9e58e93165bd57f595f825f01c646be494" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/terminal_front.xcf" +hash = "99aeb8b27e457aff8b9fbd1a583326e735f510e78bef1de242ed74befe3d2283" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/terminal_keyboard.png" +hash = "ac8bc0167224d807ad22a505d2bef35d008b54f3dd0a2b97a154b4813648ea94" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/terminal_side.png" +hash = "0f8a8b74b519b290651ded858a2318f00519ac49dcd5f1bd190b0b3887913ec2" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/block/trim.png" +hash = "1ea0d008caa520c47140721653871171652b1aa9b36d6a691b5962d7df1424ef" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/gui/filter_buttons.png" +hash = "0781bfa4500c2b264981f79319a45180f6b20f4773a7526ca3931e2b4ac3bf34" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/gui/tag_filter.png" +hash = "58df57e356c394c4305da49aaa41dcb0835b29b31546281e3582621543483d7c" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/item/adv_wireless_terminal.png" +hash = "e1734e2e758f79d0dade6ed277ccfb8b1f768e7a6d84c0b7fc4a27aba6e96fb9" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/item/item_filter.png" +hash = "0ed8edd1a7cf32dd5adb4254a8b8c6cf74acdf6ee7691fc1a863f835ff59d863" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/item/paint_kit.png" +hash = "9ba24d131b41592cc75c083bde1c1cd9137c89d4da8377e7592088bec849a485" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/item/poly_item_filter.png" +hash = "f4c4485c89d706f5726215e291805e514a42f621671778a143b5604cc592898a" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/item/tag_item_filter.png" +hash = "7afe938fe4bc74327f8d10e815085c260fb183fceb8b97d838fd66606978183c" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/assets/toms_storage/textures/item/wireless_terminal.png" +hash = "35f6b7024fd928f7d3732f9d9ebed215ff4ef8bc77f9180ece7e8e4579e24084" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/pack.mcmeta" +hash = "8847306e9862272a5df453c989b9a57da6149be1294d989e392e6f51a553bbf8" + +[[files]] +file = "config/paxi/resourcepacks/MetalTomsStorageModCustom/pack.png" +hash = "44160b3aff954dd999014eafb9a939a51e395ce418707df73569a38820d2358e" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/lang/en_us.json" +hash = "098745ee93697adbb1495a1995d6f445d58221177cfd762e2b5dd9200972d030" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/lang/it_it.json" +hash = "23a83d96bb8d59356276a73cec7d82e73dd9dcb6a194f5d456c87bb8c1391c12" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/lang/pt_br.json" +hash = "b14694d349645ee1900b6f1329aa0345edca00a9ac1889668ee14f4f030a36fd" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds.json" +hash = "c3e03c3a5483b909a5d220ccdc5477f0629d3649825998734e2f344ef6016dc5" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/creative/becrode.ogg" +hash = "9309d0b93ccfdf22b784e357920d85662deee6205c7241f72c85bb6d1dfcfd41" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/end/coda.ogg" +hash = "dea3b633c8e49ca7bf7a6ccbf10e5d9991de99ea02fb8ee49fef9e2905b7d45e" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/end/the_voyager.ogg" +hash = "7f9152c4e4d3c782002ddbb5eb84094790cf82744292d403a9796eebeb661e2d" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/end/wires.ogg" +hash = "1dca1fa0ce371b8d1f1794e3174081513052d71832fe182767f2b6065be5b1e5" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/nether/accumulon.ogg" +hash = "f15cb97921d14b568ca3e5eb939a8776c51754a8a14e6ae9904de461014fdb50" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/nether/eulogy.ogg" +hash = "6f920a2a0b131c7ca584d50d6c4ba92f183e8ec432ca9a37c6bc18d060121f4d" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/nether/gan.ogg" +hash = "15bfb4943ab5c878d23a95cbaab1f5e7a8ba83a6427675bd3f797206431fcd39" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/nether/nowhere.ogg" +hash = "68975b16083b78059f4e3232cf41595f33befdfe05e55d2e00ca45603b577933" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/nether/quietus.ogg" +hash = "35fe7335e17a70cf8eac9e2c851d962854f25abbc373d9848958be243463e861" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/overworld/anais.ogg" +hash = "bfe0f40a946f8c8018c6abdb0da47bb7ee0eed11ef02994abbf29f5cbfbde396" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/overworld/aweigh.ogg" +hash = "93744341d626a84718f2c9ae92461220cc317d6d10bb871ca45feb5f44bdf1d9" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/overworld/brave.ogg" +hash = "f861fc68f91d43af63e4f7c8a8a09a409161ceab77a61e54c2c7bdca41718158" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/overworld/donhacky.ogg" +hash = "b8983c93f6e0a227369ac36ed8131a1ee6b0b98e9d5ff9d965b6b960ce3920d9" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/overworld/hello.ogg" +hash = "1ca27bb939445e33c693c40b3e128a77bf6b0d81c9c8811f78a47e7a0111993c" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/overworld/idle_hands.ogg" +hash = "6acf11770f2ccb48a2a6a4850ff7c0724ad97d55187324c87004201ce7bdf435" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/overworld/overworld.ogg" +hash = "d495c8810c1280130e9bf861eca02caee06353536c4389b07b4424fe6ce51bb8" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/overworld/remote.ogg" +hash = "d720976cdf865b3b8e2130453ca0ff207b780432bf6c156143b5ca9155ef67f1" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/overworld/rodhim.ogg" +hash = "eb5bd5bbc3cd2396b3a1f28eea332d6d823d017be4c263aab3af25eb1e895aa3" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/anchor/sounds/music/overworld/yellow_haze.ogg" +hash = "2fc2ea3f46b6898b5e2d25b92d3a76965bb913fe62f39da29ccdce3202569d35" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/default-sounds.json" +hash = "25349d7826b5e9189674616607779337a17078899a8fbdf3f0bd44064088b6e4" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/lang/en_us.json" +hash = "d914176fd50bd7f565700006a31aa97b79d3ad17cee20c8e5ff2061d5cb74817" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/sounds.json" +hash = "c09c84955ea1f5a87e840b0b2ae5476bbf66d34c70d02a7e5ebb262881909f9b" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/sounds/random/levelup.ogg" +hash = "76145e50e29d9aa9eec127b572aa0629f1dc185dd72b39b798f6cba5c14b73d4" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/sounds/random/orb.ogg" +hash = "76145e50e29d9aa9eec127b572aa0629f1dc185dd72b39b798f6cba5c14b73d4" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/advancements/backgrounds/adventure.png" +hash = "d4f7e14b4db26cebb1289bee3fb43c6f5c4e338d8e9174ec7cf8efb33c80bc6e" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/advancements/backgrounds/end.png" +hash = "34c31fb5d17c5b4f2b0e6d088a71f567c2db32a6a11c899ad74525e5e9e0c722" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/advancements/backgrounds/husbandry.png" +hash = "4a37c01b3fc5b9837fb4dfa5f7d67030ba49f004f8d12fb52501d4488fc49eb8" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/advancements/backgrounds/nether.png" +hash = "bde99a8c1ccf28181bcd72e6e742510cf04468ed69ade0e7724f3a44c6bd7b29" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/advancements/backgrounds/stone.png" +hash = "496f9736bfe2aebdd57a67a972f7cf52bc5d1ce410831705e87686dbfb3e91c2" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/advancements/tabs.png" +hash = "1d4ec8e1bd26e6b27b032c48b79bc0e6fe89fb6d5e09dba2e5601220d1a20807" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/advancements/widgets.png" +hash = "131d59d42428f0acc119ef7c86bedf6c6691fe2ed6580d48cf088abc6241986b" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/advancements/window.png" +hash = "b1876eceb4377f49991f9b3107b72af98e2effcc6932893f0d18d711a42fa204" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/bars.png" +hash = "0e33076f70bece665e780f4b671799bc0cd764aadcb12940636d5fe7b1392575" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/book.png" +hash = "5e1243d3679ce37deb02815a437f3903dcb64e24b07c518571035c4ddf5ff862" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/demo_background.png" +hash = "0a07690631dd9ed1343d978189d92815305feb0dacf8f4515e0822db4d3f0cc0" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/icons.png" +hash = "f9c5d66eeb5eb52a3f831f2f349c4ebbec07a257e9db0a82c59cf4434847578d" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/options_background.png" +hash = "4eca2078d230670668ec3aeb50423cd0855029e1f997869503e93c4889106d7d" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/recipe_book.png" +hash = "8c8b8ef02c7d3c7ebd7fb3007c4fe5b8cfd3ff5eda070d533c124a8ba3360d95" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/resource_packs.png" +hash = "e5a94130a4821e015b24ab2d5e024be45678a1729cc03c48d78cad83de558923" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/server_selection.png" +hash = "e26be23792797f0681d75c78a564a9fcb342251947c595940d7101d5064c6859" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/spectator_widgets.png" +hash = "ac206c8762012d5f4bbb062de3393b629c3279fc769098409d921f2dab0a3e93" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/stream_indicator.png" +hash = "a2cacebe84aa5dbb788cc337b33906d197fc07db00011102731321db3c06fef0" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/title/background/panorama_0.png" +hash = "9e095527cfe69d29d09ea7820a87116ada6dccb48ad0c257bcab3ca0c5e77f0c" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/title/background/panorama_1.png" +hash = "9f700323a321dcb537842d41ff27568674b6bd48f40665365497f188eb07f794" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/title/background/panorama_2.png" +hash = "16a5b561c85e41c7cc26bf441c289131f77126ac6f3751cfae796657f8e182fc" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/title/background/panorama_3.png" +hash = "81a791efb5bf51d21941300cc4117fc690eaa5022dcb4146b5f8e93fe6c422a7" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/title/background/panorama_4.png" +hash = "39facb6e128c67296cf06b452a5e2d417c1d6f79440bcdbf5144bdb2adb692d0" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/title/background/panorama_5.png" +hash = "d7df8f3a84cabb7eb121acf49925b0e4f803a72ef6d62a14efd0953deedc1932" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/toasts.png" +hash = "004e4f788ffc2ab8a61269350395dc72cd84b31dc1fbb9d1d8da7c887ce43d85" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/widgets.png" +hash = "b317b385152eb7ec09e8aa5739af0b6d0cfe7f967abf534e544de44be6a492ff" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/minecraft/textures/gui/world_selection.png" +hash = "f7c65e6a705ebb61146b2b1d5e784b47bdfcaaa596b4fd028211edf13ae151d5" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/neo/sounds/music/game/deep/fungi.ogg" +hash = "b0ae1c34bc304b33e1a20edf77ebdd6beb22c5befabb349d4796d7a53547e1d6" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/neo/sounds/music/game/deep/pillows.ogg" +hash = "cb955dfab3ccf9e6e46d577612e4ebf610259999c395cdd796d58a3d9672cead" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/neo/sounds/music/game/deep/three_marbles.ogg" +hash = "a62b8cc92bbf30a0520e5460d2e5efb68078c652331cc969f19e7cd6fae0f480" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/neo/sounds/music/game/deep/thyme.ogg" +hash = "f74ad45faf4c68360227b80509a09593e26708cbc4df740c3f743a929c41388e" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/neo/sounds/music/game/nether/honig_ums_maul.ogg" +hash = "2d1864d6c5e47a4c16ea47a839c836c1962d686aaea5d323582ccd233d19eafa" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/neo/sounds/music/game/nether/pinnacle.ogg" +hash = "174a44cf2e1bee47dc6f9242bac8f6852ad96d5c220aadc20356bc2ff8392e81" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/neo/sounds/music/game/rain/subwoofer_lullaby_ibi.ogg" +hash = "2ff1c1d2fa17482af259d173df2ab30ff5f4f2651df1c2b0329e70cfa911f73e" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/neo/sounds/music/game/rain/sweden_ibi.ogg" +hash = "577f343114eb48f0d3c3e66d9faa9fac3cf134f14f51ec575f302f9167d9c812" + +[[files]] +file = "config/paxi/resourcepacks/PWB/assets/oldmclogo/gui/title/edition.png" +hash = "a1a62b560ed87d079b39a0c47ed3947d19321f8f6261b794de97edfed601f2c8" + +[[files]] +file = "config/paxi/resourcepacks/PWB/pack.mcmeta" +hash = "5f0c08d70d3b46b98d329c22446dfd67a8dc9d9b5fe01c54e5deca70e442761f" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/caverns_and_chasms/textures/block/cursed_fire_0.png" +hash = "8ac1a69809ec6638889ffbe7c758d54f3d47039917dc9178c3dbbddf7b1ca1cb" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/caverns_and_chasms/textures/block/cursed_fire_0.png.mcmeta" +hash = "e9b8025fde1b09b0a4d2a38427b04f98f28a593045be6d177eb2b29164c872b0" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/caverns_and_chasms/textures/block/cursed_fire_1.png" +hash = "fdaa7f375ca775d2dad7cc9c3cd58a3d0109236e30c64ce8e41962f41a99faff" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/caverns_and_chasms/textures/block/cursed_fire_1.png.mcmeta" +hash = "e9b8025fde1b09b0a4d2a38427b04f98f28a593045be6d177eb2b29164c872b0" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/cosmeticarmorreworked.disabled/textures/gui/cosarmorinventory.png" +hash = "7484059030712b567305c43eebf600f60ea8a5086fde2889406ce93c9ce14e15" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/curios.disabled/textures/gui/inventory.png" +hash = "b4876d3e810a8d7298fec18ac4e9ee4ef053f9770cfb1865e58a06ac6008c84e" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/curios.disabled/textures/slot/empty_back_slot.png" +hash = "d7c24341f3424126f714442ad41483abb5453d3fd6cac67103cbaeaece32cea7" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/curios.disabled/textures/slot/empty_belt_slot.png" +hash = "bcb32ffa6c4eb316d83843a4e50e496e59aed2788f8ccc07277d4dcf622d6c9a" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/curios.disabled/textures/slot/empty_body_slot.png" +hash = "0c782508ed5e410df073ae79581364511a7299b1a3a686ee8b858b81a2362544" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/curios.disabled/textures/slot/empty_bracelet_slot.png" +hash = "9cd6e700bbaa9c489b4a1f2f99215caa05f69e51ba740ca1b5212b1bee3190f9" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/curios.disabled/textures/slot/empty_charm_slot.png" +hash = "cfc35abd30015eacdbdd8e3f3dde1c380191dbda36d0f753044f65a9a2486ede" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/curios.disabled/textures/slot/empty_cosmetic_slot.png" +hash = "8f8f80f3baff40102622945a3f885692391f732a3fca76aec5232ebd4236d166" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/curios.disabled/textures/slot/empty_curio_slot.png" +hash = "7b8ad568aeb61b316b437e4ce8c9fbf82b5398b0f37aba6d454d85fd8b9aeea2" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/curios.disabled/textures/slot/empty_hands_slot.png" +hash = "7b72b0c94604da507c4c27fd62f1dd077cb4ba8f7f1a7150be6644a2ca307d35" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/curios.disabled/textures/slot/empty_head_slot.png" +hash = "fcdce8a8614d2d6ebdfe19ef892c47723fbeafd90bf61b9e344647b9f3cf3983" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/curios.disabled/textures/slot/empty_necklace_slot.png" +hash = "2772dc2c2d0249de5ebfb10c6ea67704866c5cd167dc214797edd20120739233" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/curios.disabled/textures/slot/empty_ring_slot.png" +hash = "2de441b47ceb1d061539be837c9228d202be4944ae4b18565109c61289ac344e" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/eidolon.disabled/textures/gui/soul_enchanter.png" +hash = "5c4182047b631ebda706e27086c286e134027414765b297d53d251d24a4f0576" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/eidolon.disabled/textures/gui/wooden_brewing_stand.png" +hash = "9f5383f1eb5a68469f24acd96d010b62ec6ee4414bc4a4f9784e3333ad005864" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/eidolon.disabled/textures/gui/worktable.png" +hash = "85aa551ef3d35a4bf9b44e676e27df2fa2fc1d9caffc106e4d8e16aafa50299d" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/endergetic/textures/block/ender_fire_0.png" +hash = "38ab9f56bc8ce26b6f16d682b8a057e986229b5f9b276e75e0bd2f1de7cb0f29" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/endergetic/textures/block/ender_fire_0.png.mcmeta" +hash = "90fb44a3511d279e0f59d80d82799e72ee6295ef29420184f76f218d4d3d653a" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/endergetic/textures/block/ender_fire_1.png" +hash = "bc377bb790eb9a815660ddd51e5eec317cc6bd4b3e6c844f45a9e3ca4678d959" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/endergetic/textures/block/ender_fire_1.png.mcmeta" +hash = "90fb44a3511d279e0f59d80d82799e72ee6295ef29420184f76f218d4d3d653a" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/environmental.disabled/textures/gui/container/kiln.png" +hash = "e1a9d909f3800d11cef83fb6dd0580b0d87a0fc2e5a46cebe231080dfef854a7" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/environmental.disabled/textures/gui/container/sawmill.png" +hash = "05520df5bb1ab8f7603348271407871f9678a1fffb9bd62cc9a1be394f6fd0c8" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/environmental.disabled/textures/gui/container/slabfish.png" +hash = "cdcfff9a3b697d0a58af3fcbff46a9aae0a76fbfb6b814cf74b1256621e93e69" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/etched.disabled/textures/gui/container/boombox.png" +hash = "ed76277d66eff10d5deffcc50084bd566d30dc4ed35c0e8d7561befc71ce3c5e" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/etched.disabled/textures/gui/container/etching_table.png" +hash = "135ff18758c96041a48c8335f1d819310594e22ad2044dfcb1c07718f4f7c04d" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/etched.disabled/textures/gui/edit_music_label.png" +hash = "30ad9402321ee8168d327fd2269a423c18fad20ff953d7652c35860b6d85697a" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/etched.disabled/textures/gui/radio.png" +hash = "3cb63d29a993f6608c694319069da59fae0c3ee07e922ab4d4c5c8a610549171" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/etched.disabled/textures/item/empty_etching_table_slot_music_disc.png" +hash = "24613fd3e9e4bb1c04f996770f038744bf3106f033b00d4c0702880f91998496" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/etched.disabled/textures/item/empty_etching_table_slot_music_label.png" +hash = "7f1571663420c8dade672864292fcf212566aebbbc482eecb90b0a62dd230d5e" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/farmersdelight.disabled/textures/gui/cooking_pot.png" +hash = "4cac28c3c5e20ac6cc535e5061f3b500569f96c5334aae299e19a9056095c172" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/farmersdelight.disabled/textures/gui/fd_icons.png" +hash = "12670a161f5a90dca9e180c84af0482838d573caffa69a86f01fcabbb6e4c6bc" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/goldenhopper.disabled/textures/gui/container/golden_hopper.png" +hash = "38f07b9f1348f9be2d24690acb241bdf5b9a53426bcf5e67a243fc62c306bb68" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/jei.disabled/textures/gui/button_disabled.png" +hash = "04cec890651c2aa419d757ef7fc94a03823f8543131e6882c39aecd816df84c5" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/jei.disabled/textures/gui/button_enabled.png" +hash = "f87216d7c3d78dc99be56b87859342a270b3f9675317cfd735f905b834e439cc" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/jei.disabled/textures/gui/button_highlight.png" +hash = "feee803d2581cc7a086dfbbfff5595cac75fe2440e1b652754177ded1d32a1ce" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/jei.disabled/textures/gui/catalyst_tab.png" +hash = "b2db3b5b0a0f0896546e27b72c781d97c268396f02ed7adb8cecdeccc9a2126f" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/jei.disabled/textures/gui/debug.png" +hash = "153d9dd02d5e97c397e041c8dc3195a0ea3715947872bb1fc02070c58809508a" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/jei.disabled/textures/gui/gui_background.png" +hash = "61ff99a3b9c6e66ee63b787bd79df58ea77ff6d3341cd9c3f264031146f74047" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/jei.disabled/textures/gui/gui_vanilla.png" +hash = "a985c7c559a4d47f7f11d118edb0a0b3336baae43602230150a30cce39f85b5a" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/jei.disabled/textures/gui/icons/flame.png" +hash = "fb69a901eccae9a55963ddfb97cb326c1873cabd737dd5ef0fdb04daf6b72f9c" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/jei.disabled/textures/gui/search_background.png" +hash = "b72f3c4ecbaac19f104b334f72987c6e3b152c96a5c942662ee5cdd145f370da" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/jei.disabled/textures/gui/single_recipe_background.png" +hash = "b3d30108dc1880d674561c7e08c422f4738acabb81ef0ae922677931de4e684d" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/jei.disabled/textures/gui/slot.png" +hash = "f9a60f28df9ffd986ed028aaa642761c7bee6b2af7b80f557d367d74155bcf75" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/jei.disabled/textures/gui/tab_selected.png" +hash = "be9f3bea940c765ae7aa21c2b949e8089358d88945628964501fb8c116e44353" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/jei.disabled/textures/gui/tab_unselected.png" +hash = "76bf9390e56074d596859fe180d8b57c3cd0e0df58106b2314c01aa83792ff7b" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/locksmith.disabled/textures/gui/container/keyring.png" +hash = "090c57d6060b52b209a04d67ba23ef8721be668eb106f63284fa16f7491cb58b" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/locksmith.disabled/textures/gui/container/locksmithing_table.png" +hash = "1452e34fe1ab0d06d5e4452b4f545b237d6eac3109843e69360136b7b15f3a23" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/locksmith.disabled/textures/item/empty_locksmithing_table_slot_key.png" +hash = "65c2c951a7e37b58f8d64eb978c07909fe4df540db04e50de74e4340a1125fb4" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/mannequins.disabled/textures/gui/container/mannequin.png" +hash = "d4e4947d2c7172d5c9d65f7d77f08766208da8fc6dc873c0f364487543e25a52" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/mannequins.disabled/textures/gui/container/scrollbar.png" +hash = "3276e54ea05a579b0f77e008baa561640cdbb91b5cdb45bc8593e92cd3eeeb1c" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/mannequins.disabled/textures/gui/container/statue.png" +hash = "603d62109b331493a29c6bbd0f09f819e0040e8b140e0f38fa8169c4968a63ed" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/mannequins.disabled/textures/item/empty_mannequin_slot_mainhand.png" +hash = "5487fc921cb2f53f1a4b2f38936c6a64346b573fed11635543b18eddde79c03a" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/blockstates/coarse_dirt.json" +hash = "c8f688164851622496f2902a66560c160b17a5a9fdb3a0c70119bc1d0515a1d6" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/models/block/anvil.json" +hash = "827764c4bb727ad5a7a10aae6d5a922c331504b9f1dae9998889b6a26e2b019a" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/models/block/chipped_anvil.json" +hash = "94b5ee0cdc1f9b64e53c3e7dab98cb88bb91325cb9b3331e88c1e09df089c995" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/models/block/crafting_table.json" +hash = "05b78de751250c8e6cdb091ea0006c8445aa8a2e09df3a5a00fe086f665a8a47" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/models/block/damaged_anvil.json" +hash = "05019920cef76b1b44751a0524664b67dd52527c4da337ae8321e5590ff572d0" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/models/block/dragon_egg.json" +hash = "74800353a2ae24ec67a25a208ad949ccebaa73486f0fdbb7ba273c64913715f8" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/models/block/template_anvil.json" +hash = "501d893971a4d5d9af2b5e39695e35015f6a9b1c6fe43558537224bcbfbc3577" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/models/item/big_dripleaf.json" +hash = "be82739527f0d477ba591def73ea96d3bbc4b602c6c2f6927bdb6846677e234f" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/models/item/small_dripleaf.json" +hash = "781e6db7c7016116463229263c18b608abdd3e6d2875ef70f14127cba6dec856" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/models/item/spore_blossom.json" +hash = "db6186524147720cc77d12d3f258c74ede3b7b3415f80821c3b624d8cd467be3" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/anvil.png" +hash = "5d23a69f4b94edcaf22e40af39f2f2232edd6a03e351a929bed2244cebe814ee" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/anvil_top.png" +hash = "2af09b609808d64f608246e151bb589cf9c6b88d0415a287096076477d6e5dc4" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/barrel_top.png" +hash = "6ebee2e70454cacbd4b2895f3875b6aa9cca2ba677678f158deaf176c2abd9da" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/barrel_top_open.png" +hash = "fa333ab3fa31cef5fac5d74457f3d29293fd3aae260b959f9a5bf58898b21af2" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/beehive_end.png" +hash = "eab43a4f77a6423b8e35888ad66887054f4b1ba5e62568fd4153d2042049466e" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/beehive_front.png" +hash = "1123c86288c9f5ed7705b14b42f719ef30bd89781dca2af94bc55da1483ead3d" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/beehive_front_honey.png" +hash = "c69340b758ec14c66be1ab58fecabcb7d3db7d7250766836b516bc3db122da89" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/beehive_side.png" +hash = "2b9fb7e9b181410159d5fe2810d762c01d8cfe51122f53e5e65a8be4ec6f0bb6" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/cactus_bottom.png" +hash = "aac94d1c8039bddb5470cd7e210a42b33eeca5a6d0a523108abccd25f20a5f66" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/carved_pumpkin.png" +hash = "bb9c11418a9d333ea2af77ad80913e3c1cb9f9a440e14a643ce2576845473514" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/chipped_anvil_top.png" +hash = "af045dbcf3127c157b3f15cb53bf3580a52e33d98d04be16acf96b128ccde72c" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/composter_bottom.png" +hash = "96337c18d47d9708db4b75a1631c9c1b1f8ebf45d13f98bacb7058a8997ac893" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/composter_compost.png" +hash = "0ddcf371829bc0302dc112f2774b39d162f0e1af704240c44ab037f9e0911e43" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/composter_ready.png" +hash = "368f4785103617eb5f6f4273250aa26cf67c3ffe3fca1a5f86b27cae8a8dc43f" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/composter_side.png" +hash = "368a9a4f7cf5460ac2e6ff50b96d4da70ba0fea3f4b40c307b5feca5d5f63ab1" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/composter_top.png" +hash = "aaa6b4a18b0a11bd47cc30779c6d6d0616e7e831dd069a134fb0984ba00a4074" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/crafting_table_bottom.png" +hash = "41eaa004b7198bf64fb9bc91e1b8b84080815fc86bbecde308f67caaaef99dfe" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/crafting_table_front.png" +hash = "13458957423191edc03a22a22880097f0facb3f3b2fa4a84a74f869824abb7c0" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/crafting_table_side.png" +hash = "7dc2961f761f1c3acc67f6b31670e8f6f7ee9f09bb496c5b913461293c2eae74" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/crafting_table_top.png" +hash = "0aa7401c4b44b18f67fd1d6cddbd5c3a854a51a56e8847aaa1cccbd9f79d74f5" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/damaged_anvil_top.png" +hash = "d7e5ce29d22dbafa07645141b6222fc2d4237ae38f01afdccc7c647bbd5171e3" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/deepslate.png" +hash = "0d6f07c464a8c897a8c3de2ebd23399ea4600e1fac903cb9b6c4ce1e198af20a" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/deepslate_diamond_ore.png" +hash = "14ae95f3a70b20bbf418df4e9c732df3fd3e84326f608c6d22332af922bf5200" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/deepslate_lapis_ore.png" +hash = "8d5b29ad0cbeaacaf9dd4b998b3cd30dbb18c1a91ae0be9cbd07d293c07129c3" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/deepslate_top.png" +hash = "7e1580ab811e13580588616653f4b0061fb76b4a65ce8c5cd83ad5a3c8597d37" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/diamond_block.png" +hash = "3c95976e64d3aa22b055df3a4d6e33752b3c720602dd845e462eb991c0507250" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/diamond_ore.png" +hash = "29e69b78f48c84a355459776a675bc007ec96ec66bcd2055c165657c170dec4c" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/dragon_egg.png" +hash = "e60d169ac2b39b06c3ee8c3b9f0ce13a8468b9a6a50b44841635f4d8570e78a5" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/dragon_egg_particle.png" +hash = "fd7c84cfe2863dd494d53f67d8cef20068a6cf9bf4d13ffcc3797695d68dc07c" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/fire_0.png" +hash = "5cb7da960a4011bd4bc47396e8e956c59724fabf77aae74ba95bd9c92d5f64dc" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/fire_0.png.mcmeta" +hash = "e9b8025fde1b09b0a4d2a38427b04f98f28a593045be6d177eb2b29164c872b0" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/fire_1.png" +hash = "edd57ed584a96e416cf5ebbf857f3593c0f2ed10474593ea4646ce7ca5f1dcdc" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/fire_1.png.mcmeta" +hash = "e9b8025fde1b09b0a4d2a38427b04f98f28a593045be6d177eb2b29164c872b0" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/flower_pot.png" +hash = "811409f36018959e4a43a6190306d47f8c879633cdab7e2cc8504dc0b67c4ed5" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/gold_block.png" +hash = "aa4968d057eb864ee54cbb208694be8b50a215a3c7f57264be2b7addc7e88e75" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/jack_o_lantern.png" +hash = "19c4b8168f441da4a4281f34e7bb3633134af6b97c15d8f4f2856c46620d9bed" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/lapis_ore.png" +hash = "53d85193255c3398d717508eecd98e2aa193532e52854627988943e81f8de670" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/mangrove_leaves.png" +hash = "b82c0928024336b89105d2c5affde83fcdea4974b23e11c03dc3b018780d6fbf" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/mangrove_log.png" +hash = "f18b3ffd2cd46f19bf4ebe67c3ee16cceeb53c4ea74dc4ed1a54791a3637ec98" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/observer_top.png" +hash = "41c7465565ae0b8929ec1b02d6543bc2de87456573d82a894e3529a5085f3f76" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/pumpkin_side.png" +hash = "5441601307aba46579786ef41f32a14caae2ba270709c530609815d5b98147fd" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/pumpkin_top.png" +hash = "4f8ce26d2ab4dc683204384bd00dc649864079fbe325f82fd75ccc05973e3cdd" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/soul_fire_0.png" +hash = "24fd2d6765f5d44f8ae6c5f01a4a57c4a46556edcc8afffddacdf974bc7710ab" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/soul_fire_0.png.mcmeta" +hash = "e9b8025fde1b09b0a4d2a38427b04f98f28a593045be6d177eb2b29164c872b0" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/soul_fire_1.png" +hash = "0eb98cbd367cf37c297637fda4eba150ddaa92aba2b4be3b8c01c48303f85da3" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/soul_fire_1.png.mcmeta" +hash = "e9b8025fde1b09b0a4d2a38427b04f98f28a593045be6d177eb2b29164c872b0" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/block/sugar_cane.png" +hash = "220c7aeb2240716e838c87d46a85b6566a98d61ac0e921957aa4e82484413686" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/entity/banner/base.png" +hash = "f3cd48b9cbaf4abebc0b32ec672305c62e0dfed480340e0408646f554e1c9d0e" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/entity/banner_base.png" +hash = "667e954189ff1f71006663351259063df9dfd532465c31543e33d81e888ba6e9" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/entity/creeper/creeper.png" +hash = "fae33d869ee5f71b91588529c5cd8987aa3a8cf0d23365614d1fedf48bcf76d5" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/entity/ghast/ghast.png" +hash = "9cd5e4d628a483cb933f20654d95f4a0fe18dca272a27b01e41c3589642e0f84" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/entity/ghast/ghast_shooting.png" +hash = "75a8ea875b9e10ab824898a23d473a633c2ff2b6d53c68ccab39abdb3b65727d" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/entity/silverfish.png" +hash = "1f58d29af825a375ee7b1bfb57c28cbf701e6241b7f6bc01dc4e0773da37614f" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/accessibility.png.disabled" +hash = "424b01955b0ed8f0beaa11b4c571531fbc95acc6dda909d7414b8cc8a95960be" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/anvil.png" +hash = "9d2ac151dd97085031063952d035b0da59d5b6bca924c00bb3a4813a2c1bc823" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/beacon.png" +hash = "62e481efc71ba9e2fcdcad7876dd32c2c2c094a0057405f61ce20a15d1c48031" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/blast_furnace.png" +hash = "733df3f551b32051693bcbd2d4af9e6e3857d036fc26a6dca0fbb75f8864e47e" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/brewing_stand.png" +hash = "160698addd500733cfa2a63ca7ccc0d53f4fbf6493c066b492a43057c8bf6709" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/bundle.png" +hash = "569fe0adccdb06cdb78eeb078e8d259b4e3b39097403a9891fc72139a1744b37" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/cartography_table.png" +hash = "cb2b9da821051e0b40ac098369ea6634d345c9fd0c65fe2e6df97786ad073f38" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/crafting_table.png" +hash = "2d97be6263ff8c3e9f0248a1f2c6dc7348ec26a45ea790d1a0686cf380e89b90" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/creative_inventory/tab_inventory.png" +hash = "413deeb805ba031aaf5a831ba05585c85340d34ac7cb788a915fbe06753b2cb4" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/creative_inventory/tab_item_search.png" +hash = "de27bb885d4e70c63a0829d1f6c3127e0271758ba2599c5e615a999f27866042" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/creative_inventory/tab_items.png" +hash = "d6f7565434ac6249af2259c94a9281b4412eb5b178132a58d2835c92b09ca663" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/creative_inventory/tabs.png" +hash = "1f81ed2d2342e2487a7e8e8ebbfa63e88a47ec88b26241ca7a68869f25fa9bb0" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/creative_inventory/tabs_3.png" +hash = "b8993e2e007968b6c17a9cf1f1c27418a18446a123c9dab25b8f8278a9acd089" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/dispenser.png" +hash = "3aaf7f08e029e21b1ec32faadbbc3e70f04708780613a47598f806854285eea0" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/enchanting_table.png" +hash = "3754dcb93c2b00d8cf3373ba30a533f65e4fef8de2c0b140dd544187a432f719" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/furnace.png" +hash = "733df3f551b32051693bcbd2d4af9e6e3857d036fc26a6dca0fbb75f8864e47e" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/gamemode_switcher.png" +hash = "ad0e5c36d7338f5be21f070279a405e408b46bf0ee7d439aa50fd1bbd2185f7c" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/gamemode_switcher1.16.png" +hash = "76db30da4e8d94892327c05983015c94abccbb031fa97d67ca52dac725c6f220" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/generic_54.png" +hash = "442fb97e6b229f8174dedfb7eca937c2bb34ce0b11d57004d5488ba690c5a6e2" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/grindstone.png" +hash = "4c1610f257b4d6ed91103cce933d553453dbf87d5c7f4a51d0352c0a471a7c5f" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/hopper.png" +hash = "2ec7985d8030fa0f7f1b32279695082ed25f831f326b8670470541e5c19a5c12" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/horse.png" +hash = "fd4cda98592688ae484bcbb1a1a8274e7da7c66d9e86dd7432807bdda0b47227" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/inventory.png" +hash = "5ec189d5938fa48570502b35453ce20ce672589505b70d69c839f7bb01823209" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/loom.png" +hash = "4f1a220a5cb89699ce4ca0b14e20e981f833fa1d4b3512fa04a67fe7344eb93e" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/shulker_box.png" +hash = "72fa458225f18f940c8c40d04033841df42d3a7d4608ae1f75241c28d43bcdd6" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/smithing.png" +hash = "65ebe6b9a38af2e094f62345153e778c9f2b8cb0ace423f78a11cb0f59e8421a" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/smoker.png" +hash = "733df3f551b32051693bcbd2d4af9e6e3857d036fc26a6dca0fbb75f8864e47e" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/stats_icons.png" +hash = "d0c43818d364b39bd648ad3fef0fee1616f216043560a548ebae86daff2a4089" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/stonecutter.png" +hash = "fa8645b410dba51aec2098c666446901debb4f7116f664391c4f5598f6c670a4" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/container.disabled/villager2.png" +hash = "a01decb023a5e841bb57074b9a005cdb380d3395d357652d8162fc08d4465614" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/icons.png" +hash = "914c1945e5b53d3440a5715a82da39c401a11679c05d202f395ab1f6a471cb20" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/recipe_book.png.disabled" +hash = "4aa7d1e8ff166d7e1a01ed68b7a647fd1039375ec1ac97094243ba9ec060dfdd" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/recipe_button.png.disabled" +hash = "5aaf66dc1e3155c10ac6129204c708c1069aeeda84239fec944c49012c29184a" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/gui/widgets.png.disabled" +hash = "8f2901ba4699cb89bbc44f91e9cf141da1fc4d65f6c43f6f52297501468207b9" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/item/big_dripleaf.png" +hash = "613e4d72b1e2f03354f038f7961bbe327e67290f29d8fbbb01a73e2b56fce0dc" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/item/empty_armor_slot_boots.png" +hash = "bacd413298ae524f6b5dbd470deb1a4e29946e803fa05ca8e50ee49daa0cf60e" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/item/empty_armor_slot_chestplate.png" +hash = "c51e5c1a33367ee6c66291b6b5aa97ed98b769051daaad76ef79d451e85ec239" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/item/empty_armor_slot_helmet.png" +hash = "2ef210b9fb5cdfb89415a1e31c3c576d7a17c532fecf6e600e9cb59cba38b779" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/item/empty_armor_slot_leggings.png" +hash = "13bde3f247e7982a2c78f0e553404f2d81f25367ed7ab6e9572b1291fa11f262" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/item/empty_armor_slot_shield.png" +hash = "0a98794cfef9e3111098d66f37ca984057b339023e5f8a81cdbc439271564c32" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/item/kelp.png" +hash = "69bcb087927b7d07e054b0bbbf3d28f4b530e7d6e042ff0c1c2f7af34283aad4" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/item/small_dripleaf.png" +hash = "79a2f3ad16038b30050c89f86f8b2c15b1fad83e18c90d07c474963213efa347" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/item/spore_blossom.png" +hash = "4ec8b344327c62b1d62c8d32623dee4b040ec244509e43564ec2052b253c0fbe" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/minecraft/textures/particle/bubble.png" +hash = "55c268803b1ad7e614a000f61bde1807f7c4d19895d28e3deeea7ce22df5e054" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/black_shingles.png" +hash = "4a7cde77bcbf1034845862f1e3113746c2aee871111fdb9fee652435c62b4f9e" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/blue_shingles.png" +hash = "975babb4c29efb6d813f1ef5ff9a30d6b7c5dae406a02be8dca5b9af5e367ce7" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/brown_shingles.png" +hash = "b30c96938320ade279e6adda1b7b829b3f29bff5df4ac683facea9014a1f8edf" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/cyan_shingles.png" +hash = "3879be8f500414dae2b86ef226cd676299f4b40f5f401e9e29a9c94cdaca107a" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/gray_shingles.png" +hash = "e51f6fc58b782dfe9f8060428735ba66258571c370044a1f1bfde0e950a13065" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/green_shingles.png" +hash = "a73b883cd0c7d0404f51a8efe13e56d9d69f4f5b558bd75dd9f81b22ae743d28" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/light_blue_shingles.png" +hash = "3f109bc9fcdc1620d7779586c5b71af43404ccbc45ac82c3fb2c887cb3065142" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/light_gray_shingles.png" +hash = "3a3c43f4f788c25400bc51aaff1e6bbacabbb4f210ba4751d2529097b7682a96" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/lime_shingles.png" +hash = "31dd9cf3d0645622b9373f078f468b230d975450d534a2323366332361d310c8" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/magenta_shingles.png" +hash = "6eb2d04e554a9dc341fbe74041c8a9c9a4fc2e301ae46fa0bd4dbcbdda8af474" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/orange_shingles.png" +hash = "618eca47681f80870d8733b6fb35dca2aa9252cee5d2cc5b6e3fe257fd4cb784" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/pink_shingles.png" +hash = "581637f06fbff32c92071e0e9e23383e89a1ad0a378f3db24dc53adde7dba820" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/purple_shingles.png" +hash = "d5bd51a421e9e04892d11943da20fe6a07bb59f2b97ac09b339fdd64a80ad617" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/red_shingles.png" +hash = "ff92f3c8c83f7034ac2bd490152ef14608df65ecbe3c728fb04536cd8f31cd87" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/shingles.png" +hash = "1df26cdd072c546b3af4195ca6d1553693625dc29fe70bf8f592a74636c44f1f" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/white_shingles.png" +hash = "5825d933a0222e7f6f0cc9e8a16fce978adf1016af6421fb5f75287922f2bad4" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/block/yellow_shingles.png" +hash = "9922f5149cddd86d6f1d609c74dcf761450bc4879074e2157080b43353c7911f" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/gui.disabled/crate.png" +hash = "df2b3cb96e394f2bf1d4f8d4cdb3dc8afb7bd57708141694ae0040e3be937eaa" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/gui.disabled/general_icons.png" +hash = "d36e21db7fc26c1fcad764c7f38d4c4233d1c5f7dfaffce996bff0592e4a083c" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/gui.disabled/jei_influence.png" +hash = "315efabf0307489b1b2b6fd6df89414d55bd3c791b5628f06c9699e45f541858" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/gui.disabled/social_icons.png" +hash = "4114c127212f9a99a0c63221a4d4b808d5ad26f003a6797f1dee9a335e37bf1f" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/misc.disabled/backpack_gui.png" +hash = "a2a41a1f44e8230f76f4bfde6a03256c6d1f57c12bcd287d7f5cfa478b4c69a6" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/quark/textures/misc.disabled/matrix_enchanting.png" +hash = "8867801a2275b1de10e118f49ec4a6f0692d06e425c124283063c8c7321a517f" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/vanity.disabled/textures/gui/container/styling_table.png" +hash = "3f561456d4085e83e49e76d12eae73511a744cad02feb6c9d0f14582d83e1bbf" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/vanity.disabled/textures/gui/styling_table.png" +hash = "3f561456d4085e83e49e76d12eae73511a744cad02feb6c9d0f14582d83e1bbf" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/assets/vanity.disabled/textures/item/empty_styling_table_slot_concept_art.png" +hash = "23b86eb3177b77c6759dec81873e42c98ffd5f217cd53791fd70666abc3e0c7c" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/pack.mcmeta" +hash = "46063f0df2a67b06c75593f3f826eb3c86b8a6be1a3335edefc9eb646a5a183c" + +[[files]] +file = "config/paxi/resourcepacks/PeevesNoUI.ignore/pack.png" +hash = "afdf7b3a7e26e06ef772da9bfc8c04d3eeb309b11045800dee1714a99f999d28" + +[[files]] +file = "config/paxi/resourcepacks/RailFix.zip" +hash = "54246a270407bcf59854f6a84e4c315cd963d177af87f2fda0fc4c46d530e732" + +[[files]] +file = "config/paxi/resourcepacks/SealedChainmailArmor.zip" +hash = "3bb46aad52756bf14f5c324d9c2147e08fa12982f551ddf8eff40412705cb384" + +[[files]] +file = "config/paxi/resourcepacks/SourceEngineSoundpack.zip" +hash = "df66e716e3119db9ba605d835e5597c2a86062df57579ad44f78ecb20b08ffa8" + +[[files]] +file = "config/paxi/resourcepacks/VanillaTweaks_r205932_MC1.19.x.zip" +hash = "9faa6753dd57c987316a9556304b81c078e595b3f49b0f2994de08e7a8cbdd8d" + +[[files]] +file = "config/paxi/resourcepacks/VanillaTweaks_r927690_MC1.20.x.zip" +hash = "d85b1bb11193c5926807b4b63c1dc5bcbfee93d232bfc6911c785cbfb57c65db" + +[[files]] +file = "config/paxi/resourcepacks/banner-pattern-clarity.pw.toml" +hash = "39d0e802801d132901cedee93e02a04d8c878a5c94a4183c67457762e3f4f18e" +metafile = true + +[[files]] +file = "config/paxi/resourcepacks/cooler-cacti.pw.toml" +hash = "5481e390d9195b7a9dcf0b7671170e89d64c0258518a99b9cbb1ef5e75934552" +metafile = true + +[[files]] +file = "config/paxi/resourcepacks/ginkgo-font.pw.toml" +hash = "441a236c688f0f2b14f641e07f89f685e4479fb60e0cb78fd69f8a1a7e3b4fa2" +metafile = true + +[[files]] +file = "config/paxi/resourcepacks/quark-vro.pw.toml" +hash = "6e11c600db8ba21398fc77c00667108dae40735b8d7dd5f320d3cbb2304d268e" +metafile = true + +[[files]] +file = "config/paxi/resourcepacks/restored-brightness.pw.toml" +hash = "87f1a0cb5b4a0c9b04d42f1ae5f463430126fe91d5762169682db0849683643b" +metafile = true + +[[files]] +file = "config/paxi/resourcepacks/soft-weather.pw.toml" +hash = "873ace05641182af3f4648bb8ed9708d7d63411da0e814d8377c950cf9e0b1b6" +metafile = true + +[[files]] +file = "config/paxi/resourcepacks/wedontbite.pw.toml" +hash = "1c6d95a78661c7341ba56b2a35a11b0af0a5789d9d0fbdac52e425336fe50be2" +metafile = true + +[[files]] +file = "config/quark-common.toml" +hash = "ccd99ddb33c0739ac0b3f14b4ec2fa1692372f72a5f4f38f23db12b38fa2cded" + +[[files]] +file = "config/squakereforged-common.toml" +hash = "0d081a4c65fbe43448ffc2f48e71801ba705684187b7bf95b808dd0eaca15943" + +[[files]] +file = "config/tetra.toml" +hash = "64a73ea6e3ac5850f1efe0720a32f1c2861f1f90e70d7554f9761d4ae97a0774" + +[[files]] +file = "config/waila/blacklist.json5" +hash = "201c132595425b9817f8ea2efe6d5772f96b7059a7cda9f6d2d81f8ea6a8b85b" + +[[files]] +file = "config/waila/category_entries.json5" +hash = "55f3e76b9dfbcddea72bce5041cbd1823fe88752ecf5e4cd1268c355fc9c1cf4" + +[[files]] +file = "config/waila/debug.json5" +hash = "e54d2423726125dd300297ea935fbfd82cf7c374fbd4ee2d85b7ba140e3ba97a" + +[[files]] +file = "config/waila/extra/energy_blacklist.json5" +hash = "e8243ffac9e64e2b025195ebfc4b1acafb98e5e89c0167e673470d65d4c31810" + +[[files]] +file = "config/waila/extra/fluid_blacklist.json5" +hash = "278e964061848df94ac89d7610987afe3d008f1ca5fe6119410dc2e07a2aca10" + +[[files]] +file = "config/waila/extra/item_blacklist.json5" +hash = "9ef0b7479c81e1a941eaa44fcdc571bdf9cb3ddb3d234a64f3dff0a8ccbda41e" + +[[files]] +file = "config/waila/extra/progress_blacklist.json5" +hash = "b8f09c52b1a975dc1f0ba65c7f4b6757dfc1bc784b87e0530046adaacbadcec4" + +[[files]] +file = "config/waila/plugin_toggle.json5" +hash = "3b388873da8493d14baaf8e8b1b3b0573f052bcce637fbbbe5e0fa0cf24010c2" + +[[files]] +file = "config/waila/waila.json5" +hash = "471e8c811415060b4ea148c62721428f381d589fbe77126172bddf17fee83112" + +[[files]] +file = "config/waila/waila_plugins.json5" +hash = "ff9625ae896b2971bf0997cfb5ee872c9c5d1df67361153435fa3e74127f1f31" + +[[files]] +file = "config/yttr.css" +hash = "2c807a1a701d7886b654e27244a90ca694ec89c474f508710866ff3fb64a5a87" + +[[files]] +file = "configureddefaults/DistantHorizons.toml" +hash = "3b03ef874a471c9f1571bbe2666f92ef0ef45db044b08b6bb0fad812b59634d3" + +[[files]] +file = "configureddefaults/README.md" +hash = "7d856d3f9655abc661ac67b450a0c956bbf80323786b407301fbdca02d2c5b8b" + +[[files]] +file = "configureddefaults/config/badoptimizations.txt" +hash = "f043b31a1fd029cbcd999a9ba184a1f66b4a8a8f020881c59b870436d8de1103" + +[[files]] +file = "configureddefaults/config/connector.json" +hash = "f00ca60d0f6e201b8f0b6fb0c571b98538817d2ea1e341110c53571fa408c0f1" + +[[files]] +file = "configureddefaults/config/cull-less-leaves.json" +hash = "e94813034405ef213afd650f1c7e9ff454a04435a8b72a74a73d470db41f5abc" + +[[files]] +file = "configureddefaults/config/dynamic_fps.json" +hash = "b75ccc24ddb7fdd8e91f16a568885abd88b00876e9ffe40578d1cf0ce6d7371d" + +[[files]] +file = "configureddefaults/config/embeddium-options.json" +hash = "e4ff11608f1a0042290f924d3b759b1d5405dd5c3f2e686ed66604690c95a794" + +[[files]] +file = "configureddefaults/config/enhanced_bes.properties" +hash = "219204a2efc6d53ad8b3116db7392e039ba8e0ed5f45bc18562c9697bdf8f5c9" + +[[files]] +file = "configureddefaults/config/entityculling.json" +hash = "f47bc240cb42ff2838ec9f833b25b142f5f85b29caf5958f04df637252013b09" + +[[files]] +file = "configureddefaults/config/ferritecore.mixin.properties" +hash = "2fee62477522b340fb814284e126749bd7858d2f7c17a2400d09644e5c4d725d" + +[[files]] +file = "configureddefaults/config/immediatelyfast.json" +hash = "79d5fe80745f3ccc150714c8578fff788d4478054c471ed0282dd2d8bb44c7ab" + +[[files]] +file = "configureddefaults/config/modernfix-mixins.properties" +hash = "01fccbbb144a4bd999c5127480e587e626cf6552ff390eeec85a7e68aaed1d9f" + +[[files]] +file = "configureddefaults/config/threadtweak.json" +hash = "2189dfffbad0aa5ba4e8323071082826573c70db8291f1ea2d2a3ec5c88e1a32" + +[[files]] +file = "configureddefaults/options.txt" +hash = "c827270cfdb6a821bf1519387b4a3b96c2774815c0359291b01a11f587731411" + +[[files]] +file = "configureddefaults/xaerominimap-common.txt" +hash = "b410746ddef0f7dd5f1d860ef3fcd6ad29c10988abbf6281181cb9c3acb628ca" + +[[files]] +file = "configureddefaults/xaerominimap.txt" +hash = "b06d2757556ce13a1824d7b553625bd3c46471ec996b1fe81409738b47b11349" + +[[files]] +file = "configureddefaults/xaerominimap_entities.json" +hash = "3c888b22cba252e8f0a974f8c1604bc05109affbf4354ad3b16e71778c4b9774" + +[[files]] +file = "configureddefaults/xaeroworldmap-common.txt" +hash = "ab09b6171d1f5f9c15d3ea653be739b53bca6f88db1ec38ae80575143c4c68cd" + +[[files]] +file = "configureddefaults/xaeroworldmap.txt" +hash = "9e10e119bcf5fc1901bb102e357609b59d868676cf7a1a8fe24647b8f05e920a" + +[[files]] +file = "defaultconfigs/cofh_core-server.toml" +hash = "8478a38e2d6265ade898c12e1ca7ad9579659a4365a9f64f58e3152cbffe20f1" + +[[files]] +file = "defaultconfigs/ensorcellation-server.toml" +hash = "8748522f6e6ad15799af6ef333bdc750d83f442c068e8b3013097a426e246f37" + +[[files]] +file = "defaultconfigs/foodbenefits-server.toml" +hash = "5470131432ff5b69221fa7fbfcff26621611cc690322b4b0c1e6883acfb90efe" + +[[files]] +file = "mods/Connector-1.0.0-beta.46+1.20.1.jar" +hash = "79d58fd7ced77df600eefc927adbbd8e217c2d6b0778c17aa8b27756703145ac" + +[[files]] +file = "mods/Controlling-forge-1.20.1-12.0.2.jar" +hash = "cff8c3426a77f9e7412262b6d79e423979eff3831e010b3b1ea9677e1ecd74cd" + +[[files]] +file = "mods/Searchables-forge-1.20.1-1.0.3.jar" +hash = "461add180eb595004d3c9f5ac0ce337752e403077f96b38304800eadf01fb825" + +[[files]] +file = "mods/abridged.pw.toml" +hash = "9e05026601aeb59311ed43bfe6e2f4fd188e559a69ca7cdbde131c7f3c1f5e8d" +metafile = true + +[[files]] +file = "mods/addadd.pw.toml" +hash = "3eabe0521b0d87917220533d86c436f11bcd70d868659b290ae77453f151e08c" +metafile = true + +[[files]] +file = "mods/advanced-loot-info.pw.toml" +hash = "8b12da636be7aa47b3d0c64ba513b490e4090504feb954cb753b12050d28ce5f" +metafile = true + +[[files]] +file = "mods/affectionate-1.1.3+1.20.1.jar" +hash = "0d33550ab9a7b1c2187e2aa8cf5bf169cee29a4defe25961d5d0e7fb7aea6e69" + +[[files]] +file = "mods/akashic-tome.pw.toml" +hash = "9d1b15ffa15606c346ad2ed32c349fceac9863ae13b433c2aee7d026c87d4339" +metafile = true + +[[files]] +file = "mods/amendments.pw.toml" +hash = "420f60e542e731334fc62fc16a9945a60dfa8f6c5a647c71b2cf9217d50ea7f5" +metafile = true + +[[files]] +file = "mods/badoptimizations.pw.toml" +hash = "06d9fc289964f42dfad761ff34dc7c2f09bb7dde3d8fc54954ad01f15c8714ed" +metafile = true + +[[files]] +file = "mods/badpackets.pw.toml" +hash = "64bf8b278979f6e2aa9dc0fb5d2168212bc9337e41fb9a9f7e114fe91695194a" +metafile = true + +[[files]] +file = "mods/balm-forge-1.20.1-7.3.37-all.jar" +hash = "5b2776de85cefc575edeb5f864400aab7cd521de7eb30abcfc11100e68c0af10" + +[[files]] +file = "mods/better-clouds.pw.toml" +hash = "2d2fcbf69e7e6c8b2682b43a160aa15a0bb8319ae07a159e4416300b0f0dfd6c" +metafile = true + +[[files]] +file = "mods/block-swap.pw.toml" +hash = "1d093db0add8486b407b1323d2add62c1710469922722ec2531f78ef667ec259" +metafile = true + +[[files]] +file = "mods/blueprint.pw.toml" +hash = "90fc66d49d29c1b1a5b14c5d571d628c6853f7f0519b04e74e14399c75cd08c6" +metafile = true + +[[files]] +file = "mods/bookshelf.pw.toml" +hash = "058699e4832d0cf5396c5ea29244100f0c0e39a8d7aa5b64c2afdcc3cb8c8145" +metafile = true + +[[files]] +file = "mods/bundle-crafting-backport.pw.toml" +hash = "62eadf5703fcacdbd9ba881bb2396847bbb3911797802965393e243ae3bd0d76" +metafile = true + +[[files]] +file = "mods/caelus.pw.toml" +hash = "da069e723737ae49203f7572eb774be0fd21f5f083ce7a7ee1bed25916befca8" +metafile = true + +[[files]] +file = "mods/capable-cauldrons.pw.toml" +hash = "57e0194b3f3c432cec5d15d67b7e47ba38a1809d19d17f8573f994ae0513d12f" +metafile = true + +[[files]] +file = "mods/capable-composters.pw.toml" +hash = "40e04324fda62fb3cc7d87d0e507dd3a883f5096b3c7634461f6523447e8003b" +metafile = true + +[[files]] +file = "mods/cloth-config.pw.toml" +hash = "96204145e12506e0625d8b9bfa05aad54e9a62fd511bae39f0d57fcb5e39f4cc" +metafile = true + +[[files]] +file = "mods/cofh-core.pw.toml" +hash = "20fcd633516ef654e4a1546ab7e1cd4e22bc96a087544ae583f85df9b7a65468" +metafile = true + +[[files]] +file = "mods/colorful-hearts.pw.toml" +hash = "7981cc78d8cb003af39d161cfe26173c3cbdb327b47bce79fc61123c915fb9e0" +metafile = true + +[[files]] +file = "mods/configured-defaults.pw.toml" +hash = "28e94fb73ed15cd65a06f9d9f456cdbe210c513d6326ab16c9d8b59d83c76b93" +metafile = true + +[[files]] +file = "mods/connector-extras.pw.toml" +hash = "ccc22ae710d22b2c8e8851c5968f85d32bac9f40ee7ded717df78cbe0cc8dae3" +metafile = true + +[[files]] +file = "mods/coolrain-1.3.1-1.20.1.jar" +hash = "bdfa51196283dd2d3bec174204ac1d2d2d9bc3a173fea3465bfa839163244337" + +[[files]] +file = "mods/copycats.pw.toml" +hash = "853df4ab2418f347cbb1e3b4ca6c82b2a517a8e4e8ccabcd42c27e3496707a32" +metafile = true + +[[files]] +file = "mods/create-clockwork.pw.toml" +hash = "3e414c2d4af0caf4905413a12fb3a737e5e5cf6c584bfcd57fb4fea65f5c9038" +metafile = true + +[[files]] +file = "mods/create-contraption-terminals.pw.toml" +hash = "45181af6516b3adc99f7d564763ee0db8eb70cd133a09d3266a903a9f755c5a8" +metafile = true + +[[files]] +file = "mods/create-railways-navigator.pw.toml" +hash = "345cbc7e5b4b2d14a1120720981248be696d28bc6a0bc23c54f1e11299d85594" +metafile = true + +[[files]] +file = "mods/create-steam-n-rails.pw.toml" +hash = "0971029a9e6cbc93c8fd694f97942c566979973f3d98023b730b1d436f617220" +metafile = true + +[[files]] +file = "mods/create.pw.toml" +hash = "fb5c251cf4997fa65ca043bab7c9ecbd02e108031584a3e26276b77d212de23c" +metafile = true + +[[files]] +file = "mods/crossroads-mc.pw.toml" +hash = "b4b4d788b9900ee635c7b7c8b70979d4ee0ad80828fb6e4848ae46d901dddde4" +metafile = true + +[[files]] +file = "mods/cull-less-leaves.pw.toml" +hash = "09af3f7efd177b0dbb21db66ba27fa8af09128e74d3d0a77a1ef47495a8054fa" +metafile = true + +[[files]] +file = "mods/distant-horizons-height-toggler-dhht.pw.toml" +hash = "338cf73892a872d23ccc8bda80804f8e21b2d2c4076f3002fd878d772b362c46" +metafile = true + +[[files]] +file = "mods/distanthorizons.pw.toml" +hash = "47fd33da68d0b13cdffd4124f5bc9cff64caa2878ce7e979ba8092400c2ae1eb" +metafile = true + +[[files]] +file = "mods/dnt-ancient-city-overhaul.pw.toml" +hash = "c4c9ebe4d40cb9cedb1b87b5b8c977ea00e31cbb8790b9510e31fe69932b67f8" +metafile = true + +[[files]] +file = "mods/dnt-stronghold-overhaul.pw.toml" +hash = "ae80266a71e177f1ed0bc73f4d8c7895ee9f43ba0072683c4ff48c098b48dec4" +metafile = true + +[[files]] +file = "mods/dragonlib.pw.toml" +hash = "46bf31a2742723837818d058f82ef0c45b527bedd6912c942393c703e9792cec" +metafile = true + +[[files]] +file = "mods/dramatic-doors.pw.toml" +hash = "8143c63aa2e53fd78ea83eddba9cfaa4c036141aae6604eb01d8f82dc5d03c99" +metafile = true + +[[files]] +file = "mods/drizzleproof.pw.toml" +hash = "866539ce184fecc7056b68f7448f423dbcc3c9b223f8c6f105724f319efe9269" +metafile = true + +[[files]] +file = "mods/dungeon-and-taverns.pw.toml" +hash = "a1a8bc2e5625917e45cdf2360dfaeff24447b261579e8220d1e4748852c30e48" +metafile = true + +[[files]] +file = "mods/dynamic-fps.pw.toml" +hash = "274986927903f34475cd996a8fa642e296d32769e3a74b658b835ba597369043" +metafile = true + +[[files]] +file = "mods/dynamic-trees-quark.pw.toml" +hash = "0dcda06d4bddbd8c19e894f92d9c90529a35979a4c19062dc9fa02166c223177" +metafile = true + +[[files]] +file = "mods/dynamic-trees-traverse.pw.toml" +hash = "6647872a354258f7062724e76387090d11319a263fecb37b8dbd2c6fdde62658" +metafile = true + +[[files]] +file = "mods/dynamictrees.pw.toml" +hash = "dc6ab17c3462ee23681f85b2102195d9d7099f6ac916b2ef47333bf498d4ec7e" +metafile = true + +[[files]] +file = "mods/ears.pw.toml" +hash = "a5026cd7a5c3f07a199def35870910b44f7ac077e60c9c11ce756917f9d0354d" +metafile = true + +[[files]] +file = "mods/easy-shulker-boxes.pw.toml" +hash = "e4a65e6e67523dab2e57e6070f8089bacda68bf39bc68c9afd264c115421066d" +metafile = true + +[[files]] +file = "mods/easy-shulker-sacks.pw.toml" +hash = "eae7b984304d15fa5c38a7ea381591ab7c1674286c9621fa413419c01920929e" +metafile = true + +[[files]] +file = "mods/effortless.pw.toml" +hash = "b9f54476b8fd406728130ebc2cce3a706fcf017ccaaf6ba2fc8737ebaa59b900" +metafile = true + +[[files]] +file = "mods/elenai-dodge-2.pw.toml" +hash = "a7a47a42eb79f1cbdff8d57e06cf8f3aca2c4e1065cd52c9a4150d837cae5b3f" +metafile = true + +[[files]] +file = "mods/embeddium.pw.toml" +hash = "a1575677daaaf6ea6dac12e5a10073e34025e5ca2c35b6d36ad4a5a0edbc0e82" +metafile = true + +[[files]] +file = "mods/emi-ores.pw.toml" +hash = "daef210e9d3922c541bfa5e62acf19f30202682b143b651cb6c9959e6a53821d" +metafile = true + +[[files]] +file = "mods/emi.pw.toml" +hash = "d48a1ea93de8cd5febb95ba52989d8d9ab4e998cfbdf9c1076a9f2e571d2fcbe" +metafile = true + +[[files]] +file = "mods/emienchants.pw.toml" +hash = "203576fb979c761b78219dcec7d8d37446df2c52432f54a319d48c64618f4fdd" +metafile = true + +[[files]] +file = "mods/enchantment-descriptions.pw.toml" +hash = "a6a4662e99c4013864ac4f6a388a3dd98c2ad715f7bd4651c181fac58a6d7ea8" +metafile = true + +[[files]] +file = "mods/enchantment-transfer.pw.toml" +hash = "d0274475440847dfa8063041ddc19d5ad5370d4a3fad0c21f31daf3d843a7895" +metafile = true + +[[files]] +file = "mods/enhanced-block-entities.pw.toml" +hash = "de33a63b6e7182dc3229d77c95c118cdc2ad64321ae4fc16d16a23a3b34e746b" +metafile = true + +[[files]] +file = "mods/ensorcellation.pw.toml" +hash = "9780912a21d843e262d6f137ae4e7f95ae21e059e82c8a449b5930c767b06dc4" +metafile = true + +[[files]] +file = "mods/entity-model-features.pw.toml" +hash = "e913f7ebc0ccbefcca67d4db8a93c7257f21cfad0de8be1c8a57e030dad21d80" +metafile = true + +[[files]] +file = "mods/entity-texture-features-fabric.pw.toml" +hash = "163a669685e417fc90796323b46128e5e54162703c2f6c114a52af3da5b5a95d" +metafile = true + +[[files]] +file = "mods/entityculling.pw.toml" +hash = "8795d85553d79829521a0efe340d71d0b6baa03fb6659bbd62961b93f336c868" +metafile = true + +[[files]] +file = "mods/esf-entity-sound-features.pw.toml" +hash = "a96cbb1528c56e51f855fffa5c88ae521feffccc3ec03006695e31ba527cff0c" +metafile = true + +[[files]] +file = "mods/essentials.pw.toml" +hash = "1fa2e66e87823ddff5d6f0b7d2ae796397be53af7541f6674018580eac2b400b" +metafile = true + +[[files]] +file = "mods/euphonium-1.0.3+1.20.jar" +hash = "9e059323907d2084597101ccd521e7ffa0759b5165c08b4c56d3f42bc5afbd26" + +[[files]] +file = "mods/every-compat.pw.toml" +hash = "e6bfc8f0fb87b977f859df71017c81ee6ea762dc6f706714d817df7e4c9f2e0b" +metafile = true + +[[files]] +file = "mods/exposure.pw.toml" +hash = "ea36b8516ea429e479368b708082e89af5fa50dc3576b52c2ff8c8dac595801c" +metafile = true + +[[files]] +file = "mods/fabric-language-kotlin.pw.toml" +hash = "1aa94f817646eea69478dc3dce662c3f4b674359d7ce34cf58fd38dcbc56e458" +metafile = true + +[[files]] +file = "mods/feathers.pw.toml" +hash = "d24fcd8d033befe918b425d82f14fbde8496dfd1feef3f4855707141e8480de6" +metafile = true + +[[files]] +file = "mods/ferritecore.pw.toml" +hash = "5bd0506bc0be25116b234f2b5af9447f60d82ae1cb6c5be4e12d8841f6c2501c" +metafile = true + +[[files]] +file = "mods/flib.pw.toml" +hash = "4a5b4a1d085ef0ad0d77e6c211e793f2d5cbe34e8ead3f5e7d2d089ceca207a0" +metafile = true + +[[files]] +file = "mods/fog.pw.toml" +hash = "4236f656b725748f6b5ecb44b28f28f968b47dc3d5233a5cf26d1a07d19786f5" +metafile = true + +[[files]] +file = "mods/food-benefits-modified.jar" +hash = "33345365d14bc8a0569a9e0673f11579d63f2d64507a43486050c2080f5ddef6" + +[[files]] +file = "mods/forgery.pw.toml" +hash = "5f574db144dbc689e48f39c51ac7987949892940612d39bed09325cd322054a5" +metafile = true + +[[files]] +file = "mods/forgified-fabric-api.pw.toml" +hash = "62ef7e92478035b77e996189984e4749b2d876ed0a389977a2670a28f105bfd2" +metafile = true + +[[files]] +file = "mods/geckolib.pw.toml" +hash = "1030e18f2e875dfdf39de82b823e1dfe6009f21f1aaad338137d3a90504e2f7e" +metafile = true + +[[files]] +file = "mods/hang-glider.pw.toml" +hash = "2d1f7089fae7d676321595a1228f15e9a160a1aeb5519d5508c0f4015781cb43" +metafile = true + +[[files]] +file = "mods/hexcasting.pw.toml" +hash = "df0bc0ad5b00c9a0f2900b3f8866825c1ba8f21e55b1f8b92ff264d43c13093e" +metafile = true + +[[files]] +file = "mods/hunger-strike.pw.toml" +hash = "f18fabbc08a475a186ef3a935595aa96b8166b8d25bd21cfcd56a0136ab6a26a" +metafile = true + +[[files]] +file = "mods/immediatelyfast.pw.toml" +hash = "c949e6e0d6a70b8693ef48f8f205cb4fb967cc7c2ecbe029ffe7809e36ad5138" +metafile = true + +[[files]] +file = "mods/inline.pw.toml" +hash = "d92834912371593543ac5c2de473e438fcf831e6e7641634c5e95918b73c211a" +metafile = true + +[[files]] +file = "mods/inventorio.pw.toml" +hash = "c058b38b296750eb1015b55067a605604f952966a5d58d6e4b920d761b0e1b3d" +metafile = true + +[[files]] +file = "mods/item-obliterator.pw.toml" +hash = "07fc40541ee106402ce9eb26888d7d078e5fd28cd01a00cbc04dd57839c6aeeb" +metafile = true + +[[files]] +file = "mods/jei.pw.toml" +hash = "6ce9ce3159a94fb17442f8094b4be447e395158d57ac6fc5e1459d17a83efe72" +metafile = true + +[[files]] +file = "mods/joy-of-painting.pw.toml" +hash = "7142644b6ee70047ec0eec880a44050cf4fd7e42c94f93dbe85ea7630f2d4500" +metafile = true + +[[files]] +file = "mods/kitchen-karrot-modified.jar" +hash = "0b18db46148ab7948a127fc0cf4c9a854fbab9469555f03c0d605399a925a167" + +[[files]] +file = "mods/kiwi.pw.toml" +hash = "578839bf90f128ca1abfab58c40f5e3cd18c93374cb25c9e77a5307ca6c77223" +metafile = true + +[[files]] +file = "mods/kotlin-for-forge.pw.toml" +hash = "1678327ac50408273c1828b631929128d3fdfd54cda7b2e823ce9352495a68ff" +metafile = true + +[[files]] +file = "mods/lithostitched.pw.toml" +hash = "1d623ba29fcb52d5db733af383a13273792ac3dc1ac7a8f9e3f58a17ae1bc2c7" +metafile = true + +[[files]] +file = "mods/lootr.pw.toml" +hash = "e8b4876d403b4f4daab64bad9704a5b271a33031d1ff8d19d23ebd1e3b8dd39a" +metafile = true + +[[files]] +file = "mods/mcqoy.pw.toml" +hash = "a82fce8e53775fc95a40d7da5e01db8c109597b7623000abe65d807a93467e37" +metafile = true + +[[files]] +file = "mods/modonomicon.pw.toml" +hash = "81da708e6a9add4237562e15bd2be857cfa3908c50951408ab2137ff1c68fbbd" +metafile = true + +[[files]] +file = "mods/momentum.pw.toml" +hash = "e5383e312cb70e5bcae369d631aee629d8f4a8b221189a7e2bc0327eaadd09d9" +metafile = true + +[[files]] +file = "mods/moonlight.pw.toml" +hash = "32ebc8e9c6d09c9f460f0f2815a6e5d5d68c73c75eb912b474c210689a9809f1" +metafile = true + +[[files]] +file = "mods/mru.pw.toml" +hash = "f5e19eff418ff12946e7cd4f10e16508ba7261c9cd9685e3d87016fa21c127d1" +metafile = true + +[[files]] +file = "mods/mutil.pw.toml" +hash = "d60f6a6d46b66a76a6e3d185177a20cba42b83ba37f34db0fbe3c9babab7c837" +metafile = true + +[[files]] +file = "mods/naturalist.pw.toml" +hash = "6039fa77bfd0871c009092508bbaaed5f25947af425943fe3a2c8e6b32cd3102" +metafile = true + +[[files]] +file = "mods/necronomicon.pw.toml" +hash = "318a137293d0919ddeb5e25c3facd5bc83de60366ac6cd5707d28ee650330f62" +metafile = true + +[[files]] +file = "mods/nekos-enchanted-books.pw.toml" +hash = "d754eab59d0f2c0268ebb006409286f8e7e4e132e6b8dffc217a82bcade633f7" +metafile = true + +[[files]] +file = "mods/no-telemetry.pw.toml" +hash = "8de8d0ef6c5c087ee7c7c028928edcef86527e84a927cef5defb4a7219bf21c5" +metafile = true + +[[files]] +file = "mods/noisium-forge-2.3.0+mc1.20-1.20.1.jar" +hash = "b0b020250c81e8cce7776c3dc8f7085f269e2007570d5fbd492c4497ad60685c" + +[[files]] +file = "mods/not-enough-animations.pw.toml" +hash = "e1b49409243ca8ccf9d1ef4d458dc1a887a19f9b18dcd5088d56c19073d57b43" +metafile = true + +[[files]] +file = "mods/nyfs-spiders.pw.toml" +hash = "361f5915170fc468704db1c693cfac69431b82fdefc380d6d2d7a95242799bb9" +metafile = true + +[[files]] +file = "mods/oh-my-gourd.pw.toml" +hash = "a08c0cc8cbc45eb1b552b5d7464e2ac4e930bddfc7095273b0073622e0b7d6f1" +metafile = true + +[[files]] +file = "mods/old-mc-logo-1.0.0.jar" +hash = "f0abad4fca50405e92cbe3bb03ee963b276320f046143aaced3ea5e40729f618" + +[[files]] +file = "mods/origins.pw.toml" +hash = "6318cb31d6cb374bc74893907302418da47557cff4bf5490b3e545cd9ee986a4" +metafile = true + +[[files]] +file = "mods/patchouli.pw.toml" +hash = "dec2bc011d4ca1d451aaa3eea477f13366bfb13beba0716018f47d9331a50d8e" +metafile = true + +[[files]] +file = "mods/paucal.pw.toml" +hash = "d545e2d90446465d26dfef1c6777edde1fa9d2b873674834dd761342a40088bf" +metafile = true + +[[files]] +file = "mods/paxi.pw.toml" +hash = "be48890d990e03c639c5636c79bfa74bbd531c49a80487507984899c386a0bd9" +metafile = true + +[[files]] +file = "mods/peaceful-nights.pw.toml" +hash = "bc3c4775d1199e60d9f47f7d24a255a02f5df9edc4bc1138530f6ba08bff4cd3" +metafile = true + +[[files]] +file = "mods/peaceful_nights-forge-0.1.0+1.20.1.jar" +hash = "ae88304d8990b0a0fc66cde4e399412ed990a2d63c21a8a5c0aecd506280b11c" + +[[files]] +file = "mods/pehkui.pw.toml" +hash = "1f92dd360908c1801848dcd4d14aca5640199545e7e22e76bfdb981b06fa9399" +metafile = true + +[[files]] +file = "mods/polytone.pw.toml" +hash = "3209e649fb132e96ef1d038e05d48cce3f60b87e09d3eab3189318df84cea495" +metafile = true + +[[files]] +file = "mods/presence-footsteps-forge.pw.toml" +hash = "fc6fbe4edaef15637092d30600743dec1bc9bf6055f71a5ff026df108fa2b532" +metafile = true + +[[files]] +file = "mods/puzzles-lib.pw.toml" +hash = "5ca42f4c23aee558ed76923d4fb92ecee736ebacb53790445c09d46bd9ccb27e" +metafile = true + +[[files]] +file = "mods/quark-oddities.pw.toml" +hash = "cccf29ce906a920013a8f10ece935b3e9c970dca19943d7237557b178d01f149" +metafile = true + +[[files]] +file = "mods/quark.pw.toml" +hash = "4eb683644ee4e38e00b06df946b71ad8fedaa860fcabbd91ec6ceb71c65b8d81" +metafile = true + +[[files]] +file = "mods/quarkponders.pw.toml" +hash = "ccc768a6b5a2d2beddfb5bd5a3a93ebfda3591879fe0efa20a62a6dba22b2ea5" +metafile = true + +[[files]] +file = "mods/raised.pw.toml" +hash = "5c3f7d77ffa8b11067f86eafe4ad10d961a0a58ba09c267105bcb04aae0b1b27" +metafile = true + +[[files]] +file = "mods/repurposed-structures.pw.toml" +hash = "a4a259039769657a77dac62854c9ec478fd86ad4ed3f3f91e313653dcf024861" +metafile = true + +[[files]] +file = "mods/revelationary.pw.toml" +hash = "c5aa125c73079c51dfeffa2cb5da8b0e4bb66227895f3457d0583d5542669583" +metafile = true + +[[files]] +file = "mods/selene.pw.toml" +hash = "b56161ba01e298c7a28a593dcadc2d1b802c49d7bbdc01d0c7d03a31e04b6408" +metafile = true + +[[files]] +file = "mods/sneaky-link.pw.toml" +hash = "61d3097fd3a416260867c19ec8b84feb1ec658dc657d26ffcedbb9835b947b21" +metafile = true + +[[files]] +file = "mods/snow-real-magic.pw.toml" +hash = "1be3f2d08a1454a32fdba9010e3f11d7722de36e45083a4b73c3e55c6f708407" +metafile = true + +[[files]] +file = "mods/sound-physics-remastered.pw.toml" +hash = "416bb6449da951ec1a04156348c502b9e47a947212becc173d277faaddaaaccd" +metafile = true + +[[files]] +file = "mods/spectrum.pw.toml" +hash = "6b6962e96fed2fc6a5993cc059a4cf278222e24bb01fd6ef37b9febe021c24e3" +metafile = true + +[[files]] +file = "mods/squake-reforged.pw.toml" +hash = "6f052548372d48f8fc777ff1d28357a93ac8463a96356617c4d1885b1fe51d0b" +metafile = true + +[[files]] +file = "mods/stellarview.pw.toml" +hash = "279a4cc31df6475f41d45852450c705aca263fed801c2d6efb05eb79d7249ff5" +metafile = true + +[[files]] +file = "mods/stepitup.pw.toml" +hash = "64050d516184266d1a141e976cfa8a2823f0b21b2b69052bf2bb6182d4e912d4" +metafile = true + +[[files]] +file = "mods/stonecutter-likes-wood.pw.toml" +hash = "cac029d466ae7b1149c31302d94b58794cbb75ecbb9197010898bb62c77aee46" +metafile = true + +[[files]] +file = "mods/supplementaries.pw.toml" +hash = "974af7bd8b20941d615aa6d37f522da34f62d81ddee97ccfad3c458b5db8ece5" +metafile = true + +[[files]] +file = "mods/terrablender.pw.toml" +hash = "fde3d3b1607636100e382dce1bba80ab4608ebfa1ef888a37b86bc8c7dcbafe5" +metafile = true + +[[files]] +file = "mods/tetra.pw.toml" +hash = "6d7d7e9056c82d805e0957f33d8dac048a3a193d91ca7e655e12d4bade9eb4d8" +metafile = true + +[[files]] +file = "mods/tetranomicon.pw.toml" +hash = "e1c67611aa8ac579d7299e273cac8798b28927b9366ec799cc5133cced89d958" +metafile = true + +[[files]] +file = "mods/threadtweak-fabric-1.20.2-0.1.1.jar" +hash = "13954c14a9491b07eab6d2b278faed5629d42ac52cc959711959f32270e6edff" + +[[files]] +file = "mods/toms-storage.pw.toml" +hash = "edfafd11282b46cca84cce70807e85f8b11e918ead6a1ef7aa7d9e216d98ece3" +metafile = true + +[[files]] +file = "mods/trackwork.pw.toml" +hash = "b4887c8dabb9b68bf7cbfab1b683d2ae650979646a52d3d98aa3682ddcf99e88" +metafile = true + +[[files]] +file = "mods/traverse-reforged.pw.toml" +hash = "1df6d362bf37031599d3ab55d029a747cb7982f591985f52f5af8c911b0b2e92" +metafile = true + +[[files]] +file = "mods/trinkets.pw.toml" +hash = "d9bfec2cf36b6bae2d85a1136560e047ab8ce1b0e9798e7b6be5d0670f65fb55" +metafile = true + +[[files]] +file = "mods/trolldom.pw.toml" +hash = "b7e8b9666614acb87925c7d22b9ed35b49460516cd0a4be5d1cb07634f77fdbd" +metafile = true + +[[files]] +file = "mods/truly-treasures.pw.toml" +hash = "99b58f71d44e6e516a984319115688515b1368feef5cad9a28c00c3a9349ade1" +metafile = true + +[[files]] +file = "mods/underground-rivers.pw.toml" +hash = "f9960ecafbe48cfc97124a1b5a3a52636be4988910d076417acabb13bf860e51" +metafile = true + +[[files]] +file = "mods/universal-sawmill.pw.toml" +hash = "231e9ce2be39e75b040f4fcd8ae12c8aabb897dacad0a589ee1f12f014b6e02e" +metafile = true + +[[files]] +file = "mods/valkyrien-skies.pw.toml" +hash = "32484c89c72e4c536a6797b08f1c458b1736769ad30e31d2a0a84744b27da73f" +metafile = true + +[[files]] +file = "mods/wandering-collector-forge.pw.toml" +hash = "c9b29c82e3c4c533a06684c09b3a9ceb2e06bd85466632ce40e8c361454dcc04" +metafile = true + +[[files]] +file = "mods/wthit-forge.pw.toml" +hash = "41bc88119ddf6f93f2596896eef841e706efcd5906f82202883434de4bf52496" +metafile = true + +[[files]] +file = "mods/xaeros-minimap.pw.toml" +hash = "eb48e8709268d9d4daeaba8d8844fa47e4e42fe2c6767ab39eca10e7852abf1e" +metafile = true + +[[files]] +file = "mods/xaeros-world-map.pw.toml" +hash = "8c1d85564af53d61caf23b502b60c494d33450a670093fdd3e2f412368682ecc" +metafile = true + +[[files]] +file = "mods/yacl.pw.toml" +hash = "f3b3d035b89519faccc4ddd8b0b4407ce96c0eb49068fe50a445d43a3baa8bea" +metafile = true + +[[files]] +file = "mods/yttr.pw.toml" +hash = "4859a63c931c71c20ffacb1bfe7538bf2bac53f30b60f27273cc98393762971b" +metafile = true + +[[files]] +file = "mods/yungs-api.pw.toml" +hash = "152c6732da180e958fb29f492bae2e468d4dfd423ce4d3d0d31ef31c2eec6c61" +metafile = true + +[[files]] +file = "mods/yungs-better-dungeons.pw.toml" +hash = "c35112cced2eec8e5782c5c4327ae31bce16cc1356c75e52000053e890e0f0c1" +metafile = true + +[[files]] +file = "mods/yungs-better-mineshafts-forge.pw.toml" +hash = "e0d77569aa19c6b72d30cb895cef575837a5740bee489d3ae537edf40a900ab1" +metafile = true + +[[files]] +file = "mods/yungs-better-nether-fortresses.pw.toml" +hash = "05f825a655bc94af6ab592d13c396b60c818cfc65ff2528e206e7a40a180e210" +metafile = true + +[[files]] +file = "mods/yungs-cave-biomes.pw.toml" +hash = "2c300c8f7129aabbfd0a5d913edd31baf1ee2641907d220ccc6981a6be204432" +metafile = true + +[[files]] +file = "mods/zeta.pw.toml" +hash = "a9421a7a29ac8ee6e0598ea20025ad2c30e6198b796324184600621743437c91" +metafile = true + +[[files]] +file = "trees/hybrid_beta/jo_codes/seasonal_oak.txt" +hash = "575e0fef2746b27c9db8eecf728ec7728d1df4a5fd2c0317c8b0bdc9411dcb79" + +[[files]] +file = "trees/hybrid_beta/jo_codes/small_fir.txt" +hash = "fd56afb31000517ea0583150ba4803d860344b911278c5e96e8f8bb8e449517e" + +[[files]] +file = "trees/hybrid_beta/leaves_properties/seasonal_oak.json" +hash = "0354cddfb4839ffefec079d2410ce484ccc159c72242ab7efa63fd7d80cafff7" + +[[files]] +file = "trees/hybrid_beta/species/seasonal_oak.json" +hash = "1e638e79454db009d7dc1a98aec57817565eb19103ee3723bb358373703201e3" + +[[files]] +file = "trees/hybrid_beta/species/small_fir.json" +hash = "80041b8c8ef02174ef2fedf630507e2a1465cb0bf66d814b1b978d6b10caa9e5" + +[[files]] +file = "trees/hybrid_beta/world_gen/default.json" +hash = "c7d8422f3fe780a2d53aee95c94c986e832344e564ef1df5ccd4e8044466cd0b" diff --git a/pack/mods/Connector-1.0.0-beta.46+1.20.1.jar b/pack/mods/Connector-1.0.0-beta.46+1.20.1.jar new file mode 100644 index 0000000..f2b5acd Binary files /dev/null and b/pack/mods/Connector-1.0.0-beta.46+1.20.1.jar differ diff --git a/pack/mods/Controlling-forge-1.20.1-12.0.2.jar b/pack/mods/Controlling-forge-1.20.1-12.0.2.jar new file mode 100644 index 0000000..5f611e6 Binary files /dev/null and b/pack/mods/Controlling-forge-1.20.1-12.0.2.jar differ diff --git a/pack/mods/Searchables-forge-1.20.1-1.0.3.jar b/pack/mods/Searchables-forge-1.20.1-1.0.3.jar new file mode 100644 index 0000000..a46ed95 Binary files /dev/null and b/pack/mods/Searchables-forge-1.20.1-1.0.3.jar differ diff --git a/pack/mods/abridged.pw.toml b/pack/mods/abridged.pw.toml new file mode 100644 index 0000000..ed3a431 --- /dev/null +++ b/pack/mods/abridged.pw.toml @@ -0,0 +1,13 @@ +name = "Abridged" +filename = "abridged-2.0.0-forge-1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/tb5O1ssC/versions/tIM1hajM/abridged-2.0.0-forge-1.20.1.jar" +hash-format = "sha512" +hash = "04c7b07067104d6b0bb24c6064f21a6292312dd030639dd9d87c81f0fa2da371aa55bfb8d5792f47668f059051bbe5af89863670084c1d7b68073d6705e520a3" + +[update] +[update.modrinth] +mod-id = "tb5O1ssC" +version = "tIM1hajM" diff --git a/pack/mods/addadd.pw.toml b/pack/mods/addadd.pw.toml new file mode 100644 index 0000000..1ae1c60 --- /dev/null +++ b/pack/mods/addadd.pw.toml @@ -0,0 +1,13 @@ +name = "Additional Additions" +filename = "additionaladditions-6.0.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/R4TvILfj/versions/r8V0VbWA/additionaladditions-6.0.1.jar" +hash-format = "sha512" +hash = "dfcab33380354be820503671a7faeff83b76cc3778612493aa6b2820705fcd52b830ed5aca41c0cd1e2c6b6c7447e489dbb9365e3120c882cfa5274567ab9814" + +[update] +[update.modrinth] +mod-id = "R4TvILfj" +version = "r8V0VbWA" diff --git a/pack/mods/advanced-loot-info.pw.toml b/pack/mods/advanced-loot-info.pw.toml new file mode 100644 index 0000000..6ec4582 --- /dev/null +++ b/pack/mods/advanced-loot-info.pw.toml @@ -0,0 +1,13 @@ +name = "Advanced Loot Info" +filename = "AdvancedLootInfo-forge-1.20.1-1.6.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "ad3246f65e455ec175853075009bdcab2a168a6f" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7278032 +project-id = 1205426 diff --git a/pack/mods/affectionate-1.1.3+1.20.1.jar b/pack/mods/affectionate-1.1.3+1.20.1.jar new file mode 100644 index 0000000..c0b887e Binary files /dev/null and b/pack/mods/affectionate-1.1.3+1.20.1.jar differ diff --git a/pack/mods/akashic-tome.pw.toml b/pack/mods/akashic-tome.pw.toml new file mode 100644 index 0000000..3ce66c5 --- /dev/null +++ b/pack/mods/akashic-tome.pw.toml @@ -0,0 +1,13 @@ +name = "Akashic Tome" +filename = "AkashicTome-1.7-27.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/JBthPdnp/versions/FKIrMLZn/AkashicTome-1.7-27.jar" +hash-format = "sha512" +hash = "2f55c52f400931e5b8947eed211f892a3dc5c2f60c6e5100ef78f990e096d0272909681808d037a1dc3b25fafdf2ffd59a64a9c354ab73f080172076e2443513" + +[update] +[update.modrinth] +mod-id = "JBthPdnp" +version = "FKIrMLZn" diff --git a/pack/mods/amendments.pw.toml b/pack/mods/amendments.pw.toml new file mode 100644 index 0000000..4a663c3 --- /dev/null +++ b/pack/mods/amendments.pw.toml @@ -0,0 +1,13 @@ +name = "Amendments" +filename = "amendments-1.20-2.2.5.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "5d5a1d7d2d2dd37c578fdea2495757baaa624092" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7470401 +project-id = 896746 diff --git a/pack/mods/badoptimizations.pw.toml b/pack/mods/badoptimizations.pw.toml new file mode 100644 index 0000000..d6db8c1 --- /dev/null +++ b/pack/mods/badoptimizations.pw.toml @@ -0,0 +1,13 @@ +name = "BadOptimizations" +filename = "BadOptimizations-2.3.1-1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "05961374fb4e561e063168d058b155f8415c6697" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7055630 +project-id = 949555 diff --git a/pack/mods/badpackets.pw.toml b/pack/mods/badpackets.pw.toml new file mode 100644 index 0000000..d137844 --- /dev/null +++ b/pack/mods/badpackets.pw.toml @@ -0,0 +1,13 @@ +name = "bad packets" +filename = "badpackets-forge-0.4.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "34b4ae0b51fe8bb55529dd20968bf58e20b4a21e" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4784395 +project-id = 615134 diff --git a/pack/mods/balm-forge-1.20.1-7.3.37-all.jar b/pack/mods/balm-forge-1.20.1-7.3.37-all.jar new file mode 100644 index 0000000..f3c3e59 Binary files /dev/null and b/pack/mods/balm-forge-1.20.1-7.3.37-all.jar differ diff --git a/pack/mods/better-clouds.pw.toml b/pack/mods/better-clouds.pw.toml new file mode 100644 index 0000000..eedc991 --- /dev/null +++ b/pack/mods/better-clouds.pw.toml @@ -0,0 +1,13 @@ +name = "Better Clouds" +filename = "better-clouds-1.3.37-beta+1.20.1-forge.rev.e63efe2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "5970c3134b95963c467c2dd76664ff02224140b6" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7074847 +project-id = 1285973 diff --git a/pack/mods/block-swap.pw.toml b/pack/mods/block-swap.pw.toml new file mode 100644 index 0000000..f865636 --- /dev/null +++ b/pack/mods/block-swap.pw.toml @@ -0,0 +1,13 @@ +name = "Block Swap" +filename = "Block Swap-forge-1.20.1-5.0.0.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "87c5ded19cbcb561d85222611604542f07e9c509" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4598162 +project-id = 468893 diff --git a/pack/mods/blueprint.pw.toml b/pack/mods/blueprint.pw.toml new file mode 100644 index 0000000..feaf66a --- /dev/null +++ b/pack/mods/blueprint.pw.toml @@ -0,0 +1,13 @@ +name = "Blueprint" +filename = "blueprint-1.20.1-7.1.3.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/VsM5EDoI/versions/xtEwbO0X/blueprint-1.20.1-7.1.3.jar" +hash-format = "sha512" +hash = "9665cb45ae78ec59352b195d65a44d6573c1ad65749a6546054e0b8032836d939526dd1df6521034cd2bd34e6559e785d20404df3130050b8e763a8ccfe06534" + +[update] +[update.modrinth] +mod-id = "VsM5EDoI" +version = "xtEwbO0X" diff --git a/pack/mods/bookshelf.pw.toml b/pack/mods/bookshelf.pw.toml new file mode 100644 index 0000000..8a3af9e --- /dev/null +++ b/pack/mods/bookshelf.pw.toml @@ -0,0 +1,13 @@ +name = "Bookshelf" +filename = "Bookshelf-Forge-1.20.1-20.2.13.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "c53d9eb5ce9e8ef0f2ea9b11e478d84ce958c3e5" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5423987 +project-id = 228525 diff --git a/pack/mods/bundle-crafting-backport.pw.toml b/pack/mods/bundle-crafting-backport.pw.toml new file mode 100644 index 0000000..8f30469 --- /dev/null +++ b/pack/mods/bundle-crafting-backport.pw.toml @@ -0,0 +1,13 @@ +name = "Bundle Crafting Backport" +filename = "bundle-crafting-backport-1.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/9meQUmie/versions/FM1YaZE6/bundle-crafting-backport-1.1.jar" +hash-format = "sha512" +hash = "7796671239420c78ec2dd3934db40f54ab82133f9a75931f3b0b91317967dff219735b9401afed65e90f6b5276abc174dce0a220229e7649c95a626bb3616ffe" + +[update] +[update.modrinth] +mod-id = "9meQUmie" +version = "FM1YaZE6" diff --git a/pack/mods/caelus.pw.toml b/pack/mods/caelus.pw.toml new file mode 100644 index 0000000..18d89b4 --- /dev/null +++ b/pack/mods/caelus.pw.toml @@ -0,0 +1,13 @@ +name = "Caelus API" +filename = "caelus-forge-3.2.0+1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "fa834f140bf7dce7b67c29b46cb531f4309d3209" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5281700 +project-id = 308989 diff --git a/pack/mods/capable-cauldrons.pw.toml b/pack/mods/capable-cauldrons.pw.toml new file mode 100644 index 0000000..7f5663b --- /dev/null +++ b/pack/mods/capable-cauldrons.pw.toml @@ -0,0 +1,13 @@ +name = "Capable Cauldrons" +filename = "capable_cauldrons-1.20.1-1.2.1.7.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/3PglWyl6/versions/K02OufeV/capable_cauldrons-1.20.1-1.2.1.7.jar" +hash-format = "sha512" +hash = "50c1276d689e3a3c94934e0bc22e18de0e8d74b3a3659aff895cfb73e47774826dfb5b64c41a0d47747524e2bd2cc86dbf2c6c1e83b0de44bcbe539bb365c5cb" + +[update] +[update.modrinth] +mod-id = "3PglWyl6" +version = "K02OufeV" diff --git a/pack/mods/capable-composters.pw.toml b/pack/mods/capable-composters.pw.toml new file mode 100644 index 0000000..afe5ab7 --- /dev/null +++ b/pack/mods/capable-composters.pw.toml @@ -0,0 +1,13 @@ +name = "Capable Composters" +filename = "capable_composters-1.20.1-1.2.0.3.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/USbagZJw/versions/pJQ8mTAP/capable_composters-1.20.1-1.2.0.3.jar" +hash-format = "sha512" +hash = "9e11a3c36df484e2072291be71b43dd4f99c86a9d5eaaf305c440e4e4751e28a565f50b285bfde47fd9cfaefe20e858d886ee3dd1740ed9d4a0e934b4f9ec636" + +[update] +[update.modrinth] +mod-id = "USbagZJw" +version = "pJQ8mTAP" diff --git a/pack/mods/cloth-config.pw.toml b/pack/mods/cloth-config.pw.toml new file mode 100644 index 0000000..70a0ee5 --- /dev/null +++ b/pack/mods/cloth-config.pw.toml @@ -0,0 +1,13 @@ +name = "Cloth Config API (Fabric/Forge/NeoForge)" +filename = "cloth-config-11.1.136-forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "c65d07748acc57ceb45d53b3964368b84f34d54f" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5729105 +project-id = 348521 diff --git a/pack/mods/cofh-core.pw.toml b/pack/mods/cofh-core.pw.toml new file mode 100644 index 0000000..211cd93 --- /dev/null +++ b/pack/mods/cofh-core.pw.toml @@ -0,0 +1,13 @@ +name = "CoFH Core" +filename = "cofh_core-1.20.1-11.0.2.56.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "6f7c0056fece31bf393df450d79482810ed444af" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5374122 +project-id = 69162 diff --git a/pack/mods/colorful-hearts.pw.toml b/pack/mods/colorful-hearts.pw.toml new file mode 100644 index 0000000..e8a3990 --- /dev/null +++ b/pack/mods/colorful-hearts.pw.toml @@ -0,0 +1,13 @@ +name = "Colorful Hearts" +filename = "colorfulhearts-forge-1.20.1-4.3.16.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/wQfMUdZT/versions/LkhTyd10/colorfulhearts-forge-1.20.1-4.3.16.jar" +hash-format = "sha512" +hash = "4f0c9400669b36b6504b495856d8b3f3ae6885ef41ba596f41a94ef7f39e88e976e91e2d49312ce9b155abdbbaf19acaf9ac0530e3557486b969dab79438734c" + +[update] +[update.modrinth] +mod-id = "wQfMUdZT" +version = "LkhTyd10" diff --git a/pack/mods/configured-defaults.pw.toml b/pack/mods/configured-defaults.pw.toml new file mode 100644 index 0000000..ad4c63d --- /dev/null +++ b/pack/mods/configured-defaults.pw.toml @@ -0,0 +1,13 @@ +name = "Configured Defaults" +filename = "ConfiguredDefaults-v8.0.4-1.20.1-Forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "4ce4e836cc837a9b99dd1a9119260c640a4b5240" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6060024 +project-id = 930131 diff --git a/pack/mods/connector-extras.pw.toml b/pack/mods/connector-extras.pw.toml new file mode 100644 index 0000000..880bc70 --- /dev/null +++ b/pack/mods/connector-extras.pw.toml @@ -0,0 +1,13 @@ +name = "Connector Extras" +filename = "ConnectorExtras-1.11.2+1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "9336db4e6ce458bccf7724c039f0371e822397ae" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5490637 +project-id = 913445 diff --git a/pack/mods/coolrain-1.3.1-1.20.1.jar b/pack/mods/coolrain-1.3.1-1.20.1.jar new file mode 100644 index 0000000..17a4aa6 Binary files /dev/null and b/pack/mods/coolrain-1.3.1-1.20.1.jar differ diff --git a/pack/mods/copycats.pw.toml b/pack/mods/copycats.pw.toml new file mode 100644 index 0000000..483bde6 --- /dev/null +++ b/pack/mods/copycats.pw.toml @@ -0,0 +1,13 @@ +name = "Create: Copycats+" +filename = "copycats-3.0.4+mc.1.20.1-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/UT2M39wf/versions/OjWz9bJQ/copycats-3.0.4%2Bmc.1.20.1-forge.jar" +hash-format = "sha512" +hash = "0e66db87bb66d0f4e95d09ee095f6f14686e0b0b905afb8db9295621c6d35c97d762e37688d4dbbf0226710d88c7639be84005133e1586a1e0593344ff855356" + +[update] +[update.modrinth] +mod-id = "UT2M39wf" +version = "OjWz9bJQ" diff --git a/pack/mods/create-clockwork.pw.toml b/pack/mods/create-clockwork.pw.toml new file mode 100644 index 0000000..7d18f7f --- /dev/null +++ b/pack/mods/create-clockwork.pw.toml @@ -0,0 +1,13 @@ +name = "VS: Clockwork" +filename = "clockwork-forge-0.5.3-[MELTING_POINT].jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "24d9db0c5cc04fc4e7eda714de65545ab1d7af80" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7396414 +project-id = 807792 diff --git a/pack/mods/create-contraption-terminals.pw.toml b/pack/mods/create-contraption-terminals.pw.toml new file mode 100644 index 0000000..0ad3172 --- /dev/null +++ b/pack/mods/create-contraption-terminals.pw.toml @@ -0,0 +1,13 @@ +name = "Create Contraption Terminals" +filename = "createcontraptionterminals-1.20-1.2.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "10bedd1b9b03eb950936e29e339bf840ee739b65" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6252786 +project-id = 1059879 diff --git a/pack/mods/create-railways-navigator.pw.toml b/pack/mods/create-railways-navigator.pw.toml new file mode 100644 index 0000000..5a6ce82 --- /dev/null +++ b/pack/mods/create-railways-navigator.pw.toml @@ -0,0 +1,13 @@ +name = "Create Railways Navigator" +filename = "createrailwaysnavigator-forge-1.20.1-alpha-0.9.0-1-C6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Dq3STxps/versions/qiy5LFDZ/createrailwaysnavigator-forge-1.20.1-alpha-0.9.0-1-C6.jar" +hash-format = "sha512" +hash = "19bb51fd24d9e5e53386c5044ff088fb702822281150138fbf6fae3fbaa3f1b542848f1ceb42c40adf9e7c512b313c178837446946ebaf718fab328aa131e110" + +[update] +[update.modrinth] +mod-id = "Dq3STxps" +version = "qiy5LFDZ" diff --git a/pack/mods/create-steam-n-rails.pw.toml b/pack/mods/create-steam-n-rails.pw.toml new file mode 100644 index 0000000..b4ce0b9 --- /dev/null +++ b/pack/mods/create-steam-n-rails.pw.toml @@ -0,0 +1,13 @@ +name = "Create: Steam 'n' Rails" +filename = "Steam_Rails-1.6.14-beta+forge-mc1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "90ea1d917bc20a5e4cc50abaa512d2084149dc64" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7201308 +project-id = 688231 diff --git a/pack/mods/create.pw.toml b/pack/mods/create.pw.toml new file mode 100644 index 0000000..ce69014 --- /dev/null +++ b/pack/mods/create.pw.toml @@ -0,0 +1,13 @@ +name = "Create" +filename = "create-1.20.1-6.0.8.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/LNytGWDc/versions/8amzvn9x/create-1.20.1-6.0.8.jar" +hash-format = "sha512" +hash = "5b51f5d31437d9bfbf221b67459abd87260d284874e1e23b7ed1d522b23a48059a3b1d2c1c541428da35dc6be15561b4f3c7f36aac6df3a0e8db6a278f6b0316" + +[update] +[update.modrinth] +mod-id = "LNytGWDc" +version = "8amzvn9x" diff --git a/pack/mods/crossroads-mc.pw.toml b/pack/mods/crossroads-mc.pw.toml new file mode 100644 index 0000000..63d21c8 --- /dev/null +++ b/pack/mods/crossroads-mc.pw.toml @@ -0,0 +1,13 @@ +name = "Crossroads MC" +filename = "crossroads-1.20.1-2.10.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "39fb5de77cd03e71000bda8c08d591c7b84434fb" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6260167 +project-id = 250231 diff --git a/pack/mods/cull-less-leaves.pw.toml b/pack/mods/cull-less-leaves.pw.toml new file mode 100644 index 0000000..4b59ca3 --- /dev/null +++ b/pack/mods/cull-less-leaves.pw.toml @@ -0,0 +1,13 @@ +name = "Cull Less Leaves" +filename = "CullLessLeaves-1.3.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "83380456dab54b8ac790b84a0f4f39a1404e6bc5" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4719456 +project-id = 619718 diff --git a/pack/mods/distant-horizons-height-toggler-dhht.pw.toml b/pack/mods/distant-horizons-height-toggler-dhht.pw.toml new file mode 100644 index 0000000..71cb2c7 --- /dev/null +++ b/pack/mods/distant-horizons-height-toggler-dhht.pw.toml @@ -0,0 +1,13 @@ +name = "Distant Horizons Height Toggler DHHT" +filename = "DH_Y_Cutoff-1.2.3-forge-1.20.1.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/Gur53swA/versions/k47xld01/DH_Y_Cutoff-1.2.3-forge-1.20.1.jar" +hash-format = "sha512" +hash = "5f4001281e0ec534ae65dc4aee8f4a9e1ffaba85b45cd879ab37c254e7f2edfd4f9806962a6854eebaa4e53bfd8c498a134035672abfa7793468b789f663f1e2" + +[update] +[update.modrinth] +mod-id = "Gur53swA" +version = "k47xld01" diff --git a/pack/mods/distanthorizons.pw.toml b/pack/mods/distanthorizons.pw.toml new file mode 100644 index 0000000..dbc6b2c --- /dev/null +++ b/pack/mods/distanthorizons.pw.toml @@ -0,0 +1,13 @@ +name = "Distant Horizons" +filename = "DistantHorizons-2.4.5-b-1.20.1-fabric-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/uCdwusMi/versions/lC6CwqPp/DistantHorizons-2.4.5-b-1.20.1-fabric-forge.jar" +hash-format = "sha512" +hash = "679cb6f9b55d7eea43c17f0204042140590de712b0cecdc14016e8064a9846695e2f438922377f658e26534c49cb61e6da939a6be53c2cb1cd1bc088b69db3ee" + +[update] +[update.modrinth] +mod-id = "uCdwusMi" +version = "lC6CwqPp" diff --git a/pack/mods/dnt-ancient-city-overhaul.pw.toml b/pack/mods/dnt-ancient-city-overhaul.pw.toml new file mode 100644 index 0000000..0651a74 --- /dev/null +++ b/pack/mods/dnt-ancient-city-overhaul.pw.toml @@ -0,0 +1,13 @@ +name = "DnT Ancient City Overhaul" +filename = "dungeons-and-taverns-ancient-city-overhaul-1 [Forge].jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "c5b4170f6f40dde1c5c7d161f606bccbe3dd2871" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4785961 +project-id = 920418 diff --git a/pack/mods/dnt-stronghold-overhaul.pw.toml b/pack/mods/dnt-stronghold-overhaul.pw.toml new file mode 100644 index 0000000..018da28 --- /dev/null +++ b/pack/mods/dnt-stronghold-overhaul.pw.toml @@ -0,0 +1,13 @@ +name = "DnT Stronghold Overhaul" +filename = "dungeons-and-taverns-stronghold-rework-1 [Forge].jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "177e6e6a872bafa93e2ea1e60c7512cc5249c373" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4785955 +project-id = 920416 diff --git a/pack/mods/dragonlib.pw.toml b/pack/mods/dragonlib.pw.toml new file mode 100644 index 0000000..4390d04 --- /dev/null +++ b/pack/mods/dragonlib.pw.toml @@ -0,0 +1,13 @@ +name = "DragonLib" +filename = "dragonlib-forge-1.20.1-beta-3.0.16.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/sbIsGaOV/versions/fTXbMrXI/dragonlib-forge-1.20.1-beta-3.0.16.jar" +hash-format = "sha512" +hash = "ccef078ea0a1e034db6a84a056837212a337414c91a4934dc72bb83b5f8e4673d6ce5e3b7723d54fb5a2bcdf2c8470eebc165d749a6d11d75997fe052b8a9c22" + +[update] +[update.modrinth] +mod-id = "sbIsGaOV" +version = "fTXbMrXI" diff --git a/pack/mods/dramatic-doors.pw.toml b/pack/mods/dramatic-doors.pw.toml new file mode 100644 index 0000000..d675019 --- /dev/null +++ b/pack/mods/dramatic-doors.pw.toml @@ -0,0 +1,13 @@ +name = "Dramatic Doors" +filename = "DramaticDoors-QuiFabrge-1.20.1-3.3.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/aQ7h7gal/versions/tRalrohW/DramaticDoors-QuiFabrge-1.20.1-3.3.1.jar" +hash-format = "sha512" +hash = "b9e63c30af2a0e4f255c679a478cb87e8a571bfe4fb3509010281663e0e2b5620d59c185477057a876440d9c8838fd1824411a170ddd6ce6df84e0d477c72009" + +[update] +[update.modrinth] +mod-id = "aQ7h7gal" +version = "tRalrohW" diff --git a/pack/mods/drizzleproof.pw.toml b/pack/mods/drizzleproof.pw.toml new file mode 100644 index 0000000..bd9451d --- /dev/null +++ b/pack/mods/drizzleproof.pw.toml @@ -0,0 +1,13 @@ +name = "Drizzleproof" +filename = "drizzleproof-1.20.1-2.0.3-all.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/BOFbTsjc/versions/wVfE3xnz/drizzleproof-1.20.1-2.0.3-all.jar" +hash-format = "sha512" +hash = "c534579fbaf7ae6a656ebf42346a108681d0ce9780ab282fa20b7aaa7b7b4d4b3af20ed98ae2a8e99c0b7f9320d65925a9719924c4ce08520dbf47f0efd52260" + +[update] +[update.modrinth] +mod-id = "BOFbTsjc" +version = "wVfE3xnz" diff --git a/pack/mods/dungeon-and-taverns.pw.toml b/pack/mods/dungeon-and-taverns.pw.toml new file mode 100644 index 0000000..9b9ddbf --- /dev/null +++ b/pack/mods/dungeon-and-taverns.pw.toml @@ -0,0 +1,13 @@ +name = "Dungeons and Taverns" +filename = "dungeons-and-taverns-3.0.3.f[Forge].jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "3f324242f3daf4785a8b9338f228679418f4870a" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5206484 +project-id = 853794 diff --git a/pack/mods/dynamic-fps.pw.toml b/pack/mods/dynamic-fps.pw.toml new file mode 100644 index 0000000..368c751 --- /dev/null +++ b/pack/mods/dynamic-fps.pw.toml @@ -0,0 +1,13 @@ +name = "Dynamic FPS" +filename = "dynamic-fps-3.9.5+minecraft-1.20.0-forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "a034d1752abd84dc188852dac1ef87fb8ab2247a" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6662027 +project-id = 335493 diff --git a/pack/mods/dynamic-trees-quark.pw.toml b/pack/mods/dynamic-trees-quark.pw.toml new file mode 100644 index 0000000..d9bf3df --- /dev/null +++ b/pack/mods/dynamic-trees-quark.pw.toml @@ -0,0 +1,13 @@ +name = "Dynamic Trees - Quark" +filename = "DynamicTreesQuark-1.20.1-2.5.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "0568879dc700c325d9377439b3ab2006069b9dfd" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5511673 +project-id = 386753 diff --git a/pack/mods/dynamic-trees-traverse.pw.toml b/pack/mods/dynamic-trees-traverse.pw.toml new file mode 100644 index 0000000..f355cf7 --- /dev/null +++ b/pack/mods/dynamic-trees-traverse.pw.toml @@ -0,0 +1,13 @@ +name = "Dynamic Trees - Traverse" +filename = "DynamicTreesTraverse-1.20.1-2.4.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e462282cba32129b21f1b159ee9c6a58c6c04886" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5991473 +project-id = 407056 diff --git a/pack/mods/dynamictrees.pw.toml b/pack/mods/dynamictrees.pw.toml new file mode 100644 index 0000000..0a67ef5 --- /dev/null +++ b/pack/mods/dynamictrees.pw.toml @@ -0,0 +1,13 @@ +name = "Dynamic Trees" +filename = "DynamicTrees-1.20.1-1.4.9.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "02546cd1984998740b8e44fab17be1889feac5f1" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7340373 +project-id = 252818 diff --git a/pack/mods/ears.pw.toml b/pack/mods/ears.pw.toml new file mode 100644 index 0000000..ba3e776 --- /dev/null +++ b/pack/mods/ears.pw.toml @@ -0,0 +1,13 @@ +name = "Ears (+ Snouts/Muzzles, Tails, Horns, Wings, and More)" +filename = "ears-forge-1.19.4-1.4.7.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "cbfdee60bbe65076fc0d0e293631aeb377c23e2a" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6166552 +project-id = 412013 diff --git a/pack/mods/easy-shulker-boxes.pw.toml b/pack/mods/easy-shulker-boxes.pw.toml new file mode 100644 index 0000000..69b61da --- /dev/null +++ b/pack/mods/easy-shulker-boxes.pw.toml @@ -0,0 +1,13 @@ +name = "Easy Shulker Boxes" +filename = "EasyShulkerBoxes-v8.0.2-1.20.1-Forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gA5euN8S/versions/BG9Ajkjd/EasyShulkerBoxes-v8.0.2-1.20.1-Forge.jar" +hash-format = "sha512" +hash = "02275d842a6d2b63f248e63b889a919b7cac628923dec6c939261c004d98c03e37112ed8c476177c6021eb0c90bf1b32945d2c3f641935d06279f548adfde905" + +[update] +[update.modrinth] +mod-id = "gA5euN8S" +version = "BG9Ajkjd" diff --git a/pack/mods/easy-shulker-sacks.pw.toml b/pack/mods/easy-shulker-sacks.pw.toml new file mode 100644 index 0000000..17c3b55 --- /dev/null +++ b/pack/mods/easy-shulker-sacks.pw.toml @@ -0,0 +1,13 @@ +name = "Easy Shulker Sacks" +filename = "easy-shulker-sacks-1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/kkkCzGnx/versions/gSTivtLl/easy-shulker-sacks-1.0.jar" +hash-format = "sha512" +hash = "f6f2a2e756701774374dfc254f968134dbb994e91b8a091f9e1d1d3d251642c475081728ef94faaa136f5dff68d2bd9cd459b2ac13192aff93bab071c6ba235c" + +[update] +[update.modrinth] +mod-id = "kkkCzGnx" +version = "gSTivtLl" diff --git a/pack/mods/effortless.pw.toml b/pack/mods/effortless.pw.toml new file mode 100644 index 0000000..0badefe --- /dev/null +++ b/pack/mods/effortless.pw.toml @@ -0,0 +1,13 @@ +name = "Effortless Structure" +filename = "effortless-1.20.1-3.4.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/EF68hjiy/versions/OswWvyth/effortless-1.20.1-3.4.0.jar" +hash-format = "sha512" +hash = "26b2b9e914597541eef2e804294189d462da46508e00ed3f67e270c0107420aff0304fd32832deb25928c26c66d98bba5e606a4281e8269717dafa183188a876" + +[update] +[update.modrinth] +mod-id = "EF68hjiy" +version = "OswWvyth" diff --git a/pack/mods/elenai-dodge-2.pw.toml b/pack/mods/elenai-dodge-2.pw.toml new file mode 100644 index 0000000..bbc3536 --- /dev/null +++ b/pack/mods/elenai-dodge-2.pw.toml @@ -0,0 +1,13 @@ +name = "Elenai Dodge 2" +filename = "elenaidodge2-1.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "3f2663b57220c174e3818eb08be90131950820c7" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4814313 +project-id = 442962 diff --git a/pack/mods/embeddium.pw.toml b/pack/mods/embeddium.pw.toml new file mode 100644 index 0000000..ca17b24 --- /dev/null +++ b/pack/mods/embeddium.pw.toml @@ -0,0 +1,13 @@ +name = "Embeddium" +filename = "embeddium-0.3.31+mc1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "bb2fa8f3e493af16af9160d049f96c614a1faf2f" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5681725 +project-id = 908741 diff --git a/pack/mods/emi-ores.pw.toml b/pack/mods/emi-ores.pw.toml new file mode 100644 index 0000000..c702343 --- /dev/null +++ b/pack/mods/emi-ores.pw.toml @@ -0,0 +1,13 @@ +name = "EMI Ores" +filename = "emi_ores-1.2+1.20.1+forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "c821f26e4a00c14fb453bfdb7628aec59fd2acf1" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6060341 +project-id = 974009 diff --git a/pack/mods/emi.pw.toml b/pack/mods/emi.pw.toml new file mode 100644 index 0000000..816885c --- /dev/null +++ b/pack/mods/emi.pw.toml @@ -0,0 +1,13 @@ +name = "EMI" +filename = "emi-1.1.22+1.20.1+forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d8049d6ec86befcd100a0ff0fc8ebc289f735997" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6420945 +project-id = 580555 diff --git a/pack/mods/emienchants.pw.toml b/pack/mods/emienchants.pw.toml new file mode 100644 index 0000000..4219713 --- /dev/null +++ b/pack/mods/emienchants.pw.toml @@ -0,0 +1,13 @@ +name = "EMI Enchants" +filename = "EMIEnchants-forge-1.19.3-1.20.4-1.0.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d01c60fa55b9bc0700c23b04afc1fb43d579ccc1" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5425207 +project-id = 1036393 diff --git a/pack/mods/enchantment-descriptions.pw.toml b/pack/mods/enchantment-descriptions.pw.toml new file mode 100644 index 0000000..65d4cd5 --- /dev/null +++ b/pack/mods/enchantment-descriptions.pw.toml @@ -0,0 +1,13 @@ +name = "Enchantment Descriptions" +filename = "EnchantmentDescriptions-Forge-1.20.1-17.1.20.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "7942d3bf21a5060fb070f0809bf43a165b163fb5" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7336071 +project-id = 250419 diff --git a/pack/mods/enchantment-transfer.pw.toml b/pack/mods/enchantment-transfer.pw.toml new file mode 100644 index 0000000..55d7e1d --- /dev/null +++ b/pack/mods/enchantment-transfer.pw.toml @@ -0,0 +1,13 @@ +name = "Enchantment Transfer (Fabric/Forge)" +filename = "enchantmenttransfer-0.0.6-1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "1ba75545be01cb92bc6cee543f24dedb3d581d4d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4646163 +project-id = 567984 diff --git a/pack/mods/enhanced-block-entities.pw.toml b/pack/mods/enhanced-block-entities.pw.toml new file mode 100644 index 0000000..cdb06c6 --- /dev/null +++ b/pack/mods/enhanced-block-entities.pw.toml @@ -0,0 +1,13 @@ +name = "Enhanced Block Entities" +filename = "enhancedblockentities-0.9+1.20.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "61cfe50f69f8ef9e3640c0269ef158870f5b0410" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4610052 +project-id = 452046 diff --git a/pack/mods/ensorcellation.pw.toml b/pack/mods/ensorcellation.pw.toml new file mode 100644 index 0000000..3a8f9e8 --- /dev/null +++ b/pack/mods/ensorcellation.pw.toml @@ -0,0 +1,13 @@ +name = "Ensorcellation" +filename = "ensorcellation-1.20.1-5.0.2.24.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e0a018f61c2302c377b26ef3f7c5bd6e8a7303b8" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5430042 +project-id = 349447 diff --git a/pack/mods/entity-model-features.pw.toml b/pack/mods/entity-model-features.pw.toml new file mode 100644 index 0000000..fc35aee --- /dev/null +++ b/pack/mods/entity-model-features.pw.toml @@ -0,0 +1,13 @@ +name = "[EMF] Entity Model Features [Fabric & Forge]" +filename = "entity_model_features_1.20.1-forge-3.0.10.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "f9913b7ecaaf187bfb50fad3ed38a75b1a36e608" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7400722 +project-id = 844662 diff --git a/pack/mods/entity-texture-features-fabric.pw.toml b/pack/mods/entity-texture-features-fabric.pw.toml new file mode 100644 index 0000000..2ef55ee --- /dev/null +++ b/pack/mods/entity-texture-features-fabric.pw.toml @@ -0,0 +1,13 @@ +name = "[ETF] Entity Texture Features - [Fabric & Forge]" +filename = "entity_texture_features_1.20.1-forge-7.0.8.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "0f401357dfa13ec8a300dc4f436d9f1164fc7044" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7392390 +project-id = 568563 diff --git a/pack/mods/entityculling.pw.toml b/pack/mods/entityculling.pw.toml new file mode 100644 index 0000000..8d909c5 --- /dev/null +++ b/pack/mods/entityculling.pw.toml @@ -0,0 +1,13 @@ +name = "Entity Culling Fabric/Forge" +filename = "entityculling-forge-1.9.2-mc1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "760530a1db027bf2cdea5760a6138a045ad11242" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7125341 +project-id = 448233 diff --git a/pack/mods/esf-entity-sound-features.pw.toml b/pack/mods/esf-entity-sound-features.pw.toml new file mode 100644 index 0000000..0e83b4d --- /dev/null +++ b/pack/mods/esf-entity-sound-features.pw.toml @@ -0,0 +1,13 @@ +name = "[ESF] Entity Sound Features" +filename = "entity_sound_features_1.20.4-forge-0.7.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e69c294320cfbf7000683a9401e2c5849772541c" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6994928 +project-id = 1060324 diff --git a/pack/mods/essentials.pw.toml b/pack/mods/essentials.pw.toml new file mode 100644 index 0000000..b10a4d7 --- /dev/null +++ b/pack/mods/essentials.pw.toml @@ -0,0 +1,13 @@ +name = "Essentials" +filename = "essentials-1.20.1-2.16.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "51624cbd509a58bf22b232817b2ecef8e2ff1155" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4640300 +project-id = 293752 diff --git a/pack/mods/euphonium-1.0.3+1.20.jar b/pack/mods/euphonium-1.0.3+1.20.jar new file mode 100644 index 0000000..931b72f Binary files /dev/null and b/pack/mods/euphonium-1.0.3+1.20.jar differ diff --git a/pack/mods/every-compat.pw.toml b/pack/mods/every-compat.pw.toml new file mode 100644 index 0000000..fc9f47c --- /dev/null +++ b/pack/mods/every-compat.pw.toml @@ -0,0 +1,13 @@ +name = "Every Compat (Wood Good)" +filename = "everycomp-1.20-2.9.13-forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "2c78942c7396b1fab9e53e4ee8172f7ce0ba4482" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7379475 +project-id = 628539 diff --git a/pack/mods/exposure.pw.toml b/pack/mods/exposure.pw.toml new file mode 100644 index 0000000..da633fd --- /dev/null +++ b/pack/mods/exposure.pw.toml @@ -0,0 +1,13 @@ +name = "Exposure" +filename = "exposure-1.20.1-1.7.16-forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b1ec92eeafdc97e88e0baacd5d89f4c1f89a4bbc" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6655718 +project-id = 871755 diff --git a/pack/mods/fabric-language-kotlin.pw.toml b/pack/mods/fabric-language-kotlin.pw.toml new file mode 100644 index 0000000..0a2d7c4 --- /dev/null +++ b/pack/mods/fabric-language-kotlin.pw.toml @@ -0,0 +1,13 @@ +name = "Fabric Language Kotlin" +filename = "fabric-language-kotlin-1.13.8+kotlin.2.3.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "05fe02fe61232c4ddea4059e8103281424d5a2bd" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7340876 +project-id = 308769 diff --git a/pack/mods/feathers.pw.toml b/pack/mods/feathers.pw.toml new file mode 100644 index 0000000..6de8ad8 --- /dev/null +++ b/pack/mods/feathers.pw.toml @@ -0,0 +1,13 @@ +name = "Feathers" +filename = "feathers-1.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "c14d5653b96084b3e0d21aec5e04028fa11db070" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4814309 +project-id = 699933 diff --git a/pack/mods/ferritecore.pw.toml b/pack/mods/ferritecore.pw.toml new file mode 100644 index 0000000..4c7aa95 --- /dev/null +++ b/pack/mods/ferritecore.pw.toml @@ -0,0 +1,13 @@ +name = "FerriteCore ((Neo)Forge)" +filename = "ferritecore-6.0.1-forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "417fb6ce8f52abf40bd9d0390371790f9576f8ba" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4810975 +project-id = 429235 diff --git a/pack/mods/flib.pw.toml b/pack/mods/flib.pw.toml new file mode 100644 index 0000000..936d512 --- /dev/null +++ b/pack/mods/flib.pw.toml @@ -0,0 +1,13 @@ +name = "FLIB" +filename = "flib-1.20.1-0.0.14.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "1080d98fe7c11b50f43d1858fb64ef7ca0c9cb74" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5495793 +project-id = 661261 diff --git a/pack/mods/fog.pw.toml b/pack/mods/fog.pw.toml new file mode 100644 index 0000000..535196a --- /dev/null +++ b/pack/mods/fog.pw.toml @@ -0,0 +1,13 @@ +name = "Fog" +filename = "Fog-forge-1.5.3-1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "2b874f1086ba8b0db1fe2cead9308decfb331517" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5967910 +project-id = 815438 diff --git a/pack/mods/food-benefits-modified.jar b/pack/mods/food-benefits-modified.jar new file mode 100644 index 0000000..bc4b7ae Binary files /dev/null and b/pack/mods/food-benefits-modified.jar differ diff --git a/pack/mods/forgery.pw.toml b/pack/mods/forgery.pw.toml new file mode 100644 index 0000000..c3bf0ae --- /dev/null +++ b/pack/mods/forgery.pw.toml @@ -0,0 +1,13 @@ +name = "Forgery" +filename = "forgery-3.6.5+1.20.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "f2c7fb0ebafaa5120471fcafd6d5d06fb49aba41" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7051720 +project-id = 434087 diff --git a/pack/mods/forgified-fabric-api.pw.toml b/pack/mods/forgified-fabric-api.pw.toml new file mode 100644 index 0000000..de7b6e1 --- /dev/null +++ b/pack/mods/forgified-fabric-api.pw.toml @@ -0,0 +1,13 @@ +name = "Forgified Fabric API" +filename = "fabric-api-0.92.6+1.11.14+1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "285c22b2567b9fdf98ef9808eceb5557de9611d3" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6885853 +project-id = 889079 diff --git a/pack/mods/geckolib.pw.toml b/pack/mods/geckolib.pw.toml new file mode 100644 index 0000000..f5b1846 --- /dev/null +++ b/pack/mods/geckolib.pw.toml @@ -0,0 +1,13 @@ +name = "Geckolib" +filename = "geckolib-forge-1.20.1-4.8.2.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/8BmcQJ2H/versions/aVW7Z5da/geckolib-forge-1.20.1-4.8.2.jar" +hash-format = "sha512" +hash = "8d8cb1f2d60c885b3b312aca63b94e3942e50ca40e96514f35fb74a39367afa07e4986640a66c66b035da9ea60cb6d8ff602e9c0b6b298e5ce584ad9f46a2f45" + +[update] +[update.modrinth] +mod-id = "8BmcQJ2H" +version = "aVW7Z5da" diff --git a/pack/mods/hang-glider.pw.toml b/pack/mods/hang-glider.pw.toml new file mode 100644 index 0000000..d6c1666 --- /dev/null +++ b/pack/mods/hang-glider.pw.toml @@ -0,0 +1,13 @@ +name = "Hang Glider" +filename = "HangGlider-v8.0.1-1.20.1-Forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e4a5deeb545db6853ae4d668d0751228e641fc61" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4710223 +project-id = 852668 diff --git a/pack/mods/hexcasting.pw.toml b/pack/mods/hexcasting.pw.toml new file mode 100644 index 0000000..2de0e9f --- /dev/null +++ b/pack/mods/hexcasting.pw.toml @@ -0,0 +1,13 @@ +name = "Hex Casting" +filename = "hexcasting-forge-1.20.1-0.11.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "7005974f352bae9f34d0d2492e69bf9437f945e0" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7250896 +project-id = 569849 diff --git a/pack/mods/hunger-strike.pw.toml b/pack/mods/hunger-strike.pw.toml new file mode 100644 index 0000000..f9b93ec --- /dev/null +++ b/pack/mods/hunger-strike.pw.toml @@ -0,0 +1,13 @@ +name = "Hunger Strike" +filename = "HungerStrike-1.20.1-8.0.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/mRmUNjL3/versions/4tO2FWQn/HungerStrike-1.20.1-8.0.0.jar" +hash-format = "sha512" +hash = "9be8e43748e7708ff673d88185be6714f205402a1763cc89e02b5c3456770060ba9bbe5adc1d5af1b1ee25d4b922b99416cb08eb7366776f914e5b93ddf56617" + +[update] +[update.modrinth] +mod-id = "mRmUNjL3" +version = "4tO2FWQn" diff --git a/pack/mods/immediatelyfast.pw.toml b/pack/mods/immediatelyfast.pw.toml new file mode 100644 index 0000000..6a50038 --- /dev/null +++ b/pack/mods/immediatelyfast.pw.toml @@ -0,0 +1,13 @@ +name = "ImmediatelyFast" +filename = "ImmediatelyFast-Forge-1.5.2+1.20.4.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "2eeca5deb063ed49bb9c6be8b162ca6270202239" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6997261 +project-id = 686911 diff --git a/pack/mods/inline.pw.toml b/pack/mods/inline.pw.toml new file mode 100644 index 0000000..51e6a68 --- /dev/null +++ b/pack/mods/inline.pw.toml @@ -0,0 +1,13 @@ +name = "Inline" +filename = "inline-forge-1.20.1-1.2.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "f19ae88f41256a74eed7b08b434d5c4695aaa6dd" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6556850 +project-id = 971167 diff --git a/pack/mods/inventorio.pw.toml b/pack/mods/inventorio.pw.toml new file mode 100644 index 0000000..78a7a47 --- /dev/null +++ b/pack/mods/inventorio.pw.toml @@ -0,0 +1,13 @@ +name = "Inventorio (Fabric)" +filename = "inventorio-mc1.20.1-fabric-v1.10.4.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "21a5404053a0bf974a852a4d9fdfbe7a620015ad" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6439098 +project-id = 491073 diff --git a/pack/mods/item-obliterator.pw.toml b/pack/mods/item-obliterator.pw.toml new file mode 100644 index 0000000..2a6e97b --- /dev/null +++ b/pack/mods/item-obliterator.pw.toml @@ -0,0 +1,13 @@ +name = "Item Obliterator (Modpack Utils Series)" +filename = "Item-Obliterator-NeoForge-MC1.20.1-2.3.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d8fa4e840a3d60f2172de0584d804d0bf7e6db19" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5479898 +project-id = 835861 diff --git a/pack/mods/jei.pw.toml b/pack/mods/jei.pw.toml new file mode 100644 index 0000000..f2dc3be --- /dev/null +++ b/pack/mods/jei.pw.toml @@ -0,0 +1,13 @@ +name = "Just Enough Items (JEI)" +filename = "jei-1.20.1-forge-15.20.0.128.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "6d6ab556c4b47b63354f30939bbc5f1025ff689e" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7361881 +project-id = 238222 diff --git a/pack/mods/joy-of-painting.pw.toml b/pack/mods/joy-of-painting.pw.toml new file mode 100644 index 0000000..207707e --- /dev/null +++ b/pack/mods/joy-of-painting.pw.toml @@ -0,0 +1,13 @@ +name = "Joy of Painting" +filename = "xercapaint-1.20.1-1.0.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d8447a6f13406c0be84ac3037210a97b44158539" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5591990 +project-id = 350727 diff --git a/pack/mods/kitchen-karrot-modified.jar b/pack/mods/kitchen-karrot-modified.jar new file mode 100644 index 0000000..974801c Binary files /dev/null and b/pack/mods/kitchen-karrot-modified.jar differ diff --git a/pack/mods/kiwi.pw.toml b/pack/mods/kiwi.pw.toml new file mode 100644 index 0000000..e020858 --- /dev/null +++ b/pack/mods/kiwi.pw.toml @@ -0,0 +1,13 @@ +name = "Kiwi 🥝" +filename = "Kiwi-1.20.1-Forge-11.10.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/ufdDoWPd/versions/hHZTjmFa/Kiwi-1.20.1-Forge-11.10.0.jar" +hash-format = "sha512" +hash = "f6eee2ace7c6755cb39e3e861bab7021873049064a44d26d8378b72afcb7de1b14eb4a6b094954428e2e7c4cda90f12387408c676dcfbf07637875bf0aa6738c" + +[update] +[update.modrinth] +mod-id = "ufdDoWPd" +version = "hHZTjmFa" diff --git a/pack/mods/kotlin-for-forge.pw.toml b/pack/mods/kotlin-for-forge.pw.toml new file mode 100644 index 0000000..28b435d --- /dev/null +++ b/pack/mods/kotlin-for-forge.pw.toml @@ -0,0 +1,13 @@ +name = "Kotlin for Forge" +filename = "kotlinforforge-4.12.0-all.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "962fdb760409d6d71cbf079235f1ca94e3863a22" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7291067 +project-id = 351264 diff --git a/pack/mods/lithostitched.pw.toml b/pack/mods/lithostitched.pw.toml new file mode 100644 index 0000000..9e17327 --- /dev/null +++ b/pack/mods/lithostitched.pw.toml @@ -0,0 +1,13 @@ +name = "Lithostitched" +filename = "lithostitched-forge-1.20.1-1.4.11.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d1a755de84ee5d8910ff1e65e815473056e93ece" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6742615 +project-id = 936015 diff --git a/pack/mods/lootr.pw.toml b/pack/mods/lootr.pw.toml new file mode 100644 index 0000000..01e1185 --- /dev/null +++ b/pack/mods/lootr.pw.toml @@ -0,0 +1,13 @@ +name = "Lootr (Forge & NeoForge)" +filename = "lootr-forge-1.20-0.7.35.94.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "1ec77a7df8adbf3290a296bf25b8f99f37a60020" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7263076 +project-id = 361276 diff --git a/pack/mods/mcqoy.pw.toml b/pack/mods/mcqoy.pw.toml new file mode 100644 index 0000000..dd5638b --- /dev/null +++ b/pack/mods/mcqoy.pw.toml @@ -0,0 +1,13 @@ +name = "McQoy" +filename = "mcqoy-0.4.1+forge-1.20.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "3146950f631a45f73772d73f5ba4b3bcde07344b" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7372151 +project-id = 1402884 diff --git a/pack/mods/modonomicon.pw.toml b/pack/mods/modonomicon.pw.toml new file mode 100644 index 0000000..32c6b74 --- /dev/null +++ b/pack/mods/modonomicon.pw.toml @@ -0,0 +1,13 @@ +name = "Modonomicon" +filename = "modonomicon-1.20.1-forge-1.79.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "9d55f629c8a9b0ea1912051fe04b16400c640944" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7086951 +project-id = 538392 diff --git a/pack/mods/momentum.pw.toml b/pack/mods/momentum.pw.toml new file mode 100644 index 0000000..1f90508 --- /dev/null +++ b/pack/mods/momentum.pw.toml @@ -0,0 +1,13 @@ +name = "Momentum" +filename = "Momentum-1.20.1-4.0.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "c346cf5885a205a9fe58a090cc60b81fed2ffe4b" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4707913 +project-id = 454174 diff --git a/pack/mods/moonlight.pw.toml b/pack/mods/moonlight.pw.toml new file mode 100644 index 0000000..1911626 --- /dev/null +++ b/pack/mods/moonlight.pw.toml @@ -0,0 +1,13 @@ +name = "Moonlight Lib" +filename = "moonlight-1.20-2.16.23-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/twkfQtEc/versions/XCFIOCRA/moonlight-1.20-2.16.23-forge.jar" +hash-format = "sha512" +hash = "2baeeafd86a7df76b81d41cf20f6dde2f1ecfed3bfda19f299d6acd59fd52eedda47829b56ac0f4da4647e9f7be50a8ec6f677c421f91c0bb5c8f5f8d0710b49" + +[update] +[update.modrinth] +mod-id = "twkfQtEc" +version = "XCFIOCRA" diff --git a/pack/mods/mru.pw.toml b/pack/mods/mru.pw.toml new file mode 100644 index 0000000..40dda36 --- /dev/null +++ b/pack/mods/mru.pw.toml @@ -0,0 +1,13 @@ +name = "M.R.U" +filename = "MRU-1.0.4+1.20.1+forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/SNVQ2c0g/versions/nKL4LKzM/MRU-1.0.4%2B1.20.1%2Bforge.jar" +hash-format = "sha512" +hash = "be202bfeb3724ff4433b51e02764c2498c36ed01229306492260c0bc2f3c62b9f8a3f500baf083210fc683723a60793db8c3e384b28e7da599806cf3c489fdac" + +[update] +[update.modrinth] +mod-id = "SNVQ2c0g" +version = "nKL4LKzM" diff --git a/pack/mods/mutil.pw.toml b/pack/mods/mutil.pw.toml new file mode 100644 index 0000000..2bc043f --- /dev/null +++ b/pack/mods/mutil.pw.toml @@ -0,0 +1,13 @@ +name = "mutil" +filename = "mutil-1.20.1-6.2.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/HWHl8Evb/versions/8CZJ2gLR/mutil-1.20.1-6.2.0.jar" +hash-format = "sha512" +hash = "171f0c901fa1a42cbe9636e173530745dfaa58cd9cba1669a1c8cff1e35bf669d604740325183cd9253f3117a6d223b3cadae0cc9c0f6b2fbacba1303379f067" + +[update] +[update.modrinth] +mod-id = "HWHl8Evb" +version = "8CZJ2gLR" diff --git a/pack/mods/naturalist.pw.toml b/pack/mods/naturalist.pw.toml new file mode 100644 index 0000000..3ef2501 --- /dev/null +++ b/pack/mods/naturalist.pw.toml @@ -0,0 +1,13 @@ +name = "Naturalist" +filename = "naturalist-5.0pre3+forge-1.20.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/F8BQNPWX/versions/Cx95h37p/naturalist-5.0pre3%2Bforge-1.20.1.jar" +hash-format = "sha512" +hash = "6a03e808a1cf88ef4208af58e39858ae501b0746b99c9d39273c414f9fe7db6751444c32b749beedc184deff4bfae10ed23e6143b83b03113c56320844a577db" + +[update] +[update.modrinth] +mod-id = "F8BQNPWX" +version = "Cx95h37p" diff --git a/pack/mods/necronomicon.pw.toml b/pack/mods/necronomicon.pw.toml new file mode 100644 index 0000000..2a1bd42 --- /dev/null +++ b/pack/mods/necronomicon.pw.toml @@ -0,0 +1,13 @@ +name = "Necronomicon API" +filename = "Necronomicon-Forge-1.6.0+1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "2ad4ffa0fb087e4467c6f7496d456fc1ac949ebf" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5772681 +project-id = 586157 diff --git a/pack/mods/nekos-enchanted-books.pw.toml b/pack/mods/nekos-enchanted-books.pw.toml new file mode 100644 index 0000000..eb09f28 --- /dev/null +++ b/pack/mods/nekos-enchanted-books.pw.toml @@ -0,0 +1,13 @@ +name = "Neko's Enchanted Books" +filename = "NekosEnchantedBooks-1.19.3-2.0.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "9b7494151519256774e893ca7ac5bffaa17f05b9" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6180647 +project-id = 441114 diff --git a/pack/mods/no-telemetry.pw.toml b/pack/mods/no-telemetry.pw.toml new file mode 100644 index 0000000..370a71f --- /dev/null +++ b/pack/mods/no-telemetry.pw.toml @@ -0,0 +1,13 @@ +name = "No Telemetry" +filename = "no-telemetry-1.9.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "19545f40c8231fafdc183ea1c675ecbf3ecf025d" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6201294 +project-id = 530816 diff --git a/pack/mods/noisium-forge-2.3.0+mc1.20-1.20.1.jar b/pack/mods/noisium-forge-2.3.0+mc1.20-1.20.1.jar new file mode 100644 index 0000000..88d3133 Binary files /dev/null and b/pack/mods/noisium-forge-2.3.0+mc1.20-1.20.1.jar differ diff --git a/pack/mods/not-enough-animations.pw.toml b/pack/mods/not-enough-animations.pw.toml new file mode 100644 index 0000000..c7daa44 --- /dev/null +++ b/pack/mods/not-enough-animations.pw.toml @@ -0,0 +1,13 @@ +name = "Not Enough Animations" +filename = "notenoughanimations-forge-1.11.1-mc1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "9aa8917d7c0a5311dc495da3c720434de49e0e24" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7325366 +project-id = 433760 diff --git a/pack/mods/nyfs-spiders.pw.toml b/pack/mods/nyfs-spiders.pw.toml new file mode 100644 index 0000000..59b49fd --- /dev/null +++ b/pack/mods/nyfs-spiders.pw.toml @@ -0,0 +1,13 @@ +name = "Nyf's Spiders" +filename = "nyfsspiders-forge-1.20.1-2.1.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "20783131cc63dec55036ffde84ed72c7e3c648c3" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4728359 +project-id = 686058 diff --git a/pack/mods/oh-my-gourd.pw.toml b/pack/mods/oh-my-gourd.pw.toml new file mode 100644 index 0000000..ab67de7 --- /dev/null +++ b/pack/mods/oh-my-gourd.pw.toml @@ -0,0 +1,13 @@ +name = "Oh My Gourd!" +filename = "omgourd-1.20.1-5.0.0.17.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/bUNifErl/versions/UPpoK6f3/omgourd-1.20.1-5.0.0.17.jar" +hash-format = "sha512" +hash = "f40b5d9be5ca21b8a329dbc9c036d6822aab1a8c51cc4cd7dee6dafecdbb4f53a5e8bdf3ad20ddf31c455ffb23a39658d5f661eeccac61094f334551670b600d" + +[update] +[update.modrinth] +mod-id = "bUNifErl" +version = "UPpoK6f3" diff --git a/pack/mods/old-mc-logo-1.0.0.jar b/pack/mods/old-mc-logo-1.0.0.jar new file mode 100644 index 0000000..80604d9 Binary files /dev/null and b/pack/mods/old-mc-logo-1.0.0.jar differ diff --git a/pack/mods/origins.pw.toml b/pack/mods/origins.pw.toml new file mode 100644 index 0000000..e585bd5 --- /dev/null +++ b/pack/mods/origins.pw.toml @@ -0,0 +1,13 @@ +name = "Origins" +filename = "Origins-1.10.2+mc.1.20.x.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/3BeIrqZR/versions/S03WNOkQ/Origins-1.10.2%2Bmc.1.20.x.jar" +hash-format = "sha512" +hash = "1d4031b11e1863cae909f3f5c81f06f3d59de495a696d0b32a028c2459084434c77b7bd1008f4c7097c97d66402d58f9e97df70b2ccd0c25680f859e26a82e6f" + +[update] +[update.modrinth] +mod-id = "3BeIrqZR" +version = "S03WNOkQ" diff --git a/pack/mods/patchouli.pw.toml b/pack/mods/patchouli.pw.toml new file mode 100644 index 0000000..ccc3ed0 --- /dev/null +++ b/pack/mods/patchouli.pw.toml @@ -0,0 +1,13 @@ +name = "Patchouli" +filename = "Patchouli-1.20.1-84.1-FORGE.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e91d2e2f251375d647d592b670ea6f310c2554eb" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6164575 +project-id = 306770 diff --git a/pack/mods/paucal.pw.toml b/pack/mods/paucal.pw.toml new file mode 100644 index 0000000..3f5c547 --- /dev/null +++ b/pack/mods/paucal.pw.toml @@ -0,0 +1,13 @@ +name = "PAUCAL" +filename = "paucal-0.6.0+1.20.1-forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "360a748d33bc23674399781992489e10e613e5ea" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5687007 +project-id = 597824 diff --git a/pack/mods/paxi.pw.toml b/pack/mods/paxi.pw.toml new file mode 100644 index 0000000..e9706bf --- /dev/null +++ b/pack/mods/paxi.pw.toml @@ -0,0 +1,13 @@ +name = "Paxi" +filename = "Paxi-1.20-Forge-4.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/CU0PAyzb/versions/C7buFh0l/Paxi-1.20-Forge-4.0.jar" +hash-format = "sha512" +hash = "50ed8c99981b9860c846a18cda215d388b67019b76a172833fa4e4b52cbd122eb8e49e594e5789790f95af06e0a98dcf2433b001b1f559b3e7071d2e6b7c1dd7" + +[update] +[update.modrinth] +mod-id = "CU0PAyzb" +version = "C7buFh0l" diff --git a/pack/mods/peaceful-nights.pw.toml b/pack/mods/peaceful-nights.pw.toml new file mode 100644 index 0000000..525e8e0 --- /dev/null +++ b/pack/mods/peaceful-nights.pw.toml @@ -0,0 +1,13 @@ +name = "Peaceful Nights" +filename = "peaceful_nights-forge-0.1.0+1.20.1.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/wusZLXmN/versions/DhtqcP7Y/peaceful_nights-forge-0.1.0%2B1.20.1.jar" +hash-format = "sha512" +hash = "cb856d9c0813eba83e4a024ec2da70edea41e7e2f86581a5fb50f470cb27bab50ba5012237361b0ae7fee409ecc31bc486ccfcd57e37af2bb20a1273f10fd107" + +[update] +[update.modrinth] +mod-id = "wusZLXmN" +version = "DhtqcP7Y" diff --git a/pack/mods/peaceful_nights-forge-0.1.0+1.20.1.jar b/pack/mods/peaceful_nights-forge-0.1.0+1.20.1.jar new file mode 100644 index 0000000..66d04e5 Binary files /dev/null and b/pack/mods/peaceful_nights-forge-0.1.0+1.20.1.jar differ diff --git a/pack/mods/pehkui.pw.toml b/pack/mods/pehkui.pw.toml new file mode 100644 index 0000000..818f1a6 --- /dev/null +++ b/pack/mods/pehkui.pw.toml @@ -0,0 +1,13 @@ +name = "Pehkui" +filename = "Pehkui-3.8.2+1.20.1-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/t5W7Jfwy/versions/SQpqSgAE/Pehkui-3.8.2%2B1.20.1-forge.jar" +hash-format = "sha512" +hash = "e4660f0b5af6bfe2902ab39a6fbfa911856e0567bffc47842b482731da373afa4424b9e7cf47c61a0c2107445520475053709a6671d9eb4b7f4b55597729af3f" + +[update] +[update.modrinth] +mod-id = "t5W7Jfwy" +version = "SQpqSgAE" diff --git a/pack/mods/polytone.pw.toml b/pack/mods/polytone.pw.toml new file mode 100644 index 0000000..3ef3eed --- /dev/null +++ b/pack/mods/polytone.pw.toml @@ -0,0 +1,13 @@ +name = "Polytone" +filename = "polytone-1.20-3.5.20.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/3qAYkBMB/versions/ALJBDhH8/polytone-1.20-3.5.20.jar" +hash-format = "sha512" +hash = "2846a65b7eb0f5c9eff57bfab0dd01f2c08b88d44e54bdf96824abbbd9548077f35e68f5038ee8fa069d7c2d564ffb5d02b2b397653b3de4d00708b4011781e3" + +[update] +[update.modrinth] +mod-id = "3qAYkBMB" +version = "ALJBDhH8" diff --git a/pack/mods/presence-footsteps-forge.pw.toml b/pack/mods/presence-footsteps-forge.pw.toml new file mode 100644 index 0000000..7f67c4a --- /dev/null +++ b/pack/mods/presence-footsteps-forge.pw.toml @@ -0,0 +1,13 @@ +name = "Presence Footsteps (Forge)" +filename = "PresenceFootsteps-1.20.1-1.9.1-beta.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "6ccb76043763f929a11f1857a57b41bb70ab7512" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5015286 +project-id = 433068 diff --git a/pack/mods/puzzles-lib.pw.toml b/pack/mods/puzzles-lib.pw.toml new file mode 100644 index 0000000..4efdc53 --- /dev/null +++ b/pack/mods/puzzles-lib.pw.toml @@ -0,0 +1,13 @@ +name = "Puzzles Lib" +filename = "PuzzlesLib-v8.1.33-1.20.1-Forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "285b7c7616971338ccbe0022c9ea0f8ad3036aaf" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6918565 +project-id = 495476 diff --git a/pack/mods/quark-oddities.pw.toml b/pack/mods/quark-oddities.pw.toml new file mode 100644 index 0000000..2e28d2b --- /dev/null +++ b/pack/mods/quark-oddities.pw.toml @@ -0,0 +1,13 @@ +name = "Quark Oddities" +filename = "QuarkOddities-1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "69ed292c207af89febd156d83b3e78f64b35b969" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5070502 +project-id = 301051 diff --git a/pack/mods/quark.pw.toml b/pack/mods/quark.pw.toml new file mode 100644 index 0000000..86e16ac --- /dev/null +++ b/pack/mods/quark.pw.toml @@ -0,0 +1,13 @@ +name = "Quark" +filename = "Quark-4.0-462.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "9b0fb82995622a0070c00827c698c43b49d9d14b" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6427817 +project-id = 243121 diff --git a/pack/mods/quarkponders.pw.toml b/pack/mods/quarkponders.pw.toml new file mode 100644 index 0000000..867fbd9 --- /dev/null +++ b/pack/mods/quarkponders.pw.toml @@ -0,0 +1,13 @@ +name = "QuarkPonders" +filename = "QuarkPonders-1.3_Forge-1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "7f86dc3b2a7547776213d15e4310efef7a77b382" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7203171 +project-id = 1290960 diff --git a/pack/mods/raised.pw.toml b/pack/mods/raised.pw.toml new file mode 100644 index 0000000..b021337 --- /dev/null +++ b/pack/mods/raised.pw.toml @@ -0,0 +1,13 @@ +name = "Raised" +filename = "raised-forge-1.20.1-5.1.2.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/nCQRBEiR/versions/NKkYYxY0/raised-forge-1.20.1-5.1.2.jar" +hash-format = "sha512" +hash = "38e71058ffaaac72d050664bebf60f3f2c8f2c6d18617d7c25586ac50088900c10d828cbd3f7bafae073979e2085510da6979b95d4db6b1f6d9de27c2406a327" + +[update] +[update.modrinth] +mod-id = "nCQRBEiR" +version = "NKkYYxY0" diff --git a/pack/mods/repurposed-structures.pw.toml b/pack/mods/repurposed-structures.pw.toml new file mode 100644 index 0000000..399b5cf --- /dev/null +++ b/pack/mods/repurposed-structures.pw.toml @@ -0,0 +1,13 @@ +name = "Repurposed Structures (Neoforge/Forge)" +filename = "repurposed_structures-7.1.19+1.20.1-forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "8605ad00f483bb6d6ac0afc5b1c7b07a5cd5c476" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6797349 +project-id = 368293 diff --git a/pack/mods/revelationary.pw.toml b/pack/mods/revelationary.pw.toml new file mode 100644 index 0000000..514ecca --- /dev/null +++ b/pack/mods/revelationary.pw.toml @@ -0,0 +1,13 @@ +name = "Revelationary" +filename = "revelationary-1.3.9+1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "ce225c1264115a9cc5d6772180b6dcdaf56080ca" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5825268 +project-id = 656526 diff --git a/pack/mods/selene.pw.toml b/pack/mods/selene.pw.toml new file mode 100644 index 0000000..8478223 --- /dev/null +++ b/pack/mods/selene.pw.toml @@ -0,0 +1,13 @@ +name = "Moonlight Lib" +filename = "moonlight-1.20-2.16.19-forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "de55e348bdf3a3ac7520fde157654d615967f9b1" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7388296 +project-id = 499980 diff --git a/pack/mods/sneaky-link.pw.toml b/pack/mods/sneaky-link.pw.toml new file mode 100644 index 0000000..c26a5e2 --- /dev/null +++ b/pack/mods/sneaky-link.pw.toml @@ -0,0 +1,13 @@ +name = "Sneaky Link" +filename = "sneaky_link-1.20.1-2.1.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/tah8XIYc/versions/FXB21dZ3/sneaky_link-1.20.1-2.1.0.jar" +hash-format = "sha512" +hash = "237e20ce794a6f9ec3915ba8258a6669b57636666b34cd78a1b0f92403c832bfe843f428df3183be0d532da57cbad374ee22d616667402fdc733dbfa7e06f222" + +[update] +[update.modrinth] +mod-id = "tah8XIYc" +version = "FXB21dZ3" diff --git a/pack/mods/snow-real-magic.pw.toml b/pack/mods/snow-real-magic.pw.toml new file mode 100644 index 0000000..5e6a403 --- /dev/null +++ b/pack/mods/snow-real-magic.pw.toml @@ -0,0 +1,13 @@ +name = "Snow! Real Magic! ⛄" +filename = "SnowRealMagic-1.20.1-Forge-10.7.0.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/iJNje1E8/versions/aQw97T9l/SnowRealMagic-1.20.1-Forge-10.7.0.jar" +hash-format = "sha512" +hash = "7b3972ab9db7e90ac989c0d98e04771583b21141d76531f1905fa0438eb5b95cf89f283c0b43ac9f51e98bd373ccabc7fef8325912f97456bda8157f69a3ffbe" + +[update] +[update.modrinth] +mod-id = "iJNje1E8" +version = "aQw97T9l" diff --git a/pack/mods/sound-physics-remastered.pw.toml b/pack/mods/sound-physics-remastered.pw.toml new file mode 100644 index 0000000..a1332bf --- /dev/null +++ b/pack/mods/sound-physics-remastered.pw.toml @@ -0,0 +1,13 @@ +name = "Sound Physics Remastered" +filename = "sound-physics-remastered-forge-1.20.1-1.5.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/qyVF9oeo/versions/x0sJ9PeR/sound-physics-remastered-forge-1.20.1-1.5.1.jar" +hash-format = "sha512" +hash = "5509a7b51ec1d57aae2af0a0200bda474539fcfe28303f3ff0158ba95b8e7a88ae023d8a9bd97d4626a6a8ce809506e19cdcb05b76e8be5bf8a0450c5d6a46b1" + +[update] +[update.modrinth] +mod-id = "qyVF9oeo" +version = "x0sJ9PeR" diff --git a/pack/mods/spectrum.pw.toml b/pack/mods/spectrum.pw.toml new file mode 100644 index 0000000..eaa9964 --- /dev/null +++ b/pack/mods/spectrum.pw.toml @@ -0,0 +1,13 @@ +name = "Spectrum" +filename = "spectrum-1.8.12.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "48e22cfff53d4c6bfbac8b5ac84434d97c1dc8eb" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7350548 +project-id = 556967 diff --git a/pack/mods/squake-reforged.pw.toml b/pack/mods/squake-reforged.pw.toml new file mode 100644 index 0000000..f8f9948 --- /dev/null +++ b/pack/mods/squake-reforged.pw.toml @@ -0,0 +1,13 @@ +name = "Squake Reforged" +filename = "squakereforged-1.3.0F.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "8cd3fdad60571039fd20f3305ed3b541b192abee" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6368373 +project-id = 1100654 diff --git a/pack/mods/stellarview.pw.toml b/pack/mods/stellarview.pw.toml new file mode 100644 index 0000000..908c0a8 --- /dev/null +++ b/pack/mods/stellarview.pw.toml @@ -0,0 +1,13 @@ +name = "Stellar View" +filename = "Stellar View-1.20.1-0.5.2-Forge.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "9031d03219fa5ec6805cba418cc1b31d215a0704" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7177902 +project-id = 865273 diff --git a/pack/mods/stepitup.pw.toml b/pack/mods/stepitup.pw.toml new file mode 100644 index 0000000..c16d263 --- /dev/null +++ b/pack/mods/stepitup.pw.toml @@ -0,0 +1,13 @@ +name = "StepItUp" +filename = "stepitup-2.0.1-1.20.1-forge.jar" +side = "client" + +[download] +url = "https://cdn.modrinth.com/data/9ggA4qiy/versions/cbQ9O3rb/stepitup-2.0.1-1.20.1-forge.jar" +hash-format = "sha512" +hash = "662cc51f7a6c1d57808be9528ef2508793d633fcff15743c1942cbabc70cd67906258612e35c8dd9566ab1cf49519f05c2ff43479b32a4d2b0d7d1d2b5396c55" + +[update] +[update.modrinth] +mod-id = "9ggA4qiy" +version = "cbQ9O3rb" diff --git a/pack/mods/stonecutter-likes-wood.pw.toml b/pack/mods/stonecutter-likes-wood.pw.toml new file mode 100644 index 0000000..48a2dc3 --- /dev/null +++ b/pack/mods/stonecutter-likes-wood.pw.toml @@ -0,0 +1,13 @@ +name = "Stonecutter Likes Wood" +filename = "stonecutterlikeswood-1.20.1-1.1.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b7706209628915002f4541e3e839df34581ff80e" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5542422 +project-id = 1063301 diff --git a/pack/mods/supplementaries.pw.toml b/pack/mods/supplementaries.pw.toml new file mode 100644 index 0000000..4b8aeb9 --- /dev/null +++ b/pack/mods/supplementaries.pw.toml @@ -0,0 +1,13 @@ +name = "Supplementaries" +filename = "supplementaries-1.20-3.1.42-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/fFEIiSDQ/versions/KgkjZ2z3/supplementaries-1.20-3.1.42-forge.jar" +hash-format = "sha512" +hash = "8d52268d665af7d82186cec39d80216078fcf80c3960df07c0ebcf3bf6ff427329932bc2ad7536757a00e26b91c89cbbd4292ed367be786a84ddc00c1bbf208a" + +[update] +[update.modrinth] +mod-id = "fFEIiSDQ" +version = "KgkjZ2z3" diff --git a/pack/mods/terrablender.pw.toml b/pack/mods/terrablender.pw.toml new file mode 100644 index 0000000..dc0e88e --- /dev/null +++ b/pack/mods/terrablender.pw.toml @@ -0,0 +1,13 @@ +name = "TerraBlender (Forge)" +filename = "TerraBlender-forge-1.20.1-3.0.1.10.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "3bd99fb59e8b06b04e78b5153790c1e08b2be5dc" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6290448 +project-id = 563928 diff --git a/pack/mods/tetra.pw.toml b/pack/mods/tetra.pw.toml new file mode 100644 index 0000000..81eb664 --- /dev/null +++ b/pack/mods/tetra.pw.toml @@ -0,0 +1,13 @@ +name = "Tetra" +filename = "tetra-1.20.1-6.11.0.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "57b0a548a50c7389479e3d0c2ad56ae2cdd8d519" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6912921 +project-id = 289712 diff --git a/pack/mods/tetranomicon.pw.toml b/pack/mods/tetranomicon.pw.toml new file mode 100644 index 0000000..5fcdfbe --- /dev/null +++ b/pack/mods/tetranomicon.pw.toml @@ -0,0 +1,13 @@ +name = "Tetranomicon" +filename = "tetranomicon-1.6.1-1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "714fed6404cb8577c48fffa217efef7655232485" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6286722 +project-id = 445385 diff --git a/pack/mods/threadtweak-fabric-1.20.2-0.1.1.jar b/pack/mods/threadtweak-fabric-1.20.2-0.1.1.jar new file mode 100644 index 0000000..0c758d5 Binary files /dev/null and b/pack/mods/threadtweak-fabric-1.20.2-0.1.1.jar differ diff --git a/pack/mods/toms-storage.pw.toml b/pack/mods/toms-storage.pw.toml new file mode 100644 index 0000000..a54027f --- /dev/null +++ b/pack/mods/toms-storage.pw.toml @@ -0,0 +1,13 @@ +name = "Tom's Simple Storage Mod" +filename = "toms_storage-1.20-1.7.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "8b70aed9e35ad78fdc2f9fcb94a29dc64ba8d757" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6418133 +project-id = 378609 diff --git a/pack/mods/trackwork.pw.toml b/pack/mods/trackwork.pw.toml new file mode 100644 index 0000000..dda07b5 --- /dev/null +++ b/pack/mods/trackwork.pw.toml @@ -0,0 +1,13 @@ +name = "Trackwork" +filename = "trackwork-1.20.1-1.2.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b7752c555824fe277e7686bd4345a37e366300f2" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7379702 +project-id = 1057662 diff --git a/pack/mods/traverse-reforged.pw.toml b/pack/mods/traverse-reforged.pw.toml new file mode 100644 index 0000000..9e64e3e --- /dev/null +++ b/pack/mods/traverse-reforged.pw.toml @@ -0,0 +1,13 @@ +name = "Traverse Reforged" +filename = "traverse-forge-7.0.12.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "90bc41b2a4c6c6821bd8ae41f7d790b01510f312" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6545261 +project-id = 267769 diff --git a/pack/mods/trinkets.pw.toml b/pack/mods/trinkets.pw.toml new file mode 100644 index 0000000..f87365d --- /dev/null +++ b/pack/mods/trinkets.pw.toml @@ -0,0 +1,13 @@ +name = "Trinkets (Fabric)" +filename = "trinkets-3.7.2.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "d58cc8759587f03f320f188972ca66baa788d008" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 5173501 +project-id = 341284 diff --git a/pack/mods/trolldom.pw.toml b/pack/mods/trolldom.pw.toml new file mode 100644 index 0000000..02778d7 --- /dev/null +++ b/pack/mods/trolldom.pw.toml @@ -0,0 +1,13 @@ +name = "trolldom" +filename = "trolldom-1.20.1-2.0.1.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/gu9PQOOc/versions/HrAKzfqQ/trolldom-1.20.1-2.0.1.jar" +hash-format = "sha512" +hash = "b270e24c994bba856eadcfa44ab982823652bc453c71349078e995dba759d40b4e3ee7686b5f74d97301d8b520258b195e9aa087d26fa56ae8e207266f96728b" + +[update] +[update.modrinth] +mod-id = "gu9PQOOc" +version = "HrAKzfqQ" diff --git a/pack/mods/truly-treasures.pw.toml b/pack/mods/truly-treasures.pw.toml new file mode 100644 index 0000000..277e1c0 --- /dev/null +++ b/pack/mods/truly-treasures.pw.toml @@ -0,0 +1,13 @@ +name = "Truly Treasures" +filename = "trulytreasures-1.20-3.0.0-forge.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/YUTKRI5S/versions/yLDxxokl/trulytreasures-1.20-3.0.0-forge.jar" +hash-format = "sha512" +hash = "7639f3da6cd068818cc653472a638b7e3577c5873276f683a77ea6c240d1790e116bf7036ced3d5547c0f98919d2d89fc9c12e4785c9a9a827ff11c4a4e4503a" + +[update] +[update.modrinth] +mod-id = "YUTKRI5S" +version = "yLDxxokl" diff --git a/pack/mods/underground-rivers.pw.toml b/pack/mods/underground-rivers.pw.toml new file mode 100644 index 0000000..dc88169 --- /dev/null +++ b/pack/mods/underground-rivers.pw.toml @@ -0,0 +1,13 @@ +name = "Underground Rivers" +filename = "underground-rivers-1.0.1-forge-1.20.1.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "9592fa574a0110a179bffe885a886a603d0773f0" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6761652 +project-id = 1108285 diff --git a/pack/mods/universal-sawmill.pw.toml b/pack/mods/universal-sawmill.pw.toml new file mode 100644 index 0000000..9492692 --- /dev/null +++ b/pack/mods/universal-sawmill.pw.toml @@ -0,0 +1,13 @@ +name = "Sawmill" +filename = "sawmill-1.20-1.4.10.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/WRaRZdTd/versions/ULlgpqM0/sawmill-1.20-1.4.10.jar" +hash-format = "sha512" +hash = "9e7deb530fed081868b442dc30dbcb4a5881e97f8412fa99666e25314910881c9a2456414166e3c1808456a071ce785df992e521c710d979db6b7e2c4315b3ba" + +[update] +[update.modrinth] +mod-id = "WRaRZdTd" +version = "ULlgpqM0" diff --git a/pack/mods/valkyrien-skies.pw.toml b/pack/mods/valkyrien-skies.pw.toml new file mode 100644 index 0000000..fa76a37 --- /dev/null +++ b/pack/mods/valkyrien-skies.pw.toml @@ -0,0 +1,13 @@ +name = "Valkyrien Skies (Forge/Fabric)" +filename = "valkyrienskies-120-2.4.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "b3f576fc7535054b832501c14b1eb84cb785716b" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7390836 +project-id = 258371 diff --git a/pack/mods/wandering-collector-forge.pw.toml b/pack/mods/wandering-collector-forge.pw.toml new file mode 100644 index 0000000..8f8dd9b --- /dev/null +++ b/pack/mods/wandering-collector-forge.pw.toml @@ -0,0 +1,13 @@ +name = "Thom's Wandering Collector" +filename = "wandering_collector-1.20.1-1.0.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/vC1rJ44q/versions/ZsDsw38U/wandering_collector-1.20.1-1.0.jar" +hash-format = "sha512" +hash = "6424101b306894efbe0a8af9f52292d5dc7cb2ddbe7f67fa26b59b208ce85ebdbdb20eac58d93448a1380121b1b43f0ac15bdc0fb5fd45969f68dfb1aa192676" + +[update] +[update.modrinth] +mod-id = "vC1rJ44q" +version = "ZsDsw38U" diff --git a/pack/mods/wthit-forge.pw.toml b/pack/mods/wthit-forge.pw.toml new file mode 100644 index 0000000..0457e7a --- /dev/null +++ b/pack/mods/wthit-forge.pw.toml @@ -0,0 +1,13 @@ +name = "WTHIT Forge Edition" +filename = "wthit-1.20.1-forge-8.19.3.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "2208567dea6c0951715d6c5bca16dcc9c6770da6" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7290864 +project-id = 455982 diff --git a/pack/mods/xaeros-minimap.pw.toml b/pack/mods/xaeros-minimap.pw.toml new file mode 100644 index 0000000..a577991 --- /dev/null +++ b/pack/mods/xaeros-minimap.pw.toml @@ -0,0 +1,13 @@ +name = "Xaero's Minimap" +filename = "Xaeros_Minimap_25.2.10_Forge_1.20.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "1f23df114da3a8603dbe4781c07e8acf20f6d1ce" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6778028 +project-id = 263420 diff --git a/pack/mods/xaeros-world-map.pw.toml b/pack/mods/xaeros-world-map.pw.toml new file mode 100644 index 0000000..c817325 --- /dev/null +++ b/pack/mods/xaeros-world-map.pw.toml @@ -0,0 +1,13 @@ +name = "Xaero's World Map" +filename = "XaerosWorldMap_1.39.12_Forge_1.20.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "3c4005a400ba8270738bbe4c573526749ecf2f8f" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6778091 +project-id = 317780 diff --git a/pack/mods/yacl.pw.toml b/pack/mods/yacl.pw.toml new file mode 100644 index 0000000..9603fad --- /dev/null +++ b/pack/mods/yacl.pw.toml @@ -0,0 +1,13 @@ +name = "YetAnotherConfigLib (YACL)" +filename = "yet_another_config_lib_v3-3.6.6+1.20.1-forge.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/1eAoo2KR/versions/sCWgXDYQ/yet_another_config_lib_v3-3.6.6%2B1.20.1-forge.jar" +hash-format = "sha512" +hash = "7fdd923ae94c1ada9bf0524f21cdfbb4f870ea93b26d02f369829585892fc5a2f61e60f43a6686ee611ff11bde8f123f178279e2de453c8fb320264153a0e8d9" + +[update] +[update.modrinth] +mod-id = "1eAoo2KR" +version = "sCWgXDYQ" diff --git a/pack/mods/yttr.pw.toml b/pack/mods/yttr.pw.toml new file mode 100644 index 0000000..97b7acd --- /dev/null +++ b/pack/mods/yttr.pw.toml @@ -0,0 +1,13 @@ +name = "Yttr" +filename = "yttr-9.20.929.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "a9803abd9fc57ab320477bab5c6444e119cbd2f1" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7367382 +project-id = 467267 diff --git a/pack/mods/yungs-api.pw.toml b/pack/mods/yungs-api.pw.toml new file mode 100644 index 0000000..62074ae --- /dev/null +++ b/pack/mods/yungs-api.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's API" +filename = "YungsApi-1.20-Forge-4.0.6.jar" +side = "both" + +[download] +url = "https://cdn.modrinth.com/data/Ua7DFN59/versions/PJOYAmAs/YungsApi-1.20-Forge-4.0.6.jar" +hash-format = "sha512" +hash = "7d83d94a90e55a712f6508485c044ff202916e9b9b9166b75177cb8f2eb919543bbbe1547d11c41cfd4763820f934235f47c0b26dd9e89bc1030954afa9fb889" + +[update] +[update.modrinth] +mod-id = "Ua7DFN59" +version = "PJOYAmAs" diff --git a/pack/mods/yungs-better-dungeons.pw.toml b/pack/mods/yungs-better-dungeons.pw.toml new file mode 100644 index 0000000..0c4ac69 --- /dev/null +++ b/pack/mods/yungs-better-dungeons.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Better Dungeons" +filename = "YungsBetterDungeons-1.20-Forge-4.0.4.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/o1C1Dkj5/versions/kPiQ6v4q/YungsBetterDungeons-1.20-Forge-4.0.4.jar" +hash-format = "sha512" +hash = "56bd11a7aca3bacb908381a668af8f5b574c5557c21370ace783d637c949802187110a4f5dc26afae4d9af74cdf64cee81d59fac3513a9bec3f921193fc938b8" + +[update] +[update.modrinth] +mod-id = "o1C1Dkj5" +version = "kPiQ6v4q" diff --git a/pack/mods/yungs-better-mineshafts-forge.pw.toml b/pack/mods/yungs-better-mineshafts-forge.pw.toml new file mode 100644 index 0000000..ab99304 --- /dev/null +++ b/pack/mods/yungs-better-mineshafts-forge.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Better Mineshafts (Forge/NeoForge)" +filename = "YungsBetterMineshafts-1.20-Forge-4.0.4.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "e2cbc574807a994bb9610184eb4bbfe29a6c0774" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 4769063 +project-id = 389665 diff --git a/pack/mods/yungs-better-nether-fortresses.pw.toml b/pack/mods/yungs-better-nether-fortresses.pw.toml new file mode 100644 index 0000000..c18bc0e --- /dev/null +++ b/pack/mods/yungs-better-nether-fortresses.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Better Nether Fortresses" +filename = "YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar" +side = "server" + +[download] +url = "https://cdn.modrinth.com/data/Z2mXHnxP/versions/2nUEz0zq/YungsBetterNetherFortresses-1.20-Forge-2.0.6.jar" +hash-format = "sha512" +hash = "bceefeaf84dffd7386a61118d6b1c6c2107e17e7a8f4340eff2c1f0234dba0e6d8f43903521d5a70334362ab6e4069788e5b29cf42d8ee9cd4f2a98feb64112b" + +[update] +[update.modrinth] +mod-id = "Z2mXHnxP" +version = "2nUEz0zq" diff --git a/pack/mods/yungs-cave-biomes.pw.toml b/pack/mods/yungs-cave-biomes.pw.toml new file mode 100644 index 0000000..adc31c6 --- /dev/null +++ b/pack/mods/yungs-cave-biomes.pw.toml @@ -0,0 +1,13 @@ +name = "YUNG's Cave Biomes (Forge/NeoForge)" +filename = "YungsCaveBiomes-1.20.1-Forge-2.0.5.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "c0a57a7d5a0cea0297f82a482490fc1e7933695f" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 6606910 +project-id = 1111586 diff --git a/pack/mods/zeta.pw.toml b/pack/mods/zeta.pw.toml new file mode 100644 index 0000000..7f1a58a --- /dev/null +++ b/pack/mods/zeta.pw.toml @@ -0,0 +1,13 @@ +name = "Zeta" +filename = "Zeta-1.0-31.jar" +side = "both" + +[download] +hash-format = "sha1" +hash = "8c4a8ef0444b53ff408d5b89126285031081d92f" +mode = "metadata:curseforge" + +[update] +[update.curseforge] +file-id = 7335229 +project-id = 968868 diff --git a/pack/pack.toml b/pack/pack.toml new file mode 100644 index 0000000..8020652 --- /dev/null +++ b/pack/pack.toml @@ -0,0 +1,13 @@ +name = "Pack with Brooke" +version = "1.0.0" +pack-format = "packwiz:1.1.0" + +[index] +file = "index.toml" +hash-format = "sha256" +hash = "e3ba76938b8ba0c0387194a2f51a05db61a3981f046cf8752a5cae2a4d4b552b" + +[versions] +forge = "47.4.10" +minecraft = "1.20.1" +unsup = "1.1.6" diff --git a/pack/trees/hybrid_beta/jo_codes/seasonal_oak.txt b/pack/trees/hybrid_beta/jo_codes/seasonal_oak.txt new file mode 100644 index 0000000..f5cd39f --- /dev/null +++ b/pack/trees/hybrid_beta/jo_codes/seasonal_oak.txt @@ -0,0 +1,112 @@ +2:JJJ0JP1JJ+ZJOOPvnRJOOPvn +2:JJJJxOJx+Xz+nvy89ZJ +2:JJJJOOJx+Xz+nvy97 +2:JJORJJ8JJOOPy97 +2:JJJOJxxOP0+vz69+nV9ZP +2:JJKJ0JOP17+pPZx7v +2:JJJJOJxx+Xz98XqJ +2:JJ0JJJOPy79JJOOOPfXf +2:JJJJJxxx+X187ny+r8 +2:JJJKJxOP17+nrP +2:JJOZOhJPpJPRJOOOP097+nv +2:JJJJOOOOPXz+nvXv +2:JJJJOOOOP06+vf06v17 +2:JJRJJxOPn17 +2:JJJ1JOOOPf0676JhJ +2:JJ0KJJOPvpLJJx+nX +3:JJJJxx1OPvzxx786xx86vkOPXtLP +3:JJJJxxxxx+XvzfntPV8hP +3:JJJJOOOOP09+b68+vX +3:JJJJxOWOPny9+Zx+f098mPXubJ9JP +3:JJJxJxxxx+Xz98y8+XbP0Xr8hP +3:JJxZuKOP1678hJOJx+vz66 +3:JJJOKOOOPz98+XvzZOOPnvkOOOPfvf +3:JJJJJOOP0+vfS +3:JJORJxxyx98x896+ZJOOh9x77n0JJnpNJOPX +3:JJOOJ1xeJ79fWOPXnSPbJMP +3:JJxJxOJ0x8+uPvzx76x6+n1Z66R9pJP +3:JJJJxxxxx+X097z897z8+mRJ8JPrpP +3:JJJOOORxPXzxxx8789xOPvuR7PkOJ67Z +3:JJJxROOOPy98z8+bx8+U9uPfzZNJ8jJ +3:JJJOJxxxx+Xf0nt767ZP +3:JJJOJOOOP06+uvXenf06R9ZJ +4:JJJJxOJx+Xz+nvy+f0h96yPp +4:JJJxJOOOP178n1+bPSPkhJ +4:JJ0hJJ0PWPX1JJJxx+n176067JJ0Jx87OJ7 +4:JJ0JJxOJ8nyRPbxPfpJOJxx69vbf +4:JJ0Jxxxxxvmnf178066Rx99pP1puJ7+ZZJx76NSv +4:JJOOJ0OOOPz868h9xxxx7+Xvfufp6RJxPU7ZJOOPnc +4:JJJOOOOOOP0+vXevf1680M7PtpPWkKXVJP +4:JJxx1ONOM76WJ87OOOPfnbPUJON88kJOJx97 +4:JJJOOJxxx+X187z888mM6+bLN+SJJ9pJP +4:JJxOWSJxx+nvfkJOPXzJJOPy+f099JJuPy98hhJOPf +4:JJJJxxxOP0+vfqP0hPSxx687bJ +4:JJJJxxxOP1+fXf0mJ+nftxPXzeP076RJ +4:JJJxOOOOOP06+q7fj6RPkhPtOJOvfv +4:JJJxJxxxx+Xz98nzd96WJ6vbJ +4:JJJxJxeJ+n176+kJxOP068+tOvRPSONPVv +4:JJxxxOOOJx68zfXS+tJPcfrN6SJPkP +5:JJxOOOOOOJ7+uvfXmnX1vfj7eP09+kMxxPXf1txOvz66RnSJOvR +5:JJxx0OJ068h+pOOOP09767xPb1PfSWJ+vX0mPftxuvZ6WN6 +5:JJxxxOOOOJ6XnzzfnuS9Pkx+Xk7j6RK+uZePfuJPyRq9fkxc8 +5:JJ0xJxR8SM8hxZ8+ZxOOOOOPvnz69717Ptxx796WpN6JJxx67 +5:JJxJ0Jx8+uJx99+ZPRxPX0hxfX1tPzeJp8nSxx+nvU +5:JJxxOOJxOP0+vXz1PZ6717+kxPnXWtJOL+vXWK8hX1tpfbbx8 +5:JJ0xOWOPV87OOPnfzc8jx89xOOOMx6+XvbftPSK +5:JJJxxxOOOP0+vfS+i+vbx9+ek077Z60h6Pt1J6J6S0J6v +5:JJxxxxxxOOPXmfnyXz987ePz98mPXSxNR8i+kbb9puOL96 +5:JJ0xZxJ7nmhJOPnRWPXz1OJJ97LxPfWJxOn1xx967+ntPSR +5:JJ0JOhx8077JOPf1xJbOOPfvtJpJ+bbJOJ86JJOOOP1+fXk6R +5:JJOOJxxxOP0+vz676WJ6+mmhPZPS069uOJ7+r67eLJ9p6VpP +5:JJ1LxJPtPz0JM7JJ6xOJxOPfn0i9t6RP +5:JJ0xJxJxPnSxK8njJn1JOJxxPt+d6vSPbJJxM7 +5:JJxxOOOWJx+XnQ8xZ8z8+bxL+b99XXyR9uOK79uJ78hRJX +5:JJOOOOJOOP09+b6Xtxp7vbOhPpPSxhK9RP0hhJx79tpJX +6:JJxxOOOOJx+Xz+nvcPr6yJx68JPkxOJ7+WR8J7nzbxxxL798mPntxOLz9vWXvy9tPURRX +6:JJxxxxxxOOPX17+vS+i717680mJ76+txNR9+bep7x86WtPROPS8mk066P +6:JJxxxOOOJx+Xny9+bPkxPy89uPXdx+fvWWJXntyK9p+bbxP188mePfmJni +6:JJxxOOOOOOP0+fXuvfWnR7h+mh69Xenep7Y91xP1vfR+kOk6J+b1PeMnfSxKxPX16 +6:JJxxxOWKXqXzxPvmJxPy8nmfnjnuZ9Jxxx7vq6+bxxMPfrfmSKXmPf +6:JJxOOOOJxx6+n17f0i+vXf0cf1uP1S767ePeh+vb+t1uOPvV6J60xMfmHnWJvS +6:JJxxxOOOOOP096n116707x78+tuPXzd6k069ePfz0Lc7evfSWJOPXX0hMxbPk9uupJ6J7dJ +6:JJxOOOOOOOP07+t680x87PX1qPbOn178hndp+kMK+txpN7vSxOOPnvSxOPnv +6:JJxxOOOROPXzJ8JPvSKnSRuXvzZePn0mMxXncftzZxxPfvpxx96 +6:JJx0JxOOOfnvy88mK89xxzJ9XXuXuPvyRxOR9L+U97zxJM709N8mJ8R +6:JJxxxOOOOR8+c9V6h+ebOPvuPr8mOPfi9zZ9x+XvSxOPy+vny9+qtx68zJh+SWR88x8n +6:JJx0xxxJxx6+nvmhnS6S7ZxPnuOJxvz66p9uJx79+beNxvf0mPnfVRR +6:JJxxxxxJR+bx79+V8fueN79vyRWXncZ+kMxPy89t +6:JJxJxxxOOP1+fXn0k96WpPRPet1x977xL+nf00OP077ePenZ+txz6OJPt9fSOmJXk6p +6:JJxxxxxxxxx+fX0069vV7eJ+vb8Rntxx1x97PXvkxXmmPnzJPS7ekLJ7eJ9p6RKxxOP16+vXi +6:JJxxxxOOOOPX0nvX0k97eNJ7Z6WJPWpPR9uJ1fRJ9+kzZJx760JOPnRJXdZpf +7:JJxWOOOOOOPfX0nvWXv096vkxWPXnzeeJ7z8P0xPnpJ+k9pNx7 +7:JJxxxOOOJx+X18+bPntp+dvmSJ8b6VOJ69uONffV+bZxOPvzfvyWWPyy898x88mLxi7fmfyPh +7:JJxOOSxxOPXny98xOOZ9+Xnkx89d+bxeJxnz9+fk9uPt+kyxOXnXh9puJPz9 +7:JJxxxOJx0x87Put6x6+kM9+mkMfRS7eOOPnv07HuuJp96xPWvSXbuP1vf +7:JJxJx0WPkXpxx+nd6+eneJOPnb0PfWtPWJx66+kxOPnmhnS+tNxN+vS7Zd +7:JJxxxxxxx6vf18ff1rvjZ7bz9+SxxPvU8z8x8 +7:JJxxxxOOJx+Xz+nvy+fvmXmPfuY9xyPZ96SxOOPvXy8h9Vx9+eeJLxx977ePftx98kOOJ+S8nbP +7:JJ0xJxxxxx86XnWnXkPmk+ZMnRP1OJOKx69z691xxvfvfzxOJxJPb770PePfSxOnRP06WOvXn +7:JJOOOR+mJzf09J8hR9xuPy+fvbJ7bx+bfnyWPyWPy+nvtX0kkftxuZ97 +7:JJxOWOONx96yJ99tvWXvmOJOOPny+fveZ8PixnXzzeeJxvfz9vmJ89NOOPft8mS8xXz8h +7:JJxxORX0OOXZ8npOR9xx79+Sx9+kxWXnkPtxzJ9NPXbxZxPfjz8P +7:JJOOOJ0xOP0+vfmnePf1NXSx+n16+eh7xOJ776p9uJZ+t+b6+c60kJ6xnWnWM+vX +7:JJxxxxxxxx7+nXen1Pf1ufXX07bvXmkx+k7fbZ+tNxx9+fV6WMxOJ8+nX1vSx+vX +7:JJxxxOOOJx+Xz+nvy7Z9y9+Xzt8mJ+fk9tvSxWPvvzeOJz+k98+b99rP +7:JJxxRxxxf097+SN8+bOJLvvkOJPjPub9JxOJ9+ftP +7:JJxOJxxxxx69y98Z9t+SOX0x89Pbw+Jx976Sx6+bx+jZ9+kxxOR8xPfy8ncntxNxR+b9+VN7 +8:JJxJJxOOPX0nv0+rt6+kxxZJ6R8hx6+txJP1pJPXzeOJJOPvc9fSKJxx9+nX +8:JJxxxJxOXzx+fvnyRnzf09uXuPvkzxxPnfkx+XnzeJePc7dx79yKPuZxPvtxN+V76SxxxN68h+SM9pP +8:JJxxxOOJx+fX07p+tx76WOPXn0mJnXbJ179tOLb+vS+mkMXbx+vc6WNxPXSJ +8:JJxWKxxOJ7+vnWS88mOJy868mfnzzeJxvy87Zp8OORPmOPfncz89uJxOOOPz96+fnbN9uNPz6 +8:JJxOKxOP0fv06Xn0mPX1uOtOPt7OJ961vS+bx0xOP06+nfpJ717OP176WMnSP +8:JJOOLOOOJ9+fXmhPbx8+kMxJ+j6+txxxPvzZ69p6WpNx66OJ0+vfXbx+ndxPb +8:JJxxxOOOOOP0679vn1vzmHfU+i+qPbx+ndJ6WJnn00mOJJ7+nSPXrtv +8:JJxxxx0fuJ+vfWvS8Si+tx9vS+kx+mnZ6Xet1770xPnbOM7 +8:JJOOWJxxxx7+Xvfy96WPy8nkxxx878h+bZxN+f099uOJxPzz8979y9xXv +8:JJxxOJxWP1vi+bJ+vkz8XVWJ69zZxPvpxL9uJ98zLz8J8xWJPnmZh8 +8:JJxOOOORx+XvmPzfmXnfSOR9PzZzZ99uLOfvufp+mbzZPhPmMxPy8mPnSK9RWPX +8:JJxxxxxxOOPX17+nfvz6WJ0+vXnmhOnXf1pxr67ZePj+kmLnmj66SxOnXn +8:JJxxxOJxxx67fy9vzzZ8nyyx+XvnvSvtxN9+ebxPz+vnttPkwD+OWPXmOJ877 +8:JJx0xOJxX07+knf0nbMPWOOOK9XXvSxX0991OJJ97xJxPfbP +8:JJxxxxxOR+hPvy+bnvi9uPy9vSxx69+bxNPzf09p8mJmPXy8n +8:JJxOOOOOOP0X17fS9+mh6791p+bp6Rvcc+kmJx8+nX1uCw9Pep7PzePd6RR diff --git a/pack/trees/hybrid_beta/jo_codes/small_fir.txt b/pack/trees/hybrid_beta/jo_codes/small_fir.txt new file mode 100644 index 0000000..8044091 --- /dev/null +++ b/pack/trees/hybrid_beta/jo_codes/small_fir.txt @@ -0,0 +1,140 @@ +8:JJOJxOJPz+vnz+X18+fy+vn +8:JJOJxOPz+X18+fy+vnz+X18 +8:JJOJxOJPy9+fy+vnz+X18 +8:JJOJxOJ+Xvz+X18+fy+vn +8:JJOJxOJx9+Xvz+X18+fy+vn +8:JJOJxOPz+X18+fy+vnz+X18 +8:JJOJxOJ+fy+vnz+X18+fy+vn +8:JJOJxOJ+f18+fy+vnz+X18 +8:JJOJxOPz+Xvz+X18+fy+vn +8:JJOJxOJPy8+fy+vnz+X18 +8:JJOJxOJ+fy+vnz+X18+fy+vn +8:JJOJxOJPy+vnz+X18+fy+vn +8:JJOJxOJPz+Xnz+X18+fy+vn +8:JJOJxOPz+X18+fy+vnz+X18 +8:JJOJxOPz+Xvz+X18+fy+vn +8:JJOJxOPy9+fy+vnz+X18 +8:JJOJxOJPz+X18+fy+vny+vn +8:JJOJxOJ+fy+vnz+X18+fy+vn +8:JJOJxOPfz+X18+fy+vn +8:JJOJxOPz6+fy+vnz+X18 +7:JJOJxOJPz+X18+fy+vnz+X18 +7:JJOJxOJ+fvz+X18+fy+vn +7:JJOJxOPz+vnz+X18+fy+vn +7:JJOJxOJ+f18+fy+vnz+X18 +7:JJOJxOJPz+vnz+X18+fy+vn +7:JJOJxOPy+vnz+X18+fy+vn +7:JJOJxOJx9+fy+vny+vnz+X18 +7:JJOJxOPvz+X18+fy+vn +7:JJOJxOPz+Xvz+X18+fy+vn +7:JJOJxPz+X18+fy+vn +7:JJOJxOJ+fy+vnz+X18+fy+vn +7:JJOJxOJ+X18+fy+vnz+X18 +7:JJOJxOJx8+fy+vnz+X18+fy+vn +7:JJOJxOJxPnz+X18+fy+vnz+X18 +7:JJOJxOJPy+vnz+X18+fy+vn +7:JJOJxOPy9+fy+vnz+X18 +7:JJOJxOPz+Xnz+X18+fy+vn +7:JJOJxOPz+Xnz+X18+fy+vn +7:JJOJxOJPz+X18+fy+vnz+X18 +7:JJOJxOJPy+vnz+X18+fy+vn +6:JJOJxOJ+vnz+X18+fy+vn +6:JJOJxOJ+fy8+fy+vnz+X18 +6:JJOJxOJx8+fy+vnz+X18+fy+vn +6:JJOJxOPz8+fy+vnz+X18 +6:JJOJxOPz8+fy+vnz+X18 +6:JJOJxOPy+vnz+X18+fy+vn +6:JJOJxOJPz+X18+fy+vnz+X18 +6:JJOJxOJPz+Xvz+X18+fy+vn +6:JJOJxOJx7+vnz+X18+fy+vn +6:JJOJxOJ+fnz+X18+X18 +6:JJOJxOJPz+X18+fy+vnz9 +6:JJOJxOPz9+fy+vnz+X18 +6:JJOJxOPz+Xvz+X18+fy+vn +6:JJOJxOPz+Xvz+X18+fy+vn +6:JJOJxOJx+Xnz+Xvz+X18+fy+vn +6:JJOJxOJPy8+fy+vnz+X18 +6:JJOJxOPz6+fy+vnz+X18 +6:JJOJxOJx+fnz+vnz+X18+fy+vn +6:JJOJxOJ+fvz+X18+fy+vn +6:JJOJxOPz+Xnz+X18+fy+vn +5:JJOJxOPnz+X18+fy8 +5:JJOJxOJPy+vnz+X18+fy+vn +5:JJOJxOJ+fy+vnz+X18+fy+vn +5:JJOJxOJPy+vnz+X18+fy+vn +5:JJOJxOPy+vnz+X18+fy+vn +5:JJOJxOJ+f18+fy9+fy+vn +5:JJOJxOJx9+X18+fy+vnz+X18 +5:JJOJxOJPy+vnz+X18+fy+vn +5:JJOJxOPz6+fy+vnz+X18 +5:JJOJxOPz9+fy+vnz+X18 +5:JJOJxOJPy+vnz+X18+fy+vn +5:JJOJxOJJ+f18+fy+vnz+X18 +5:JJOJxOJJ+X18+fy+vnz+X18 +5:JJOJxOJxPXz+Xnz+X18+fy+vn +5:JJOJxOJ+fy+vnz+X18+fy+vn +5:JJOJxOJ+fy+vnz+X18+vn +5:JJOJxOJ+X18+fy+vnz+X18 +5:JJOJxOJx6+fy9+fy+vnz+X18 +5:JJOJxOJx6+fvz+X18+fy+vn +5:JJOJxOJ+fy8+fy+vnz+X18 +4:JJOJxOJ+fy8+fy+vnz+X18 +4:JJOJxOJPy8+fy+vnz+X18 +4:JJOJxOJPz+vnz+X18+fy+vn +4:JJOJxOJPy9+fy+vnz+X18 +4:JJOJxOJ+fnz+X18+fy+vn +4:JJOJxOJPz+Xvz+X18+fy+vn +4:JJOJxOPz+Xnz+X18+fy+vn +4:JJOJxOJPz+X18+fy+vnz+X18 +4:JJOJxOJ+Xnz+X18+fy+vn +4:JJOJxOJPy+vnz+X18+fy+vn +4:JJOJxOJx7+fy8+fy+vnz+X18 +4:JJOJxOJPz+vnz+X18+fy+vn +4:JJOJxOJ+fXz+X18+fy+vn +4:JJOJxOJ+fy9+fy+vnz+X18 +4:JJOJxOJ+X18+fy+vnz+X18 +4:JJOJxOJ+fy9+fy+vnz+X18 +4:JJOJxOJx8+fy9+fy8+fy+vn +4:JJOJxOPXz+X18+fy+vn +4:JJOJxOJPz+Xvz+X18+fy+vn +4:JJOJxOJ+fy9+fy+vnz+X18 +3:JJJJOJxPz+X18+fy+vn +3:JJJJOJxPz+X18+fy+vn +3:JJJOJxOPy9+fy+vnz8 +3:JJJJOJx+fy8+fy+vn +3:JJJJOJxPz+X18+fy+vn +3:JJJJOJxPy+vnz+X18 +3:JJJJOJxPz+Xvz+Xv +3:JJJOJxJPz+X18+fy+vn +3:JJJJOJxPz+vnz+X18 +3:JJJOJxJPz+X18+fy+vn +3:JJJJOJxJ+fy+vny+vn +3:JJJJOJxPz+Xvz+X18 +3:JJJJOJxOJPfz+Xny+vn +3:JJJOJxJPz+X18+fy+vn +3:JJJJOJxOPfz+X18+X18 +3:JJJJOJx+fy9+fy+vn +3:JJJJOJx+fXz+X18 +3:JJJOJxJJ+fy+vnz+X18 +3:JJJJOJx+fXz+X18 +3:JJJOJxOPnz+X18+fy9 +2:JJJJJJP +2:JJJJJJP +2:JJJJOJPz8 +2:JJJJJJP +2:JJJJJJ +2:JJJJJP +2:JJJOJPz+Xv +2:JJJJJP +2:JJJJJJP +2:JJJJJJP +2:JJJJJOJPz9 +2:JJJJJOJ+Xv +2:JJJJOJ8 +2:JJJJOJPy9 +2:JJJJOJPz+Xv +2:JJJJOJ8 +2:JJJJJJJ +2:JJJJJJJ +2:JJJOJx+fnz+X18 +2:JJJJOJ6 diff --git a/pack/trees/hybrid_beta/leaves_properties/seasonal_oak.json b/pack/trees/hybrid_beta/leaves_properties/seasonal_oak.json new file mode 100644 index 0000000..5279c2b --- /dev/null +++ b/pack/trees/hybrid_beta/leaves_properties/seasonal_oak.json @@ -0,0 +1,3 @@ +{ + "primitive_leaves": "minecraft:dark_oak_leaves" +} diff --git a/pack/trees/hybrid_beta/species/seasonal_oak.json b/pack/trees/hybrid_beta/species/seasonal_oak.json new file mode 100644 index 0000000..5fd4caf --- /dev/null +++ b/pack/trees/hybrid_beta/species/seasonal_oak.json @@ -0,0 +1,26 @@ +{ + "family": "oak", + "tapering": 0.1, + "signal_energy": 14.0, + "up_probability": 4, + "lowest_branch_height": 4, + "leaves_properties": "oak", + "environment_factors" : { + "#forge:is_cold": 0.75, + "#forge:is_hot": 0.5, + "#forge:is_dry": 0.5, + "#is_forest": 1.05 + }, + "perfect_biomes": { "types": [ "forest", "overworld" ] }, + "features" : [ + { + "name": "rot_soil", + "properties": { + "rotten_soil": "podzol" + } + }, + "mushroom_rot", + "bee_nest" + ], + "acceptable_soils": ["dirt_like"] +} diff --git a/pack/trees/hybrid_beta/species/small_fir.json b/pack/trees/hybrid_beta/species/small_fir.json new file mode 100644 index 0000000..69ab65e --- /dev/null +++ b/pack/trees/hybrid_beta/species/small_fir.json @@ -0,0 +1,37 @@ +{ + "family": "dttraverse:fir", + "tapering": 0.6, + "signal_energy": 15.0, + "up_probability": 2, + "lowest_branch_height": 4, + "growth_rate": 0.78, + "growth_logic_kit": { + "name": "conifer", + "properties": { + "energy_divisor": 1, + "horizontal_limiter": 2 + } + }, + "leaves_properties": "dttraverse:fir", + "environment_factors": { + "cold": 0.75, + "hot": 0.5, + "dry": 0.5, + "forest": 1.05 + }, + "acceptable_soils": [ + "dirt_like", + "snow_like" + ], + "perfect_biomes": { + "types": [ + "forest", + "overworld" + ] + }, + "primitive_sapling": "traverse:fir_sapling", + "always_show_on_waila": false, + "features": [ + "conifer_topper" + ] +} diff --git a/pack/trees/hybrid_beta/world_gen/default.json b/pack/trees/hybrid_beta/world_gen/default.json new file mode 100644 index 0000000..f184f13 --- /dev/null +++ b/pack/trees/hybrid_beta/world_gen/default.json @@ -0,0 +1,80 @@ +[ + { + "select": { "name": "hybrid_beta:seasonal_forest" }, + "apply": { + "species": { + "random": { + "hybrid_beta:seasonal_oak": 1, + "hybrid_beta:oak": 2 + } + }, + "density": [ + 0.2 + ], + "chance": 0.6 + } + }, + { + "select": { "name": "hybrid_beta:rainforest" }, + "apply": { + "species": { + "random": { + "hybrid_beta:seasonal_oak": 3, + "jungle_undergrowth": 4, + "jungle": 10 + } + }, + "density": [ + 0.3 + ], + "chance": 0.8 + } + }, + { + "select": { "name": "hybrid_beta:temperate_rainforest" }, + "apply": { + "species": { + "random": { + "oak": 2, + "spruce": 2, + "hybrid_beta:small_fir": 1 + } + }, + "density": [ + 0.8 + ], + "chance": 0.8 + } + }, + { + "select": { "name": "minecraft:(snowy_)?taiga" }, + "apply": { + "species": { + "random": { + "spruce": 3, + "hybrid_beta:small_fir": 1 + } + }, + "density": [ + 1 + ], + "chance": 1, + "forestness": 1 + } + }, + { + "_comment": "Spawn spruce trees in snowy plains, and with slightly higher chance.", + "select": { + "name": "minecraft:snowy_plains" + }, + "apply": { + "species": { + "random": { + "spruce": 1, + "hybrid_beta:small_fir": 1 + } + }, + "chance": 0.06 + } + } +] diff --git a/pack/unsup.toml b/pack/unsup.toml new file mode 100644 index 0000000..9eea946 --- /dev/null +++ b/pack/unsup.toml @@ -0,0 +1,32 @@ +[branding] +modpack_name="Pack with Brooke" + +[flavor_groups.look] +name = "Eyecandy" +description = "These eyecandy mods are incompatible. You have to choose which you want most" +side = "client" + +[[flavor_groups.look.choices]] +id = "better-clouds" +name = "Fancy" +description = "Better looking clouds. Compliments dynamic trees very well." +side = "client" + +[[flavor_groups.look.choices]] +id = "distant-horizons" +name = "Distant Horizons" +description = "See further. LODs for Minecraft." +side = "client" + +[[flavor_groups.look.choices]] +id = "no_eyecandy" +name = "Fast" +description = "No eyecandy mods." +side = "client" + +[metafile.better-clouds] +flavors = ["better-clouds"] +[metafile.distanthorizons] +flavors = ["distant-horizons"] +[metafile.distant-horizons-height-toggler-dhht] +flavors = ["distant-horizons"]