diff --git a/src/main/java/cn/nukkit/block/BlockID.java b/src/main/java/cn/nukkit/block/BlockID.java index aad6978f8d1..2bc85eaa001 100644 --- a/src/main/java/cn/nukkit/block/BlockID.java +++ b/src/main/java/cn/nukkit/block/BlockID.java @@ -4,6 +4,7 @@ public interface BlockID { int AIR = 0; int STONE = 1; int GRASS = 2; + int GRASS_BLOCK = 2; int DIRT = 3; int COBBLESTONE = 4; int COBBLE = 4; diff --git a/src/main/java/cn/nukkit/command/defaults/ClearCommand.java b/src/main/java/cn/nukkit/command/defaults/ClearCommand.java index 9d2d00c683a..fad7ba1074e 100644 --- a/src/main/java/cn/nukkit/command/defaults/ClearCommand.java +++ b/src/main/java/cn/nukkit/command/defaults/ClearCommand.java @@ -4,10 +4,8 @@ import cn.nukkit.Server; import cn.nukkit.command.Command; import cn.nukkit.command.CommandSender; -import cn.nukkit.command.data.CommandEnum; import cn.nukkit.command.data.CommandParamType; import cn.nukkit.command.data.CommandParameter; -import cn.nukkit.item.Item; import cn.nukkit.lang.TranslationContainer; import cn.nukkit.utils.TextFormat; @@ -35,17 +33,11 @@ public boolean execute(CommandSender sender, String commandLabel, String[] args) return false; } - if (args.length > 1 || (!(sender instanceof Player) && args.length < 1)) { + if (args.length != 1) { sender.sendMessage(new TranslationContainer("commands.generic.usage", this.usageMessage)); return false; } - if (args.length == 0) { - Player player = (Player) sender; - player.getInventory().clearAll(); - return false; - } - List targets = new ArrayList<>(); if (args[0].equals("@a")) { targets.addAll(Server.getInstance().getOnlinePlayers().values()); diff --git a/src/main/java/cn/nukkit/command/defaults/GiveCommand.java b/src/main/java/cn/nukkit/command/defaults/GiveCommand.java index 07281712015..0c325aea344 100644 --- a/src/main/java/cn/nukkit/command/defaults/GiveCommand.java +++ b/src/main/java/cn/nukkit/command/defaults/GiveCommand.java @@ -12,7 +12,6 @@ import cn.nukkit.utils.TextFormat; import java.util.ArrayList; -import java.util.Collection; import java.util.List; /** diff --git a/src/main/java/cn/nukkit/network/protocol/LecternUpdatePacket.java b/src/main/java/cn/nukkit/network/protocol/LecternUpdatePacket.java index 1da0582754d..c2819021295 100644 --- a/src/main/java/cn/nukkit/network/protocol/LecternUpdatePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/LecternUpdatePacket.java @@ -11,7 +11,6 @@ public class LecternUpdatePacket extends DataPacket { public int page; public int totalPages; public BlockVector3 blockPosition; - public boolean dropBook; @Override public byte pid() { @@ -23,7 +22,6 @@ public void decode() { this.page = this.getByte(); this.totalPages = this.getByte(); this.blockPosition = this.getBlockVector3(); - this.dropBook = this.getBoolean(); } @Override diff --git a/src/main/java/cn/nukkit/network/protocol/MobEffectPacket.java b/src/main/java/cn/nukkit/network/protocol/MobEffectPacket.java index 0a6ab3b054a..186870dead8 100644 --- a/src/main/java/cn/nukkit/network/protocol/MobEffectPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/MobEffectPacket.java @@ -26,6 +26,7 @@ public byte pid() { public int amplifier = 0; public boolean particles = true; public int duration = 0; + public long tick; @Override public void decode() { @@ -41,5 +42,6 @@ public void encode() { this.putVarInt(this.amplifier); this.putBoolean(this.particles); this.putVarInt(this.duration); + this.putLLong(this.tick); } } diff --git a/src/main/java/cn/nukkit/network/protocol/PlayerAuthInputPacket.java b/src/main/java/cn/nukkit/network/protocol/PlayerAuthInputPacket.java index a723628b553..15222445150 100644 --- a/src/main/java/cn/nukkit/network/protocol/PlayerAuthInputPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/PlayerAuthInputPacket.java @@ -1,6 +1,7 @@ package cn.nukkit.network.protocol; import cn.nukkit.math.Vector2; +import cn.nukkit.math.Vector2f; import cn.nukkit.math.Vector3f; import cn.nukkit.network.protocol.types.*; import lombok.Getter; @@ -32,6 +33,7 @@ public class PlayerAuthInputPacket extends DataPacket { private Map blockActionData = new EnumMap<>(PlayerActionType.class); private Vector2 analogMoveVector; private long predictedVehicle; + private Vector2f vehicleRotation; @Override public byte pid() { @@ -88,6 +90,7 @@ public void decode() { } if (this.inputData.contains(AuthInputAction.IN_CLIENT_PREDICTED_IN_VEHICLE)) { + this.vehicleRotation = new Vector2f(this.getLFloat(), this.getLFloat()); this.predictedVehicle = this.getVarLong(); } diff --git a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java index 78b9b65be8a..895695127c1 100644 --- a/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java +++ b/src/main/java/cn/nukkit/network/protocol/ProtocolInfo.java @@ -14,11 +14,11 @@ public interface ProtocolInfo { * Actual Minecraft: PE protocol version */ @SuppressWarnings("UnnecessaryBoxing") - int CURRENT_PROTOCOL = Integer.valueOf("649"); // DO NOT REMOVE BOXING + int CURRENT_PROTOCOL = Integer.valueOf("662"); // DO NOT REMOVE BOXING List SUPPORTED_PROTOCOLS = Ints.asList(CURRENT_PROTOCOL); - String MINECRAFT_VERSION_NETWORK = "1.20.60"; + String MINECRAFT_VERSION_NETWORK = "1.20.70"; String MINECRAFT_VERSION = 'v' + MINECRAFT_VERSION_NETWORK; byte BATCH_PACKET = (byte) 0xff; diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePackClientResponsePacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePackClientResponsePacket.java index 32fbc5c2639..c89ed011ac9 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePackClientResponsePacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePackClientResponsePacket.java @@ -20,7 +20,7 @@ public class ResourcePackClientResponsePacket extends DataPacket { @Override public void decode() { this.responseStatus = (byte) this.getByte(); - this.packEntries = new Entry[this.getLShort()]; + this.packEntries = new Entry[Math.min(this.getLShort(), 1024)]; for (int i = 0; i < this.packEntries.length; i++) { String[] entry = this.getString().split("_"); this.packEntries[i] = new Entry(UUID.fromString(entry[0]), entry[1]); diff --git a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java index 11685badf4b..9eb40c30268 100644 --- a/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/ResourcePacksInfoPacket.java @@ -15,6 +15,7 @@ public class ResourcePacksInfoPacket extends DataPacket { public boolean mustAccept; public boolean scripting; public boolean forceServerPacks; + public boolean hasAddonPacks; public ResourcePack[] behaviourPackEntries = new ResourcePack[0]; public ResourcePack[] resourcePackEntries = new ResourcePack[0]; public List CDNEntries = new ObjectArrayList<>(); @@ -28,6 +29,7 @@ public void decode() { public void encode() { this.reset(); this.putBoolean(this.mustAccept); + this.putBoolean(this.hasAddonPacks); this.putBoolean(this.scripting); this.putBoolean(this.forceServerPacks); this.encodeBehaviourPacks(this.behaviourPackEntries); diff --git a/src/main/java/cn/nukkit/network/protocol/SetEntityMotionPacket.java b/src/main/java/cn/nukkit/network/protocol/SetEntityMotionPacket.java index d6d903e03b3..c09d3be420d 100644 --- a/src/main/java/cn/nukkit/network/protocol/SetEntityMotionPacket.java +++ b/src/main/java/cn/nukkit/network/protocol/SetEntityMotionPacket.java @@ -14,6 +14,7 @@ public class SetEntityMotionPacket extends DataPacket { public float motionX; public float motionY; public float motionZ; + public long tick; @Override public byte pid() { @@ -30,5 +31,6 @@ public void encode() { this.reset(); this.putEntityRuntimeId(this.eid); this.putVector3f(this.motionX, this.motionY, this.motionZ); + this.putUnsignedVarLong(this.tick); } } diff --git a/src/main/resources/creative_items.json b/src/main/resources/creative_items.json index 090e50ec1ef..d1d198cd3cc 100644 --- a/src/main/resources/creative_items.json +++ b/src/main/resources/creative_items.json @@ -1 +1 @@ -{"items":[{"id":"minecraft:oak_planks","blockRuntimeId":13238},{"id":"minecraft:spruce_planks","blockRuntimeId":13593},{"id":"minecraft:birch_planks","blockRuntimeId":9108},{"id":"minecraft:jungle_planks","blockRuntimeId":11824},{"id":"minecraft:acacia_planks","blockRuntimeId":7299},{"id":"minecraft:dark_oak_planks","blockRuntimeId":5939},{"id":"minecraft:mangrove_planks","blockRuntimeId":2408},{"id":"minecraft:cherry_planks","blockRuntimeId":13461},{"id":"minecraft:bamboo_planks","blockRuntimeId":9435},{"id":"minecraft:bamboo_mosaic","blockRuntimeId":14068},{"id":"minecraft:crimson_planks","blockRuntimeId":8603},{"id":"minecraft:warped_planks","blockRuntimeId":2379},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2629},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2630},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2631},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2632},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2633},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2634},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2641},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2636},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2637},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2635},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2638},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2642},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2639},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2640},{"id":"minecraft:blackstone_wall","blockRuntimeId":6715},{"id":"minecraft:polished_blackstone_wall","blockRuntimeId":11931},{"id":"minecraft:polished_blackstone_brick_wall","blockRuntimeId":2422},{"id":"minecraft:cobbled_deepslate_wall","blockRuntimeId":13872},{"id":"minecraft:deepslate_tile_wall","blockRuntimeId":8845},{"id":"minecraft:polished_deepslate_wall","blockRuntimeId":13608},{"id":"minecraft:deepslate_brick_wall","blockRuntimeId":1185},{"id":"minecraft:mud_brick_wall","blockRuntimeId":2173},{"id":"minecraft:oak_fence","blockRuntimeId":9565},{"id":"minecraft:spruce_fence","blockRuntimeId":1143},{"id":"minecraft:birch_fence","blockRuntimeId":13859},{"id":"minecraft:jungle_fence","blockRuntimeId":1136},{"id":"minecraft:acacia_fence","blockRuntimeId":13870},{"id":"minecraft:dark_oak_fence","blockRuntimeId":12341},{"id":"minecraft:mangrove_fence","blockRuntimeId":11842},{"id":"minecraft:cherry_fence","blockRuntimeId":2407},{"id":"minecraft:bamboo_fence","blockRuntimeId":1373},{"id":"minecraft:nether_brick_fence","blockRuntimeId":7093},{"id":"minecraft:crimson_fence","blockRuntimeId":13788},{"id":"minecraft:warped_fence","blockRuntimeId":10093},{"id":"minecraft:fence_gate","blockRuntimeId":85},{"id":"minecraft:spruce_fence_gate","blockRuntimeId":11792},{"id":"minecraft:birch_fence_gate","blockRuntimeId":6180},{"id":"minecraft:jungle_fence_gate","blockRuntimeId":9144},{"id":"minecraft:acacia_fence_gate","blockRuntimeId":13286},{"id":"minecraft:dark_oak_fence_gate","blockRuntimeId":6961},{"id":"minecraft:mangrove_fence_gate","blockRuntimeId":7518},{"id":"minecraft:cherry_fence_gate","blockRuntimeId":14045},{"id":"minecraft:bamboo_fence_gate","blockRuntimeId":8820},{"id":"minecraft:crimson_fence_gate","blockRuntimeId":7970},{"id":"minecraft:warped_fence_gate","blockRuntimeId":9182},{"id":"minecraft:normal_stone_stairs","blockRuntimeId":1374},{"id":"minecraft:stone_stairs","blockRuntimeId":6100},{"id":"minecraft:mossy_cobblestone_stairs","blockRuntimeId":6877},{"id":"minecraft:oak_stairs","blockRuntimeId":722},{"id":"minecraft:spruce_stairs","blockRuntimeId":140},{"id":"minecraft:birch_stairs","blockRuntimeId":12223},{"id":"minecraft:jungle_stairs","blockRuntimeId":12184},{"id":"minecraft:acacia_stairs","blockRuntimeId":11348},{"id":"minecraft:dark_oak_stairs","blockRuntimeId":8837},{"id":"minecraft:mangrove_stairs","blockRuntimeId":7476},{"id":"minecraft:cherry_stairs","blockRuntimeId":12388},{"id":"minecraft:bamboo_stairs","blockRuntimeId":2159},{"id":"minecraft:bamboo_mosaic_stairs","blockRuntimeId":11356},{"id":"minecraft:stone_brick_stairs","blockRuntimeId":2391},{"id":"minecraft:mossy_stone_brick_stairs","blockRuntimeId":10540},{"id":"minecraft:sandstone_stairs","blockRuntimeId":5972},{"id":"minecraft:smooth_sandstone_stairs","blockRuntimeId":6018},{"id":"minecraft:red_sandstone_stairs","blockRuntimeId":9129},{"id":"minecraft:smooth_red_sandstone_stairs","blockRuntimeId":9362},{"id":"minecraft:granite_stairs","blockRuntimeId":5519},{"id":"minecraft:polished_granite_stairs","blockRuntimeId":6937},{"id":"minecraft:diorite_stairs","blockRuntimeId":7242},{"id":"minecraft:polished_diorite_stairs","blockRuntimeId":11914},{"id":"minecraft:andesite_stairs","blockRuntimeId":9100},{"id":"minecraft:polished_andesite_stairs","blockRuntimeId":12251},{"id":"minecraft:brick_stairs","blockRuntimeId":11720},{"id":"minecraft:nether_brick_stairs","blockRuntimeId":115},{"id":"minecraft:red_nether_brick_stairs","blockRuntimeId":11810},{"id":"minecraft:end_brick_stairs","blockRuntimeId":11530},{"id":"minecraft:quartz_stairs","blockRuntimeId":8132},{"id":"minecraft:smooth_quartz_stairs","blockRuntimeId":13400},{"id":"minecraft:purpur_stairs","blockRuntimeId":13465},{"id":"minecraft:prismarine_stairs","blockRuntimeId":12945},{"id":"minecraft:dark_prismarine_stairs","blockRuntimeId":13121},{"id":"minecraft:prismarine_bricks_stairs","blockRuntimeId":625},{"id":"minecraft:crimson_stairs","blockRuntimeId":11423},{"id":"minecraft:warped_stairs","blockRuntimeId":6113},{"id":"minecraft:blackstone_stairs","blockRuntimeId":12240},{"id":"minecraft:polished_blackstone_stairs","blockRuntimeId":7134},{"id":"minecraft:polished_blackstone_brick_stairs","blockRuntimeId":7334},{"id":"minecraft:cut_copper_stairs","blockRuntimeId":7485},{"id":"minecraft:exposed_cut_copper_stairs","blockRuntimeId":7468},{"id":"minecraft:weathered_cut_copper_stairs","blockRuntimeId":7142},{"id":"minecraft:oxidized_cut_copper_stairs","blockRuntimeId":1098},{"id":"minecraft:waxed_cut_copper_stairs","blockRuntimeId":1146},{"id":"minecraft:waxed_exposed_cut_copper_stairs","blockRuntimeId":6686},{"id":"minecraft:waxed_weathered_cut_copper_stairs","blockRuntimeId":11331},{"id":"minecraft:waxed_oxidized_cut_copper_stairs","blockRuntimeId":10048},{"id":"minecraft:cobbled_deepslate_stairs","blockRuntimeId":565},{"id":"minecraft:deepslate_tile_stairs","blockRuntimeId":7962},{"id":"minecraft:polished_deepslate_stairs","blockRuntimeId":1037},{"id":"minecraft:deepslate_brick_stairs","blockRuntimeId":13113},{"id":"minecraft:mud_brick_stairs","blockRuntimeId":9338},{"id":"minecraft:wooden_door"},{"id":"minecraft:spruce_door"},{"id":"minecraft:birch_door"},{"id":"minecraft:jungle_door"},{"id":"minecraft:acacia_door"},{"id":"minecraft:dark_oak_door"},{"id":"minecraft:mangrove_door"},{"id":"minecraft:cherry_door"},{"id":"minecraft:bamboo_door"},{"id":"minecraft:iron_door"},{"id":"minecraft:crimson_door"},{"id":"minecraft:warped_door"},{"id":"minecraft:trapdoor","blockRuntimeId":657},{"id":"minecraft:spruce_trapdoor","blockRuntimeId":11759},{"id":"minecraft:birch_trapdoor","blockRuntimeId":11860},{"id":"minecraft:jungle_trapdoor","blockRuntimeId":9163},{"id":"minecraft:acacia_trapdoor","blockRuntimeId":9403},{"id":"minecraft:dark_oak_trapdoor","blockRuntimeId":13195},{"id":"minecraft:mangrove_trapdoor","blockRuntimeId":7342},{"id":"minecraft:cherry_trapdoor","blockRuntimeId":2353},{"id":"minecraft:bamboo_trapdoor","blockRuntimeId":9038},{"id":"minecraft:iron_trapdoor","blockRuntimeId":1066},{"id":"minecraft:crimson_trapdoor","blockRuntimeId":7175},{"id":"minecraft:warped_trapdoor","blockRuntimeId":8082},{"id":"minecraft:iron_bars","blockRuntimeId":8167},{"id":"minecraft:glass","blockRuntimeId":11328},{"id":"minecraft:white_stained_glass","blockRuntimeId":8605},{"id":"minecraft:light_gray_stained_glass","blockRuntimeId":1182},{"id":"minecraft:gray_stained_glass","blockRuntimeId":6109},{"id":"minecraft:black_stained_glass","blockRuntimeId":10585},{"id":"minecraft:brown_stained_glass","blockRuntimeId":1777},{"id":"minecraft:red_stained_glass","blockRuntimeId":9021},{"id":"minecraft:orange_stained_glass","blockRuntimeId":7409},{"id":"minecraft:yellow_stained_glass","blockRuntimeId":13284},{"id":"minecraft:lime_stained_glass","blockRuntimeId":126},{"id":"minecraft:green_stained_glass","blockRuntimeId":7092},{"id":"minecraft:cyan_stained_glass","blockRuntimeId":10584},{"id":"minecraft:light_blue_stained_glass","blockRuntimeId":9606},{"id":"minecraft:blue_stained_glass","blockRuntimeId":9570},{"id":"minecraft:purple_stained_glass","blockRuntimeId":2621},{"id":"minecraft:magenta_stained_glass","blockRuntimeId":12904},{"id":"minecraft:pink_stained_glass","blockRuntimeId":7158},{"id":"minecraft:tinted_glass","blockRuntimeId":10713},{"id":"minecraft:glass_pane","blockRuntimeId":9007},{"id":"minecraft:white_stained_glass_pane","blockRuntimeId":7410},{"id":"minecraft:light_gray_stained_glass_pane","blockRuntimeId":1184},{"id":"minecraft:gray_stained_glass_pane","blockRuntimeId":12110},{"id":"minecraft:black_stained_glass_pane","blockRuntimeId":2628},{"id":"minecraft:brown_stained_glass_pane","blockRuntimeId":734},{"id":"minecraft:red_stained_glass_pane","blockRuntimeId":12333},{"id":"minecraft:orange_stained_glass_pane","blockRuntimeId":648},{"id":"minecraft:yellow_stained_glass_pane","blockRuntimeId":561},{"id":"minecraft:lime_stained_glass_pane","blockRuntimeId":13282},{"id":"minecraft:green_stained_glass_pane","blockRuntimeId":6936},{"id":"minecraft:cyan_stained_glass_pane","blockRuntimeId":11675},{"id":"minecraft:light_blue_stained_glass_pane","blockRuntimeId":6668},{"id":"minecraft:blue_stained_glass_pane","blockRuntimeId":84},{"id":"minecraft:purple_stained_glass_pane","blockRuntimeId":8606},{"id":"minecraft:magenta_stained_glass_pane","blockRuntimeId":8166},{"id":"minecraft:pink_stained_glass_pane","blockRuntimeId":12338},{"id":"minecraft:ladder","blockRuntimeId":14074},{"id":"minecraft:scaffolding","blockRuntimeId":5956},{"id":"minecraft:stone_block_slab","blockRuntimeId":7070},{"id":"minecraft:stone_block_slab4","blockRuntimeId":9641},{"id":"minecraft:stone_block_slab","blockRuntimeId":7073},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9612},{"id":"minecraft:wooden_slab","blockRuntimeId":9062},{"id":"minecraft:wooden_slab","blockRuntimeId":9063},{"id":"minecraft:wooden_slab","blockRuntimeId":9064},{"id":"minecraft:wooden_slab","blockRuntimeId":9065},{"id":"minecraft:wooden_slab","blockRuntimeId":9066},{"id":"minecraft:wooden_slab","blockRuntimeId":9067},{"id":"minecraft:mangrove_slab","blockRuntimeId":2584},{"id":"minecraft:cherry_slab","blockRuntimeId":11365},{"id":"minecraft:bamboo_slab","blockRuntimeId":11717},{"id":"minecraft:bamboo_mosaic_slab","blockRuntimeId":4905},{"id":"minecraft:stone_block_slab","blockRuntimeId":7075},{"id":"minecraft:stone_block_slab4","blockRuntimeId":9639},{"id":"minecraft:stone_block_slab","blockRuntimeId":7071},{"id":"minecraft:stone_block_slab4","blockRuntimeId":9642},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9613},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9607},{"id":"minecraft:stone_block_slab4","blockRuntimeId":9643},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9624},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9629},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9630},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9627},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9628},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9626},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9625},{"id":"minecraft:stone_block_slab","blockRuntimeId":7074},{"id":"minecraft:stone_block_slab","blockRuntimeId":7077},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9614},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9623},{"id":"minecraft:stone_block_slab","blockRuntimeId":7076},{"id":"minecraft:stone_block_slab4","blockRuntimeId":9640},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9608},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9609},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9610},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9611},{"id":"minecraft:crimson_slab","blockRuntimeId":10560},{"id":"minecraft:warped_slab","blockRuntimeId":11680},{"id":"minecraft:blackstone_slab","blockRuntimeId":2369},{"id":"minecraft:polished_blackstone_slab","blockRuntimeId":11141},{"id":"minecraft:polished_blackstone_brick_slab","blockRuntimeId":6987},{"id":"minecraft:cut_copper_slab","blockRuntimeId":9009},{"id":"minecraft:exposed_cut_copper_slab","blockRuntimeId":11808},{"id":"minecraft:weathered_cut_copper_slab","blockRuntimeId":11188},{"id":"minecraft:oxidized_cut_copper_slab","blockRuntimeId":9074},{"id":"minecraft:waxed_cut_copper_slab","blockRuntimeId":13606},{"id":"minecraft:waxed_exposed_cut_copper_slab","blockRuntimeId":677},{"id":"minecraft:waxed_weathered_cut_copper_slab","blockRuntimeId":11752},{"id":"minecraft:waxed_oxidized_cut_copper_slab","blockRuntimeId":1981},{"id":"minecraft:cobbled_deepslate_slab","blockRuntimeId":13003},{"id":"minecraft:polished_deepslate_slab","blockRuntimeId":743},{"id":"minecraft:deepslate_tile_slab","blockRuntimeId":7094},{"id":"minecraft:deepslate_brick_slab","blockRuntimeId":6111},{"id":"minecraft:mud_brick_slab","blockRuntimeId":6695},{"id":"minecraft:brick_block","blockRuntimeId":8114},{"id":"minecraft:chiseled_nether_bricks","blockRuntimeId":12923},{"id":"minecraft:cracked_nether_bricks","blockRuntimeId":7411},{"id":"minecraft:quartz_bricks","blockRuntimeId":11499},{"id":"minecraft:stonebrick","blockRuntimeId":11754},{"id":"minecraft:stonebrick","blockRuntimeId":11755},{"id":"minecraft:stonebrick","blockRuntimeId":11756},{"id":"minecraft:stonebrick","blockRuntimeId":11757},{"id":"minecraft:end_bricks","blockRuntimeId":735},{"id":"minecraft:prismarine","blockRuntimeId":11233},{"id":"minecraft:polished_blackstone_bricks","blockRuntimeId":7989},{"id":"minecraft:cracked_polished_blackstone_bricks","blockRuntimeId":12870},{"id":"minecraft:gilded_blackstone","blockRuntimeId":7465},{"id":"minecraft:chiseled_polished_blackstone","blockRuntimeId":8836},{"id":"minecraft:deepslate_tiles","blockRuntimeId":7441},{"id":"minecraft:cracked_deepslate_tiles","blockRuntimeId":6948},{"id":"minecraft:deepslate_bricks","blockRuntimeId":9279},{"id":"minecraft:cracked_deepslate_bricks","blockRuntimeId":9143},{"id":"minecraft:chiseled_deepslate","blockRuntimeId":9008},{"id":"minecraft:cobblestone","blockRuntimeId":6003},{"id":"minecraft:mossy_cobblestone","blockRuntimeId":680},{"id":"minecraft:cobbled_deepslate","blockRuntimeId":11881},{"id":"minecraft:smooth_stone","blockRuntimeId":7442},{"id":"minecraft:sandstone","blockRuntimeId":6045},{"id":"minecraft:sandstone","blockRuntimeId":6046},{"id":"minecraft:sandstone","blockRuntimeId":6047},{"id":"minecraft:sandstone","blockRuntimeId":6048},{"id":"minecraft:red_sandstone","blockRuntimeId":11787},{"id":"minecraft:red_sandstone","blockRuntimeId":11788},{"id":"minecraft:red_sandstone","blockRuntimeId":11789},{"id":"minecraft:red_sandstone","blockRuntimeId":11790},{"id":"minecraft:coal_block","blockRuntimeId":9180},{"id":"minecraft:dried_kelp_block","blockRuntimeId":13770},{"id":"minecraft:gold_block","blockRuntimeId":778},{"id":"minecraft:iron_block","blockRuntimeId":14073},{"id":"minecraft:copper_block","blockRuntimeId":7960},{"id":"minecraft:exposed_copper","blockRuntimeId":1350},{"id":"minecraft:weathered_copper","blockRuntimeId":14037},{"id":"minecraft:oxidized_copper","blockRuntimeId":5937},{"id":"minecraft:waxed_copper","blockRuntimeId":13440},{"id":"minecraft:waxed_exposed_copper","blockRuntimeId":1967},{"id":"minecraft:waxed_weathered_copper","blockRuntimeId":1980},{"id":"minecraft:waxed_oxidized_copper","blockRuntimeId":13237},{"id":"minecraft:cut_copper","blockRuntimeId":7998},{"id":"minecraft:exposed_cut_copper","blockRuntimeId":11330},{"id":"minecraft:weathered_cut_copper","blockRuntimeId":12853},{"id":"minecraft:oxidized_cut_copper","blockRuntimeId":9293},{"id":"minecraft:waxed_cut_copper","blockRuntimeId":12986},{"id":"minecraft:waxed_exposed_cut_copper","blockRuntimeId":6212},{"id":"minecraft:waxed_weathered_cut_copper","blockRuntimeId":8604},{"id":"minecraft:waxed_oxidized_cut_copper","blockRuntimeId":633},{"id":"minecraft:emerald_block","blockRuntimeId":2596},{"id":"minecraft:diamond_block","blockRuntimeId":721},{"id":"minecraft:lapis_block","blockRuntimeId":7086},{"id":"minecraft:raw_iron_block","blockRuntimeId":14070},{"id":"minecraft:raw_copper_block","blockRuntimeId":9061},{"id":"minecraft:raw_gold_block","blockRuntimeId":1108},{"id":"minecraft:quartz_block","blockRuntimeId":6088},{"id":"minecraft:quartz_block","blockRuntimeId":6090},{"id":"minecraft:quartz_block","blockRuntimeId":6089},{"id":"minecraft:quartz_block","blockRuntimeId":6091},{"id":"minecraft:prismarine","blockRuntimeId":11231},{"id":"minecraft:prismarine","blockRuntimeId":11232},{"id":"minecraft:slime","blockRuntimeId":7030},{"id":"minecraft:honey_block","blockRuntimeId":2335},{"id":"minecraft:honeycomb_block","blockRuntimeId":7333},{"id":"minecraft:hay_block","blockRuntimeId":1968},{"id":"minecraft:bone_block","blockRuntimeId":7031},{"id":"minecraft:nether_brick","blockRuntimeId":12965},{"id":"minecraft:red_nether_brick","blockRuntimeId":564},{"id":"minecraft:netherite_block","blockRuntimeId":6177},{"id":"minecraft:lodestone","blockRuntimeId":14067},{"id":"minecraft:white_wool","blockRuntimeId":9181},{"id":"minecraft:light_gray_wool","blockRuntimeId":13834},{"id":"minecraft:gray_wool","blockRuntimeId":647},{"id":"minecraft:black_wool","blockRuntimeId":1111},{"id":"minecraft:brown_wool","blockRuntimeId":701},{"id":"minecraft:red_wool","blockRuntimeId":127},{"id":"minecraft:orange_wool","blockRuntimeId":1948},{"id":"minecraft:yellow_wool","blockRuntimeId":554},{"id":"minecraft:lime_wool","blockRuntimeId":11130},{"id":"minecraft:green_wool","blockRuntimeId":6125},{"id":"minecraft:cyan_wool","blockRuntimeId":9121},{"id":"minecraft:light_blue_wool","blockRuntimeId":12339},{"id":"minecraft:blue_wool","blockRuntimeId":9294},{"id":"minecraft:purple_wool","blockRuntimeId":14072},{"id":"minecraft:magenta_wool","blockRuntimeId":2415},{"id":"minecraft:pink_wool","blockRuntimeId":6178},{"id":"minecraft:white_carpet","blockRuntimeId":12953},{"id":"minecraft:light_gray_carpet","blockRuntimeId":14071},{"id":"minecraft:gray_carpet","blockRuntimeId":650},{"id":"minecraft:black_carpet","blockRuntimeId":11169},{"id":"minecraft:brown_carpet","blockRuntimeId":2386},{"id":"minecraft:red_carpet","blockRuntimeId":13111},{"id":"minecraft:orange_carpet","blockRuntimeId":12298},{"id":"minecraft:yellow_carpet","blockRuntimeId":10583},{"id":"minecraft:lime_carpet","blockRuntimeId":11925},{"id":"minecraft:green_carpet","blockRuntimeId":6126},{"id":"minecraft:cyan_carpet","blockRuntimeId":6006},{"id":"minecraft:light_blue_carpet","blockRuntimeId":8169},{"id":"minecraft:blue_carpet","blockRuntimeId":597},{"id":"minecraft:purple_carpet","blockRuntimeId":13457},{"id":"minecraft:magenta_carpet","blockRuntimeId":684},{"id":"minecraft:pink_carpet","blockRuntimeId":13399},{"id":"minecraft:white_concrete_powder","blockRuntimeId":8554},{"id":"minecraft:light_gray_concrete_powder","blockRuntimeId":12937},{"id":"minecraft:gray_concrete_powder","blockRuntimeId":13057},{"id":"minecraft:black_concrete_powder","blockRuntimeId":1145},{"id":"minecraft:brown_concrete_powder","blockRuntimeId":10131},{"id":"minecraft:red_concrete_powder","blockRuntimeId":12936},{"id":"minecraft:orange_concrete_powder","blockRuntimeId":14034},{"id":"minecraft:yellow_concrete_powder","blockRuntimeId":13277},{"id":"minecraft:lime_concrete_powder","blockRuntimeId":13790},{"id":"minecraft:green_concrete_powder","blockRuntimeId":12237},{"id":"minecraft:cyan_concrete_powder","blockRuntimeId":5914},{"id":"minecraft:light_blue_concrete_powder","blockRuntimeId":62},{"id":"minecraft:blue_concrete_powder","blockRuntimeId":11922},{"id":"minecraft:purple_concrete_powder","blockRuntimeId":11745},{"id":"minecraft:magenta_concrete_powder","blockRuntimeId":7300},{"id":"minecraft:pink_concrete_powder","blockRuntimeId":7096},{"id":"minecraft:white_concrete","blockRuntimeId":13863},{"id":"minecraft:light_gray_concrete","blockRuntimeId":1958},{"id":"minecraft:gray_concrete","blockRuntimeId":13058},{"id":"minecraft:black_concrete","blockRuntimeId":11906},{"id":"minecraft:brown_concrete","blockRuntimeId":11364},{"id":"minecraft:red_concrete","blockRuntimeId":13398},{"id":"minecraft:orange_concrete","blockRuntimeId":11923},{"id":"minecraft:yellow_concrete","blockRuntimeId":6005},{"id":"minecraft:lime_concrete","blockRuntimeId":7461},{"id":"minecraft:green_concrete","blockRuntimeId":10557},{"id":"minecraft:cyan_concrete","blockRuntimeId":12954},{"id":"minecraft:light_blue_concrete","blockRuntimeId":13130},{"id":"minecraft:blue_concrete","blockRuntimeId":12964},{"id":"minecraft:purple_concrete","blockRuntimeId":6982},{"id":"minecraft:magenta_concrete","blockRuntimeId":7209},{"id":"minecraft:pink_concrete","blockRuntimeId":5527},{"id":"minecraft:clay","blockRuntimeId":12387},{"id":"minecraft:hardened_clay","blockRuntimeId":1382},{"id":"minecraft:white_terracotta","blockRuntimeId":8168},{"id":"minecraft:light_gray_terracotta","blockRuntimeId":1772},{"id":"minecraft:gray_terracotta","blockRuntimeId":7444},{"id":"minecraft:black_terracotta","blockRuntimeId":11252},{"id":"minecraft:brown_terracotta","blockRuntimeId":13816},{"id":"minecraft:red_terracotta","blockRuntimeId":2410},{"id":"minecraft:orange_terracotta","blockRuntimeId":13236},{"id":"minecraft:yellow_terracotta","blockRuntimeId":6990},{"id":"minecraft:lime_terracotta","blockRuntimeId":14044},{"id":"minecraft:green_terracotta","blockRuntimeId":6110},{"id":"minecraft:cyan_terracotta"},{"id":"minecraft:light_blue_terracotta","blockRuntimeId":7195},{"id":"minecraft:blue_terracotta","blockRuntimeId":6044},{"id":"minecraft:purple_terracotta","blockRuntimeId":11538},{"id":"minecraft:magenta_terracotta","blockRuntimeId":7467},{"id":"minecraft:pink_terracotta","blockRuntimeId":6945},{"id":"minecraft:white_glazed_terracotta","blockRuntimeId":9389},{"id":"minecraft:silver_glazed_terracotta","blockRuntimeId":5513},{"id":"minecraft:gray_glazed_terracotta","blockRuntimeId":14061},{"id":"minecraft:black_glazed_terracotta","blockRuntimeId":10042},{"id":"minecraft:brown_glazed_terracotta","blockRuntimeId":5915},{"id":"minecraft:red_glazed_terracotta","blockRuntimeId":6955},{"id":"minecraft:orange_glazed_terracotta","blockRuntimeId":2586},{"id":"minecraft:yellow_glazed_terracotta","blockRuntimeId":2372},{"id":"minecraft:lime_glazed_terracotta","blockRuntimeId":651},{"id":"minecraft:green_glazed_terracotta","blockRuntimeId":11818},{"id":"minecraft:cyan_glazed_terracotta","blockRuntimeId":9137},{"id":"minecraft:light_blue_glazed_terracotta","blockRuntimeId":9286},{"id":"minecraft:blue_glazed_terracotta","blockRuntimeId":9280},{"id":"minecraft:purple_glazed_terracotta","blockRuntimeId":12231},{"id":"minecraft:magenta_glazed_terracotta","blockRuntimeId":2416},{"id":"minecraft:pink_glazed_terracotta","blockRuntimeId":11746},{"id":"minecraft:purpur_block","blockRuntimeId":13414},{"id":"minecraft:purpur_block","blockRuntimeId":13416},{"id":"minecraft:packed_mud","blockRuntimeId":738},{"id":"minecraft:mud_bricks","blockRuntimeId":12097},{"id":"minecraft:nether_wart_block","blockRuntimeId":7098},{"id":"minecraft:warped_wart_block","blockRuntimeId":10565},{"id":"minecraft:shroomlight","blockRuntimeId":8819},{"id":"minecraft:crimson_nylium","blockRuntimeId":6979},{"id":"minecraft:warped_nylium","blockRuntimeId":11497},{"id":"minecraft:netherrack","blockRuntimeId":12261},{"id":"minecraft:basalt","blockRuntimeId":7191},{"id":"minecraft:polished_basalt","blockRuntimeId":26},{"id":"minecraft:smooth_basalt","blockRuntimeId":2593},{"id":"minecraft:soul_soil","blockRuntimeId":9649},{"id":"minecraft:dirt","blockRuntimeId":9568},{"id":"minecraft:dirt","blockRuntimeId":9569},{"id":"minecraft:farmland","blockRuntimeId":6697},{"id":"minecraft:grass","blockRuntimeId":12192},{"id":"minecraft:grass_path","blockRuntimeId":13871},{"id":"minecraft:podzol","blockRuntimeId":7959},{"id":"minecraft:mycelium","blockRuntimeId":6075},{"id":"minecraft:mud","blockRuntimeId":11883},{"id":"minecraft:stone","blockRuntimeId":1780},{"id":"minecraft:iron_ore","blockRuntimeId":7999},{"id":"minecraft:gold_ore","blockRuntimeId":2371},{"id":"minecraft:diamond_ore","blockRuntimeId":7207},{"id":"minecraft:lapis_ore","blockRuntimeId":13397},{"id":"minecraft:redstone_ore","blockRuntimeId":7089},{"id":"minecraft:coal_ore","blockRuntimeId":7087},{"id":"minecraft:copper_ore","blockRuntimeId":5938},{"id":"minecraft:emerald_ore","blockRuntimeId":13040},{"id":"minecraft:quartz_ore","blockRuntimeId":7358},{"id":"minecraft:nether_gold_ore","blockRuntimeId":29},{"id":"minecraft:ancient_debris","blockRuntimeId":11270},{"id":"minecraft:deepslate_iron_ore","blockRuntimeId":12966},{"id":"minecraft:deepslate_gold_ore","blockRuntimeId":11269},{"id":"minecraft:deepslate_diamond_ore","blockRuntimeId":13817},{"id":"minecraft:deepslate_lapis_ore","blockRuntimeId":12938},{"id":"minecraft:deepslate_redstone_ore","blockRuntimeId":11825},{"id":"minecraft:deepslate_emerald_ore","blockRuntimeId":11498},{"id":"minecraft:deepslate_coal_ore","blockRuntimeId":12852},{"id":"minecraft:deepslate_copper_ore","blockRuntimeId":114},{"id":"minecraft:gravel","blockRuntimeId":14099},{"id":"minecraft:granite","blockRuntimeId":83},{"id":"minecraft:diorite","blockRuntimeId":149},{"id":"minecraft:andesite","blockRuntimeId":1778},{"id":"minecraft:blackstone","blockRuntimeId":13285},{"id":"minecraft:deepslate","blockRuntimeId":681},{"id":"minecraft:polished_granite","blockRuntimeId":1155},{"id":"minecraft:polished_diorite","blockRuntimeId":10035},{"id":"minecraft:polished_andesite","blockRuntimeId":13242},{"id":"minecraft:polished_blackstone","blockRuntimeId":6074},{"id":"minecraft:polished_deepslate","blockRuntimeId":13462},{"id":"minecraft:sand","blockRuntimeId":6992},{"id":"minecraft:sand","blockRuntimeId":6993},{"id":"minecraft:cactus","blockRuntimeId":12203},{"id":"minecraft:oak_log","blockRuntimeId":731},{"id":"minecraft:stripped_oak_log","blockRuntimeId":13239},{"id":"minecraft:spruce_log","blockRuntimeId":7067},{"id":"minecraft:stripped_spruce_log","blockRuntimeId":11431},{"id":"minecraft:birch_log","blockRuntimeId":1781},{"id":"minecraft:stripped_birch_log","blockRuntimeId":10710},{"id":"minecraft:jungle_log","blockRuntimeId":639},{"id":"minecraft:stripped_jungle_log","blockRuntimeId":1767},{"id":"minecraft:acacia_log","blockRuntimeId":7172},{"id":"minecraft:stripped_acacia_log","blockRuntimeId":10088},{"id":"minecraft:dark_oak_log","blockRuntimeId":4907},{"id":"minecraft:stripped_dark_oak_log","blockRuntimeId":635},{"id":"minecraft:mangrove_log","blockRuntimeId":1095},{"id":"minecraft:stripped_mangrove_log","blockRuntimeId":14096},{"id":"minecraft:cherry_log","blockRuntimeId":12942},{"id":"minecraft:stripped_cherry_log","blockRuntimeId":7284},{"id":"minecraft:crimson_stem","blockRuntimeId":10554},{"id":"minecraft:stripped_crimson_stem","blockRuntimeId":12164},{"id":"minecraft:warped_stem","blockRuntimeId":11682},{"id":"minecraft:stripped_warped_stem","blockRuntimeId":13090},{"id":"minecraft:wood","blockRuntimeId":4910},{"id":"minecraft:wood","blockRuntimeId":4916},{"id":"minecraft:wood","blockRuntimeId":4911},{"id":"minecraft:wood","blockRuntimeId":4917},{"id":"minecraft:wood","blockRuntimeId":4912},{"id":"minecraft:wood","blockRuntimeId":4918},{"id":"minecraft:wood","blockRuntimeId":4913},{"id":"minecraft:wood","blockRuntimeId":4919},{"id":"minecraft:wood","blockRuntimeId":4914},{"id":"minecraft:wood","blockRuntimeId":4920},{"id":"minecraft:wood","blockRuntimeId":4915},{"id":"minecraft:wood","blockRuntimeId":4921},{"id":"minecraft:mangrove_wood","blockRuntimeId":6949},{"id":"minecraft:stripped_mangrove_wood","blockRuntimeId":7026},{"id":"minecraft:cherry_wood","blockRuntimeId":12378},{"id":"minecraft:stripped_cherry_wood","blockRuntimeId":8630},{"id":"minecraft:crimson_hyphae","blockRuntimeId":7131},{"id":"minecraft:stripped_crimson_hyphae","blockRuntimeId":11686},{"id":"minecraft:warped_hyphae","blockRuntimeId":10562},{"id":"minecraft:stripped_warped_hyphae","blockRuntimeId":9395},{"id":"minecraft:bamboo_block","blockRuntimeId":63},{"id":"minecraft:stripped_bamboo_block","blockRuntimeId":5982},{"id":"minecraft:leaves","blockRuntimeId":11253},{"id":"minecraft:leaves","blockRuntimeId":11254},{"id":"minecraft:leaves","blockRuntimeId":11255},{"id":"minecraft:leaves","blockRuntimeId":11256},{"id":"minecraft:leaves2","blockRuntimeId":7197},{"id":"minecraft:leaves2","blockRuntimeId":7198},{"id":"minecraft:mangrove_leaves","blockRuntimeId":11877},{"id":"minecraft:cherry_leaves","blockRuntimeId":10038},{"id":"minecraft:azalea_leaves","blockRuntimeId":13410},{"id":"minecraft:azalea_leaves_flowered","blockRuntimeId":11486},{"id":"minecraft:sapling","blockRuntimeId":2147},{"id":"minecraft:sapling","blockRuntimeId":2148},{"id":"minecraft:sapling","blockRuntimeId":2149},{"id":"minecraft:sapling","blockRuntimeId":2150},{"id":"minecraft:sapling","blockRuntimeId":2151},{"id":"minecraft:sapling","blockRuntimeId":2152},{"id":"minecraft:mangrove_propagule","blockRuntimeId":12193},{"id":"minecraft:cherry_sapling","blockRuntimeId":12940},{"id":"minecraft:bee_nest","blockRuntimeId":9572},{"id":"minecraft:wheat_seeds"},{"id":"minecraft:pumpkin_seeds"},{"id":"minecraft:melon_seeds"},{"id":"minecraft:beetroot_seeds"},{"id":"minecraft:torchflower_seeds"},{"id":"minecraft:pitcher_pod"},{"id":"minecraft:wheat"},{"id":"minecraft:beetroot"},{"id":"minecraft:potato"},{"id":"minecraft:poisonous_potato"},{"id":"minecraft:carrot"},{"id":"minecraft:golden_carrot"},{"id":"minecraft:apple"},{"id":"minecraft:golden_apple"},{"id":"minecraft:enchanted_golden_apple"},{"id":"minecraft:melon_block","blockRuntimeId":1144},{"id":"minecraft:melon_slice"},{"id":"minecraft:glistering_melon_slice"},{"id":"minecraft:sweet_berries"},{"id":"minecraft:glow_berries"},{"id":"minecraft:pumpkin","blockRuntimeId":7437},{"id":"minecraft:carved_pumpkin","blockRuntimeId":13068},{"id":"minecraft:lit_pumpkin","blockRuntimeId":11884},{"id":"minecraft:honeycomb"},{"id":"minecraft:tallgrass","blockRuntimeId":2389},{"id":"minecraft:double_plant","blockRuntimeId":9238},{"id":"minecraft:tallgrass","blockRuntimeId":2388},{"id":"minecraft:double_plant","blockRuntimeId":9237},{"id":"minecraft:nether_sprouts"},{"id":"minecraft:fire_coral","blockRuntimeId":1779},{"id":"minecraft:brain_coral","blockRuntimeId":1947},{"id":"minecraft:bubble_coral","blockRuntimeId":11367},{"id":"minecraft:tube_coral","blockRuntimeId":13473},{"id":"minecraft:horn_coral","blockRuntimeId":6004},{"id":"minecraft:dead_fire_coral","blockRuntimeId":11422},{"id":"minecraft:dead_brain_coral","blockRuntimeId":12851},{"id":"minecraft:dead_bubble_coral","blockRuntimeId":12939},{"id":"minecraft:dead_tube_coral","blockRuntimeId":7097},{"id":"minecraft:dead_horn_coral","blockRuntimeId":10618},{"id":"minecraft:coral_fan","blockRuntimeId":7497},{"id":"minecraft:coral_fan","blockRuntimeId":7495},{"id":"minecraft:coral_fan","blockRuntimeId":7496},{"id":"minecraft:coral_fan","blockRuntimeId":7494},{"id":"minecraft:coral_fan","blockRuntimeId":7498},{"id":"minecraft:coral_fan_dead","blockRuntimeId":76},{"id":"minecraft:coral_fan_dead","blockRuntimeId":74},{"id":"minecraft:coral_fan_dead","blockRuntimeId":75},{"id":"minecraft:coral_fan_dead","blockRuntimeId":73},{"id":"minecraft:coral_fan_dead","blockRuntimeId":77},{"id":"minecraft:crimson_roots","blockRuntimeId":13272},{"id":"minecraft:warped_roots","blockRuntimeId":7208},{"id":"minecraft:yellow_flower","blockRuntimeId":1045},{"id":"minecraft:red_flower","blockRuntimeId":6007},{"id":"minecraft:red_flower","blockRuntimeId":6008},{"id":"minecraft:red_flower","blockRuntimeId":6009},{"id":"minecraft:red_flower","blockRuntimeId":6010},{"id":"minecraft:red_flower","blockRuntimeId":6011},{"id":"minecraft:red_flower","blockRuntimeId":6012},{"id":"minecraft:red_flower","blockRuntimeId":6013},{"id":"minecraft:red_flower","blockRuntimeId":6014},{"id":"minecraft:red_flower","blockRuntimeId":6015},{"id":"minecraft:red_flower","blockRuntimeId":6016},{"id":"minecraft:red_flower","blockRuntimeId":6017},{"id":"minecraft:double_plant","blockRuntimeId":9235},{"id":"minecraft:double_plant","blockRuntimeId":9236},{"id":"minecraft:double_plant","blockRuntimeId":9239},{"id":"minecraft:double_plant","blockRuntimeId":9240},{"id":"minecraft:pitcher_plant","blockRuntimeId":6159},{"id":"minecraft:pink_petals","blockRuntimeId":7534},{"id":"minecraft:wither_rose","blockRuntimeId":11329},{"id":"minecraft:torchflower","blockRuntimeId":11206},{"id":"minecraft:white_dye"},{"id":"minecraft:light_gray_dye"},{"id":"minecraft:gray_dye"},{"id":"minecraft:black_dye"},{"id":"minecraft:brown_dye"},{"id":"minecraft:red_dye"},{"id":"minecraft:orange_dye"},{"id":"minecraft:yellow_dye"},{"id":"minecraft:lime_dye"},{"id":"minecraft:green_dye"},{"id":"minecraft:cyan_dye"},{"id":"minecraft:light_blue_dye"},{"id":"minecraft:blue_dye"},{"id":"minecraft:purple_dye"},{"id":"minecraft:magenta_dye"},{"id":"minecraft:pink_dye"},{"id":"minecraft:ink_sac"},{"id":"minecraft:glow_ink_sac"},{"id":"minecraft:cocoa_beans"},{"id":"minecraft:lapis_lazuli"},{"id":"minecraft:bone_meal"},{"id":"minecraft:vine","blockRuntimeId":2337},{"id":"minecraft:weeping_vines","blockRuntimeId":9295},{"id":"minecraft:twisting_vines","blockRuntimeId":9506},{"id":"minecraft:waterlily","blockRuntimeId":2594},{"id":"minecraft:seagrass","blockRuntimeId":674},{"id":"minecraft:kelp"},{"id":"minecraft:deadbush","blockRuntimeId":7986},{"id":"minecraft:bamboo","blockRuntimeId":6076},{"id":"minecraft:snow","blockRuntimeId":6991},{"id":"minecraft:ice","blockRuntimeId":11888},{"id":"minecraft:packed_ice","blockRuntimeId":737},{"id":"minecraft:blue_ice","blockRuntimeId":12248},{"id":"minecraft:snow_layer","blockRuntimeId":573},{"id":"minecraft:pointed_dripstone","blockRuntimeId":13106},{"id":"minecraft:dripstone_block","blockRuntimeId":2336},{"id":"minecraft:moss_carpet","blockRuntimeId":741},{"id":"minecraft:moss_block","blockRuntimeId":11744},{"id":"minecraft:dirt_with_roots","blockRuntimeId":9179},{"id":"minecraft:hanging_roots","blockRuntimeId":624},{"id":"minecraft:mangrove_roots","blockRuntimeId":11339},{"id":"minecraft:muddy_mangrove_roots","blockRuntimeId":1090},{"id":"minecraft:big_dripleaf","blockRuntimeId":10718},{"id":"minecraft:small_dripleaf_block","blockRuntimeId":7157},{"id":"minecraft:spore_blossom","blockRuntimeId":13005},{"id":"minecraft:azalea","blockRuntimeId":12096},{"id":"minecraft:flowering_azalea","blockRuntimeId":9292},{"id":"minecraft:glow_lichen","blockRuntimeId":9499},{"id":"minecraft:amethyst_block","blockRuntimeId":777},{"id":"minecraft:budding_amethyst","blockRuntimeId":12219},{"id":"minecraft:amethyst_cluster","blockRuntimeId":13600},{"id":"minecraft:large_amethyst_bud","blockRuntimeId":8037},{"id":"minecraft:medium_amethyst_bud","blockRuntimeId":7221},{"id":"minecraft:small_amethyst_bud","blockRuntimeId":1049},{"id":"minecraft:tuff","blockRuntimeId":1094},{"id":"minecraft:calcite","blockRuntimeId":634},{"id":"minecraft:chicken"},{"id":"minecraft:porkchop"},{"id":"minecraft:beef"},{"id":"minecraft:mutton"},{"id":"minecraft:rabbit"},{"id":"minecraft:cod"},{"id":"minecraft:salmon"},{"id":"minecraft:tropical_fish"},{"id":"minecraft:pufferfish"},{"id":"minecraft:brown_mushroom","blockRuntimeId":5913},{"id":"minecraft:red_mushroom","blockRuntimeId":7464},{"id":"minecraft:crimson_fungus","blockRuntimeId":13460},{"id":"minecraft:warped_fungus","blockRuntimeId":742},{"id":"minecraft:brown_mushroom_block","blockRuntimeId":13055},{"id":"minecraft:red_mushroom_block","blockRuntimeId":5999},{"id":"minecraft:brown_mushroom_block","blockRuntimeId":13056},{"id":"minecraft:brown_mushroom_block","blockRuntimeId":13041},{"id":"minecraft:egg"},{"id":"minecraft:sugar_cane"},{"id":"minecraft:sugar"},{"id":"minecraft:rotten_flesh"},{"id":"minecraft:bone"},{"id":"minecraft:web","blockRuntimeId":11913},{"id":"minecraft:spider_eye"},{"id":"minecraft:mob_spawner","blockRuntimeId":1154},{"id":"minecraft:monster_egg","blockRuntimeId":6930},{"id":"minecraft:monster_egg","blockRuntimeId":6931},{"id":"minecraft:monster_egg","blockRuntimeId":6932},{"id":"minecraft:monster_egg","blockRuntimeId":6933},{"id":"minecraft:monster_egg","blockRuntimeId":6934},{"id":"minecraft:monster_egg","blockRuntimeId":6935},{"id":"minecraft:infested_deepslate","blockRuntimeId":7950},{"id":"minecraft:dragon_egg","blockRuntimeId":12963},{"id":"minecraft:turtle_egg","blockRuntimeId":13791},{"id":"minecraft:sniffer_egg","blockRuntimeId":12220},{"id":"minecraft:frog_spawn","blockRuntimeId":7250},{"id":"minecraft:pearlescent_froglight","blockRuntimeId":11617},{"id":"minecraft:verdant_froglight","blockRuntimeId":11676},{"id":"minecraft:ochre_froglight","blockRuntimeId":5330},{"id":"minecraft:chicken_spawn_egg"},{"id":"minecraft:bee_spawn_egg"},{"id":"minecraft:cow_spawn_egg"},{"id":"minecraft:pig_spawn_egg"},{"id":"minecraft:sheep_spawn_egg"},{"id":"minecraft:wolf_spawn_egg"},{"id":"minecraft:polar_bear_spawn_egg"},{"id":"minecraft:ocelot_spawn_egg"},{"id":"minecraft:cat_spawn_egg"},{"id":"minecraft:mooshroom_spawn_egg"},{"id":"minecraft:bat_spawn_egg"},{"id":"minecraft:parrot_spawn_egg"},{"id":"minecraft:rabbit_spawn_egg"},{"id":"minecraft:llama_spawn_egg"},{"id":"minecraft:horse_spawn_egg"},{"id":"minecraft:donkey_spawn_egg"},{"id":"minecraft:mule_spawn_egg"},{"id":"minecraft:skeleton_horse_spawn_egg"},{"id":"minecraft:zombie_horse_spawn_egg"},{"id":"minecraft:tropical_fish_spawn_egg"},{"id":"minecraft:cod_spawn_egg"},{"id":"minecraft:pufferfish_spawn_egg"},{"id":"minecraft:salmon_spawn_egg"},{"id":"minecraft:dolphin_spawn_egg"},{"id":"minecraft:turtle_spawn_egg"},{"id":"minecraft:panda_spawn_egg"},{"id":"minecraft:fox_spawn_egg"},{"id":"minecraft:creeper_spawn_egg"},{"id":"minecraft:enderman_spawn_egg"},{"id":"minecraft:silverfish_spawn_egg"},{"id":"minecraft:skeleton_spawn_egg"},{"id":"minecraft:wither_skeleton_spawn_egg"},{"id":"minecraft:stray_spawn_egg"},{"id":"minecraft:slime_spawn_egg"},{"id":"minecraft:spider_spawn_egg"},{"id":"minecraft:zombie_spawn_egg"},{"id":"minecraft:zombie_pigman_spawn_egg"},{"id":"minecraft:husk_spawn_egg"},{"id":"minecraft:drowned_spawn_egg"},{"id":"minecraft:squid_spawn_egg"},{"id":"minecraft:glow_squid_spawn_egg"},{"id":"minecraft:cave_spider_spawn_egg"},{"id":"minecraft:witch_spawn_egg"},{"id":"minecraft:guardian_spawn_egg"},{"id":"minecraft:elder_guardian_spawn_egg"},{"id":"minecraft:endermite_spawn_egg"},{"id":"minecraft:magma_cube_spawn_egg"},{"id":"minecraft:strider_spawn_egg"},{"id":"minecraft:hoglin_spawn_egg"},{"id":"minecraft:piglin_spawn_egg"},{"id":"minecraft:zoglin_spawn_egg"},{"id":"minecraft:piglin_brute_spawn_egg"},{"id":"minecraft:goat_spawn_egg"},{"id":"minecraft:axolotl_spawn_egg"},{"id":"minecraft:warden_spawn_egg"},{"id":"minecraft:allay_spawn_egg"},{"id":"minecraft:frog_spawn_egg"},{"id":"minecraft:tadpole_spawn_egg"},{"id":"minecraft:trader_llama_spawn_egg"},{"id":"minecraft:camel_spawn_egg"},{"id":"minecraft:ghast_spawn_egg"},{"id":"minecraft:blaze_spawn_egg"},{"id":"minecraft:shulker_spawn_egg"},{"id":"minecraft:vindicator_spawn_egg"},{"id":"minecraft:evoker_spawn_egg"},{"id":"minecraft:vex_spawn_egg"},{"id":"minecraft:villager_spawn_egg"},{"id":"minecraft:wandering_trader_spawn_egg"},{"id":"minecraft:zombie_villager_spawn_egg"},{"id":"minecraft:phantom_spawn_egg"},{"id":"minecraft:pillager_spawn_egg"},{"id":"minecraft:ravager_spawn_egg"},{"id":"minecraft:iron_golem_spawn_egg"},{"id":"minecraft:snow_golem_spawn_egg"},{"id":"minecraft:sniffer_spawn_egg"},{"id":"minecraft:obsidian","blockRuntimeId":1183},{"id":"minecraft:crying_obsidian","blockRuntimeId":11924},{"id":"minecraft:bedrock","blockRuntimeId":12238},{"id":"minecraft:soul_sand","blockRuntimeId":9650},{"id":"minecraft:magma","blockRuntimeId":13803},{"id":"minecraft:nether_wart"},{"id":"minecraft:end_stone","blockRuntimeId":6617},{"id":"minecraft:chorus_flower","blockRuntimeId":7387},{"id":"minecraft:chorus_plant","blockRuntimeId":9321},{"id":"minecraft:chorus_fruit"},{"id":"minecraft:popped_chorus_fruit"},{"id":"minecraft:sponge","blockRuntimeId":1369},{"id":"minecraft:sponge","blockRuntimeId":1370},{"id":"minecraft:coral_block","blockRuntimeId":9011},{"id":"minecraft:coral_block","blockRuntimeId":9012},{"id":"minecraft:coral_block","blockRuntimeId":9013},{"id":"minecraft:coral_block","blockRuntimeId":9014},{"id":"minecraft:coral_block","blockRuntimeId":9015},{"id":"minecraft:coral_block","blockRuntimeId":9016},{"id":"minecraft:coral_block","blockRuntimeId":9017},{"id":"minecraft:coral_block","blockRuntimeId":9018},{"id":"minecraft:coral_block","blockRuntimeId":9019},{"id":"minecraft:coral_block","blockRuntimeId":9020},{"id":"minecraft:sculk","blockRuntimeId":12259},{"id":"minecraft:sculk_vein","blockRuntimeId":12787},{"id":"minecraft:sculk_catalyst","blockRuntimeId":6001},{"id":"minecraft:sculk_shrieker","blockRuntimeId":643},{"id":"minecraft:sculk_sensor","blockRuntimeId":7235},{"id":"minecraft:calibrated_sculk_sensor","blockRuntimeId":10060},{"id":"minecraft:reinforced_deepslate","blockRuntimeId":10036},{"id":"minecraft:leather_helmet"},{"id":"minecraft:chainmail_helmet"},{"id":"minecraft:iron_helmet"},{"id":"minecraft:golden_helmet"},{"id":"minecraft:diamond_helmet"},{"id":"minecraft:netherite_helmet"},{"id":"minecraft:leather_chestplate"},{"id":"minecraft:chainmail_chestplate"},{"id":"minecraft:iron_chestplate"},{"id":"minecraft:golden_chestplate"},{"id":"minecraft:diamond_chestplate"},{"id":"minecraft:netherite_chestplate"},{"id":"minecraft:leather_leggings"},{"id":"minecraft:chainmail_leggings"},{"id":"minecraft:iron_leggings"},{"id":"minecraft:golden_leggings"},{"id":"minecraft:diamond_leggings"},{"id":"minecraft:netherite_leggings"},{"id":"minecraft:leather_boots"},{"id":"minecraft:chainmail_boots"},{"id":"minecraft:iron_boots"},{"id":"minecraft:golden_boots"},{"id":"minecraft:diamond_boots"},{"id":"minecraft:netherite_boots"},{"id":"minecraft:wooden_sword"},{"id":"minecraft:stone_sword"},{"id":"minecraft:iron_sword"},{"id":"minecraft:golden_sword"},{"id":"minecraft:diamond_sword"},{"id":"minecraft:netherite_sword"},{"id":"minecraft:wooden_axe"},{"id":"minecraft:stone_axe"},{"id":"minecraft:iron_axe"},{"id":"minecraft:golden_axe"},{"id":"minecraft:diamond_axe"},{"id":"minecraft:netherite_axe"},{"id":"minecraft:wooden_pickaxe"},{"id":"minecraft:stone_pickaxe"},{"id":"minecraft:iron_pickaxe"},{"id":"minecraft:golden_pickaxe"},{"id":"minecraft:diamond_pickaxe"},{"id":"minecraft:netherite_pickaxe"},{"id":"minecraft:wooden_shovel"},{"id":"minecraft:stone_shovel"},{"id":"minecraft:iron_shovel"},{"id":"minecraft:golden_shovel"},{"id":"minecraft:diamond_shovel"},{"id":"minecraft:netherite_shovel"},{"id":"minecraft:wooden_hoe"},{"id":"minecraft:stone_hoe"},{"id":"minecraft:iron_hoe"},{"id":"minecraft:golden_hoe"},{"id":"minecraft:diamond_hoe"},{"id":"minecraft:netherite_hoe"},{"id":"minecraft:bow"},{"id":"minecraft:crossbow"},{"id":"minecraft:arrow"},{"id":"minecraft:arrow","damage":6},{"id":"minecraft:arrow","damage":7},{"id":"minecraft:arrow","damage":8},{"id":"minecraft:arrow","damage":9},{"id":"minecraft:arrow","damage":10},{"id":"minecraft:arrow","damage":11},{"id":"minecraft:arrow","damage":12},{"id":"minecraft:arrow","damage":13},{"id":"minecraft:arrow","damage":14},{"id":"minecraft:arrow","damage":15},{"id":"minecraft:arrow","damage":16},{"id":"minecraft:arrow","damage":17},{"id":"minecraft:arrow","damage":18},{"id":"minecraft:arrow","damage":19},{"id":"minecraft:arrow","damage":20},{"id":"minecraft:arrow","damage":21},{"id":"minecraft:arrow","damage":22},{"id":"minecraft:arrow","damage":23},{"id":"minecraft:arrow","damage":24},{"id":"minecraft:arrow","damage":25},{"id":"minecraft:arrow","damage":26},{"id":"minecraft:arrow","damage":27},{"id":"minecraft:arrow","damage":28},{"id":"minecraft:arrow","damage":29},{"id":"minecraft:arrow","damage":30},{"id":"minecraft:arrow","damage":31},{"id":"minecraft:arrow","damage":32},{"id":"minecraft:arrow","damage":33},{"id":"minecraft:arrow","damage":34},{"id":"minecraft:arrow","damage":35},{"id":"minecraft:arrow","damage":36},{"id":"minecraft:arrow","damage":37},{"id":"minecraft:arrow","damage":38},{"id":"minecraft:arrow","damage":39},{"id":"minecraft:arrow","damage":40},{"id":"minecraft:arrow","damage":41},{"id":"minecraft:arrow","damage":42},{"id":"minecraft:arrow","damage":43},{"id":"minecraft:shield"},{"id":"minecraft:cooked_chicken"},{"id":"minecraft:cooked_porkchop"},{"id":"minecraft:cooked_beef"},{"id":"minecraft:cooked_mutton"},{"id":"minecraft:cooked_rabbit"},{"id":"minecraft:cooked_cod"},{"id":"minecraft:cooked_salmon"},{"id":"minecraft:bread"},{"id":"minecraft:mushroom_stew"},{"id":"minecraft:beetroot_soup"},{"id":"minecraft:rabbit_stew"},{"id":"minecraft:baked_potato"},{"id":"minecraft:cookie"},{"id":"minecraft:pumpkin_pie"},{"id":"minecraft:cake"},{"id":"minecraft:dried_kelp"},{"id":"minecraft:fishing_rod"},{"id":"minecraft:carrot_on_a_stick"},{"id":"minecraft:warped_fungus_on_a_stick"},{"id":"minecraft:snowball"},{"id":"minecraft:shears"},{"id":"minecraft:flint_and_steel"},{"id":"minecraft:lead"},{"id":"minecraft:clock"},{"id":"minecraft:compass"},{"id":"minecraft:recovery_compass"},{"id":"minecraft:goat_horn"},{"id":"minecraft:goat_horn","damage":1},{"id":"minecraft:goat_horn","damage":2},{"id":"minecraft:goat_horn","damage":3},{"id":"minecraft:goat_horn","damage":4},{"id":"minecraft:goat_horn","damage":5},{"id":"minecraft:goat_horn","damage":6},{"id":"minecraft:goat_horn","damage":7},{"id":"minecraft:empty_map"},{"id":"minecraft:empty_map","damage":2},{"id":"minecraft:saddle"},{"id":"minecraft:leather_horse_armor"},{"id":"minecraft:iron_horse_armor"},{"id":"minecraft:golden_horse_armor"},{"id":"minecraft:diamond_horse_armor"},{"id":"minecraft:trident"},{"id":"minecraft:turtle_helmet"},{"id":"minecraft:elytra"},{"id":"minecraft:totem_of_undying"},{"id":"minecraft:glass_bottle"},{"id":"minecraft:experience_bottle"},{"id":"minecraft:potion"},{"id":"minecraft:potion","damage":1},{"id":"minecraft:potion","damage":2},{"id":"minecraft:potion","damage":3},{"id":"minecraft:potion","damage":4},{"id":"minecraft:potion","damage":5},{"id":"minecraft:potion","damage":6},{"id":"minecraft:potion","damage":7},{"id":"minecraft:potion","damage":8},{"id":"minecraft:potion","damage":9},{"id":"minecraft:potion","damage":10},{"id":"minecraft:potion","damage":11},{"id":"minecraft:potion","damage":12},{"id":"minecraft:potion","damage":13},{"id":"minecraft:potion","damage":14},{"id":"minecraft:potion","damage":15},{"id":"minecraft:potion","damage":16},{"id":"minecraft:potion","damage":17},{"id":"minecraft:potion","damage":18},{"id":"minecraft:potion","damage":19},{"id":"minecraft:potion","damage":20},{"id":"minecraft:potion","damage":21},{"id":"minecraft:potion","damage":22},{"id":"minecraft:potion","damage":23},{"id":"minecraft:potion","damage":24},{"id":"minecraft:potion","damage":25},{"id":"minecraft:potion","damage":26},{"id":"minecraft:potion","damage":27},{"id":"minecraft:potion","damage":28},{"id":"minecraft:potion","damage":29},{"id":"minecraft:potion","damage":30},{"id":"minecraft:potion","damage":31},{"id":"minecraft:potion","damage":32},{"id":"minecraft:potion","damage":33},{"id":"minecraft:potion","damage":34},{"id":"minecraft:potion","damage":35},{"id":"minecraft:potion","damage":36},{"id":"minecraft:potion","damage":37},{"id":"minecraft:potion","damage":38},{"id":"minecraft:potion","damage":39},{"id":"minecraft:potion","damage":40},{"id":"minecraft:potion","damage":41},{"id":"minecraft:potion","damage":42},{"id":"minecraft:splash_potion"},{"id":"minecraft:splash_potion","damage":1},{"id":"minecraft:splash_potion","damage":2},{"id":"minecraft:splash_potion","damage":3},{"id":"minecraft:splash_potion","damage":4},{"id":"minecraft:splash_potion","damage":5},{"id":"minecraft:splash_potion","damage":6},{"id":"minecraft:splash_potion","damage":7},{"id":"minecraft:splash_potion","damage":8},{"id":"minecraft:splash_potion","damage":9},{"id":"minecraft:splash_potion","damage":10},{"id":"minecraft:splash_potion","damage":11},{"id":"minecraft:splash_potion","damage":12},{"id":"minecraft:splash_potion","damage":13},{"id":"minecraft:splash_potion","damage":14},{"id":"minecraft:splash_potion","damage":15},{"id":"minecraft:splash_potion","damage":16},{"id":"minecraft:splash_potion","damage":17},{"id":"minecraft:splash_potion","damage":18},{"id":"minecraft:splash_potion","damage":19},{"id":"minecraft:splash_potion","damage":20},{"id":"minecraft:splash_potion","damage":21},{"id":"minecraft:splash_potion","damage":22},{"id":"minecraft:splash_potion","damage":23},{"id":"minecraft:splash_potion","damage":24},{"id":"minecraft:splash_potion","damage":25},{"id":"minecraft:splash_potion","damage":26},{"id":"minecraft:splash_potion","damage":27},{"id":"minecraft:splash_potion","damage":28},{"id":"minecraft:splash_potion","damage":29},{"id":"minecraft:splash_potion","damage":30},{"id":"minecraft:splash_potion","damage":31},{"id":"minecraft:splash_potion","damage":32},{"id":"minecraft:splash_potion","damage":33},{"id":"minecraft:splash_potion","damage":34},{"id":"minecraft:splash_potion","damage":35},{"id":"minecraft:splash_potion","damage":36},{"id":"minecraft:splash_potion","damage":37},{"id":"minecraft:splash_potion","damage":38},{"id":"minecraft:splash_potion","damage":39},{"id":"minecraft:splash_potion","damage":40},{"id":"minecraft:splash_potion","damage":41},{"id":"minecraft:splash_potion","damage":42},{"id":"minecraft:lingering_potion"},{"id":"minecraft:lingering_potion","damage":1},{"id":"minecraft:lingering_potion","damage":2},{"id":"minecraft:lingering_potion","damage":3},{"id":"minecraft:lingering_potion","damage":4},{"id":"minecraft:lingering_potion","damage":5},{"id":"minecraft:lingering_potion","damage":6},{"id":"minecraft:lingering_potion","damage":7},{"id":"minecraft:lingering_potion","damage":8},{"id":"minecraft:lingering_potion","damage":9},{"id":"minecraft:lingering_potion","damage":10},{"id":"minecraft:lingering_potion","damage":11},{"id":"minecraft:lingering_potion","damage":12},{"id":"minecraft:lingering_potion","damage":13},{"id":"minecraft:lingering_potion","damage":14},{"id":"minecraft:lingering_potion","damage":15},{"id":"minecraft:lingering_potion","damage":16},{"id":"minecraft:lingering_potion","damage":17},{"id":"minecraft:lingering_potion","damage":18},{"id":"minecraft:lingering_potion","damage":19},{"id":"minecraft:lingering_potion","damage":20},{"id":"minecraft:lingering_potion","damage":21},{"id":"minecraft:lingering_potion","damage":22},{"id":"minecraft:lingering_potion","damage":23},{"id":"minecraft:lingering_potion","damage":24},{"id":"minecraft:lingering_potion","damage":25},{"id":"minecraft:lingering_potion","damage":26},{"id":"minecraft:lingering_potion","damage":27},{"id":"minecraft:lingering_potion","damage":28},{"id":"minecraft:lingering_potion","damage":29},{"id":"minecraft:lingering_potion","damage":30},{"id":"minecraft:lingering_potion","damage":31},{"id":"minecraft:lingering_potion","damage":32},{"id":"minecraft:lingering_potion","damage":33},{"id":"minecraft:lingering_potion","damage":34},{"id":"minecraft:lingering_potion","damage":35},{"id":"minecraft:lingering_potion","damage":36},{"id":"minecraft:lingering_potion","damage":37},{"id":"minecraft:lingering_potion","damage":38},{"id":"minecraft:lingering_potion","damage":39},{"id":"minecraft:lingering_potion","damage":40},{"id":"minecraft:lingering_potion","damage":41},{"id":"minecraft:lingering_potion","damage":42},{"id":"minecraft:spyglass"},{"id":"minecraft:brush"},{"id":"minecraft:stick"},{"id":"minecraft:bed"},{"id":"minecraft:bed","damage":8},{"id":"minecraft:bed","damage":7},{"id":"minecraft:bed","damage":15},{"id":"minecraft:bed","damage":12},{"id":"minecraft:bed","damage":14},{"id":"minecraft:bed","damage":1},{"id":"minecraft:bed","damage":4},{"id":"minecraft:bed","damage":5},{"id":"minecraft:bed","damage":13},{"id":"minecraft:bed","damage":9},{"id":"minecraft:bed","damage":3},{"id":"minecraft:bed","damage":11},{"id":"minecraft:bed","damage":10},{"id":"minecraft:bed","damage":2},{"id":"minecraft:bed","damage":6},{"id":"minecraft:torch","blockRuntimeId":2167},{"id":"minecraft:soul_torch","blockRuntimeId":7953},{"id":"minecraft:sea_pickle","blockRuntimeId":10095},{"id":"minecraft:lantern","blockRuntimeId":12299},{"id":"minecraft:soul_lantern","blockRuntimeId":9566},{"id":"minecraft:candle","blockRuntimeId":13093},{"id":"minecraft:white_candle","blockRuntimeId":9092},{"id":"minecraft:orange_candle","blockRuntimeId":1112},{"id":"minecraft:magenta_candle","blockRuntimeId":1172},{"id":"minecraft:light_blue_candle","blockRuntimeId":7428},{"id":"minecraft:yellow_candle","blockRuntimeId":11340},{"id":"minecraft:lime_candle","blockRuntimeId":11516},{"id":"minecraft:pink_candle","blockRuntimeId":13059},{"id":"minecraft:gray_candle","blockRuntimeId":2399},{"id":"minecraft:light_gray_candle","blockRuntimeId":11369},{"id":"minecraft:cyan_candle","blockRuntimeId":13432},{"id":"minecraft:purple_candle","blockRuntimeId":12262},{"id":"minecraft:blue_candle","blockRuntimeId":2},{"id":"minecraft:brown_candle","blockRuntimeId":10532},{"id":"minecraft:green_candle","blockRuntimeId":1959},{"id":"minecraft:red_candle","blockRuntimeId":7990},{"id":"minecraft:black_candle","blockRuntimeId":589},{"id":"minecraft:crafting_table","blockRuntimeId":10094},{"id":"minecraft:cartography_table","blockRuntimeId":14100},{"id":"minecraft:fletching_table","blockRuntimeId":10037},{"id":"minecraft:smithing_table","blockRuntimeId":6121},{"id":"minecraft:beehive","blockRuntimeId":11271},{"id":"minecraft:suspicious_sand","blockRuntimeId":2598},{"id":"minecraft:suspicious_gravel","blockRuntimeId":8075},{"id":"minecraft:campfire"},{"id":"minecraft:soul_campfire"},{"id":"minecraft:furnace","blockRuntimeId":13596},{"id":"minecraft:blast_furnace","blockRuntimeId":13268},{"id":"minecraft:smoker","blockRuntimeId":1773},{"id":"minecraft:respawn_anchor","blockRuntimeId":1953},{"id":"minecraft:brewing_stand"},{"id":"minecraft:anvil","blockRuntimeId":11844},{"id":"minecraft:anvil","blockRuntimeId":11848},{"id":"minecraft:anvil","blockRuntimeId":11852},{"id":"minecraft:grindstone","blockRuntimeId":13818},{"id":"minecraft:enchanting_table","blockRuntimeId":11930},{"id":"minecraft:bookshelf","blockRuntimeId":11882},{"id":"minecraft:chiseled_bookshelf","blockRuntimeId":781},{"id":"minecraft:lectern","blockRuntimeId":12156},{"id":"minecraft:cauldron"},{"id":"minecraft:composter","blockRuntimeId":9198},{"id":"minecraft:chest","blockRuntimeId":12376},{"id":"minecraft:trapped_chest","blockRuntimeId":9401},{"id":"minecraft:ender_chest","blockRuntimeId":7218},{"id":"minecraft:barrel","blockRuntimeId":7375},{"id":"minecraft:undyed_shulker_box","blockRuntimeId":6073},{"id":"minecraft:white_shulker_box","blockRuntimeId":1109},{"id":"minecraft:light_gray_shulker_box","blockRuntimeId":10566},{"id":"minecraft:gray_shulker_box","blockRuntimeId":9128},{"id":"minecraft:black_shulker_box","blockRuntimeId":11159},{"id":"minecraft:brown_shulker_box","blockRuntimeId":12095},{"id":"minecraft:red_shulker_box","blockRuntimeId":7283},{"id":"minecraft:orange_shulker_box","blockRuntimeId":11368},{"id":"minecraft:yellow_shulker_box","blockRuntimeId":123},{"id":"minecraft:lime_shulker_box","blockRuntimeId":1046},{"id":"minecraft:green_shulker_box","blockRuntimeId":11685},{"id":"minecraft:cyan_shulker_box","blockRuntimeId":12249},{"id":"minecraft:light_blue_shulker_box","blockRuntimeId":12183},{"id":"minecraft:blue_shulker_box","blockRuntimeId":11417},{"id":"minecraft:purple_shulker_box","blockRuntimeId":13067},{"id":"minecraft:magenta_shulker_box","blockRuntimeId":736},{"id":"minecraft:pink_shulker_box","blockRuntimeId":7226},{"id":"minecraft:armor_stand"},{"id":"minecraft:noteblock","blockRuntimeId":1093},{"id":"minecraft:jukebox","blockRuntimeId":8629},{"id":"minecraft:music_disc_13"},{"id":"minecraft:music_disc_cat"},{"id":"minecraft:music_disc_blocks"},{"id":"minecraft:music_disc_chirp"},{"id":"minecraft:music_disc_far"},{"id":"minecraft:music_disc_mall"},{"id":"minecraft:music_disc_mellohi"},{"id":"minecraft:music_disc_stal"},{"id":"minecraft:music_disc_strad"},{"id":"minecraft:music_disc_ward"},{"id":"minecraft:music_disc_11"},{"id":"minecraft:music_disc_wait"},{"id":"minecraft:music_disc_otherside"},{"id":"minecraft:music_disc_5"},{"id":"minecraft:music_disc_pigstep"},{"id":"minecraft:music_disc_relic"},{"id":"minecraft:disc_fragment_5"},{"id":"minecraft:glowstone_dust"},{"id":"minecraft:glowstone","blockRuntimeId":6669},{"id":"minecraft:redstone_lamp","blockRuntimeId":679},{"id":"minecraft:sea_lantern","blockRuntimeId":13243},{"id":"minecraft:oak_sign"},{"id":"minecraft:spruce_sign"},{"id":"minecraft:birch_sign"},{"id":"minecraft:jungle_sign"},{"id":"minecraft:acacia_sign"},{"id":"minecraft:dark_oak_sign"},{"id":"minecraft:mangrove_sign"},{"id":"minecraft:cherry_sign"},{"id":"minecraft:bamboo_sign"},{"id":"minecraft:crimson_sign"},{"id":"minecraft:warped_sign"},{"id":"minecraft:oak_hanging_sign"},{"id":"minecraft:spruce_hanging_sign"},{"id":"minecraft:birch_hanging_sign"},{"id":"minecraft:jungle_hanging_sign"},{"id":"minecraft:acacia_hanging_sign"},{"id":"minecraft:dark_oak_hanging_sign"},{"id":"minecraft:mangrove_hanging_sign"},{"id":"minecraft:cherry_hanging_sign"},{"id":"minecraft:bamboo_hanging_sign"},{"id":"minecraft:crimson_hanging_sign"},{"id":"minecraft:warped_hanging_sign"},{"id":"minecraft:painting"},{"id":"minecraft:frame"},{"id":"minecraft:glow_frame"},{"id":"minecraft:honey_bottle"},{"id":"minecraft:flower_pot"},{"id":"minecraft:bowl"},{"id":"minecraft:bucket"},{"id":"minecraft:milk_bucket"},{"id":"minecraft:water_bucket"},{"id":"minecraft:lava_bucket"},{"id":"minecraft:cod_bucket"},{"id":"minecraft:salmon_bucket"},{"id":"minecraft:tropical_fish_bucket"},{"id":"minecraft:pufferfish_bucket"},{"id":"minecraft:powder_snow_bucket"},{"id":"minecraft:axolotl_bucket"},{"id":"minecraft:tadpole_bucket"},{"id":"minecraft:skull","damage":3},{"id":"minecraft:skull","damage":2},{"id":"minecraft:skull","damage":4},{"id":"minecraft:skull","damage":5},{"id":"minecraft:skull"},{"id":"minecraft:skull","damage":1},{"id":"minecraft:skull","damage":6},{"id":"minecraft:beacon","blockRuntimeId":563},{"id":"minecraft:bell","blockRuntimeId":12124},{"id":"minecraft:conduit","blockRuntimeId":7029},{"id":"minecraft:stonecutter_block","blockRuntimeId":13275},{"id":"minecraft:end_portal_frame","blockRuntimeId":11207},{"id":"minecraft:coal"},{"id":"minecraft:charcoal"},{"id":"minecraft:diamond"},{"id":"minecraft:iron_nugget"},{"id":"minecraft:raw_iron"},{"id":"minecraft:raw_gold"},{"id":"minecraft:raw_copper"},{"id":"minecraft:copper_ingot"},{"id":"minecraft:iron_ingot"},{"id":"minecraft:netherite_scrap"},{"id":"minecraft:netherite_ingot"},{"id":"minecraft:gold_nugget"},{"id":"minecraft:gold_ingot"},{"id":"minecraft:emerald"},{"id":"minecraft:quartz"},{"id":"minecraft:clay_ball"},{"id":"minecraft:brick"},{"id":"minecraft:netherbrick"},{"id":"minecraft:prismarine_shard"},{"id":"minecraft:amethyst_shard"},{"id":"minecraft:prismarine_crystals"},{"id":"minecraft:nautilus_shell"},{"id":"minecraft:heart_of_the_sea"},{"id":"minecraft:turtle_scute"},{"id":"minecraft:phantom_membrane"},{"id":"minecraft:string"},{"id":"minecraft:feather"},{"id":"minecraft:flint"},{"id":"minecraft:gunpowder"},{"id":"minecraft:leather"},{"id":"minecraft:rabbit_hide"},{"id":"minecraft:rabbit_foot"},{"id":"minecraft:fire_charge"},{"id":"minecraft:blaze_rod"},{"id":"minecraft:blaze_powder"},{"id":"minecraft:magma_cream"},{"id":"minecraft:fermented_spider_eye"},{"id":"minecraft:echo_shard"},{"id":"minecraft:dragon_breath"},{"id":"minecraft:shulker_shell"},{"id":"minecraft:ghast_tear"},{"id":"minecraft:slime_ball"},{"id":"minecraft:ender_pearl"},{"id":"minecraft:ender_eye"},{"id":"minecraft:nether_star"},{"id":"minecraft:end_rod","blockRuntimeId":10548},{"id":"minecraft:lightning_rod","blockRuntimeId":2622},{"id":"minecraft:end_crystal"},{"id":"minecraft:paper"},{"id":"minecraft:book"},{"id":"minecraft:writable_book"},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAMAAAA="},{"id":"minecraft:oak_boat"},{"id":"minecraft:spruce_boat"},{"id":"minecraft:birch_boat"},{"id":"minecraft:jungle_boat"},{"id":"minecraft:acacia_boat"},{"id":"minecraft:dark_oak_boat"},{"id":"minecraft:mangrove_boat"},{"id":"minecraft:cherry_boat"},{"id":"minecraft:bamboo_raft"},{"id":"minecraft:oak_chest_boat"},{"id":"minecraft:spruce_chest_boat"},{"id":"minecraft:birch_chest_boat"},{"id":"minecraft:jungle_chest_boat"},{"id":"minecraft:acacia_chest_boat"},{"id":"minecraft:dark_oak_chest_boat"},{"id":"minecraft:mangrove_chest_boat"},{"id":"minecraft:cherry_chest_boat"},{"id":"minecraft:bamboo_chest_raft"},{"id":"minecraft:rail","blockRuntimeId":6705},{"id":"minecraft:golden_rail","blockRuntimeId":9109},{"id":"minecraft:detector_rail","blockRuntimeId":6918},{"id":"minecraft:activator_rail","blockRuntimeId":1054},{"id":"minecraft:minecart"},{"id":"minecraft:chest_minecart"},{"id":"minecraft:hopper_minecart"},{"id":"minecraft:tnt_minecart"},{"id":"minecraft:redstone"},{"id":"minecraft:redstone_block","blockRuntimeId":6179},{"id":"minecraft:redstone_torch","blockRuntimeId":5507},{"id":"minecraft:lever","blockRuntimeId":11701},{"id":"minecraft:wooden_button","blockRuntimeId":11540},{"id":"minecraft:spruce_button","blockRuntimeId":7160},{"id":"minecraft:birch_button","blockRuntimeId":13509},{"id":"minecraft:jungle_button","blockRuntimeId":128},{"id":"minecraft:acacia_button","blockRuntimeId":12906},{"id":"minecraft:dark_oak_button","blockRuntimeId":102},{"id":"minecraft:mangrove_button","blockRuntimeId":12286},{"id":"minecraft:cherry_button","blockRuntimeId":7504},{"id":"minecraft:bamboo_button","blockRuntimeId":11662},{"id":"minecraft:stone_button","blockRuntimeId":1353},{"id":"minecraft:crimson_button","blockRuntimeId":7287},{"id":"minecraft:warped_button","blockRuntimeId":12924},{"id":"minecraft:polished_blackstone_button","blockRuntimeId":13533},{"id":"minecraft:tripwire_hook","blockRuntimeId":10619},{"id":"minecraft:wooden_pressure_plate","blockRuntimeId":13843},{"id":"minecraft:spruce_pressure_plate","blockRuntimeId":6161},{"id":"minecraft:birch_pressure_plate","blockRuntimeId":5940},{"id":"minecraft:jungle_pressure_plate","blockRuntimeId":6026},{"id":"minecraft:acacia_pressure_plate","blockRuntimeId":9022},{"id":"minecraft:dark_oak_pressure_plate","blockRuntimeId":10661},{"id":"minecraft:mangrove_pressure_plate","blockRuntimeId":6652},{"id":"minecraft:cherry_pressure_plate","blockRuntimeId":154},{"id":"minecraft:bamboo_pressure_plate","blockRuntimeId":11215},{"id":"minecraft:crimson_pressure_plate","blockRuntimeId":14080},{"id":"minecraft:warped_pressure_plate","blockRuntimeId":705},{"id":"minecraft:stone_pressure_plate","blockRuntimeId":6670},{"id":"minecraft:light_weighted_pressure_plate","blockRuntimeId":6057},{"id":"minecraft:heavy_weighted_pressure_plate","blockRuntimeId":2605},{"id":"minecraft:polished_blackstone_pressure_plate","blockRuntimeId":11377},{"id":"minecraft:observer","blockRuntimeId":5495},{"id":"minecraft:daylight_detector","blockRuntimeId":6994},{"id":"minecraft:repeater"},{"id":"minecraft:comparator"},{"id":"minecraft:hopper"},{"id":"minecraft:dropper","blockRuntimeId":13075},{"id":"minecraft:dispenser","blockRuntimeId":13807},{"id":"minecraft:piston","blockRuntimeId":2381},{"id":"minecraft:sticky_piston","blockRuntimeId":7211},{"id":"minecraft:tnt","blockRuntimeId":11907},{"id":"minecraft:name_tag"},{"id":"minecraft:loom","blockRuntimeId":6613},{"id":"minecraft:banner"},{"id":"minecraft:banner","damage":8},{"id":"minecraft:banner","damage":7},{"id":"minecraft:banner","damage":15},{"id":"minecraft:banner","damage":12},{"id":"minecraft:banner","damage":14},{"id":"minecraft:banner","damage":1},{"id":"minecraft:banner","damage":4},{"id":"minecraft:banner","damage":5},{"id":"minecraft:banner","damage":13},{"id":"minecraft:banner","damage":9},{"id":"minecraft:banner","damage":3},{"id":"minecraft:banner","damage":11},{"id":"minecraft:banner","damage":10},{"id":"minecraft:banner","damage":2},{"id":"minecraft:banner","damage":6},{"id":"minecraft:banner","damage":15,"nbt_b64":"CgAAAwQAVHlwZQEAAAAA"},{"id":"minecraft:creeper_banner_pattern"},{"id":"minecraft:skull_banner_pattern"},{"id":"minecraft:flower_banner_pattern"},{"id":"minecraft:mojang_banner_pattern"},{"id":"minecraft:field_masoned_banner_pattern"},{"id":"minecraft:bordure_indented_banner_pattern"},{"id":"minecraft:piglin_banner_pattern"},{"id":"minecraft:globe_banner_pattern"},{"id":"minecraft:angler_pottery_sherd"},{"id":"minecraft:archer_pottery_sherd"},{"id":"minecraft:arms_up_pottery_sherd"},{"id":"minecraft:blade_pottery_sherd"},{"id":"minecraft:brewer_pottery_sherd"},{"id":"minecraft:burn_pottery_sherd"},{"id":"minecraft:danger_pottery_sherd"},{"id":"minecraft:explorer_pottery_sherd"},{"id":"minecraft:friend_pottery_sherd"},{"id":"minecraft:heart_pottery_sherd"},{"id":"minecraft:heartbreak_pottery_sherd"},{"id":"minecraft:howl_pottery_sherd"},{"id":"minecraft:miner_pottery_sherd"},{"id":"minecraft:mourner_pottery_sherd"},{"id":"minecraft:plenty_pottery_sherd"},{"id":"minecraft:prize_pottery_sherd"},{"id":"minecraft:sheaf_pottery_sherd"},{"id":"minecraft:shelter_pottery_sherd"},{"id":"minecraft:skull_pottery_sherd"},{"id":"minecraft:snort_pottery_sherd"},{"id":"minecraft:netherite_upgrade_smithing_template"},{"id":"minecraft:sentry_armor_trim_smithing_template"},{"id":"minecraft:vex_armor_trim_smithing_template"},{"id":"minecraft:wild_armor_trim_smithing_template"},{"id":"minecraft:coast_armor_trim_smithing_template"},{"id":"minecraft:dune_armor_trim_smithing_template"},{"id":"minecraft:wayfinder_armor_trim_smithing_template"},{"id":"minecraft:shaper_armor_trim_smithing_template"},{"id":"minecraft:raiser_armor_trim_smithing_template"},{"id":"minecraft:host_armor_trim_smithing_template"},{"id":"minecraft:ward_armor_trim_smithing_template"},{"id":"minecraft:silence_armor_trim_smithing_template"},{"id":"minecraft:tide_armor_trim_smithing_template"},{"id":"minecraft:snout_armor_trim_smithing_template"},{"id":"minecraft:rib_armor_trim_smithing_template"},{"id":"minecraft:eye_armor_trim_smithing_template"},{"id":"minecraft:spire_armor_trim_smithing_template"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_star","nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA="},{"id":"minecraft:firework_star","damage":8,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA="},{"id":"minecraft:firework_star","damage":7,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA="},{"id":"minecraft:firework_star","damage":15,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA="},{"id":"minecraft:firework_star","damage":12,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA="},{"id":"minecraft:firework_star","damage":14,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA="},{"id":"minecraft:firework_star","damage":1,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA="},{"id":"minecraft:firework_star","damage":4,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA="},{"id":"minecraft:firework_star","damage":5,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA="},{"id":"minecraft:firework_star","damage":13,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA="},{"id":"minecraft:firework_star","damage":9,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA="},{"id":"minecraft:firework_star","damage":3,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA="},{"id":"minecraft:firework_star","damage":11,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA="},{"id":"minecraft:firework_star","damage":10,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA="},{"id":"minecraft:firework_star","damage":2,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA="},{"id":"minecraft:firework_star","damage":6,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA="},{"id":"minecraft:chain"},{"id":"minecraft:target","blockRuntimeId":11539},{"id":"minecraft:decorated_pot","blockRuntimeId":11926},{"id":"minecraft:lodestone_compass"},{"id":"minecraft:wither_spawn_egg"},{"id":"minecraft:ender_dragon_spawn_egg"}]} \ No newline at end of file +{"items":[{"id":"minecraft:oak_planks","blockRuntimeId":13245},{"id":"minecraft:spruce_planks","blockRuntimeId":13607},{"id":"minecraft:birch_planks","blockRuntimeId":9112},{"id":"minecraft:jungle_planks","blockRuntimeId":11827},{"id":"minecraft:acacia_planks","blockRuntimeId":7303},{"id":"minecraft:dark_oak_planks","blockRuntimeId":5933},{"id":"minecraft:mangrove_planks","blockRuntimeId":2432},{"id":"minecraft:cherry_planks","blockRuntimeId":13475},{"id":"minecraft:bamboo_planks","blockRuntimeId":9443},{"id":"minecraft:bamboo_mosaic","blockRuntimeId":14084},{"id":"minecraft:crimson_planks","blockRuntimeId":8613},{"id":"minecraft:warped_planks","blockRuntimeId":2403},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2657},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2658},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2659},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2660},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2661},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2662},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2669},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2664},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2665},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2663},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2666},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2670},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2667},{"id":"minecraft:cobblestone_wall","blockRuntimeId":2668},{"id":"minecraft:blackstone_wall","blockRuntimeId":6715},{"id":"minecraft:polished_blackstone_wall","blockRuntimeId":11934},{"id":"minecraft:polished_blackstone_brick_wall","blockRuntimeId":2446},{"id":"minecraft:cobbled_deepslate_wall","blockRuntimeId":13888},{"id":"minecraft:deepslate_tile_wall","blockRuntimeId":8861},{"id":"minecraft:polished_deepslate_wall","blockRuntimeId":13622},{"id":"minecraft:deepslate_brick_wall","blockRuntimeId":1196},{"id":"minecraft:mud_brick_wall","blockRuntimeId":2197},{"id":"minecraft:oak_fence","blockRuntimeId":9575},{"id":"minecraft:spruce_fence","blockRuntimeId":1152},{"id":"minecraft:birch_fence","blockRuntimeId":13873},{"id":"minecraft:jungle_fence","blockRuntimeId":1145},{"id":"minecraft:acacia_fence","blockRuntimeId":13886},{"id":"minecraft:dark_oak_fence","blockRuntimeId":12348},{"id":"minecraft:mangrove_fence","blockRuntimeId":11845},{"id":"minecraft:cherry_fence","blockRuntimeId":2431},{"id":"minecraft:bamboo_fence","blockRuntimeId":1384},{"id":"minecraft:nether_brick_fence","blockRuntimeId":7099},{"id":"minecraft:crimson_fence","blockRuntimeId":13802},{"id":"minecraft:warped_fence","blockRuntimeId":10103},{"id":"minecraft:fence_gate","blockRuntimeId":88},{"id":"minecraft:spruce_fence_gate","blockRuntimeId":11795},{"id":"minecraft:birch_fence_gate","blockRuntimeId":6176},{"id":"minecraft:jungle_fence_gate","blockRuntimeId":9152},{"id":"minecraft:acacia_fence_gate","blockRuntimeId":13300},{"id":"minecraft:dark_oak_fence_gate","blockRuntimeId":6967},{"id":"minecraft:mangrove_fence_gate","blockRuntimeId":7525},{"id":"minecraft:cherry_fence_gate","blockRuntimeId":14061},{"id":"minecraft:bamboo_fence_gate","blockRuntimeId":8836},{"id":"minecraft:crimson_fence_gate","blockRuntimeId":7977},{"id":"minecraft:warped_fence_gate","blockRuntimeId":9190},{"id":"minecraft:normal_stone_stairs","blockRuntimeId":1385},{"id":"minecraft:stone_stairs","blockRuntimeId":6096},{"id":"minecraft:mossy_cobblestone_stairs","blockRuntimeId":6877},{"id":"minecraft:oak_stairs","blockRuntimeId":728},{"id":"minecraft:spruce_stairs","blockRuntimeId":143},{"id":"minecraft:birch_stairs","blockRuntimeId":12228},{"id":"minecraft:jungle_stairs","blockRuntimeId":12190},{"id":"minecraft:acacia_stairs","blockRuntimeId":11351},{"id":"minecraft:dark_oak_stairs","blockRuntimeId":8853},{"id":"minecraft:mangrove_stairs","blockRuntimeId":7483},{"id":"minecraft:cherry_stairs","blockRuntimeId":12395},{"id":"minecraft:bamboo_stairs","blockRuntimeId":2183},{"id":"minecraft:bamboo_mosaic_stairs","blockRuntimeId":11359},{"id":"minecraft:stone_brick_stairs","blockRuntimeId":2415},{"id":"minecraft:mossy_stone_brick_stairs","blockRuntimeId":10538},{"id":"minecraft:sandstone_stairs","blockRuntimeId":5966},{"id":"minecraft:smooth_sandstone_stairs","blockRuntimeId":6014},{"id":"minecraft:red_sandstone_stairs","blockRuntimeId":9137},{"id":"minecraft:smooth_red_sandstone_stairs","blockRuntimeId":9370},{"id":"minecraft:granite_stairs","blockRuntimeId":5513},{"id":"minecraft:polished_granite_stairs","blockRuntimeId":6937},{"id":"minecraft:diorite_stairs","blockRuntimeId":7242},{"id":"minecraft:polished_diorite_stairs","blockRuntimeId":11917},{"id":"minecraft:andesite_stairs","blockRuntimeId":9104},{"id":"minecraft:polished_andesite_stairs","blockRuntimeId":12258},{"id":"minecraft:brick_stairs","blockRuntimeId":11723},{"id":"minecraft:nether_brick_stairs","blockRuntimeId":118},{"id":"minecraft:red_nether_brick_stairs","blockRuntimeId":11813},{"id":"minecraft:end_brick_stairs","blockRuntimeId":11533},{"id":"minecraft:quartz_stairs","blockRuntimeId":8139},{"id":"minecraft:smooth_quartz_stairs","blockRuntimeId":13414},{"id":"minecraft:purpur_stairs","blockRuntimeId":13479},{"id":"minecraft:prismarine_stairs","blockRuntimeId":12952},{"id":"minecraft:dark_prismarine_stairs","blockRuntimeId":13128},{"id":"minecraft:prismarine_bricks_stairs","blockRuntimeId":628},{"id":"minecraft:crimson_stairs","blockRuntimeId":11426},{"id":"minecraft:warped_stairs","blockRuntimeId":6109},{"id":"minecraft:blackstone_stairs","blockRuntimeId":12247},{"id":"minecraft:polished_blackstone_stairs","blockRuntimeId":7142},{"id":"minecraft:polished_blackstone_brick_stairs","blockRuntimeId":7338},{"id":"minecraft:cut_copper_stairs","blockRuntimeId":7492},{"id":"minecraft:exposed_cut_copper_stairs","blockRuntimeId":7475},{"id":"minecraft:weathered_cut_copper_stairs","blockRuntimeId":7150},{"id":"minecraft:oxidized_cut_copper_stairs","blockRuntimeId":1107},{"id":"minecraft:waxed_cut_copper_stairs","blockRuntimeId":1155},{"id":"minecraft:waxed_exposed_cut_copper_stairs","blockRuntimeId":6686},{"id":"minecraft:waxed_weathered_cut_copper_stairs","blockRuntimeId":11334},{"id":"minecraft:waxed_oxidized_cut_copper_stairs","blockRuntimeId":10058},{"id":"minecraft:cobbled_deepslate_stairs","blockRuntimeId":568},{"id":"minecraft:deepslate_tile_stairs","blockRuntimeId":7969},{"id":"minecraft:polished_deepslate_stairs","blockRuntimeId":1043},{"id":"minecraft:deepslate_brick_stairs","blockRuntimeId":13120},{"id":"minecraft:mud_brick_stairs","blockRuntimeId":9346},{"id":"minecraft:wooden_door"},{"id":"minecraft:spruce_door"},{"id":"minecraft:birch_door"},{"id":"minecraft:jungle_door"},{"id":"minecraft:acacia_door"},{"id":"minecraft:dark_oak_door"},{"id":"minecraft:mangrove_door"},{"id":"minecraft:cherry_door"},{"id":"minecraft:bamboo_door"},{"id":"minecraft:iron_door"},{"id":"minecraft:crimson_door"},{"id":"minecraft:warped_door"},{"id":"minecraft:trapdoor","blockRuntimeId":660},{"id":"minecraft:spruce_trapdoor","blockRuntimeId":11762},{"id":"minecraft:birch_trapdoor","blockRuntimeId":11863},{"id":"minecraft:jungle_trapdoor","blockRuntimeId":9171},{"id":"minecraft:acacia_trapdoor","blockRuntimeId":9411},{"id":"minecraft:dark_oak_trapdoor","blockRuntimeId":13202},{"id":"minecraft:mangrove_trapdoor","blockRuntimeId":7346},{"id":"minecraft:cherry_trapdoor","blockRuntimeId":2377},{"id":"minecraft:bamboo_trapdoor","blockRuntimeId":9054},{"id":"minecraft:iron_trapdoor","blockRuntimeId":1072},{"id":"minecraft:crimson_trapdoor","blockRuntimeId":7183},{"id":"minecraft:warped_trapdoor","blockRuntimeId":8089},{"id":"minecraft:iron_bars","blockRuntimeId":8174},{"id":"minecraft:glass","blockRuntimeId":11331},{"id":"minecraft:white_stained_glass","blockRuntimeId":8618},{"id":"minecraft:light_gray_stained_glass","blockRuntimeId":1191},{"id":"minecraft:gray_stained_glass","blockRuntimeId":6105},{"id":"minecraft:black_stained_glass","blockRuntimeId":10583},{"id":"minecraft:brown_stained_glass","blockRuntimeId":1788},{"id":"minecraft:red_stained_glass","blockRuntimeId":9037},{"id":"minecraft:orange_stained_glass","blockRuntimeId":7413},{"id":"minecraft:yellow_stained_glass","blockRuntimeId":13293},{"id":"minecraft:lime_stained_glass","blockRuntimeId":129},{"id":"minecraft:green_stained_glass","blockRuntimeId":7098},{"id":"minecraft:cyan_stained_glass","blockRuntimeId":10582},{"id":"minecraft:light_blue_stained_glass","blockRuntimeId":9616},{"id":"minecraft:blue_stained_glass","blockRuntimeId":9580},{"id":"minecraft:purple_stained_glass","blockRuntimeId":2645},{"id":"minecraft:magenta_stained_glass","blockRuntimeId":12911},{"id":"minecraft:pink_stained_glass","blockRuntimeId":7166},{"id":"minecraft:tinted_glass","blockRuntimeId":10712},{"id":"minecraft:glass_pane","blockRuntimeId":9023},{"id":"minecraft:white_stained_glass_pane","blockRuntimeId":7414},{"id":"minecraft:light_gray_stained_glass_pane","blockRuntimeId":1193},{"id":"minecraft:gray_stained_glass_pane","blockRuntimeId":12116},{"id":"minecraft:black_stained_glass_pane","blockRuntimeId":2656},{"id":"minecraft:brown_stained_glass_pane","blockRuntimeId":740},{"id":"minecraft:red_stained_glass_pane","blockRuntimeId":12340},{"id":"minecraft:orange_stained_glass_pane","blockRuntimeId":651},{"id":"minecraft:yellow_stained_glass_pane","blockRuntimeId":564},{"id":"minecraft:lime_stained_glass_pane","blockRuntimeId":13291},{"id":"minecraft:green_stained_glass_pane","blockRuntimeId":6936},{"id":"minecraft:cyan_stained_glass_pane","blockRuntimeId":11678},{"id":"minecraft:light_blue_stained_glass_pane","blockRuntimeId":6668},{"id":"minecraft:blue_stained_glass_pane","blockRuntimeId":87},{"id":"minecraft:purple_stained_glass_pane","blockRuntimeId":8622},{"id":"minecraft:magenta_stained_glass_pane","blockRuntimeId":8173},{"id":"minecraft:pink_stained_glass_pane","blockRuntimeId":12345},{"id":"minecraft:ladder","blockRuntimeId":14090},{"id":"minecraft:scaffolding","blockRuntimeId":5950},{"id":"minecraft:stone_block_slab","blockRuntimeId":7076},{"id":"minecraft:stone_block_slab4","blockRuntimeId":9651},{"id":"minecraft:stone_block_slab","blockRuntimeId":7079},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9622},{"id":"minecraft:oak_slab","blockRuntimeId":7100},{"id":"minecraft:spruce_slab","blockRuntimeId":12245},{"id":"minecraft:birch_slab","blockRuntimeId":6609},{"id":"minecraft:jungle_slab","blockRuntimeId":6666},{"id":"minecraft:acacia_slab","blockRuntimeId":13280},{"id":"minecraft:dark_oak_slab","blockRuntimeId":1194},{"id":"minecraft:mangrove_slab","blockRuntimeId":2608},{"id":"minecraft:cherry_slab","blockRuntimeId":11368},{"id":"minecraft:bamboo_slab","blockRuntimeId":11720},{"id":"minecraft:bamboo_mosaic_slab","blockRuntimeId":4935},{"id":"minecraft:stone_block_slab","blockRuntimeId":7081},{"id":"minecraft:stone_block_slab4","blockRuntimeId":9649},{"id":"minecraft:stone_block_slab","blockRuntimeId":7077},{"id":"minecraft:stone_block_slab4","blockRuntimeId":9652},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9623},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9617},{"id":"minecraft:stone_block_slab4","blockRuntimeId":9653},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9634},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9639},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9640},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9637},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9638},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9636},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9635},{"id":"minecraft:stone_block_slab","blockRuntimeId":7080},{"id":"minecraft:stone_block_slab","blockRuntimeId":7083},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9624},{"id":"minecraft:stone_block_slab3","blockRuntimeId":9633},{"id":"minecraft:stone_block_slab","blockRuntimeId":7082},{"id":"minecraft:stone_block_slab4","blockRuntimeId":9650},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9618},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9619},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9620},{"id":"minecraft:stone_block_slab2","blockRuntimeId":9621},{"id":"minecraft:crimson_slab","blockRuntimeId":10558},{"id":"minecraft:warped_slab","blockRuntimeId":11683},{"id":"minecraft:blackstone_slab","blockRuntimeId":2393},{"id":"minecraft:polished_blackstone_slab","blockRuntimeId":11140},{"id":"minecraft:polished_blackstone_brick_slab","blockRuntimeId":6993},{"id":"minecraft:cut_copper_slab","blockRuntimeId":9025},{"id":"minecraft:exposed_cut_copper_slab","blockRuntimeId":11811},{"id":"minecraft:weathered_cut_copper_slab","blockRuntimeId":11187},{"id":"minecraft:oxidized_cut_copper_slab","blockRuntimeId":9078},{"id":"minecraft:waxed_cut_copper_slab","blockRuntimeId":13620},{"id":"minecraft:waxed_exposed_cut_copper_slab","blockRuntimeId":680},{"id":"minecraft:waxed_weathered_cut_copper_slab","blockRuntimeId":11755},{"id":"minecraft:waxed_oxidized_cut_copper_slab","blockRuntimeId":2001},{"id":"minecraft:cobbled_deepslate_slab","blockRuntimeId":13010},{"id":"minecraft:polished_deepslate_slab","blockRuntimeId":749},{"id":"minecraft:deepslate_tile_slab","blockRuntimeId":7102},{"id":"minecraft:deepslate_brick_slab","blockRuntimeId":6107},{"id":"minecraft:mud_brick_slab","blockRuntimeId":6695},{"id":"minecraft:brick_block","blockRuntimeId":8121},{"id":"minecraft:chiseled_nether_bricks","blockRuntimeId":12930},{"id":"minecraft:cracked_nether_bricks","blockRuntimeId":7418},{"id":"minecraft:quartz_bricks","blockRuntimeId":11502},{"id":"minecraft:stonebrick","blockRuntimeId":11757},{"id":"minecraft:stonebrick","blockRuntimeId":11758},{"id":"minecraft:stonebrick","blockRuntimeId":11759},{"id":"minecraft:stonebrick","blockRuntimeId":11760},{"id":"minecraft:end_bricks","blockRuntimeId":741},{"id":"minecraft:prismarine","blockRuntimeId":11236},{"id":"minecraft:polished_blackstone_bricks","blockRuntimeId":7996},{"id":"minecraft:cracked_polished_blackstone_bricks","blockRuntimeId":12877},{"id":"minecraft:gilded_blackstone","blockRuntimeId":7472},{"id":"minecraft:chiseled_polished_blackstone","blockRuntimeId":8852},{"id":"minecraft:deepslate_tiles","blockRuntimeId":7448},{"id":"minecraft:cracked_deepslate_tiles","blockRuntimeId":6954},{"id":"minecraft:deepslate_bricks","blockRuntimeId":9287},{"id":"minecraft:cracked_deepslate_bricks","blockRuntimeId":9151},{"id":"minecraft:chiseled_deepslate","blockRuntimeId":9024},{"id":"minecraft:cobblestone","blockRuntimeId":5997},{"id":"minecraft:mossy_cobblestone","blockRuntimeId":683},{"id":"minecraft:cobbled_deepslate","blockRuntimeId":11884},{"id":"minecraft:smooth_stone","blockRuntimeId":7449},{"id":"minecraft:sandstone","blockRuntimeId":6041},{"id":"minecraft:sandstone","blockRuntimeId":6042},{"id":"minecraft:sandstone","blockRuntimeId":6043},{"id":"minecraft:sandstone","blockRuntimeId":6044},{"id":"minecraft:red_sandstone","blockRuntimeId":11790},{"id":"minecraft:red_sandstone","blockRuntimeId":11791},{"id":"minecraft:red_sandstone","blockRuntimeId":11792},{"id":"minecraft:red_sandstone","blockRuntimeId":11793},{"id":"minecraft:coal_block","blockRuntimeId":9188},{"id":"minecraft:dried_kelp_block","blockRuntimeId":13784},{"id":"minecraft:gold_block","blockRuntimeId":784},{"id":"minecraft:iron_block","blockRuntimeId":14089},{"id":"minecraft:copper_block","blockRuntimeId":7967},{"id":"minecraft:exposed_copper","blockRuntimeId":1361},{"id":"minecraft:weathered_copper","blockRuntimeId":14053},{"id":"minecraft:oxidized_copper","blockRuntimeId":5931},{"id":"minecraft:waxed_copper","blockRuntimeId":13454},{"id":"minecraft:waxed_exposed_copper","blockRuntimeId":1981},{"id":"minecraft:waxed_weathered_copper","blockRuntimeId":2000},{"id":"minecraft:waxed_oxidized_copper","blockRuntimeId":13244},{"id":"minecraft:cut_copper","blockRuntimeId":8005},{"id":"minecraft:exposed_cut_copper","blockRuntimeId":11333},{"id":"minecraft:weathered_cut_copper","blockRuntimeId":12860},{"id":"minecraft:oxidized_cut_copper","blockRuntimeId":9301},{"id":"minecraft:waxed_cut_copper","blockRuntimeId":12993},{"id":"minecraft:waxed_exposed_cut_copper","blockRuntimeId":6208},{"id":"minecraft:waxed_weathered_cut_copper","blockRuntimeId":8617},{"id":"minecraft:waxed_oxidized_cut_copper","blockRuntimeId":636},{"id":"minecraft:emerald_block","blockRuntimeId":2620},{"id":"minecraft:diamond_block","blockRuntimeId":727},{"id":"minecraft:lapis_block","blockRuntimeId":7092},{"id":"minecraft:raw_iron_block","blockRuntimeId":14086},{"id":"minecraft:raw_copper_block","blockRuntimeId":9077},{"id":"minecraft:raw_gold_block","blockRuntimeId":1117},{"id":"minecraft:quartz_block","blockRuntimeId":6084},{"id":"minecraft:quartz_block","blockRuntimeId":6086},{"id":"minecraft:quartz_block","blockRuntimeId":6085},{"id":"minecraft:quartz_block","blockRuntimeId":6087},{"id":"minecraft:prismarine","blockRuntimeId":11234},{"id":"minecraft:prismarine","blockRuntimeId":11235},{"id":"minecraft:slime","blockRuntimeId":7036},{"id":"minecraft:honey_block","blockRuntimeId":2359},{"id":"minecraft:honeycomb_block","blockRuntimeId":7337},{"id":"minecraft:hay_block","blockRuntimeId":1985},{"id":"minecraft:bone_block","blockRuntimeId":7037},{"id":"minecraft:nether_brick","blockRuntimeId":12972},{"id":"minecraft:red_nether_brick","blockRuntimeId":567},{"id":"minecraft:netherite_block","blockRuntimeId":6173},{"id":"minecraft:lodestone","blockRuntimeId":14083},{"id":"minecraft:white_wool","blockRuntimeId":9189},{"id":"minecraft:light_gray_wool","blockRuntimeId":13848},{"id":"minecraft:gray_wool","blockRuntimeId":650},{"id":"minecraft:black_wool","blockRuntimeId":1120},{"id":"minecraft:brown_wool","blockRuntimeId":704},{"id":"minecraft:red_wool","blockRuntimeId":130},{"id":"minecraft:orange_wool","blockRuntimeId":1962},{"id":"minecraft:yellow_wool","blockRuntimeId":557},{"id":"minecraft:lime_wool","blockRuntimeId":11129},{"id":"minecraft:green_wool","blockRuntimeId":6121},{"id":"minecraft:cyan_wool","blockRuntimeId":9125},{"id":"minecraft:light_blue_wool","blockRuntimeId":12346},{"id":"minecraft:blue_wool","blockRuntimeId":9302},{"id":"minecraft:purple_wool","blockRuntimeId":14088},{"id":"minecraft:magenta_wool","blockRuntimeId":2439},{"id":"minecraft:pink_wool","blockRuntimeId":6174},{"id":"minecraft:white_carpet","blockRuntimeId":12960},{"id":"minecraft:light_gray_carpet","blockRuntimeId":14087},{"id":"minecraft:gray_carpet","blockRuntimeId":653},{"id":"minecraft:black_carpet","blockRuntimeId":11168},{"id":"minecraft:brown_carpet","blockRuntimeId":2410},{"id":"minecraft:red_carpet","blockRuntimeId":13118},{"id":"minecraft:orange_carpet","blockRuntimeId":12305},{"id":"minecraft:yellow_carpet","blockRuntimeId":10581},{"id":"minecraft:lime_carpet","blockRuntimeId":11928},{"id":"minecraft:green_carpet","blockRuntimeId":6122},{"id":"minecraft:cyan_carpet","blockRuntimeId":6000},{"id":"minecraft:light_blue_carpet","blockRuntimeId":8179},{"id":"minecraft:blue_carpet","blockRuntimeId":600},{"id":"minecraft:purple_carpet","blockRuntimeId":13471},{"id":"minecraft:magenta_carpet","blockRuntimeId":687},{"id":"minecraft:pink_carpet","blockRuntimeId":13413},{"id":"minecraft:white_concrete_powder","blockRuntimeId":8564},{"id":"minecraft:light_gray_concrete_powder","blockRuntimeId":12944},{"id":"minecraft:gray_concrete_powder","blockRuntimeId":13064},{"id":"minecraft:black_concrete_powder","blockRuntimeId":1154},{"id":"minecraft:brown_concrete_powder","blockRuntimeId":10129},{"id":"minecraft:red_concrete_powder","blockRuntimeId":12943},{"id":"minecraft:orange_concrete_powder","blockRuntimeId":14050},{"id":"minecraft:yellow_concrete_powder","blockRuntimeId":13286},{"id":"minecraft:lime_concrete_powder","blockRuntimeId":13804},{"id":"minecraft:green_concrete_powder","blockRuntimeId":12242},{"id":"minecraft:cyan_concrete_powder","blockRuntimeId":5908},{"id":"minecraft:light_blue_concrete_powder","blockRuntimeId":65},{"id":"minecraft:blue_concrete_powder","blockRuntimeId":11925},{"id":"minecraft:purple_concrete_powder","blockRuntimeId":11748},{"id":"minecraft:magenta_concrete_powder","blockRuntimeId":7304},{"id":"minecraft:pink_concrete_powder","blockRuntimeId":7104},{"id":"minecraft:white_concrete","blockRuntimeId":13879},{"id":"minecraft:light_gray_concrete","blockRuntimeId":1972},{"id":"minecraft:gray_concrete","blockRuntimeId":13065},{"id":"minecraft:black_concrete","blockRuntimeId":11909},{"id":"minecraft:brown_concrete","blockRuntimeId":11367},{"id":"minecraft:red_concrete","blockRuntimeId":13412},{"id":"minecraft:orange_concrete","blockRuntimeId":11926},{"id":"minecraft:yellow_concrete","blockRuntimeId":5999},{"id":"minecraft:lime_concrete","blockRuntimeId":7468},{"id":"minecraft:green_concrete","blockRuntimeId":10555},{"id":"minecraft:cyan_concrete","blockRuntimeId":12961},{"id":"minecraft:light_blue_concrete","blockRuntimeId":13137},{"id":"minecraft:blue_concrete","blockRuntimeId":12971},{"id":"minecraft:purple_concrete","blockRuntimeId":6988},{"id":"minecraft:magenta_concrete","blockRuntimeId":7209},{"id":"minecraft:pink_concrete","blockRuntimeId":5521},{"id":"minecraft:clay","blockRuntimeId":12394},{"id":"minecraft:hardened_clay","blockRuntimeId":1393},{"id":"minecraft:white_terracotta","blockRuntimeId":8175},{"id":"minecraft:light_gray_terracotta","blockRuntimeId":1783},{"id":"minecraft:gray_terracotta","blockRuntimeId":7451},{"id":"minecraft:black_terracotta","blockRuntimeId":11255},{"id":"minecraft:brown_terracotta","blockRuntimeId":13830},{"id":"minecraft:red_terracotta","blockRuntimeId":2434},{"id":"minecraft:orange_terracotta","blockRuntimeId":13243},{"id":"minecraft:yellow_terracotta","blockRuntimeId":6996},{"id":"minecraft:lime_terracotta","blockRuntimeId":14060},{"id":"minecraft:green_terracotta","blockRuntimeId":6106},{"id":"minecraft:cyan_terracotta"},{"id":"minecraft:light_blue_terracotta","blockRuntimeId":7203},{"id":"minecraft:blue_terracotta","blockRuntimeId":6040},{"id":"minecraft:purple_terracotta","blockRuntimeId":11541},{"id":"minecraft:magenta_terracotta","blockRuntimeId":7474},{"id":"minecraft:pink_terracotta","blockRuntimeId":6949},{"id":"minecraft:white_glazed_terracotta","blockRuntimeId":9397},{"id":"minecraft:silver_glazed_terracotta","blockRuntimeId":5507},{"id":"minecraft:gray_glazed_terracotta","blockRuntimeId":14077},{"id":"minecraft:black_glazed_terracotta","blockRuntimeId":10052},{"id":"minecraft:brown_glazed_terracotta","blockRuntimeId":5909},{"id":"minecraft:red_glazed_terracotta","blockRuntimeId":6961},{"id":"minecraft:orange_glazed_terracotta","blockRuntimeId":2610},{"id":"minecraft:yellow_glazed_terracotta","blockRuntimeId":2396},{"id":"minecraft:lime_glazed_terracotta","blockRuntimeId":654},{"id":"minecraft:green_glazed_terracotta","blockRuntimeId":11821},{"id":"minecraft:cyan_glazed_terracotta","blockRuntimeId":9145},{"id":"minecraft:light_blue_glazed_terracotta","blockRuntimeId":9294},{"id":"minecraft:blue_glazed_terracotta","blockRuntimeId":9288},{"id":"minecraft:purple_glazed_terracotta","blockRuntimeId":12236},{"id":"minecraft:magenta_glazed_terracotta","blockRuntimeId":2440},{"id":"minecraft:pink_glazed_terracotta","blockRuntimeId":11749},{"id":"minecraft:purpur_block","blockRuntimeId":13428},{"id":"minecraft:purpur_block","blockRuntimeId":13430},{"id":"minecraft:packed_mud","blockRuntimeId":744},{"id":"minecraft:mud_bricks","blockRuntimeId":12100},{"id":"minecraft:nether_wart_block","blockRuntimeId":7106},{"id":"minecraft:warped_wart_block","blockRuntimeId":10563},{"id":"minecraft:shroomlight","blockRuntimeId":8835},{"id":"minecraft:crimson_nylium","blockRuntimeId":6985},{"id":"minecraft:warped_nylium","blockRuntimeId":11500},{"id":"minecraft:netherrack","blockRuntimeId":12268},{"id":"minecraft:basalt","blockRuntimeId":7199},{"id":"minecraft:polished_basalt","blockRuntimeId":29},{"id":"minecraft:smooth_basalt","blockRuntimeId":2617},{"id":"minecraft:soul_soil","blockRuntimeId":9659},{"id":"minecraft:dirt","blockRuntimeId":9578},{"id":"minecraft:dirt","blockRuntimeId":9579},{"id":"minecraft:farmland","blockRuntimeId":6697},{"id":"minecraft:grass_block","blockRuntimeId":10617},{"id":"minecraft:grass_path","blockRuntimeId":13887},{"id":"minecraft:podzol","blockRuntimeId":7966},{"id":"minecraft:mycelium","blockRuntimeId":6071},{"id":"minecraft:mud","blockRuntimeId":11886},{"id":"minecraft:stone","blockRuntimeId":1791},{"id":"minecraft:iron_ore","blockRuntimeId":8006},{"id":"minecraft:gold_ore","blockRuntimeId":2395},{"id":"minecraft:diamond_ore","blockRuntimeId":7207},{"id":"minecraft:lapis_ore","blockRuntimeId":13411},{"id":"minecraft:redstone_ore","blockRuntimeId":7095},{"id":"minecraft:coal_ore","blockRuntimeId":7093},{"id":"minecraft:copper_ore","blockRuntimeId":5932},{"id":"minecraft:emerald_ore","blockRuntimeId":13047},{"id":"minecraft:quartz_ore","blockRuntimeId":7362},{"id":"minecraft:nether_gold_ore","blockRuntimeId":32},{"id":"minecraft:ancient_debris","blockRuntimeId":11257},{"id":"minecraft:deepslate_iron_ore","blockRuntimeId":12973},{"id":"minecraft:deepslate_gold_ore","blockRuntimeId":11256},{"id":"minecraft:deepslate_diamond_ore","blockRuntimeId":13831},{"id":"minecraft:deepslate_lapis_ore","blockRuntimeId":12945},{"id":"minecraft:deepslate_redstone_ore","blockRuntimeId":11828},{"id":"minecraft:deepslate_emerald_ore","blockRuntimeId":11501},{"id":"minecraft:deepslate_coal_ore","blockRuntimeId":12859},{"id":"minecraft:deepslate_copper_ore","blockRuntimeId":117},{"id":"minecraft:gravel","blockRuntimeId":14115},{"id":"minecraft:granite","blockRuntimeId":86},{"id":"minecraft:diorite","blockRuntimeId":152},{"id":"minecraft:andesite","blockRuntimeId":1789},{"id":"minecraft:blackstone","blockRuntimeId":13299},{"id":"minecraft:deepslate","blockRuntimeId":684},{"id":"minecraft:polished_granite","blockRuntimeId":1164},{"id":"minecraft:polished_diorite","blockRuntimeId":10045},{"id":"minecraft:polished_andesite","blockRuntimeId":13249},{"id":"minecraft:polished_blackstone","blockRuntimeId":6070},{"id":"minecraft:polished_deepslate","blockRuntimeId":13476},{"id":"minecraft:sand","blockRuntimeId":6998},{"id":"minecraft:sand","blockRuntimeId":6999},{"id":"minecraft:cactus","blockRuntimeId":12208},{"id":"minecraft:oak_log","blockRuntimeId":737},{"id":"minecraft:stripped_oak_log","blockRuntimeId":13246},{"id":"minecraft:spruce_log","blockRuntimeId":7073},{"id":"minecraft:stripped_spruce_log","blockRuntimeId":11434},{"id":"minecraft:birch_log","blockRuntimeId":1792},{"id":"minecraft:stripped_birch_log","blockRuntimeId":10709},{"id":"minecraft:jungle_log","blockRuntimeId":642},{"id":"minecraft:stripped_jungle_log","blockRuntimeId":1778},{"id":"minecraft:acacia_log","blockRuntimeId":7180},{"id":"minecraft:stripped_acacia_log","blockRuntimeId":10098},{"id":"minecraft:dark_oak_log","blockRuntimeId":4937},{"id":"minecraft:stripped_dark_oak_log","blockRuntimeId":638},{"id":"minecraft:mangrove_log","blockRuntimeId":1104},{"id":"minecraft:stripped_mangrove_log","blockRuntimeId":14112},{"id":"minecraft:cherry_log","blockRuntimeId":12949},{"id":"minecraft:stripped_cherry_log","blockRuntimeId":7288},{"id":"minecraft:crimson_stem","blockRuntimeId":10552},{"id":"minecraft:stripped_crimson_stem","blockRuntimeId":12170},{"id":"minecraft:warped_stem","blockRuntimeId":11685},{"id":"minecraft:stripped_warped_stem","blockRuntimeId":13097},{"id":"minecraft:oak_wood","blockRuntimeId":8619},{"id":"minecraft:spruce_wood","blockRuntimeId":13296},{"id":"minecraft:birch_wood","blockRuntimeId":1982},{"id":"minecraft:jungle_wood","blockRuntimeId":1997},{"id":"minecraft:acacia_wood","blockRuntimeId":12113},{"id":"minecraft:dark_oak_wood","blockRuntimeId":10},{"id":"minecraft:stripped_oak_wood","blockRuntimeId":8176},{"id":"minecraft:stripped_spruce_wood","blockRuntimeId":1959},{"id":"minecraft:stripped_birch_wood","blockRuntimeId":7415},{"id":"minecraft:stripped_jungle_wood","blockRuntimeId":1099},{"id":"minecraft:stripped_acacia_wood","blockRuntimeId":724},{"id":"minecraft:stripped_dark_oak_wood","blockRuntimeId":8614},{"id":"minecraft:mangrove_wood","blockRuntimeId":6955},{"id":"minecraft:stripped_mangrove_wood","blockRuntimeId":7032},{"id":"minecraft:cherry_wood","blockRuntimeId":12385},{"id":"minecraft:stripped_cherry_wood","blockRuntimeId":8646},{"id":"minecraft:crimson_hyphae","blockRuntimeId":7139},{"id":"minecraft:stripped_crimson_hyphae","blockRuntimeId":11689},{"id":"minecraft:warped_hyphae","blockRuntimeId":10560},{"id":"minecraft:stripped_warped_hyphae","blockRuntimeId":9403},{"id":"minecraft:bamboo_block","blockRuntimeId":66},{"id":"minecraft:stripped_bamboo_block","blockRuntimeId":5976},{"id":"minecraft:oak_leaves","blockRuntimeId":2003},{"id":"minecraft:spruce_leaves","blockRuntimeId":7250},{"id":"minecraft:birch_leaves","blockRuntimeId":6945},{"id":"minecraft:jungle_leaves","blockRuntimeId":9132},{"id":"minecraft:acacia_leaves","blockRuntimeId":2652},{"id":"minecraft:dark_oak_leaves","blockRuntimeId":11189},{"id":"minecraft:mangrove_leaves","blockRuntimeId":11880},{"id":"minecraft:cherry_leaves","blockRuntimeId":10048},{"id":"minecraft:azalea_leaves","blockRuntimeId":13424},{"id":"minecraft:azalea_leaves_flowered","blockRuntimeId":11489},{"id":"minecraft:sapling","blockRuntimeId":2171},{"id":"minecraft:sapling","blockRuntimeId":2172},{"id":"minecraft:sapling","blockRuntimeId":2173},{"id":"minecraft:sapling","blockRuntimeId":2174},{"id":"minecraft:sapling","blockRuntimeId":2175},{"id":"minecraft:sapling","blockRuntimeId":2176},{"id":"minecraft:mangrove_propagule","blockRuntimeId":12198},{"id":"minecraft:cherry_sapling","blockRuntimeId":12947},{"id":"minecraft:bee_nest","blockRuntimeId":9582},{"id":"minecraft:wheat_seeds"},{"id":"minecraft:pumpkin_seeds"},{"id":"minecraft:melon_seeds"},{"id":"minecraft:beetroot_seeds"},{"id":"minecraft:torchflower_seeds"},{"id":"minecraft:pitcher_pod"},{"id":"minecraft:wheat"},{"id":"minecraft:beetroot"},{"id":"minecraft:potato"},{"id":"minecraft:poisonous_potato"},{"id":"minecraft:carrot"},{"id":"minecraft:golden_carrot"},{"id":"minecraft:apple"},{"id":"minecraft:golden_apple"},{"id":"minecraft:enchanted_golden_apple"},{"id":"minecraft:melon_block","blockRuntimeId":1153},{"id":"minecraft:melon_slice"},{"id":"minecraft:glistering_melon_slice"},{"id":"minecraft:sweet_berries"},{"id":"minecraft:glow_berries"},{"id":"minecraft:pumpkin","blockRuntimeId":7444},{"id":"minecraft:carved_pumpkin","blockRuntimeId":13075},{"id":"minecraft:lit_pumpkin","blockRuntimeId":11887},{"id":"minecraft:honeycomb"},{"id":"minecraft:tallgrass","blockRuntimeId":2413},{"id":"minecraft:double_plant","blockRuntimeId":9246},{"id":"minecraft:tallgrass","blockRuntimeId":2412},{"id":"minecraft:double_plant","blockRuntimeId":9245},{"id":"minecraft:nether_sprouts"},{"id":"minecraft:fire_coral","blockRuntimeId":1790},{"id":"minecraft:brain_coral","blockRuntimeId":1958},{"id":"minecraft:bubble_coral","blockRuntimeId":11370},{"id":"minecraft:tube_coral","blockRuntimeId":13487},{"id":"minecraft:horn_coral","blockRuntimeId":5998},{"id":"minecraft:dead_fire_coral","blockRuntimeId":11425},{"id":"minecraft:dead_brain_coral","blockRuntimeId":12858},{"id":"minecraft:dead_bubble_coral","blockRuntimeId":12946},{"id":"minecraft:dead_tube_coral","blockRuntimeId":7105},{"id":"minecraft:dead_horn_coral","blockRuntimeId":10616},{"id":"minecraft:coral_fan","blockRuntimeId":7504},{"id":"minecraft:coral_fan","blockRuntimeId":7502},{"id":"minecraft:coral_fan","blockRuntimeId":7503},{"id":"minecraft:coral_fan","blockRuntimeId":7501},{"id":"minecraft:coral_fan","blockRuntimeId":7505},{"id":"minecraft:coral_fan_dead","blockRuntimeId":79},{"id":"minecraft:coral_fan_dead","blockRuntimeId":77},{"id":"minecraft:coral_fan_dead","blockRuntimeId":78},{"id":"minecraft:coral_fan_dead","blockRuntimeId":76},{"id":"minecraft:coral_fan_dead","blockRuntimeId":80},{"id":"minecraft:crimson_roots","blockRuntimeId":13279},{"id":"minecraft:warped_roots","blockRuntimeId":7208},{"id":"minecraft:yellow_flower","blockRuntimeId":1051},{"id":"minecraft:red_flower","blockRuntimeId":6001},{"id":"minecraft:red_flower","blockRuntimeId":6002},{"id":"minecraft:red_flower","blockRuntimeId":6003},{"id":"minecraft:red_flower","blockRuntimeId":6004},{"id":"minecraft:red_flower","blockRuntimeId":6005},{"id":"minecraft:red_flower","blockRuntimeId":6006},{"id":"minecraft:red_flower","blockRuntimeId":6007},{"id":"minecraft:red_flower","blockRuntimeId":6008},{"id":"minecraft:red_flower","blockRuntimeId":6009},{"id":"minecraft:red_flower","blockRuntimeId":6010},{"id":"minecraft:red_flower","blockRuntimeId":6011},{"id":"minecraft:double_plant","blockRuntimeId":9243},{"id":"minecraft:double_plant","blockRuntimeId":9244},{"id":"minecraft:double_plant","blockRuntimeId":9247},{"id":"minecraft:double_plant","blockRuntimeId":9248},{"id":"minecraft:pitcher_plant","blockRuntimeId":6155},{"id":"minecraft:pink_petals","blockRuntimeId":7541},{"id":"minecraft:wither_rose","blockRuntimeId":11332},{"id":"minecraft:torchflower","blockRuntimeId":11209},{"id":"minecraft:white_dye"},{"id":"minecraft:light_gray_dye"},{"id":"minecraft:gray_dye"},{"id":"minecraft:black_dye"},{"id":"minecraft:brown_dye"},{"id":"minecraft:red_dye"},{"id":"minecraft:orange_dye"},{"id":"minecraft:yellow_dye"},{"id":"minecraft:lime_dye"},{"id":"minecraft:green_dye"},{"id":"minecraft:cyan_dye"},{"id":"minecraft:light_blue_dye"},{"id":"minecraft:blue_dye"},{"id":"minecraft:purple_dye"},{"id":"minecraft:magenta_dye"},{"id":"minecraft:pink_dye"},{"id":"minecraft:ink_sac"},{"id":"minecraft:glow_ink_sac"},{"id":"minecraft:cocoa_beans"},{"id":"minecraft:lapis_lazuli"},{"id":"minecraft:bone_meal"},{"id":"minecraft:vine","blockRuntimeId":2361},{"id":"minecraft:weeping_vines","blockRuntimeId":9303},{"id":"minecraft:twisting_vines","blockRuntimeId":9514},{"id":"minecraft:waterlily","blockRuntimeId":2618},{"id":"minecraft:seagrass","blockRuntimeId":677},{"id":"minecraft:kelp"},{"id":"minecraft:deadbush","blockRuntimeId":7993},{"id":"minecraft:bamboo","blockRuntimeId":6072},{"id":"minecraft:snow","blockRuntimeId":6997},{"id":"minecraft:ice","blockRuntimeId":11891},{"id":"minecraft:packed_ice","blockRuntimeId":743},{"id":"minecraft:blue_ice","blockRuntimeId":12255},{"id":"minecraft:snow_layer","blockRuntimeId":576},{"id":"minecraft:pointed_dripstone","blockRuntimeId":13113},{"id":"minecraft:dripstone_block","blockRuntimeId":2360},{"id":"minecraft:moss_carpet","blockRuntimeId":747},{"id":"minecraft:moss_block","blockRuntimeId":11747},{"id":"minecraft:dirt_with_roots","blockRuntimeId":9187},{"id":"minecraft:hanging_roots","blockRuntimeId":627},{"id":"minecraft:mangrove_roots","blockRuntimeId":11342},{"id":"minecraft:muddy_mangrove_roots","blockRuntimeId":1096},{"id":"minecraft:big_dripleaf","blockRuntimeId":10717},{"id":"minecraft:small_dripleaf_block","blockRuntimeId":7165},{"id":"minecraft:spore_blossom","blockRuntimeId":13012},{"id":"minecraft:azalea","blockRuntimeId":12099},{"id":"minecraft:flowering_azalea","blockRuntimeId":9300},{"id":"minecraft:glow_lichen","blockRuntimeId":9507},{"id":"minecraft:amethyst_block","blockRuntimeId":783},{"id":"minecraft:budding_amethyst","blockRuntimeId":12224},{"id":"minecraft:amethyst_cluster","blockRuntimeId":13614},{"id":"minecraft:large_amethyst_bud","blockRuntimeId":8044},{"id":"minecraft:medium_amethyst_bud","blockRuntimeId":7221},{"id":"minecraft:small_amethyst_bud","blockRuntimeId":1055},{"id":"minecraft:tuff","blockRuntimeId":1103},{"id":"minecraft:calcite","blockRuntimeId":637},{"id":"minecraft:chicken"},{"id":"minecraft:porkchop"},{"id":"minecraft:beef"},{"id":"minecraft:mutton"},{"id":"minecraft:rabbit"},{"id":"minecraft:cod"},{"id":"minecraft:salmon"},{"id":"minecraft:tropical_fish"},{"id":"minecraft:pufferfish"},{"id":"minecraft:brown_mushroom","blockRuntimeId":5907},{"id":"minecraft:red_mushroom","blockRuntimeId":7471},{"id":"minecraft:crimson_fungus","blockRuntimeId":13474},{"id":"minecraft:warped_fungus","blockRuntimeId":748},{"id":"minecraft:brown_mushroom_block","blockRuntimeId":13062},{"id":"minecraft:red_mushroom_block","blockRuntimeId":5993},{"id":"minecraft:brown_mushroom_block","blockRuntimeId":13063},{"id":"minecraft:brown_mushroom_block","blockRuntimeId":13048},{"id":"minecraft:egg"},{"id":"minecraft:sugar_cane"},{"id":"minecraft:sugar"},{"id":"minecraft:rotten_flesh"},{"id":"minecraft:bone"},{"id":"minecraft:web","blockRuntimeId":11916},{"id":"minecraft:spider_eye"},{"id":"minecraft:mob_spawner","blockRuntimeId":1163},{"id":"minecraft:end_portal_frame","blockRuntimeId":11210},{"id":"minecraft:monster_egg","blockRuntimeId":6930},{"id":"minecraft:monster_egg","blockRuntimeId":6931},{"id":"minecraft:monster_egg","blockRuntimeId":6932},{"id":"minecraft:monster_egg","blockRuntimeId":6933},{"id":"minecraft:monster_egg","blockRuntimeId":6934},{"id":"minecraft:monster_egg","blockRuntimeId":6935},{"id":"minecraft:infested_deepslate","blockRuntimeId":7957},{"id":"minecraft:dragon_egg","blockRuntimeId":12970},{"id":"minecraft:turtle_egg","blockRuntimeId":13805},{"id":"minecraft:sniffer_egg","blockRuntimeId":12225},{"id":"minecraft:frog_spawn","blockRuntimeId":7254},{"id":"minecraft:pearlescent_froglight","blockRuntimeId":11620},{"id":"minecraft:verdant_froglight","blockRuntimeId":11679},{"id":"minecraft:ochre_froglight","blockRuntimeId":5324},{"id":"minecraft:chicken_spawn_egg"},{"id":"minecraft:bee_spawn_egg"},{"id":"minecraft:cow_spawn_egg"},{"id":"minecraft:pig_spawn_egg"},{"id":"minecraft:sheep_spawn_egg"},{"id":"minecraft:wolf_spawn_egg"},{"id":"minecraft:polar_bear_spawn_egg"},{"id":"minecraft:ocelot_spawn_egg"},{"id":"minecraft:cat_spawn_egg"},{"id":"minecraft:mooshroom_spawn_egg"},{"id":"minecraft:bat_spawn_egg"},{"id":"minecraft:parrot_spawn_egg"},{"id":"minecraft:rabbit_spawn_egg"},{"id":"minecraft:llama_spawn_egg"},{"id":"minecraft:horse_spawn_egg"},{"id":"minecraft:donkey_spawn_egg"},{"id":"minecraft:mule_spawn_egg"},{"id":"minecraft:skeleton_horse_spawn_egg"},{"id":"minecraft:zombie_horse_spawn_egg"},{"id":"minecraft:tropical_fish_spawn_egg"},{"id":"minecraft:cod_spawn_egg"},{"id":"minecraft:pufferfish_spawn_egg"},{"id":"minecraft:salmon_spawn_egg"},{"id":"minecraft:dolphin_spawn_egg"},{"id":"minecraft:turtle_spawn_egg"},{"id":"minecraft:panda_spawn_egg"},{"id":"minecraft:fox_spawn_egg"},{"id":"minecraft:creeper_spawn_egg"},{"id":"minecraft:enderman_spawn_egg"},{"id":"minecraft:silverfish_spawn_egg"},{"id":"minecraft:skeleton_spawn_egg"},{"id":"minecraft:wither_skeleton_spawn_egg"},{"id":"minecraft:stray_spawn_egg"},{"id":"minecraft:slime_spawn_egg"},{"id":"minecraft:spider_spawn_egg"},{"id":"minecraft:zombie_spawn_egg"},{"id":"minecraft:zombie_pigman_spawn_egg"},{"id":"minecraft:husk_spawn_egg"},{"id":"minecraft:drowned_spawn_egg"},{"id":"minecraft:squid_spawn_egg"},{"id":"minecraft:glow_squid_spawn_egg"},{"id":"minecraft:cave_spider_spawn_egg"},{"id":"minecraft:witch_spawn_egg"},{"id":"minecraft:guardian_spawn_egg"},{"id":"minecraft:elder_guardian_spawn_egg"},{"id":"minecraft:endermite_spawn_egg"},{"id":"minecraft:magma_cube_spawn_egg"},{"id":"minecraft:strider_spawn_egg"},{"id":"minecraft:hoglin_spawn_egg"},{"id":"minecraft:piglin_spawn_egg"},{"id":"minecraft:zoglin_spawn_egg"},{"id":"minecraft:piglin_brute_spawn_egg"},{"id":"minecraft:goat_spawn_egg"},{"id":"minecraft:axolotl_spawn_egg"},{"id":"minecraft:warden_spawn_egg"},{"id":"minecraft:allay_spawn_egg"},{"id":"minecraft:frog_spawn_egg"},{"id":"minecraft:tadpole_spawn_egg"},{"id":"minecraft:trader_llama_spawn_egg"},{"id":"minecraft:camel_spawn_egg"},{"id":"minecraft:ghast_spawn_egg"},{"id":"minecraft:blaze_spawn_egg"},{"id":"minecraft:shulker_spawn_egg"},{"id":"minecraft:vindicator_spawn_egg"},{"id":"minecraft:evoker_spawn_egg"},{"id":"minecraft:vex_spawn_egg"},{"id":"minecraft:villager_spawn_egg"},{"id":"minecraft:wandering_trader_spawn_egg"},{"id":"minecraft:zombie_villager_spawn_egg"},{"id":"minecraft:phantom_spawn_egg"},{"id":"minecraft:pillager_spawn_egg"},{"id":"minecraft:ravager_spawn_egg"},{"id":"minecraft:iron_golem_spawn_egg"},{"id":"minecraft:snow_golem_spawn_egg"},{"id":"minecraft:sniffer_spawn_egg"},{"id":"minecraft:obsidian","blockRuntimeId":1192},{"id":"minecraft:crying_obsidian","blockRuntimeId":11927},{"id":"minecraft:bedrock","blockRuntimeId":12243},{"id":"minecraft:soul_sand","blockRuntimeId":9660},{"id":"minecraft:magma","blockRuntimeId":13817},{"id":"minecraft:nether_wart"},{"id":"minecraft:end_stone","blockRuntimeId":6615},{"id":"minecraft:chorus_flower","blockRuntimeId":7391},{"id":"minecraft:chorus_plant","blockRuntimeId":9329},{"id":"minecraft:chorus_fruit"},{"id":"minecraft:popped_chorus_fruit"},{"id":"minecraft:sponge","blockRuntimeId":1380},{"id":"minecraft:sponge","blockRuntimeId":1381},{"id":"minecraft:coral_block","blockRuntimeId":9027},{"id":"minecraft:coral_block","blockRuntimeId":9028},{"id":"minecraft:coral_block","blockRuntimeId":9029},{"id":"minecraft:coral_block","blockRuntimeId":9030},{"id":"minecraft:coral_block","blockRuntimeId":9031},{"id":"minecraft:coral_block","blockRuntimeId":9032},{"id":"minecraft:coral_block","blockRuntimeId":9033},{"id":"minecraft:coral_block","blockRuntimeId":9034},{"id":"minecraft:coral_block","blockRuntimeId":9035},{"id":"minecraft:coral_block","blockRuntimeId":9036},{"id":"minecraft:sculk","blockRuntimeId":12266},{"id":"minecraft:sculk_vein","blockRuntimeId":12794},{"id":"minecraft:sculk_catalyst","blockRuntimeId":5995},{"id":"minecraft:sculk_shrieker","blockRuntimeId":646},{"id":"minecraft:sculk_sensor","blockRuntimeId":7235},{"id":"minecraft:calibrated_sculk_sensor","blockRuntimeId":10070},{"id":"minecraft:reinforced_deepslate","blockRuntimeId":10046},{"id":"minecraft:leather_helmet"},{"id":"minecraft:chainmail_helmet"},{"id":"minecraft:iron_helmet"},{"id":"minecraft:golden_helmet"},{"id":"minecraft:diamond_helmet"},{"id":"minecraft:netherite_helmet"},{"id":"minecraft:leather_chestplate"},{"id":"minecraft:chainmail_chestplate"},{"id":"minecraft:iron_chestplate"},{"id":"minecraft:golden_chestplate"},{"id":"minecraft:diamond_chestplate"},{"id":"minecraft:netherite_chestplate"},{"id":"minecraft:leather_leggings"},{"id":"minecraft:chainmail_leggings"},{"id":"minecraft:iron_leggings"},{"id":"minecraft:golden_leggings"},{"id":"minecraft:diamond_leggings"},{"id":"minecraft:netherite_leggings"},{"id":"minecraft:leather_boots"},{"id":"minecraft:chainmail_boots"},{"id":"minecraft:iron_boots"},{"id":"minecraft:golden_boots"},{"id":"minecraft:diamond_boots"},{"id":"minecraft:netherite_boots"},{"id":"minecraft:wooden_sword"},{"id":"minecraft:stone_sword"},{"id":"minecraft:iron_sword"},{"id":"minecraft:golden_sword"},{"id":"minecraft:diamond_sword"},{"id":"minecraft:netherite_sword"},{"id":"minecraft:wooden_axe"},{"id":"minecraft:stone_axe"},{"id":"minecraft:iron_axe"},{"id":"minecraft:golden_axe"},{"id":"minecraft:diamond_axe"},{"id":"minecraft:netherite_axe"},{"id":"minecraft:wooden_pickaxe"},{"id":"minecraft:stone_pickaxe"},{"id":"minecraft:iron_pickaxe"},{"id":"minecraft:golden_pickaxe"},{"id":"minecraft:diamond_pickaxe"},{"id":"minecraft:netherite_pickaxe"},{"id":"minecraft:wooden_shovel"},{"id":"minecraft:stone_shovel"},{"id":"minecraft:iron_shovel"},{"id":"minecraft:golden_shovel"},{"id":"minecraft:diamond_shovel"},{"id":"minecraft:netherite_shovel"},{"id":"minecraft:wooden_hoe"},{"id":"minecraft:stone_hoe"},{"id":"minecraft:iron_hoe"},{"id":"minecraft:golden_hoe"},{"id":"minecraft:diamond_hoe"},{"id":"minecraft:netherite_hoe"},{"id":"minecraft:bow"},{"id":"minecraft:crossbow"},{"id":"minecraft:arrow"},{"id":"minecraft:arrow","damage":6},{"id":"minecraft:arrow","damage":7},{"id":"minecraft:arrow","damage":8},{"id":"minecraft:arrow","damage":9},{"id":"minecraft:arrow","damage":10},{"id":"minecraft:arrow","damage":11},{"id":"minecraft:arrow","damage":12},{"id":"minecraft:arrow","damage":13},{"id":"minecraft:arrow","damage":14},{"id":"minecraft:arrow","damage":15},{"id":"minecraft:arrow","damage":16},{"id":"minecraft:arrow","damage":17},{"id":"minecraft:arrow","damage":18},{"id":"minecraft:arrow","damage":19},{"id":"minecraft:arrow","damage":20},{"id":"minecraft:arrow","damage":21},{"id":"minecraft:arrow","damage":22},{"id":"minecraft:arrow","damage":23},{"id":"minecraft:arrow","damage":24},{"id":"minecraft:arrow","damage":25},{"id":"minecraft:arrow","damage":26},{"id":"minecraft:arrow","damage":27},{"id":"minecraft:arrow","damage":28},{"id":"minecraft:arrow","damage":29},{"id":"minecraft:arrow","damage":30},{"id":"minecraft:arrow","damage":31},{"id":"minecraft:arrow","damage":32},{"id":"minecraft:arrow","damage":33},{"id":"minecraft:arrow","damage":34},{"id":"minecraft:arrow","damage":35},{"id":"minecraft:arrow","damage":36},{"id":"minecraft:arrow","damage":37},{"id":"minecraft:arrow","damage":38},{"id":"minecraft:arrow","damage":39},{"id":"minecraft:arrow","damage":40},{"id":"minecraft:arrow","damage":41},{"id":"minecraft:arrow","damage":42},{"id":"minecraft:arrow","damage":43},{"id":"minecraft:shield"},{"id":"minecraft:cooked_chicken"},{"id":"minecraft:cooked_porkchop"},{"id":"minecraft:cooked_beef"},{"id":"minecraft:cooked_mutton"},{"id":"minecraft:cooked_rabbit"},{"id":"minecraft:cooked_cod"},{"id":"minecraft:cooked_salmon"},{"id":"minecraft:bread"},{"id":"minecraft:mushroom_stew"},{"id":"minecraft:beetroot_soup"},{"id":"minecraft:rabbit_stew"},{"id":"minecraft:baked_potato"},{"id":"minecraft:cookie"},{"id":"minecraft:pumpkin_pie"},{"id":"minecraft:cake"},{"id":"minecraft:dried_kelp"},{"id":"minecraft:fishing_rod"},{"id":"minecraft:carrot_on_a_stick"},{"id":"minecraft:warped_fungus_on_a_stick"},{"id":"minecraft:snowball"},{"id":"minecraft:shears"},{"id":"minecraft:flint_and_steel"},{"id":"minecraft:lead"},{"id":"minecraft:clock"},{"id":"minecraft:compass"},{"id":"minecraft:recovery_compass"},{"id":"minecraft:goat_horn"},{"id":"minecraft:goat_horn","damage":1},{"id":"minecraft:goat_horn","damage":2},{"id":"minecraft:goat_horn","damage":3},{"id":"minecraft:goat_horn","damage":4},{"id":"minecraft:goat_horn","damage":5},{"id":"minecraft:goat_horn","damage":6},{"id":"minecraft:goat_horn","damage":7},{"id":"minecraft:empty_map"},{"id":"minecraft:empty_map","damage":2},{"id":"minecraft:saddle"},{"id":"minecraft:leather_horse_armor"},{"id":"minecraft:iron_horse_armor"},{"id":"minecraft:golden_horse_armor"},{"id":"minecraft:diamond_horse_armor"},{"id":"minecraft:trident"},{"id":"minecraft:turtle_helmet"},{"id":"minecraft:elytra"},{"id":"minecraft:totem_of_undying"},{"id":"minecraft:glass_bottle"},{"id":"minecraft:experience_bottle"},{"id":"minecraft:potion"},{"id":"minecraft:potion","damage":1},{"id":"minecraft:potion","damage":2},{"id":"minecraft:potion","damage":3},{"id":"minecraft:potion","damage":4},{"id":"minecraft:potion","damage":5},{"id":"minecraft:potion","damage":6},{"id":"minecraft:potion","damage":7},{"id":"minecraft:potion","damage":8},{"id":"minecraft:potion","damage":9},{"id":"minecraft:potion","damage":10},{"id":"minecraft:potion","damage":11},{"id":"minecraft:potion","damage":12},{"id":"minecraft:potion","damage":13},{"id":"minecraft:potion","damage":14},{"id":"minecraft:potion","damage":15},{"id":"minecraft:potion","damage":16},{"id":"minecraft:potion","damage":17},{"id":"minecraft:potion","damage":18},{"id":"minecraft:potion","damage":19},{"id":"minecraft:potion","damage":20},{"id":"minecraft:potion","damage":21},{"id":"minecraft:potion","damage":22},{"id":"minecraft:potion","damage":23},{"id":"minecraft:potion","damage":24},{"id":"minecraft:potion","damage":25},{"id":"minecraft:potion","damage":26},{"id":"minecraft:potion","damage":27},{"id":"minecraft:potion","damage":28},{"id":"minecraft:potion","damage":29},{"id":"minecraft:potion","damage":30},{"id":"minecraft:potion","damage":31},{"id":"minecraft:potion","damage":32},{"id":"minecraft:potion","damage":33},{"id":"minecraft:potion","damage":34},{"id":"minecraft:potion","damage":35},{"id":"minecraft:potion","damage":36},{"id":"minecraft:potion","damage":37},{"id":"minecraft:potion","damage":38},{"id":"minecraft:potion","damage":39},{"id":"minecraft:potion","damage":40},{"id":"minecraft:potion","damage":41},{"id":"minecraft:potion","damage":42},{"id":"minecraft:splash_potion"},{"id":"minecraft:splash_potion","damage":1},{"id":"minecraft:splash_potion","damage":2},{"id":"minecraft:splash_potion","damage":3},{"id":"minecraft:splash_potion","damage":4},{"id":"minecraft:splash_potion","damage":5},{"id":"minecraft:splash_potion","damage":6},{"id":"minecraft:splash_potion","damage":7},{"id":"minecraft:splash_potion","damage":8},{"id":"minecraft:splash_potion","damage":9},{"id":"minecraft:splash_potion","damage":10},{"id":"minecraft:splash_potion","damage":11},{"id":"minecraft:splash_potion","damage":12},{"id":"minecraft:splash_potion","damage":13},{"id":"minecraft:splash_potion","damage":14},{"id":"minecraft:splash_potion","damage":15},{"id":"minecraft:splash_potion","damage":16},{"id":"minecraft:splash_potion","damage":17},{"id":"minecraft:splash_potion","damage":18},{"id":"minecraft:splash_potion","damage":19},{"id":"minecraft:splash_potion","damage":20},{"id":"minecraft:splash_potion","damage":21},{"id":"minecraft:splash_potion","damage":22},{"id":"minecraft:splash_potion","damage":23},{"id":"minecraft:splash_potion","damage":24},{"id":"minecraft:splash_potion","damage":25},{"id":"minecraft:splash_potion","damage":26},{"id":"minecraft:splash_potion","damage":27},{"id":"minecraft:splash_potion","damage":28},{"id":"minecraft:splash_potion","damage":29},{"id":"minecraft:splash_potion","damage":30},{"id":"minecraft:splash_potion","damage":31},{"id":"minecraft:splash_potion","damage":32},{"id":"minecraft:splash_potion","damage":33},{"id":"minecraft:splash_potion","damage":34},{"id":"minecraft:splash_potion","damage":35},{"id":"minecraft:splash_potion","damage":36},{"id":"minecraft:splash_potion","damage":37},{"id":"minecraft:splash_potion","damage":38},{"id":"minecraft:splash_potion","damage":39},{"id":"minecraft:splash_potion","damage":40},{"id":"minecraft:splash_potion","damage":41},{"id":"minecraft:splash_potion","damage":42},{"id":"minecraft:lingering_potion"},{"id":"minecraft:lingering_potion","damage":1},{"id":"minecraft:lingering_potion","damage":2},{"id":"minecraft:lingering_potion","damage":3},{"id":"minecraft:lingering_potion","damage":4},{"id":"minecraft:lingering_potion","damage":5},{"id":"minecraft:lingering_potion","damage":6},{"id":"minecraft:lingering_potion","damage":7},{"id":"minecraft:lingering_potion","damage":8},{"id":"minecraft:lingering_potion","damage":9},{"id":"minecraft:lingering_potion","damage":10},{"id":"minecraft:lingering_potion","damage":11},{"id":"minecraft:lingering_potion","damage":12},{"id":"minecraft:lingering_potion","damage":13},{"id":"minecraft:lingering_potion","damage":14},{"id":"minecraft:lingering_potion","damage":15},{"id":"minecraft:lingering_potion","damage":16},{"id":"minecraft:lingering_potion","damage":17},{"id":"minecraft:lingering_potion","damage":18},{"id":"minecraft:lingering_potion","damage":19},{"id":"minecraft:lingering_potion","damage":20},{"id":"minecraft:lingering_potion","damage":21},{"id":"minecraft:lingering_potion","damage":22},{"id":"minecraft:lingering_potion","damage":23},{"id":"minecraft:lingering_potion","damage":24},{"id":"minecraft:lingering_potion","damage":25},{"id":"minecraft:lingering_potion","damage":26},{"id":"minecraft:lingering_potion","damage":27},{"id":"minecraft:lingering_potion","damage":28},{"id":"minecraft:lingering_potion","damage":29},{"id":"minecraft:lingering_potion","damage":30},{"id":"minecraft:lingering_potion","damage":31},{"id":"minecraft:lingering_potion","damage":32},{"id":"minecraft:lingering_potion","damage":33},{"id":"minecraft:lingering_potion","damage":34},{"id":"minecraft:lingering_potion","damage":35},{"id":"minecraft:lingering_potion","damage":36},{"id":"minecraft:lingering_potion","damage":37},{"id":"minecraft:lingering_potion","damage":38},{"id":"minecraft:lingering_potion","damage":39},{"id":"minecraft:lingering_potion","damage":40},{"id":"minecraft:lingering_potion","damage":41},{"id":"minecraft:lingering_potion","damage":42},{"id":"minecraft:spyglass"},{"id":"minecraft:brush"},{"id":"minecraft:stick"},{"id":"minecraft:bed"},{"id":"minecraft:bed","damage":8},{"id":"minecraft:bed","damage":7},{"id":"minecraft:bed","damage":15},{"id":"minecraft:bed","damage":12},{"id":"minecraft:bed","damage":14},{"id":"minecraft:bed","damage":1},{"id":"minecraft:bed","damage":4},{"id":"minecraft:bed","damage":5},{"id":"minecraft:bed","damage":13},{"id":"minecraft:bed","damage":9},{"id":"minecraft:bed","damage":3},{"id":"minecraft:bed","damage":11},{"id":"minecraft:bed","damage":10},{"id":"minecraft:bed","damage":2},{"id":"minecraft:bed","damage":6},{"id":"minecraft:torch","blockRuntimeId":2191},{"id":"minecraft:soul_torch","blockRuntimeId":7960},{"id":"minecraft:sea_pickle","blockRuntimeId":10105},{"id":"minecraft:lantern","blockRuntimeId":12306},{"id":"minecraft:soul_lantern","blockRuntimeId":9576},{"id":"minecraft:candle","blockRuntimeId":13100},{"id":"minecraft:white_candle","blockRuntimeId":9096},{"id":"minecraft:orange_candle","blockRuntimeId":1121},{"id":"minecraft:magenta_candle","blockRuntimeId":1181},{"id":"minecraft:light_blue_candle","blockRuntimeId":7435},{"id":"minecraft:yellow_candle","blockRuntimeId":11343},{"id":"minecraft:lime_candle","blockRuntimeId":11519},{"id":"minecraft:pink_candle","blockRuntimeId":13066},{"id":"minecraft:gray_candle","blockRuntimeId":2423},{"id":"minecraft:light_gray_candle","blockRuntimeId":11372},{"id":"minecraft:cyan_candle","blockRuntimeId":13446},{"id":"minecraft:purple_candle","blockRuntimeId":12269},{"id":"minecraft:blue_candle","blockRuntimeId":2},{"id":"minecraft:brown_candle","blockRuntimeId":10530},{"id":"minecraft:green_candle","blockRuntimeId":1973},{"id":"minecraft:red_candle","blockRuntimeId":7997},{"id":"minecraft:black_candle","blockRuntimeId":592},{"id":"minecraft:crafting_table","blockRuntimeId":10104},{"id":"minecraft:cartography_table","blockRuntimeId":14116},{"id":"minecraft:fletching_table","blockRuntimeId":10047},{"id":"minecraft:smithing_table","blockRuntimeId":6117},{"id":"minecraft:beehive","blockRuntimeId":11274},{"id":"minecraft:suspicious_sand","blockRuntimeId":2622},{"id":"minecraft:suspicious_gravel","blockRuntimeId":8082},{"id":"minecraft:campfire"},{"id":"minecraft:soul_campfire"},{"id":"minecraft:furnace","blockRuntimeId":13610},{"id":"minecraft:blast_furnace","blockRuntimeId":13275},{"id":"minecraft:smoker","blockRuntimeId":1784},{"id":"minecraft:respawn_anchor","blockRuntimeId":1967},{"id":"minecraft:brewing_stand"},{"id":"minecraft:anvil","blockRuntimeId":11847},{"id":"minecraft:anvil","blockRuntimeId":11851},{"id":"minecraft:anvil","blockRuntimeId":11855},{"id":"minecraft:grindstone","blockRuntimeId":13832},{"id":"minecraft:enchanting_table","blockRuntimeId":11933},{"id":"minecraft:bookshelf","blockRuntimeId":11885},{"id":"minecraft:chiseled_bookshelf","blockRuntimeId":787},{"id":"minecraft:lectern","blockRuntimeId":12162},{"id":"minecraft:cauldron"},{"id":"minecraft:composter","blockRuntimeId":9206},{"id":"minecraft:chest","blockRuntimeId":12383},{"id":"minecraft:trapped_chest","blockRuntimeId":9409},{"id":"minecraft:ender_chest","blockRuntimeId":7218},{"id":"minecraft:barrel","blockRuntimeId":7379},{"id":"minecraft:undyed_shulker_box","blockRuntimeId":6069},{"id":"minecraft:white_shulker_box","blockRuntimeId":1118},{"id":"minecraft:light_gray_shulker_box","blockRuntimeId":10564},{"id":"minecraft:gray_shulker_box","blockRuntimeId":9136},{"id":"minecraft:black_shulker_box","blockRuntimeId":11158},{"id":"minecraft:brown_shulker_box","blockRuntimeId":12098},{"id":"minecraft:red_shulker_box","blockRuntimeId":7287},{"id":"minecraft:orange_shulker_box","blockRuntimeId":11371},{"id":"minecraft:yellow_shulker_box","blockRuntimeId":126},{"id":"minecraft:lime_shulker_box","blockRuntimeId":1052},{"id":"minecraft:green_shulker_box","blockRuntimeId":11688},{"id":"minecraft:cyan_shulker_box","blockRuntimeId":12256},{"id":"minecraft:light_blue_shulker_box","blockRuntimeId":12189},{"id":"minecraft:blue_shulker_box","blockRuntimeId":11420},{"id":"minecraft:purple_shulker_box","blockRuntimeId":13074},{"id":"minecraft:magenta_shulker_box","blockRuntimeId":742},{"id":"minecraft:pink_shulker_box","blockRuntimeId":7226},{"id":"minecraft:armor_stand"},{"id":"minecraft:noteblock","blockRuntimeId":1102},{"id":"minecraft:jukebox","blockRuntimeId":8645},{"id":"minecraft:music_disc_13"},{"id":"minecraft:music_disc_cat"},{"id":"minecraft:music_disc_blocks"},{"id":"minecraft:music_disc_chirp"},{"id":"minecraft:music_disc_far"},{"id":"minecraft:music_disc_mall"},{"id":"minecraft:music_disc_mellohi"},{"id":"minecraft:music_disc_stal"},{"id":"minecraft:music_disc_strad"},{"id":"minecraft:music_disc_ward"},{"id":"minecraft:music_disc_11"},{"id":"minecraft:music_disc_wait"},{"id":"minecraft:music_disc_otherside"},{"id":"minecraft:music_disc_5"},{"id":"minecraft:music_disc_pigstep"},{"id":"minecraft:music_disc_relic"},{"id":"minecraft:disc_fragment_5"},{"id":"minecraft:glowstone_dust"},{"id":"minecraft:glowstone","blockRuntimeId":6669},{"id":"minecraft:redstone_lamp","blockRuntimeId":682},{"id":"minecraft:sea_lantern","blockRuntimeId":13250},{"id":"minecraft:oak_sign"},{"id":"minecraft:spruce_sign"},{"id":"minecraft:birch_sign"},{"id":"minecraft:jungle_sign"},{"id":"minecraft:acacia_sign"},{"id":"minecraft:dark_oak_sign"},{"id":"minecraft:mangrove_sign"},{"id":"minecraft:cherry_sign"},{"id":"minecraft:bamboo_sign"},{"id":"minecraft:crimson_sign"},{"id":"minecraft:warped_sign"},{"id":"minecraft:oak_hanging_sign"},{"id":"minecraft:spruce_hanging_sign"},{"id":"minecraft:birch_hanging_sign"},{"id":"minecraft:jungle_hanging_sign"},{"id":"minecraft:acacia_hanging_sign"},{"id":"minecraft:dark_oak_hanging_sign"},{"id":"minecraft:mangrove_hanging_sign"},{"id":"minecraft:cherry_hanging_sign"},{"id":"minecraft:bamboo_hanging_sign"},{"id":"minecraft:crimson_hanging_sign"},{"id":"minecraft:warped_hanging_sign"},{"id":"minecraft:painting"},{"id":"minecraft:frame"},{"id":"minecraft:glow_frame"},{"id":"minecraft:honey_bottle"},{"id":"minecraft:flower_pot"},{"id":"minecraft:bowl"},{"id":"minecraft:bucket"},{"id":"minecraft:milk_bucket"},{"id":"minecraft:water_bucket"},{"id":"minecraft:lava_bucket"},{"id":"minecraft:cod_bucket"},{"id":"minecraft:salmon_bucket"},{"id":"minecraft:tropical_fish_bucket"},{"id":"minecraft:pufferfish_bucket"},{"id":"minecraft:powder_snow_bucket"},{"id":"minecraft:axolotl_bucket"},{"id":"minecraft:tadpole_bucket"},{"id":"minecraft:skull","damage":3},{"id":"minecraft:skull","damage":2},{"id":"minecraft:skull","damage":4},{"id":"minecraft:skull","damage":5},{"id":"minecraft:skull"},{"id":"minecraft:skull","damage":1},{"id":"minecraft:skull","damage":6},{"id":"minecraft:beacon","blockRuntimeId":566},{"id":"minecraft:bell","blockRuntimeId":12130},{"id":"minecraft:conduit","blockRuntimeId":7035},{"id":"minecraft:stonecutter_block","blockRuntimeId":13284},{"id":"minecraft:coal"},{"id":"minecraft:charcoal"},{"id":"minecraft:diamond"},{"id":"minecraft:iron_nugget"},{"id":"minecraft:raw_iron"},{"id":"minecraft:raw_gold"},{"id":"minecraft:raw_copper"},{"id":"minecraft:copper_ingot"},{"id":"minecraft:iron_ingot"},{"id":"minecraft:netherite_scrap"},{"id":"minecraft:netherite_ingot"},{"id":"minecraft:gold_nugget"},{"id":"minecraft:gold_ingot"},{"id":"minecraft:emerald"},{"id":"minecraft:quartz"},{"id":"minecraft:clay_ball"},{"id":"minecraft:brick"},{"id":"minecraft:netherbrick"},{"id":"minecraft:prismarine_shard"},{"id":"minecraft:amethyst_shard"},{"id":"minecraft:prismarine_crystals"},{"id":"minecraft:nautilus_shell"},{"id":"minecraft:heart_of_the_sea"},{"id":"minecraft:turtle_scute"},{"id":"minecraft:phantom_membrane"},{"id":"minecraft:string"},{"id":"minecraft:feather"},{"id":"minecraft:flint"},{"id":"minecraft:gunpowder"},{"id":"minecraft:leather"},{"id":"minecraft:rabbit_hide"},{"id":"minecraft:rabbit_foot"},{"id":"minecraft:fire_charge"},{"id":"minecraft:blaze_rod"},{"id":"minecraft:blaze_powder"},{"id":"minecraft:magma_cream"},{"id":"minecraft:fermented_spider_eye"},{"id":"minecraft:echo_shard"},{"id":"minecraft:dragon_breath"},{"id":"minecraft:shulker_shell"},{"id":"minecraft:ghast_tear"},{"id":"minecraft:slime_ball"},{"id":"minecraft:ender_pearl"},{"id":"minecraft:ender_eye"},{"id":"minecraft:nether_star"},{"id":"minecraft:end_rod","blockRuntimeId":10546},{"id":"minecraft:lightning_rod","blockRuntimeId":2646},{"id":"minecraft:end_crystal"},{"id":"minecraft:paper"},{"id":"minecraft:book"},{"id":"minecraft:writable_book"},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQAAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQBAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQCAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQDAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQEAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQFAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQGAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQHAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQIAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQJAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQKAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQLAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQMAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQNAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQOAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQPAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQQAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQRAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQSAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQTAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQUAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQVAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQWAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQXAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQYAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQZAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQaAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQbAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQcAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQdAAIDAGx2bAUAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQeAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQfAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQgAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQhAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQiAAIDAGx2bAQAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQjAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQkAAIDAGx2bAMAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAEAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAIAAAA="},{"id":"minecraft:enchanted_book","nbt_b64":"CgAACQQAZW5jaAoBAAAAAgIAaWQlAAIDAGx2bAMAAAA="},{"id":"minecraft:oak_boat"},{"id":"minecraft:spruce_boat"},{"id":"minecraft:birch_boat"},{"id":"minecraft:jungle_boat"},{"id":"minecraft:acacia_boat"},{"id":"minecraft:dark_oak_boat"},{"id":"minecraft:mangrove_boat"},{"id":"minecraft:cherry_boat"},{"id":"minecraft:bamboo_raft"},{"id":"minecraft:oak_chest_boat"},{"id":"minecraft:spruce_chest_boat"},{"id":"minecraft:birch_chest_boat"},{"id":"minecraft:jungle_chest_boat"},{"id":"minecraft:acacia_chest_boat"},{"id":"minecraft:dark_oak_chest_boat"},{"id":"minecraft:mangrove_chest_boat"},{"id":"minecraft:cherry_chest_boat"},{"id":"minecraft:bamboo_chest_raft"},{"id":"minecraft:rail","blockRuntimeId":6705},{"id":"minecraft:golden_rail","blockRuntimeId":9113},{"id":"minecraft:detector_rail","blockRuntimeId":6918},{"id":"minecraft:activator_rail","blockRuntimeId":1060},{"id":"minecraft:minecart"},{"id":"minecraft:chest_minecart"},{"id":"minecraft:hopper_minecart"},{"id":"minecraft:tnt_minecart"},{"id":"minecraft:redstone"},{"id":"minecraft:redstone_block","blockRuntimeId":6175},{"id":"minecraft:redstone_torch","blockRuntimeId":5501},{"id":"minecraft:lever","blockRuntimeId":11704},{"id":"minecraft:wooden_button","blockRuntimeId":11543},{"id":"minecraft:spruce_button","blockRuntimeId":7168},{"id":"minecraft:birch_button","blockRuntimeId":13523},{"id":"minecraft:jungle_button","blockRuntimeId":131},{"id":"minecraft:acacia_button","blockRuntimeId":12913},{"id":"minecraft:dark_oak_button","blockRuntimeId":105},{"id":"minecraft:mangrove_button","blockRuntimeId":12293},{"id":"minecraft:cherry_button","blockRuntimeId":7511},{"id":"minecraft:bamboo_button","blockRuntimeId":11665},{"id":"minecraft:stone_button","blockRuntimeId":1364},{"id":"minecraft:crimson_button","blockRuntimeId":7291},{"id":"minecraft:warped_button","blockRuntimeId":12931},{"id":"minecraft:polished_blackstone_button","blockRuntimeId":13547},{"id":"minecraft:tripwire_hook","blockRuntimeId":10618},{"id":"minecraft:wooden_pressure_plate","blockRuntimeId":13857},{"id":"minecraft:spruce_pressure_plate","blockRuntimeId":6157},{"id":"minecraft:birch_pressure_plate","blockRuntimeId":5934},{"id":"minecraft:jungle_pressure_plate","blockRuntimeId":6022},{"id":"minecraft:acacia_pressure_plate","blockRuntimeId":9038},{"id":"minecraft:dark_oak_pressure_plate","blockRuntimeId":10660},{"id":"minecraft:mangrove_pressure_plate","blockRuntimeId":6650},{"id":"minecraft:cherry_pressure_plate","blockRuntimeId":157},{"id":"minecraft:bamboo_pressure_plate","blockRuntimeId":11218},{"id":"minecraft:crimson_pressure_plate","blockRuntimeId":14096},{"id":"minecraft:warped_pressure_plate","blockRuntimeId":708},{"id":"minecraft:stone_pressure_plate","blockRuntimeId":6670},{"id":"minecraft:light_weighted_pressure_plate","blockRuntimeId":6053},{"id":"minecraft:heavy_weighted_pressure_plate","blockRuntimeId":2629},{"id":"minecraft:polished_blackstone_pressure_plate","blockRuntimeId":11380},{"id":"minecraft:observer","blockRuntimeId":5489},{"id":"minecraft:daylight_detector","blockRuntimeId":7000},{"id":"minecraft:repeater"},{"id":"minecraft:comparator"},{"id":"minecraft:hopper"},{"id":"minecraft:dropper","blockRuntimeId":13082},{"id":"minecraft:dispenser","blockRuntimeId":13821},{"id":"minecraft:piston","blockRuntimeId":2405},{"id":"minecraft:sticky_piston","blockRuntimeId":7211},{"id":"minecraft:tnt","blockRuntimeId":11910},{"id":"minecraft:name_tag"},{"id":"minecraft:loom","blockRuntimeId":6611},{"id":"minecraft:banner","nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":8,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":7,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":15,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":12,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":14,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":1,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":4,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":5,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":13,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":9,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":3,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":11,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":10,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":2,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":6,"nbt_b64":"CgAAAwQAVHlwZQAAAAAA"},{"id":"minecraft:banner","damage":15,"nbt_b64":"CgAAAwQAVHlwZQEAAAAA"},{"id":"minecraft:creeper_banner_pattern"},{"id":"minecraft:skull_banner_pattern"},{"id":"minecraft:flower_banner_pattern"},{"id":"minecraft:mojang_banner_pattern"},{"id":"minecraft:field_masoned_banner_pattern"},{"id":"minecraft:bordure_indented_banner_pattern"},{"id":"minecraft:piglin_banner_pattern"},{"id":"minecraft:globe_banner_pattern"},{"id":"minecraft:angler_pottery_sherd"},{"id":"minecraft:archer_pottery_sherd"},{"id":"minecraft:arms_up_pottery_sherd"},{"id":"minecraft:blade_pottery_sherd"},{"id":"minecraft:brewer_pottery_sherd"},{"id":"minecraft:burn_pottery_sherd"},{"id":"minecraft:danger_pottery_sherd"},{"id":"minecraft:explorer_pottery_sherd"},{"id":"minecraft:friend_pottery_sherd"},{"id":"minecraft:heart_pottery_sherd"},{"id":"minecraft:heartbreak_pottery_sherd"},{"id":"minecraft:howl_pottery_sherd"},{"id":"minecraft:miner_pottery_sherd"},{"id":"minecraft:mourner_pottery_sherd"},{"id":"minecraft:plenty_pottery_sherd"},{"id":"minecraft:prize_pottery_sherd"},{"id":"minecraft:sheaf_pottery_sherd"},{"id":"minecraft:shelter_pottery_sherd"},{"id":"minecraft:skull_pottery_sherd"},{"id":"minecraft:snort_pottery_sherd"},{"id":"minecraft:netherite_upgrade_smithing_template"},{"id":"minecraft:sentry_armor_trim_smithing_template"},{"id":"minecraft:vex_armor_trim_smithing_template"},{"id":"minecraft:wild_armor_trim_smithing_template"},{"id":"minecraft:coast_armor_trim_smithing_template"},{"id":"minecraft:dune_armor_trim_smithing_template"},{"id":"minecraft:wayfinder_armor_trim_smithing_template"},{"id":"minecraft:shaper_armor_trim_smithing_template"},{"id":"minecraft:raiser_armor_trim_smithing_template"},{"id":"minecraft:host_armor_trim_smithing_template"},{"id":"minecraft:ward_armor_trim_smithing_template"},{"id":"minecraft:silence_armor_trim_smithing_template"},{"id":"minecraft:tide_armor_trim_smithing_template"},{"id":"minecraft:snout_armor_trim_smithing_template"},{"id":"minecraft:rib_armor_trim_smithing_template"},{"id":"minecraft:eye_armor_trim_smithing_template"},{"id":"minecraft:spire_armor_trim_smithing_template"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwAAAAAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAABwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAIBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAHBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAPBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAMBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAOBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAABBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAEBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAFBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAANBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAJBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAADBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAALBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAKBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAACBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_rocket","nbt_b64":"CgAACgkARmlyZXdvcmtzCQoARXhwbG9zaW9ucwoBAAAABw0ARmlyZXdvcmtDb2xvcgEAAAAGBwwARmlyZXdvcmtGYWRlAAAAAAEPAEZpcmV3b3JrRmxpY2tlcgABDQBGaXJld29ya1RyYWlsAAEMAEZpcmV3b3JrVHlwZQAAAQYARmxpZ2h0AQAA"},{"id":"minecraft:firework_star","nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yIR0d/wA="},{"id":"minecraft:firework_star","damage":8,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yUk9H/wA="},{"id":"minecraft:firework_star","damage":7,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yl52d/wA="},{"id":"minecraft:firework_star","damage":15,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y8PDw/wA="},{"id":"minecraft:firework_star","damage":12,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9y2rM6/wA="},{"id":"minecraft:firework_star","damage":14,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yHYD5/wA="},{"id":"minecraft:firework_star","damage":1,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yJi6w/wA="},{"id":"minecraft:firework_star","damage":4,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqkQ8/wA="},{"id":"minecraft:firework_star","damage":5,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yuDKJ/wA="},{"id":"minecraft:firework_star","damage":13,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yvU7H/wA="},{"id":"minecraft:firework_star","damage":9,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yqovz/wA="},{"id":"minecraft:firework_star","damage":3,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yMlSD/wA="},{"id":"minecraft:firework_star","damage":11,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yPdj+/wA="},{"id":"minecraft:firework_star","damage":10,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yH8eA/wA="},{"id":"minecraft:firework_star","damage":2,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9yFnxe/wA="},{"id":"minecraft:firework_star","damage":6,"nbt_b64":"CgAACg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgcMAEZpcmV3b3JrRmFkZQAAAAABDwBGaXJld29ya0ZsaWNrZXIAAQ0ARmlyZXdvcmtUcmFpbAABDABGaXJld29ya1R5cGUAAAMLAGN1c3RvbUNvbG9ynJwW/wA="},{"id":"minecraft:chain"},{"id":"minecraft:target","blockRuntimeId":11542},{"id":"minecraft:decorated_pot","blockRuntimeId":11929},{"id":"minecraft:lodestone_compass"},{"id":"minecraft:wither_spawn_egg"},{"id":"minecraft:ender_dragon_spawn_egg"}]} \ No newline at end of file diff --git a/src/main/resources/item_mappings.json b/src/main/resources/item_mappings.json index c5aabe7e14f..b03663d546f 100644 --- a/src/main/resources/item_mappings.json +++ b/src/main/resources/item_mappings.json @@ -1 +1 @@ -{"minecraft:scute":{"0":"minecraft:turtle_scute"},"minecraft:stone":{"0":"minecraft:stone","1":"minecraft:granite","2":"minecraft:polished_granite","3":"minecraft:diorite","4":"minecraft:polished_diorite","5":"minecraft:andesite","6":"minecraft:polished_andesite"},"minecraft:planks":{"0":"minecraft:oak_planks","1":"minecraft:spruce_planks","2":"minecraft:birch_planks","3":"minecraft:jungle_planks","4":"minecraft:acacia_planks","5":"minecraft:dark_oak_planks"},"minecraft:stained_hardened_clay":{"0":"minecraft:white_terracotta","1":"minecraft:orange_terracotta","2":"minecraft:magenta_terracotta","3":"minecraft:light_blue_terracotta","4":"minecraft:yellow_terracotta","5":"minecraft:lime_terracotta","6":"minecraft:pink_terracotta","7":"minecraft:gray_terracotta","8":"minecraft:light_gray_terracotta","9":"minecraft:cyan_terracotta","10":"minecraft:purple_terracotta","11":"minecraft:blue_terracotta","12":"minecraft:brown_terracotta","13":"minecraft:green_terracotta","14":"minecraft:red_terracotta","15":"minecraft:black_terracotta"},"minecraft:stained_glass":{"0":"minecraft:white_stained_glass","1":"minecraft:orange_stained_glass","2":"minecraft:magenta_stained_glass","3":"minecraft:light_blue_stained_glass","4":"minecraft:yellow_stained_glass","5":"minecraft:lime_stained_glass","6":"minecraft:pink_stained_glass","7":"minecraft:gray_stained_glass","8":"minecraft:light_gray_stained_glass","9":"minecraft:cyan_stained_glass","10":"minecraft:purple_stained_glass","11":"minecraft:blue_stained_glass","12":"minecraft:brown_stained_glass","13":"minecraft:green_stained_glass","14":"minecraft:red_stained_glass","15":"minecraft:black_stained_glass"},"minecraft:stained_glass_pane":{"0":"minecraft:white_stained_glass_pane","1":"minecraft:orange_stained_glass_pane","2":"minecraft:magenta_stained_glass_pane","3":"minecraft:light_blue_stained_glass_pane","4":"minecraft:yellow_stained_glass_pane","5":"minecraft:lime_stained_glass_pane","6":"minecraft:pink_stained_glass_pane","7":"minecraft:gray_stained_glass_pane","8":"minecraft:light_gray_stained_glass_pane","9":"minecraft:cyan_stained_glass_pane","10":"minecraft:purple_stained_glass_pane","11":"minecraft:blue_stained_glass_pane","12":"minecraft:brown_stained_glass_pane","13":"minecraft:green_stained_glass_pane","14":"minecraft:red_stained_glass_pane","15":"minecraft:black_stained_glass_pane"},"minecraft:concrete_powder":{"0":"minecraft:white_concrete_powder","1":"minecraft:orange_concrete_powder","2":"minecraft:magenta_concrete_powder","3":"minecraft:light_blue_concrete_powder","4":"minecraft:yellow_concrete_powder","5":"minecraft:lime_concrete_powder","6":"minecraft:pink_concrete_powder","7":"minecraft:gray_concrete_powder","8":"minecraft:light_gray_concrete_powder","9":"minecraft:cyan_concrete_powder","10":"minecraft:purple_concrete_powder","11":"minecraft:blue_concrete_powder","12":"minecraft:brown_concrete_powder","13":"minecraft:green_concrete_powder","14":"minecraft:red_concrete_powder","15":"minecraft:black_concrete_powder"},"minecraft:concrete":{"0":"minecraft:white_concrete","1":"minecraft:orange_concrete","2":"minecraft:magenta_concrete","3":"minecraft:light_blue_concrete","4":"minecraft:yellow_concrete","5":"minecraft:lime_concrete","6":"minecraft:pink_concrete","7":"minecraft:gray_concrete","8":"minecraft:light_gray_concrete","9":"minecraft:cyan_concrete","10":"minecraft:purple_concrete","11":"minecraft:blue_concrete","12":"minecraft:brown_concrete","13":"minecraft:green_concrete","14":"minecraft:red_concrete","15":"minecraft:black_concrete"},"minecraft:shulker_box":{"0":"minecraft:white_shulker_box","1":"minecraft:orange_shulker_box","2":"minecraft:magenta_shulker_box","3":"minecraft:light_blue_shulker_box","4":"minecraft:yellow_shulker_box","5":"minecraft:lime_shulker_box","6":"minecraft:pink_shulker_box","7":"minecraft:gray_shulker_box","8":"minecraft:light_gray_shulker_box","9":"minecraft:cyan_shulker_box","10":"minecraft:purple_shulker_box","11":"minecraft:blue_shulker_box","12":"minecraft:brown_shulker_box","13":"minecraft:green_shulker_box","14":"minecraft:red_shulker_box","15":"minecraft:black_shulker_box"},"minecraft:coral":{"0":"minecraft:tube_coral","1":"minecraft:brain_coral","2":"minecraft:bubble_coral","3":"minecraft:fire_coral","4":"minecraft:horn_coral","5":"minecraft:dead_tube_coral","6":"minecraft:dead_brain_coral","7":"minecraft:dead_bubble_coral","8":"minecraft:dead_fire_coral","9":"minecraft:dead_horn_coral"},"minecraft:carpet":{"0":"minecraft:white_carpet","1":"minecraft:orange_carpet","2":"minecraft:magenta_carpet","3":"minecraft:light_blue_carpet","4":"minecraft:yellow_carpet","5":"minecraft:lime_carpet","6":"minecraft:pink_carpet","7":"minecraft:gray_carpet","8":"minecraft:light_gray_carpet","9":"minecraft:cyan_carpet","10":"minecraft:purple_carpet","11":"minecraft:blue_carpet","12":"minecraft:brown_carpet","13":"minecraft:green_carpet","14":"minecraft:red_carpet","15":"minecraft:black_carpet"},"minecraft:fence":{"0":"minecraft:oak_fence","1":"minecraft:spruce_fence","2":"minecraft:birch_fence","3":"minecraft:jungle_fence","4":"minecraft:acacia_fence","5":"minecraft:dark_oak_fence"},"minecraft:log":{"0":"minecraft:oak_log","1":"minecraft:spruce_log","2":"minecraft:birch_log","3":"minecraft:jungle_log"},"minecraft:log2":{"0":"minecraft:acacia_log","1":"minecraft:dark_oak_log"},"minecraft:wool":{"0":"minecraft:white_wool","1":"minecraft:orange_wool","2":"minecraft:magenta_wool","3":"minecraft:light_blue_wool","4":"minecraft:yellow_wool","5":"minecraft:lime_wool","6":"minecraft:pink_wool","7":"minecraft:gray_wool","8":"minecraft:light_gray_wool","9":"minecraft:cyan_wool","10":"minecraft:purple_wool","11":"minecraft:blue_wool","12":"minecraft:brown_wool","13":"minecraft:green_wool","14":"minecraft:red_wool","15":"minecraft:black_wool"},"minecraft:banner_pattern":{"0":"minecraft:creeper_banner_pattern","1":"minecraft:skull_banner_pattern","2":"minecraft:flower_banner_pattern","3":"minecraft:mojang_banner_pattern","4":"minecraft:field_masoned_banner_pattern","5":"minecraft:bordure_indented_banner_pattern","6":"minecraft:piglin_banner_pattern","7":"minecraft:globe_banner_pattern"},"minecraft:boat":{"0":"minecraft:oak_boat","1":"minecraft:spruce_boat","2":"minecraft:birch_boat","3":"minecraft:jungle_boat","4":"minecraft:acacia_boat","5":"minecraft:dark_oak_boat","6":"minecraft:mangrove_boat"},"minecraft:bucket":{"0":"minecraft:bucket","1":"minecraft:milk_bucket","2":"minecraft:cod_bucket","3":"minecraft:salmon_bucket","4":"minecraft:tropical_fish_bucket","5":"minecraft:pufferfish_bucket","8":"minecraft:water_bucket","10":"minecraft:lava_bucket","11":"minecraft:powder_snow_bucket","12":"minecraft:axolotl_bucket","13":"minecraft:tadpole_bucket"},"minecraft:coal":{"1":"minecraft:charcoal"},"minecraft:dye":{"0":"minecraft:ink_sac","1":"minecraft:red_dye","2":"minecraft:green_dye","3":"minecraft:cocoa_beans","4":"minecraft:lapis_lazuli","5":"minecraft:purple_dye","6":"minecraft:cyan_dye","7":"minecraft:light_gray_dye","8":"minecraft:gray_dye","9":"minecraft:pink_dye","10":"minecraft:lime_dye","11":"minecraft:yellow_dye","12":"minecraft:light_blue_dye","13":"minecraft:magenta_dye","14":"minecraft:orange_dye","15":"minecraft:bone_meal","16":"minecraft:black_dye","17":"minecraft:brown_dye","18":"minecraft:blue_dye","19":"minecraft:white_dye","20":"minecraft:glow_ink_sac"},"minecraft:spawn_egg":{"0":"","10":"minecraft:chicken_spawn_egg","11":"minecraft:cow_spawn_egg","12":"minecraft:pig_spawn_egg","13":"minecraft:sheep_spawn_egg","14":"minecraft:wolf_spawn_egg","15":"minecraft:villager_spawn_egg","16":"minecraft:mooshroom_spawn_egg","17":"minecraft:squid_spawn_egg","18":"minecraft:rabbit_spawn_egg","19":"minecraft:bat_spawn_egg","20":"minecraft:iron_golem_spawn_egg","21":"minecraft:snow_golem_spawn_egg","22":"minecraft:ocelot_spawn_egg","23":"minecraft:horse_spawn_egg","24":"minecraft:donkey_spawn_egg","25":"minecraft:mule_spawn_egg","26":"minecraft:skeleton_horse_spawn_egg","27":"minecraft:zombie_horse_spawn_egg","28":"minecraft:polar_bear_spawn_egg","29":"minecraft:llama_spawn_egg","30":"minecraft:parrot_spawn_egg","31":"minecraft:dolphin_spawn_egg","32":"minecraft:zombie_spawn_egg","33":"minecraft:creeper_spawn_egg","34":"minecraft:skeleton_spawn_egg","35":"minecraft:spider_spawn_egg","36":"minecraft:zombie_pigman_spawn_egg","37":"minecraft:slime_spawn_egg","38":"minecraft:enderman_spawn_egg","39":"minecraft:silverfish_spawn_egg","40":"minecraft:cave_spider_spawn_egg","41":"minecraft:ghast_spawn_egg","42":"minecraft:magma_cube_spawn_egg","43":"minecraft:blaze_spawn_egg","44":"minecraft:zombie_villager_spawn_egg","45":"minecraft:witch_spawn_egg","46":"minecraft:stray_spawn_egg","47":"minecraft:husk_spawn_egg","48":"minecraft:wither_skeleton_spawn_egg","49":"minecraft:guardian_spawn_egg","50":"minecraft:elder_guardian_spawn_egg","51":"minecraft:npc_spawn_egg","54":"minecraft:shulker_spawn_egg","55":"minecraft:endermite_spawn_egg","56":"minecraft:agent_spawn_egg","57":"minecraft:vindicator_spawn_egg","58":"minecraft:phantom_spawn_egg","59":"minecraft:ravager_spawn_egg","74":"minecraft:turtle_spawn_egg","75":"minecraft:cat_spawn_egg","104":"minecraft:evoker_spawn_egg","105":"minecraft:vex_spawn_egg","108":"minecraft:pufferfish_spawn_egg","109":"minecraft:salmon_spawn_egg","110":"minecraft:drowned_spawn_egg","111":"minecraft:tropical_fish_spawn_egg","112":"minecraft:cod_spawn_egg","113":"minecraft:panda_spawn_egg","114":"minecraft:pillager_spawn_egg","115":"minecraft:villager_spawn_egg","116":"minecraft:zombie_villager_spawn_egg","118":"minecraft:wandering_trader_spawn_egg","121":"minecraft:fox_spawn_egg","122":"minecraft:bee_spawn_egg","123":"minecraft:piglin_spawn_egg","124":"minecraft:hoglin_spawn_egg","125":"minecraft:strider_spawn_egg","126":"minecraft:zoglin_spawn_egg","127":"minecraft:piglin_brute_spawn_egg","128":"minecraft:goat_spawn_egg","129":"minecraft:glow_squid_spawn_egg","130":"minecraft:axolotl_spawn_egg","131":"minecraft:warden_spawn_egg","132":"minecraft:frog_spawn_egg","133":"minecraft:tadpole_spawn_egg","134":"minecraft:allay_spawn_egg","138":"minecraft:camel_spawn_egg"}} \ No newline at end of file +{"minecraft:double_wooden_slab":{"0":"minecraft:oak_double_slab","1":"minecraft:spruce_double_slab","2":"minecraft:birch_double_slab","3":"minecraft:jungle_double_slab","4":"minecraft:acacia_double_slab","5":"minecraft:dark_oak_double_slab"},"minecraft:wooden_slab":{"0":"minecraft:oak_slab","1":"minecraft:spruce_slab","2":"minecraft:birch_slab","3":"minecraft:jungle_slab","4":"minecraft:acacia_slab","5":"minecraft:dark_oak_slab"},"minecraft:leaves":{"0":"minecraft:oak_leaves","1":"minecraft:spruce_leaves","2":"minecraft:birch_leaves","3":"minecraft:jungle_leaves"},"minecraft:leaves2":{"0":"minecraft:acacia_leaves","1":"minecraft:dark_oak_leaves"},"minecraft:grass":{"0":"minecraft:grass_block"},"minecraft:scute":{"0":"minecraft:turtle_scute"},"minecraft:stone":{"0":"minecraft:stone","1":"minecraft:granite","2":"minecraft:polished_granite","3":"minecraft:diorite","4":"minecraft:polished_diorite","5":"minecraft:andesite","6":"minecraft:polished_andesite"},"minecraft:planks":{"0":"minecraft:oak_planks","1":"minecraft:spruce_planks","2":"minecraft:birch_planks","3":"minecraft:jungle_planks","4":"minecraft:acacia_planks","5":"minecraft:dark_oak_planks"},"minecraft:stained_hardened_clay":{"0":"minecraft:white_terracotta","1":"minecraft:orange_terracotta","2":"minecraft:magenta_terracotta","3":"minecraft:light_blue_terracotta","4":"minecraft:yellow_terracotta","5":"minecraft:lime_terracotta","6":"minecraft:pink_terracotta","7":"minecraft:gray_terracotta","8":"minecraft:light_gray_terracotta","9":"minecraft:cyan_terracotta","10":"minecraft:purple_terracotta","11":"minecraft:blue_terracotta","12":"minecraft:brown_terracotta","13":"minecraft:green_terracotta","14":"minecraft:red_terracotta","15":"minecraft:black_terracotta"},"minecraft:stained_glass":{"0":"minecraft:white_stained_glass","1":"minecraft:orange_stained_glass","2":"minecraft:magenta_stained_glass","3":"minecraft:light_blue_stained_glass","4":"minecraft:yellow_stained_glass","5":"minecraft:lime_stained_glass","6":"minecraft:pink_stained_glass","7":"minecraft:gray_stained_glass","8":"minecraft:light_gray_stained_glass","9":"minecraft:cyan_stained_glass","10":"minecraft:purple_stained_glass","11":"minecraft:blue_stained_glass","12":"minecraft:brown_stained_glass","13":"minecraft:green_stained_glass","14":"minecraft:red_stained_glass","15":"minecraft:black_stained_glass"},"minecraft:stained_glass_pane":{"0":"minecraft:white_stained_glass_pane","1":"minecraft:orange_stained_glass_pane","2":"minecraft:magenta_stained_glass_pane","3":"minecraft:light_blue_stained_glass_pane","4":"minecraft:yellow_stained_glass_pane","5":"minecraft:lime_stained_glass_pane","6":"minecraft:pink_stained_glass_pane","7":"minecraft:gray_stained_glass_pane","8":"minecraft:light_gray_stained_glass_pane","9":"minecraft:cyan_stained_glass_pane","10":"minecraft:purple_stained_glass_pane","11":"minecraft:blue_stained_glass_pane","12":"minecraft:brown_stained_glass_pane","13":"minecraft:green_stained_glass_pane","14":"minecraft:red_stained_glass_pane","15":"minecraft:black_stained_glass_pane"},"minecraft:concrete_powder":{"0":"minecraft:white_concrete_powder","1":"minecraft:orange_concrete_powder","2":"minecraft:magenta_concrete_powder","3":"minecraft:light_blue_concrete_powder","4":"minecraft:yellow_concrete_powder","5":"minecraft:lime_concrete_powder","6":"minecraft:pink_concrete_powder","7":"minecraft:gray_concrete_powder","8":"minecraft:light_gray_concrete_powder","9":"minecraft:cyan_concrete_powder","10":"minecraft:purple_concrete_powder","11":"minecraft:blue_concrete_powder","12":"minecraft:brown_concrete_powder","13":"minecraft:green_concrete_powder","14":"minecraft:red_concrete_powder","15":"minecraft:black_concrete_powder"},"minecraft:concrete":{"0":"minecraft:white_concrete","1":"minecraft:orange_concrete","2":"minecraft:magenta_concrete","3":"minecraft:light_blue_concrete","4":"minecraft:yellow_concrete","5":"minecraft:lime_concrete","6":"minecraft:pink_concrete","7":"minecraft:gray_concrete","8":"minecraft:light_gray_concrete","9":"minecraft:cyan_concrete","10":"minecraft:purple_concrete","11":"minecraft:blue_concrete","12":"minecraft:brown_concrete","13":"minecraft:green_concrete","14":"minecraft:red_concrete","15":"minecraft:black_concrete"},"minecraft:shulker_box":{"0":"minecraft:white_shulker_box","1":"minecraft:orange_shulker_box","2":"minecraft:magenta_shulker_box","3":"minecraft:light_blue_shulker_box","4":"minecraft:yellow_shulker_box","5":"minecraft:lime_shulker_box","6":"minecraft:pink_shulker_box","7":"minecraft:gray_shulker_box","8":"minecraft:light_gray_shulker_box","9":"minecraft:cyan_shulker_box","10":"minecraft:purple_shulker_box","11":"minecraft:blue_shulker_box","12":"minecraft:brown_shulker_box","13":"minecraft:green_shulker_box","14":"minecraft:red_shulker_box","15":"minecraft:black_shulker_box"},"minecraft:coral":{"0":"minecraft:tube_coral","1":"minecraft:brain_coral","2":"minecraft:bubble_coral","3":"minecraft:fire_coral","4":"minecraft:horn_coral","5":"minecraft:dead_tube_coral","6":"minecraft:dead_brain_coral","7":"minecraft:dead_bubble_coral","8":"minecraft:dead_fire_coral","9":"minecraft:dead_horn_coral"},"minecraft:carpet":{"0":"minecraft:white_carpet","1":"minecraft:orange_carpet","2":"minecraft:magenta_carpet","3":"minecraft:light_blue_carpet","4":"minecraft:yellow_carpet","5":"minecraft:lime_carpet","6":"minecraft:pink_carpet","7":"minecraft:gray_carpet","8":"minecraft:light_gray_carpet","9":"minecraft:cyan_carpet","10":"minecraft:purple_carpet","11":"minecraft:blue_carpet","12":"minecraft:brown_carpet","13":"minecraft:green_carpet","14":"minecraft:red_carpet","15":"minecraft:black_carpet"},"minecraft:fence":{"0":"minecraft:oak_fence","1":"minecraft:spruce_fence","2":"minecraft:birch_fence","3":"minecraft:jungle_fence","4":"minecraft:acacia_fence","5":"minecraft:dark_oak_fence"},"minecraft:log":{"0":"minecraft:oak_log","1":"minecraft:spruce_log","2":"minecraft:birch_log","3":"minecraft:jungle_log"},"minecraft:log2":{"0":"minecraft:acacia_log","1":"minecraft:dark_oak_log"},"minecraft:wool":{"0":"minecraft:white_wool","1":"minecraft:orange_wool","2":"minecraft:magenta_wool","3":"minecraft:light_blue_wool","4":"minecraft:yellow_wool","5":"minecraft:lime_wool","6":"minecraft:pink_wool","7":"minecraft:gray_wool","8":"minecraft:light_gray_wool","9":"minecraft:cyan_wool","10":"minecraft:purple_wool","11":"minecraft:blue_wool","12":"minecraft:brown_wool","13":"minecraft:green_wool","14":"minecraft:red_wool","15":"minecraft:black_wool"},"minecraft:banner_pattern":{"0":"minecraft:creeper_banner_pattern","1":"minecraft:skull_banner_pattern","2":"minecraft:flower_banner_pattern","3":"minecraft:mojang_banner_pattern","4":"minecraft:field_masoned_banner_pattern","5":"minecraft:bordure_indented_banner_pattern","6":"minecraft:piglin_banner_pattern","7":"minecraft:globe_banner_pattern"},"minecraft:boat":{"0":"minecraft:oak_boat","1":"minecraft:spruce_boat","2":"minecraft:birch_boat","3":"minecraft:jungle_boat","4":"minecraft:acacia_boat","5":"minecraft:dark_oak_boat","6":"minecraft:mangrove_boat"},"minecraft:bucket":{"0":"minecraft:bucket","1":"minecraft:milk_bucket","2":"minecraft:cod_bucket","3":"minecraft:salmon_bucket","4":"minecraft:tropical_fish_bucket","5":"minecraft:pufferfish_bucket","8":"minecraft:water_bucket","10":"minecraft:lava_bucket","11":"minecraft:powder_snow_bucket","12":"minecraft:axolotl_bucket","13":"minecraft:tadpole_bucket"},"minecraft:coal":{"1":"minecraft:charcoal"},"minecraft:dye":{"0":"minecraft:ink_sac","1":"minecraft:red_dye","2":"minecraft:green_dye","3":"minecraft:cocoa_beans","4":"minecraft:lapis_lazuli","5":"minecraft:purple_dye","6":"minecraft:cyan_dye","7":"minecraft:light_gray_dye","8":"minecraft:gray_dye","9":"minecraft:pink_dye","10":"minecraft:lime_dye","11":"minecraft:yellow_dye","12":"minecraft:light_blue_dye","13":"minecraft:magenta_dye","14":"minecraft:orange_dye","15":"minecraft:bone_meal","16":"minecraft:black_dye","17":"minecraft:brown_dye","18":"minecraft:blue_dye","19":"minecraft:white_dye","20":"minecraft:glow_ink_sac"},"minecraft:spawn_egg":{"0":"","10":"minecraft:chicken_spawn_egg","11":"minecraft:cow_spawn_egg","12":"minecraft:pig_spawn_egg","13":"minecraft:sheep_spawn_egg","14":"minecraft:wolf_spawn_egg","15":"minecraft:villager_spawn_egg","16":"minecraft:mooshroom_spawn_egg","17":"minecraft:squid_spawn_egg","18":"minecraft:rabbit_spawn_egg","19":"minecraft:bat_spawn_egg","20":"minecraft:iron_golem_spawn_egg","21":"minecraft:snow_golem_spawn_egg","22":"minecraft:ocelot_spawn_egg","23":"minecraft:horse_spawn_egg","24":"minecraft:donkey_spawn_egg","25":"minecraft:mule_spawn_egg","26":"minecraft:skeleton_horse_spawn_egg","27":"minecraft:zombie_horse_spawn_egg","28":"minecraft:polar_bear_spawn_egg","29":"minecraft:llama_spawn_egg","30":"minecraft:parrot_spawn_egg","31":"minecraft:dolphin_spawn_egg","32":"minecraft:zombie_spawn_egg","33":"minecraft:creeper_spawn_egg","34":"minecraft:skeleton_spawn_egg","35":"minecraft:spider_spawn_egg","36":"minecraft:zombie_pigman_spawn_egg","37":"minecraft:slime_spawn_egg","38":"minecraft:enderman_spawn_egg","39":"minecraft:silverfish_spawn_egg","40":"minecraft:cave_spider_spawn_egg","41":"minecraft:ghast_spawn_egg","42":"minecraft:magma_cube_spawn_egg","43":"minecraft:blaze_spawn_egg","44":"minecraft:zombie_villager_spawn_egg","45":"minecraft:witch_spawn_egg","46":"minecraft:stray_spawn_egg","47":"minecraft:husk_spawn_egg","48":"minecraft:wither_skeleton_spawn_egg","49":"minecraft:guardian_spawn_egg","50":"minecraft:elder_guardian_spawn_egg","51":"minecraft:npc_spawn_egg","54":"minecraft:shulker_spawn_egg","55":"minecraft:endermite_spawn_egg","56":"minecraft:agent_spawn_egg","57":"minecraft:vindicator_spawn_egg","58":"minecraft:phantom_spawn_egg","59":"minecraft:ravager_spawn_egg","74":"minecraft:turtle_spawn_egg","75":"minecraft:cat_spawn_egg","104":"minecraft:evoker_spawn_egg","105":"minecraft:vex_spawn_egg","108":"minecraft:pufferfish_spawn_egg","109":"minecraft:salmon_spawn_egg","110":"minecraft:drowned_spawn_egg","111":"minecraft:tropical_fish_spawn_egg","112":"minecraft:cod_spawn_egg","113":"minecraft:panda_spawn_egg","114":"minecraft:pillager_spawn_egg","115":"minecraft:villager_spawn_egg","116":"minecraft:zombie_villager_spawn_egg","118":"minecraft:wandering_trader_spawn_egg","121":"minecraft:fox_spawn_egg","122":"minecraft:bee_spawn_egg","123":"minecraft:piglin_spawn_egg","124":"minecraft:hoglin_spawn_egg","125":"minecraft:strider_spawn_egg","126":"minecraft:zoglin_spawn_egg","127":"minecraft:piglin_brute_spawn_egg","128":"minecraft:goat_spawn_egg","129":"minecraft:glow_squid_spawn_egg","130":"minecraft:axolotl_spawn_egg","131":"minecraft:warden_spawn_egg","132":"minecraft:frog_spawn_egg","133":"minecraft:tadpole_spawn_egg","134":"minecraft:allay_spawn_egg","138":"minecraft:camel_spawn_egg"}} \ No newline at end of file diff --git a/src/main/resources/recipes.json b/src/main/resources/recipes.json index bfbdb82ac43..55f6791a5b9 100644 --- a/src/main/resources/recipes.json +++ b/src/main/resources/recipes.json @@ -1,46651 +1 @@ -{ - "recipes": [ - { - "type": 4, - "uuid": "442d85ed-8272-4543-a6f1-418f90ded05d" - }, - { - "type": 4, - "uuid": "8b36268c-1829-483c-a0f1-993b7156a8f2" - }, - { - "type": 4, - "uuid": "602234e4-cac1-4353-8bb7-b1ebff70024b" - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 345, - "damage": -1 - } - ], - "output": [ - { - "id": 395, - "damage": 2 - } - ], - "block": "cartography_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - } - ], - "output": [ - { - "id": 395 - } - ], - "block": "cartography_table", - "priority": 0 - }, - { - "type": 4, - "uuid": "98c84b38-1085-46bd-b1ce-dd38c159e6cc" - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 5 - } - ], - "output": [ - { - "id": -162, - "damage": 3, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 5 - } - ], - "output": [ - { - "id": -171 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 5 - } - ], - "output": [ - { - "id": 139, - "damage": 4 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -273, - "damage": -1 - } - ], - "output": [ - { - "id": -282, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -273, - "damage": -1 - } - ], - "output": [ - { - "id": -276 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -273, - "damage": -1 - } - ], - "output": [ - { - "id": -277 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 45 - } - ], - "output": [ - { - "id": 44, - "damage": 4, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": -291, - "damage": -1 - } - ], - "output": [ - { - "id": -284, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 45 - } - ], - "output": [ - { - "id": 108 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": -291, - "damage": -1 - } - ], - "output": [ - { - "id": -275 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 45 - } - ], - "output": [ - { - "id": 139, - "damage": 6 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -291, - "damage": -1 - } - ], - "output": [ - { - "id": -278 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -291, - "damage": -1 - } - ], - "output": [ - { - "id": -274 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -291, - "damage": -1 - } - ], - "output": [ - { - "id": -279 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 112, - "damage": -1 - } - ], - "output": [ - { - "id": -302 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -273, - "damage": -1 - } - ], - "output": [ - { - "id": -279 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 4 - } - ], - "output": [ - { - "id": 44, - "damage": 3, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 4 - } - ], - "output": [ - { - "id": 67 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 4 - } - ], - "output": [ - { - "id": 139 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 168, - "damage": 1 - } - ], - "output": [ - { - "id": 182, - "damage": 3, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 168, - "damage": 1 - } - ], - "output": [ - { - "id": -3 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 3 - } - ], - "output": [ - { - "id": -162, - "damage": 4, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 3 - } - ], - "output": [ - { - "id": -170 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 3 - } - ], - "output": [ - { - "id": 139, - "damage": 3 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 1 - } - ], - "output": [ - { - "id": -166, - "damage": 2, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 5 - }, - { - "type": 0, - "input": [ - { - "id": 121 - } - ], - "output": [ - { - "id": -162, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 206 - } - ], - "output": [ - { - "id": -162, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 121 - } - ], - "output": [ - { - "id": -178 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 206 - } - ], - "output": [ - { - "id": -178 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 121 - } - ], - "output": [ - { - "id": 139, - "damage": 10 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 206 - } - ], - "output": [ - { - "id": 139, - "damage": 10 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 121 - } - ], - "output": [ - { - "id": 206 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 1 - } - ], - "output": [ - { - "id": -162, - "damage": 6, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 1 - } - ], - "output": [ - { - "id": -169 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 1 - } - ], - "output": [ - { - "id": 139, - "damage": 2 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 48 - } - ], - "output": [ - { - "id": 182, - "damage": 5, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 48 - } - ], - "output": [ - { - "id": -179 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 48 - } - ], - "output": [ - { - "id": 139, - "damage": 1 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 98, - "damage": 1 - } - ], - "output": [ - { - "id": -166, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 98, - "damage": 1 - } - ], - "output": [ - { - "id": -175 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 98, - "damage": 1 - } - ], - "output": [ - { - "id": 139, - "damage": 8 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 112 - } - ], - "output": [ - { - "id": 44, - "damage": 7, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 112 - } - ], - "output": [ - { - "id": 114 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 112 - } - ], - "output": [ - { - "id": 139, - "damage": 9 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 5 - } - ], - "output": [ - { - "id": 1, - "damage": 6 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 5 - } - ], - "output": [ - { - "id": -162, - "damage": 2, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 4 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 6 - } - ], - "output": [ - { - "id": -162, - "damage": 2, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 5 - } - ], - "output": [ - { - "id": -174 - } - ], - "block": "stonecutter", - "priority": 5 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 6 - } - ], - "output": [ - { - "id": -174 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": -234, - "damage": -1 - } - ], - "output": [ - { - "id": -235 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -273, - "damage": -1 - } - ], - "output": [ - { - "id": -284, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -273, - "damage": -1 - } - ], - "output": [ - { - "id": -275 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -273, - "damage": -1 - } - ], - "output": [ - { - "id": -278 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -273, - "damage": -1 - } - ], - "output": [ - { - "id": -274 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 3 - } - ], - "output": [ - { - "id": 1, - "damage": 4 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 3 - } - ], - "output": [ - { - "id": -162, - "damage": 5, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 4 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 4 - } - ], - "output": [ - { - "id": -162, - "damage": 5, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 3 - } - ], - "output": [ - { - "id": -173 - } - ], - "block": "stonecutter", - "priority": 5 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 4 - } - ], - "output": [ - { - "id": -173 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": -273, - "damage": -1 - } - ], - "output": [ - { - "id": -291 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 1 - } - ], - "output": [ - { - "id": 1, - "damage": 2 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 1 - } - ], - "output": [ - { - "id": -162, - "damage": 7, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 4 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 2 - } - ], - "output": [ - { - "id": -162, - "damage": 7, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 1 - } - ], - "output": [ - { - "id": -172 - } - ], - "block": "stonecutter", - "priority": 5 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 2 - } - ], - "output": [ - { - "id": -172 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": -273, - "damage": -1 - } - ], - "output": [ - { - "id": -293, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -273, - "damage": -1 - } - ], - "output": [ - { - "id": -292 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -273, - "damage": -1 - } - ], - "output": [ - { - "id": -297 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 168, - "damage": 2 - } - ], - "output": [ - { - "id": 182, - "damage": 4, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 168, - "damage": 2 - } - ], - "output": [ - { - "id": -4 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 168 - } - ], - "output": [ - { - "id": 182, - "damage": 2, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 168 - } - ], - "output": [ - { - "id": -2 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 168 - } - ], - "output": [ - { - "id": 139, - "damage": 11 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 201 - } - ], - "output": [ - { - "id": 201, - "damage": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 201 - } - ], - "output": [ - { - "id": 182, - "damage": 1, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 201 - } - ], - "output": [ - { - "id": 203 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 155 - } - ], - "output": [ - { - "id": -304 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 155 - } - ], - "output": [ - { - "id": 155, - "damage": 1 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 155 - } - ], - "output": [ - { - "id": 155, - "damage": 2 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 155 - } - ], - "output": [ - { - "id": 44, - "damage": 6, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 155 - } - ], - "output": [ - { - "id": 156 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "type": 0, - "input": [ - { - "id": 215 - } - ], - "output": [ - { - "id": 182, - "damage": 7, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 215 - } - ], - "output": [ - { - "id": -184 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 215 - } - ], - "output": [ - { - "id": 139, - "damage": 13 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 179 - } - ], - "output": [ - { - "id": 182, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 179 - } - ], - "output": [ - { - "id": 179, - "damage": 2 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 179 - } - ], - "output": [ - { - "id": 179, - "damage": 1 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 179 - } - ], - "output": [ - { - "id": 180 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "type": 0, - "input": [ - { - "id": 179 - } - ], - "output": [ - { - "id": 139, - "damage": 12 - } - ], - "block": "stonecutter", - "priority": 4 - }, - { - "type": 0, - "input": [ - { - "id": 24 - } - ], - "output": [ - { - "id": 44, - "damage": 1, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 24 - } - ], - "output": [ - { - "id": 24, - "damage": 2 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 24 - } - ], - "output": [ - { - "id": 24, - "damage": 1 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 24 - } - ], - "output": [ - { - "id": 128 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "type": 0, - "input": [ - { - "id": 24 - } - ], - "output": [ - { - "id": 139, - "damage": 5 - } - ], - "block": "stonecutter", - "priority": 4 - }, - { - "type": 0, - "input": [ - { - "id": -291, - "damage": -1 - } - ], - "output": [ - { - "id": -293, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -274, - "damage": -1 - } - ], - "output": [ - { - "id": -284, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -183 - } - ], - "output": [ - { - "id": 44, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 155, - "damage": 3 - } - ], - "output": [ - { - "id": -166, - "damage": 1, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 155, - "damage": 3 - } - ], - "output": [ - { - "id": -185 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 179, - "damage": 3 - } - ], - "output": [ - { - "id": -162, - "damage": 1, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 179, - "damage": 3 - } - ], - "output": [ - { - "id": -176 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 24, - "damage": 3 - } - ], - "output": [ - { - "id": 182, - "damage": 6, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 24, - "damage": 3 - } - ], - "output": [ - { - "id": -177 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": -291, - "damage": -1 - } - ], - "output": [ - { - "id": -292 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 1 - } - ], - "output": [ - { - "id": -180 - } - ], - "block": "stonecutter", - "priority": 6 - }, - { - "type": 0, - "input": [ - { - "id": 1 - } - ], - "output": [ - { - "id": 98 - } - ], - "block": "stonecutter", - "priority": 4 - }, - { - "type": 0, - "input": [ - { - "id": 1 - } - ], - "output": [ - { - "id": 98, - "damage": 3 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 1 - } - ], - "output": [ - { - "id": 44, - "damage": 5, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 98 - } - ], - "output": [ - { - "id": 44, - "damage": 5, - "count": 2 - } - ], - "block": "stonecutter", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 1 - } - ], - "output": [ - { - "id": 109 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 98 - } - ], - "output": [ - { - "id": 109 - } - ], - "block": "stonecutter", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 1 - } - ], - "output": [ - { - "id": 139, - "damage": 7 - } - ], - "block": "stonecutter", - "priority": 3 - }, - { - "type": 0, - "input": [ - { - "id": 98 - } - ], - "output": [ - { - "id": 139, - "damage": 7 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -291, - "damage": -1 - } - ], - "output": [ - { - "id": -297 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -274, - "damage": -1 - } - ], - "output": [ - { - "id": -278 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": -274, - "damage": -1 - } - ], - "output": [ - { - "id": -275 - } - ], - "block": "stonecutter", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 340, - "damage": -1 - } - }, - "output": [ - { - "id": 47 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 281, - "count": 4 - } - ], - "shape": [ - "A A", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 4 - } - }, - "output": [ - { - "id": -140 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 2 - } - }, - "output": [ - { - "id": -141 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 5 - } - }, - "output": [ - { - "id": -142 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 3 - } - }, - "output": [ - { - "id": -143 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 1 - } - }, - "output": [ - { - "id": -144 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 54 - } - ], - "shape": [ - "AAA", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20 - }, - "B": { - "id": 406, - "damage": -1 - }, - "C": { - "id": 158, - "damage": -1 - } - }, - "output": [ - { - "id": 151 - } - ], - "shape": [ - "AAA", - "BBB", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 377, - "damage": -1 - }, - { - "id": 263, - "damage": 1 - }, - { - "id": 289, - "damage": -1 - } - ], - "output": [ - { - "id": 385, - "count": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 377, - "damage": -1 - }, - { - "id": 263, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - } - ], - "output": [ - { - "id": 385, - "count": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 264, - "damage": -1 - } - }, - "output": [ - { - "id": 84 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 331, - "damage": -1 - } - }, - "output": [ - { - "id": 25 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 4 - } - }, - "output": [ - { - "id": 44, - "damage": 3, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 112 - } - }, - "output": [ - { - "id": 44, - "damage": 7, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 24 - } - }, - "output": [ - { - "id": 44, - "damage": 1, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 0 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 1 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 2 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 3 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 4 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 5 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 6 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 7 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 8 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 9 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 10 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 11 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 12 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 13 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 14 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 35, - "damage": 15 - } - }, - "output": [ - { - "id": 321 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 4 - }, - "C": { - "id": 265, - "damage": -1 - }, - "D": { - "id": 331, - "damage": -1 - } - }, - "output": [ - { - "id": 33, - "damage": 1 - } - ], - "shape": [ - "AAA", - "BCB", - "BDB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 4 - } - }, - "output": [ - { - "id": -150 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 2 - } - }, - "output": [ - { - "id": -151 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 5 - } - }, - "output": [ - { - "id": -152 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 3 - } - }, - "output": [ - { - "id": -153 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 1 - } - }, - "output": [ - { - "id": -154 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": -163 - } - }, - "output": [ - { - "id": 280 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 1 - } - }, - "output": [ - { - "id": -166, - "damage": 2, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 98, - "damage": 1 - } - }, - "output": [ - { - "id": -166, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 45 - } - }, - "output": [ - { - "id": 44, - "damage": 4, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 98 - } - }, - "output": [ - { - "id": 44, - "damage": 5, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": -183 - } - }, - "output": [ - { - "id": 44, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 263, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 50, - "count": 4 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 263, - "damage": 1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 50, - "count": 4 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 4 - } - }, - "output": [ - { - "id": -145, - "count": 2 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 2 - } - }, - "output": [ - { - "id": -146, - "count": 2 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 5 - } - }, - "output": [ - { - "id": -147, - "count": 2 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 3 - } - }, - "output": [ - { - "id": -148, - "count": 2 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 1 - } - }, - "output": [ - { - "id": -149, - "count": 2 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5 - } - }, - "output": [ - { - "id": 96, - "count": 2 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - }, - "C": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 131, - "count": 2 - } - ], - "shape": [ - "A", - "B", - "C" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5 - } - }, - "output": [ - { - "id": 143 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5 - } - }, - "output": [ - { - "id": 72 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 58 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 4 - } - }, - "output": [ - { - "id": 163, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 4, - "uuid": "d81aaeaf-e172-4440-9225-868df030d27b" - }, - { - "type": 4, - "uuid": "b5c5d105-75a2-4076-af2b-923ea2bf4bf0" - }, - { - "type": 4, - "uuid": "00000000-0000-0000-0000-000000000002" - }, - { - "type": 1, - "input": { - "A": { - "id": 35 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 1 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 10 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 11 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 12 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 13 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 14 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 15 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 2 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 3 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 4 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 5 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 6 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 7 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 8 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 9 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 35 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 1 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 10 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 11 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 12 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 13 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 14 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 15 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 2 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 3 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 4 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 5 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 6 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 7 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 8 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 9 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 1 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 10 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 11 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 12 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 13 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 14 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 15 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 2 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 3 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 4 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 5 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 6 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 7 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 8 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 9 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "shape": [ - "AAA", - "BBB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 355, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 355, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 355, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 355, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 355, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 355, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 355 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 355, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 355, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 355, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 355, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 355, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 355, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 355, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 6 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 355, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 15 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 14 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 5 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 4 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 3 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 2 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 1 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 13 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 12 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 11 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 10 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 9 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 8 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 355, - "damage": 7 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 355, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 2 - } - }, - "output": [ - { - "id": 135, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 4, - "uuid": "d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d" - }, - { - "type": 1, - "input": { - "A": { - "id": 44, - "damage": 6 - } - }, - "output": [ - { - "id": 155, - "damage": 1 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 44, - "damage": 5 - } - }, - "output": [ - { - "id": 98, - "damage": 3 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 4, - "uuid": "85939755-ba10-4d9d-a4cc-efb7a8e943c4" - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 5 - } - }, - "output": [ - { - "id": 164, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 4, - "uuid": "d392b075-4ba1-40ae-8789-af868d56f6ce" - }, - { - "type": 1, - "input": { - "A": { - "id": 182 - } - }, - "output": [ - { - "id": 179, - "damage": 1 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 44, - "damage": 1 - } - }, - "output": [ - { - "id": 24, - "damage": 1 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 3 - } - }, - "output": [ - { - "id": 136, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 182, - "damage": 1 - } - }, - "output": [ - { - "id": 201, - "damage": 2 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 287, - "damage": -1 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": -204 - } - ], - "shape": [ - "AA", - "BB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 4 - }, - "B": { - "id": 269, - "damage": -1 - } - }, - "output": [ - { - "id": 333, - "damage": 4 - } - ], - "shape": [ - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 4 - } - }, - "output": [ - { - "id": 430, - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 4 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 85, - "damage": 4, - "count": 3 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 5, - "damage": 4 - } - }, - "output": [ - { - "id": 187 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 162 - } - }, - "output": [ - { - "id": 5, - "damage": 4, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -8, - "damage": -1 - } - }, - "output": [ - { - "id": 5, - "damage": 4, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -212, - "damage": 12 - } - }, - "output": [ - { - "id": 5, - "damage": 4, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -212, - "damage": 4 - } - }, - "output": [ - { - "id": 5, - "damage": 4, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 4 - } - }, - "output": [ - { - "id": 163, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 162 - } - }, - "output": [ - { - "id": -212, - "damage": 4, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -8, - "damage": -1 - } - }, - "output": [ - { - "id": -212, - "damage": 12, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 4 - } - }, - "output": [ - { - "id": 158, - "damage": 4, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - }, - "C": { - "id": 76, - "damage": -1 - } - }, - "output": [ - { - "id": 126, - "count": 6 - } - ], - "shape": [ - "ABA", - "ACA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 3 - }, - { - "id": 4, - "damage": -1 - } - ], - "output": [ - { - "id": 1, - "damage": 5, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 5 - } - }, - "output": [ - { - "id": -171, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 5 - } - }, - "output": [ - { - "id": 139, - "damage": 4, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 42, - "damage": -1 - }, - "B": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 145 - } - ], - "shape": [ - "AAA", - " B ", - "BBB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 44 - } - }, - "output": [ - { - "id": 425 - } - ], - "shape": [ - "AAA", - " A ", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 318, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - }, - "C": { - "id": 288, - "damage": -1 - } - }, - "output": [ - { - "id": 262, - "count": 4 - } - ], - "shape": [ - "A", - "B", - "C" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 45, - "damage": -1 - } - ], - "output": [ - { - "id": 434, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 397, - "damage": 4 - } - ], - "output": [ - { - "id": 434 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 38, - "damage": 8 - } - ], - "output": [ - { - "id": 434, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 397, - "damage": 1 - } - ], - "output": [ - { - "id": 434, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 466, - "damage": -1 - } - ], - "output": [ - { - "id": 434, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 106, - "damage": -1 - } - ], - "output": [ - { - "id": 434, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 158, - "damage": -1 - } - }, - "output": [ - { - "id": -203 - } - ], - "shape": [ - "ABA", - "A A", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -264, - "damage": -1 - } - }, - "output": [ - { - "id": -203 - } - ], - "shape": [ - "ABA", - "A A", - "ABA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -265, - "damage": -1 - } - }, - "output": [ - { - "id": -203 - } - ], - "shape": [ - "ABA", - "A A", - "ABA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 395, - "damage": 1 - }, - { - "id": 345, - "damage": -1 - } - ], - "output": [ - { - "id": 395, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 399, - "damage": -1 - }, - "C": { - "id": 49, - "damage": -1 - } - }, - "output": [ - { - "id": 138 - } - ], - "shape": [ - "AAA", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 736, - "damage": -1 - } - }, - "output": [ - { - "id": -219 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 736, - "damage": -1 - } - }, - "output": [ - { - "id": -219 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - }, - "B": { - "id": 736, - "damage": -1 - } - }, - "output": [ - { - "id": -219 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 281, - "damage": -1 - }, - { - "id": 457, - "damage": -1 - }, - { - "id": 457, - "damage": -1 - }, - { - "id": 457, - "damage": -1 - }, - { - "id": 457, - "damage": -1 - }, - { - "id": 457, - "damage": -1 - }, - { - "id": 457, - "damage": -1 - } - ], - "output": [ - { - "id": 459 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 2 - }, - "B": { - "id": 269, - "damage": -1 - } - }, - "output": [ - { - "id": 333, - "damage": 2 - } - ], - "shape": [ - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 2 - } - }, - "output": [ - { - "id": 428, - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 2 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 85, - "damage": 2, - "count": 3 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 5, - "damage": 2 - } - }, - "output": [ - { - "id": 184 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 17, - "damage": 2 - } - }, - "output": [ - { - "id": 5, - "damage": 2, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -6, - "damage": -1 - } - }, - "output": [ - { - "id": 5, - "damage": 2, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -212, - "damage": 10 - } - }, - "output": [ - { - "id": 5, - "damage": 2, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -212, - "damage": 2 - } - }, - "output": [ - { - "id": 5, - "damage": 2, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 2 - } - }, - "output": [ - { - "id": 135, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 17, - "damage": 2 - } - }, - "output": [ - { - "id": -212, - "damage": 2, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -6, - "damage": -1 - } - }, - "output": [ - { - "id": -212, - "damage": 10, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 2 - } - }, - "output": [ - { - "id": 158, - "damage": 2, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 15 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 15 - } - }, - "output": [ - { - "id": 171, - "damage": 15, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 16 - } - }, - "output": [ - { - "id": 171, - "damage": 15, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 15, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 15, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 351 - } - ], - "output": [ - { - "id": 351, - "damage": 16 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": -216, - "damage": -1 - } - ], - "output": [ - { - "id": 351, - "damage": 16 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 16 - } - }, - "output": [ - { - "id": 241, - "damage": 15, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351 - } - }, - "output": [ - { - "id": 241, - "damage": 15, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 15 - } - }, - "output": [ - { - "id": 160, - "damage": 15, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 16 - } - }, - "output": [ - { - "id": 160, - "damage": 15, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 16 - } - }, - "output": [ - { - "id": 159, - "damage": 15, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351 - } - }, - "output": [ - { - "id": 159, - "damage": 15, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": -273, - "damage": -1 - } - }, - "output": [ - { - "id": -282, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -273, - "damage": -1 - } - }, - "output": [ - { - "id": -276, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -273, - "damage": -1 - } - }, - "output": [ - { - "id": -277, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - }, - "C": { - "id": -183, - "damage": -1 - } - }, - "output": [ - { - "id": -196 - } - ], - "shape": [ - "AAA", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 369, - "damage": -1 - } - ], - "output": [ - { - "id": 377, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 11 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 4 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 11 - } - }, - "output": [ - { - "id": 171, - "damage": 11, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 18 - } - }, - "output": [ - { - "id": 171, - "damage": 11, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 11, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 11, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 38, - "damage": 9 - } - ], - "output": [ - { - "id": 351, - "damage": 18 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 351, - "damage": 18 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 174, - "damage": -1 - } - }, - "output": [ - { - "id": -11 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 18 - } - }, - "output": [ - { - "id": 241, - "damage": 11, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 4 - } - }, - "output": [ - { - "id": 241, - "damage": 11, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 11 - } - }, - "output": [ - { - "id": 160, - "damage": 11, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 18 - } - }, - "output": [ - { - "id": 160, - "damage": 11, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 18 - } - }, - "output": [ - { - "id": 159, - "damage": 11, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 4 - } - }, - "output": [ - { - "id": 159, - "damage": 11, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 5 - }, - "B": { - "id": 269, - "damage": -1 - } - }, - "output": [ - { - "id": 333 - } - ], - "shape": [ - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 351, - "damage": 15 - } - }, - "output": [ - { - "id": 216 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 216, - "damage": -1 - } - ], - "output": [ - { - "id": 351, - "damage": 15, - "count": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 352, - "damage": -1 - } - ], - "output": [ - { - "id": 351, - "damage": 15, - "count": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 339 - }, - { - "id": 339 - }, - { - "id": 339 - }, - { - "id": 334 - } - ], - "output": [ - { - "id": 340 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 340, - "damage": -1 - } - }, - "output": [ - { - "id": 47 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - }, - "B": { - "id": 340, - "damage": -1 - } - }, - "output": [ - { - "id": 47 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 287, - "damage": -1 - } - }, - "output": [ - { - "id": 261 - } - ], - "shape": [ - " AB", - "A B", - " AB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 281, - "count": 4 - } - ], - "shape": [ - "A A", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 281, - "count": 4 - } - ], - "shape": [ - "A A", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 296, - "damage": -1 - } - }, - "output": [ - { - "id": 297 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 369, - "damage": -1 - }, - "B": { - "id": 4, - "damage": -1 - } - }, - "output": [ - { - "id": 379 - } - ], - "shape": [ - " A ", - "BBB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 336, - "damage": -1 - } - }, - "output": [ - { - "id": 45 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 45, - "damage": -1 - } - }, - "output": [ - { - "id": 108, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 45, - "damage": -1 - } - }, - "output": [ - { - "id": 139, - "damage": 6, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 12 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 12 - } - }, - "output": [ - { - "id": 171, - "damage": 12, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 17 - } - }, - "output": [ - { - "id": 171, - "damage": 12, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 12, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 12, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 351, - "damage": 17 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 17 - } - }, - "output": [ - { - "id": 241, - "damage": 12, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 3 - } - }, - "output": [ - { - "id": 241, - "damage": 12, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 12 - } - }, - "output": [ - { - "id": 160, - "damage": 12, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 17 - } - }, - "output": [ - { - "id": 160, - "damage": 12, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 17 - } - }, - "output": [ - { - "id": 159, - "damage": 12, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 3 - } - }, - "output": [ - { - "id": 159, - "damage": 12, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 325 - } - ], - "shape": [ - "A A", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 325, - "damage": 1 - }, - "B": { - "id": 353, - "damage": -1 - }, - "C": { - "id": 344, - "damage": -1 - }, - "D": { - "id": 296, - "damage": -1 - } - }, - "output": [ - { - "id": 354 - }, - { - "id": 325, - "count": 3 - } - ], - "shape": [ - "AAA", - "BCB", - "DDD" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": -1 - }, - "C": { - "id": 17, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": 1 - }, - "C": { - "id": 17, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": -1 - }, - "C": { - "id": -225, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": -1 - }, - "C": { - "id": 162, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": -1 - }, - "C": { - "id": -8, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": -1 - }, - "C": { - "id": -6, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": -1 - }, - "C": { - "id": -240, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": -1 - }, - "C": { - "id": -9, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": -1 - }, - "C": { - "id": -7, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": -1 - }, - "C": { - "id": -10, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": -1 - }, - "C": { - "id": -5, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": -1 - }, - "C": { - "id": -241, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": -1 - }, - "C": { - "id": -226, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 263, - "damage": -1 - }, - "C": { - "id": -212, - "damage": -1 - } - }, - "output": [ - { - "id": 720 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 346, - "damage": -1 - }, - "B": { - "id": 391, - "damage": -1 - } - }, - "output": [ - { - "id": 398 - } - ], - "shape": [ - "A ", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 339, - "damage": -1 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": -200 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 339, - "damage": -1 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -200 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 339, - "damage": -1 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -200 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 380 - } - ], - "shape": [ - "A A", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 452, - "damage": -1 - }, - "B": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 758 - } - ], - "shape": [ - "A", - "B", - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 54 - } - ], - "shape": [ - "AAA", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 54 - } - ], - "shape": [ - "AAA", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 54, - "damage": -1 - }, - "B": { - "id": 328, - "damage": -1 - } - }, - "output": [ - { - "id": 342 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 44, - "damage": 7 - } - }, - "output": [ - { - "id": -302 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -293, - "damage": -1 - } - }, - "output": [ - { - "id": -279 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 337, - "damage": -1 - } - }, - "output": [ - { - "id": 82 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - }, - "B": { - "id": 331, - "damage": -1 - } - }, - "output": [ - { - "id": 347 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 173, - "damage": -1 - } - }, - "output": [ - { - "id": 263, - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 263 - } - }, - "output": [ - { - "id": 173 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 3 - }, - "B": { - "id": 13, - "damage": -1 - } - }, - "output": [ - { - "id": 3, - "damage": 1, - "count": 4 - } - ], - "shape": [ - "AB", - "BA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 4, - "damage": -1 - } - }, - "output": [ - { - "id": 67, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 4, - "damage": -1 - } - }, - "output": [ - { - "id": 139, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 30, - "damage": -1 - } - ], - "output": [ - { - "id": 287, - "count": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 76, - "damage": -1 - }, - "B": { - "id": 406, - "damage": -1 - }, - "C": { - "id": 1 - } - }, - "output": [ - { - "id": 404 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 331, - "damage": -1 - } - }, - "output": [ - { - "id": 345 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 158, - "damage": -1 - } - }, - "output": [ - { - "id": -213 - } - ], - "shape": [ - "A A", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -264, - "damage": -1 - } - }, - "output": [ - { - "id": -213 - } - ], - "shape": [ - "A A", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -265, - "damage": -1 - } - }, - "output": [ - { - "id": -213 - } - ], - "shape": [ - "A A", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 465, - "damage": -1 - }, - "B": { - "id": 467, - "damage": -1 - } - }, - "output": [ - { - "id": -157 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 296, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 3 - } - }, - "output": [ - { - "id": 357, - "count": 8 - } - ], - "shape": [ - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 58 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 58 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -260 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 755, - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": -256, - "count": 3 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -258 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -225, - "damage": -1 - } - }, - "output": [ - { - "id": -299, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -225, - "damage": -1 - } - }, - "output": [ - { - "id": -242, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -299, - "damage": -1 - } - }, - "output": [ - { - "id": -242, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -300, - "damage": -1 - } - }, - "output": [ - { - "id": -242, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -240, - "damage": -1 - } - }, - "output": [ - { - "id": -242, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -262 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 753, - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -264, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -254, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -246, - "count": 2 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 265, - "damage": -1 - }, - "C": { - "id": 287, - "damage": -1 - }, - "D": { - "id": 131, - "damage": -1 - } - }, - "output": [ - { - "id": 471 - } - ], - "shape": [ - "ABA", - "CDC", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 9 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 6 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 9 - } - }, - "output": [ - { - "id": 171, - "damage": 9, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 6 - } - }, - "output": [ - { - "id": 171, - "damage": 9, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 9, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 351, - "damage": 6, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 351, - "damage": 6, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 6 - } - }, - "output": [ - { - "id": 241, - "damage": 9, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 9 - } - }, - "output": [ - { - "id": 160, - "damage": 9, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 6 - } - }, - "output": [ - { - "id": 160, - "damage": 9, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 6 - } - }, - "output": [ - { - "id": 159, - "damage": 9, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 5 - }, - "B": { - "id": 269, - "damage": -1 - } - }, - "output": [ - { - "id": 333, - "damage": 5 - } - ], - "shape": [ - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 5 - } - }, - "output": [ - { - "id": 431, - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 5 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 85, - "damage": 5, - "count": 3 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 5, - "damage": 5 - } - }, - "output": [ - { - "id": 186 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 162, - "damage": 1 - } - }, - "output": [ - { - "id": 5, - "damage": 5, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -9, - "damage": -1 - } - }, - "output": [ - { - "id": 5, - "damage": 5, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -212, - "damage": 13 - } - }, - "output": [ - { - "id": 5, - "damage": 5, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -212, - "damage": 5 - } - }, - "output": [ - { - "id": 5, - "damage": 5, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 5 - } - }, - "output": [ - { - "id": 164, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 162, - "damage": 1 - } - }, - "output": [ - { - "id": -212, - "damage": 5, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -9, - "damage": -1 - } - }, - "output": [ - { - "id": -212, - "damage": 13, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 5 - } - }, - "output": [ - { - "id": 158, - "damage": 5, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 409, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 16 - } - }, - "output": [ - { - "id": 168, - "damage": 1 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 409, - "damage": -1 - }, - "B": { - "id": 351 - } - }, - "output": [ - { - "id": 168, - "damage": 1 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 406, - "damage": -1 - }, - "C": { - "id": -264, - "damage": -1 - } - }, - "output": [ - { - "id": 151 - } - ], - "shape": [ - "AAA", - "BBB", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 406, - "damage": -1 - }, - "C": { - "id": -265, - "damage": -1 - } - }, - "output": [ - { - "id": 151 - } - ], - "shape": [ - "AAA", - "BBB", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 70, - "damage": -1 - }, - "C": { - "id": 331, - "damage": -1 - } - }, - "output": [ - { - "id": 28, - "count": 6 - } - ], - "shape": [ - "A A", - "ABA", - "ACA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 57, - "damage": -1 - } - }, - "output": [ - { - "id": 264, - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 264, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 279 - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 264, - "damage": -1 - } - }, - "output": [ - { - "id": 57 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 264, - "damage": -1 - } - }, - "output": [ - { - "id": 313 - } - ], - "shape": [ - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 264, - "damage": -1 - } - }, - "output": [ - { - "id": 311 - } - ], - "shape": [ - "A A", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 264, - "damage": -1 - } - }, - "output": [ - { - "id": 310 - } - ], - "shape": [ - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 264, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 293 - } - ], - "shape": [ - "AA", - " B", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 264, - "damage": -1 - } - }, - "output": [ - { - "id": 312 - } - ], - "shape": [ - "AAA", - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 264, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 278 - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 264, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 277 - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 264, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 276 - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 406, - "damage": -1 - } - }, - "output": [ - { - "id": 1, - "damage": 3, - "count": 2 - } - ], - "shape": [ - "AB", - "BA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 3 - } - }, - "output": [ - { - "id": -170, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 3 - } - }, - "output": [ - { - "id": 139, - "damage": 3, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 261, - "damage": -1 - }, - "C": { - "id": 331, - "damage": -1 - } - }, - "output": [ - { - "id": 23, - "damage": 3 - } - ], - "shape": [ - "AAA", - "ABA", - "ACA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -139, - "damage": -1 - } - }, - "output": [ - { - "id": 464, - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 464, - "damage": -1 - } - }, - "output": [ - { - "id": -139 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 331, - "damage": -1 - } - }, - "output": [ - { - "id": 125, - "damage": 3 - } - ], - "shape": [ - "AAA", - "A A", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 133, - "damage": -1 - } - }, - "output": [ - { - "id": 388, - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 388, - "damage": -1 - } - }, - "output": [ - { - "id": 133 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 395 - }, - { - "id": 345, - "damage": -1 - } - ], - "output": [ - { - "id": 395, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 340, - "damage": -1 - }, - "B": { - "id": 264, - "damage": -1 - }, - "C": { - "id": 49, - "damage": -1 - } - }, - "output": [ - { - "id": 116 - } - ], - "shape": [ - " A ", - "BCB", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 206, - "damage": -1 - } - }, - "output": [ - { - "id": -178, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 206, - "damage": -1 - } - }, - "output": [ - { - "id": 139, - "damage": 10, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 121, - "damage": -1 - } - }, - "output": [ - { - "id": 206, - "count": 4 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 381, - "damage": -1 - }, - "C": { - "id": 370, - "damage": -1 - } - }, - "output": [ - { - "id": 426 - } - ], - "shape": [ - "AAA", - "ABA", - "ACA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 369, - "damage": -1 - }, - "B": { - "id": 433, - "damage": -1 - } - }, - "output": [ - { - "id": 208, - "count": 4 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 49, - "damage": -1 - }, - "B": { - "id": 381, - "damage": -1 - } - }, - "output": [ - { - "id": 130 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 368, - "damage": -1 - }, - { - "id": 377, - "damage": -1 - } - ], - "output": [ - { - "id": 381 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 85, - "count": 3 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 5 - } - }, - "output": [ - { - "id": 107 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 375, - "damage": -1 - }, - { - "id": 39, - "damage": -1 - }, - { - "id": 353, - "damage": -1 - } - ], - "output": [ - { - "id": 376 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 287, - "damage": -1 - } - }, - "output": [ - { - "id": 346 - } - ], - "shape": [ - " A", - " AB", - "A B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 318, - "damage": -1 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": -201 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 318, - "damage": -1 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -201 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 318, - "damage": -1 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -201 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 265, - "damage": -1 - }, - { - "id": 318, - "damage": -1 - } - ], - "output": [ - { - "id": 259 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 336, - "damage": -1 - } - }, - "output": [ - { - "id": 390 - } - ], - "shape": [ - "A A", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 4, - "damage": -1 - } - }, - "output": [ - { - "id": 61 - } - ], - "shape": [ - "AAA", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -273, - "damage": -1 - } - }, - "output": [ - { - "id": 61 - } - ], - "shape": [ - "AAA", - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - } - }, - "output": [ - { - "id": 374, - "count": 3 - } - ], - "shape": [ - "A A", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - } - }, - "output": [ - { - "id": 102, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 348, - "damage": -1 - } - }, - "output": [ - { - "id": 89 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - } - }, - "output": [ - { - "id": 41 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 41, - "damage": -1 - } - }, - "output": [ - { - "id": 266, - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 371, - "damage": -1 - } - }, - "output": [ - { - "id": 266 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - } - }, - "output": [ - { - "id": 371, - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - }, - "B": { - "id": 260, - "damage": -1 - } - }, - "output": [ - { - "id": 322 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 286 - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - } - }, - "output": [ - { - "id": 317 - } - ], - "shape": [ - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 371, - "damage": -1 - }, - "B": { - "id": 391, - "damage": -1 - } - }, - "output": [ - { - "id": 396 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - } - }, - "output": [ - { - "id": 315 - } - ], - "shape": [ - "A A", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - } - }, - "output": [ - { - "id": 314 - } - ], - "shape": [ - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 294 - } - ], - "shape": [ - "AA", - " B", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - } - }, - "output": [ - { - "id": 316 - } - ], - "shape": [ - "AAA", - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 285 - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - }, - "C": { - "id": 331, - "damage": -1 - } - }, - "output": [ - { - "id": 27, - "count": 6 - } - ], - "shape": [ - "A A", - "ABA", - "ACA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 284 - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 283 - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 1, - "damage": 3 - }, - { - "id": 406, - "damage": -1 - } - ], - "output": [ - { - "id": 1, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 1 - } - }, - "output": [ - { - "id": -169, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 1 - } - }, - "output": [ - { - "id": 139, - "damage": 2, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 7 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 8 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 7 - } - }, - "output": [ - { - "id": 171, - "damage": 7, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 8 - } - }, - "output": [ - { - "id": 171, - "damage": 7, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 7, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 351, - "damage": 8, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 351, - "damage": 8, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 351, - "damage": 8, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 3 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 351, - "damage": 8, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 8 - } - }, - "output": [ - { - "id": 241, - "damage": 7, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 7 - } - }, - "output": [ - { - "id": 160, - "damage": 7, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 8 - } - }, - "output": [ - { - "id": 160, - "damage": 7, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 8 - } - }, - "output": [ - { - "id": 159, - "damage": 7, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 13 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 2 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 13 - } - }, - "output": [ - { - "id": 171, - "damage": 13, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 2 - } - }, - "output": [ - { - "id": 171, - "damage": 13, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 13, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 2 - } - }, - "output": [ - { - "id": 241, - "damage": 13, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 13 - } - }, - "output": [ - { - "id": 160, - "damage": 13, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 2 - } - }, - "output": [ - { - "id": 160, - "damage": 13, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 2 - } - }, - "output": [ - { - "id": 159, - "damage": 13, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -166, - "damage": 2 - }, - "C": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": -195 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 44, - "damage": -1 - }, - "C": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -195 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 182, - "damage": -1 - }, - "C": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -195 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -162, - "damage": -1 - }, - "C": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -195 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -166, - "damage": -1 - }, - "C": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -195 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 44, - "damage": -1 - }, - "C": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -195 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 182, - "damage": -1 - }, - "C": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -195 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -162, - "damage": -1 - }, - "C": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -195 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -166, - "damage": -1 - }, - "C": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -195 - } - ], - "shape": [ - "ABA", - "C C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 296, - "damage": -1 - } - }, - "output": [ - { - "id": 170 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 148 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 737, - "damage": -1 - } - }, - "output": [ - { - "id": -220 - }, - { - "id": 374, - "count": 4 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": -220, - "damage": -1 - }, - { - "id": 374, - "damage": -1 - }, - { - "id": 374, - "damage": -1 - }, - { - "id": 374, - "damage": -1 - }, - { - "id": 374, - "damage": -1 - } - ], - "output": [ - { - "id": 737, - "count": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 737, - "damage": -1 - } - }, - "output": [ - { - "id": 353, - "count": 3 - }, - { - "id": 374 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 736, - "damage": -1 - } - }, - "output": [ - { - "id": -221 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 54, - "damage": -1 - } - }, - "output": [ - { - "id": 410 - } - ], - "shape": [ - "A A", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 410, - "damage": -1 - }, - "B": { - "id": 328, - "damage": -1 - } - }, - "output": [ - { - "id": 408 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 258 - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 101, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 42 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 309 - } - ], - "shape": [ - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 307 - } - ], - "shape": [ - "A A", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 330, - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 306 - } - ], - "shape": [ - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 292 - } - ], - "shape": [ - "AA", - " B", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 42, - "damage": -1 - } - }, - "output": [ - { - "id": 265, - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 452, - "damage": -1 - } - }, - "output": [ - { - "id": 265 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 308 - } - ], - "shape": [ - "AAA", - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 452, - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 257 - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 256 - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 267 - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 167 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 334, - "damage": -1 - } - }, - "output": [ - { - "id": 389 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 264, - "damage": -1 - } - }, - "output": [ - { - "id": 84 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - }, - "B": { - "id": 264, - "damage": -1 - } - }, - "output": [ - { - "id": 84 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 3 - }, - "B": { - "id": 269, - "damage": -1 - } - }, - "output": [ - { - "id": 333, - "damage": 3 - } - ], - "shape": [ - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 3 - } - }, - "output": [ - { - "id": 429, - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 3 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 85, - "damage": 3, - "count": 3 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 5, - "damage": 3 - } - }, - "output": [ - { - "id": 185 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 17, - "damage": 3 - } - }, - "output": [ - { - "id": 5, - "damage": 3, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -7, - "damage": -1 - } - }, - "output": [ - { - "id": 5, - "damage": 3, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -212, - "damage": 11 - } - }, - "output": [ - { - "id": 5, - "damage": 3, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -212, - "damage": 3 - } - }, - "output": [ - { - "id": 5, - "damage": 3, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 3 - } - }, - "output": [ - { - "id": 136, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 17, - "damage": 3 - } - }, - "output": [ - { - "id": -212, - "damage": 3, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -7, - "damage": -1 - } - }, - "output": [ - { - "id": -212, - "damage": 11, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 3 - } - }, - "output": [ - { - "id": 158, - "damage": 3, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 65, - "count": 3 - } - ], - "shape": [ - "A A", - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 452, - "damage": -1 - }, - "B": { - "id": 50, - "damage": -1 - } - }, - "output": [ - { - "id": -208 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 351, - "damage": 4 - } - }, - "output": [ - { - "id": 22 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 22, - "damage": -1 - } - }, - "output": [ - { - "id": 351, - "damage": 4, - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 287, - "damage": -1 - }, - "B": { - "id": 341, - "damage": -1 - } - }, - "output": [ - { - "id": 420, - "count": 2 - } - ], - "shape": [ - "AA ", - "AB ", - " A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 415, - "damage": -1 - } - }, - "output": [ - { - "id": 334 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 334, - "damage": -1 - } - }, - "output": [ - { - "id": 301 - } - ], - "shape": [ - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 334, - "damage": -1 - } - }, - "output": [ - { - "id": 299 - } - ], - "shape": [ - "A A", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 334, - "damage": -1 - } - }, - "output": [ - { - "id": 298 - } - ], - "shape": [ - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 334, - "damage": -1 - } - }, - "output": [ - { - "id": 416 - } - ], - "shape": [ - "A A", - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 334, - "damage": -1 - } - }, - "output": [ - { - "id": 300 - } - ], - "shape": [ - "AAA", - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 158, - "damage": -1 - }, - "B": { - "id": 47, - "damage": -1 - } - }, - "output": [ - { - "id": -194 - } - ], - "shape": [ - "AAA", - " B ", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -264, - "damage": -1 - }, - "B": { - "id": 47, - "damage": -1 - } - }, - "output": [ - { - "id": -194 - } - ], - "shape": [ - "AAA", - " B ", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -265, - "damage": -1 - }, - "B": { - "id": 47, - "damage": -1 - } - }, - "output": [ - { - "id": -194 - } - ], - "shape": [ - "AAA", - " B ", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 4, - "damage": -1 - } - }, - "output": [ - { - "id": 69 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 3 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 12 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 3 - } - }, - "output": [ - { - "id": 171, - "damage": 3, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 12 - } - }, - "output": [ - { - "id": 171, - "damage": 3, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 3, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 351, - "damage": 12, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 351, - "damage": 12, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 38, - "damage": 1 - } - ], - "output": [ - { - "id": 351, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 351, - "damage": 12, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 4 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 351, - "damage": 12, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 3 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 12 - } - }, - "output": [ - { - "id": 241, - "damage": 3, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 3 - } - }, - "output": [ - { - "id": 160, - "damage": 3, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 12 - } - }, - "output": [ - { - "id": 160, - "damage": 3, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 12 - } - }, - "output": [ - { - "id": 159, - "damage": 3, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 7 - } - }, - "output": [ - { - "id": 171, - "damage": 8, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 8 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 7 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 8 - } - }, - "output": [ - { - "id": 171, - "damage": 8, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 8, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 351, - "damage": 19 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 351, - "damage": 7, - "count": 3 - } - ], - "block": "crafting_table", - "priority": 3 - }, - { - "type": 0, - "input": [ - { - "id": 38, - "damage": 3 - } - ], - "output": [ - { - "id": 351, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 351, - "damage": 15 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 351, - "damage": 7, - "count": 3 - } - ], - "block": "crafting_table", - "priority": 7 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 351, - "damage": 7, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 6 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 351, - "damage": 7, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 4 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 351, - "damage": 15 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 351, - "damage": 7, - "count": 3 - } - ], - "block": "crafting_table", - "priority": 8 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 351, - "damage": 19 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 351, - "damage": 7, - "count": 3 - } - ], - "block": "crafting_table", - "priority": 5 - }, - { - "type": 0, - "input": [ - { - "id": 38, - "damage": 8 - } - ], - "output": [ - { - "id": 351, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 38, - "damage": 6 - } - ], - "output": [ - { - "id": 351, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 7 - } - }, - "output": [ - { - "id": 241, - "damage": 8, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 8 - } - }, - "output": [ - { - "id": 160, - "damage": 8, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 7 - } - }, - "output": [ - { - "id": 160, - "damage": 8, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 7 - } - }, - "output": [ - { - "id": 159, - "damage": 8, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 266, - "damage": -1 - } - }, - "output": [ - { - "id": 147 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 10 - } - }, - "output": [ - { - "id": 171, - "damage": 5, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 5 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 10 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 5 - } - }, - "output": [ - { - "id": 171, - "damage": 5, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 5, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 351, - "damage": 10, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 351, - "damage": 10, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 10 - } - }, - "output": [ - { - "id": 241, - "damage": 5, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 5 - } - }, - "output": [ - { - "id": 160, - "damage": 5, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 10 - } - }, - "output": [ - { - "id": 160, - "damage": 5, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 10 - } - }, - "output": [ - { - "id": 159, - "damage": 5, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -155, - "damage": -1 - }, - "B": { - "id": 50, - "damage": -1 - } - }, - "output": [ - { - "id": 91 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 339, - "damage": -1 - }, - "B": { - "id": 345, - "damage": -1 - } - }, - "output": [ - { - "id": 395, - "damage": 2 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 98, - "damage": 3 - }, - "B": { - "id": 742, - "damage": -1 - } - }, - "output": [ - { - "id": -222 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 287, - "damage": -1 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -204 - } - ], - "shape": [ - "AA", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 287, - "damage": -1 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -204 - } - ], - "shape": [ - "AA", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 2 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 13 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 2 - } - }, - "output": [ - { - "id": 171, - "damage": 2, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 13 - } - }, - "output": [ - { - "id": 171, - "damage": 2, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 2, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 351, - "damage": 13, - "count": 3 - } - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 38, - "damage": 2 - } - ], - "output": [ - { - "id": 351, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 351, - "damage": 13, - "count": 4 - } - ], - "block": "crafting_table", - "priority": 6 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 351, - "damage": 13, - "count": 4 - } - ], - "block": "crafting_table", - "priority": 4 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 351, - "damage": 13, - "count": 4 - } - ], - "block": "crafting_table", - "priority": 8 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 351, - "damage": 13, - "count": 4 - } - ], - "block": "crafting_table", - "priority": 7 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 351, - "damage": 13, - "count": 3 - } - ], - "block": "crafting_table", - "priority": 5 - }, - { - "type": 0, - "input": [ - { - "id": 175, - "damage": 1 - } - ], - "output": [ - { - "id": 351, - "damage": 13, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 351, - "damage": 13, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 3 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 13 - } - }, - "output": [ - { - "id": 241, - "damage": 2, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 2 - } - }, - "output": [ - { - "id": 160, - "damage": 2, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 13 - } - }, - "output": [ - { - "id": 160, - "damage": 2, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 13 - } - }, - "output": [ - { - "id": 159, - "damage": 2, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 378, - "damage": -1 - } - }, - "output": [ - { - "id": 213 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 377, - "damage": -1 - }, - { - "id": 341, - "damage": -1 - } - ], - "output": [ - { - "id": 378 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 339, - "damage": -1 - } - }, - "output": [ - { - "id": 395 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 360, - "damage": -1 - } - }, - "output": [ - { - "id": 103 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 360, - "damage": -1 - } - }, - "output": [ - { - "id": 362 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 328 - } - ], - "shape": [ - "A A", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 4, - "damage": -1 - }, - { - "id": 106, - "damage": -1 - } - ], - "output": [ - { - "id": 48 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 48, - "damage": -1 - } - }, - "output": [ - { - "id": -179, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 48, - "damage": -1 - } - }, - "output": [ - { - "id": 139, - "damage": 1, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 98, - "damage": 1 - } - }, - "output": [ - { - "id": -175, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 98, - "damage": 1 - } - }, - "output": [ - { - "id": 139, - "damage": 8, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 98 - }, - { - "id": 106, - "damage": -1 - } - ], - "output": [ - { - "id": 98, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - } - ], - "output": [ - { - "id": 282 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 405, - "damage": -1 - } - }, - "output": [ - { - "id": 112 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 112, - "damage": -1 - }, - "B": { - "id": 405, - "damage": -1 - } - }, - "output": [ - { - "id": 113, - "count": 6 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 112, - "damage": -1 - } - }, - "output": [ - { - "id": 114, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 112, - "damage": -1 - } - }, - "output": [ - { - "id": 139, - "damage": 9, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 372, - "damage": -1 - } - }, - "output": [ - { - "id": 214 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 742, - "damage": -1 - } - }, - "output": [ - { - "id": -270 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 752, - "damage": -1 - }, - { - "id": 752, - "damage": -1 - }, - { - "id": 752, - "damage": -1 - }, - { - "id": 752, - "damage": -1 - }, - { - "id": 266, - "damage": -1 - }, - { - "id": 266, - "damage": -1 - }, - { - "id": 266, - "damage": -1 - }, - { - "id": 266, - "damage": -1 - } - ], - "output": [ - { - "id": 742 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -270, - "damage": -1 - } - }, - "output": [ - { - "id": 742, - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 331, - "damage": -1 - } - }, - "output": [ - { - "id": 25 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - }, - "B": { - "id": 331, - "damage": -1 - } - }, - "output": [ - { - "id": 25 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 17 - } - }, - "output": [ - { - "id": 5, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -10, - "damage": -1 - } - }, - "output": [ - { - "id": 5, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -212, - "damage": 8 - } - }, - "output": [ - { - "id": 5, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -212 - } - }, - "output": [ - { - "id": 5, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5 - } - }, - "output": [ - { - "id": 53, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 17 - } - }, - "output": [ - { - "id": -212, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -10, - "damage": -1 - } - }, - "output": [ - { - "id": -212, - "damage": 8, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5 - } - }, - "output": [ - { - "id": 158, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 331, - "damage": -1 - }, - "C": { - "id": 406, - "damage": -1 - } - }, - "output": [ - { - "id": 251 - } - ], - "shape": [ - "AAA", - "BBC", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 14 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 1 - } - }, - "output": [ - { - "id": 171, - "damage": 1, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 14 - } - }, - "output": [ - { - "id": 171, - "damage": 1, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 1, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 38, - "damage": 5 - } - ], - "output": [ - { - "id": 351, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 351, - "damage": 14, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 14 - } - }, - "output": [ - { - "id": 241, - "damage": 1, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 1 - } - }, - "output": [ - { - "id": 160, - "damage": 1, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 14 - } - }, - "output": [ - { - "id": 160, - "damage": 1, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 14 - } - }, - "output": [ - { - "id": 159, - "damage": 1, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 79, - "damage": -1 - } - }, - "output": [ - { - "id": 174 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 338, - "damage": -1 - } - }, - "output": [ - { - "id": 339, - "count": 3 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 155 - } - }, - "output": [ - { - "id": 155, - "damage": 2, - "count": 2 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 6 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 9 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 6 - } - }, - "output": [ - { - "id": 171, - "damage": 6, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 9 - } - }, - "output": [ - { - "id": 171, - "damage": 6, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 6, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 351, - "damage": 9, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 175, - "damage": 5 - } - ], - "output": [ - { - "id": 351, - "damage": 9, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 38, - "damage": 7 - } - ], - "output": [ - { - "id": 351, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 351, - "damage": 9, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 9 - } - }, - "output": [ - { - "id": 241, - "damage": 6, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 6 - } - }, - "output": [ - { - "id": 160, - "damage": 6, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 9 - } - }, - "output": [ - { - "id": 160, - "damage": 6, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 9 - } - }, - "output": [ - { - "id": 159, - "damage": 6, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 4, - "damage": -1 - }, - "C": { - "id": 265, - "damage": -1 - }, - "D": { - "id": 331, - "damage": -1 - } - }, - "output": [ - { - "id": 33 - } - ], - "shape": [ - "AAA", - "BCB", - "BDB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - }, - "B": { - "id": 4, - "damage": -1 - }, - "C": { - "id": 265, - "damage": -1 - }, - "D": { - "id": 331, - "damage": -1 - } - }, - "output": [ - { - "id": 33 - } - ], - "shape": [ - "AAA", - "BCB", - "BDB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 5 - } - }, - "output": [ - { - "id": 1, - "damage": 6, - "count": 4 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 6 - } - }, - "output": [ - { - "id": -174, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -234, - "damage": -1 - } - }, - "output": [ - { - "id": -235, - "count": 4 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -273, - "damage": -1 - } - }, - "output": [ - { - "id": -291, - "count": 4 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -274, - "damage": -1 - } - }, - "output": [ - { - "id": -284, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -274, - "damage": -1 - } - }, - "output": [ - { - "id": -275, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -274, - "damage": -1 - } - }, - "output": [ - { - "id": -278, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -291, - "damage": -1 - } - }, - "output": [ - { - "id": -274, - "count": 4 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -291, - "damage": -1 - } - }, - "output": [ - { - "id": -296 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -291, - "damage": -1 - } - }, - "output": [ - { - "id": -295 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -291, - "damage": -1 - } - }, - "output": [ - { - "id": -293, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -291, - "damage": -1 - } - }, - "output": [ - { - "id": -292, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -291, - "damage": -1 - } - }, - "output": [ - { - "id": -297, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 3 - } - }, - "output": [ - { - "id": 1, - "damage": 4, - "count": 4 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 4 - } - }, - "output": [ - { - "id": -173, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 1 - } - }, - "output": [ - { - "id": 1, - "damage": 2, - "count": 4 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 2 - } - }, - "output": [ - { - "id": -172, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 409, - "damage": -1 - } - }, - "output": [ - { - "id": 168 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 409, - "damage": -1 - } - }, - "output": [ - { - "id": 168, - "damage": 2 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 168 - } - }, - "output": [ - { - "id": -2, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 168, - "damage": 2 - } - }, - "output": [ - { - "id": -4, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 168, - "damage": 1 - } - }, - "output": [ - { - "id": -3, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 168 - } - }, - "output": [ - { - "id": 139, - "damage": 11, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 86, - "damage": -1 - }, - { - "id": 353, - "damage": -1 - }, - { - "id": 344, - "damage": -1 - } - ], - "output": [ - { - "id": 400 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 86, - "damage": -1 - } - }, - "output": [ - { - "id": 361, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 10 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 5 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 10 - } - }, - "output": [ - { - "id": 171, - "damage": 10, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 5 - } - }, - "output": [ - { - "id": 171, - "damage": 10, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 10, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 351, - "damage": 5, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 351, - "damage": 5, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 5 - } - }, - "output": [ - { - "id": 241, - "damage": 10, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 10 - } - }, - "output": [ - { - "id": 160, - "damage": 10, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 5 - } - }, - "output": [ - { - "id": 160, - "damage": 10, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 5 - } - }, - "output": [ - { - "id": 159, - "damage": 10, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 433, - "damage": -1 - } - }, - "output": [ - { - "id": 201, - "count": 4 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 201, - "damage": -1 - } - }, - "output": [ - { - "id": 203, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 406, - "damage": -1 - } - }, - "output": [ - { - "id": 155 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 155 - } - }, - "output": [ - { - "id": -304 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 155 - } - }, - "output": [ - { - "id": 156, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 281, - "damage": -1 - }, - { - "id": 393, - "damage": -1 - }, - { - "id": 391, - "damage": -1 - }, - { - "id": 39, - "damage": -1 - }, - { - "id": 412, - "damage": -1 - } - ], - "output": [ - { - "id": 413 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 281, - "damage": -1 - }, - { - "id": 393, - "damage": -1 - }, - { - "id": 391, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 412, - "damage": -1 - } - ], - "output": [ - { - "id": 413 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 66, - "count": 16 - } - ], - "shape": [ - "A A", - "ABA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 14 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 1 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 14 - } - }, - "output": [ - { - "id": 171, - "damage": 14, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 1 - } - }, - "output": [ - { - "id": 171, - "damage": 14, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 14, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 457, - "damage": -1 - } - ], - "output": [ - { - "id": 351, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 38 - } - ], - "output": [ - { - "id": 351, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 175, - "damage": 4 - } - ], - "output": [ - { - "id": 351, - "damage": 1, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 38, - "damage": 4 - } - ], - "output": [ - { - "id": 351, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 405, - "damage": -1 - }, - "B": { - "id": 372, - "damage": -1 - } - }, - "output": [ - { - "id": 215 - } - ], - "shape": [ - "AB", - "BA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 215, - "damage": -1 - } - }, - "output": [ - { - "id": -184, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 215, - "damage": -1 - } - }, - "output": [ - { - "id": 139, - "damage": 13, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 12, - "damage": 1 - } - }, - "output": [ - { - "id": 179 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 179 - } - }, - "output": [ - { - "id": 180, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 179 - } - }, - "output": [ - { - "id": 139, - "damage": 12, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 1 - } - }, - "output": [ - { - "id": 241, - "damage": 14, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 14 - } - }, - "output": [ - { - "id": 160, - "damage": 14, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 1 - } - }, - "output": [ - { - "id": 160, - "damage": 14, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 1 - } - }, - "output": [ - { - "id": 159, - "damage": 14, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 152, - "damage": -1 - } - }, - "output": [ - { - "id": 331, - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 331, - "damage": -1 - } - }, - "output": [ - { - "id": 152 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 331, - "damage": -1 - }, - "B": { - "id": 89, - "damage": -1 - } - }, - "output": [ - { - "id": 123 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 331, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 76 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 76, - "damage": -1 - }, - "B": { - "id": 331, - "damage": -1 - }, - "C": { - "id": 1 - } - }, - "output": [ - { - "id": 356 - } - ], - "shape": [ - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -289, - "damage": -1 - }, - "B": { - "id": 89, - "damage": -1 - } - }, - "output": [ - { - "id": -272 - } - ], - "shape": [ - "AAA", - "BBB", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 12 - } - }, - "output": [ - { - "id": 24 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 24 - } - }, - "output": [ - { - "id": 128, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 24 - } - }, - "output": [ - { - "id": 139, - "damage": 5, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -163, - "damage": -1 - }, - "B": { - "id": 287, - "damage": -1 - } - }, - "output": [ - { - "id": -165, - "count": 6 - } - ], - "shape": [ - "ABA", - "A A", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 409, - "damage": -1 - }, - "B": { - "id": 422, - "damage": -1 - } - }, - "output": [ - { - "id": 169 - } - ], - "shape": [ - "ABA", - "BBB", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 359 - } - ], - "shape": [ - " A", - "A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 513 - } - ], - "shape": [ - "ABA", - "AAA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 513 - } - ], - "shape": [ - "ABA", - "AAA", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - }, - "B": { - "id": 265, - "damage": -1 - } - }, - "output": [ - { - "id": 513 - } - ], - "shape": [ - "ABA", - "AAA", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 445, - "damage": -1 - }, - "B": { - "id": 54, - "damage": -1 - } - }, - "output": [ - { - "id": 205 - } - ], - "shape": [ - "A", - "B", - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 4 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 475, - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 2 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 473, - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 5 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 476, - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 3 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 474, - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 323, - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 472, - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 341, - "damage": -1 - } - }, - "output": [ - { - "id": 165 - } - ], - "shape": [ - "AAA", - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 165, - "damage": -1 - } - }, - "output": [ - { - "id": 341, - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": -202 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": -202 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -202 - } - ], - "shape": [ - "AA", - "BB", - "BB" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 17, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - } - }, - "output": [ - { - "id": -198 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -225, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - } - }, - "output": [ - { - "id": -198 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 162, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - } - }, - "output": [ - { - "id": -198 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -8, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - } - }, - "output": [ - { - "id": -198 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -6, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - } - }, - "output": [ - { - "id": -198 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -240, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - } - }, - "output": [ - { - "id": -198 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -9, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - } - }, - "output": [ - { - "id": -198 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -7, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - } - }, - "output": [ - { - "id": -198 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -10, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - } - }, - "output": [ - { - "id": -198 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -5, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - } - }, - "output": [ - { - "id": -198 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -241, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - } - }, - "output": [ - { - "id": -198 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -226, - "damage": -1 - }, - "B": { - "id": 61, - "damage": -1 - } - }, - "output": [ - { - "id": -198 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 155, - "damage": 3 - } - }, - "output": [ - { - "id": -185, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 179 - } - }, - "output": [ - { - "id": 179, - "damage": 2, - "count": 4 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 179, - "damage": 3 - } - }, - "output": [ - { - "id": -176, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 24 - } - }, - "output": [ - { - "id": 24, - "damage": 2, - "count": 4 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 24, - "damage": 3 - } - }, - "output": [ - { - "id": -177, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 332, - "damage": -1 - } - }, - "output": [ - { - "id": 80 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 80, - "damage": -1 - } - }, - "output": [ - { - "id": 78, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -225, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -225, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": 17, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": 162, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -8, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -6, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -9, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -7, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -10, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -5, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -212, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": 17, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": 162, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -8, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -6, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -9, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -7, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -10, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -5, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -212, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -240, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -240, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -241, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -241, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -236, - "damage": -1 - }, - "C": { - "id": -226, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 88, - "damage": -1 - }, - "C": { - "id": -226, - "damage": -1 - } - }, - "output": [ - { - "id": 801 - } - ], - "shape": [ - " A ", - "ABA", - "CCC" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 452, - "damage": -1 - }, - "B": { - "id": -268, - "damage": -1 - } - }, - "output": [ - { - "id": -269 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 263, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - }, - "C": { - "id": 88, - "damage": -1 - } - }, - "output": [ - { - "id": -268, - "count": 4 - } - ], - "shape": [ - "A", - "B", - "C" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 263, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - }, - "C": { - "id": -236, - "damage": -1 - } - }, - "output": [ - { - "id": -268, - "count": 4 - } - ], - "shape": [ - "A", - "B", - "C" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 371, - "damage": -1 - }, - "B": { - "id": 360, - "damage": -1 - } - }, - "output": [ - { - "id": 382 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 1 - }, - "B": { - "id": 269, - "damage": -1 - } - }, - "output": [ - { - "id": 333, - "damage": 1 - } - ], - "shape": [ - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 1 - } - }, - "output": [ - { - "id": 427, - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 85, - "damage": 1, - "count": 3 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": 5, - "damage": 1 - } - }, - "output": [ - { - "id": 183 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 17, - "damage": 1 - } - }, - "output": [ - { - "id": 5, - "damage": 1, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -5, - "damage": -1 - } - }, - "output": [ - { - "id": 5, - "damage": 1, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -212, - "damage": 9 - } - }, - "output": [ - { - "id": 5, - "damage": 1, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -212, - "damage": 1 - } - }, - "output": [ - { - "id": 5, - "damage": 1, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 1 - } - }, - "output": [ - { - "id": 134, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 17, - "damage": 1 - } - }, - "output": [ - { - "id": -212, - "damage": 1, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -5, - "damage": -1 - } - }, - "output": [ - { - "id": -212, - "damage": 9, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 1 - } - }, - "output": [ - { - "id": 158, - "damage": 1, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 280, - "count": 4 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 280, - "count": 4 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 341, - "damage": -1 - }, - "B": { - "id": 33, - "damage": -1 - } - }, - "output": [ - { - "id": 29, - "damage": 1 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 275 - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -273, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 275 - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 98 - } - }, - "output": [ - { - "id": 109, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 98 - } - }, - "output": [ - { - "id": 139, - "damage": 7, - "count": 6 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1 - } - }, - "output": [ - { - "id": 77 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 291 - } - ], - "shape": [ - "AA", - " B", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -273, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 291 - } - ], - "shape": [ - "AA", - " B", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 274 - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -273, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 274 - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1 - } - }, - "output": [ - { - "id": 70 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 273 - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -273, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 273 - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1 - } - }, - "output": [ - { - "id": -180, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 4, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 272 - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -273, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 272 - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 1 - } - }, - "output": [ - { - "id": 98, - "count": 4 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 1, - "damage": -1 - } - }, - "output": [ - { - "id": -197 - } - ], - "shape": [ - " A ", - "BBB" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 287, - "damage": -1 - } - }, - "output": [ - { - "id": 35 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -240, - "damage": -1 - } - }, - "output": [ - { - "id": -300, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -241, - "damage": -1 - } - }, - "output": [ - { - "id": -301, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 338, - "damage": -1 - } - }, - "output": [ - { - "id": 353 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 2 - } - ], - "output": [ - { - "id": 734, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 3 - } - ], - "output": [ - { - "id": 734, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 1 - } - ], - "output": [ - { - "id": 734, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 9 - } - ], - "output": [ - { - "id": 734, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - }, - { - "id": 37, - "damage": -1 - } - ], - "output": [ - { - "id": 734, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 10 - } - ], - "output": [ - { - "id": 734, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 8 - } - ], - "output": [ - { - "id": 734, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - }, - { - "id": 38 - } - ], - "output": [ - { - "id": 734 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 5 - } - ], - "output": [ - { - "id": 734, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 7 - } - ], - "output": [ - { - "id": 734, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 4 - } - ], - "output": [ - { - "id": 734, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - }, - { - "id": 38, - "damage": 6 - } - ], - "output": [ - { - "id": 734, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 39, - "damage": -1 - }, - { - "id": 40, - "damage": -1 - }, - { - "id": 281, - "damage": -1 - }, - { - "id": -216, - "damage": -1 - } - ], - "output": [ - { - "id": 734, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 331, - "damage": -1 - }, - "B": { - "id": 170, - "damage": -1 - } - }, - "output": [ - { - "id": -239 - } - ], - "shape": [ - " A ", - "ABA", - " A " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 289, - "damage": -1 - }, - "B": { - "id": 12, - "damage": -1 - } - }, - "output": [ - { - "id": 46 - } - ], - "shape": [ - "ABA", - "BAB", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 46 - }, - "B": { - "id": 328, - "damage": -1 - } - }, - "output": [ - { - "id": 407 - } - ], - "shape": [ - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 54, - "damage": -1 - }, - { - "id": 131, - "damage": -1 - } - ], - "output": [ - { - "id": 146 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - }, - "C": { - "id": -242, - "damage": -1 - } - }, - "output": [ - { - "id": 131 - } - ], - "shape": [ - "A", - "B", - "C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 265, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - }, - "C": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 131 - } - ], - "shape": [ - "A", - "B", - "C" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 468, - "damage": -1 - } - }, - "output": [ - { - "id": 469 - } - ], - "shape": [ - "AAA", - "A A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -261 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": 756, - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": -257, - "count": 3 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 280, - "damage": -1 - }, - "B": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -259 - } - ], - "shape": [ - "ABA", - "ABA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 346, - "damage": -1 - }, - "B": { - "id": -229, - "damage": -1 - } - }, - "output": [ - { - "id": 757 - } - ], - "shape": [ - "A ", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -226, - "damage": -1 - } - }, - "output": [ - { - "id": -298, - "count": 3 - } - ], - "shape": [ - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -226, - "damage": -1 - } - }, - "output": [ - { - "id": -243, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -241, - "damage": -1 - } - }, - "output": [ - { - "id": -243, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -301, - "damage": -1 - } - }, - "output": [ - { - "id": -243, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -298, - "damage": -1 - } - }, - "output": [ - { - "id": -243, - "count": 4 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -263 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 754, - "count": 3 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -265, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -255, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - } - }, - "output": [ - { - "id": -247, - "count": 2 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 170, - "damage": -1 - } - }, - "output": [ - { - "id": 296, - "count": 9 - } - ], - "shape": [ - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 15 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35 - } - }, - "output": [ - { - "id": 171, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 351, - "damage": 19 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 38, - "damage": 10 - } - ], - "output": [ - { - "id": 351, - "damage": 19 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 19 - } - }, - "output": [ - { - "id": 241, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 15 - } - }, - "output": [ - { - "id": 241, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": 241 - } - }, - "output": [ - { - "id": 160, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 19 - } - }, - "output": [ - { - "id": 160, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 19 - } - }, - "output": [ - { - "id": 159, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 15 - } - }, - "output": [ - { - "id": 159, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 1 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 271 - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 271 - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": 5 - } - }, - "output": [ - { - "id": 324, - "count": 3 - } - ], - "shape": [ - "AA", - "AA", - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 290 - } - ], - "shape": [ - "AA ", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 290 - } - ], - "shape": [ - "AA ", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 270 - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 270 - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 269 - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 269 - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -242, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 268 - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 1, - "input": { - "A": { - "id": -243, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 268 - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 2 - }, - { - "type": 0, - "input": [ - { - "id": 340, - "damage": -1 - }, - { - "id": 351 - }, - { - "id": 288, - "damage": -1 - } - ], - "output": [ - { - "id": 386 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 4 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 446, - "damage": 11 - } - ], - "shape": [ - "AAA", - "AAA", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 35, - "damage": 4 - } - }, - "output": [ - { - "id": 171, - "damage": 4, - "count": 3 - } - ], - "shape": [ - "AA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 171 - }, - "B": { - "id": 351, - "damage": 11 - } - }, - "output": [ - { - "id": 171, - "damage": 4, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 12 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - }, - { - "id": 13, - "damage": -1 - } - ], - "output": [ - { - "id": 237, - "damage": 4, - "count": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 37 - } - ], - "output": [ - { - "id": 351, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 175 - } - ], - "output": [ - { - "id": 351, - "damage": 11, - "count": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 20, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 11 - } - }, - "output": [ - { - "id": 241, - "damage": 4, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 241, - "damage": 4 - } - }, - "output": [ - { - "id": 160, - "damage": 4, - "count": 16 - } - ], - "shape": [ - "AAA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 102, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 11 - } - }, - "output": [ - { - "id": 160, - "damage": 4, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 172, - "damage": -1 - }, - "B": { - "id": 351, - "damage": 11 - } - }, - "output": [ - { - "id": 159, - "damage": 4, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5 - } - }, - "output": [ - { - "id": 53, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 10 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAACgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 11 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAACwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 12 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 13 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 14 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 15 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 3 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 4 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 15 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 1 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 2 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 3 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 4 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 5 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 6 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 7 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 8 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAACAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - }, - { - "id": 402, - "damage": 9 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAACQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 402, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3IhHR3/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 402, - "damage": 10, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3Ifx4D/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 402, - "damage": 11, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3I92P7/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 402, - "damage": 12, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3Laszr/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 402, - "damage": 13, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3K9Tsf/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 402, - "damage": 14, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3IdgPn/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 402, - "damage": 15, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3Lw8PD/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 402, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3IhHR3/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 402, - "damage": 3, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3IyVIP/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 402, - "damage": 4, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3KqRDz/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 402, - "damage": 15, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3Lw8PD/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 402, - "damage": 1, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3ImLrD/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 402, - "damage": 2, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3IWfF7/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 402, - "damage": 3, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3IyVIP/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 402, - "damage": 4, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3KqRDz/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 402, - "damage": 5, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3K4Mon/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 402, - "damage": 6, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3KcnBb/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 402, - "damage": 7, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3KXnZ3/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 402, - "damage": 8, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3JST0f/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 289, - "damage": -1 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 402, - "damage": 9, - "nbt_b64": "CgAAAwsAY3VzdG9tQ29sb3Kqi/P/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA=" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 339, - "damage": -1 - }, - { - "id": 289, - "damage": -1 - } - ], - "output": [ - { - "id": 401, - "count": 3, - "nbt_b64": "CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMAAAAAAAAA" - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 4, - "uuid": "00000000-0000-0000-0000-000000000001" - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 6 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 15 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 5 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 4 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 3 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 2 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 1 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 14 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 13 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 12 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 11 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 10 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 9 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 8 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 218, - "damage": 7 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 10 - } - ], - "output": [ - { - "id": 218, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 11 - } - ], - "output": [ - { - "id": 218, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 12 - } - ], - "output": [ - { - "id": 218, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 13 - } - ], - "output": [ - { - "id": 218, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 14 - } - ], - "output": [ - { - "id": 218, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 15 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 16 - } - ], - "output": [ - { - "id": 218, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 17 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 18 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 19 - } - ], - "output": [ - { - "id": 218 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 1 - } - ], - "output": [ - { - "id": 218, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 2 - } - ], - "output": [ - { - "id": 218, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 3 - } - ], - "output": [ - { - "id": 218, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 4 - } - ], - "output": [ - { - "id": 218, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 5 - } - ], - "output": [ - { - "id": 218, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 6 - } - ], - "output": [ - { - "id": 218, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 7 - } - ], - "output": [ - { - "id": 218, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 8 - } - ], - "output": [ - { - "id": 218, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 5, - "input": [ - { - "id": 205 - }, - { - "id": 351, - "damage": 9 - } - ], - "output": [ - { - "id": 218, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 206 - } - }, - "output": [ - { - "id": -162, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": 1 - } - }, - "output": [ - { - "id": 134, - "count": 4 - } - ], - "shape": [ - "A ", - "AA ", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - } - }, - "output": [ - { - "id": 280, - "count": 4 - } - ], - "shape": [ - "A", - "A" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 179 - } - }, - "output": [ - { - "id": 182, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 168, - "damage": 2 - } - }, - "output": [ - { - "id": 182, - "damage": 4, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 168, - "damage": 1 - } - }, - "output": [ - { - "id": 182, - "damage": 3, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 201 - } - }, - "output": [ - { - "id": 182, - "damage": 1, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 48 - } - }, - "output": [ - { - "id": 182, - "damage": 5, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 215 - } - }, - "output": [ - { - "id": 182, - "damage": 7, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 179, - "damage": 1 - } - }, - "output": [ - { - "id": 182, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 24, - "damage": 3 - } - }, - "output": [ - { - "id": 182, - "damage": 6, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 5 - } - }, - "output": [ - { - "id": -162, - "damage": 3, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 3 - } - }, - "output": [ - { - "id": -162, - "damage": 4, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 1 - } - }, - "output": [ - { - "id": -162, - "damage": 6, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 2 - } - }, - "output": [ - { - "id": -162, - "damage": 7, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 6 - } - }, - "output": [ - { - "id": -162, - "damage": 2, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 1, - "damage": 4 - } - }, - "output": [ - { - "id": -162, - "damage": 5, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 179, - "damage": 3 - } - }, - "output": [ - { - "id": -162, - "damage": 1, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 179, - "damage": 2 - } - }, - "output": [ - { - "id": -166, - "damage": 4, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 24, - "damage": 2 - } - }, - "output": [ - { - "id": -166, - "damage": 3, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 155, - "damage": 3 - } - }, - "output": [ - { - "id": -166, - "damage": 1, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 155 - } - }, - "output": [ - { - "id": 44, - "damage": 6, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 168 - } - }, - "output": [ - { - "id": 182, - "damage": 2, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 24, - "damage": 1 - } - }, - "output": [ - { - "id": 44, - "damage": 1, - "count": 6 - } - ], - "shape": [ - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 270 - } - ], - "shape": [ - "AAA", - " B ", - " B " - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 269 - } - ], - "shape": [ - "A", - "B", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 271 - } - ], - "shape": [ - "AA", - "AB", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 290 - } - ], - "shape": [ - "AA", - " B", - " B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 4, - "uuid": "aecd2294-4b94-434b-8667-4499bb2c9327" - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 10 - } - }, - "output": [ - { - "id": 262, - "damage": 11, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 11 - } - }, - "output": [ - { - "id": 262, - "damage": 12, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 12 - } - }, - "output": [ - { - "id": 262, - "damage": 13, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 13 - } - }, - "output": [ - { - "id": 262, - "damage": 14, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 14 - } - }, - "output": [ - { - "id": 262, - "damage": 15, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 15 - } - }, - "output": [ - { - "id": 262, - "damage": 16, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 16 - } - }, - "output": [ - { - "id": 262, - "damage": 17, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 17 - } - }, - "output": [ - { - "id": 262, - "damage": 18, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 18 - } - }, - "output": [ - { - "id": 262, - "damage": 19, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 19 - } - }, - "output": [ - { - "id": 262, - "damage": 20, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 20 - } - }, - "output": [ - { - "id": 262, - "damage": 21, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 21 - } - }, - "output": [ - { - "id": 262, - "damage": 22, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 22 - } - }, - "output": [ - { - "id": 262, - "damage": 23, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 23 - } - }, - "output": [ - { - "id": 262, - "damage": 24, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 24 - } - }, - "output": [ - { - "id": 262, - "damage": 25, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 25 - } - }, - "output": [ - { - "id": 262, - "damage": 26, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 26 - } - }, - "output": [ - { - "id": 262, - "damage": 27, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 27 - } - }, - "output": [ - { - "id": 262, - "damage": 28, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 28 - } - }, - "output": [ - { - "id": 262, - "damage": 29, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 29 - } - }, - "output": [ - { - "id": 262, - "damage": 30, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 30 - } - }, - "output": [ - { - "id": 262, - "damage": 31, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 31 - } - }, - "output": [ - { - "id": 262, - "damage": 32, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 32 - } - }, - "output": [ - { - "id": 262, - "damage": 33, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 33 - } - }, - "output": [ - { - "id": 262, - "damage": 34, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 34 - } - }, - "output": [ - { - "id": 262, - "damage": 35, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 35 - } - }, - "output": [ - { - "id": 262, - "damage": 36, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 36 - } - }, - "output": [ - { - "id": 262, - "damage": 37, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 37 - } - }, - "output": [ - { - "id": 262, - "damage": 38, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 38 - } - }, - "output": [ - { - "id": 262, - "damage": 39, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 39 - } - }, - "output": [ - { - "id": 262, - "damage": 40, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 40 - } - }, - "output": [ - { - "id": 262, - "damage": 41, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 41 - } - }, - "output": [ - { - "id": 262, - "damage": 42, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 42 - } - }, - "output": [ - { - "id": 262, - "damage": 43, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 5 - } - }, - "output": [ - { - "id": 262, - "damage": 6, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 6 - } - }, - "output": [ - { - "id": 262, - "damage": 7, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 7 - } - }, - "output": [ - { - "id": 262, - "damage": 8, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 8 - } - }, - "output": [ - { - "id": 262, - "damage": 9, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 262 - }, - "B": { - "id": 441, - "damage": 9 - } - }, - "output": [ - { - "id": 262, - "damage": 10, - "count": 8 - } - ], - "shape": [ - "AAA", - "ABA", - "AAA" - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 1, - "input": { - "A": { - "id": 5, - "damage": -1 - }, - "B": { - "id": 280, - "damage": -1 - } - }, - "output": [ - { - "id": 268 - } - ], - "shape": [ - "A", - "A", - "B" - ], - "block": "crafting_table", - "priority": 0 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 10 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 5 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 11 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 4 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 12 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 3 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 13 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 2 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 14 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 1 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 15 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 16 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 15 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 17 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 18 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 19 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 1 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 14 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 2 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 13 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 3 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 12 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 4 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 11 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 5 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 10 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 6 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 9 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 7 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 8 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 8 - }, - { - "id": 35, - "damage": 6 - } - ], - "output": [ - { - "id": 35, - "damage": 7 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 15 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 14 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 5 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 4 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 3 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 2 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 1 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 13 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 12 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 11 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 10 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 9 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 8 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 0, - "input": [ - { - "id": 351, - "damage": 9 - }, - { - "id": 35, - "damage": 7 - } - ], - "output": [ - { - "id": 35, - "damage": 6 - } - ], - "block": "crafting_table", - "priority": 50 - }, - { - "type": 3, - "input": { - "id": -288, - "damage": -1 - }, - "output": { - "id": 266 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -288, - "damage": -1 - }, - "output": { - "id": 266 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": -274, - "damage": -1 - }, - "output": { - "id": -280 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -271, - "damage": -1 - }, - "output": { - "id": 752 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -271, - "damage": -1 - }, - "output": { - "id": 752 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": -212 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -212, - "damage": 1 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -212, - "damage": 2 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -212, - "damage": 3 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -212, - "damage": 4 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -212, - "damage": 5 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -212, - "damage": 8 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -212, - "damage": 9 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -212, - "damage": 10 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -212, - "damage": 11 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -212, - "damage": 12 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -212, - "damage": 13 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -156, - "damage": -1 - }, - "output": { - "id": 351, - "damage": 10 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -10, - "damage": -1 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -9, - "damage": -1 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -8, - "damage": -1 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -7, - "damage": -1 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -6, - "damage": -1 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": -5, - "damage": -1 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 1 - }, - "output": { - "id": -183 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 4, - "damage": -1 - }, - "output": { - "id": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 12, - "damage": -1 - }, - "output": { - "id": 20 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 14, - "damage": -1 - }, - "output": { - "id": 266 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 14, - "damage": -1 - }, - "output": { - "id": 266 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 15, - "damage": -1 - }, - "output": { - "id": 265 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 15, - "damage": -1 - }, - "output": { - "id": 265 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 16, - "damage": -1 - }, - "output": { - "id": 263 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 16, - "damage": -1 - }, - "output": { - "id": 263 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 17 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 17, - "damage": 1 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 17, - "damage": 2 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 17, - "damage": 3 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 19, - "damage": 1 - }, - "output": { - "id": 19 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 21, - "damage": -1 - }, - "output": { - "id": 351, - "damage": 4 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 21, - "damage": -1 - }, - "output": { - "id": 351, - "damage": 4 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 24, - "damage": -1 - }, - "output": { - "id": 24, - "damage": 3 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 56, - "damage": -1 - }, - "output": { - "id": 264 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 56, - "damage": -1 - }, - "output": { - "id": 264 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 73, - "damage": -1 - }, - "output": { - "id": 331 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 73, - "damage": -1 - }, - "output": { - "id": 331 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 81, - "damage": -1 - }, - "output": { - "id": 351, - "damage": 2 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 82, - "damage": -1 - }, - "output": { - "id": 172 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 87, - "damage": -1 - }, - "output": { - "id": 405 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 98 - }, - "output": { - "id": 98, - "damage": 2 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 112, - "damage": -1 - }, - "output": { - "id": -303 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 129, - "damage": -1 - }, - "output": { - "id": 388 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 129, - "damage": -1 - }, - "output": { - "id": 388 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 153, - "damage": -1 - }, - "output": { - "id": 406 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 153, - "damage": -1 - }, - "output": { - "id": 406 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 155 - }, - "output": { - "id": 155, - "damage": 3 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159 - }, - "output": { - "id": 220 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 1 - }, - "output": { - "id": 221 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 2 - }, - "output": { - "id": 222 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 3 - }, - "output": { - "id": 223 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 4 - }, - "output": { - "id": 224 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 5 - }, - "output": { - "id": 225 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 6 - }, - "output": { - "id": 226 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 7 - }, - "output": { - "id": 227 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 8 - }, - "output": { - "id": 228 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 9 - }, - "output": { - "id": 229 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 10 - }, - "output": { - "id": 219 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 11 - }, - "output": { - "id": 231 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 12 - }, - "output": { - "id": 232 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 13 - }, - "output": { - "id": 233 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 14 - }, - "output": { - "id": 234 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 159, - "damage": 15 - }, - "output": { - "id": 235 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 162 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 162, - "damage": 1 - }, - "output": { - "id": 263, - "damage": 1 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 179, - "damage": -1 - }, - "output": { - "id": 179, - "damage": 3 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 256, - "damage": -1 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 256, - "damage": -1 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 257, - "damage": -1 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 257, - "damage": -1 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 258, - "damage": -1 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 258, - "damage": -1 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 267, - "damage": -1 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 267, - "damage": -1 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 283, - "damage": -1 - }, - "output": { - "id": 371 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 283, - "damage": -1 - }, - "output": { - "id": 371 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 284, - "damage": -1 - }, - "output": { - "id": 371 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 284, - "damage": -1 - }, - "output": { - "id": 371 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 285, - "damage": -1 - }, - "output": { - "id": 371 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 285, - "damage": -1 - }, - "output": { - "id": 371 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 286, - "damage": -1 - }, - "output": { - "id": 371 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 286, - "damage": -1 - }, - "output": { - "id": 371 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 292, - "damage": -1 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 292, - "damage": -1 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 294, - "damage": -1 - }, - "output": { - "id": 371 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 294, - "damage": -1 - }, - "output": { - "id": 371 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 302 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 302 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 303 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 303 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 304 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 304 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 305 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 305 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 306 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 306 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 307 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 307 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 308 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 308 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 309 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 309 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 314 - }, - "output": { - "id": 371 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 314 - }, - "output": { - "id": 371 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 315 - }, - "output": { - "id": 371 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 315 - }, - "output": { - "id": 371 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 316 - }, - "output": { - "id": 371 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 316 - }, - "output": { - "id": 371 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 317 - }, - "output": { - "id": 371 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 317 - }, - "output": { - "id": 371 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 319, - "damage": -1 - }, - "output": { - "id": 320 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "id": 319, - "damage": -1 - }, - "output": { - "id": 320 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 319, - "damage": -1 - }, - "output": { - "id": 320 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "id": 319, - "damage": -1 - }, - "output": { - "id": 320 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "id": 335, - "damage": -1 - }, - "output": { - "id": 464 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "id": 335, - "damage": -1 - }, - "output": { - "id": 464 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 335, - "damage": -1 - }, - "output": { - "id": 464 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "id": 335, - "damage": -1 - }, - "output": { - "id": 464 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "id": 337, - "damage": -1 - }, - "output": { - "id": 336 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 349, - "damage": -1 - }, - "output": { - "id": 350 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "id": 349, - "damage": -1 - }, - "output": { - "id": 350 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 349, - "damage": -1 - }, - "output": { - "id": 350 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "id": 349, - "damage": -1 - }, - "output": { - "id": 350 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "id": 363, - "damage": -1 - }, - "output": { - "id": 364 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "id": 363, - "damage": -1 - }, - "output": { - "id": 364 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 363, - "damage": -1 - }, - "output": { - "id": 364 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "id": 363, - "damage": -1 - }, - "output": { - "id": 364 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "id": 365, - "damage": -1 - }, - "output": { - "id": 366 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "id": 365, - "damage": -1 - }, - "output": { - "id": 366 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 365, - "damage": -1 - }, - "output": { - "id": 366 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "id": 365, - "damage": -1 - }, - "output": { - "id": 366 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "id": 392, - "damage": -1 - }, - "output": { - "id": 393 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "id": 392, - "damage": -1 - }, - "output": { - "id": 393 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 392, - "damage": -1 - }, - "output": { - "id": 393 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "id": 392, - "damage": -1 - }, - "output": { - "id": 393 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "id": 411, - "damage": -1 - }, - "output": { - "id": 412 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "id": 411, - "damage": -1 - }, - "output": { - "id": 412 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 411, - "damage": -1 - }, - "output": { - "id": 412 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "id": 411, - "damage": -1 - }, - "output": { - "id": 412 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "id": 417, - "damage": -1 - }, - "output": { - "id": 452 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 417, - "damage": -1 - }, - "output": { - "id": 452 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 418, - "damage": -1 - }, - "output": { - "id": 371 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 418, - "damage": -1 - }, - "output": { - "id": 371 - }, - "block": "blast_furnace" - }, - { - "type": 3, - "input": { - "id": 423, - "damage": -1 - }, - "output": { - "id": 424 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "id": 423, - "damage": -1 - }, - "output": { - "id": 424 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 423, - "damage": -1 - }, - "output": { - "id": 424 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "id": 423, - "damage": -1 - }, - "output": { - "id": 424 - }, - "block": "campfire" - }, - { - "type": 3, - "input": { - "id": 432, - "damage": -1 - }, - "output": { - "id": 433 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 460, - "damage": -1 - }, - "output": { - "id": 463 - }, - "block": "smoker" - }, - { - "type": 3, - "input": { - "id": 460, - "damage": -1 - }, - "output": { - "id": 463 - }, - "block": "furnace" - }, - { - "type": 3, - "input": { - "id": 460, - "damage": -1 - }, - "output": { - "id": 463 - }, - "block": "soul_campfire" - }, - { - "type": 3, - "input": { - "id": 460, - "damage": -1 - }, - "output": { - "id": 463 - }, - "block": "campfire" - } - ], - "potionMixes": [ - { - "inputId": 373, - "inputMeta": 17, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 42 - }, - { - "inputId": 438, - "inputMeta": 17, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 42 - }, - { - "inputId": 441, - "inputMeta": 17, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 42 - }, - { - "inputId": 373, - "inputMeta": 27, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 24 - }, - { - "inputId": 438, - "inputMeta": 27, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 24 - }, - { - "inputId": 441, - "inputMeta": 27, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 24 - }, - { - "inputId": 373, - "inputMeta": 4, - "reagentId": 377, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 31 - }, - { - "inputId": 438, - "inputMeta": 4, - "reagentId": 377, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 31 - }, - { - "inputId": 441, - "inputMeta": 4, - "reagentId": 377, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 31 - }, - { - "inputId": 373, - "inputMeta": 4, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 34 - }, - { - "inputId": 438, - "inputMeta": 4, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 34 - }, - { - "inputId": 441, - "inputMeta": 4, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 34 - }, - { - "inputId": 373, - "inputMeta": 4, - "reagentId": 370, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 28 - }, - { - "inputId": 438, - "inputMeta": 4, - "reagentId": 370, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 28 - }, - { - "inputId": 441, - "inputMeta": 4, - "reagentId": 370, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 28 - }, - { - "inputId": 373, - "inputMeta": 4, - "reagentId": 396, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 5 - }, - { - "inputId": 438, - "inputMeta": 4, - "reagentId": 396, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 5 - }, - { - "inputId": 441, - "inputMeta": 4, - "reagentId": 396, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 5 - }, - { - "inputId": 373, - "inputMeta": 4, - "reagentId": 378, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 12 - }, - { - "inputId": 438, - "inputMeta": 4, - "reagentId": 378, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 12 - }, - { - "inputId": 441, - "inputMeta": 4, - "reagentId": 378, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 12 - }, - { - "inputId": 373, - "inputMeta": 4, - "reagentId": 470, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 40 - }, - { - "inputId": 438, - "inputMeta": 4, - "reagentId": 470, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 40 - }, - { - "inputId": 441, - "inputMeta": 4, - "reagentId": 470, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 40 - }, - { - "inputId": 373, - "inputMeta": 4, - "reagentId": 462, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 19 - }, - { - "inputId": 438, - "inputMeta": 4, - "reagentId": 462, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 19 - }, - { - "inputId": 441, - "inputMeta": 4, - "reagentId": 462, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 19 - }, - { - "inputId": 373, - "inputMeta": 4, - "reagentId": 414, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 9 - }, - { - "inputId": 438, - "inputMeta": 4, - "reagentId": 414, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 9 - }, - { - "inputId": 441, - "inputMeta": 4, - "reagentId": 414, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 9 - }, - { - "inputId": 373, - "inputMeta": 4, - "reagentId": 382, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 21 - }, - { - "inputId": 438, - "inputMeta": 4, - "reagentId": 382, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 21 - }, - { - "inputId": 441, - "inputMeta": 4, - "reagentId": 382, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 21 - }, - { - "inputId": 373, - "inputMeta": 4, - "reagentId": 375, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 25 - }, - { - "inputId": 438, - "inputMeta": 4, - "reagentId": 375, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 25 - }, - { - "inputId": 441, - "inputMeta": 4, - "reagentId": 375, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 25 - }, - { - "inputId": 373, - "inputMeta": 4, - "reagentId": 353, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 14 - }, - { - "inputId": 438, - "inputMeta": 4, - "reagentId": 353, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 14 - }, - { - "inputId": 441, - "inputMeta": 4, - "reagentId": 353, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 14 - }, - { - "inputId": 373, - "inputMeta": 4, - "reagentId": 469, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 37 - }, - { - "inputId": 438, - "inputMeta": 4, - "reagentId": 469, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 37 - }, - { - "inputId": 441, - "inputMeta": 4, - "reagentId": 469, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 37 - }, - { - "inputId": 373, - "inputMeta": 12, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 13 - }, - { - "inputId": 438, - "inputMeta": 12, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 13 - }, - { - "inputId": 441, - "inputMeta": 12, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 13 - }, - { - "inputId": 373, - "inputMeta": 23, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 24 - }, - { - "inputId": 438, - "inputMeta": 23, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 24 - }, - { - "inputId": 441, - "inputMeta": 23, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 24 - }, - { - "inputId": 373, - "inputMeta": 21, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 23 - }, - { - "inputId": 438, - "inputMeta": 21, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 23 - }, - { - "inputId": 441, - "inputMeta": 21, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 23 - }, - { - "inputId": 373, - "inputMeta": 21, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 22 - }, - { - "inputId": 438, - "inputMeta": 21, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 22 - }, - { - "inputId": 441, - "inputMeta": 21, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 22 - }, - { - "inputId": 373, - "inputMeta": 7, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 8 - }, - { - "inputId": 438, - "inputMeta": 7, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 8 - }, - { - "inputId": 441, - "inputMeta": 7, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 8 - }, - { - "inputId": 373, - "inputMeta": 9, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 17 - }, - { - "inputId": 438, - "inputMeta": 9, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 17 - }, - { - "inputId": 441, - "inputMeta": 9, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 17 - }, - { - "inputId": 373, - "inputMeta": 9, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 11 - }, - { - "inputId": 438, - "inputMeta": 9, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 11 - }, - { - "inputId": 441, - "inputMeta": 9, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 11 - }, - { - "inputId": 373, - "inputMeta": 9, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 10 - }, - { - "inputId": 438, - "inputMeta": 9, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 10 - }, - { - "inputId": 441, - "inputMeta": 9, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 10 - }, - { - "inputId": 373, - "inputMeta": 6, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 8 - }, - { - "inputId": 438, - "inputMeta": 6, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 8 - }, - { - "inputId": 441, - "inputMeta": 6, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 8 - }, - { - "inputId": 373, - "inputMeta": 15, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 18 - }, - { - "inputId": 438, - "inputMeta": 15, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 18 - }, - { - "inputId": 441, - "inputMeta": 15, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 18 - }, - { - "inputId": 373, - "inputMeta": 10, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 18 - }, - { - "inputId": 438, - "inputMeta": 10, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 18 - }, - { - "inputId": 441, - "inputMeta": 10, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 18 - }, - { - "inputId": 373, - "inputMeta": 2, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 35 - }, - { - "inputId": 438, - "inputMeta": 2, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 35 - }, - { - "inputId": 441, - "inputMeta": 2, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 35 - }, - { - "inputId": 373, - "inputMeta": 26, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 23 - }, - { - "inputId": 438, - "inputMeta": 26, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 23 - }, - { - "inputId": 441, - "inputMeta": 26, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 23 - }, - { - "inputId": 373, - "inputMeta": 32, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 35 - }, - { - "inputId": 438, - "inputMeta": 32, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 35 - }, - { - "inputId": 441, - "inputMeta": 32, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 35 - }, - { - "inputId": 373, - "inputMeta": 1, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 34 - }, - { - "inputId": 438, - "inputMeta": 1, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 34 - }, - { - "inputId": 441, - "inputMeta": 1, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 34 - }, - { - "inputId": 373, - "inputMeta": 5, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 7 - }, - { - "inputId": 438, - "inputMeta": 5, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 7 - }, - { - "inputId": 441, - "inputMeta": 5, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 7 - }, - { - "inputId": 373, - "inputMeta": 5, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 6 - }, - { - "inputId": 438, - "inputMeta": 5, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 6 - }, - { - "inputId": 441, - "inputMeta": 5, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 6 - }, - { - "inputId": 373, - "inputMeta": 25, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 23 - }, - { - "inputId": 438, - "inputMeta": 25, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 23 - }, - { - "inputId": 441, - "inputMeta": 25, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 23 - }, - { - "inputId": 373, - "inputMeta": 25, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 27 - }, - { - "inputId": 438, - "inputMeta": 25, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 27 - }, - { - "inputId": 441, - "inputMeta": 25, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 27 - }, - { - "inputId": 373, - "inputMeta": 25, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 26 - }, - { - "inputId": 438, - "inputMeta": 25, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 26 - }, - { - "inputId": 441, - "inputMeta": 25, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 26 - }, - { - "inputId": 373, - "inputMeta": 28, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 30 - }, - { - "inputId": 438, - "inputMeta": 28, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 30 - }, - { - "inputId": 441, - "inputMeta": 28, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 30 - }, - { - "inputId": 373, - "inputMeta": 28, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 29 - }, - { - "inputId": 438, - "inputMeta": 28, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 29 - }, - { - "inputId": 441, - "inputMeta": 28, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 29 - }, - { - "inputId": 373, - "inputMeta": 17, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 18 - }, - { - "inputId": 438, - "inputMeta": 17, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 18 - }, - { - "inputId": 441, - "inputMeta": 17, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 18 - }, - { - "inputId": 373, - "inputMeta": 40, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 41 - }, - { - "inputId": 438, - "inputMeta": 40, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 41 - }, - { - "inputId": 441, - "inputMeta": 40, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 41 - }, - { - "inputId": 373, - "inputMeta": 31, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 34 - }, - { - "inputId": 438, - "inputMeta": 31, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 34 - }, - { - "inputId": 441, - "inputMeta": 31, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 34 - }, - { - "inputId": 373, - "inputMeta": 31, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 33 - }, - { - "inputId": 438, - "inputMeta": 31, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 33 - }, - { - "inputId": 441, - "inputMeta": 31, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 33 - }, - { - "inputId": 373, - "inputMeta": 31, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 32 - }, - { - "inputId": 438, - "inputMeta": 31, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 32 - }, - { - "inputId": 441, - "inputMeta": 31, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 32 - }, - { - "inputId": 373, - "inputMeta": 22, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 24 - }, - { - "inputId": 438, - "inputMeta": 22, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 24 - }, - { - "inputId": 441, - "inputMeta": 22, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 24 - }, - { - "inputId": 373, - "inputMeta": 33, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 34 - }, - { - "inputId": 438, - "inputMeta": 33, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 34 - }, - { - "inputId": 441, - "inputMeta": 33, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 34 - }, - { - "inputId": 373, - "inputMeta": 14, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 17 - }, - { - "inputId": 438, - "inputMeta": 14, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 17 - }, - { - "inputId": 441, - "inputMeta": 14, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 17 - }, - { - "inputId": 373, - "inputMeta": 14, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 16 - }, - { - "inputId": 438, - "inputMeta": 14, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 16 - }, - { - "inputId": 441, - "inputMeta": 14, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 16 - }, - { - "inputId": 373, - "inputMeta": 14, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 15 - }, - { - "inputId": 438, - "inputMeta": 14, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 15 - }, - { - "inputId": 441, - "inputMeta": 14, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 15 - }, - { - "inputId": 373, - "inputMeta": 3, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 34 - }, - { - "inputId": 438, - "inputMeta": 3, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 34 - }, - { - "inputId": 441, - "inputMeta": 3, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 34 - }, - { - "inputId": 373, - "inputMeta": 37, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 39 - }, - { - "inputId": 438, - "inputMeta": 37, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 39 - }, - { - "inputId": 441, - "inputMeta": 37, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 39 - }, - { - "inputId": 373, - "inputMeta": 37, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 38 - }, - { - "inputId": 438, - "inputMeta": 37, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 38 - }, - { - "inputId": 441, - "inputMeta": 37, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 38 - }, - { - "inputId": 373, - "inputMeta": 0, - "reagentId": 377, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 1 - }, - { - "inputId": 438, - "inputMeta": 0, - "reagentId": 377, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 1 - }, - { - "inputId": 441, - "inputMeta": 0, - "reagentId": 377, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 1 - }, - { - "inputId": 373, - "inputMeta": 19, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 20 - }, - { - "inputId": 438, - "inputMeta": 19, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 20 - }, - { - "inputId": 441, - "inputMeta": 19, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 20 - }, - { - "inputId": 373, - "inputMeta": 0, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 34 - }, - { - "inputId": 438, - "inputMeta": 0, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 34 - }, - { - "inputId": 441, - "inputMeta": 0, - "reagentId": 376, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 34 - }, - { - "inputId": 373, - "inputMeta": 0, - "reagentId": 370, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 1 - }, - { - "inputId": 438, - "inputMeta": 0, - "reagentId": 370, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 1 - }, - { - "inputId": 441, - "inputMeta": 0, - "reagentId": 370, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 1 - }, - { - "inputId": 373, - "inputMeta": 0, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 3 - }, - { - "inputId": 438, - "inputMeta": 0, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 3 - }, - { - "inputId": 441, - "inputMeta": 0, - "reagentId": 348, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 3 - }, - { - "inputId": 373, - "inputMeta": 0, - "reagentId": 378, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 1 - }, - { - "inputId": 438, - "inputMeta": 0, - "reagentId": 378, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 1 - }, - { - "inputId": 441, - "inputMeta": 0, - "reagentId": 378, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 1 - }, - { - "inputId": 373, - "inputMeta": 0, - "reagentId": 372, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 4 - }, - { - "inputId": 438, - "inputMeta": 0, - "reagentId": 372, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 4 - }, - { - "inputId": 441, - "inputMeta": 0, - "reagentId": 372, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 4 - }, - { - "inputId": 373, - "inputMeta": 0, - "reagentId": 414, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 1 - }, - { - "inputId": 438, - "inputMeta": 0, - "reagentId": 414, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 1 - }, - { - "inputId": 441, - "inputMeta": 0, - "reagentId": 414, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 1 - }, - { - "inputId": 373, - "inputMeta": 0, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 1 - }, - { - "inputId": 438, - "inputMeta": 0, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 1 - }, - { - "inputId": 441, - "inputMeta": 0, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 1 - }, - { - "inputId": 373, - "inputMeta": 0, - "reagentId": 382, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 1 - }, - { - "inputId": 438, - "inputMeta": 0, - "reagentId": 382, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 1 - }, - { - "inputId": 441, - "inputMeta": 0, - "reagentId": 382, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 1 - }, - { - "inputId": 373, - "inputMeta": 0, - "reagentId": 375, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 1 - }, - { - "inputId": 438, - "inputMeta": 0, - "reagentId": 375, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 1 - }, - { - "inputId": 441, - "inputMeta": 0, - "reagentId": 375, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 1 - }, - { - "inputId": 373, - "inputMeta": 0, - "reagentId": 353, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 1 - }, - { - "inputId": 438, - "inputMeta": 0, - "reagentId": 353, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 1 - }, - { - "inputId": 441, - "inputMeta": 0, - "reagentId": 353, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 1 - }, - { - "inputId": 373, - "inputMeta": 34, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 373, - "outputMeta": 35 - }, - { - "inputId": 438, - "inputMeta": 34, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 438, - "outputMeta": 35 - }, - { - "inputId": 441, - "inputMeta": 34, - "reagentId": 331, - "reagentMeta": 0, - "outputId": 441, - "outputMeta": 35 - } - ], - "containerMixes": [ - { - "inputId": 373, - "reagentId": 289, - "outputId": 438 - }, - { - "inputId": 438, - "reagentId": 437, - "outputId": 441 - } - ] -} \ No newline at end of file +{"recipes":[{"type":4,"uuid":"442d85ed-8272-4543-a6f1-418f90ded05d"},{"type":4,"uuid":"8b36268c-1829-483c-a0f1-993b7156a8f2"},{"type":4,"uuid":"602234e4-cac1-4353-8bb7-b1ebff70024b"},{"type":0,"input":[{"id":339,"damage":-1},{"id":345,"damage":-1}],"output":[{"id":395,"damage":2}],"block":"cartography_table","priority":0},{"type":0,"input":[{"id":339,"damage":-1}],"output":[{"id":395}],"block":"cartography_table","priority":0},{"type":4,"uuid":"98c84b38-1085-46bd-b1ce-dd38c159e6cc"},{"type":0,"input":[{"id":1,"damage":5}],"output":[{"id":-162,"damage":3,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":1,"damage":5}],"output":[{"id":-171}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":1,"damage":5}],"output":[{"id":139,"damage":4}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-273,"damage":-1}],"output":[{"id":-282,"count":2}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-273,"damage":-1}],"output":[{"id":-276}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-273,"damage":-1}],"output":[{"id":-277}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":45}],"output":[{"id":44,"damage":4,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":-291,"damage":-1}],"output":[{"id":-284,"count":2}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":45}],"output":[{"id":108}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":-291,"damage":-1}],"output":[{"id":-275}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":45}],"output":[{"id":139,"damage":6}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-291,"damage":-1}],"output":[{"id":-278}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-291,"damage":-1}],"output":[{"id":-274}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-291,"damage":-1}],"output":[{"id":-279}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":112,"damage":-1}],"output":[{"id":-302}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-273,"damage":-1}],"output":[{"id":-279}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":4}],"output":[{"id":44,"damage":3,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":4}],"output":[{"id":67}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":4}],"output":[{"id":139}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":168,"damage":1}],"output":[{"id":182,"damage":3,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":168,"damage":1}],"output":[{"id":-3}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":1,"damage":3}],"output":[{"id":-162,"damage":4,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":1,"damage":3}],"output":[{"id":-170}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":1,"damage":3}],"output":[{"id":139,"damage":3}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":1}],"output":[{"id":-166,"damage":2,"count":2}],"block":"stonecutter","priority":5},{"type":0,"input":[{"id":121}],"output":[{"id":-162,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":206}],"output":[{"id":-162,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":121}],"output":[{"id":-178}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":206}],"output":[{"id":-178}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":121}],"output":[{"id":139,"damage":10}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":206}],"output":[{"id":139,"damage":10}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":121}],"output":[{"id":206}],"block":"stonecutter","priority":3},{"type":0,"input":[{"id":1,"damage":1}],"output":[{"id":-162,"damage":6,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":1,"damage":1}],"output":[{"id":-169}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":1,"damage":1}],"output":[{"id":139,"damage":2}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":48}],"output":[{"id":182,"damage":5,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":48}],"output":[{"id":-179}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":48}],"output":[{"id":139,"damage":1}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":98,"damage":1}],"output":[{"id":-166,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":98,"damage":1}],"output":[{"id":-175}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":98,"damage":1}],"output":[{"id":139,"damage":8}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":112}],"output":[{"id":44,"damage":7,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":112}],"output":[{"id":114}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":112}],"output":[{"id":139,"damage":9}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":1,"damage":5}],"output":[{"id":1,"damage":6}],"block":"stonecutter","priority":3},{"type":0,"input":[{"id":1,"damage":5}],"output":[{"id":-162,"damage":2,"count":2}],"block":"stonecutter","priority":4},{"type":0,"input":[{"id":1,"damage":6}],"output":[{"id":-162,"damage":2,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":1,"damage":5}],"output":[{"id":-174}],"block":"stonecutter","priority":5},{"type":0,"input":[{"id":1,"damage":6}],"output":[{"id":-174}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":-234,"damage":-1}],"output":[{"id":-235}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-273,"damage":-1}],"output":[{"id":-284,"count":2}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-273,"damage":-1}],"output":[{"id":-275}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-273,"damage":-1}],"output":[{"id":-278}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-273,"damage":-1}],"output":[{"id":-274}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":1,"damage":3}],"output":[{"id":1,"damage":4}],"block":"stonecutter","priority":3},{"type":0,"input":[{"id":1,"damage":3}],"output":[{"id":-162,"damage":5,"count":2}],"block":"stonecutter","priority":4},{"type":0,"input":[{"id":1,"damage":4}],"output":[{"id":-162,"damage":5,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":1,"damage":3}],"output":[{"id":-173}],"block":"stonecutter","priority":5},{"type":0,"input":[{"id":1,"damage":4}],"output":[{"id":-173}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":-273,"damage":-1}],"output":[{"id":-291}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":1,"damage":1}],"output":[{"id":1,"damage":2}],"block":"stonecutter","priority":3},{"type":0,"input":[{"id":1,"damage":1}],"output":[{"id":-162,"damage":7,"count":2}],"block":"stonecutter","priority":4},{"type":0,"input":[{"id":1,"damage":2}],"output":[{"id":-162,"damage":7,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":1,"damage":1}],"output":[{"id":-172}],"block":"stonecutter","priority":5},{"type":0,"input":[{"id":1,"damage":2}],"output":[{"id":-172}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":-273,"damage":-1}],"output":[{"id":-293,"count":2}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-273,"damage":-1}],"output":[{"id":-292}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-273,"damage":-1}],"output":[{"id":-297}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":168,"damage":2}],"output":[{"id":182,"damage":4,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":168,"damage":2}],"output":[{"id":-4}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":168}],"output":[{"id":182,"damage":2,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":168}],"output":[{"id":-2}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":168}],"output":[{"id":139,"damage":11}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":201}],"output":[{"id":201,"damage":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":201}],"output":[{"id":182,"damage":1,"count":2}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":201}],"output":[{"id":203}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":155}],"output":[{"id":-304}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":155}],"output":[{"id":155,"damage":1}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":155}],"output":[{"id":155,"damage":2}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":155}],"output":[{"id":44,"damage":6,"count":2}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":155}],"output":[{"id":156}],"block":"stonecutter","priority":3},{"type":0,"input":[{"id":215}],"output":[{"id":182,"damage":7,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":215}],"output":[{"id":-184}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":215}],"output":[{"id":139,"damage":13}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":179}],"output":[{"id":182,"count":2}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":179}],"output":[{"id":179,"damage":2}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":179}],"output":[{"id":179,"damage":1}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":179}],"output":[{"id":180}],"block":"stonecutter","priority":3},{"type":0,"input":[{"id":179}],"output":[{"id":139,"damage":12}],"block":"stonecutter","priority":4},{"type":0,"input":[{"id":24}],"output":[{"id":44,"damage":1,"count":2}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":24}],"output":[{"id":24,"damage":2}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":24}],"output":[{"id":24,"damage":1}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":24}],"output":[{"id":128}],"block":"stonecutter","priority":3},{"type":0,"input":[{"id":24}],"output":[{"id":139,"damage":5}],"block":"stonecutter","priority":4},{"type":0,"input":[{"id":-291,"damage":-1}],"output":[{"id":-293,"count":2}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-274,"damage":-1}],"output":[{"id":-284,"count":2}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-183}],"output":[{"id":44,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":155,"damage":3}],"output":[{"id":-166,"damage":1,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":155,"damage":3}],"output":[{"id":-185}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":179,"damage":3}],"output":[{"id":-162,"damage":1,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":179,"damage":3}],"output":[{"id":-176}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":24,"damage":3}],"output":[{"id":182,"damage":6,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":24,"damage":3}],"output":[{"id":-177}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":-291,"damage":-1}],"output":[{"id":-292}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":1}],"output":[{"id":-180}],"block":"stonecutter","priority":6},{"type":0,"input":[{"id":1}],"output":[{"id":98}],"block":"stonecutter","priority":4},{"type":0,"input":[{"id":1}],"output":[{"id":98,"damage":3}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":1}],"output":[{"id":44,"damage":5,"count":2}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":98}],"output":[{"id":44,"damage":5,"count":2}],"block":"stonecutter","priority":0},{"type":0,"input":[{"id":1}],"output":[{"id":109}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":98}],"output":[{"id":109}],"block":"stonecutter","priority":1},{"type":0,"input":[{"id":1}],"output":[{"id":139,"damage":7}],"block":"stonecutter","priority":3},{"type":0,"input":[{"id":98}],"output":[{"id":139,"damage":7}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-291,"damage":-1}],"output":[{"id":-297}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-274,"damage":-1}],"output":[{"id":-278}],"block":"stonecutter","priority":2},{"type":0,"input":[{"id":-274,"damage":-1}],"output":[{"id":-275}],"block":"stonecutter","priority":2},{"type":1,"input":{"A":{"id":5,"damage":-1},"B":{"id":340,"damage":-1}},"output":[{"id":47}],"shape":["AAA","BBB","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":-1}},"output":[{"id":281,"count":4}],"shape":["A A"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":4}},"output":[{"id":-140}],"shape":["A"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":2}},"output":[{"id":-141}],"shape":["A"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":5}},"output":[{"id":-142}],"shape":["A"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":3}},"output":[{"id":-143}],"shape":["A"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":1}},"output":[{"id":-144}],"shape":["A"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":-1}},"output":[{"id":54}],"shape":["AAA","A A","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20},"B":{"id":406,"damage":-1},"C":{"id":158,"damage":-1}},"output":[{"id":151}],"shape":["AAA","BBB","CCC"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":377,"damage":-1},{"id":263,"damage":1},{"id":289,"damage":-1}],"output":[{"id":385,"count":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":377,"damage":-1},{"id":263,"damage":-1},{"id":289,"damage":-1}],"output":[{"id":385,"count":3}],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":-1},"B":{"id":264,"damage":-1}},"output":[{"id":84}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":-1},"B":{"id":331,"damage":-1}},"output":[{"id":25}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":4}},"output":[{"id":44,"damage":3,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":112}},"output":[{"id":44,"damage":7,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":24}},"output":[{"id":44,"damage":1,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":0}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":1}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":2}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":3}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":4}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":5}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":6}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":7}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":8}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":9}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":10}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":11}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":12}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":13}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":14}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":35,"damage":15}},"output":[{"id":321}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":-1},"B":{"id":4},"C":{"id":265,"damage":-1},"D":{"id":331,"damage":-1}},"output":[{"id":33,"damage":1}],"shape":["AAA","BCB","BDB"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":4}},"output":[{"id":-150}],"shape":["AA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":2}},"output":[{"id":-151}],"shape":["AA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":5}},"output":[{"id":-152}],"shape":["AA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":3}},"output":[{"id":-153}],"shape":["AA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":1}},"output":[{"id":-154}],"shape":["AA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":-163}},"output":[{"id":280}],"shape":["A","A"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":1}},"output":[{"id":-166,"damage":2,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":98,"damage":1}},"output":[{"id":-166,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":45}},"output":[{"id":44,"damage":4,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":98}},"output":[{"id":44,"damage":5,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":-183}},"output":[{"id":44,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":263,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":50,"count":4}],"shape":["A","B"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":263,"damage":1},"B":{"id":280,"damage":-1}},"output":[{"id":50,"count":4}],"shape":["A","B"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":4}},"output":[{"id":-145,"count":2}],"shape":["AAA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":2}},"output":[{"id":-146,"count":2}],"shape":["AAA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":5}},"output":[{"id":-147,"count":2}],"shape":["AAA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":3}},"output":[{"id":-148,"count":2}],"shape":["AAA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":1}},"output":[{"id":-149,"count":2}],"shape":["AAA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5}},"output":[{"id":96,"count":2}],"shape":["AAA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":280,"damage":-1},"C":{"id":5,"damage":-1}},"output":[{"id":131,"count":2}],"shape":["A","B","C"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5}},"output":[{"id":143}],"shape":["A"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5}},"output":[{"id":72}],"shape":["AA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":-1}},"output":[{"id":58}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":4}},"output":[{"id":163,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":50},{"type":4,"uuid":"d81aaeaf-e172-4440-9225-868df030d27b"},{"type":4,"uuid":"b5c5d105-75a2-4076-af2b-923ea2bf4bf0"},{"type":4,"uuid":"00000000-0000-0000-0000-000000000002"},{"type":1,"input":{"A":{"id":35},"B":{"id":5,"damage":-1}},"output":[{"id":355}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":1},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":1}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":10},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":10}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":11},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":11}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":12},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":12}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":13},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":13}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":14},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":14}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":15},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":15}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":2},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":2}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":3},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":3}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":4},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":4}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":5},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":5}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":6},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":6}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":7},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":7}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":8},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":8}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35,"damage":9},"B":{"id":5,"damage":-1}},"output":[{"id":355,"damage":9}],"shape":["AAA","BBB"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":35},"B":{"id":-242,"damage":-1}},"output":[{"id":355}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":1},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":1}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":10},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":10}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":11},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":11}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":12},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":12}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":13},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":13}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":14},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":14}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":15},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":15}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":2},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":2}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":3},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":3}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":4},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":4}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":5},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":5}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":6},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":6}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":7},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":7}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":8},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":8}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":9},"B":{"id":-242,"damage":-1}},"output":[{"id":355,"damage":9}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35},"B":{"id":-243,"damage":-1}},"output":[{"id":355}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":1},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":1}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":10},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":10}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":11},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":11}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":12},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":12}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":13},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":13}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":14},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":14}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":15},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":15}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":2},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":2}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":3},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":3}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":4},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":4}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":5},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":5}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":6},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":6}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":7},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":7}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":8},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":8}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":9},"B":{"id":-243,"damage":-1}},"output":[{"id":355,"damage":9}],"shape":["AAA","BBB"],"block":"crafting_table","priority":2},{"type":0,"input":[{"id":355,"damage":14},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":10}],"output":[{"id":355,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":11}],"output":[{"id":355,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":12}],"output":[{"id":355,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":13}],"output":[{"id":355,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":14}],"output":[{"id":355,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":15}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":16}],"output":[{"id":355,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":17}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":18}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":19}],"output":[{"id":355}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":1}],"output":[{"id":355,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":2}],"output":[{"id":355,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":3}],"output":[{"id":355,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":4}],"output":[{"id":355,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":5}],"output":[{"id":355,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":6}],"output":[{"id":355,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":7}],"output":[{"id":355,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":6},{"id":351,"damage":8}],"output":[{"id":355,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":15},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":14},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":5},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":4},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":3},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":2},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":1},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":13},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":12},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":11},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":10},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":9},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":8},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":355,"damage":7},{"id":351,"damage":9}],"output":[{"id":355,"damage":6}],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":2}},"output":[{"id":135,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":50},{"type":4,"uuid":"d1ca6b84-338e-4f2f-9c6b-76cc8b4bd98d"},{"type":1,"input":{"A":{"id":44,"damage":6}},"output":[{"id":155,"damage":1}],"shape":["A","A"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":44,"damage":5}},"output":[{"id":98,"damage":3}],"shape":["A","A"],"block":"crafting_table","priority":50},{"type":4,"uuid":"85939755-ba10-4d9d-a4cc-efb7a8e943c4"},{"type":1,"input":{"A":{"id":5,"damage":5}},"output":[{"id":164,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":50},{"type":4,"uuid":"d392b075-4ba1-40ae-8789-af868d56f6ce"},{"type":1,"input":{"A":{"id":182}},"output":[{"id":179,"damage":1}],"shape":["A","A"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":44,"damage":1}},"output":[{"id":24,"damage":1}],"shape":["A","A"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":3}},"output":[{"id":136,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":182,"damage":1}},"output":[{"id":201,"damage":2}],"shape":["A","A"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":287,"damage":-1},"B":{"id":5,"damage":-1}},"output":[{"id":-204}],"shape":["AA","BB"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":4},"B":{"id":269,"damage":-1}},"output":[{"id":333,"damage":4}],"shape":["ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":4}},"output":[{"id":430,"count":3}],"shape":["AA","AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":4},"B":{"id":280,"damage":-1}},"output":[{"id":85,"damage":4,"count":3}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":5,"damage":4}},"output":[{"id":187}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":162}},"output":[{"id":5,"damage":4,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-8,"damage":-1}},"output":[{"id":5,"damage":4,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-212,"damage":12}},"output":[{"id":5,"damage":4,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-212,"damage":4}},"output":[{"id":5,"damage":4,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":4}},"output":[{"id":163,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":162}},"output":[{"id":-212,"damage":4,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-8,"damage":-1}},"output":[{"id":-212,"damage":12,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":4}},"output":[{"id":158,"damage":4,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":280,"damage":-1},"C":{"id":76,"damage":-1}},"output":[{"id":126,"count":6}],"shape":["ABA","ACA","ABA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":1,"damage":3},{"id":4,"damage":-1}],"output":[{"id":1,"damage":5,"count":2}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1,"damage":5}},"output":[{"id":-171,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1,"damage":5}},"output":[{"id":139,"damage":4,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":42,"damage":-1},"B":{"id":265,"damage":-1}},"output":[{"id":145}],"shape":["AAA"," B ","BBB"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":44}},"output":[{"id":425}],"shape":["AAA"," A ","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":318,"damage":-1},"B":{"id":280,"damage":-1},"C":{"id":288,"damage":-1}},"output":[{"id":262,"count":4}],"shape":["A","B","C"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":339,"damage":-1},{"id":45,"damage":-1}],"output":[{"id":434,"damage":4}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":339,"damage":-1},{"id":397,"damage":4}],"output":[{"id":434}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":339,"damage":-1},{"id":38,"damage":8}],"output":[{"id":434,"damage":2}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":339,"damage":-1},{"id":397,"damage":1}],"output":[{"id":434,"damage":1}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":339,"damage":-1},{"id":466,"damage":-1}],"output":[{"id":434,"damage":3}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":339,"damage":-1},{"id":106,"damage":-1}],"output":[{"id":434,"damage":5}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":158,"damage":-1}},"output":[{"id":-203}],"shape":["ABA","A A","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-264,"damage":-1}},"output":[{"id":-203}],"shape":["ABA","A A","ABA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-265,"damage":-1}},"output":[{"id":-203}],"shape":["ABA","A A","ABA"],"block":"crafting_table","priority":2},{"type":0,"input":[{"id":395,"damage":1},{"id":345,"damage":-1}],"output":[{"id":395,"damage":2}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":399,"damage":-1},"C":{"id":49,"damage":-1}},"output":[{"id":138}],"shape":["AAA","ABA","CCC"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":-1},"B":{"id":736,"damage":-1}},"output":[{"id":-219}],"shape":["AAA","BBB","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1},"B":{"id":736,"damage":-1}},"output":[{"id":-219}],"shape":["AAA","BBB","AAA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1},"B":{"id":736,"damage":-1}},"output":[{"id":-219}],"shape":["AAA","BBB","AAA"],"block":"crafting_table","priority":2},{"type":0,"input":[{"id":281,"damage":-1},{"id":457,"damage":-1},{"id":457,"damage":-1},{"id":457,"damage":-1},{"id":457,"damage":-1},{"id":457,"damage":-1},{"id":457,"damage":-1}],"output":[{"id":459}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":2},"B":{"id":269,"damage":-1}},"output":[{"id":333,"damage":2}],"shape":["ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":2}},"output":[{"id":428,"count":3}],"shape":["AA","AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":2},"B":{"id":280,"damage":-1}},"output":[{"id":85,"damage":2,"count":3}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":5,"damage":2}},"output":[{"id":184}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":17,"damage":2}},"output":[{"id":5,"damage":2,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-6,"damage":-1}},"output":[{"id":5,"damage":2,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-212,"damage":10}},"output":[{"id":5,"damage":2,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-212,"damage":2}},"output":[{"id":5,"damage":2,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":2}},"output":[{"id":135,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":17,"damage":2}},"output":[{"id":-212,"damage":2,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-6,"damage":-1}},"output":[{"id":-212,"damage":10,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":2}},"output":[{"id":158,"damage":2,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":15},"B":{"id":280,"damage":-1}},"output":[{"id":446}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":15}},"output":[{"id":171,"damage":15,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":16}},"output":[{"id":171,"damage":15,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":1},{"type":0,"input":[{"id":351,"damage":16},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":15,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":15,"count":8}],"block":"crafting_table","priority":1},{"type":0,"input":[{"id":351}],"output":[{"id":351,"damage":16}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":-216,"damage":-1}],"output":[{"id":351,"damage":16}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":16}},"output":[{"id":241,"damage":15,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351}},"output":[{"id":241,"damage":15,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":241,"damage":15}},"output":[{"id":160,"damage":15,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":16}},"output":[{"id":160,"damage":15,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":16}},"output":[{"id":159,"damage":15,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351}},"output":[{"id":159,"damage":15,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":-273,"damage":-1}},"output":[{"id":-282,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-273,"damage":-1}},"output":[{"id":-276,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-273,"damage":-1}},"output":[{"id":-277,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":61,"damage":-1},"C":{"id":-183,"damage":-1}},"output":[{"id":-196}],"shape":["AAA","ABA","CCC"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":369,"damage":-1}],"output":[{"id":377,"count":2}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":11},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":4}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":11}},"output":[{"id":171,"damage":11,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":18}},"output":[{"id":171,"damage":11,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":18},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":11,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":4},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":11,"count":8}],"block":"crafting_table","priority":1},{"type":0,"input":[{"id":38,"damage":9}],"output":[{"id":351,"damage":18}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":4}],"output":[{"id":351,"damage":18}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":174,"damage":-1}},"output":[{"id":-11}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":18}},"output":[{"id":241,"damage":11,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":4}},"output":[{"id":241,"damage":11,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":241,"damage":11}},"output":[{"id":160,"damage":11,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":18}},"output":[{"id":160,"damage":11,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":18}},"output":[{"id":159,"damage":11,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":4}},"output":[{"id":159,"damage":11,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":5},"B":{"id":269,"damage":-1}},"output":[{"id":333}],"shape":["ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":351,"damage":15}},"output":[{"id":216}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":216,"damage":-1}],"output":[{"id":351,"damage":15,"count":9}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":352,"damage":-1}],"output":[{"id":351,"damage":15,"count":3}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":339},{"id":339},{"id":339},{"id":334}],"output":[{"id":340}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1},"B":{"id":340,"damage":-1}},"output":[{"id":47}],"shape":["AAA","BBB","AAA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1},"B":{"id":340,"damage":-1}},"output":[{"id":47}],"shape":["AAA","BBB","AAA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":287,"damage":-1}},"output":[{"id":261}],"shape":[" AB","A B"," AB"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1}},"output":[{"id":281,"count":4}],"shape":["A A"," A "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1}},"output":[{"id":281,"count":4}],"shape":["A A"," A "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":296,"damage":-1}},"output":[{"id":297}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":369,"damage":-1},"B":{"id":4,"damage":-1}},"output":[{"id":379}],"shape":[" A ","BBB"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":336,"damage":-1}},"output":[{"id":45}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":45,"damage":-1}},"output":[{"id":108,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":45,"damage":-1}},"output":[{"id":139,"damage":6,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":12},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":3}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":12}},"output":[{"id":171,"damage":12,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":17}},"output":[{"id":171,"damage":12,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":17},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":12,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":3},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":12,"count":8}],"block":"crafting_table","priority":1},{"type":0,"input":[{"id":351,"damage":3}],"output":[{"id":351,"damage":17}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":17}},"output":[{"id":241,"damage":12,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":3}},"output":[{"id":241,"damage":12,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":241,"damage":12}},"output":[{"id":160,"damage":12,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":17}},"output":[{"id":160,"damage":12,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":17}},"output":[{"id":159,"damage":12,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":3}},"output":[{"id":159,"damage":12,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":325}],"shape":["A A"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":325,"damage":1},"B":{"id":353,"damage":-1},"C":{"id":344,"damage":-1},"D":{"id":296,"damage":-1}},"output":[{"id":354},{"id":325,"count":3}],"shape":["AAA","BCB","DDD"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":-1},"C":{"id":17,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":1},"C":{"id":17,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":-1},"C":{"id":-225,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":-1},"C":{"id":162,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":-1},"C":{"id":-8,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":-1},"C":{"id":-6,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":-1},"C":{"id":-240,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":-1},"C":{"id":-9,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":-1},"C":{"id":-7,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":-1},"C":{"id":-10,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":-1},"C":{"id":-5,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":-1},"C":{"id":-241,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":-1},"C":{"id":-226,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":263,"damage":-1},"C":{"id":-212,"damage":-1}},"output":[{"id":720}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":346,"damage":-1},"B":{"id":391,"damage":-1}},"output":[{"id":398}],"shape":["A "," B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":339,"damage":-1},"B":{"id":5,"damage":-1}},"output":[{"id":-200}],"shape":["AA","BB","BB"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":339,"damage":-1},"B":{"id":-242,"damage":-1}},"output":[{"id":-200}],"shape":["AA","BB","BB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":339,"damage":-1},"B":{"id":-243,"damage":-1}},"output":[{"id":-200}],"shape":["AA","BB","BB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":380}],"shape":["A A","A A","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":452,"damage":-1},"B":{"id":265,"damage":-1}},"output":[{"id":758}],"shape":["A","B","A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1}},"output":[{"id":54}],"shape":["AAA","A A","AAA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1}},"output":[{"id":54}],"shape":["AAA","A A","AAA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":54,"damage":-1},"B":{"id":328,"damage":-1}},"output":[{"id":342}],"shape":["A","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":44,"damage":7}},"output":[{"id":-302}],"shape":["A","A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-293,"damage":-1}},"output":[{"id":-279}],"shape":["A","A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":337,"damage":-1}},"output":[{"id":82}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1},"B":{"id":331,"damage":-1}},"output":[{"id":347}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":173,"damage":-1}},"output":[{"id":263,"count":9}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":263}},"output":[{"id":173}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":3},"B":{"id":13,"damage":-1}},"output":[{"id":3,"damage":1,"count":4}],"shape":["AB","BA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":4,"damage":-1}},"output":[{"id":67,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":4,"damage":-1}},"output":[{"id":139,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":30,"damage":-1}],"output":[{"id":287,"count":9}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":76,"damage":-1},"B":{"id":406,"damage":-1},"C":{"id":1}},"output":[{"id":404}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":331,"damage":-1}},"output":[{"id":345}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":158,"damage":-1}},"output":[{"id":-213}],"shape":["A A","A A","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-264,"damage":-1}},"output":[{"id":-213}],"shape":["A A","A A","AAA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-265,"damage":-1}},"output":[{"id":-213}],"shape":["A A","A A","AAA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":465,"damage":-1},"B":{"id":467,"damage":-1}},"output":[{"id":-157}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":296,"damage":-1},"B":{"id":351,"damage":3}},"output":[{"id":357,"count":8}],"shape":["ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1}},"output":[{"id":58}],"shape":["AA","AA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1}},"output":[{"id":58}],"shape":["AA","AA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-242,"damage":-1}},"output":[{"id":-260}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1}},"output":[{"id":755,"count":3}],"shape":["AA","AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":-256,"count":3}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-242,"damage":-1}},"output":[{"id":-258}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-225,"damage":-1}},"output":[{"id":-299,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-225,"damage":-1}},"output":[{"id":-242,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-299,"damage":-1}},"output":[{"id":-242,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-300,"damage":-1}},"output":[{"id":-242,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-240,"damage":-1}},"output":[{"id":-242,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1}},"output":[{"id":-262}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":753,"count":3}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1}},"output":[{"id":-264,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1}},"output":[{"id":-254,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1}},"output":[{"id":-246,"count":2}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":265,"damage":-1},"C":{"id":287,"damage":-1},"D":{"id":131,"damage":-1}},"output":[{"id":471}],"shape":["ABA","CDC"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":9},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":6}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":9}},"output":[{"id":171,"damage":9,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":6}},"output":[{"id":171,"damage":9,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":6},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":9,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":18},{"id":351,"damage":2}],"output":[{"id":351,"damage":6,"count":2}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":4},{"id":351,"damage":2}],"output":[{"id":351,"damage":6,"count":2}],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":6}},"output":[{"id":241,"damage":9,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":241,"damage":9}},"output":[{"id":160,"damage":9,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":6}},"output":[{"id":160,"damage":9,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":6}},"output":[{"id":159,"damage":9,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":5},"B":{"id":269,"damage":-1}},"output":[{"id":333,"damage":5}],"shape":["ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":5}},"output":[{"id":431,"count":3}],"shape":["AA","AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":5},"B":{"id":280,"damage":-1}},"output":[{"id":85,"damage":5,"count":3}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":5,"damage":5}},"output":[{"id":186}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":162,"damage":1}},"output":[{"id":5,"damage":5,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-9,"damage":-1}},"output":[{"id":5,"damage":5,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-212,"damage":13}},"output":[{"id":5,"damage":5,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-212,"damage":5}},"output":[{"id":5,"damage":5,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":5}},"output":[{"id":164,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":162,"damage":1}},"output":[{"id":-212,"damage":5,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-9,"damage":-1}},"output":[{"id":-212,"damage":13,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":5}},"output":[{"id":158,"damage":5,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":409,"damage":-1},"B":{"id":351,"damage":16}},"output":[{"id":168,"damage":1}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":409,"damage":-1},"B":{"id":351}},"output":[{"id":168,"damage":1}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":406,"damage":-1},"C":{"id":-264,"damage":-1}},"output":[{"id":151}],"shape":["AAA","BBB","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":406,"damage":-1},"C":{"id":-265,"damage":-1}},"output":[{"id":151}],"shape":["AAA","BBB","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":70,"damage":-1},"C":{"id":331,"damage":-1}},"output":[{"id":28,"count":6}],"shape":["A A","ABA","ACA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":57,"damage":-1}},"output":[{"id":264,"count":9}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":264,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":279}],"shape":["AA","AB"," B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":264,"damage":-1}},"output":[{"id":57}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":264,"damage":-1}},"output":[{"id":313}],"shape":["A A","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":264,"damage":-1}},"output":[{"id":311}],"shape":["A A","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":264,"damage":-1}},"output":[{"id":310}],"shape":["AAA","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":264,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":293}],"shape":["AA"," B"," B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":264,"damage":-1}},"output":[{"id":312}],"shape":["AAA","A A","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":264,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":278}],"shape":["AAA"," B "," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":264,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":277}],"shape":["A","B","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":264,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":276}],"shape":["A","A","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":4,"damage":-1},"B":{"id":406,"damage":-1}},"output":[{"id":1,"damage":3,"count":2}],"shape":["AB","BA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1,"damage":3}},"output":[{"id":-170,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1,"damage":3}},"output":[{"id":139,"damage":3,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":4,"damage":-1},"B":{"id":261,"damage":-1},"C":{"id":331,"damage":-1}},"output":[{"id":23,"damage":3}],"shape":["AAA","ABA","ACA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-139,"damage":-1}},"output":[{"id":464,"count":9}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":464,"damage":-1}},"output":[{"id":-139}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":4,"damage":-1},"B":{"id":331,"damage":-1}},"output":[{"id":125,"damage":3}],"shape":["AAA","A A","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":133,"damage":-1}},"output":[{"id":388,"count":9}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":388,"damage":-1}},"output":[{"id":133}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":395},{"id":345,"damage":-1}],"output":[{"id":395,"damage":2}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":340,"damage":-1},"B":{"id":264,"damage":-1},"C":{"id":49,"damage":-1}},"output":[{"id":116}],"shape":[" A ","BCB","CCC"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":206,"damage":-1}},"output":[{"id":-178,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":206,"damage":-1}},"output":[{"id":139,"damage":10,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":121,"damage":-1}},"output":[{"id":206,"count":4}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":381,"damage":-1},"C":{"id":370,"damage":-1}},"output":[{"id":426}],"shape":["AAA","ABA","ACA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":369,"damage":-1},"B":{"id":433,"damage":-1}},"output":[{"id":208,"count":4}],"shape":["A","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":49,"damage":-1},"B":{"id":381,"damage":-1}},"output":[{"id":130}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":368,"damage":-1},{"id":377,"damage":-1}],"output":[{"id":381}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5},"B":{"id":280,"damage":-1}},"output":[{"id":85,"count":3}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":5}},"output":[{"id":107}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":375,"damage":-1},{"id":39,"damage":-1},{"id":353,"damage":-1}],"output":[{"id":376}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":287,"damage":-1}},"output":[{"id":346}],"shape":[" A"," AB","A B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":318,"damage":-1},"B":{"id":5,"damage":-1}},"output":[{"id":-201}],"shape":["AA","BB","BB"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":318,"damage":-1},"B":{"id":-242,"damage":-1}},"output":[{"id":-201}],"shape":["AA","BB","BB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":318,"damage":-1},"B":{"id":-243,"damage":-1}},"output":[{"id":-201}],"shape":["AA","BB","BB"],"block":"crafting_table","priority":2},{"type":0,"input":[{"id":265,"damage":-1},{"id":318,"damage":-1}],"output":[{"id":259}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":336,"damage":-1}},"output":[{"id":390}],"shape":["A A"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":4,"damage":-1}},"output":[{"id":61}],"shape":["AAA","A A","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-273,"damage":-1}},"output":[{"id":61}],"shape":["AAA","A A","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1}},"output":[{"id":374,"count":3}],"shape":["A A"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1}},"output":[{"id":102,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":348,"damage":-1}},"output":[{"id":89}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1}},"output":[{"id":41}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":41,"damage":-1}},"output":[{"id":266,"count":9}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":371,"damage":-1}},"output":[{"id":266}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1}},"output":[{"id":371,"count":9}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1},"B":{"id":260,"damage":-1}},"output":[{"id":322}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":286}],"shape":["AA","AB"," B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1}},"output":[{"id":317}],"shape":["A A","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":371,"damage":-1},"B":{"id":391,"damage":-1}},"output":[{"id":396}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1}},"output":[{"id":315}],"shape":["A A","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1}},"output":[{"id":314}],"shape":["AAA","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":294}],"shape":["AA"," B"," B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1}},"output":[{"id":316}],"shape":["AAA","A A","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":285}],"shape":["AAA"," B "," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1},"B":{"id":280,"damage":-1},"C":{"id":331,"damage":-1}},"output":[{"id":27,"count":6}],"shape":["A A","ABA","ACA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":284}],"shape":["A","B","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":283}],"shape":["A","A","B"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":1,"damage":3},{"id":406,"damage":-1}],"output":[{"id":1,"damage":1}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1,"damage":1}},"output":[{"id":-169,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1,"damage":1}},"output":[{"id":139,"damage":2,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":7},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":8}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":7}},"output":[{"id":171,"damage":7,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":8}},"output":[{"id":171,"damage":7,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":8},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":7,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":16},{"id":351,"damage":19}],"output":[{"id":351,"damage":8,"count":2}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":16},{"id":351,"damage":15}],"output":[{"id":351,"damage":8,"count":2}],"block":"crafting_table","priority":1},{"type":0,"input":[{"id":351},{"id":351,"damage":15}],"output":[{"id":351,"damage":8,"count":2}],"block":"crafting_table","priority":3},{"type":0,"input":[{"id":351},{"id":351,"damage":19}],"output":[{"id":351,"damage":8,"count":2}],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":8}},"output":[{"id":241,"damage":7,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":241,"damage":7}},"output":[{"id":160,"damage":7,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":8}},"output":[{"id":160,"damage":7,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":8}},"output":[{"id":159,"damage":7,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":13},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":2}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":13}},"output":[{"id":171,"damage":13,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":2}},"output":[{"id":171,"damage":13,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":2},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":13,"count":8}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":2}},"output":[{"id":241,"damage":13,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":241,"damage":13}},"output":[{"id":160,"damage":13,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":2}},"output":[{"id":160,"damage":13,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":2}},"output":[{"id":159,"damage":13,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-166,"damage":2},"C":{"id":5,"damage":-1}},"output":[{"id":-195}],"shape":["ABA","C C"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":44,"damage":-1},"C":{"id":-242,"damage":-1}},"output":[{"id":-195}],"shape":["ABA","C C"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":182,"damage":-1},"C":{"id":-242,"damage":-1}},"output":[{"id":-195}],"shape":["ABA","C C"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-162,"damage":-1},"C":{"id":-242,"damage":-1}},"output":[{"id":-195}],"shape":["ABA","C C"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-166,"damage":-1},"C":{"id":-242,"damage":-1}},"output":[{"id":-195}],"shape":["ABA","C C"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":44,"damage":-1},"C":{"id":-243,"damage":-1}},"output":[{"id":-195}],"shape":["ABA","C C"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":182,"damage":-1},"C":{"id":-243,"damage":-1}},"output":[{"id":-195}],"shape":["ABA","C C"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-162,"damage":-1},"C":{"id":-243,"damage":-1}},"output":[{"id":-195}],"shape":["ABA","C C"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-166,"damage":-1},"C":{"id":-243,"damage":-1}},"output":[{"id":-195}],"shape":["ABA","C C"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":296,"damage":-1}},"output":[{"id":170}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":148}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":737,"damage":-1}},"output":[{"id":-220},{"id":374,"count":4}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":-220,"damage":-1},{"id":374,"damage":-1},{"id":374,"damage":-1},{"id":374,"damage":-1},{"id":374,"damage":-1}],"output":[{"id":737,"count":4}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":737,"damage":-1}},"output":[{"id":353,"count":3},{"id":374}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":736,"damage":-1}},"output":[{"id":-221}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":54,"damage":-1}},"output":[{"id":410}],"shape":["A A","ABA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":410,"damage":-1},"B":{"id":328,"damage":-1}},"output":[{"id":408}],"shape":["A","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":258}],"shape":["AA","AB"," B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":101,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":42}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":309}],"shape":["A A","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":307}],"shape":["A A","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":330,"count":3}],"shape":["AA","AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":306}],"shape":["AAA","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":292}],"shape":["AA"," B"," B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":42,"damage":-1}},"output":[{"id":265,"count":9}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":452,"damage":-1}},"output":[{"id":265}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":308}],"shape":["AAA","A A","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":452,"count":9}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":257}],"shape":["AAA"," B "," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":256}],"shape":["A","B","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":267}],"shape":["A","A","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":167}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":334,"damage":-1}},"output":[{"id":389}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1},"B":{"id":264,"damage":-1}},"output":[{"id":84}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1},"B":{"id":264,"damage":-1}},"output":[{"id":84}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":5,"damage":3},"B":{"id":269,"damage":-1}},"output":[{"id":333,"damage":3}],"shape":["ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":3}},"output":[{"id":429,"count":3}],"shape":["AA","AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":3},"B":{"id":280,"damage":-1}},"output":[{"id":85,"damage":3,"count":3}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":5,"damage":3}},"output":[{"id":185}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":17,"damage":3}},"output":[{"id":5,"damage":3,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-7,"damage":-1}},"output":[{"id":5,"damage":3,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-212,"damage":11}},"output":[{"id":5,"damage":3,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-212,"damage":3}},"output":[{"id":5,"damage":3,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":3}},"output":[{"id":136,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":17,"damage":3}},"output":[{"id":-212,"damage":3,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-7,"damage":-1}},"output":[{"id":-212,"damage":11,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":3}},"output":[{"id":158,"damage":3,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1}},"output":[{"id":65,"count":3}],"shape":["A A","AAA","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":452,"damage":-1},"B":{"id":50,"damage":-1}},"output":[{"id":-208}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":351,"damage":4}},"output":[{"id":22}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":22,"damage":-1}},"output":[{"id":351,"damage":4,"count":9}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":287,"damage":-1},"B":{"id":341,"damage":-1}},"output":[{"id":420,"count":2}],"shape":["AA ","AB "," A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":415,"damage":-1}},"output":[{"id":334}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":334,"damage":-1}},"output":[{"id":301}],"shape":["A A","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":334,"damage":-1}},"output":[{"id":299}],"shape":["A A","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":334,"damage":-1}},"output":[{"id":298}],"shape":["AAA","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":334,"damage":-1}},"output":[{"id":416}],"shape":["A A","AAA","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":334,"damage":-1}},"output":[{"id":300}],"shape":["AAA","A A","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":158,"damage":-1},"B":{"id":47,"damage":-1}},"output":[{"id":-194}],"shape":["AAA"," B "," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-264,"damage":-1},"B":{"id":47,"damage":-1}},"output":[{"id":-194}],"shape":["AAA"," B "," A "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-265,"damage":-1},"B":{"id":47,"damage":-1}},"output":[{"id":-194}],"shape":["AAA"," B "," A "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":4,"damage":-1}},"output":[{"id":69}],"shape":["A","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":3},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":12}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":3}},"output":[{"id":171,"damage":3,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":12}},"output":[{"id":171,"damage":3,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":12},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":3,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":18},{"id":351,"damage":19}],"output":[{"id":351,"damage":12,"count":2}],"block":"crafting_table","priority":1},{"type":0,"input":[{"id":351,"damage":18},{"id":351,"damage":15}],"output":[{"id":351,"damage":12,"count":2}],"block":"crafting_table","priority":2},{"type":0,"input":[{"id":38,"damage":1}],"output":[{"id":351,"damage":12}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":4},{"id":351,"damage":15}],"output":[{"id":351,"damage":12,"count":2}],"block":"crafting_table","priority":4},{"type":0,"input":[{"id":351,"damage":4},{"id":351,"damage":19}],"output":[{"id":351,"damage":12,"count":2}],"block":"crafting_table","priority":3},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":12}},"output":[{"id":241,"damage":3,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":241,"damage":3}},"output":[{"id":160,"damage":3,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":12}},"output":[{"id":160,"damage":3,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":12}},"output":[{"id":159,"damage":3,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":7}},"output":[{"id":171,"damage":8,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":8},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":7}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":8}},"output":[{"id":171,"damage":8,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":7},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":8,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":16},{"id":351,"damage":19},{"id":351,"damage":19}],"output":[{"id":351,"damage":7,"count":3}],"block":"crafting_table","priority":3},{"type":0,"input":[{"id":38,"damage":3}],"output":[{"id":351,"damage":7}],"block":"crafting_table","priority":2},{"type":0,"input":[{"id":351,"damage":16},{"id":351,"damage":15},{"id":351,"damage":15}],"output":[{"id":351,"damage":7,"count":3}],"block":"crafting_table","priority":7},{"type":0,"input":[{"id":351,"damage":8},{"id":351,"damage":15}],"output":[{"id":351,"damage":7,"count":2}],"block":"crafting_table","priority":6},{"type":0,"input":[{"id":351,"damage":8},{"id":351,"damage":19}],"output":[{"id":351,"damage":7,"count":2}],"block":"crafting_table","priority":4},{"type":0,"input":[{"id":351},{"id":351,"damage":15},{"id":351,"damage":15}],"output":[{"id":351,"damage":7,"count":3}],"block":"crafting_table","priority":8},{"type":0,"input":[{"id":351},{"id":351,"damage":19},{"id":351,"damage":19}],"output":[{"id":351,"damage":7,"count":3}],"block":"crafting_table","priority":5},{"type":0,"input":[{"id":38,"damage":8}],"output":[{"id":351,"damage":7}],"block":"crafting_table","priority":1},{"type":0,"input":[{"id":38,"damage":6}],"output":[{"id":351,"damage":7}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":7}},"output":[{"id":241,"damage":8,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":241,"damage":8}},"output":[{"id":160,"damage":8,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":7}},"output":[{"id":160,"damage":8,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":7}},"output":[{"id":159,"damage":8,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":266,"damage":-1}},"output":[{"id":147}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":10}},"output":[{"id":171,"damage":5,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":5},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":10}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":5}},"output":[{"id":171,"damage":5,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":10},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":5,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":2},{"id":351,"damage":19}],"output":[{"id":351,"damage":10,"count":2}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":2},{"id":351,"damage":15}],"output":[{"id":351,"damage":10,"count":2}],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":10}},"output":[{"id":241,"damage":5,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":241,"damage":5}},"output":[{"id":160,"damage":5,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":10}},"output":[{"id":160,"damage":5,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":10}},"output":[{"id":159,"damage":5,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-155,"damage":-1},"B":{"id":50,"damage":-1}},"output":[{"id":91}],"shape":["A","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":339,"damage":-1},"B":{"id":345,"damage":-1}},"output":[{"id":395,"damage":2}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":98,"damage":3},"B":{"id":742,"damage":-1}},"output":[{"id":-222}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":287,"damage":-1},"B":{"id":-242,"damage":-1}},"output":[{"id":-204}],"shape":["AA","BB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":287,"damage":-1},"B":{"id":-243,"damage":-1}},"output":[{"id":-204}],"shape":["AA","BB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":35,"damage":2},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":13}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":2}},"output":[{"id":171,"damage":2,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":13}},"output":[{"id":171,"damage":2,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":13},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":2,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":18},{"id":351,"damage":1},{"id":351,"damage":9}],"output":[{"id":351,"damage":13,"count":3}],"block":"crafting_table","priority":2},{"type":0,"input":[{"id":38,"damage":2}],"output":[{"id":351,"damage":13}],"block":"crafting_table","priority":1},{"type":0,"input":[{"id":351,"damage":18},{"id":351,"damage":1},{"id":351,"damage":1},{"id":351,"damage":15}],"output":[{"id":351,"damage":13,"count":4}],"block":"crafting_table","priority":6},{"type":0,"input":[{"id":351,"damage":18},{"id":351,"damage":1},{"id":351,"damage":1},{"id":351,"damage":19}],"output":[{"id":351,"damage":13,"count":4}],"block":"crafting_table","priority":4},{"type":0,"input":[{"id":351,"damage":4},{"id":351,"damage":1},{"id":351,"damage":1},{"id":351,"damage":15}],"output":[{"id":351,"damage":13,"count":4}],"block":"crafting_table","priority":8},{"type":0,"input":[{"id":351,"damage":4},{"id":351,"damage":1},{"id":351,"damage":1},{"id":351,"damage":19}],"output":[{"id":351,"damage":13,"count":4}],"block":"crafting_table","priority":7},{"type":0,"input":[{"id":351,"damage":4},{"id":351,"damage":1},{"id":351,"damage":9}],"output":[{"id":351,"damage":13,"count":3}],"block":"crafting_table","priority":5},{"type":0,"input":[{"id":175,"damage":1}],"output":[{"id":351,"damage":13,"count":2}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":5},{"id":351,"damage":9}],"output":[{"id":351,"damage":13,"count":2}],"block":"crafting_table","priority":3},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":13}},"output":[{"id":241,"damage":2,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":241,"damage":2}},"output":[{"id":160,"damage":2,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":13}},"output":[{"id":160,"damage":2,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":13}},"output":[{"id":159,"damage":2,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":378,"damage":-1}},"output":[{"id":213}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":377,"damage":-1},{"id":341,"damage":-1}],"output":[{"id":378}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":339,"damage":-1}},"output":[{"id":395}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":360,"damage":-1}},"output":[{"id":103}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":360,"damage":-1}},"output":[{"id":362}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":328}],"shape":["A A","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":4,"damage":-1},{"id":106,"damage":-1}],"output":[{"id":48}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":48,"damage":-1}},"output":[{"id":-179,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":48,"damage":-1}},"output":[{"id":139,"damage":1,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":98,"damage":1}},"output":[{"id":-175,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":98,"damage":1}},"output":[{"id":139,"damage":8,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":98},{"id":106,"damage":-1}],"output":[{"id":98,"damage":1}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1}],"output":[{"id":282}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":405,"damage":-1}},"output":[{"id":112}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":112,"damage":-1},"B":{"id":405,"damage":-1}},"output":[{"id":113,"count":6}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":112,"damage":-1}},"output":[{"id":114,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":112,"damage":-1}},"output":[{"id":139,"damage":9,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":372,"damage":-1}},"output":[{"id":214}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":742,"damage":-1}},"output":[{"id":-270}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":752,"damage":-1},{"id":752,"damage":-1},{"id":752,"damage":-1},{"id":752,"damage":-1},{"id":266,"damage":-1},{"id":266,"damage":-1},{"id":266,"damage":-1},{"id":266,"damage":-1}],"output":[{"id":742}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-270,"damage":-1}},"output":[{"id":742,"count":9}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1},"B":{"id":331,"damage":-1}},"output":[{"id":25}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1},"B":{"id":331,"damage":-1}},"output":[{"id":25}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":17}},"output":[{"id":5,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-10,"damage":-1}},"output":[{"id":5,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-212,"damage":8}},"output":[{"id":5,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-212}},"output":[{"id":5,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5}},"output":[{"id":53,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":17}},"output":[{"id":-212,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-10,"damage":-1}},"output":[{"id":-212,"damage":8,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5}},"output":[{"id":158,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":4,"damage":-1},"B":{"id":331,"damage":-1},"C":{"id":406,"damage":-1}},"output":[{"id":251}],"shape":["AAA","BBC","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":1},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":14}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":1}},"output":[{"id":171,"damage":1,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":14}},"output":[{"id":171,"damage":1,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":14},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":1,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":38,"damage":5}],"output":[{"id":351,"damage":14}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":1},{"id":351,"damage":11}],"output":[{"id":351,"damage":14,"count":2}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":14}},"output":[{"id":241,"damage":1,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":241,"damage":1}},"output":[{"id":160,"damage":1,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":14}},"output":[{"id":160,"damage":1,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":14}},"output":[{"id":159,"damage":1,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":79,"damage":-1}},"output":[{"id":174}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":338,"damage":-1}},"output":[{"id":339,"count":3}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":155}},"output":[{"id":155,"damage":2,"count":2}],"shape":["A","A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":6},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":9}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":6}},"output":[{"id":171,"damage":6,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":9}},"output":[{"id":171,"damage":6,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":9},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":6,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":1},{"id":351,"damage":19}],"output":[{"id":351,"damage":9,"count":2}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":175,"damage":5}],"output":[{"id":351,"damage":9,"count":2}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":38,"damage":7}],"output":[{"id":351,"damage":9}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":1},{"id":351,"damage":15}],"output":[{"id":351,"damage":9,"count":2}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":9}},"output":[{"id":241,"damage":6,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":241,"damage":6}},"output":[{"id":160,"damage":6,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":9}},"output":[{"id":160,"damage":6,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":9}},"output":[{"id":159,"damage":6,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1},"B":{"id":4,"damage":-1},"C":{"id":265,"damage":-1},"D":{"id":331,"damage":-1}},"output":[{"id":33}],"shape":["AAA","BCB","BDB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1},"B":{"id":4,"damage":-1},"C":{"id":265,"damage":-1},"D":{"id":331,"damage":-1}},"output":[{"id":33}],"shape":["AAA","BCB","BDB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":1,"damage":5}},"output":[{"id":1,"damage":6,"count":4}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1,"damage":6}},"output":[{"id":-174,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-234,"damage":-1}},"output":[{"id":-235,"count":4}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-273,"damage":-1}},"output":[{"id":-291,"count":4}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-274,"damage":-1}},"output":[{"id":-284,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-274,"damage":-1}},"output":[{"id":-275,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-274,"damage":-1}},"output":[{"id":-278,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-291,"damage":-1}},"output":[{"id":-274,"count":4}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-291,"damage":-1}},"output":[{"id":-296}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-291,"damage":-1}},"output":[{"id":-295}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-291,"damage":-1}},"output":[{"id":-293,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-291,"damage":-1}},"output":[{"id":-292,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-291,"damage":-1}},"output":[{"id":-297,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1,"damage":3}},"output":[{"id":1,"damage":4,"count":4}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1,"damage":4}},"output":[{"id":-173,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1,"damage":1}},"output":[{"id":1,"damage":2,"count":4}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1,"damage":2}},"output":[{"id":-172,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":409,"damage":-1}},"output":[{"id":168}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":409,"damage":-1}},"output":[{"id":168,"damage":2}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":168}},"output":[{"id":-2,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":168,"damage":2}},"output":[{"id":-4,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":168,"damage":1}},"output":[{"id":-3,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":168}},"output":[{"id":139,"damage":11,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":86,"damage":-1},{"id":353,"damage":-1},{"id":344,"damage":-1}],"output":[{"id":400}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":86,"damage":-1}},"output":[{"id":361,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":10},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":5}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":10}},"output":[{"id":171,"damage":10,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":5}},"output":[{"id":171,"damage":10,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":5},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":10,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":18},{"id":351,"damage":1}],"output":[{"id":351,"damage":5,"count":2}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":4},{"id":351,"damage":1}],"output":[{"id":351,"damage":5,"count":2}],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":5}},"output":[{"id":241,"damage":10,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":241,"damage":10}},"output":[{"id":160,"damage":10,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":5}},"output":[{"id":160,"damage":10,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":5}},"output":[{"id":159,"damage":10,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":433,"damage":-1}},"output":[{"id":201,"count":4}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":201,"damage":-1}},"output":[{"id":203,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":406,"damage":-1}},"output":[{"id":155}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":155}},"output":[{"id":-304}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":155}},"output":[{"id":156,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":281,"damage":-1},{"id":393,"damage":-1},{"id":391,"damage":-1},{"id":39,"damage":-1},{"id":412,"damage":-1}],"output":[{"id":413}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":281,"damage":-1},{"id":393,"damage":-1},{"id":391,"damage":-1},{"id":40,"damage":-1},{"id":412,"damage":-1}],"output":[{"id":413}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":66,"count":16}],"shape":["A A","ABA","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":14},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":1}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":14}},"output":[{"id":171,"damage":14,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":1}},"output":[{"id":171,"damage":14,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":1},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":14,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":457,"damage":-1}],"output":[{"id":351,"damage":1}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":38}],"output":[{"id":351,"damage":1}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":175,"damage":4}],"output":[{"id":351,"damage":1,"count":2}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":38,"damage":4}],"output":[{"id":351,"damage":1}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":405,"damage":-1},"B":{"id":372,"damage":-1}},"output":[{"id":215}],"shape":["AB","BA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":215,"damage":-1}},"output":[{"id":-184,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":215,"damage":-1}},"output":[{"id":139,"damage":13,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":12,"damage":1}},"output":[{"id":179}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":179}},"output":[{"id":180,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":179}},"output":[{"id":139,"damage":12,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":1}},"output":[{"id":241,"damage":14,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":241,"damage":14}},"output":[{"id":160,"damage":14,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":1}},"output":[{"id":160,"damage":14,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":1}},"output":[{"id":159,"damage":14,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":152,"damage":-1}},"output":[{"id":331,"count":9}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":331,"damage":-1}},"output":[{"id":152}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":331,"damage":-1},"B":{"id":89,"damage":-1}},"output":[{"id":123}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":331,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":76}],"shape":["A","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":76,"damage":-1},"B":{"id":331,"damage":-1},"C":{"id":1}},"output":[{"id":356}],"shape":["ABA","CCC"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-289,"damage":-1},"B":{"id":89,"damage":-1}},"output":[{"id":-272}],"shape":["AAA","BBB","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":12}},"output":[{"id":24}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":24}},"output":[{"id":128,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":24}},"output":[{"id":139,"damage":5,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-163,"damage":-1},"B":{"id":287,"damage":-1}},"output":[{"id":-165,"count":6}],"shape":["ABA","A A","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":409,"damage":-1},"B":{"id":422,"damage":-1}},"output":[{"id":169}],"shape":["ABA","BBB","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1}},"output":[{"id":359}],"shape":[" A","A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":-1},"B":{"id":265,"damage":-1}},"output":[{"id":513}],"shape":["ABA","AAA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1},"B":{"id":265,"damage":-1}},"output":[{"id":513}],"shape":["ABA","AAA"," A "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1},"B":{"id":265,"damage":-1}},"output":[{"id":513}],"shape":["ABA","AAA"," A "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":445,"damage":-1},"B":{"id":54,"damage":-1}},"output":[{"id":205}],"shape":["A","B","A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":4},"B":{"id":280,"damage":-1}},"output":[{"id":475,"count":3}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":2},"B":{"id":280,"damage":-1}},"output":[{"id":473,"count":3}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":5},"B":{"id":280,"damage":-1}},"output":[{"id":476,"count":3}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":3},"B":{"id":280,"damage":-1}},"output":[{"id":474,"count":3}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5},"B":{"id":280,"damage":-1}},"output":[{"id":323,"count":3}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":1},"B":{"id":280,"damage":-1}},"output":[{"id":472,"count":3}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":341,"damage":-1}},"output":[{"id":165}],"shape":["AAA","AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":165,"damage":-1}},"output":[{"id":341,"count":9}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":5,"damage":-1}},"output":[{"id":-202}],"shape":["AA","BB","BB"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":-242,"damage":-1}},"output":[{"id":-202}],"shape":["AA","BB","BB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":-243,"damage":-1}},"output":[{"id":-202}],"shape":["AA","BB","BB"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":17,"damage":-1},"B":{"id":61,"damage":-1}},"output":[{"id":-198}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-225,"damage":-1},"B":{"id":61,"damage":-1}},"output":[{"id":-198}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":162,"damage":-1},"B":{"id":61,"damage":-1}},"output":[{"id":-198}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-8,"damage":-1},"B":{"id":61,"damage":-1}},"output":[{"id":-198}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-6,"damage":-1},"B":{"id":61,"damage":-1}},"output":[{"id":-198}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-240,"damage":-1},"B":{"id":61,"damage":-1}},"output":[{"id":-198}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-9,"damage":-1},"B":{"id":61,"damage":-1}},"output":[{"id":-198}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-7,"damage":-1},"B":{"id":61,"damage":-1}},"output":[{"id":-198}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-10,"damage":-1},"B":{"id":61,"damage":-1}},"output":[{"id":-198}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-5,"damage":-1},"B":{"id":61,"damage":-1}},"output":[{"id":-198}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-241,"damage":-1},"B":{"id":61,"damage":-1}},"output":[{"id":-198}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-226,"damage":-1},"B":{"id":61,"damage":-1}},"output":[{"id":-198}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":155,"damage":3}},"output":[{"id":-185,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":179}},"output":[{"id":179,"damage":2,"count":4}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":179,"damage":3}},"output":[{"id":-176,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":24}},"output":[{"id":24,"damage":2,"count":4}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":24,"damage":3}},"output":[{"id":-177,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":332,"damage":-1}},"output":[{"id":80}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":80,"damage":-1}},"output":[{"id":78,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-236,"damage":-1},"C":{"id":-225,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":88,"damage":-1},"C":{"id":-225,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":88,"damage":-1},"C":{"id":17,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":88,"damage":-1},"C":{"id":162,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":88,"damage":-1},"C":{"id":-8,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":88,"damage":-1},"C":{"id":-6,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":88,"damage":-1},"C":{"id":-9,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":88,"damage":-1},"C":{"id":-7,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":88,"damage":-1},"C":{"id":-10,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":88,"damage":-1},"C":{"id":-5,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":88,"damage":-1},"C":{"id":-212,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-236,"damage":-1},"C":{"id":17,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-236,"damage":-1},"C":{"id":162,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-236,"damage":-1},"C":{"id":-8,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-236,"damage":-1},"C":{"id":-6,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-236,"damage":-1},"C":{"id":-9,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-236,"damage":-1},"C":{"id":-7,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-236,"damage":-1},"C":{"id":-10,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-236,"damage":-1},"C":{"id":-5,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-236,"damage":-1},"C":{"id":-212,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-236,"damage":-1},"C":{"id":-240,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":88,"damage":-1},"C":{"id":-240,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-236,"damage":-1},"C":{"id":-241,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":88,"damage":-1},"C":{"id":-241,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-236,"damage":-1},"C":{"id":-226,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":88,"damage":-1},"C":{"id":-226,"damage":-1}},"output":[{"id":801}],"shape":[" A ","ABA","CCC"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":452,"damage":-1},"B":{"id":-268,"damage":-1}},"output":[{"id":-269}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":263,"damage":-1},"B":{"id":280,"damage":-1},"C":{"id":88,"damage":-1}},"output":[{"id":-268,"count":4}],"shape":["A","B","C"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":263,"damage":-1},"B":{"id":280,"damage":-1},"C":{"id":-236,"damage":-1}},"output":[{"id":-268,"count":4}],"shape":["A","B","C"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":371,"damage":-1},"B":{"id":360,"damage":-1}},"output":[{"id":382}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":1},"B":{"id":269,"damage":-1}},"output":[{"id":333,"damage":1}],"shape":["ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":1}},"output":[{"id":427,"count":3}],"shape":["AA","AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":1},"B":{"id":280,"damage":-1}},"output":[{"id":85,"damage":1,"count":3}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":5,"damage":1}},"output":[{"id":183}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":17,"damage":1}},"output":[{"id":5,"damage":1,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-5,"damage":-1}},"output":[{"id":5,"damage":1,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-212,"damage":9}},"output":[{"id":5,"damage":1,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-212,"damage":1}},"output":[{"id":5,"damage":1,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":1}},"output":[{"id":134,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":17,"damage":1}},"output":[{"id":-212,"damage":1,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-5,"damage":-1}},"output":[{"id":-212,"damage":9,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":1}},"output":[{"id":158,"damage":1,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1}},"output":[{"id":280,"count":4}],"shape":["A","A"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1}},"output":[{"id":280,"count":4}],"shape":["A","A"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":341,"damage":-1},"B":{"id":33,"damage":-1}},"output":[{"id":29,"damage":1}],"shape":["A","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":4,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":275}],"shape":["AA","AB"," B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-273,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":275}],"shape":["AA","AB"," B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":98}},"output":[{"id":109,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":98}},"output":[{"id":139,"damage":7,"count":6}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1}},"output":[{"id":77}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":4,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":291}],"shape":["AA"," B"," B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-273,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":291}],"shape":["AA"," B"," B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":4,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":274}],"shape":["AAA"," B "," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-273,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":274}],"shape":["AAA"," B "," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1}},"output":[{"id":70}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":4,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":273}],"shape":["A","B","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-273,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":273}],"shape":["A","B","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1}},"output":[{"id":-180,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":4,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":272}],"shape":["A","A","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-273,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":272}],"shape":["A","A","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":1}},"output":[{"id":98,"count":4}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":1,"damage":-1}},"output":[{"id":-197}],"shape":[" A ","BBB"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":287,"damage":-1}},"output":[{"id":35}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-240,"damage":-1}},"output":[{"id":-300,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-241,"damage":-1}},"output":[{"id":-301,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":338,"damage":-1}},"output":[{"id":353}],"shape":["A"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1},{"id":38,"damage":2}],"output":[{"id":734,"damage":7}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1},{"id":38,"damage":3}],"output":[{"id":734,"damage":3}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1},{"id":38,"damage":1}],"output":[{"id":734,"damage":6}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1},{"id":38,"damage":9}],"output":[{"id":734,"damage":1}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1},{"id":37,"damage":-1}],"output":[{"id":734,"damage":5}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1},{"id":38,"damage":10}],"output":[{"id":734,"damage":4}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1},{"id":38,"damage":8}],"output":[{"id":734,"damage":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1},{"id":38}],"output":[{"id":734}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1},{"id":38,"damage":5}],"output":[{"id":734,"damage":2}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1},{"id":38,"damage":7}],"output":[{"id":734,"damage":2}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1},{"id":38,"damage":4}],"output":[{"id":734,"damage":2}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1},{"id":38,"damage":6}],"output":[{"id":734,"damage":2}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":39,"damage":-1},{"id":40,"damage":-1},{"id":281,"damage":-1},{"id":-216,"damage":-1}],"output":[{"id":734,"damage":9}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":331,"damage":-1},"B":{"id":170,"damage":-1}},"output":[{"id":-239}],"shape":[" A ","ABA"," A "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":289,"damage":-1},"B":{"id":12,"damage":-1}},"output":[{"id":46}],"shape":["ABA","BAB","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":46},"B":{"id":328,"damage":-1}},"output":[{"id":407}],"shape":["A","B"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":54,"damage":-1},{"id":131,"damage":-1}],"output":[{"id":146}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":280,"damage":-1},"C":{"id":-242,"damage":-1}},"output":[{"id":131}],"shape":["A","B","C"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":265,"damage":-1},"B":{"id":280,"damage":-1},"C":{"id":-243,"damage":-1}},"output":[{"id":131}],"shape":["A","B","C"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":468,"damage":-1}},"output":[{"id":469}],"shape":["AAA","A A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-243,"damage":-1}},"output":[{"id":-261}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-243,"damage":-1}},"output":[{"id":756,"count":3}],"shape":["AA","AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-243,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":-257,"count":3}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":280,"damage":-1},"B":{"id":-243,"damage":-1}},"output":[{"id":-259}],"shape":["ABA","ABA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":346,"damage":-1},"B":{"id":-229,"damage":-1}},"output":[{"id":757}],"shape":["A "," B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-226,"damage":-1}},"output":[{"id":-298,"count":3}],"shape":["AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-226,"damage":-1}},"output":[{"id":-243,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-241,"damage":-1}},"output":[{"id":-243,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-301,"damage":-1}},"output":[{"id":-243,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-298,"damage":-1}},"output":[{"id":-243,"count":4}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-243,"damage":-1}},"output":[{"id":-263}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-243,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":754,"count":3}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-243,"damage":-1}},"output":[{"id":-265,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-243,"damage":-1}},"output":[{"id":-255,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-243,"damage":-1}},"output":[{"id":-247,"count":2}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":170,"damage":-1}},"output":[{"id":296,"count":9}],"shape":["A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":15}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35}},"output":[{"id":171,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":19},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":15},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"count":8}],"block":"crafting_table","priority":1},{"type":0,"input":[{"id":351,"damage":15}],"output":[{"id":351,"damage":19}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":38,"damage":10}],"output":[{"id":351,"damage":19}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":19}},"output":[{"id":241,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":15}},"output":[{"id":241,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":241}},"output":[{"id":160,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":19}},"output":[{"id":160,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":19}},"output":[{"id":159,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":15}},"output":[{"id":159,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":1},{"type":1,"input":{"A":{"id":-242,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":271}],"shape":["AA","AB"," B"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":271}],"shape":["AA","AB"," B"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":5}},"output":[{"id":324,"count":3}],"shape":["AA","AA","AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":-242,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":290}],"shape":["AA "," B "," B "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":290}],"shape":["AA "," B "," B "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-242,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":270}],"shape":["AAA"," B "," B "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":270}],"shape":["AAA"," B "," B "],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-242,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":269}],"shape":["A","B","B"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":269}],"shape":["A","B","B"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-242,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":268}],"shape":["A","A","B"],"block":"crafting_table","priority":2},{"type":1,"input":{"A":{"id":-243,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":268}],"shape":["A","A","B"],"block":"crafting_table","priority":2},{"type":0,"input":[{"id":340,"damage":-1},{"id":351},{"id":288,"damage":-1}],"output":[{"id":386}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":4},"B":{"id":280,"damage":-1}},"output":[{"id":446,"damage":11}],"shape":["AAA","AAA"," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":35,"damage":4}},"output":[{"id":171,"damage":4,"count":3}],"shape":["AA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":171},"B":{"id":351,"damage":11}},"output":[{"id":171,"damage":4,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351,"damage":11},{"id":12},{"id":12},{"id":12},{"id":12},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1},{"id":13,"damage":-1}],"output":[{"id":237,"damage":4,"count":8}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":37}],"output":[{"id":351,"damage":11}],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":175}],"output":[{"id":351,"damage":11,"count":2}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":20,"damage":-1},"B":{"id":351,"damage":11}},"output":[{"id":241,"damage":4,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":241,"damage":4}},"output":[{"id":160,"damage":4,"count":16}],"shape":["AAA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":102,"damage":-1},"B":{"id":351,"damage":11}},"output":[{"id":160,"damage":4,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":172,"damage":-1},"B":{"id":351,"damage":11}},"output":[{"id":159,"damage":4,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5}},"output":[{"id":53,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":10}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAACgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":11}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAACwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":12}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":13}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":14}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":15}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":3}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":4}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":15}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAADwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":1}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":2}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":3}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAAAwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":4}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":5}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":6}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":7}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAABwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":8}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAACAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1},{"id":402,"damage":9}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMKAQAAAAcNAEZpcmV3b3JrQ29sb3IBAAAACQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAAA"}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351}],"output":[{"id":402,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3IhHR3/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":10}],"output":[{"id":402,"damage":10,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3Ifx4D/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":11}],"output":[{"id":402,"damage":11,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3I92P7/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":12}],"output":[{"id":402,"damage":12,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3Laszr/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":13}],"output":[{"id":402,"damage":13,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3K9Tsf/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":14}],"output":[{"id":402,"damage":14,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3IdgPn/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":15}],"output":[{"id":402,"damage":15,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3Lw8PD/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":16}],"output":[{"id":402,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3IhHR3/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":17}],"output":[{"id":402,"damage":3,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3IyVIP/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":18}],"output":[{"id":402,"damage":4,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3KqRDz/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":19}],"output":[{"id":402,"damage":15,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3Lw8PD/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAADwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":1}],"output":[{"id":402,"damage":1,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3ImLrD/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":2}],"output":[{"id":402,"damage":2,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3IWfF7/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":3}],"output":[{"id":402,"damage":3,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3IyVIP/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAAAwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":4}],"output":[{"id":402,"damage":4,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3KqRDz/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":5}],"output":[{"id":402,"damage":5,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3K4Mon/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":6}],"output":[{"id":402,"damage":6,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3KcnBb/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABgEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":7}],"output":[{"id":402,"damage":7,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3KXnZ3/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAABwEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":8}],"output":[{"id":402,"damage":8,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3JST0f/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACAEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":289,"damage":-1},{"id":351,"damage":9}],"output":[{"id":402,"damage":9,"nbt_b64":"CgAAAwsAY3VzdG9tQ29sb3Kqi/P/Cg0ARmlyZXdvcmtzSXRlbQcNAEZpcmV3b3JrQ29sb3IBAAAACQEMAEZpcmV3b3JrVHlwZQAHDABGaXJld29ya0ZhZGUAAAAAAQ0ARmlyZXdvcmtUcmFpbAABDwBGaXJld29ya0ZsaWNrZXIAAAA="}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":339,"damage":-1},{"id":289,"damage":-1}],"output":[{"id":401,"count":3,"nbt_b64":"CgAACgkARmlyZXdvcmtzAQYARmxpZ2h0AQkKAEV4cGxvc2lvbnMAAAAAAAAA"}],"block":"crafting_table","priority":50},{"type":4,"uuid":"00000000-0000-0000-0000-000000000001"},{"type":5,"input":[{"id":218,"damage":5},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":6},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":15},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":5},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":4},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":3},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":2},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":1},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":14},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":13},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":12},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":11},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":10},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":9},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":8},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":218,"damage":7},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":10}],"output":[{"id":218,"damage":5}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":11}],"output":[{"id":218,"damage":4}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":12}],"output":[{"id":218,"damage":3}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":13}],"output":[{"id":218,"damage":2}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":14}],"output":[{"id":218,"damage":1}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":15}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":16}],"output":[{"id":218,"damage":15}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":17}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":18}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":19}],"output":[{"id":218}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":1}],"output":[{"id":218,"damage":14}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":2}],"output":[{"id":218,"damage":13}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":3}],"output":[{"id":218,"damage":12}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":4}],"output":[{"id":218,"damage":11}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":5}],"output":[{"id":218,"damage":10}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":6}],"output":[{"id":218,"damage":9}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":7}],"output":[{"id":218,"damage":8}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":8}],"output":[{"id":218,"damage":7}],"block":"crafting_table","priority":0},{"type":5,"input":[{"id":205},{"id":351,"damage":9}],"output":[{"id":218,"damage":6}],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":206}},"output":[{"id":-162,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":1}},"output":[{"id":134,"count":4}],"shape":["A ","AA ","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":-1}},"output":[{"id":280,"count":4}],"shape":["A","A"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":179}},"output":[{"id":182,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":168,"damage":2}},"output":[{"id":182,"damage":4,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":168,"damage":1}},"output":[{"id":182,"damage":3,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":201}},"output":[{"id":182,"damage":1,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":48}},"output":[{"id":182,"damage":5,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":215}},"output":[{"id":182,"damage":7,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":179,"damage":1}},"output":[{"id":182,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":24,"damage":3}},"output":[{"id":182,"damage":6,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":1,"damage":5}},"output":[{"id":-162,"damage":3,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":1,"damage":3}},"output":[{"id":-162,"damage":4,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":1,"damage":1}},"output":[{"id":-162,"damage":6,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":1,"damage":2}},"output":[{"id":-162,"damage":7,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":1,"damage":6}},"output":[{"id":-162,"damage":2,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":1,"damage":4}},"output":[{"id":-162,"damage":5,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":179,"damage":3}},"output":[{"id":-162,"damage":1,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":179,"damage":2}},"output":[{"id":-166,"damage":4,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":24,"damage":2}},"output":[{"id":-166,"damage":3,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":155,"damage":3}},"output":[{"id":-166,"damage":1,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":155}},"output":[{"id":44,"damage":6,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":168}},"output":[{"id":182,"damage":2,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":24,"damage":1}},"output":[{"id":44,"damage":1,"count":6}],"shape":["AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":270}],"shape":["AAA"," B "," B "],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":269}],"shape":["A","B","B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":271}],"shape":["AA","AB"," B"],"block":"crafting_table","priority":0},{"type":1,"input":{"A":{"id":5,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":290}],"shape":["AA"," B"," B"],"block":"crafting_table","priority":0},{"type":4,"uuid":"aecd2294-4b94-434b-8667-4499bb2c9327"},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":10}},"output":[{"id":262,"damage":11,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":11}},"output":[{"id":262,"damage":12,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":12}},"output":[{"id":262,"damage":13,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":13}},"output":[{"id":262,"damage":14,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":14}},"output":[{"id":262,"damage":15,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":15}},"output":[{"id":262,"damage":16,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":16}},"output":[{"id":262,"damage":17,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":17}},"output":[{"id":262,"damage":18,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":18}},"output":[{"id":262,"damage":19,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":19}},"output":[{"id":262,"damage":20,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":20}},"output":[{"id":262,"damage":21,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":21}},"output":[{"id":262,"damage":22,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":22}},"output":[{"id":262,"damage":23,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":23}},"output":[{"id":262,"damage":24,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":24}},"output":[{"id":262,"damage":25,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":25}},"output":[{"id":262,"damage":26,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":26}},"output":[{"id":262,"damage":27,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":27}},"output":[{"id":262,"damage":28,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":28}},"output":[{"id":262,"damage":29,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":29}},"output":[{"id":262,"damage":30,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":30}},"output":[{"id":262,"damage":31,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":31}},"output":[{"id":262,"damage":32,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":32}},"output":[{"id":262,"damage":33,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":33}},"output":[{"id":262,"damage":34,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":34}},"output":[{"id":262,"damage":35,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":35}},"output":[{"id":262,"damage":36,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":36}},"output":[{"id":262,"damage":37,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":37}},"output":[{"id":262,"damage":38,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":38}},"output":[{"id":262,"damage":39,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":39}},"output":[{"id":262,"damage":40,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":40}},"output":[{"id":262,"damage":41,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":41}},"output":[{"id":262,"damage":42,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":42}},"output":[{"id":262,"damage":43,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":5}},"output":[{"id":262,"damage":6,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":6}},"output":[{"id":262,"damage":7,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":7}},"output":[{"id":262,"damage":8,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":8}},"output":[{"id":262,"damage":9,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":262},"B":{"id":441,"damage":9}},"output":[{"id":262,"damage":10,"count":8}],"shape":["AAA","ABA","AAA"],"block":"crafting_table","priority":50},{"type":1,"input":{"A":{"id":5,"damage":-1},"B":{"id":280,"damage":-1}},"output":[{"id":268}],"shape":["A","A","B"],"block":"crafting_table","priority":0},{"type":0,"input":[{"id":351},{"id":35,"damage":14}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35,"damage":5}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35,"damage":4}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35,"damage":3}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35,"damage":2}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35,"damage":1}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35,"damage":13}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35,"damage":12}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35,"damage":11}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35,"damage":10}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35,"damage":9}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35,"damage":8}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35,"damage":7}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351},{"id":35,"damage":6}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":15}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":14}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":4}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":3}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":2}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":1}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":13}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":12}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":11}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":10}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":9}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":8}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":7}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":10},{"id":35,"damage":6}],"output":[{"id":35,"damage":5}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":15}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":14}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":5}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":3}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":2}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":1}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":13}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":12}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":11}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":10}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":9}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":8}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":7}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":11},{"id":35,"damage":6}],"output":[{"id":35,"damage":4}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":15}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":14}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":5}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":4}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":2}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":1}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":13}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":12}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":11}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":10}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":9}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":8}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":7}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":12},{"id":35,"damage":6}],"output":[{"id":35,"damage":3}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":15}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":14}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":5}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":4}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":3}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":1}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":13}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":12}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":11}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":10}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":9}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":8}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":7}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":13},{"id":35,"damage":6}],"output":[{"id":35,"damage":2}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":15}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":14}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":5}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":4}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":3}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":2}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":13}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":12}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":11}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":10}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":9}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":8}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":7}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":14},{"id":35,"damage":6}],"output":[{"id":35,"damage":1}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":15}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":14}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":5}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":4}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":3}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":2}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":1}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":13}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":12}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":11}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":10}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":9}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":8}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":7}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":15},{"id":35,"damage":6}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":14}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":5}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":4}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":3}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":2}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":1}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":13}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":12}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":11}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":10}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":9}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":8}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":7}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":16},{"id":35,"damage":6}],"output":[{"id":35,"damage":15}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":15}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":14}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":5}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":4}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":3}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":2}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":1}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":13}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":11}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":10}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":9}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":8}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":7}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":17},{"id":35,"damage":6}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":15}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":14}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":5}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":4}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":3}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":2}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":1}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":13}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":12}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":10}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":9}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":8}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":7}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":18},{"id":35,"damage":6}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":15}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":14}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":5}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":4}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":3}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":2}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":1}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":13}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":12}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":11}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":10}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":9}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":8}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":7}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":19},{"id":35,"damage":6}],"output":[{"id":35}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":15}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":5}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":4}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":3}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":2}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":1}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":13}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":12}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":11}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":10}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":9}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":8}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":7}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":1},{"id":35,"damage":6}],"output":[{"id":35,"damage":14}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":15}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":14}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":5}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":4}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":3}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":2}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":1}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":12}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":11}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":10}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":9}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":8}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":7}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":2},{"id":35,"damage":6}],"output":[{"id":35,"damage":13}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":15}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":14}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":5}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":4}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":3}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":2}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":1}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":13}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":11}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":10}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":9}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":8}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":7}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":3},{"id":35,"damage":6}],"output":[{"id":35,"damage":12}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":15}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":14}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":5}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":4}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":3}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":2}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":1}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":13}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":12}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":10}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":9}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":8}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":7}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":4},{"id":35,"damage":6}],"output":[{"id":35,"damage":11}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":15}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":14}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":5}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":4}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":3}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":2}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":1}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":13}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":12}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":11}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":9}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":8}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":7}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":5},{"id":35,"damage":6}],"output":[{"id":35,"damage":10}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":15}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":14}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":5}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":4}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":3}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":2}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":1}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":13}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":12}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":11}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":10}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":8}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":7}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":6},{"id":35,"damage":6}],"output":[{"id":35,"damage":9}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":15}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":14}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":5}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":4}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":3}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":2}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":1}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":13}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":12}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":11}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":10}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":9}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":7}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":7},{"id":35,"damage":6}],"output":[{"id":35,"damage":8}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":15}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":14}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":5}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":4}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":3}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":2}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":1}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":13}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":12}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":11}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":10}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":9}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":8}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":8},{"id":35,"damage":6}],"output":[{"id":35,"damage":7}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":15}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":14}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":5}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":4}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":3}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":2}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":1}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":13}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":12}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":11}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":10}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":9}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":8}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":0,"input":[{"id":351,"damage":9},{"id":35,"damage":7}],"output":[{"id":35,"damage":6}],"block":"crafting_table","priority":50},{"type":3,"input":{"id":-288,"damage":-1},"output":{"id":266},"block":"furnace"},{"type":3,"input":{"id":-288,"damage":-1},"output":{"id":266},"block":"blast_furnace"},{"type":3,"input":{"id":-274,"damage":-1},"output":{"id":-280},"block":"furnace"},{"type":3,"input":{"id":-271,"damage":-1},"output":{"id":752},"block":"furnace"},{"type":3,"input":{"id":-271,"damage":-1},"output":{"id":752},"block":"blast_furnace"},{"type":3,"input":{"id":-212},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-212,"damage":1},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-212,"damage":2},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-212,"damage":3},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-212,"damage":4},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-212,"damage":5},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-212,"damage":8},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-212,"damage":9},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-212,"damage":10},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-212,"damage":11},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-212,"damage":12},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-212,"damage":13},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-156,"damage":-1},"output":{"id":351,"damage":10},"block":"furnace"},{"type":3,"input":{"id":-10,"damage":-1},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-9,"damage":-1},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-8,"damage":-1},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-7,"damage":-1},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-6,"damage":-1},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":-5,"damage":-1},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":1},"output":{"id":-183},"block":"furnace"},{"type":3,"input":{"id":4,"damage":-1},"output":{"id":1},"block":"furnace"},{"type":3,"input":{"id":12,"damage":-1},"output":{"id":20},"block":"furnace"},{"type":3,"input":{"id":14,"damage":-1},"output":{"id":266},"block":"furnace"},{"type":3,"input":{"id":14,"damage":-1},"output":{"id":266},"block":"blast_furnace"},{"type":3,"input":{"id":15,"damage":-1},"output":{"id":265},"block":"furnace"},{"type":3,"input":{"id":15,"damage":-1},"output":{"id":265},"block":"blast_furnace"},{"type":3,"input":{"id":16,"damage":-1},"output":{"id":263},"block":"furnace"},{"type":3,"input":{"id":16,"damage":-1},"output":{"id":263},"block":"blast_furnace"},{"type":3,"input":{"id":17},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":17,"damage":1},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":17,"damage":2},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":17,"damage":3},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":19,"damage":1},"output":{"id":19},"block":"furnace"},{"type":3,"input":{"id":21,"damage":-1},"output":{"id":351,"damage":4},"block":"furnace"},{"type":3,"input":{"id":21,"damage":-1},"output":{"id":351,"damage":4},"block":"blast_furnace"},{"type":3,"input":{"id":24,"damage":-1},"output":{"id":24,"damage":3},"block":"furnace"},{"type":3,"input":{"id":56,"damage":-1},"output":{"id":264},"block":"furnace"},{"type":3,"input":{"id":56,"damage":-1},"output":{"id":264},"block":"blast_furnace"},{"type":3,"input":{"id":73,"damage":-1},"output":{"id":331},"block":"furnace"},{"type":3,"input":{"id":73,"damage":-1},"output":{"id":331},"block":"blast_furnace"},{"type":3,"input":{"id":81,"damage":-1},"output":{"id":351,"damage":2},"block":"furnace"},{"type":3,"input":{"id":82,"damage":-1},"output":{"id":172},"block":"furnace"},{"type":3,"input":{"id":87,"damage":-1},"output":{"id":405},"block":"furnace"},{"type":3,"input":{"id":98},"output":{"id":98,"damage":2},"block":"furnace"},{"type":3,"input":{"id":112,"damage":-1},"output":{"id":-303},"block":"furnace"},{"type":3,"input":{"id":129,"damage":-1},"output":{"id":388},"block":"furnace"},{"type":3,"input":{"id":129,"damage":-1},"output":{"id":388},"block":"blast_furnace"},{"type":3,"input":{"id":153,"damage":-1},"output":{"id":406},"block":"furnace"},{"type":3,"input":{"id":153,"damage":-1},"output":{"id":406},"block":"blast_furnace"},{"type":3,"input":{"id":155},"output":{"id":155,"damage":3},"block":"furnace"},{"type":3,"input":{"id":159},"output":{"id":220},"block":"furnace"},{"type":3,"input":{"id":159,"damage":1},"output":{"id":221},"block":"furnace"},{"type":3,"input":{"id":159,"damage":2},"output":{"id":222},"block":"furnace"},{"type":3,"input":{"id":159,"damage":3},"output":{"id":223},"block":"furnace"},{"type":3,"input":{"id":159,"damage":4},"output":{"id":224},"block":"furnace"},{"type":3,"input":{"id":159,"damage":5},"output":{"id":225},"block":"furnace"},{"type":3,"input":{"id":159,"damage":6},"output":{"id":226},"block":"furnace"},{"type":3,"input":{"id":159,"damage":7},"output":{"id":227},"block":"furnace"},{"type":3,"input":{"id":159,"damage":8},"output":{"id":228},"block":"furnace"},{"type":3,"input":{"id":159,"damage":9},"output":{"id":229},"block":"furnace"},{"type":3,"input":{"id":159,"damage":10},"output":{"id":219},"block":"furnace"},{"type":3,"input":{"id":159,"damage":11},"output":{"id":231},"block":"furnace"},{"type":3,"input":{"id":159,"damage":12},"output":{"id":232},"block":"furnace"},{"type":3,"input":{"id":159,"damage":13},"output":{"id":233},"block":"furnace"},{"type":3,"input":{"id":159,"damage":14},"output":{"id":234},"block":"furnace"},{"type":3,"input":{"id":159,"damage":15},"output":{"id":235},"block":"furnace"},{"type":3,"input":{"id":162},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":162,"damage":1},"output":{"id":263,"damage":1},"block":"furnace"},{"type":3,"input":{"id":179,"damage":-1},"output":{"id":179,"damage":3},"block":"furnace"},{"type":3,"input":{"id":256,"damage":-1},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":256,"damage":-1},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":257,"damage":-1},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":257,"damage":-1},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":258,"damage":-1},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":258,"damage":-1},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":267,"damage":-1},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":267,"damage":-1},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":283,"damage":-1},"output":{"id":371},"block":"furnace"},{"type":3,"input":{"id":283,"damage":-1},"output":{"id":371},"block":"blast_furnace"},{"type":3,"input":{"id":284,"damage":-1},"output":{"id":371},"block":"furnace"},{"type":3,"input":{"id":284,"damage":-1},"output":{"id":371},"block":"blast_furnace"},{"type":3,"input":{"id":285,"damage":-1},"output":{"id":371},"block":"furnace"},{"type":3,"input":{"id":285,"damage":-1},"output":{"id":371},"block":"blast_furnace"},{"type":3,"input":{"id":286,"damage":-1},"output":{"id":371},"block":"furnace"},{"type":3,"input":{"id":286,"damage":-1},"output":{"id":371},"block":"blast_furnace"},{"type":3,"input":{"id":292,"damage":-1},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":292,"damage":-1},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":294,"damage":-1},"output":{"id":371},"block":"furnace"},{"type":3,"input":{"id":294,"damage":-1},"output":{"id":371},"block":"blast_furnace"},{"type":3,"input":{"id":302},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":302},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":303},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":303},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":304},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":304},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":305},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":305},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":306},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":306},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":307},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":307},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":308},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":308},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":309},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":309},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":314},"output":{"id":371},"block":"furnace"},{"type":3,"input":{"id":314},"output":{"id":371},"block":"blast_furnace"},{"type":3,"input":{"id":315},"output":{"id":371},"block":"furnace"},{"type":3,"input":{"id":315},"output":{"id":371},"block":"blast_furnace"},{"type":3,"input":{"id":316},"output":{"id":371},"block":"furnace"},{"type":3,"input":{"id":316},"output":{"id":371},"block":"blast_furnace"},{"type":3,"input":{"id":317},"output":{"id":371},"block":"furnace"},{"type":3,"input":{"id":317},"output":{"id":371},"block":"blast_furnace"},{"type":3,"input":{"id":319,"damage":-1},"output":{"id":320},"block":"smoker"},{"type":3,"input":{"id":319,"damage":-1},"output":{"id":320},"block":"furnace"},{"type":3,"input":{"id":319,"damage":-1},"output":{"id":320},"block":"soul_campfire"},{"type":3,"input":{"id":319,"damage":-1},"output":{"id":320},"block":"campfire"},{"type":3,"input":{"id":335,"damage":-1},"output":{"id":464},"block":"smoker"},{"type":3,"input":{"id":335,"damage":-1},"output":{"id":464},"block":"furnace"},{"type":3,"input":{"id":335,"damage":-1},"output":{"id":464},"block":"soul_campfire"},{"type":3,"input":{"id":335,"damage":-1},"output":{"id":464},"block":"campfire"},{"type":3,"input":{"id":337,"damage":-1},"output":{"id":336},"block":"furnace"},{"type":3,"input":{"id":349,"damage":-1},"output":{"id":350},"block":"smoker"},{"type":3,"input":{"id":349,"damage":-1},"output":{"id":350},"block":"furnace"},{"type":3,"input":{"id":349,"damage":-1},"output":{"id":350},"block":"soul_campfire"},{"type":3,"input":{"id":349,"damage":-1},"output":{"id":350},"block":"campfire"},{"type":3,"input":{"id":363,"damage":-1},"output":{"id":364},"block":"smoker"},{"type":3,"input":{"id":363,"damage":-1},"output":{"id":364},"block":"furnace"},{"type":3,"input":{"id":363,"damage":-1},"output":{"id":364},"block":"soul_campfire"},{"type":3,"input":{"id":363,"damage":-1},"output":{"id":364},"block":"campfire"},{"type":3,"input":{"id":365,"damage":-1},"output":{"id":366},"block":"smoker"},{"type":3,"input":{"id":365,"damage":-1},"output":{"id":366},"block":"furnace"},{"type":3,"input":{"id":365,"damage":-1},"output":{"id":366},"block":"soul_campfire"},{"type":3,"input":{"id":365,"damage":-1},"output":{"id":366},"block":"campfire"},{"type":3,"input":{"id":392,"damage":-1},"output":{"id":393},"block":"smoker"},{"type":3,"input":{"id":392,"damage":-1},"output":{"id":393},"block":"furnace"},{"type":3,"input":{"id":392,"damage":-1},"output":{"id":393},"block":"soul_campfire"},{"type":3,"input":{"id":392,"damage":-1},"output":{"id":393},"block":"campfire"},{"type":3,"input":{"id":411,"damage":-1},"output":{"id":412},"block":"smoker"},{"type":3,"input":{"id":411,"damage":-1},"output":{"id":412},"block":"furnace"},{"type":3,"input":{"id":411,"damage":-1},"output":{"id":412},"block":"soul_campfire"},{"type":3,"input":{"id":411,"damage":-1},"output":{"id":412},"block":"campfire"},{"type":3,"input":{"id":417,"damage":-1},"output":{"id":452},"block":"furnace"},{"type":3,"input":{"id":417,"damage":-1},"output":{"id":452},"block":"blast_furnace"},{"type":3,"input":{"id":418,"damage":-1},"output":{"id":371},"block":"furnace"},{"type":3,"input":{"id":418,"damage":-1},"output":{"id":371},"block":"blast_furnace"},{"type":3,"input":{"id":423,"damage":-1},"output":{"id":424},"block":"smoker"},{"type":3,"input":{"id":423,"damage":-1},"output":{"id":424},"block":"furnace"},{"type":3,"input":{"id":423,"damage":-1},"output":{"id":424},"block":"soul_campfire"},{"type":3,"input":{"id":423,"damage":-1},"output":{"id":424},"block":"campfire"},{"type":3,"input":{"id":432,"damage":-1},"output":{"id":433},"block":"furnace"},{"type":3,"input":{"id":460,"damage":-1},"output":{"id":463},"block":"smoker"},{"type":3,"input":{"id":460,"damage":-1},"output":{"id":463},"block":"furnace"},{"type":3,"input":{"id":460,"damage":-1},"output":{"id":463},"block":"soul_campfire"},{"type":3,"input":{"id":460,"damage":-1},"output":{"id":463},"block":"campfire"}],"potionMixes":[{"inputId":373,"inputMeta":17,"reagentId":348,"reagentMeta":0,"outputId":373,"outputMeta":42},{"inputId":438,"inputMeta":17,"reagentId":348,"reagentMeta":0,"outputId":438,"outputMeta":42},{"inputId":441,"inputMeta":17,"reagentId":348,"reagentMeta":0,"outputId":441,"outputMeta":42},{"inputId":373,"inputMeta":27,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":24},{"inputId":438,"inputMeta":27,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":24},{"inputId":441,"inputMeta":27,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":24},{"inputId":373,"inputMeta":4,"reagentId":377,"reagentMeta":0,"outputId":373,"outputMeta":31},{"inputId":438,"inputMeta":4,"reagentId":377,"reagentMeta":0,"outputId":438,"outputMeta":31},{"inputId":441,"inputMeta":4,"reagentId":377,"reagentMeta":0,"outputId":441,"outputMeta":31},{"inputId":373,"inputMeta":4,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":34},{"inputId":438,"inputMeta":4,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":34},{"inputId":441,"inputMeta":4,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":34},{"inputId":373,"inputMeta":4,"reagentId":370,"reagentMeta":0,"outputId":373,"outputMeta":28},{"inputId":438,"inputMeta":4,"reagentId":370,"reagentMeta":0,"outputId":438,"outputMeta":28},{"inputId":441,"inputMeta":4,"reagentId":370,"reagentMeta":0,"outputId":441,"outputMeta":28},{"inputId":373,"inputMeta":4,"reagentId":396,"reagentMeta":0,"outputId":373,"outputMeta":5},{"inputId":438,"inputMeta":4,"reagentId":396,"reagentMeta":0,"outputId":438,"outputMeta":5},{"inputId":441,"inputMeta":4,"reagentId":396,"reagentMeta":0,"outputId":441,"outputMeta":5},{"inputId":373,"inputMeta":4,"reagentId":378,"reagentMeta":0,"outputId":373,"outputMeta":12},{"inputId":438,"inputMeta":4,"reagentId":378,"reagentMeta":0,"outputId":438,"outputMeta":12},{"inputId":441,"inputMeta":4,"reagentId":378,"reagentMeta":0,"outputId":441,"outputMeta":12},{"inputId":373,"inputMeta":4,"reagentId":470,"reagentMeta":0,"outputId":373,"outputMeta":40},{"inputId":438,"inputMeta":4,"reagentId":470,"reagentMeta":0,"outputId":438,"outputMeta":40},{"inputId":441,"inputMeta":4,"reagentId":470,"reagentMeta":0,"outputId":441,"outputMeta":40},{"inputId":373,"inputMeta":4,"reagentId":462,"reagentMeta":0,"outputId":373,"outputMeta":19},{"inputId":438,"inputMeta":4,"reagentId":462,"reagentMeta":0,"outputId":438,"outputMeta":19},{"inputId":441,"inputMeta":4,"reagentId":462,"reagentMeta":0,"outputId":441,"outputMeta":19},{"inputId":373,"inputMeta":4,"reagentId":414,"reagentMeta":0,"outputId":373,"outputMeta":9},{"inputId":438,"inputMeta":4,"reagentId":414,"reagentMeta":0,"outputId":438,"outputMeta":9},{"inputId":441,"inputMeta":4,"reagentId":414,"reagentMeta":0,"outputId":441,"outputMeta":9},{"inputId":373,"inputMeta":4,"reagentId":382,"reagentMeta":0,"outputId":373,"outputMeta":21},{"inputId":438,"inputMeta":4,"reagentId":382,"reagentMeta":0,"outputId":438,"outputMeta":21},{"inputId":441,"inputMeta":4,"reagentId":382,"reagentMeta":0,"outputId":441,"outputMeta":21},{"inputId":373,"inputMeta":4,"reagentId":375,"reagentMeta":0,"outputId":373,"outputMeta":25},{"inputId":438,"inputMeta":4,"reagentId":375,"reagentMeta":0,"outputId":438,"outputMeta":25},{"inputId":441,"inputMeta":4,"reagentId":375,"reagentMeta":0,"outputId":441,"outputMeta":25},{"inputId":373,"inputMeta":4,"reagentId":353,"reagentMeta":0,"outputId":373,"outputMeta":14},{"inputId":438,"inputMeta":4,"reagentId":353,"reagentMeta":0,"outputId":438,"outputMeta":14},{"inputId":441,"inputMeta":4,"reagentId":353,"reagentMeta":0,"outputId":441,"outputMeta":14},{"inputId":373,"inputMeta":4,"reagentId":469,"reagentMeta":0,"outputId":373,"outputMeta":37},{"inputId":438,"inputMeta":4,"reagentId":469,"reagentMeta":0,"outputId":438,"outputMeta":37},{"inputId":441,"inputMeta":4,"reagentId":469,"reagentMeta":0,"outputId":441,"outputMeta":37},{"inputId":373,"inputMeta":12,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":13},{"inputId":438,"inputMeta":12,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":13},{"inputId":441,"inputMeta":12,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":13},{"inputId":373,"inputMeta":23,"reagentId":348,"reagentMeta":0,"outputId":373,"outputMeta":24},{"inputId":438,"inputMeta":23,"reagentId":348,"reagentMeta":0,"outputId":438,"outputMeta":24},{"inputId":441,"inputMeta":23,"reagentId":348,"reagentMeta":0,"outputId":441,"outputMeta":24},{"inputId":373,"inputMeta":21,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":23},{"inputId":438,"inputMeta":21,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":23},{"inputId":441,"inputMeta":21,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":23},{"inputId":373,"inputMeta":21,"reagentId":348,"reagentMeta":0,"outputId":373,"outputMeta":22},{"inputId":438,"inputMeta":21,"reagentId":348,"reagentMeta":0,"outputId":438,"outputMeta":22},{"inputId":441,"inputMeta":21,"reagentId":348,"reagentMeta":0,"outputId":441,"outputMeta":22},{"inputId":373,"inputMeta":7,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":8},{"inputId":438,"inputMeta":7,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":8},{"inputId":441,"inputMeta":7,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":8},{"inputId":373,"inputMeta":9,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":17},{"inputId":438,"inputMeta":9,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":17},{"inputId":441,"inputMeta":9,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":17},{"inputId":373,"inputMeta":9,"reagentId":348,"reagentMeta":0,"outputId":373,"outputMeta":11},{"inputId":438,"inputMeta":9,"reagentId":348,"reagentMeta":0,"outputId":438,"outputMeta":11},{"inputId":441,"inputMeta":9,"reagentId":348,"reagentMeta":0,"outputId":441,"outputMeta":11},{"inputId":373,"inputMeta":9,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":10},{"inputId":438,"inputMeta":9,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":10},{"inputId":441,"inputMeta":9,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":10},{"inputId":373,"inputMeta":6,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":8},{"inputId":438,"inputMeta":6,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":8},{"inputId":441,"inputMeta":6,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":8},{"inputId":373,"inputMeta":15,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":18},{"inputId":438,"inputMeta":15,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":18},{"inputId":441,"inputMeta":15,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":18},{"inputId":373,"inputMeta":10,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":18},{"inputId":438,"inputMeta":10,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":18},{"inputId":441,"inputMeta":10,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":18},{"inputId":373,"inputMeta":2,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":35},{"inputId":438,"inputMeta":2,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":35},{"inputId":441,"inputMeta":2,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":35},{"inputId":373,"inputMeta":26,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":23},{"inputId":438,"inputMeta":26,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":23},{"inputId":441,"inputMeta":26,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":23},{"inputId":373,"inputMeta":32,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":35},{"inputId":438,"inputMeta":32,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":35},{"inputId":441,"inputMeta":32,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":35},{"inputId":373,"inputMeta":1,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":34},{"inputId":438,"inputMeta":1,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":34},{"inputId":441,"inputMeta":1,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":34},{"inputId":373,"inputMeta":5,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":7},{"inputId":438,"inputMeta":5,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":7},{"inputId":441,"inputMeta":5,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":7},{"inputId":373,"inputMeta":5,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":6},{"inputId":438,"inputMeta":5,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":6},{"inputId":441,"inputMeta":5,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":6},{"inputId":373,"inputMeta":25,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":23},{"inputId":438,"inputMeta":25,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":23},{"inputId":441,"inputMeta":25,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":23},{"inputId":373,"inputMeta":25,"reagentId":348,"reagentMeta":0,"outputId":373,"outputMeta":27},{"inputId":438,"inputMeta":25,"reagentId":348,"reagentMeta":0,"outputId":438,"outputMeta":27},{"inputId":441,"inputMeta":25,"reagentId":348,"reagentMeta":0,"outputId":441,"outputMeta":27},{"inputId":373,"inputMeta":25,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":26},{"inputId":438,"inputMeta":25,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":26},{"inputId":441,"inputMeta":25,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":26},{"inputId":373,"inputMeta":28,"reagentId":348,"reagentMeta":0,"outputId":373,"outputMeta":30},{"inputId":438,"inputMeta":28,"reagentId":348,"reagentMeta":0,"outputId":438,"outputMeta":30},{"inputId":441,"inputMeta":28,"reagentId":348,"reagentMeta":0,"outputId":441,"outputMeta":30},{"inputId":373,"inputMeta":28,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":29},{"inputId":438,"inputMeta":28,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":29},{"inputId":441,"inputMeta":28,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":29},{"inputId":373,"inputMeta":17,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":18},{"inputId":438,"inputMeta":17,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":18},{"inputId":441,"inputMeta":17,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":18},{"inputId":373,"inputMeta":40,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":41},{"inputId":438,"inputMeta":40,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":41},{"inputId":441,"inputMeta":40,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":41},{"inputId":373,"inputMeta":31,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":34},{"inputId":438,"inputMeta":31,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":34},{"inputId":441,"inputMeta":31,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":34},{"inputId":373,"inputMeta":31,"reagentId":348,"reagentMeta":0,"outputId":373,"outputMeta":33},{"inputId":438,"inputMeta":31,"reagentId":348,"reagentMeta":0,"outputId":438,"outputMeta":33},{"inputId":441,"inputMeta":31,"reagentId":348,"reagentMeta":0,"outputId":441,"outputMeta":33},{"inputId":373,"inputMeta":31,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":32},{"inputId":438,"inputMeta":31,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":32},{"inputId":441,"inputMeta":31,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":32},{"inputId":373,"inputMeta":22,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":24},{"inputId":438,"inputMeta":22,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":24},{"inputId":441,"inputMeta":22,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":24},{"inputId":373,"inputMeta":33,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":34},{"inputId":438,"inputMeta":33,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":34},{"inputId":441,"inputMeta":33,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":34},{"inputId":373,"inputMeta":14,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":17},{"inputId":438,"inputMeta":14,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":17},{"inputId":441,"inputMeta":14,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":17},{"inputId":373,"inputMeta":14,"reagentId":348,"reagentMeta":0,"outputId":373,"outputMeta":16},{"inputId":438,"inputMeta":14,"reagentId":348,"reagentMeta":0,"outputId":438,"outputMeta":16},{"inputId":441,"inputMeta":14,"reagentId":348,"reagentMeta":0,"outputId":441,"outputMeta":16},{"inputId":373,"inputMeta":14,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":15},{"inputId":438,"inputMeta":14,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":15},{"inputId":441,"inputMeta":14,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":15},{"inputId":373,"inputMeta":3,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":34},{"inputId":438,"inputMeta":3,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":34},{"inputId":441,"inputMeta":3,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":34},{"inputId":373,"inputMeta":37,"reagentId":348,"reagentMeta":0,"outputId":373,"outputMeta":39},{"inputId":438,"inputMeta":37,"reagentId":348,"reagentMeta":0,"outputId":438,"outputMeta":39},{"inputId":441,"inputMeta":37,"reagentId":348,"reagentMeta":0,"outputId":441,"outputMeta":39},{"inputId":373,"inputMeta":37,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":38},{"inputId":438,"inputMeta":37,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":38},{"inputId":441,"inputMeta":37,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":38},{"inputId":373,"inputMeta":0,"reagentId":377,"reagentMeta":0,"outputId":373,"outputMeta":1},{"inputId":438,"inputMeta":0,"reagentId":377,"reagentMeta":0,"outputId":438,"outputMeta":1},{"inputId":441,"inputMeta":0,"reagentId":377,"reagentMeta":0,"outputId":441,"outputMeta":1},{"inputId":373,"inputMeta":19,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":20},{"inputId":438,"inputMeta":19,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":20},{"inputId":441,"inputMeta":19,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":20},{"inputId":373,"inputMeta":0,"reagentId":376,"reagentMeta":0,"outputId":373,"outputMeta":34},{"inputId":438,"inputMeta":0,"reagentId":376,"reagentMeta":0,"outputId":438,"outputMeta":34},{"inputId":441,"inputMeta":0,"reagentId":376,"reagentMeta":0,"outputId":441,"outputMeta":34},{"inputId":373,"inputMeta":0,"reagentId":370,"reagentMeta":0,"outputId":373,"outputMeta":1},{"inputId":438,"inputMeta":0,"reagentId":370,"reagentMeta":0,"outputId":438,"outputMeta":1},{"inputId":441,"inputMeta":0,"reagentId":370,"reagentMeta":0,"outputId":441,"outputMeta":1},{"inputId":373,"inputMeta":0,"reagentId":348,"reagentMeta":0,"outputId":373,"outputMeta":3},{"inputId":438,"inputMeta":0,"reagentId":348,"reagentMeta":0,"outputId":438,"outputMeta":3},{"inputId":441,"inputMeta":0,"reagentId":348,"reagentMeta":0,"outputId":441,"outputMeta":3},{"inputId":373,"inputMeta":0,"reagentId":378,"reagentMeta":0,"outputId":373,"outputMeta":1},{"inputId":438,"inputMeta":0,"reagentId":378,"reagentMeta":0,"outputId":438,"outputMeta":1},{"inputId":441,"inputMeta":0,"reagentId":378,"reagentMeta":0,"outputId":441,"outputMeta":1},{"inputId":373,"inputMeta":0,"reagentId":372,"reagentMeta":0,"outputId":373,"outputMeta":4},{"inputId":438,"inputMeta":0,"reagentId":372,"reagentMeta":0,"outputId":438,"outputMeta":4},{"inputId":441,"inputMeta":0,"reagentId":372,"reagentMeta":0,"outputId":441,"outputMeta":4},{"inputId":373,"inputMeta":0,"reagentId":414,"reagentMeta":0,"outputId":373,"outputMeta":1},{"inputId":438,"inputMeta":0,"reagentId":414,"reagentMeta":0,"outputId":438,"outputMeta":1},{"inputId":441,"inputMeta":0,"reagentId":414,"reagentMeta":0,"outputId":441,"outputMeta":1},{"inputId":373,"inputMeta":0,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":1},{"inputId":438,"inputMeta":0,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":1},{"inputId":441,"inputMeta":0,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":1},{"inputId":373,"inputMeta":0,"reagentId":382,"reagentMeta":0,"outputId":373,"outputMeta":1},{"inputId":438,"inputMeta":0,"reagentId":382,"reagentMeta":0,"outputId":438,"outputMeta":1},{"inputId":441,"inputMeta":0,"reagentId":382,"reagentMeta":0,"outputId":441,"outputMeta":1},{"inputId":373,"inputMeta":0,"reagentId":375,"reagentMeta":0,"outputId":373,"outputMeta":1},{"inputId":438,"inputMeta":0,"reagentId":375,"reagentMeta":0,"outputId":438,"outputMeta":1},{"inputId":441,"inputMeta":0,"reagentId":375,"reagentMeta":0,"outputId":441,"outputMeta":1},{"inputId":373,"inputMeta":0,"reagentId":353,"reagentMeta":0,"outputId":373,"outputMeta":1},{"inputId":438,"inputMeta":0,"reagentId":353,"reagentMeta":0,"outputId":438,"outputMeta":1},{"inputId":441,"inputMeta":0,"reagentId":353,"reagentMeta":0,"outputId":441,"outputMeta":1},{"inputId":373,"inputMeta":34,"reagentId":331,"reagentMeta":0,"outputId":373,"outputMeta":35},{"inputId":438,"inputMeta":34,"reagentId":331,"reagentMeta":0,"outputId":438,"outputMeta":35},{"inputId":441,"inputMeta":34,"reagentId":331,"reagentMeta":0,"outputId":441,"outputMeta":35}],"containerMixes":[{"inputId":373,"reagentId":289,"outputId":438},{"inputId":438,"reagentId":437,"outputId":441}]} \ No newline at end of file diff --git a/src/main/resources/runtime_block_states.dat b/src/main/resources/runtime_block_states.dat index dcead2ccf5e..e9a55547410 100644 Binary files a/src/main/resources/runtime_block_states.dat and b/src/main/resources/runtime_block_states.dat differ diff --git a/src/main/resources/runtime_item_states.json b/src/main/resources/runtime_item_states.json index ea44766b2df..2c63f6397be 100644 --- a/src/main/resources/runtime_item_states.json +++ b/src/main/resources/runtime_item_states.json @@ -1 +1 @@ -[{"name":"minecraft:acacia_boat","id":382},{"name":"minecraft:acacia_button","id":-140},{"name":"minecraft:acacia_chest_boat","id":651},{"name":"minecraft:acacia_door","id":565},{"name":"minecraft:acacia_fence","id":-575},{"name":"minecraft:acacia_fence_gate","id":187},{"name":"minecraft:acacia_hanging_sign","id":-504},{"name":"minecraft:acacia_log","id":162},{"name":"minecraft:acacia_planks","id":-742},{"name":"minecraft:acacia_pressure_plate","id":-150},{"name":"minecraft:acacia_sign","id":588},{"name":"minecraft:acacia_stairs","id":163},{"name":"minecraft:acacia_standing_sign","id":-190},{"name":"minecraft:acacia_trapdoor","id":-145},{"name":"minecraft:acacia_wall_sign","id":-191},{"name":"minecraft:activator_rail","id":126},{"name":"minecraft:agent_spawn_egg","id":490},{"name":"minecraft:air","id":-158},{"name":"minecraft:allay_spawn_egg","id":640},{"name":"minecraft:allow","id":210},{"name":"minecraft:amethyst_block","id":-327},{"name":"minecraft:amethyst_cluster","id":-329},{"name":"minecraft:amethyst_shard","id":633},{"name":"minecraft:ancient_debris","id":-271},{"name":"minecraft:andesite","id":-594},{"name":"minecraft:andesite_stairs","id":-171},{"name":"minecraft:angler_pottery_sherd","id":665},{"name":"minecraft:anvil","id":145},{"name":"minecraft:apple","id":257},{"name":"minecraft:archer_pottery_sherd","id":666},{"name":"minecraft:armadillo_scute","id":707},{"name":"minecraft:armadillo_spawn_egg","id":706},{"name":"minecraft:armor_stand","id":561},{"name":"minecraft:arms_up_pottery_sherd","id":667},{"name":"minecraft:arrow","id":304},{"name":"minecraft:axolotl_bucket","id":372},{"name":"minecraft:axolotl_spawn_egg","id":505},{"name":"minecraft:azalea","id":-337},{"name":"minecraft:azalea_leaves","id":-324},{"name":"minecraft:azalea_leaves_flowered","id":-325},{"name":"minecraft:baked_potato","id":282},{"name":"minecraft:balloon","id":607},{"name":"minecraft:bamboo","id":-163},{"name":"minecraft:bamboo_block","id":-527},{"name":"minecraft:bamboo_button","id":-511},{"name":"minecraft:bamboo_chest_raft","id":663},{"name":"minecraft:bamboo_door","id":-517},{"name":"minecraft:bamboo_double_slab","id":-521},{"name":"minecraft:bamboo_fence","id":-515},{"name":"minecraft:bamboo_fence_gate","id":-516},{"name":"minecraft:bamboo_hanging_sign","id":-522},{"name":"minecraft:bamboo_mosaic","id":-509},{"name":"minecraft:bamboo_mosaic_double_slab","id":-525},{"name":"minecraft:bamboo_mosaic_slab","id":-524},{"name":"minecraft:bamboo_mosaic_stairs","id":-523},{"name":"minecraft:bamboo_planks","id":-510},{"name":"minecraft:bamboo_pressure_plate","id":-514},{"name":"minecraft:bamboo_raft","id":662},{"name":"minecraft:bamboo_sapling","id":-164},{"name":"minecraft:bamboo_sign","id":661},{"name":"minecraft:bamboo_slab","id":-513},{"name":"minecraft:bamboo_stairs","id":-512},{"name":"minecraft:bamboo_standing_sign","id":-518},{"name":"minecraft:bamboo_trapdoor","id":-520},{"name":"minecraft:bamboo_wall_sign","id":-519},{"name":"minecraft:banner","id":576},{"name":"minecraft:banner_pattern","id":725},{"name":"minecraft:barrel","id":-203},{"name":"minecraft:barrier","id":-161},{"name":"minecraft:basalt","id":-234},{"name":"minecraft:bat_spawn_egg","id":456},{"name":"minecraft:beacon","id":138},{"name":"minecraft:bed","id":421},{"name":"minecraft:bedrock","id":7},{"name":"minecraft:bee_nest","id":-218},{"name":"minecraft:bee_spawn_egg","id":497},{"name":"minecraft:beef","id":274},{"name":"minecraft:beehive","id":-219},{"name":"minecraft:beetroot","id":286},{"name":"minecraft:beetroot_seeds","id":296},{"name":"minecraft:beetroot_soup","id":287},{"name":"minecraft:bell","id":-206},{"name":"minecraft:big_dripleaf","id":-323},{"name":"minecraft:birch_boat","id":379},{"name":"minecraft:birch_button","id":-141},{"name":"minecraft:birch_chest_boat","id":648},{"name":"minecraft:birch_door","id":563},{"name":"minecraft:birch_fence","id":-576},{"name":"minecraft:birch_fence_gate","id":184},{"name":"minecraft:birch_hanging_sign","id":-502},{"name":"minecraft:birch_log","id":-570},{"name":"minecraft:birch_planks","id":-740},{"name":"minecraft:birch_pressure_plate","id":-151},{"name":"minecraft:birch_sign","id":586},{"name":"minecraft:birch_stairs","id":135},{"name":"minecraft:birch_standing_sign","id":-186},{"name":"minecraft:birch_trapdoor","id":-146},{"name":"minecraft:birch_wall_sign","id":-187},{"name":"minecraft:black_candle","id":-428},{"name":"minecraft:black_candle_cake","id":-445},{"name":"minecraft:black_carpet","id":-611},{"name":"minecraft:black_concrete","id":-642},{"name":"minecraft:black_concrete_powder","id":-723},{"name":"minecraft:black_dye","id":398},{"name":"minecraft:black_glazed_terracotta","id":235},{"name":"minecraft:black_shulker_box","id":-627},{"name":"minecraft:black_stained_glass","id":-687},{"name":"minecraft:black_stained_glass_pane","id":-657},{"name":"minecraft:black_terracotta","id":-738},{"name":"minecraft:black_wool","id":-554},{"name":"minecraft:blackstone","id":-273},{"name":"minecraft:blackstone_double_slab","id":-283},{"name":"minecraft:blackstone_slab","id":-282},{"name":"minecraft:blackstone_stairs","id":-276},{"name":"minecraft:blackstone_wall","id":-277},{"name":"minecraft:blade_pottery_sherd","id":668},{"name":"minecraft:blast_furnace","id":-196},{"name":"minecraft:blaze_powder","id":432},{"name":"minecraft:blaze_rod","id":426},{"name":"minecraft:blaze_spawn_egg","id":459},{"name":"minecraft:bleach","id":605},{"name":"minecraft:blue_candle","id":-424},{"name":"minecraft:blue_candle_cake","id":-441},{"name":"minecraft:blue_carpet","id":-607},{"name":"minecraft:blue_concrete","id":-638},{"name":"minecraft:blue_concrete_powder","id":-719},{"name":"minecraft:blue_dye","id":402},{"name":"minecraft:blue_glazed_terracotta","id":231},{"name":"minecraft:blue_ice","id":-11},{"name":"minecraft:blue_shulker_box","id":-623},{"name":"minecraft:blue_stained_glass","id":-683},{"name":"minecraft:blue_stained_glass_pane","id":-653},{"name":"minecraft:blue_terracotta","id":-734},{"name":"minecraft:blue_wool","id":-563},{"name":"minecraft:boat","id":723},{"name":"minecraft:bone","id":418},{"name":"minecraft:bone_block","id":216},{"name":"minecraft:bone_meal","id":414},{"name":"minecraft:book","id":390},{"name":"minecraft:bookshelf","id":47},{"name":"minecraft:border_block","id":212},{"name":"minecraft:bordure_indented_banner_pattern","id":595},{"name":"minecraft:bow","id":303},{"name":"minecraft:bowl","id":324},{"name":"minecraft:brain_coral","id":-581},{"name":"minecraft:bread","id":262},{"name":"minecraft:breeze_spawn_egg","id":504},{"name":"minecraft:brewer_pottery_sherd","id":669},{"name":"minecraft:brewing_stand","id":434},{"name":"minecraft:brick","id":386},{"name":"minecraft:brick_block","id":45},{"name":"minecraft:brick_stairs","id":108},{"name":"minecraft:brown_candle","id":-425},{"name":"minecraft:brown_candle_cake","id":-442},{"name":"minecraft:brown_carpet","id":-608},{"name":"minecraft:brown_concrete","id":-639},{"name":"minecraft:brown_concrete_powder","id":-720},{"name":"minecraft:brown_dye","id":401},{"name":"minecraft:brown_glazed_terracotta","id":232},{"name":"minecraft:brown_mushroom","id":39},{"name":"minecraft:brown_mushroom_block","id":99},{"name":"minecraft:brown_shulker_box","id":-624},{"name":"minecraft:brown_stained_glass","id":-684},{"name":"minecraft:brown_stained_glass_pane","id":-654},{"name":"minecraft:brown_terracotta","id":-735},{"name":"minecraft:brown_wool","id":-555},{"name":"minecraft:brush","id":685},{"name":"minecraft:bubble_column","id":-160},{"name":"minecraft:bubble_coral","id":-582},{"name":"minecraft:bucket","id":363},{"name":"minecraft:budding_amethyst","id":-328},{"name":"minecraft:burn_pottery_sherd","id":670},{"name":"minecraft:cactus","id":81},{"name":"minecraft:cake","id":420},{"name":"minecraft:calcite","id":-326},{"name":"minecraft:calibrated_sculk_sensor","id":-580},{"name":"minecraft:camel_spawn_egg","id":664},{"name":"minecraft:camera","id":602},{"name":"minecraft:campfire","id":598},{"name":"minecraft:candle","id":-412},{"name":"minecraft:candle_cake","id":-429},{"name":"minecraft:carpet","id":710},{"name":"minecraft:carrot","id":280},{"name":"minecraft:carrot_on_a_stick","id":526},{"name":"minecraft:carrots","id":141},{"name":"minecraft:cartography_table","id":-200},{"name":"minecraft:carved_pumpkin","id":-155},{"name":"minecraft:cat_spawn_egg","id":491},{"name":"minecraft:cauldron","id":435},{"name":"minecraft:cave_spider_spawn_egg","id":460},{"name":"minecraft:cave_vines","id":-322},{"name":"minecraft:cave_vines_body_with_berries","id":-375},{"name":"minecraft:cave_vines_head_with_berries","id":-376},{"name":"minecraft:chain","id":628},{"name":"minecraft:chain_command_block","id":189},{"name":"minecraft:chainmail_boots","id":345},{"name":"minecraft:chainmail_chestplate","id":343},{"name":"minecraft:chainmail_helmet","id":342},{"name":"minecraft:chainmail_leggings","id":344},{"name":"minecraft:charcoal","id":306},{"name":"minecraft:chemical_heat","id":192},{"name":"minecraft:chemistry_table","id":238},{"name":"minecraft:cherry_boat","id":658},{"name":"minecraft:cherry_button","id":-530},{"name":"minecraft:cherry_chest_boat","id":659},{"name":"minecraft:cherry_door","id":-531},{"name":"minecraft:cherry_double_slab","id":-540},{"name":"minecraft:cherry_fence","id":-532},{"name":"minecraft:cherry_fence_gate","id":-533},{"name":"minecraft:cherry_hanging_sign","id":-534},{"name":"minecraft:cherry_leaves","id":-548},{"name":"minecraft:cherry_log","id":-536},{"name":"minecraft:cherry_planks","id":-537},{"name":"minecraft:cherry_pressure_plate","id":-538},{"name":"minecraft:cherry_sapling","id":-547},{"name":"minecraft:cherry_sign","id":660},{"name":"minecraft:cherry_slab","id":-539},{"name":"minecraft:cherry_stairs","id":-541},{"name":"minecraft:cherry_standing_sign","id":-542},{"name":"minecraft:cherry_trapdoor","id":-543},{"name":"minecraft:cherry_wall_sign","id":-544},{"name":"minecraft:cherry_wood","id":-546},{"name":"minecraft:chest","id":54},{"name":"minecraft:chest_boat","id":654},{"name":"minecraft:chest_minecart","id":392},{"name":"minecraft:chicken","id":276},{"name":"minecraft:chicken_spawn_egg","id":438},{"name":"minecraft:chiseled_bookshelf","id":-526},{"name":"minecraft:chiseled_copper","id":-760},{"name":"minecraft:chiseled_deepslate","id":-395},{"name":"minecraft:chiseled_nether_bricks","id":-302},{"name":"minecraft:chiseled_polished_blackstone","id":-279},{"name":"minecraft:chiseled_tuff","id":-753},{"name":"minecraft:chiseled_tuff_bricks","id":-759},{"name":"minecraft:chorus_flower","id":200},{"name":"minecraft:chorus_fruit","id":567},{"name":"minecraft:chorus_plant","id":240},{"name":"minecraft:clay","id":82},{"name":"minecraft:clay_ball","id":387},{"name":"minecraft:client_request_placeholder_block","id":-465},{"name":"minecraft:clock","id":396},{"name":"minecraft:coal","id":305},{"name":"minecraft:coal_block","id":173},{"name":"minecraft:coal_ore","id":16},{"name":"minecraft:coast_armor_trim_smithing_template","id":689},{"name":"minecraft:cobbled_deepslate","id":-379},{"name":"minecraft:cobbled_deepslate_double_slab","id":-396},{"name":"minecraft:cobbled_deepslate_slab","id":-380},{"name":"minecraft:cobbled_deepslate_stairs","id":-381},{"name":"minecraft:cobbled_deepslate_wall","id":-382},{"name":"minecraft:cobblestone","id":4},{"name":"minecraft:cobblestone_wall","id":139},{"name":"minecraft:cocoa","id":127},{"name":"minecraft:cocoa_beans","id":415},{"name":"minecraft:cod","id":265},{"name":"minecraft:cod_bucket","id":367},{"name":"minecraft:cod_spawn_egg","id":483},{"name":"minecraft:colored_torch_bp","id":204},{"name":"minecraft:colored_torch_rg","id":202},{"name":"minecraft:command_block","id":137},{"name":"minecraft:command_block_minecart","id":572},{"name":"minecraft:comparator","id":531},{"name":"minecraft:compass","id":394},{"name":"minecraft:composter","id":-213},{"name":"minecraft:compound","id":603},{"name":"minecraft:concrete","id":716},{"name":"minecraft:concrete_powder","id":717},{"name":"minecraft:conduit","id":-157},{"name":"minecraft:cooked_beef","id":275},{"name":"minecraft:cooked_chicken","id":277},{"name":"minecraft:cooked_cod","id":269},{"name":"minecraft:cooked_mutton","id":560},{"name":"minecraft:cooked_porkchop","id":264},{"name":"minecraft:cooked_rabbit","id":290},{"name":"minecraft:cooked_salmon","id":270},{"name":"minecraft:cookie","id":272},{"name":"minecraft:copper_block","id":-340},{"name":"minecraft:copper_bulb","id":-776},{"name":"minecraft:copper_door","id":-784},{"name":"minecraft:copper_grate","id":-768},{"name":"minecraft:copper_ingot","id":513},{"name":"minecraft:copper_ore","id":-311},{"name":"minecraft:copper_trapdoor","id":-792},{"name":"minecraft:coral","id":714},{"name":"minecraft:coral_block","id":-132},{"name":"minecraft:coral_fan","id":-133},{"name":"minecraft:coral_fan_dead","id":-134},{"name":"minecraft:coral_fan_hang","id":-135},{"name":"minecraft:coral_fan_hang2","id":-136},{"name":"minecraft:coral_fan_hang3","id":-137},{"name":"minecraft:cow_spawn_egg","id":439},{"name":"minecraft:cracked_deepslate_bricks","id":-410},{"name":"minecraft:cracked_deepslate_tiles","id":-409},{"name":"minecraft:cracked_nether_bricks","id":-303},{"name":"minecraft:cracked_polished_blackstone_bricks","id":-280},{"name":"minecraft:crafter","id":-313},{"name":"minecraft:crafting_table","id":58},{"name":"minecraft:creeper_banner_pattern","id":591},{"name":"minecraft:creeper_spawn_egg","id":444},{"name":"minecraft:crimson_button","id":-260},{"name":"minecraft:crimson_door","id":625},{"name":"minecraft:crimson_double_slab","id":-266},{"name":"minecraft:crimson_fence","id":-256},{"name":"minecraft:crimson_fence_gate","id":-258},{"name":"minecraft:crimson_fungus","id":-228},{"name":"minecraft:crimson_hanging_sign","id":-506},{"name":"minecraft:crimson_hyphae","id":-299},{"name":"minecraft:crimson_nylium","id":-232},{"name":"minecraft:crimson_planks","id":-242},{"name":"minecraft:crimson_pressure_plate","id":-262},{"name":"minecraft:crimson_roots","id":-223},{"name":"minecraft:crimson_sign","id":623},{"name":"minecraft:crimson_slab","id":-264},{"name":"minecraft:crimson_stairs","id":-254},{"name":"minecraft:crimson_standing_sign","id":-250},{"name":"minecraft:crimson_stem","id":-225},{"name":"minecraft:crimson_trapdoor","id":-246},{"name":"minecraft:crimson_wall_sign","id":-252},{"name":"minecraft:crossbow","id":584},{"name":"minecraft:crying_obsidian","id":-289},{"name":"minecraft:cut_copper","id":-347},{"name":"minecraft:cut_copper_slab","id":-361},{"name":"minecraft:cut_copper_stairs","id":-354},{"name":"minecraft:cyan_candle","id":-422},{"name":"minecraft:cyan_candle_cake","id":-439},{"name":"minecraft:cyan_carpet","id":-605},{"name":"minecraft:cyan_concrete","id":-636},{"name":"minecraft:cyan_concrete_powder","id":-717},{"name":"minecraft:cyan_dye","id":404},{"name":"minecraft:cyan_glazed_terracotta","id":229},{"name":"minecraft:cyan_shulker_box","id":-621},{"name":"minecraft:cyan_stained_glass","id":-681},{"name":"minecraft:cyan_stained_glass_pane","id":-651},{"name":"minecraft:cyan_terracotta","id":-732},{"name":"minecraft:cyan_wool","id":-561},{"name":"minecraft:danger_pottery_sherd","id":671},{"name":"minecraft:dark_oak_boat","id":383},{"name":"minecraft:dark_oak_button","id":-142},{"name":"minecraft:dark_oak_chest_boat","id":652},{"name":"minecraft:dark_oak_door","id":566},{"name":"minecraft:dark_oak_fence","id":-577},{"name":"minecraft:dark_oak_fence_gate","id":186},{"name":"minecraft:dark_oak_hanging_sign","id":-505},{"name":"minecraft:dark_oak_log","id":-572},{"name":"minecraft:dark_oak_planks","id":-743},{"name":"minecraft:dark_oak_pressure_plate","id":-152},{"name":"minecraft:dark_oak_sign","id":589},{"name":"minecraft:dark_oak_stairs","id":164},{"name":"minecraft:dark_oak_trapdoor","id":-147},{"name":"minecraft:dark_prismarine_stairs","id":-3},{"name":"minecraft:darkoak_standing_sign","id":-192},{"name":"minecraft:darkoak_wall_sign","id":-193},{"name":"minecraft:daylight_detector","id":151},{"name":"minecraft:daylight_detector_inverted","id":178},{"name":"minecraft:dead_brain_coral","id":-586},{"name":"minecraft:dead_bubble_coral","id":-587},{"name":"minecraft:dead_fire_coral","id":-588},{"name":"minecraft:dead_horn_coral","id":-589},{"name":"minecraft:dead_tube_coral","id":-585},{"name":"minecraft:deadbush","id":32},{"name":"minecraft:decorated_pot","id":-551},{"name":"minecraft:deepslate","id":-378},{"name":"minecraft:deepslate_brick_double_slab","id":-399},{"name":"minecraft:deepslate_brick_slab","id":-392},{"name":"minecraft:deepslate_brick_stairs","id":-393},{"name":"minecraft:deepslate_brick_wall","id":-394},{"name":"minecraft:deepslate_bricks","id":-391},{"name":"minecraft:deepslate_coal_ore","id":-406},{"name":"minecraft:deepslate_copper_ore","id":-408},{"name":"minecraft:deepslate_diamond_ore","id":-405},{"name":"minecraft:deepslate_emerald_ore","id":-407},{"name":"minecraft:deepslate_gold_ore","id":-402},{"name":"minecraft:deepslate_iron_ore","id":-401},{"name":"minecraft:deepslate_lapis_ore","id":-400},{"name":"minecraft:deepslate_redstone_ore","id":-403},{"name":"minecraft:deepslate_tile_double_slab","id":-398},{"name":"minecraft:deepslate_tile_slab","id":-388},{"name":"minecraft:deepslate_tile_stairs","id":-389},{"name":"minecraft:deepslate_tile_wall","id":-390},{"name":"minecraft:deepslate_tiles","id":-387},{"name":"minecraft:deny","id":211},{"name":"minecraft:detector_rail","id":28},{"name":"minecraft:diamond","id":307},{"name":"minecraft:diamond_axe","id":322},{"name":"minecraft:diamond_block","id":57},{"name":"minecraft:diamond_boots","id":353},{"name":"minecraft:diamond_chestplate","id":351},{"name":"minecraft:diamond_helmet","id":350},{"name":"minecraft:diamond_hoe","id":335},{"name":"minecraft:diamond_horse_armor","id":542},{"name":"minecraft:diamond_leggings","id":352},{"name":"minecraft:diamond_ore","id":56},{"name":"minecraft:diamond_pickaxe","id":321},{"name":"minecraft:diamond_shovel","id":320},{"name":"minecraft:diamond_sword","id":319},{"name":"minecraft:diorite","id":-592},{"name":"minecraft:diorite_stairs","id":-170},{"name":"minecraft:dirt","id":3},{"name":"minecraft:dirt_with_roots","id":-318},{"name":"minecraft:disc_fragment_5","id":646},{"name":"minecraft:dispenser","id":23},{"name":"minecraft:dolphin_spawn_egg","id":487},{"name":"minecraft:donkey_spawn_egg","id":468},{"name":"minecraft:double_cut_copper_slab","id":-368},{"name":"minecraft:double_plant","id":175},{"name":"minecraft:double_stone_block_slab","id":43},{"name":"minecraft:double_stone_block_slab2","id":181},{"name":"minecraft:double_stone_block_slab3","id":-167},{"name":"minecraft:double_stone_block_slab4","id":-168},{"name":"minecraft:double_wooden_slab","id":157},{"name":"minecraft:dragon_breath","id":569},{"name":"minecraft:dragon_egg","id":122},{"name":"minecraft:dried_kelp","id":271},{"name":"minecraft:dried_kelp_block","id":-139},{"name":"minecraft:dripstone_block","id":-317},{"name":"minecraft:dropper","id":125},{"name":"minecraft:drowned_spawn_egg","id":486},{"name":"minecraft:dune_armor_trim_smithing_template","id":688},{"name":"minecraft:dye","id":724},{"name":"minecraft:echo_shard","id":656},{"name":"minecraft:egg","id":393},{"name":"minecraft:elder_guardian_spawn_egg","id":474},{"name":"minecraft:element_0","id":36},{"name":"minecraft:element_1","id":-12},{"name":"minecraft:element_10","id":-21},{"name":"minecraft:element_100","id":-111},{"name":"minecraft:element_101","id":-112},{"name":"minecraft:element_102","id":-113},{"name":"minecraft:element_103","id":-114},{"name":"minecraft:element_104","id":-115},{"name":"minecraft:element_105","id":-116},{"name":"minecraft:element_106","id":-117},{"name":"minecraft:element_107","id":-118},{"name":"minecraft:element_108","id":-119},{"name":"minecraft:element_109","id":-120},{"name":"minecraft:element_11","id":-22},{"name":"minecraft:element_110","id":-121},{"name":"minecraft:element_111","id":-122},{"name":"minecraft:element_112","id":-123},{"name":"minecraft:element_113","id":-124},{"name":"minecraft:element_114","id":-125},{"name":"minecraft:element_115","id":-126},{"name":"minecraft:element_116","id":-127},{"name":"minecraft:element_117","id":-128},{"name":"minecraft:element_118","id":-129},{"name":"minecraft:element_12","id":-23},{"name":"minecraft:element_13","id":-24},{"name":"minecraft:element_14","id":-25},{"name":"minecraft:element_15","id":-26},{"name":"minecraft:element_16","id":-27},{"name":"minecraft:element_17","id":-28},{"name":"minecraft:element_18","id":-29},{"name":"minecraft:element_19","id":-30},{"name":"minecraft:element_2","id":-13},{"name":"minecraft:element_20","id":-31},{"name":"minecraft:element_21","id":-32},{"name":"minecraft:element_22","id":-33},{"name":"minecraft:element_23","id":-34},{"name":"minecraft:element_24","id":-35},{"name":"minecraft:element_25","id":-36},{"name":"minecraft:element_26","id":-37},{"name":"minecraft:element_27","id":-38},{"name":"minecraft:element_28","id":-39},{"name":"minecraft:element_29","id":-40},{"name":"minecraft:element_3","id":-14},{"name":"minecraft:element_30","id":-41},{"name":"minecraft:element_31","id":-42},{"name":"minecraft:element_32","id":-43},{"name":"minecraft:element_33","id":-44},{"name":"minecraft:element_34","id":-45},{"name":"minecraft:element_35","id":-46},{"name":"minecraft:element_36","id":-47},{"name":"minecraft:element_37","id":-48},{"name":"minecraft:element_38","id":-49},{"name":"minecraft:element_39","id":-50},{"name":"minecraft:element_4","id":-15},{"name":"minecraft:element_40","id":-51},{"name":"minecraft:element_41","id":-52},{"name":"minecraft:element_42","id":-53},{"name":"minecraft:element_43","id":-54},{"name":"minecraft:element_44","id":-55},{"name":"minecraft:element_45","id":-56},{"name":"minecraft:element_46","id":-57},{"name":"minecraft:element_47","id":-58},{"name":"minecraft:element_48","id":-59},{"name":"minecraft:element_49","id":-60},{"name":"minecraft:element_5","id":-16},{"name":"minecraft:element_50","id":-61},{"name":"minecraft:element_51","id":-62},{"name":"minecraft:element_52","id":-63},{"name":"minecraft:element_53","id":-64},{"name":"minecraft:element_54","id":-65},{"name":"minecraft:element_55","id":-66},{"name":"minecraft:element_56","id":-67},{"name":"minecraft:element_57","id":-68},{"name":"minecraft:element_58","id":-69},{"name":"minecraft:element_59","id":-70},{"name":"minecraft:element_6","id":-17},{"name":"minecraft:element_60","id":-71},{"name":"minecraft:element_61","id":-72},{"name":"minecraft:element_62","id":-73},{"name":"minecraft:element_63","id":-74},{"name":"minecraft:element_64","id":-75},{"name":"minecraft:element_65","id":-76},{"name":"minecraft:element_66","id":-77},{"name":"minecraft:element_67","id":-78},{"name":"minecraft:element_68","id":-79},{"name":"minecraft:element_69","id":-80},{"name":"minecraft:element_7","id":-18},{"name":"minecraft:element_70","id":-81},{"name":"minecraft:element_71","id":-82},{"name":"minecraft:element_72","id":-83},{"name":"minecraft:element_73","id":-84},{"name":"minecraft:element_74","id":-85},{"name":"minecraft:element_75","id":-86},{"name":"minecraft:element_76","id":-87},{"name":"minecraft:element_77","id":-88},{"name":"minecraft:element_78","id":-89},{"name":"minecraft:element_79","id":-90},{"name":"minecraft:element_8","id":-19},{"name":"minecraft:element_80","id":-91},{"name":"minecraft:element_81","id":-92},{"name":"minecraft:element_82","id":-93},{"name":"minecraft:element_83","id":-94},{"name":"minecraft:element_84","id":-95},{"name":"minecraft:element_85","id":-96},{"name":"minecraft:element_86","id":-97},{"name":"minecraft:element_87","id":-98},{"name":"minecraft:element_88","id":-99},{"name":"minecraft:element_89","id":-100},{"name":"minecraft:element_9","id":-20},{"name":"minecraft:element_90","id":-101},{"name":"minecraft:element_91","id":-102},{"name":"minecraft:element_92","id":-103},{"name":"minecraft:element_93","id":-104},{"name":"minecraft:element_94","id":-105},{"name":"minecraft:element_95","id":-106},{"name":"minecraft:element_96","id":-107},{"name":"minecraft:element_97","id":-108},{"name":"minecraft:element_98","id":-109},{"name":"minecraft:element_99","id":-110},{"name":"minecraft:elytra","id":573},{"name":"minecraft:emerald","id":521},{"name":"minecraft:emerald_block","id":133},{"name":"minecraft:emerald_ore","id":129},{"name":"minecraft:empty_map","id":524},{"name":"minecraft:enchanted_book","id":530},{"name":"minecraft:enchanted_golden_apple","id":260},{"name":"minecraft:enchanting_table","id":116},{"name":"minecraft:end_brick_stairs","id":-178},{"name":"minecraft:end_bricks","id":206},{"name":"minecraft:end_crystal","id":727},{"name":"minecraft:end_gateway","id":209},{"name":"minecraft:end_portal","id":119},{"name":"minecraft:end_portal_frame","id":120},{"name":"minecraft:end_rod","id":208},{"name":"minecraft:end_stone","id":121},{"name":"minecraft:ender_chest","id":130},{"name":"minecraft:ender_dragon_spawn_egg","id":510},{"name":"minecraft:ender_eye","id":436},{"name":"minecraft:ender_pearl","id":425},{"name":"minecraft:enderman_spawn_egg","id":445},{"name":"minecraft:endermite_spawn_egg","id":463},{"name":"minecraft:evoker_spawn_egg","id":478},{"name":"minecraft:experience_bottle","id":517},{"name":"minecraft:explorer_pottery_sherd","id":672},{"name":"minecraft:exposed_chiseled_copper","id":-761},{"name":"minecraft:exposed_copper","id":-341},{"name":"minecraft:exposed_copper_bulb","id":-777},{"name":"minecraft:exposed_copper_door","id":-785},{"name":"minecraft:exposed_copper_grate","id":-769},{"name":"minecraft:exposed_copper_trapdoor","id":-793},{"name":"minecraft:exposed_cut_copper","id":-348},{"name":"minecraft:exposed_cut_copper_slab","id":-362},{"name":"minecraft:exposed_cut_copper_stairs","id":-355},{"name":"minecraft:exposed_double_cut_copper_slab","id":-369},{"name":"minecraft:eye_armor_trim_smithing_template","id":692},{"name":"minecraft:farmland","id":60},{"name":"minecraft:feather","id":330},{"name":"minecraft:fence","id":712},{"name":"minecraft:fence_gate","id":107},{"name":"minecraft:fermented_spider_eye","id":431},{"name":"minecraft:field_masoned_banner_pattern","id":594},{"name":"minecraft:filled_map","id":423},{"name":"minecraft:fire","id":51},{"name":"minecraft:fire_charge","id":518},{"name":"minecraft:fire_coral","id":-583},{"name":"minecraft:firework_rocket","id":528},{"name":"minecraft:firework_star","id":529},{"name":"minecraft:fishing_rod","id":395},{"name":"minecraft:fletching_table","id":-201},{"name":"minecraft:flint","id":359},{"name":"minecraft:flint_and_steel","id":302},{"name":"minecraft:flower_banner_pattern","id":590},{"name":"minecraft:flower_pot","id":523},{"name":"minecraft:flowering_azalea","id":-338},{"name":"minecraft:flowing_lava","id":10},{"name":"minecraft:flowing_water","id":8},{"name":"minecraft:fox_spawn_egg","id":493},{"name":"minecraft:frame","id":522},{"name":"minecraft:friend_pottery_sherd","id":673},{"name":"minecraft:frog_spawn","id":-468},{"name":"minecraft:frog_spawn_egg","id":637},{"name":"minecraft:frosted_ice","id":207},{"name":"minecraft:furnace","id":61},{"name":"minecraft:ghast_spawn_egg","id":457},{"name":"minecraft:ghast_tear","id":427},{"name":"minecraft:gilded_blackstone","id":-281},{"name":"minecraft:glass","id":20},{"name":"minecraft:glass_bottle","id":430},{"name":"minecraft:glass_pane","id":102},{"name":"minecraft:glistering_melon_slice","id":437},{"name":"minecraft:globe_banner_pattern","id":597},{"name":"minecraft:glow_berries","id":728},{"name":"minecraft:glow_frame","id":632},{"name":"minecraft:glow_ink_sac","id":512},{"name":"minecraft:glow_lichen","id":-411},{"name":"minecraft:glow_squid_spawn_egg","id":507},{"name":"minecraft:glow_stick","id":610},{"name":"minecraft:glowingobsidian","id":246},{"name":"minecraft:glowstone","id":89},{"name":"minecraft:glowstone_dust","id":397},{"name":"minecraft:goat_horn","id":636},{"name":"minecraft:goat_spawn_egg","id":506},{"name":"minecraft:gold_block","id":41},{"name":"minecraft:gold_ingot","id":309},{"name":"minecraft:gold_nugget","id":428},{"name":"minecraft:gold_ore","id":14},{"name":"minecraft:golden_apple","id":259},{"name":"minecraft:golden_axe","id":328},{"name":"minecraft:golden_boots","id":357},{"name":"minecraft:golden_carrot","id":284},{"name":"minecraft:golden_chestplate","id":355},{"name":"minecraft:golden_helmet","id":354},{"name":"minecraft:golden_hoe","id":336},{"name":"minecraft:golden_horse_armor","id":541},{"name":"minecraft:golden_leggings","id":356},{"name":"minecraft:golden_pickaxe","id":327},{"name":"minecraft:golden_rail","id":27},{"name":"minecraft:golden_shovel","id":326},{"name":"minecraft:golden_sword","id":325},{"name":"minecraft:granite","id":-590},{"name":"minecraft:granite_stairs","id":-169},{"name":"minecraft:grass","id":2},{"name":"minecraft:grass_path","id":198},{"name":"minecraft:gravel","id":13},{"name":"minecraft:gray_candle","id":-420},{"name":"minecraft:gray_candle_cake","id":-437},{"name":"minecraft:gray_carpet","id":-603},{"name":"minecraft:gray_concrete","id":-634},{"name":"minecraft:gray_concrete_powder","id":-715},{"name":"minecraft:gray_dye","id":406},{"name":"minecraft:gray_glazed_terracotta","id":227},{"name":"minecraft:gray_shulker_box","id":-619},{"name":"minecraft:gray_stained_glass","id":-679},{"name":"minecraft:gray_stained_glass_pane","id":-649},{"name":"minecraft:gray_terracotta","id":-730},{"name":"minecraft:gray_wool","id":-553},{"name":"minecraft:green_candle","id":-426},{"name":"minecraft:green_candle_cake","id":-443},{"name":"minecraft:green_carpet","id":-609},{"name":"minecraft:green_concrete","id":-640},{"name":"minecraft:green_concrete_powder","id":-721},{"name":"minecraft:green_dye","id":400},{"name":"minecraft:green_glazed_terracotta","id":233},{"name":"minecraft:green_shulker_box","id":-625},{"name":"minecraft:green_stained_glass","id":-685},{"name":"minecraft:green_stained_glass_pane","id":-655},{"name":"minecraft:green_terracotta","id":-736},{"name":"minecraft:green_wool","id":-560},{"name":"minecraft:grindstone","id":-195},{"name":"minecraft:guardian_spawn_egg","id":464},{"name":"minecraft:gunpowder","id":331},{"name":"minecraft:hanging_roots","id":-319},{"name":"minecraft:hard_black_stained_glass","id":-702},{"name":"minecraft:hard_black_stained_glass_pane","id":-672},{"name":"minecraft:hard_blue_stained_glass","id":-698},{"name":"minecraft:hard_blue_stained_glass_pane","id":-668},{"name":"minecraft:hard_brown_stained_glass","id":-699},{"name":"minecraft:hard_brown_stained_glass_pane","id":-669},{"name":"minecraft:hard_cyan_stained_glass","id":-696},{"name":"minecraft:hard_cyan_stained_glass_pane","id":-666},{"name":"minecraft:hard_glass","id":253},{"name":"minecraft:hard_glass_pane","id":190},{"name":"minecraft:hard_gray_stained_glass","id":-694},{"name":"minecraft:hard_gray_stained_glass_pane","id":-664},{"name":"minecraft:hard_green_stained_glass","id":-700},{"name":"minecraft:hard_green_stained_glass_pane","id":-670},{"name":"minecraft:hard_light_blue_stained_glass","id":-690},{"name":"minecraft:hard_light_blue_stained_glass_pane","id":-660},{"name":"minecraft:hard_light_gray_stained_glass","id":-695},{"name":"minecraft:hard_light_gray_stained_glass_pane","id":-665},{"name":"minecraft:hard_lime_stained_glass","id":-692},{"name":"minecraft:hard_lime_stained_glass_pane","id":-662},{"name":"minecraft:hard_magenta_stained_glass","id":-689},{"name":"minecraft:hard_magenta_stained_glass_pane","id":-659},{"name":"minecraft:hard_orange_stained_glass","id":-688},{"name":"minecraft:hard_orange_stained_glass_pane","id":-658},{"name":"minecraft:hard_pink_stained_glass","id":-693},{"name":"minecraft:hard_pink_stained_glass_pane","id":-663},{"name":"minecraft:hard_purple_stained_glass","id":-697},{"name":"minecraft:hard_purple_stained_glass_pane","id":-667},{"name":"minecraft:hard_red_stained_glass","id":-701},{"name":"minecraft:hard_red_stained_glass_pane","id":-671},{"name":"minecraft:hard_stained_glass","id":721},{"name":"minecraft:hard_stained_glass_pane","id":722},{"name":"minecraft:hard_white_stained_glass","id":254},{"name":"minecraft:hard_white_stained_glass_pane","id":191},{"name":"minecraft:hard_yellow_stained_glass","id":-691},{"name":"minecraft:hard_yellow_stained_glass_pane","id":-661},{"name":"minecraft:hardened_clay","id":172},{"name":"minecraft:hay_block","id":170},{"name":"minecraft:heart_of_the_sea","id":580},{"name":"minecraft:heart_pottery_sherd","id":674},{"name":"minecraft:heartbreak_pottery_sherd","id":675},{"name":"minecraft:heavy_weighted_pressure_plate","id":148},{"name":"minecraft:hoglin_spawn_egg","id":499},{"name":"minecraft:honey_block","id":-220},{"name":"minecraft:honey_bottle","id":601},{"name":"minecraft:honeycomb","id":600},{"name":"minecraft:honeycomb_block","id":-221},{"name":"minecraft:hopper","id":536},{"name":"minecraft:hopper_minecart","id":535},{"name":"minecraft:horn_coral","id":-584},{"name":"minecraft:horse_spawn_egg","id":461},{"name":"minecraft:host_armor_trim_smithing_template","id":702},{"name":"minecraft:howl_pottery_sherd","id":676},{"name":"minecraft:husk_spawn_egg","id":466},{"name":"minecraft:ice","id":79},{"name":"minecraft:ice_bomb","id":604},{"name":"minecraft:infested_deepslate","id":-454},{"name":"minecraft:info_update","id":248},{"name":"minecraft:info_update2","id":249},{"name":"minecraft:ink_sac","id":416},{"name":"minecraft:invisible_bedrock","id":95},{"name":"minecraft:iron_axe","id":301},{"name":"minecraft:iron_bars","id":101},{"name":"minecraft:iron_block","id":42},{"name":"minecraft:iron_boots","id":349},{"name":"minecraft:iron_chestplate","id":347},{"name":"minecraft:iron_door","id":375},{"name":"minecraft:iron_golem_spawn_egg","id":508},{"name":"minecraft:iron_helmet","id":346},{"name":"minecraft:iron_hoe","id":334},{"name":"minecraft:iron_horse_armor","id":540},{"name":"minecraft:iron_ingot","id":308},{"name":"minecraft:iron_leggings","id":348},{"name":"minecraft:iron_nugget","id":578},{"name":"minecraft:iron_ore","id":15},{"name":"minecraft:iron_pickaxe","id":300},{"name":"minecraft:iron_shovel","id":299},{"name":"minecraft:iron_sword","id":310},{"name":"minecraft:iron_trapdoor","id":167},{"name":"minecraft:item.acacia_door","id":196},{"name":"minecraft:item.bed","id":26},{"name":"minecraft:item.beetroot","id":244},{"name":"minecraft:item.birch_door","id":194},{"name":"minecraft:item.brewing_stand","id":117},{"name":"minecraft:item.cake","id":92},{"name":"minecraft:item.camera","id":242},{"name":"minecraft:item.campfire","id":-209},{"name":"minecraft:item.cauldron","id":118},{"name":"minecraft:item.chain","id":-286},{"name":"minecraft:item.crimson_door","id":-244},{"name":"minecraft:item.dark_oak_door","id":197},{"name":"minecraft:item.flower_pot","id":140},{"name":"minecraft:item.frame","id":199},{"name":"minecraft:item.glow_frame","id":-339},{"name":"minecraft:item.hopper","id":154},{"name":"minecraft:item.iron_door","id":71},{"name":"minecraft:item.jungle_door","id":195},{"name":"minecraft:item.kelp","id":-138},{"name":"minecraft:item.mangrove_door","id":-493},{"name":"minecraft:item.nether_sprouts","id":-238},{"name":"minecraft:item.nether_wart","id":115},{"name":"minecraft:item.reeds","id":83},{"name":"minecraft:item.skull","id":144},{"name":"minecraft:item.soul_campfire","id":-290},{"name":"minecraft:item.spruce_door","id":193},{"name":"minecraft:item.warped_door","id":-245},{"name":"minecraft:item.wheat","id":59},{"name":"minecraft:item.wooden_door","id":64},{"name":"minecraft:jigsaw","id":-211},{"name":"minecraft:jukebox","id":84},{"name":"minecraft:jungle_boat","id":380},{"name":"minecraft:jungle_button","id":-143},{"name":"minecraft:jungle_chest_boat","id":649},{"name":"minecraft:jungle_door","id":564},{"name":"minecraft:jungle_fence","id":-578},{"name":"minecraft:jungle_fence_gate","id":185},{"name":"minecraft:jungle_hanging_sign","id":-503},{"name":"minecraft:jungle_log","id":-571},{"name":"minecraft:jungle_planks","id":-741},{"name":"minecraft:jungle_pressure_plate","id":-153},{"name":"minecraft:jungle_sign","id":587},{"name":"minecraft:jungle_stairs","id":136},{"name":"minecraft:jungle_standing_sign","id":-188},{"name":"minecraft:jungle_trapdoor","id":-148},{"name":"minecraft:jungle_wall_sign","id":-189},{"name":"minecraft:kelp","id":385},{"name":"minecraft:ladder","id":65},{"name":"minecraft:lantern","id":-208},{"name":"minecraft:lapis_block","id":22},{"name":"minecraft:lapis_lazuli","id":417},{"name":"minecraft:lapis_ore","id":21},{"name":"minecraft:large_amethyst_bud","id":-330},{"name":"minecraft:lava","id":11},{"name":"minecraft:lava_bucket","id":366},{"name":"minecraft:lead","id":556},{"name":"minecraft:leather","id":384},{"name":"minecraft:leather_boots","id":341},{"name":"minecraft:leather_chestplate","id":339},{"name":"minecraft:leather_helmet","id":338},{"name":"minecraft:leather_horse_armor","id":539},{"name":"minecraft:leather_leggings","id":340},{"name":"minecraft:leaves","id":18},{"name":"minecraft:leaves2","id":161},{"name":"minecraft:lectern","id":-194},{"name":"minecraft:lever","id":69},{"name":"minecraft:light_block","id":-215},{"name":"minecraft:light_blue_candle","id":-416},{"name":"minecraft:light_blue_candle_cake","id":-433},{"name":"minecraft:light_blue_carpet","id":-599},{"name":"minecraft:light_blue_concrete","id":-630},{"name":"minecraft:light_blue_concrete_powder","id":-711},{"name":"minecraft:light_blue_dye","id":410},{"name":"minecraft:light_blue_glazed_terracotta","id":223},{"name":"minecraft:light_blue_shulker_box","id":-615},{"name":"minecraft:light_blue_stained_glass","id":-675},{"name":"minecraft:light_blue_stained_glass_pane","id":-645},{"name":"minecraft:light_blue_terracotta","id":-726},{"name":"minecraft:light_blue_wool","id":-562},{"name":"minecraft:light_gray_candle","id":-421},{"name":"minecraft:light_gray_candle_cake","id":-438},{"name":"minecraft:light_gray_carpet","id":-604},{"name":"minecraft:light_gray_concrete","id":-635},{"name":"minecraft:light_gray_concrete_powder","id":-716},{"name":"minecraft:light_gray_dye","id":405},{"name":"minecraft:light_gray_shulker_box","id":-620},{"name":"minecraft:light_gray_stained_glass","id":-680},{"name":"minecraft:light_gray_stained_glass_pane","id":-650},{"name":"minecraft:light_gray_terracotta","id":-731},{"name":"minecraft:light_gray_wool","id":-552},{"name":"minecraft:light_weighted_pressure_plate","id":147},{"name":"minecraft:lightning_rod","id":-312},{"name":"minecraft:lime_candle","id":-418},{"name":"minecraft:lime_candle_cake","id":-435},{"name":"minecraft:lime_carpet","id":-601},{"name":"minecraft:lime_concrete","id":-632},{"name":"minecraft:lime_concrete_powder","id":-713},{"name":"minecraft:lime_dye","id":408},{"name":"minecraft:lime_glazed_terracotta","id":225},{"name":"minecraft:lime_shulker_box","id":-617},{"name":"minecraft:lime_stained_glass","id":-677},{"name":"minecraft:lime_stained_glass_pane","id":-647},{"name":"minecraft:lime_terracotta","id":-728},{"name":"minecraft:lime_wool","id":-559},{"name":"minecraft:lingering_potion","id":571},{"name":"minecraft:lit_blast_furnace","id":-214},{"name":"minecraft:lit_deepslate_redstone_ore","id":-404},{"name":"minecraft:lit_furnace","id":62},{"name":"minecraft:lit_pumpkin","id":91},{"name":"minecraft:lit_redstone_lamp","id":124},{"name":"minecraft:lit_redstone_ore","id":74},{"name":"minecraft:lit_smoker","id":-199},{"name":"minecraft:llama_spawn_egg","id":476},{"name":"minecraft:lodestone","id":-222},{"name":"minecraft:lodestone_compass","id":611},{"name":"minecraft:log","id":711},{"name":"minecraft:log2","id":715},{"name":"minecraft:loom","id":-204},{"name":"minecraft:magenta_candle","id":-415},{"name":"minecraft:magenta_candle_cake","id":-432},{"name":"minecraft:magenta_carpet","id":-598},{"name":"minecraft:magenta_concrete","id":-629},{"name":"minecraft:magenta_concrete_powder","id":-710},{"name":"minecraft:magenta_dye","id":411},{"name":"minecraft:magenta_glazed_terracotta","id":222},{"name":"minecraft:magenta_shulker_box","id":-614},{"name":"minecraft:magenta_stained_glass","id":-674},{"name":"minecraft:magenta_stained_glass_pane","id":-644},{"name":"minecraft:magenta_terracotta","id":-725},{"name":"minecraft:magenta_wool","id":-565},{"name":"minecraft:magma","id":213},{"name":"minecraft:magma_cream","id":433},{"name":"minecraft:magma_cube_spawn_egg","id":458},{"name":"minecraft:mangrove_boat","id":644},{"name":"minecraft:mangrove_button","id":-487},{"name":"minecraft:mangrove_chest_boat","id":653},{"name":"minecraft:mangrove_door","id":642},{"name":"minecraft:mangrove_double_slab","id":-499},{"name":"minecraft:mangrove_fence","id":-491},{"name":"minecraft:mangrove_fence_gate","id":-492},{"name":"minecraft:mangrove_hanging_sign","id":-508},{"name":"minecraft:mangrove_leaves","id":-472},{"name":"minecraft:mangrove_log","id":-484},{"name":"minecraft:mangrove_planks","id":-486},{"name":"minecraft:mangrove_pressure_plate","id":-490},{"name":"minecraft:mangrove_propagule","id":-474},{"name":"minecraft:mangrove_roots","id":-482},{"name":"minecraft:mangrove_sign","id":643},{"name":"minecraft:mangrove_slab","id":-489},{"name":"minecraft:mangrove_stairs","id":-488},{"name":"minecraft:mangrove_standing_sign","id":-494},{"name":"minecraft:mangrove_trapdoor","id":-496},{"name":"minecraft:mangrove_wall_sign","id":-495},{"name":"minecraft:mangrove_wood","id":-497},{"name":"minecraft:medicine","id":608},{"name":"minecraft:medium_amethyst_bud","id":-331},{"name":"minecraft:melon_block","id":103},{"name":"minecraft:melon_seeds","id":294},{"name":"minecraft:melon_slice","id":273},{"name":"minecraft:melon_stem","id":105},{"name":"minecraft:milk_bucket","id":364},{"name":"minecraft:minecart","id":373},{"name":"minecraft:miner_pottery_sherd","id":677},{"name":"minecraft:mob_spawner","id":52},{"name":"minecraft:mojang_banner_pattern","id":593},{"name":"minecraft:monster_egg","id":97},{"name":"minecraft:mooshroom_spawn_egg","id":443},{"name":"minecraft:moss_block","id":-320},{"name":"minecraft:moss_carpet","id":-335},{"name":"minecraft:mossy_cobblestone","id":48},{"name":"minecraft:mossy_cobblestone_stairs","id":-179},{"name":"minecraft:mossy_stone_brick_stairs","id":-175},{"name":"minecraft:mourner_pottery_sherd","id":678},{"name":"minecraft:moving_block","id":250},{"name":"minecraft:mud","id":-473},{"name":"minecraft:mud_brick_double_slab","id":-479},{"name":"minecraft:mud_brick_slab","id":-478},{"name":"minecraft:mud_brick_stairs","id":-480},{"name":"minecraft:mud_brick_wall","id":-481},{"name":"minecraft:mud_bricks","id":-475},{"name":"minecraft:muddy_mangrove_roots","id":-483},{"name":"minecraft:mule_spawn_egg","id":469},{"name":"minecraft:mushroom_stew","id":261},{"name":"minecraft:music_disc_11","id":553},{"name":"minecraft:music_disc_13","id":543},{"name":"minecraft:music_disc_5","id":645},{"name":"minecraft:music_disc_blocks","id":545},{"name":"minecraft:music_disc_cat","id":544},{"name":"minecraft:music_disc_chirp","id":546},{"name":"minecraft:music_disc_far","id":547},{"name":"minecraft:music_disc_mall","id":548},{"name":"minecraft:music_disc_mellohi","id":549},{"name":"minecraft:music_disc_otherside","id":635},{"name":"minecraft:music_disc_pigstep","id":629},{"name":"minecraft:music_disc_relic","id":703},{"name":"minecraft:music_disc_stal","id":550},{"name":"minecraft:music_disc_strad","id":551},{"name":"minecraft:music_disc_wait","id":554},{"name":"minecraft:music_disc_ward","id":552},{"name":"minecraft:mutton","id":559},{"name":"minecraft:mycelium","id":110},{"name":"minecraft:name_tag","id":557},{"name":"minecraft:nautilus_shell","id":579},{"name":"minecraft:nether_brick","id":112},{"name":"minecraft:nether_brick_fence","id":113},{"name":"minecraft:nether_brick_stairs","id":114},{"name":"minecraft:nether_gold_ore","id":-288},{"name":"minecraft:nether_sprouts","id":630},{"name":"minecraft:nether_star","id":527},{"name":"minecraft:nether_wart","id":295},{"name":"minecraft:nether_wart_block","id":214},{"name":"minecraft:netherbrick","id":532},{"name":"minecraft:netherite_axe","id":615},{"name":"minecraft:netherite_block","id":-270},{"name":"minecraft:netherite_boots","id":621},{"name":"minecraft:netherite_chestplate","id":619},{"name":"minecraft:netherite_helmet","id":618},{"name":"minecraft:netherite_hoe","id":616},{"name":"minecraft:netherite_ingot","id":617},{"name":"minecraft:netherite_leggings","id":620},{"name":"minecraft:netherite_pickaxe","id":614},{"name":"minecraft:netherite_scrap","id":622},{"name":"minecraft:netherite_shovel","id":613},{"name":"minecraft:netherite_sword","id":612},{"name":"minecraft:netherite_upgrade_smithing_template","id":686},{"name":"minecraft:netherrack","id":87},{"name":"minecraft:netherreactor","id":247},{"name":"minecraft:normal_stone_stairs","id":-180},{"name":"minecraft:noteblock","id":25},{"name":"minecraft:npc_spawn_egg","id":473},{"name":"minecraft:oak_boat","id":378},{"name":"minecraft:oak_chest_boat","id":647},{"name":"minecraft:oak_fence","id":85},{"name":"minecraft:oak_hanging_sign","id":-500},{"name":"minecraft:oak_log","id":17},{"name":"minecraft:oak_planks","id":5},{"name":"minecraft:oak_sign","id":361},{"name":"minecraft:oak_stairs","id":53},{"name":"minecraft:observer","id":251},{"name":"minecraft:obsidian","id":49},{"name":"minecraft:ocelot_spawn_egg","id":454},{"name":"minecraft:ochre_froglight","id":-471},{"name":"minecraft:orange_candle","id":-414},{"name":"minecraft:orange_candle_cake","id":-431},{"name":"minecraft:orange_carpet","id":-597},{"name":"minecraft:orange_concrete","id":-628},{"name":"minecraft:orange_concrete_powder","id":-709},{"name":"minecraft:orange_dye","id":412},{"name":"minecraft:orange_glazed_terracotta","id":221},{"name":"minecraft:orange_shulker_box","id":-613},{"name":"minecraft:orange_stained_glass","id":-673},{"name":"minecraft:orange_stained_glass_pane","id":-643},{"name":"minecraft:orange_terracotta","id":-724},{"name":"minecraft:orange_wool","id":-557},{"name":"minecraft:oxidized_chiseled_copper","id":-763},{"name":"minecraft:oxidized_copper","id":-343},{"name":"minecraft:oxidized_copper_bulb","id":-779},{"name":"minecraft:oxidized_copper_door","id":-787},{"name":"minecraft:oxidized_copper_grate","id":-771},{"name":"minecraft:oxidized_copper_trapdoor","id":-795},{"name":"minecraft:oxidized_cut_copper","id":-350},{"name":"minecraft:oxidized_cut_copper_slab","id":-364},{"name":"minecraft:oxidized_cut_copper_stairs","id":-357},{"name":"minecraft:oxidized_double_cut_copper_slab","id":-371},{"name":"minecraft:packed_ice","id":174},{"name":"minecraft:packed_mud","id":-477},{"name":"minecraft:painting","id":360},{"name":"minecraft:panda_spawn_egg","id":492},{"name":"minecraft:paper","id":389},{"name":"minecraft:parrot_spawn_egg","id":481},{"name":"minecraft:pearlescent_froglight","id":-469},{"name":"minecraft:phantom_membrane","id":583},{"name":"minecraft:phantom_spawn_egg","id":489},{"name":"minecraft:pig_spawn_egg","id":440},{"name":"minecraft:piglin_banner_pattern","id":596},{"name":"minecraft:piglin_brute_spawn_egg","id":502},{"name":"minecraft:piglin_spawn_egg","id":500},{"name":"minecraft:pillager_spawn_egg","id":494},{"name":"minecraft:pink_candle","id":-419},{"name":"minecraft:pink_candle_cake","id":-436},{"name":"minecraft:pink_carpet","id":-602},{"name":"minecraft:pink_concrete","id":-633},{"name":"minecraft:pink_concrete_powder","id":-714},{"name":"minecraft:pink_dye","id":407},{"name":"minecraft:pink_glazed_terracotta","id":226},{"name":"minecraft:pink_petals","id":-549},{"name":"minecraft:pink_shulker_box","id":-618},{"name":"minecraft:pink_stained_glass","id":-678},{"name":"minecraft:pink_stained_glass_pane","id":-648},{"name":"minecraft:pink_terracotta","id":-729},{"name":"minecraft:pink_wool","id":-566},{"name":"minecraft:piston","id":33},{"name":"minecraft:piston_arm_collision","id":34},{"name":"minecraft:pitcher_crop","id":-574},{"name":"minecraft:pitcher_plant","id":-612},{"name":"minecraft:pitcher_pod","id":298},{"name":"minecraft:planks","id":713},{"name":"minecraft:plenty_pottery_sherd","id":679},{"name":"minecraft:podzol","id":243},{"name":"minecraft:pointed_dripstone","id":-308},{"name":"minecraft:poisonous_potato","id":283},{"name":"minecraft:polar_bear_spawn_egg","id":475},{"name":"minecraft:polished_andesite","id":-595},{"name":"minecraft:polished_andesite_stairs","id":-174},{"name":"minecraft:polished_basalt","id":-235},{"name":"minecraft:polished_blackstone","id":-291},{"name":"minecraft:polished_blackstone_brick_double_slab","id":-285},{"name":"minecraft:polished_blackstone_brick_slab","id":-284},{"name":"minecraft:polished_blackstone_brick_stairs","id":-275},{"name":"minecraft:polished_blackstone_brick_wall","id":-278},{"name":"minecraft:polished_blackstone_bricks","id":-274},{"name":"minecraft:polished_blackstone_button","id":-296},{"name":"minecraft:polished_blackstone_double_slab","id":-294},{"name":"minecraft:polished_blackstone_pressure_plate","id":-295},{"name":"minecraft:polished_blackstone_slab","id":-293},{"name":"minecraft:polished_blackstone_stairs","id":-292},{"name":"minecraft:polished_blackstone_wall","id":-297},{"name":"minecraft:polished_deepslate","id":-383},{"name":"minecraft:polished_deepslate_double_slab","id":-397},{"name":"minecraft:polished_deepslate_slab","id":-384},{"name":"minecraft:polished_deepslate_stairs","id":-385},{"name":"minecraft:polished_deepslate_wall","id":-386},{"name":"minecraft:polished_diorite","id":-593},{"name":"minecraft:polished_diorite_stairs","id":-173},{"name":"minecraft:polished_granite","id":-591},{"name":"minecraft:polished_granite_stairs","id":-172},{"name":"minecraft:polished_tuff","id":-748},{"name":"minecraft:polished_tuff_double_slab","id":-750},{"name":"minecraft:polished_tuff_slab","id":-749},{"name":"minecraft:polished_tuff_stairs","id":-751},{"name":"minecraft:polished_tuff_wall","id":-752},{"name":"minecraft:popped_chorus_fruit","id":568},{"name":"minecraft:porkchop","id":263},{"name":"minecraft:portal","id":90},{"name":"minecraft:potato","id":281},{"name":"minecraft:potatoes","id":142},{"name":"minecraft:potion","id":429},{"name":"minecraft:powder_snow","id":-306},{"name":"minecraft:powder_snow_bucket","id":371},{"name":"minecraft:powered_comparator","id":150},{"name":"minecraft:powered_repeater","id":94},{"name":"minecraft:prismarine","id":168},{"name":"minecraft:prismarine_bricks_stairs","id":-4},{"name":"minecraft:prismarine_crystals","id":558},{"name":"minecraft:prismarine_shard","id":574},{"name":"minecraft:prismarine_stairs","id":-2},{"name":"minecraft:prize_pottery_sherd","id":680},{"name":"minecraft:pufferfish","id":268},{"name":"minecraft:pufferfish_bucket","id":370},{"name":"minecraft:pufferfish_spawn_egg","id":484},{"name":"minecraft:pumpkin","id":86},{"name":"minecraft:pumpkin_pie","id":285},{"name":"minecraft:pumpkin_seeds","id":293},{"name":"minecraft:pumpkin_stem","id":104},{"name":"minecraft:purple_candle","id":-423},{"name":"minecraft:purple_candle_cake","id":-440},{"name":"minecraft:purple_carpet","id":-606},{"name":"minecraft:purple_concrete","id":-637},{"name":"minecraft:purple_concrete_powder","id":-718},{"name":"minecraft:purple_dye","id":403},{"name":"minecraft:purple_glazed_terracotta","id":219},{"name":"minecraft:purple_shulker_box","id":-622},{"name":"minecraft:purple_stained_glass","id":-682},{"name":"minecraft:purple_stained_glass_pane","id":-652},{"name":"minecraft:purple_terracotta","id":-733},{"name":"minecraft:purple_wool","id":-564},{"name":"minecraft:purpur_block","id":201},{"name":"minecraft:purpur_stairs","id":203},{"name":"minecraft:quartz","id":533},{"name":"minecraft:quartz_block","id":155},{"name":"minecraft:quartz_bricks","id":-304},{"name":"minecraft:quartz_ore","id":153},{"name":"minecraft:quartz_stairs","id":156},{"name":"minecraft:rabbit","id":289},{"name":"minecraft:rabbit_foot","id":537},{"name":"minecraft:rabbit_hide","id":538},{"name":"minecraft:rabbit_spawn_egg","id":462},{"name":"minecraft:rabbit_stew","id":291},{"name":"minecraft:rail","id":66},{"name":"minecraft:raiser_armor_trim_smithing_template","id":700},{"name":"minecraft:rapid_fertilizer","id":606},{"name":"minecraft:ravager_spawn_egg","id":496},{"name":"minecraft:raw_copper","id":516},{"name":"minecraft:raw_copper_block","id":-452},{"name":"minecraft:raw_gold","id":515},{"name":"minecraft:raw_gold_block","id":-453},{"name":"minecraft:raw_iron","id":514},{"name":"minecraft:raw_iron_block","id":-451},{"name":"minecraft:recovery_compass","id":655},{"name":"minecraft:red_candle","id":-427},{"name":"minecraft:red_candle_cake","id":-444},{"name":"minecraft:red_carpet","id":-610},{"name":"minecraft:red_concrete","id":-641},{"name":"minecraft:red_concrete_powder","id":-722},{"name":"minecraft:red_dye","id":399},{"name":"minecraft:red_flower","id":38},{"name":"minecraft:red_glazed_terracotta","id":234},{"name":"minecraft:red_mushroom","id":40},{"name":"minecraft:red_mushroom_block","id":100},{"name":"minecraft:red_nether_brick","id":215},{"name":"minecraft:red_nether_brick_stairs","id":-184},{"name":"minecraft:red_sandstone","id":179},{"name":"minecraft:red_sandstone_stairs","id":180},{"name":"minecraft:red_shulker_box","id":-626},{"name":"minecraft:red_stained_glass","id":-686},{"name":"minecraft:red_stained_glass_pane","id":-656},{"name":"minecraft:red_terracotta","id":-737},{"name":"minecraft:red_wool","id":-556},{"name":"minecraft:redstone","id":376},{"name":"minecraft:redstone_block","id":152},{"name":"minecraft:redstone_lamp","id":123},{"name":"minecraft:redstone_ore","id":73},{"name":"minecraft:redstone_torch","id":76},{"name":"minecraft:redstone_wire","id":55},{"name":"minecraft:reinforced_deepslate","id":-466},{"name":"minecraft:repeater","id":422},{"name":"minecraft:repeating_command_block","id":188},{"name":"minecraft:reserved6","id":255},{"name":"minecraft:respawn_anchor","id":-272},{"name":"minecraft:rib_armor_trim_smithing_template","id":696},{"name":"minecraft:rotten_flesh","id":278},{"name":"minecraft:saddle","id":374},{"name":"minecraft:salmon","id":266},{"name":"minecraft:salmon_bucket","id":368},{"name":"minecraft:salmon_spawn_egg","id":485},{"name":"minecraft:sand","id":12},{"name":"minecraft:sandstone","id":24},{"name":"minecraft:sandstone_stairs","id":128},{"name":"minecraft:sapling","id":6},{"name":"minecraft:scaffolding","id":-165},{"name":"minecraft:sculk","id":-458},{"name":"minecraft:sculk_catalyst","id":-460},{"name":"minecraft:sculk_sensor","id":-307},{"name":"minecraft:sculk_shrieker","id":-461},{"name":"minecraft:sculk_vein","id":-459},{"name":"minecraft:sea_lantern","id":169},{"name":"minecraft:sea_pickle","id":-156},{"name":"minecraft:seagrass","id":-130},{"name":"minecraft:sentry_armor_trim_smithing_template","id":687},{"name":"minecraft:shaper_armor_trim_smithing_template","id":701},{"name":"minecraft:sheaf_pottery_sherd","id":681},{"name":"minecraft:shears","id":424},{"name":"minecraft:sheep_spawn_egg","id":441},{"name":"minecraft:shelter_pottery_sherd","id":682},{"name":"minecraft:shield","id":358},{"name":"minecraft:shroomlight","id":-230},{"name":"minecraft:shulker_box","id":720},{"name":"minecraft:shulker_shell","id":575},{"name":"minecraft:shulker_spawn_egg","id":472},{"name":"minecraft:silence_armor_trim_smithing_template","id":698},{"name":"minecraft:silver_glazed_terracotta","id":228},{"name":"minecraft:silverfish_spawn_egg","id":446},{"name":"minecraft:skeleton_horse_spawn_egg","id":470},{"name":"minecraft:skeleton_spawn_egg","id":447},{"name":"minecraft:skull","id":525},{"name":"minecraft:skull_banner_pattern","id":592},{"name":"minecraft:skull_pottery_sherd","id":683},{"name":"minecraft:slime","id":165},{"name":"minecraft:slime_ball","id":391},{"name":"minecraft:slime_spawn_egg","id":448},{"name":"minecraft:small_amethyst_bud","id":-332},{"name":"minecraft:small_dripleaf_block","id":-336},{"name":"minecraft:smithing_table","id":-202},{"name":"minecraft:smoker","id":-198},{"name":"minecraft:smooth_basalt","id":-377},{"name":"minecraft:smooth_quartz_stairs","id":-185},{"name":"minecraft:smooth_red_sandstone_stairs","id":-176},{"name":"minecraft:smooth_sandstone_stairs","id":-177},{"name":"minecraft:smooth_stone","id":-183},{"name":"minecraft:sniffer_egg","id":-596},{"name":"minecraft:sniffer_spawn_egg","id":503},{"name":"minecraft:snort_pottery_sherd","id":684},{"name":"minecraft:snout_armor_trim_smithing_template","id":695},{"name":"minecraft:snow","id":80},{"name":"minecraft:snow_golem_spawn_egg","id":509},{"name":"minecraft:snow_layer","id":78},{"name":"minecraft:snowball","id":377},{"name":"minecraft:soul_campfire","id":631},{"name":"minecraft:soul_fire","id":-237},{"name":"minecraft:soul_lantern","id":-269},{"name":"minecraft:soul_sand","id":88},{"name":"minecraft:soul_soil","id":-236},{"name":"minecraft:soul_torch","id":-268},{"name":"minecraft:sparkler","id":609},{"name":"minecraft:spawn_egg","id":726},{"name":"minecraft:spider_eye","id":279},{"name":"minecraft:spider_spawn_egg","id":449},{"name":"minecraft:spire_armor_trim_smithing_template","id":697},{"name":"minecraft:splash_potion","id":570},{"name":"minecraft:sponge","id":19},{"name":"minecraft:spore_blossom","id":-321},{"name":"minecraft:spruce_boat","id":381},{"name":"minecraft:spruce_button","id":-144},{"name":"minecraft:spruce_chest_boat","id":650},{"name":"minecraft:spruce_door","id":562},{"name":"minecraft:spruce_fence","id":-579},{"name":"minecraft:spruce_fence_gate","id":183},{"name":"minecraft:spruce_hanging_sign","id":-501},{"name":"minecraft:spruce_log","id":-569},{"name":"minecraft:spruce_planks","id":-739},{"name":"minecraft:spruce_pressure_plate","id":-154},{"name":"minecraft:spruce_sign","id":585},{"name":"minecraft:spruce_stairs","id":134},{"name":"minecraft:spruce_standing_sign","id":-181},{"name":"minecraft:spruce_trapdoor","id":-149},{"name":"minecraft:spruce_wall_sign","id":-182},{"name":"minecraft:spyglass","id":634},{"name":"minecraft:squid_spawn_egg","id":453},{"name":"minecraft:stained_glass","id":718},{"name":"minecraft:stained_glass_pane","id":719},{"name":"minecraft:stained_hardened_clay","id":704},{"name":"minecraft:standing_banner","id":176},{"name":"minecraft:standing_sign","id":63},{"name":"minecraft:stick","id":323},{"name":"minecraft:sticky_piston","id":29},{"name":"minecraft:sticky_piston_arm_collision","id":-217},{"name":"minecraft:stone","id":1},{"name":"minecraft:stone_axe","id":318},{"name":"minecraft:stone_block_slab","id":44},{"name":"minecraft:stone_block_slab2","id":182},{"name":"minecraft:stone_block_slab3","id":-162},{"name":"minecraft:stone_block_slab4","id":-166},{"name":"minecraft:stone_brick_stairs","id":109},{"name":"minecraft:stone_button","id":77},{"name":"minecraft:stone_hoe","id":333},{"name":"minecraft:stone_pickaxe","id":317},{"name":"minecraft:stone_pressure_plate","id":70},{"name":"minecraft:stone_shovel","id":316},{"name":"minecraft:stone_stairs","id":67},{"name":"minecraft:stone_sword","id":315},{"name":"minecraft:stonebrick","id":98},{"name":"minecraft:stonecutter","id":245},{"name":"minecraft:stonecutter_block","id":-197},{"name":"minecraft:stray_spawn_egg","id":465},{"name":"minecraft:strider_spawn_egg","id":498},{"name":"minecraft:string","id":329},{"name":"minecraft:stripped_acacia_log","id":-8},{"name":"minecraft:stripped_bamboo_block","id":-528},{"name":"minecraft:stripped_birch_log","id":-6},{"name":"minecraft:stripped_cherry_log","id":-535},{"name":"minecraft:stripped_cherry_wood","id":-545},{"name":"minecraft:stripped_crimson_hyphae","id":-300},{"name":"minecraft:stripped_crimson_stem","id":-240},{"name":"minecraft:stripped_dark_oak_log","id":-9},{"name":"minecraft:stripped_jungle_log","id":-7},{"name":"minecraft:stripped_mangrove_log","id":-485},{"name":"minecraft:stripped_mangrove_wood","id":-498},{"name":"minecraft:stripped_oak_log","id":-10},{"name":"minecraft:stripped_spruce_log","id":-5},{"name":"minecraft:stripped_warped_hyphae","id":-301},{"name":"minecraft:stripped_warped_stem","id":-241},{"name":"minecraft:structure_block","id":252},{"name":"minecraft:structure_void","id":217},{"name":"minecraft:sugar","id":419},{"name":"minecraft:sugar_cane","id":388},{"name":"minecraft:suspicious_gravel","id":-573},{"name":"minecraft:suspicious_sand","id":-529},{"name":"minecraft:suspicious_stew","id":599},{"name":"minecraft:sweet_berries","id":288},{"name":"minecraft:sweet_berry_bush","id":-207},{"name":"minecraft:tadpole_bucket","id":639},{"name":"minecraft:tadpole_spawn_egg","id":638},{"name":"minecraft:tallgrass","id":31},{"name":"minecraft:target","id":-239},{"name":"minecraft:tide_armor_trim_smithing_template","id":694},{"name":"minecraft:tinted_glass","id":-334},{"name":"minecraft:tnt","id":46},{"name":"minecraft:tnt_minecart","id":534},{"name":"minecraft:torch","id":50},{"name":"minecraft:torchflower","id":-568},{"name":"minecraft:torchflower_crop","id":-567},{"name":"minecraft:torchflower_seeds","id":297},{"name":"minecraft:totem_of_undying","id":577},{"name":"minecraft:trader_llama_spawn_egg","id":657},{"name":"minecraft:trapdoor","id":96},{"name":"minecraft:trapped_chest","id":146},{"name":"minecraft:trial_key","id":705},{"name":"minecraft:trial_spawner","id":-315},{"name":"minecraft:trident","id":555},{"name":"minecraft:trip_wire","id":132},{"name":"minecraft:tripwire_hook","id":131},{"name":"minecraft:tropical_fish","id":267},{"name":"minecraft:tropical_fish_bucket","id":369},{"name":"minecraft:tropical_fish_spawn_egg","id":482},{"name":"minecraft:tube_coral","id":-131},{"name":"minecraft:tuff","id":-333},{"name":"minecraft:tuff_brick_double_slab","id":-756},{"name":"minecraft:tuff_brick_slab","id":-755},{"name":"minecraft:tuff_brick_stairs","id":-757},{"name":"minecraft:tuff_brick_wall","id":-758},{"name":"minecraft:tuff_bricks","id":-754},{"name":"minecraft:tuff_double_slab","id":-745},{"name":"minecraft:tuff_slab","id":-744},{"name":"minecraft:tuff_stairs","id":-746},{"name":"minecraft:tuff_wall","id":-747},{"name":"minecraft:turtle_egg","id":-159},{"name":"minecraft:turtle_helmet","id":582},{"name":"minecraft:turtle_scute","id":581},{"name":"minecraft:turtle_spawn_egg","id":488},{"name":"minecraft:twisting_vines","id":-287},{"name":"minecraft:underwater_torch","id":239},{"name":"minecraft:undyed_shulker_box","id":205},{"name":"minecraft:unknown","id":-305},{"name":"minecraft:unlit_redstone_torch","id":75},{"name":"minecraft:unpowered_comparator","id":149},{"name":"minecraft:unpowered_repeater","id":93},{"name":"minecraft:verdant_froglight","id":-470},{"name":"minecraft:vex_armor_trim_smithing_template","id":693},{"name":"minecraft:vex_spawn_egg","id":479},{"name":"minecraft:villager_spawn_egg","id":452},{"name":"minecraft:vindicator_spawn_egg","id":477},{"name":"minecraft:vine","id":106},{"name":"minecraft:wall_banner","id":177},{"name":"minecraft:wall_sign","id":68},{"name":"minecraft:wandering_trader_spawn_egg","id":495},{"name":"minecraft:ward_armor_trim_smithing_template","id":691},{"name":"minecraft:warden_spawn_egg","id":641},{"name":"minecraft:warped_button","id":-261},{"name":"minecraft:warped_door","id":626},{"name":"minecraft:warped_double_slab","id":-267},{"name":"minecraft:warped_fence","id":-257},{"name":"minecraft:warped_fence_gate","id":-259},{"name":"minecraft:warped_fungus","id":-229},{"name":"minecraft:warped_fungus_on_a_stick","id":627},{"name":"minecraft:warped_hanging_sign","id":-507},{"name":"minecraft:warped_hyphae","id":-298},{"name":"minecraft:warped_nylium","id":-233},{"name":"minecraft:warped_planks","id":-243},{"name":"minecraft:warped_pressure_plate","id":-263},{"name":"minecraft:warped_roots","id":-224},{"name":"minecraft:warped_sign","id":624},{"name":"minecraft:warped_slab","id":-265},{"name":"minecraft:warped_stairs","id":-255},{"name":"minecraft:warped_standing_sign","id":-251},{"name":"minecraft:warped_stem","id":-226},{"name":"minecraft:warped_trapdoor","id":-247},{"name":"minecraft:warped_wall_sign","id":-253},{"name":"minecraft:warped_wart_block","id":-227},{"name":"minecraft:water","id":9},{"name":"minecraft:water_bucket","id":365},{"name":"minecraft:waterlily","id":111},{"name":"minecraft:waxed_chiseled_copper","id":-764},{"name":"minecraft:waxed_copper","id":-344},{"name":"minecraft:waxed_copper_bulb","id":-780},{"name":"minecraft:waxed_copper_door","id":-788},{"name":"minecraft:waxed_copper_grate","id":-772},{"name":"minecraft:waxed_copper_trapdoor","id":-796},{"name":"minecraft:waxed_cut_copper","id":-351},{"name":"minecraft:waxed_cut_copper_slab","id":-365},{"name":"minecraft:waxed_cut_copper_stairs","id":-358},{"name":"minecraft:waxed_double_cut_copper_slab","id":-372},{"name":"minecraft:waxed_exposed_chiseled_copper","id":-765},{"name":"minecraft:waxed_exposed_copper","id":-345},{"name":"minecraft:waxed_exposed_copper_bulb","id":-781},{"name":"minecraft:waxed_exposed_copper_door","id":-789},{"name":"minecraft:waxed_exposed_copper_grate","id":-773},{"name":"minecraft:waxed_exposed_copper_trapdoor","id":-797},{"name":"minecraft:waxed_exposed_cut_copper","id":-352},{"name":"minecraft:waxed_exposed_cut_copper_slab","id":-366},{"name":"minecraft:waxed_exposed_cut_copper_stairs","id":-359},{"name":"minecraft:waxed_exposed_double_cut_copper_slab","id":-373},{"name":"minecraft:waxed_oxidized_chiseled_copper","id":-766},{"name":"minecraft:waxed_oxidized_copper","id":-446},{"name":"minecraft:waxed_oxidized_copper_bulb","id":-783},{"name":"minecraft:waxed_oxidized_copper_door","id":-791},{"name":"minecraft:waxed_oxidized_copper_grate","id":-775},{"name":"minecraft:waxed_oxidized_copper_trapdoor","id":-799},{"name":"minecraft:waxed_oxidized_cut_copper","id":-447},{"name":"minecraft:waxed_oxidized_cut_copper_slab","id":-449},{"name":"minecraft:waxed_oxidized_cut_copper_stairs","id":-448},{"name":"minecraft:waxed_oxidized_double_cut_copper_slab","id":-450},{"name":"minecraft:waxed_weathered_chiseled_copper","id":-767},{"name":"minecraft:waxed_weathered_copper","id":-346},{"name":"minecraft:waxed_weathered_copper_bulb","id":-782},{"name":"minecraft:waxed_weathered_copper_door","id":-790},{"name":"minecraft:waxed_weathered_copper_grate","id":-774},{"name":"minecraft:waxed_weathered_copper_trapdoor","id":-798},{"name":"minecraft:waxed_weathered_cut_copper","id":-353},{"name":"minecraft:waxed_weathered_cut_copper_slab","id":-367},{"name":"minecraft:waxed_weathered_cut_copper_stairs","id":-360},{"name":"minecraft:waxed_weathered_double_cut_copper_slab","id":-374},{"name":"minecraft:wayfinder_armor_trim_smithing_template","id":699},{"name":"minecraft:weathered_chiseled_copper","id":-762},{"name":"minecraft:weathered_copper","id":-342},{"name":"minecraft:weathered_copper_bulb","id":-778},{"name":"minecraft:weathered_copper_door","id":-786},{"name":"minecraft:weathered_copper_grate","id":-770},{"name":"minecraft:weathered_copper_trapdoor","id":-794},{"name":"minecraft:weathered_cut_copper","id":-349},{"name":"minecraft:weathered_cut_copper_slab","id":-363},{"name":"minecraft:weathered_cut_copper_stairs","id":-356},{"name":"minecraft:weathered_double_cut_copper_slab","id":-370},{"name":"minecraft:web","id":30},{"name":"minecraft:weeping_vines","id":-231},{"name":"minecraft:wheat","id":337},{"name":"minecraft:wheat_seeds","id":292},{"name":"minecraft:white_candle","id":-413},{"name":"minecraft:white_candle_cake","id":-430},{"name":"minecraft:white_carpet","id":171},{"name":"minecraft:white_concrete","id":236},{"name":"minecraft:white_concrete_powder","id":237},{"name":"minecraft:white_dye","id":413},{"name":"minecraft:white_glazed_terracotta","id":220},{"name":"minecraft:white_shulker_box","id":218},{"name":"minecraft:white_stained_glass","id":241},{"name":"minecraft:white_stained_glass_pane","id":160},{"name":"minecraft:white_terracotta","id":159},{"name":"minecraft:white_wool","id":35},{"name":"minecraft:wild_armor_trim_smithing_template","id":690},{"name":"minecraft:witch_spawn_egg","id":455},{"name":"minecraft:wither_rose","id":-216},{"name":"minecraft:wither_skeleton_spawn_egg","id":467},{"name":"minecraft:wither_spawn_egg","id":511},{"name":"minecraft:wolf_armor","id":708},{"name":"minecraft:wolf_spawn_egg","id":442},{"name":"minecraft:wood","id":-212},{"name":"minecraft:wooden_axe","id":314},{"name":"minecraft:wooden_button","id":143},{"name":"minecraft:wooden_door","id":362},{"name":"minecraft:wooden_hoe","id":332},{"name":"minecraft:wooden_pickaxe","id":313},{"name":"minecraft:wooden_pressure_plate","id":72},{"name":"minecraft:wooden_shovel","id":312},{"name":"minecraft:wooden_slab","id":158},{"name":"minecraft:wooden_sword","id":311},{"name":"minecraft:wool","id":709},{"name":"minecraft:writable_book","id":519},{"name":"minecraft:written_book","id":520},{"name":"minecraft:yellow_candle","id":-417},{"name":"minecraft:yellow_candle_cake","id":-434},{"name":"minecraft:yellow_carpet","id":-600},{"name":"minecraft:yellow_concrete","id":-631},{"name":"minecraft:yellow_concrete_powder","id":-712},{"name":"minecraft:yellow_dye","id":409},{"name":"minecraft:yellow_flower","id":37},{"name":"minecraft:yellow_glazed_terracotta","id":224},{"name":"minecraft:yellow_shulker_box","id":-616},{"name":"minecraft:yellow_stained_glass","id":-676},{"name":"minecraft:yellow_stained_glass_pane","id":-646},{"name":"minecraft:yellow_terracotta","id":-727},{"name":"minecraft:yellow_wool","id":-558},{"name":"minecraft:zoglin_spawn_egg","id":501},{"name":"minecraft:zombie_horse_spawn_egg","id":471},{"name":"minecraft:zombie_pigman_spawn_egg","id":451},{"name":"minecraft:zombie_spawn_egg","id":450},{"name":"minecraft:zombie_villager_spawn_egg","id":480}] \ No newline at end of file +[{"name":"minecraft:acacia_boat","id":383},{"name":"minecraft:acacia_button","id":-140},{"name":"minecraft:acacia_chest_boat","id":653},{"name":"minecraft:acacia_door","id":567},{"name":"minecraft:acacia_double_slab","id":-812},{"name":"minecraft:acacia_fence","id":-575},{"name":"minecraft:acacia_fence_gate","id":187},{"name":"minecraft:acacia_hanging_sign","id":-504},{"name":"minecraft:acacia_leaves","id":161},{"name":"minecraft:acacia_log","id":162},{"name":"minecraft:acacia_planks","id":-742},{"name":"minecraft:acacia_pressure_plate","id":-150},{"name":"minecraft:acacia_sign","id":590},{"name":"minecraft:acacia_slab","id":-807},{"name":"minecraft:acacia_stairs","id":163},{"name":"minecraft:acacia_standing_sign","id":-190},{"name":"minecraft:acacia_trapdoor","id":-145},{"name":"minecraft:acacia_wall_sign","id":-191},{"name":"minecraft:acacia_wood","id":-817},{"name":"minecraft:activator_rail","id":126},{"name":"minecraft:agent_spawn_egg","id":492},{"name":"minecraft:air","id":-158},{"name":"minecraft:allay_spawn_egg","id":642},{"name":"minecraft:allow","id":210},{"name":"minecraft:amethyst_block","id":-327},{"name":"minecraft:amethyst_cluster","id":-329},{"name":"minecraft:amethyst_shard","id":635},{"name":"minecraft:ancient_debris","id":-271},{"name":"minecraft:andesite","id":-594},{"name":"minecraft:andesite_stairs","id":-171},{"name":"minecraft:angler_pottery_sherd","id":667},{"name":"minecraft:anvil","id":145},{"name":"minecraft:apple","id":257},{"name":"minecraft:archer_pottery_sherd","id":668},{"name":"minecraft:armadillo_scute","id":709},{"name":"minecraft:armadillo_spawn_egg","id":708},{"name":"minecraft:armor_stand","id":563},{"name":"minecraft:arms_up_pottery_sherd","id":669},{"name":"minecraft:arrow","id":304},{"name":"minecraft:axolotl_bucket","id":372},{"name":"minecraft:axolotl_spawn_egg","id":507},{"name":"minecraft:azalea","id":-337},{"name":"minecraft:azalea_leaves","id":-324},{"name":"minecraft:azalea_leaves_flowered","id":-325},{"name":"minecraft:baked_potato","id":282},{"name":"minecraft:balloon","id":609},{"name":"minecraft:bamboo","id":-163},{"name":"minecraft:bamboo_block","id":-527},{"name":"minecraft:bamboo_button","id":-511},{"name":"minecraft:bamboo_chest_raft","id":665},{"name":"minecraft:bamboo_door","id":-517},{"name":"minecraft:bamboo_double_slab","id":-521},{"name":"minecraft:bamboo_fence","id":-515},{"name":"minecraft:bamboo_fence_gate","id":-516},{"name":"minecraft:bamboo_hanging_sign","id":-522},{"name":"minecraft:bamboo_mosaic","id":-509},{"name":"minecraft:bamboo_mosaic_double_slab","id":-525},{"name":"minecraft:bamboo_mosaic_slab","id":-524},{"name":"minecraft:bamboo_mosaic_stairs","id":-523},{"name":"minecraft:bamboo_planks","id":-510},{"name":"minecraft:bamboo_pressure_plate","id":-514},{"name":"minecraft:bamboo_raft","id":664},{"name":"minecraft:bamboo_sapling","id":-164},{"name":"minecraft:bamboo_sign","id":663},{"name":"minecraft:bamboo_slab","id":-513},{"name":"minecraft:bamboo_stairs","id":-512},{"name":"minecraft:bamboo_standing_sign","id":-518},{"name":"minecraft:bamboo_trapdoor","id":-520},{"name":"minecraft:bamboo_wall_sign","id":-519},{"name":"minecraft:banner","id":578},{"name":"minecraft:banner_pattern","id":731},{"name":"minecraft:barrel","id":-203},{"name":"minecraft:barrier","id":-161},{"name":"minecraft:basalt","id":-234},{"name":"minecraft:bat_spawn_egg","id":457},{"name":"minecraft:beacon","id":138},{"name":"minecraft:bed","id":422},{"name":"minecraft:bedrock","id":7},{"name":"minecraft:bee_nest","id":-218},{"name":"minecraft:bee_spawn_egg","id":499},{"name":"minecraft:beef","id":274},{"name":"minecraft:beehive","id":-219},{"name":"minecraft:beetroot","id":286},{"name":"minecraft:beetroot_seeds","id":296},{"name":"minecraft:beetroot_soup","id":287},{"name":"minecraft:bell","id":-206},{"name":"minecraft:big_dripleaf","id":-323},{"name":"minecraft:birch_boat","id":380},{"name":"minecraft:birch_button","id":-141},{"name":"minecraft:birch_chest_boat","id":650},{"name":"minecraft:birch_door","id":565},{"name":"minecraft:birch_double_slab","id":-810},{"name":"minecraft:birch_fence","id":-576},{"name":"minecraft:birch_fence_gate","id":184},{"name":"minecraft:birch_hanging_sign","id":-502},{"name":"minecraft:birch_leaves","id":-801},{"name":"minecraft:birch_log","id":-570},{"name":"minecraft:birch_planks","id":-740},{"name":"minecraft:birch_pressure_plate","id":-151},{"name":"minecraft:birch_sign","id":588},{"name":"minecraft:birch_slab","id":-805},{"name":"minecraft:birch_stairs","id":135},{"name":"minecraft:birch_standing_sign","id":-186},{"name":"minecraft:birch_trapdoor","id":-146},{"name":"minecraft:birch_wall_sign","id":-187},{"name":"minecraft:birch_wood","id":-815},{"name":"minecraft:black_candle","id":-428},{"name":"minecraft:black_candle_cake","id":-445},{"name":"minecraft:black_carpet","id":-611},{"name":"minecraft:black_concrete","id":-642},{"name":"minecraft:black_concrete_powder","id":-723},{"name":"minecraft:black_dye","id":399},{"name":"minecraft:black_glazed_terracotta","id":235},{"name":"minecraft:black_shulker_box","id":-627},{"name":"minecraft:black_stained_glass","id":-687},{"name":"minecraft:black_stained_glass_pane","id":-657},{"name":"minecraft:black_terracotta","id":-738},{"name":"minecraft:black_wool","id":-554},{"name":"minecraft:blackstone","id":-273},{"name":"minecraft:blackstone_double_slab","id":-283},{"name":"minecraft:blackstone_slab","id":-282},{"name":"minecraft:blackstone_stairs","id":-276},{"name":"minecraft:blackstone_wall","id":-277},{"name":"minecraft:blade_pottery_sherd","id":670},{"name":"minecraft:blast_furnace","id":-196},{"name":"minecraft:blaze_powder","id":433},{"name":"minecraft:blaze_rod","id":427},{"name":"minecraft:blaze_spawn_egg","id":460},{"name":"minecraft:bleach","id":607},{"name":"minecraft:blue_candle","id":-424},{"name":"minecraft:blue_candle_cake","id":-441},{"name":"minecraft:blue_carpet","id":-607},{"name":"minecraft:blue_concrete","id":-638},{"name":"minecraft:blue_concrete_powder","id":-719},{"name":"minecraft:blue_dye","id":403},{"name":"minecraft:blue_glazed_terracotta","id":231},{"name":"minecraft:blue_ice","id":-11},{"name":"minecraft:blue_shulker_box","id":-623},{"name":"minecraft:blue_stained_glass","id":-683},{"name":"minecraft:blue_stained_glass_pane","id":-653},{"name":"minecraft:blue_terracotta","id":-734},{"name":"minecraft:blue_wool","id":-563},{"name":"minecraft:boat","id":729},{"name":"minecraft:bogged_spawn_egg","id":467},{"name":"minecraft:bone","id":419},{"name":"minecraft:bone_block","id":216},{"name":"minecraft:bone_meal","id":415},{"name":"minecraft:book","id":391},{"name":"minecraft:bookshelf","id":47},{"name":"minecraft:border_block","id":212},{"name":"minecraft:bordure_indented_banner_pattern","id":597},{"name":"minecraft:bow","id":303},{"name":"minecraft:bowl","id":324},{"name":"minecraft:brain_coral","id":-581},{"name":"minecraft:bread","id":262},{"name":"minecraft:breeze_spawn_egg","id":506},{"name":"minecraft:brewer_pottery_sherd","id":671},{"name":"minecraft:brewing_stand","id":435},{"name":"minecraft:brick","id":387},{"name":"minecraft:brick_block","id":45},{"name":"minecraft:brick_stairs","id":108},{"name":"minecraft:brown_candle","id":-425},{"name":"minecraft:brown_candle_cake","id":-442},{"name":"minecraft:brown_carpet","id":-608},{"name":"minecraft:brown_concrete","id":-639},{"name":"minecraft:brown_concrete_powder","id":-720},{"name":"minecraft:brown_dye","id":402},{"name":"minecraft:brown_glazed_terracotta","id":232},{"name":"minecraft:brown_mushroom","id":39},{"name":"minecraft:brown_mushroom_block","id":99},{"name":"minecraft:brown_shulker_box","id":-624},{"name":"minecraft:brown_stained_glass","id":-684},{"name":"minecraft:brown_stained_glass_pane","id":-654},{"name":"minecraft:brown_terracotta","id":-735},{"name":"minecraft:brown_wool","id":-555},{"name":"minecraft:brush","id":687},{"name":"minecraft:bubble_column","id":-160},{"name":"minecraft:bubble_coral","id":-582},{"name":"minecraft:bucket","id":363},{"name":"minecraft:budding_amethyst","id":-328},{"name":"minecraft:burn_pottery_sherd","id":672},{"name":"minecraft:cactus","id":81},{"name":"minecraft:cake","id":421},{"name":"minecraft:calcite","id":-326},{"name":"minecraft:calibrated_sculk_sensor","id":-580},{"name":"minecraft:camel_spawn_egg","id":666},{"name":"minecraft:camera","id":604},{"name":"minecraft:campfire","id":600},{"name":"minecraft:candle","id":-412},{"name":"minecraft:candle_cake","id":-429},{"name":"minecraft:carpet","id":712},{"name":"minecraft:carrot","id":280},{"name":"minecraft:carrot_on_a_stick","id":528},{"name":"minecraft:carrots","id":141},{"name":"minecraft:cartography_table","id":-200},{"name":"minecraft:carved_pumpkin","id":-155},{"name":"minecraft:cat_spawn_egg","id":493},{"name":"minecraft:cauldron","id":436},{"name":"minecraft:cave_spider_spawn_egg","id":461},{"name":"minecraft:cave_vines","id":-322},{"name":"minecraft:cave_vines_body_with_berries","id":-375},{"name":"minecraft:cave_vines_head_with_berries","id":-376},{"name":"minecraft:chain","id":630},{"name":"minecraft:chain_command_block","id":189},{"name":"minecraft:chainmail_boots","id":345},{"name":"minecraft:chainmail_chestplate","id":343},{"name":"minecraft:chainmail_helmet","id":342},{"name":"minecraft:chainmail_leggings","id":344},{"name":"minecraft:charcoal","id":306},{"name":"minecraft:chemical_heat","id":192},{"name":"minecraft:chemistry_table","id":238},{"name":"minecraft:cherry_boat","id":660},{"name":"minecraft:cherry_button","id":-530},{"name":"minecraft:cherry_chest_boat","id":661},{"name":"minecraft:cherry_door","id":-531},{"name":"minecraft:cherry_double_slab","id":-540},{"name":"minecraft:cherry_fence","id":-532},{"name":"minecraft:cherry_fence_gate","id":-533},{"name":"minecraft:cherry_hanging_sign","id":-534},{"name":"minecraft:cherry_leaves","id":-548},{"name":"minecraft:cherry_log","id":-536},{"name":"minecraft:cherry_planks","id":-537},{"name":"minecraft:cherry_pressure_plate","id":-538},{"name":"minecraft:cherry_sapling","id":-547},{"name":"minecraft:cherry_sign","id":662},{"name":"minecraft:cherry_slab","id":-539},{"name":"minecraft:cherry_stairs","id":-541},{"name":"minecraft:cherry_standing_sign","id":-542},{"name":"minecraft:cherry_trapdoor","id":-543},{"name":"minecraft:cherry_wall_sign","id":-544},{"name":"minecraft:cherry_wood","id":-546},{"name":"minecraft:chest","id":54},{"name":"minecraft:chest_boat","id":656},{"name":"minecraft:chest_minecart","id":393},{"name":"minecraft:chicken","id":276},{"name":"minecraft:chicken_spawn_egg","id":439},{"name":"minecraft:chiseled_bookshelf","id":-526},{"name":"minecraft:chiseled_copper","id":-760},{"name":"minecraft:chiseled_deepslate","id":-395},{"name":"minecraft:chiseled_nether_bricks","id":-302},{"name":"minecraft:chiseled_polished_blackstone","id":-279},{"name":"minecraft:chiseled_tuff","id":-753},{"name":"minecraft:chiseled_tuff_bricks","id":-759},{"name":"minecraft:chorus_flower","id":200},{"name":"minecraft:chorus_fruit","id":569},{"name":"minecraft:chorus_plant","id":240},{"name":"minecraft:clay","id":82},{"name":"minecraft:clay_ball","id":388},{"name":"minecraft:client_request_placeholder_block","id":-465},{"name":"minecraft:clock","id":397},{"name":"minecraft:coal","id":305},{"name":"minecraft:coal_block","id":173},{"name":"minecraft:coal_ore","id":16},{"name":"minecraft:coast_armor_trim_smithing_template","id":691},{"name":"minecraft:cobbled_deepslate","id":-379},{"name":"minecraft:cobbled_deepslate_double_slab","id":-396},{"name":"minecraft:cobbled_deepslate_slab","id":-380},{"name":"minecraft:cobbled_deepslate_stairs","id":-381},{"name":"minecraft:cobbled_deepslate_wall","id":-382},{"name":"minecraft:cobblestone","id":4},{"name":"minecraft:cobblestone_wall","id":139},{"name":"minecraft:cocoa","id":127},{"name":"minecraft:cocoa_beans","id":416},{"name":"minecraft:cod","id":265},{"name":"minecraft:cod_bucket","id":367},{"name":"minecraft:cod_spawn_egg","id":485},{"name":"minecraft:colored_torch_bp","id":204},{"name":"minecraft:colored_torch_rg","id":202},{"name":"minecraft:command_block","id":137},{"name":"minecraft:command_block_minecart","id":574},{"name":"minecraft:comparator","id":533},{"name":"minecraft:compass","id":395},{"name":"minecraft:composter","id":-213},{"name":"minecraft:compound","id":605},{"name":"minecraft:concrete","id":721},{"name":"minecraft:concrete_powder","id":722},{"name":"minecraft:conduit","id":-157},{"name":"minecraft:cooked_beef","id":275},{"name":"minecraft:cooked_chicken","id":277},{"name":"minecraft:cooked_cod","id":269},{"name":"minecraft:cooked_mutton","id":562},{"name":"minecraft:cooked_porkchop","id":264},{"name":"minecraft:cooked_rabbit","id":290},{"name":"minecraft:cooked_salmon","id":270},{"name":"minecraft:cookie","id":272},{"name":"minecraft:copper_block","id":-340},{"name":"minecraft:copper_bulb","id":-776},{"name":"minecraft:copper_door","id":-784},{"name":"minecraft:copper_grate","id":-768},{"name":"minecraft:copper_ingot","id":515},{"name":"minecraft:copper_ore","id":-311},{"name":"minecraft:copper_trapdoor","id":-792},{"name":"minecraft:coral","id":719},{"name":"minecraft:coral_block","id":-132},{"name":"minecraft:coral_fan","id":-133},{"name":"minecraft:coral_fan_dead","id":-134},{"name":"minecraft:coral_fan_hang","id":-135},{"name":"minecraft:coral_fan_hang2","id":-136},{"name":"minecraft:coral_fan_hang3","id":-137},{"name":"minecraft:cow_spawn_egg","id":440},{"name":"minecraft:cracked_deepslate_bricks","id":-410},{"name":"minecraft:cracked_deepslate_tiles","id":-409},{"name":"minecraft:cracked_nether_bricks","id":-303},{"name":"minecraft:cracked_polished_blackstone_bricks","id":-280},{"name":"minecraft:crafter","id":-313},{"name":"minecraft:crafting_table","id":58},{"name":"minecraft:creeper_banner_pattern","id":593},{"name":"minecraft:creeper_spawn_egg","id":445},{"name":"minecraft:crimson_button","id":-260},{"name":"minecraft:crimson_door","id":627},{"name":"minecraft:crimson_double_slab","id":-266},{"name":"minecraft:crimson_fence","id":-256},{"name":"minecraft:crimson_fence_gate","id":-258},{"name":"minecraft:crimson_fungus","id":-228},{"name":"minecraft:crimson_hanging_sign","id":-506},{"name":"minecraft:crimson_hyphae","id":-299},{"name":"minecraft:crimson_nylium","id":-232},{"name":"minecraft:crimson_planks","id":-242},{"name":"minecraft:crimson_pressure_plate","id":-262},{"name":"minecraft:crimson_roots","id":-223},{"name":"minecraft:crimson_sign","id":625},{"name":"minecraft:crimson_slab","id":-264},{"name":"minecraft:crimson_stairs","id":-254},{"name":"minecraft:crimson_standing_sign","id":-250},{"name":"minecraft:crimson_stem","id":-225},{"name":"minecraft:crimson_trapdoor","id":-246},{"name":"minecraft:crimson_wall_sign","id":-252},{"name":"minecraft:crossbow","id":586},{"name":"minecraft:crying_obsidian","id":-289},{"name":"minecraft:cut_copper","id":-347},{"name":"minecraft:cut_copper_slab","id":-361},{"name":"minecraft:cut_copper_stairs","id":-354},{"name":"minecraft:cyan_candle","id":-422},{"name":"minecraft:cyan_candle_cake","id":-439},{"name":"minecraft:cyan_carpet","id":-605},{"name":"minecraft:cyan_concrete","id":-636},{"name":"minecraft:cyan_concrete_powder","id":-717},{"name":"minecraft:cyan_dye","id":405},{"name":"minecraft:cyan_glazed_terracotta","id":229},{"name":"minecraft:cyan_shulker_box","id":-621},{"name":"minecraft:cyan_stained_glass","id":-681},{"name":"minecraft:cyan_stained_glass_pane","id":-651},{"name":"minecraft:cyan_terracotta","id":-732},{"name":"minecraft:cyan_wool","id":-561},{"name":"minecraft:danger_pottery_sherd","id":673},{"name":"minecraft:dark_oak_boat","id":384},{"name":"minecraft:dark_oak_button","id":-142},{"name":"minecraft:dark_oak_chest_boat","id":654},{"name":"minecraft:dark_oak_door","id":568},{"name":"minecraft:dark_oak_double_slab","id":-813},{"name":"minecraft:dark_oak_fence","id":-577},{"name":"minecraft:dark_oak_fence_gate","id":186},{"name":"minecraft:dark_oak_hanging_sign","id":-505},{"name":"minecraft:dark_oak_leaves","id":-803},{"name":"minecraft:dark_oak_log","id":-572},{"name":"minecraft:dark_oak_planks","id":-743},{"name":"minecraft:dark_oak_pressure_plate","id":-152},{"name":"minecraft:dark_oak_sign","id":591},{"name":"minecraft:dark_oak_slab","id":-808},{"name":"minecraft:dark_oak_stairs","id":164},{"name":"minecraft:dark_oak_trapdoor","id":-147},{"name":"minecraft:dark_oak_wood","id":-818},{"name":"minecraft:dark_prismarine_stairs","id":-3},{"name":"minecraft:darkoak_standing_sign","id":-192},{"name":"minecraft:darkoak_wall_sign","id":-193},{"name":"minecraft:daylight_detector","id":151},{"name":"minecraft:daylight_detector_inverted","id":178},{"name":"minecraft:dead_brain_coral","id":-586},{"name":"minecraft:dead_bubble_coral","id":-587},{"name":"minecraft:dead_fire_coral","id":-588},{"name":"minecraft:dead_horn_coral","id":-589},{"name":"minecraft:dead_tube_coral","id":-585},{"name":"minecraft:deadbush","id":32},{"name":"minecraft:decorated_pot","id":-551},{"name":"minecraft:deepslate","id":-378},{"name":"minecraft:deepslate_brick_double_slab","id":-399},{"name":"minecraft:deepslate_brick_slab","id":-392},{"name":"minecraft:deepslate_brick_stairs","id":-393},{"name":"minecraft:deepslate_brick_wall","id":-394},{"name":"minecraft:deepslate_bricks","id":-391},{"name":"minecraft:deepslate_coal_ore","id":-406},{"name":"minecraft:deepslate_copper_ore","id":-408},{"name":"minecraft:deepslate_diamond_ore","id":-405},{"name":"minecraft:deepslate_emerald_ore","id":-407},{"name":"minecraft:deepslate_gold_ore","id":-402},{"name":"minecraft:deepslate_iron_ore","id":-401},{"name":"minecraft:deepslate_lapis_ore","id":-400},{"name":"minecraft:deepslate_redstone_ore","id":-403},{"name":"minecraft:deepslate_tile_double_slab","id":-398},{"name":"minecraft:deepslate_tile_slab","id":-388},{"name":"minecraft:deepslate_tile_stairs","id":-389},{"name":"minecraft:deepslate_tile_wall","id":-390},{"name":"minecraft:deepslate_tiles","id":-387},{"name":"minecraft:deny","id":211},{"name":"minecraft:detector_rail","id":28},{"name":"minecraft:diamond","id":307},{"name":"minecraft:diamond_axe","id":322},{"name":"minecraft:diamond_block","id":57},{"name":"minecraft:diamond_boots","id":353},{"name":"minecraft:diamond_chestplate","id":351},{"name":"minecraft:diamond_helmet","id":350},{"name":"minecraft:diamond_hoe","id":335},{"name":"minecraft:diamond_horse_armor","id":544},{"name":"minecraft:diamond_leggings","id":352},{"name":"minecraft:diamond_ore","id":56},{"name":"minecraft:diamond_pickaxe","id":321},{"name":"minecraft:diamond_shovel","id":320},{"name":"minecraft:diamond_sword","id":319},{"name":"minecraft:diorite","id":-592},{"name":"minecraft:diorite_stairs","id":-170},{"name":"minecraft:dirt","id":3},{"name":"minecraft:dirt_with_roots","id":-318},{"name":"minecraft:disc_fragment_5","id":648},{"name":"minecraft:dispenser","id":23},{"name":"minecraft:dolphin_spawn_egg","id":489},{"name":"minecraft:donkey_spawn_egg","id":470},{"name":"minecraft:double_cut_copper_slab","id":-368},{"name":"minecraft:double_plant","id":175},{"name":"minecraft:double_stone_block_slab","id":43},{"name":"minecraft:double_stone_block_slab2","id":181},{"name":"minecraft:double_stone_block_slab3","id":-167},{"name":"minecraft:double_stone_block_slab4","id":-168},{"name":"minecraft:dragon_breath","id":571},{"name":"minecraft:dragon_egg","id":122},{"name":"minecraft:dried_kelp","id":271},{"name":"minecraft:dried_kelp_block","id":-139},{"name":"minecraft:dripstone_block","id":-317},{"name":"minecraft:dropper","id":125},{"name":"minecraft:drowned_spawn_egg","id":488},{"name":"minecraft:dune_armor_trim_smithing_template","id":690},{"name":"minecraft:dye","id":730},{"name":"minecraft:echo_shard","id":658},{"name":"minecraft:egg","id":394},{"name":"minecraft:elder_guardian_spawn_egg","id":476},{"name":"minecraft:element_0","id":36},{"name":"minecraft:element_1","id":-12},{"name":"minecraft:element_10","id":-21},{"name":"minecraft:element_100","id":-111},{"name":"minecraft:element_101","id":-112},{"name":"minecraft:element_102","id":-113},{"name":"minecraft:element_103","id":-114},{"name":"minecraft:element_104","id":-115},{"name":"minecraft:element_105","id":-116},{"name":"minecraft:element_106","id":-117},{"name":"minecraft:element_107","id":-118},{"name":"minecraft:element_108","id":-119},{"name":"minecraft:element_109","id":-120},{"name":"minecraft:element_11","id":-22},{"name":"minecraft:element_110","id":-121},{"name":"minecraft:element_111","id":-122},{"name":"minecraft:element_112","id":-123},{"name":"minecraft:element_113","id":-124},{"name":"minecraft:element_114","id":-125},{"name":"minecraft:element_115","id":-126},{"name":"minecraft:element_116","id":-127},{"name":"minecraft:element_117","id":-128},{"name":"minecraft:element_118","id":-129},{"name":"minecraft:element_12","id":-23},{"name":"minecraft:element_13","id":-24},{"name":"minecraft:element_14","id":-25},{"name":"minecraft:element_15","id":-26},{"name":"minecraft:element_16","id":-27},{"name":"minecraft:element_17","id":-28},{"name":"minecraft:element_18","id":-29},{"name":"minecraft:element_19","id":-30},{"name":"minecraft:element_2","id":-13},{"name":"minecraft:element_20","id":-31},{"name":"minecraft:element_21","id":-32},{"name":"minecraft:element_22","id":-33},{"name":"minecraft:element_23","id":-34},{"name":"minecraft:element_24","id":-35},{"name":"minecraft:element_25","id":-36},{"name":"minecraft:element_26","id":-37},{"name":"minecraft:element_27","id":-38},{"name":"minecraft:element_28","id":-39},{"name":"minecraft:element_29","id":-40},{"name":"minecraft:element_3","id":-14},{"name":"minecraft:element_30","id":-41},{"name":"minecraft:element_31","id":-42},{"name":"minecraft:element_32","id":-43},{"name":"minecraft:element_33","id":-44},{"name":"minecraft:element_34","id":-45},{"name":"minecraft:element_35","id":-46},{"name":"minecraft:element_36","id":-47},{"name":"minecraft:element_37","id":-48},{"name":"minecraft:element_38","id":-49},{"name":"minecraft:element_39","id":-50},{"name":"minecraft:element_4","id":-15},{"name":"minecraft:element_40","id":-51},{"name":"minecraft:element_41","id":-52},{"name":"minecraft:element_42","id":-53},{"name":"minecraft:element_43","id":-54},{"name":"minecraft:element_44","id":-55},{"name":"minecraft:element_45","id":-56},{"name":"minecraft:element_46","id":-57},{"name":"minecraft:element_47","id":-58},{"name":"minecraft:element_48","id":-59},{"name":"minecraft:element_49","id":-60},{"name":"minecraft:element_5","id":-16},{"name":"minecraft:element_50","id":-61},{"name":"minecraft:element_51","id":-62},{"name":"minecraft:element_52","id":-63},{"name":"minecraft:element_53","id":-64},{"name":"minecraft:element_54","id":-65},{"name":"minecraft:element_55","id":-66},{"name":"minecraft:element_56","id":-67},{"name":"minecraft:element_57","id":-68},{"name":"minecraft:element_58","id":-69},{"name":"minecraft:element_59","id":-70},{"name":"minecraft:element_6","id":-17},{"name":"minecraft:element_60","id":-71},{"name":"minecraft:element_61","id":-72},{"name":"minecraft:element_62","id":-73},{"name":"minecraft:element_63","id":-74},{"name":"minecraft:element_64","id":-75},{"name":"minecraft:element_65","id":-76},{"name":"minecraft:element_66","id":-77},{"name":"minecraft:element_67","id":-78},{"name":"minecraft:element_68","id":-79},{"name":"minecraft:element_69","id":-80},{"name":"minecraft:element_7","id":-18},{"name":"minecraft:element_70","id":-81},{"name":"minecraft:element_71","id":-82},{"name":"minecraft:element_72","id":-83},{"name":"minecraft:element_73","id":-84},{"name":"minecraft:element_74","id":-85},{"name":"minecraft:element_75","id":-86},{"name":"minecraft:element_76","id":-87},{"name":"minecraft:element_77","id":-88},{"name":"minecraft:element_78","id":-89},{"name":"minecraft:element_79","id":-90},{"name":"minecraft:element_8","id":-19},{"name":"minecraft:element_80","id":-91},{"name":"minecraft:element_81","id":-92},{"name":"minecraft:element_82","id":-93},{"name":"minecraft:element_83","id":-94},{"name":"minecraft:element_84","id":-95},{"name":"minecraft:element_85","id":-96},{"name":"minecraft:element_86","id":-97},{"name":"minecraft:element_87","id":-98},{"name":"minecraft:element_88","id":-99},{"name":"minecraft:element_89","id":-100},{"name":"minecraft:element_9","id":-20},{"name":"minecraft:element_90","id":-101},{"name":"minecraft:element_91","id":-102},{"name":"minecraft:element_92","id":-103},{"name":"minecraft:element_93","id":-104},{"name":"minecraft:element_94","id":-105},{"name":"minecraft:element_95","id":-106},{"name":"minecraft:element_96","id":-107},{"name":"minecraft:element_97","id":-108},{"name":"minecraft:element_98","id":-109},{"name":"minecraft:element_99","id":-110},{"name":"minecraft:elytra","id":575},{"name":"minecraft:emerald","id":523},{"name":"minecraft:emerald_block","id":133},{"name":"minecraft:emerald_ore","id":129},{"name":"minecraft:empty_map","id":526},{"name":"minecraft:enchanted_book","id":532},{"name":"minecraft:enchanted_golden_apple","id":260},{"name":"minecraft:enchanting_table","id":116},{"name":"minecraft:end_brick_stairs","id":-178},{"name":"minecraft:end_bricks","id":206},{"name":"minecraft:end_crystal","id":733},{"name":"minecraft:end_gateway","id":209},{"name":"minecraft:end_portal","id":119},{"name":"minecraft:end_portal_frame","id":120},{"name":"minecraft:end_rod","id":208},{"name":"minecraft:end_stone","id":121},{"name":"minecraft:ender_chest","id":130},{"name":"minecraft:ender_dragon_spawn_egg","id":512},{"name":"minecraft:ender_eye","id":437},{"name":"minecraft:ender_pearl","id":426},{"name":"minecraft:enderman_spawn_egg","id":446},{"name":"minecraft:endermite_spawn_egg","id":464},{"name":"minecraft:evoker_spawn_egg","id":480},{"name":"minecraft:experience_bottle","id":519},{"name":"minecraft:explorer_pottery_sherd","id":674},{"name":"minecraft:exposed_chiseled_copper","id":-761},{"name":"minecraft:exposed_copper","id":-341},{"name":"minecraft:exposed_copper_bulb","id":-777},{"name":"minecraft:exposed_copper_door","id":-785},{"name":"minecraft:exposed_copper_grate","id":-769},{"name":"minecraft:exposed_copper_trapdoor","id":-793},{"name":"minecraft:exposed_cut_copper","id":-348},{"name":"minecraft:exposed_cut_copper_slab","id":-362},{"name":"minecraft:exposed_cut_copper_stairs","id":-355},{"name":"minecraft:exposed_double_cut_copper_slab","id":-369},{"name":"minecraft:eye_armor_trim_smithing_template","id":694},{"name":"minecraft:farmland","id":60},{"name":"minecraft:feather","id":330},{"name":"minecraft:fence","id":714},{"name":"minecraft:fence_gate","id":107},{"name":"minecraft:fermented_spider_eye","id":432},{"name":"minecraft:field_masoned_banner_pattern","id":596},{"name":"minecraft:filled_map","id":424},{"name":"minecraft:fire","id":51},{"name":"minecraft:fire_charge","id":520},{"name":"minecraft:fire_coral","id":-583},{"name":"minecraft:firework_rocket","id":530},{"name":"minecraft:firework_star","id":531},{"name":"minecraft:fishing_rod","id":396},{"name":"minecraft:fletching_table","id":-201},{"name":"minecraft:flint","id":359},{"name":"minecraft:flint_and_steel","id":302},{"name":"minecraft:flower_banner_pattern","id":592},{"name":"minecraft:flower_pot","id":525},{"name":"minecraft:flowering_azalea","id":-338},{"name":"minecraft:flowing_lava","id":10},{"name":"minecraft:flowing_water","id":8},{"name":"minecraft:fox_spawn_egg","id":495},{"name":"minecraft:frame","id":524},{"name":"minecraft:friend_pottery_sherd","id":675},{"name":"minecraft:frog_spawn","id":-468},{"name":"minecraft:frog_spawn_egg","id":639},{"name":"minecraft:frosted_ice","id":207},{"name":"minecraft:furnace","id":61},{"name":"minecraft:ghast_spawn_egg","id":458},{"name":"minecraft:ghast_tear","id":428},{"name":"minecraft:gilded_blackstone","id":-281},{"name":"minecraft:glass","id":20},{"name":"minecraft:glass_bottle","id":431},{"name":"minecraft:glass_pane","id":102},{"name":"minecraft:glistering_melon_slice","id":438},{"name":"minecraft:globe_banner_pattern","id":599},{"name":"minecraft:glow_berries","id":734},{"name":"minecraft:glow_frame","id":634},{"name":"minecraft:glow_ink_sac","id":514},{"name":"minecraft:glow_lichen","id":-411},{"name":"minecraft:glow_squid_spawn_egg","id":509},{"name":"minecraft:glow_stick","id":612},{"name":"minecraft:glowingobsidian","id":246},{"name":"minecraft:glowstone","id":89},{"name":"minecraft:glowstone_dust","id":398},{"name":"minecraft:goat_horn","id":638},{"name":"minecraft:goat_spawn_egg","id":508},{"name":"minecraft:gold_block","id":41},{"name":"minecraft:gold_ingot","id":309},{"name":"minecraft:gold_nugget","id":429},{"name":"minecraft:gold_ore","id":14},{"name":"minecraft:golden_apple","id":259},{"name":"minecraft:golden_axe","id":328},{"name":"minecraft:golden_boots","id":357},{"name":"minecraft:golden_carrot","id":284},{"name":"minecraft:golden_chestplate","id":355},{"name":"minecraft:golden_helmet","id":354},{"name":"minecraft:golden_hoe","id":336},{"name":"minecraft:golden_horse_armor","id":543},{"name":"minecraft:golden_leggings","id":356},{"name":"minecraft:golden_pickaxe","id":327},{"name":"minecraft:golden_rail","id":27},{"name":"minecraft:golden_shovel","id":326},{"name":"minecraft:golden_sword","id":325},{"name":"minecraft:granite","id":-590},{"name":"minecraft:granite_stairs","id":-169},{"name":"minecraft:grass_block","id":2},{"name":"minecraft:grass_path","id":198},{"name":"minecraft:gravel","id":13},{"name":"minecraft:gray_candle","id":-420},{"name":"minecraft:gray_candle_cake","id":-437},{"name":"minecraft:gray_carpet","id":-603},{"name":"minecraft:gray_concrete","id":-634},{"name":"minecraft:gray_concrete_powder","id":-715},{"name":"minecraft:gray_dye","id":407},{"name":"minecraft:gray_glazed_terracotta","id":227},{"name":"minecraft:gray_shulker_box","id":-619},{"name":"minecraft:gray_stained_glass","id":-679},{"name":"minecraft:gray_stained_glass_pane","id":-649},{"name":"minecraft:gray_terracotta","id":-730},{"name":"minecraft:gray_wool","id":-553},{"name":"minecraft:green_candle","id":-426},{"name":"minecraft:green_candle_cake","id":-443},{"name":"minecraft:green_carpet","id":-609},{"name":"minecraft:green_concrete","id":-640},{"name":"minecraft:green_concrete_powder","id":-721},{"name":"minecraft:green_dye","id":401},{"name":"minecraft:green_glazed_terracotta","id":233},{"name":"minecraft:green_shulker_box","id":-625},{"name":"minecraft:green_stained_glass","id":-685},{"name":"minecraft:green_stained_glass_pane","id":-655},{"name":"minecraft:green_terracotta","id":-736},{"name":"minecraft:green_wool","id":-560},{"name":"minecraft:grindstone","id":-195},{"name":"minecraft:guardian_spawn_egg","id":465},{"name":"minecraft:gunpowder","id":331},{"name":"minecraft:hanging_roots","id":-319},{"name":"minecraft:hard_black_stained_glass","id":-702},{"name":"minecraft:hard_black_stained_glass_pane","id":-672},{"name":"minecraft:hard_blue_stained_glass","id":-698},{"name":"minecraft:hard_blue_stained_glass_pane","id":-668},{"name":"minecraft:hard_brown_stained_glass","id":-699},{"name":"minecraft:hard_brown_stained_glass_pane","id":-669},{"name":"minecraft:hard_cyan_stained_glass","id":-696},{"name":"minecraft:hard_cyan_stained_glass_pane","id":-666},{"name":"minecraft:hard_glass","id":253},{"name":"minecraft:hard_glass_pane","id":190},{"name":"minecraft:hard_gray_stained_glass","id":-694},{"name":"minecraft:hard_gray_stained_glass_pane","id":-664},{"name":"minecraft:hard_green_stained_glass","id":-700},{"name":"minecraft:hard_green_stained_glass_pane","id":-670},{"name":"minecraft:hard_light_blue_stained_glass","id":-690},{"name":"minecraft:hard_light_blue_stained_glass_pane","id":-660},{"name":"minecraft:hard_light_gray_stained_glass","id":-695},{"name":"minecraft:hard_light_gray_stained_glass_pane","id":-665},{"name":"minecraft:hard_lime_stained_glass","id":-692},{"name":"minecraft:hard_lime_stained_glass_pane","id":-662},{"name":"minecraft:hard_magenta_stained_glass","id":-689},{"name":"minecraft:hard_magenta_stained_glass_pane","id":-659},{"name":"minecraft:hard_orange_stained_glass","id":-688},{"name":"minecraft:hard_orange_stained_glass_pane","id":-658},{"name":"minecraft:hard_pink_stained_glass","id":-693},{"name":"minecraft:hard_pink_stained_glass_pane","id":-663},{"name":"minecraft:hard_purple_stained_glass","id":-697},{"name":"minecraft:hard_purple_stained_glass_pane","id":-667},{"name":"minecraft:hard_red_stained_glass","id":-701},{"name":"minecraft:hard_red_stained_glass_pane","id":-671},{"name":"minecraft:hard_stained_glass","id":727},{"name":"minecraft:hard_stained_glass_pane","id":728},{"name":"minecraft:hard_white_stained_glass","id":254},{"name":"minecraft:hard_white_stained_glass_pane","id":191},{"name":"minecraft:hard_yellow_stained_glass","id":-691},{"name":"minecraft:hard_yellow_stained_glass_pane","id":-661},{"name":"minecraft:hardened_clay","id":172},{"name":"minecraft:hay_block","id":170},{"name":"minecraft:heart_of_the_sea","id":582},{"name":"minecraft:heart_pottery_sherd","id":676},{"name":"minecraft:heartbreak_pottery_sherd","id":677},{"name":"minecraft:heavy_weighted_pressure_plate","id":148},{"name":"minecraft:hoglin_spawn_egg","id":501},{"name":"minecraft:honey_block","id":-220},{"name":"minecraft:honey_bottle","id":603},{"name":"minecraft:honeycomb","id":602},{"name":"minecraft:honeycomb_block","id":-221},{"name":"minecraft:hopper","id":538},{"name":"minecraft:hopper_minecart","id":537},{"name":"minecraft:horn_coral","id":-584},{"name":"minecraft:horse_spawn_egg","id":462},{"name":"minecraft:host_armor_trim_smithing_template","id":704},{"name":"minecraft:howl_pottery_sherd","id":678},{"name":"minecraft:husk_spawn_egg","id":468},{"name":"minecraft:ice","id":79},{"name":"minecraft:ice_bomb","id":606},{"name":"minecraft:infested_deepslate","id":-454},{"name":"minecraft:info_update","id":248},{"name":"minecraft:info_update2","id":249},{"name":"minecraft:ink_sac","id":417},{"name":"minecraft:invisible_bedrock","id":95},{"name":"minecraft:iron_axe","id":301},{"name":"minecraft:iron_bars","id":101},{"name":"minecraft:iron_block","id":42},{"name":"minecraft:iron_boots","id":349},{"name":"minecraft:iron_chestplate","id":347},{"name":"minecraft:iron_door","id":375},{"name":"minecraft:iron_golem_spawn_egg","id":510},{"name":"minecraft:iron_helmet","id":346},{"name":"minecraft:iron_hoe","id":334},{"name":"minecraft:iron_horse_armor","id":542},{"name":"minecraft:iron_ingot","id":308},{"name":"minecraft:iron_leggings","id":348},{"name":"minecraft:iron_nugget","id":580},{"name":"minecraft:iron_ore","id":15},{"name":"minecraft:iron_pickaxe","id":300},{"name":"minecraft:iron_shovel","id":299},{"name":"minecraft:iron_sword","id":310},{"name":"minecraft:iron_trapdoor","id":167},{"name":"minecraft:item.acacia_door","id":196},{"name":"minecraft:item.bed","id":26},{"name":"minecraft:item.beetroot","id":244},{"name":"minecraft:item.birch_door","id":194},{"name":"minecraft:item.brewing_stand","id":117},{"name":"minecraft:item.cake","id":92},{"name":"minecraft:item.camera","id":242},{"name":"minecraft:item.campfire","id":-209},{"name":"minecraft:item.cauldron","id":118},{"name":"minecraft:item.chain","id":-286},{"name":"minecraft:item.crimson_door","id":-244},{"name":"minecraft:item.dark_oak_door","id":197},{"name":"minecraft:item.flower_pot","id":140},{"name":"minecraft:item.frame","id":199},{"name":"minecraft:item.glow_frame","id":-339},{"name":"minecraft:item.hopper","id":154},{"name":"minecraft:item.iron_door","id":71},{"name":"minecraft:item.jungle_door","id":195},{"name":"minecraft:item.kelp","id":-138},{"name":"minecraft:item.mangrove_door","id":-493},{"name":"minecraft:item.nether_sprouts","id":-238},{"name":"minecraft:item.nether_wart","id":115},{"name":"minecraft:item.reeds","id":83},{"name":"minecraft:item.skull","id":144},{"name":"minecraft:item.soul_campfire","id":-290},{"name":"minecraft:item.spruce_door","id":193},{"name":"minecraft:item.warped_door","id":-245},{"name":"minecraft:item.wheat","id":59},{"name":"minecraft:item.wooden_door","id":64},{"name":"minecraft:jigsaw","id":-211},{"name":"minecraft:jukebox","id":84},{"name":"minecraft:jungle_boat","id":381},{"name":"minecraft:jungle_button","id":-143},{"name":"minecraft:jungle_chest_boat","id":651},{"name":"minecraft:jungle_door","id":566},{"name":"minecraft:jungle_double_slab","id":-811},{"name":"minecraft:jungle_fence","id":-578},{"name":"minecraft:jungle_fence_gate","id":185},{"name":"minecraft:jungle_hanging_sign","id":-503},{"name":"minecraft:jungle_leaves","id":-802},{"name":"minecraft:jungle_log","id":-571},{"name":"minecraft:jungle_planks","id":-741},{"name":"minecraft:jungle_pressure_plate","id":-153},{"name":"minecraft:jungle_sign","id":589},{"name":"minecraft:jungle_slab","id":-806},{"name":"minecraft:jungle_stairs","id":136},{"name":"minecraft:jungle_standing_sign","id":-188},{"name":"minecraft:jungle_trapdoor","id":-148},{"name":"minecraft:jungle_wall_sign","id":-189},{"name":"minecraft:jungle_wood","id":-816},{"name":"minecraft:kelp","id":386},{"name":"minecraft:ladder","id":65},{"name":"minecraft:lantern","id":-208},{"name":"minecraft:lapis_block","id":22},{"name":"minecraft:lapis_lazuli","id":418},{"name":"minecraft:lapis_ore","id":21},{"name":"minecraft:large_amethyst_bud","id":-330},{"name":"minecraft:lava","id":11},{"name":"minecraft:lava_bucket","id":366},{"name":"minecraft:lead","id":558},{"name":"minecraft:leather","id":385},{"name":"minecraft:leather_boots","id":341},{"name":"minecraft:leather_chestplate","id":339},{"name":"minecraft:leather_helmet","id":338},{"name":"minecraft:leather_horse_armor","id":541},{"name":"minecraft:leather_leggings","id":340},{"name":"minecraft:leaves","id":715},{"name":"minecraft:leaves2","id":716},{"name":"minecraft:lectern","id":-194},{"name":"minecraft:lever","id":69},{"name":"minecraft:light_block","id":-215},{"name":"minecraft:light_blue_candle","id":-416},{"name":"minecraft:light_blue_candle_cake","id":-433},{"name":"minecraft:light_blue_carpet","id":-599},{"name":"minecraft:light_blue_concrete","id":-630},{"name":"minecraft:light_blue_concrete_powder","id":-711},{"name":"minecraft:light_blue_dye","id":411},{"name":"minecraft:light_blue_glazed_terracotta","id":223},{"name":"minecraft:light_blue_shulker_box","id":-615},{"name":"minecraft:light_blue_stained_glass","id":-675},{"name":"minecraft:light_blue_stained_glass_pane","id":-645},{"name":"minecraft:light_blue_terracotta","id":-726},{"name":"minecraft:light_blue_wool","id":-562},{"name":"minecraft:light_gray_candle","id":-421},{"name":"minecraft:light_gray_candle_cake","id":-438},{"name":"minecraft:light_gray_carpet","id":-604},{"name":"minecraft:light_gray_concrete","id":-635},{"name":"minecraft:light_gray_concrete_powder","id":-716},{"name":"minecraft:light_gray_dye","id":406},{"name":"minecraft:light_gray_shulker_box","id":-620},{"name":"minecraft:light_gray_stained_glass","id":-680},{"name":"minecraft:light_gray_stained_glass_pane","id":-650},{"name":"minecraft:light_gray_terracotta","id":-731},{"name":"minecraft:light_gray_wool","id":-552},{"name":"minecraft:light_weighted_pressure_plate","id":147},{"name":"minecraft:lightning_rod","id":-312},{"name":"minecraft:lime_candle","id":-418},{"name":"minecraft:lime_candle_cake","id":-435},{"name":"minecraft:lime_carpet","id":-601},{"name":"minecraft:lime_concrete","id":-632},{"name":"minecraft:lime_concrete_powder","id":-713},{"name":"minecraft:lime_dye","id":409},{"name":"minecraft:lime_glazed_terracotta","id":225},{"name":"minecraft:lime_shulker_box","id":-617},{"name":"minecraft:lime_stained_glass","id":-677},{"name":"minecraft:lime_stained_glass_pane","id":-647},{"name":"minecraft:lime_terracotta","id":-728},{"name":"minecraft:lime_wool","id":-559},{"name":"minecraft:lingering_potion","id":573},{"name":"minecraft:lit_blast_furnace","id":-214},{"name":"minecraft:lit_deepslate_redstone_ore","id":-404},{"name":"minecraft:lit_furnace","id":62},{"name":"minecraft:lit_pumpkin","id":91},{"name":"minecraft:lit_redstone_lamp","id":124},{"name":"minecraft:lit_redstone_ore","id":74},{"name":"minecraft:lit_smoker","id":-199},{"name":"minecraft:llama_spawn_egg","id":478},{"name":"minecraft:lodestone","id":-222},{"name":"minecraft:lodestone_compass","id":613},{"name":"minecraft:log","id":713},{"name":"minecraft:log2","id":720},{"name":"minecraft:loom","id":-204},{"name":"minecraft:magenta_candle","id":-415},{"name":"minecraft:magenta_candle_cake","id":-432},{"name":"minecraft:magenta_carpet","id":-598},{"name":"minecraft:magenta_concrete","id":-629},{"name":"minecraft:magenta_concrete_powder","id":-710},{"name":"minecraft:magenta_dye","id":412},{"name":"minecraft:magenta_glazed_terracotta","id":222},{"name":"minecraft:magenta_shulker_box","id":-614},{"name":"minecraft:magenta_stained_glass","id":-674},{"name":"minecraft:magenta_stained_glass_pane","id":-644},{"name":"minecraft:magenta_terracotta","id":-725},{"name":"minecraft:magenta_wool","id":-565},{"name":"minecraft:magma","id":213},{"name":"minecraft:magma_cream","id":434},{"name":"minecraft:magma_cube_spawn_egg","id":459},{"name":"minecraft:mangrove_boat","id":646},{"name":"minecraft:mangrove_button","id":-487},{"name":"minecraft:mangrove_chest_boat","id":655},{"name":"minecraft:mangrove_door","id":644},{"name":"minecraft:mangrove_double_slab","id":-499},{"name":"minecraft:mangrove_fence","id":-491},{"name":"minecraft:mangrove_fence_gate","id":-492},{"name":"minecraft:mangrove_hanging_sign","id":-508},{"name":"minecraft:mangrove_leaves","id":-472},{"name":"minecraft:mangrove_log","id":-484},{"name":"minecraft:mangrove_planks","id":-486},{"name":"minecraft:mangrove_pressure_plate","id":-490},{"name":"minecraft:mangrove_propagule","id":-474},{"name":"minecraft:mangrove_roots","id":-482},{"name":"minecraft:mangrove_sign","id":645},{"name":"minecraft:mangrove_slab","id":-489},{"name":"minecraft:mangrove_stairs","id":-488},{"name":"minecraft:mangrove_standing_sign","id":-494},{"name":"minecraft:mangrove_trapdoor","id":-496},{"name":"minecraft:mangrove_wall_sign","id":-495},{"name":"minecraft:mangrove_wood","id":-497},{"name":"minecraft:medicine","id":610},{"name":"minecraft:medium_amethyst_bud","id":-331},{"name":"minecraft:melon_block","id":103},{"name":"minecraft:melon_seeds","id":294},{"name":"minecraft:melon_slice","id":273},{"name":"minecraft:melon_stem","id":105},{"name":"minecraft:milk_bucket","id":364},{"name":"minecraft:minecart","id":373},{"name":"minecraft:miner_pottery_sherd","id":679},{"name":"minecraft:mob_spawner","id":52},{"name":"minecraft:mojang_banner_pattern","id":595},{"name":"minecraft:monster_egg","id":97},{"name":"minecraft:mooshroom_spawn_egg","id":444},{"name":"minecraft:moss_block","id":-320},{"name":"minecraft:moss_carpet","id":-335},{"name":"minecraft:mossy_cobblestone","id":48},{"name":"minecraft:mossy_cobblestone_stairs","id":-179},{"name":"minecraft:mossy_stone_brick_stairs","id":-175},{"name":"minecraft:mourner_pottery_sherd","id":680},{"name":"minecraft:moving_block","id":250},{"name":"minecraft:mud","id":-473},{"name":"minecraft:mud_brick_double_slab","id":-479},{"name":"minecraft:mud_brick_slab","id":-478},{"name":"minecraft:mud_brick_stairs","id":-480},{"name":"minecraft:mud_brick_wall","id":-481},{"name":"minecraft:mud_bricks","id":-475},{"name":"minecraft:muddy_mangrove_roots","id":-483},{"name":"minecraft:mule_spawn_egg","id":471},{"name":"minecraft:mushroom_stew","id":261},{"name":"minecraft:music_disc_11","id":555},{"name":"minecraft:music_disc_13","id":545},{"name":"minecraft:music_disc_5","id":647},{"name":"minecraft:music_disc_blocks","id":547},{"name":"minecraft:music_disc_cat","id":546},{"name":"minecraft:music_disc_chirp","id":548},{"name":"minecraft:music_disc_far","id":549},{"name":"minecraft:music_disc_mall","id":550},{"name":"minecraft:music_disc_mellohi","id":551},{"name":"minecraft:music_disc_otherside","id":637},{"name":"minecraft:music_disc_pigstep","id":631},{"name":"minecraft:music_disc_relic","id":705},{"name":"minecraft:music_disc_stal","id":552},{"name":"minecraft:music_disc_strad","id":553},{"name":"minecraft:music_disc_wait","id":556},{"name":"minecraft:music_disc_ward","id":554},{"name":"minecraft:mutton","id":561},{"name":"minecraft:mycelium","id":110},{"name":"minecraft:name_tag","id":559},{"name":"minecraft:nautilus_shell","id":581},{"name":"minecraft:nether_brick","id":112},{"name":"minecraft:nether_brick_fence","id":113},{"name":"minecraft:nether_brick_stairs","id":114},{"name":"minecraft:nether_gold_ore","id":-288},{"name":"minecraft:nether_sprouts","id":632},{"name":"minecraft:nether_star","id":529},{"name":"minecraft:nether_wart","id":295},{"name":"minecraft:nether_wart_block","id":214},{"name":"minecraft:netherbrick","id":534},{"name":"minecraft:netherite_axe","id":617},{"name":"minecraft:netherite_block","id":-270},{"name":"minecraft:netherite_boots","id":623},{"name":"minecraft:netherite_chestplate","id":621},{"name":"minecraft:netherite_helmet","id":620},{"name":"minecraft:netherite_hoe","id":618},{"name":"minecraft:netherite_ingot","id":619},{"name":"minecraft:netherite_leggings","id":622},{"name":"minecraft:netherite_pickaxe","id":616},{"name":"minecraft:netherite_scrap","id":624},{"name":"minecraft:netherite_shovel","id":615},{"name":"minecraft:netherite_sword","id":614},{"name":"minecraft:netherite_upgrade_smithing_template","id":688},{"name":"minecraft:netherrack","id":87},{"name":"minecraft:netherreactor","id":247},{"name":"minecraft:normal_stone_stairs","id":-180},{"name":"minecraft:noteblock","id":25},{"name":"minecraft:npc_spawn_egg","id":475},{"name":"minecraft:oak_boat","id":379},{"name":"minecraft:oak_chest_boat","id":649},{"name":"minecraft:oak_double_slab","id":157},{"name":"minecraft:oak_fence","id":85},{"name":"minecraft:oak_hanging_sign","id":-500},{"name":"minecraft:oak_leaves","id":18},{"name":"minecraft:oak_log","id":17},{"name":"minecraft:oak_planks","id":5},{"name":"minecraft:oak_sign","id":361},{"name":"minecraft:oak_slab","id":158},{"name":"minecraft:oak_stairs","id":53},{"name":"minecraft:oak_wood","id":-212},{"name":"minecraft:observer","id":251},{"name":"minecraft:obsidian","id":49},{"name":"minecraft:ocelot_spawn_egg","id":455},{"name":"minecraft:ochre_froglight","id":-471},{"name":"minecraft:orange_candle","id":-414},{"name":"minecraft:orange_candle_cake","id":-431},{"name":"minecraft:orange_carpet","id":-597},{"name":"minecraft:orange_concrete","id":-628},{"name":"minecraft:orange_concrete_powder","id":-709},{"name":"minecraft:orange_dye","id":413},{"name":"minecraft:orange_glazed_terracotta","id":221},{"name":"minecraft:orange_shulker_box","id":-613},{"name":"minecraft:orange_stained_glass","id":-673},{"name":"minecraft:orange_stained_glass_pane","id":-643},{"name":"minecraft:orange_terracotta","id":-724},{"name":"minecraft:orange_wool","id":-557},{"name":"minecraft:oxidized_chiseled_copper","id":-763},{"name":"minecraft:oxidized_copper","id":-343},{"name":"minecraft:oxidized_copper_bulb","id":-779},{"name":"minecraft:oxidized_copper_door","id":-787},{"name":"minecraft:oxidized_copper_grate","id":-771},{"name":"minecraft:oxidized_copper_trapdoor","id":-795},{"name":"minecraft:oxidized_cut_copper","id":-350},{"name":"minecraft:oxidized_cut_copper_slab","id":-364},{"name":"minecraft:oxidized_cut_copper_stairs","id":-357},{"name":"minecraft:oxidized_double_cut_copper_slab","id":-371},{"name":"minecraft:packed_ice","id":174},{"name":"minecraft:packed_mud","id":-477},{"name":"minecraft:painting","id":360},{"name":"minecraft:panda_spawn_egg","id":494},{"name":"minecraft:paper","id":390},{"name":"minecraft:parrot_spawn_egg","id":483},{"name":"minecraft:pearlescent_froglight","id":-469},{"name":"minecraft:phantom_membrane","id":585},{"name":"minecraft:phantom_spawn_egg","id":491},{"name":"minecraft:pig_spawn_egg","id":441},{"name":"minecraft:piglin_banner_pattern","id":598},{"name":"minecraft:piglin_brute_spawn_egg","id":504},{"name":"minecraft:piglin_spawn_egg","id":502},{"name":"minecraft:pillager_spawn_egg","id":496},{"name":"minecraft:pink_candle","id":-419},{"name":"minecraft:pink_candle_cake","id":-436},{"name":"minecraft:pink_carpet","id":-602},{"name":"minecraft:pink_concrete","id":-633},{"name":"minecraft:pink_concrete_powder","id":-714},{"name":"minecraft:pink_dye","id":408},{"name":"minecraft:pink_glazed_terracotta","id":226},{"name":"minecraft:pink_petals","id":-549},{"name":"minecraft:pink_shulker_box","id":-618},{"name":"minecraft:pink_stained_glass","id":-678},{"name":"minecraft:pink_stained_glass_pane","id":-648},{"name":"minecraft:pink_terracotta","id":-729},{"name":"minecraft:pink_wool","id":-566},{"name":"minecraft:piston","id":33},{"name":"minecraft:piston_arm_collision","id":34},{"name":"minecraft:pitcher_crop","id":-574},{"name":"minecraft:pitcher_plant","id":-612},{"name":"minecraft:pitcher_pod","id":298},{"name":"minecraft:planks","id":718},{"name":"minecraft:plenty_pottery_sherd","id":681},{"name":"minecraft:podzol","id":243},{"name":"minecraft:pointed_dripstone","id":-308},{"name":"minecraft:poisonous_potato","id":283},{"name":"minecraft:polar_bear_spawn_egg","id":477},{"name":"minecraft:polished_andesite","id":-595},{"name":"minecraft:polished_andesite_stairs","id":-174},{"name":"minecraft:polished_basalt","id":-235},{"name":"minecraft:polished_blackstone","id":-291},{"name":"minecraft:polished_blackstone_brick_double_slab","id":-285},{"name":"minecraft:polished_blackstone_brick_slab","id":-284},{"name":"minecraft:polished_blackstone_brick_stairs","id":-275},{"name":"minecraft:polished_blackstone_brick_wall","id":-278},{"name":"minecraft:polished_blackstone_bricks","id":-274},{"name":"minecraft:polished_blackstone_button","id":-296},{"name":"minecraft:polished_blackstone_double_slab","id":-294},{"name":"minecraft:polished_blackstone_pressure_plate","id":-295},{"name":"minecraft:polished_blackstone_slab","id":-293},{"name":"minecraft:polished_blackstone_stairs","id":-292},{"name":"minecraft:polished_blackstone_wall","id":-297},{"name":"minecraft:polished_deepslate","id":-383},{"name":"minecraft:polished_deepslate_double_slab","id":-397},{"name":"minecraft:polished_deepslate_slab","id":-384},{"name":"minecraft:polished_deepslate_stairs","id":-385},{"name":"minecraft:polished_deepslate_wall","id":-386},{"name":"minecraft:polished_diorite","id":-593},{"name":"minecraft:polished_diorite_stairs","id":-173},{"name":"minecraft:polished_granite","id":-591},{"name":"minecraft:polished_granite_stairs","id":-172},{"name":"minecraft:polished_tuff","id":-748},{"name":"minecraft:polished_tuff_double_slab","id":-750},{"name":"minecraft:polished_tuff_slab","id":-749},{"name":"minecraft:polished_tuff_stairs","id":-751},{"name":"minecraft:polished_tuff_wall","id":-752},{"name":"minecraft:popped_chorus_fruit","id":570},{"name":"minecraft:porkchop","id":263},{"name":"minecraft:portal","id":90},{"name":"minecraft:potato","id":281},{"name":"minecraft:potatoes","id":142},{"name":"minecraft:potion","id":430},{"name":"minecraft:powder_snow","id":-306},{"name":"minecraft:powder_snow_bucket","id":371},{"name":"minecraft:powered_comparator","id":150},{"name":"minecraft:powered_repeater","id":94},{"name":"minecraft:prismarine","id":168},{"name":"minecraft:prismarine_bricks_stairs","id":-4},{"name":"minecraft:prismarine_crystals","id":560},{"name":"minecraft:prismarine_shard","id":576},{"name":"minecraft:prismarine_stairs","id":-2},{"name":"minecraft:prize_pottery_sherd","id":682},{"name":"minecraft:pufferfish","id":268},{"name":"minecraft:pufferfish_bucket","id":370},{"name":"minecraft:pufferfish_spawn_egg","id":486},{"name":"minecraft:pumpkin","id":86},{"name":"minecraft:pumpkin_pie","id":285},{"name":"minecraft:pumpkin_seeds","id":293},{"name":"minecraft:pumpkin_stem","id":104},{"name":"minecraft:purple_candle","id":-423},{"name":"minecraft:purple_candle_cake","id":-440},{"name":"minecraft:purple_carpet","id":-606},{"name":"minecraft:purple_concrete","id":-637},{"name":"minecraft:purple_concrete_powder","id":-718},{"name":"minecraft:purple_dye","id":404},{"name":"minecraft:purple_glazed_terracotta","id":219},{"name":"minecraft:purple_shulker_box","id":-622},{"name":"minecraft:purple_stained_glass","id":-682},{"name":"minecraft:purple_stained_glass_pane","id":-652},{"name":"minecraft:purple_terracotta","id":-733},{"name":"minecraft:purple_wool","id":-564},{"name":"minecraft:purpur_block","id":201},{"name":"minecraft:purpur_stairs","id":203},{"name":"minecraft:quartz","id":535},{"name":"minecraft:quartz_block","id":155},{"name":"minecraft:quartz_bricks","id":-304},{"name":"minecraft:quartz_ore","id":153},{"name":"minecraft:quartz_stairs","id":156},{"name":"minecraft:rabbit","id":289},{"name":"minecraft:rabbit_foot","id":539},{"name":"minecraft:rabbit_hide","id":540},{"name":"minecraft:rabbit_spawn_egg","id":463},{"name":"minecraft:rabbit_stew","id":291},{"name":"minecraft:rail","id":66},{"name":"minecraft:raiser_armor_trim_smithing_template","id":702},{"name":"minecraft:rapid_fertilizer","id":608},{"name":"minecraft:ravager_spawn_egg","id":498},{"name":"minecraft:raw_copper","id":518},{"name":"minecraft:raw_copper_block","id":-452},{"name":"minecraft:raw_gold","id":517},{"name":"minecraft:raw_gold_block","id":-453},{"name":"minecraft:raw_iron","id":516},{"name":"minecraft:raw_iron_block","id":-451},{"name":"minecraft:recovery_compass","id":657},{"name":"minecraft:red_candle","id":-427},{"name":"minecraft:red_candle_cake","id":-444},{"name":"minecraft:red_carpet","id":-610},{"name":"minecraft:red_concrete","id":-641},{"name":"minecraft:red_concrete_powder","id":-722},{"name":"minecraft:red_dye","id":400},{"name":"minecraft:red_flower","id":38},{"name":"minecraft:red_glazed_terracotta","id":234},{"name":"minecraft:red_mushroom","id":40},{"name":"minecraft:red_mushroom_block","id":100},{"name":"minecraft:red_nether_brick","id":215},{"name":"minecraft:red_nether_brick_stairs","id":-184},{"name":"minecraft:red_sandstone","id":179},{"name":"minecraft:red_sandstone_stairs","id":180},{"name":"minecraft:red_shulker_box","id":-626},{"name":"minecraft:red_stained_glass","id":-686},{"name":"minecraft:red_stained_glass_pane","id":-656},{"name":"minecraft:red_terracotta","id":-737},{"name":"minecraft:red_wool","id":-556},{"name":"minecraft:redstone","id":376},{"name":"minecraft:redstone_block","id":152},{"name":"minecraft:redstone_lamp","id":123},{"name":"minecraft:redstone_ore","id":73},{"name":"minecraft:redstone_torch","id":76},{"name":"minecraft:redstone_wire","id":55},{"name":"minecraft:reinforced_deepslate","id":-466},{"name":"minecraft:repeater","id":423},{"name":"minecraft:repeating_command_block","id":188},{"name":"minecraft:reserved6","id":255},{"name":"minecraft:respawn_anchor","id":-272},{"name":"minecraft:rib_armor_trim_smithing_template","id":698},{"name":"minecraft:rotten_flesh","id":278},{"name":"minecraft:saddle","id":374},{"name":"minecraft:salmon","id":266},{"name":"minecraft:salmon_bucket","id":368},{"name":"minecraft:salmon_spawn_egg","id":487},{"name":"minecraft:sand","id":12},{"name":"minecraft:sandstone","id":24},{"name":"minecraft:sandstone_stairs","id":128},{"name":"minecraft:sapling","id":6},{"name":"minecraft:scaffolding","id":-165},{"name":"minecraft:sculk","id":-458},{"name":"minecraft:sculk_catalyst","id":-460},{"name":"minecraft:sculk_sensor","id":-307},{"name":"minecraft:sculk_shrieker","id":-461},{"name":"minecraft:sculk_vein","id":-459},{"name":"minecraft:sea_lantern","id":169},{"name":"minecraft:sea_pickle","id":-156},{"name":"minecraft:seagrass","id":-130},{"name":"minecraft:sentry_armor_trim_smithing_template","id":689},{"name":"minecraft:shaper_armor_trim_smithing_template","id":703},{"name":"minecraft:sheaf_pottery_sherd","id":683},{"name":"minecraft:shears","id":425},{"name":"minecraft:sheep_spawn_egg","id":442},{"name":"minecraft:shelter_pottery_sherd","id":684},{"name":"minecraft:shield","id":358},{"name":"minecraft:shroomlight","id":-230},{"name":"minecraft:shulker_box","id":725},{"name":"minecraft:shulker_shell","id":577},{"name":"minecraft:shulker_spawn_egg","id":474},{"name":"minecraft:silence_armor_trim_smithing_template","id":700},{"name":"minecraft:silver_glazed_terracotta","id":228},{"name":"minecraft:silverfish_spawn_egg","id":447},{"name":"minecraft:skeleton_horse_spawn_egg","id":472},{"name":"minecraft:skeleton_spawn_egg","id":448},{"name":"minecraft:skull","id":527},{"name":"minecraft:skull_banner_pattern","id":594},{"name":"minecraft:skull_pottery_sherd","id":685},{"name":"minecraft:slime","id":165},{"name":"minecraft:slime_ball","id":392},{"name":"minecraft:slime_spawn_egg","id":449},{"name":"minecraft:small_amethyst_bud","id":-332},{"name":"minecraft:small_dripleaf_block","id":-336},{"name":"minecraft:smithing_table","id":-202},{"name":"minecraft:smoker","id":-198},{"name":"minecraft:smooth_basalt","id":-377},{"name":"minecraft:smooth_quartz_stairs","id":-185},{"name":"minecraft:smooth_red_sandstone_stairs","id":-176},{"name":"minecraft:smooth_sandstone_stairs","id":-177},{"name":"minecraft:smooth_stone","id":-183},{"name":"minecraft:sniffer_egg","id":-596},{"name":"minecraft:sniffer_spawn_egg","id":505},{"name":"minecraft:snort_pottery_sherd","id":686},{"name":"minecraft:snout_armor_trim_smithing_template","id":697},{"name":"minecraft:snow","id":80},{"name":"minecraft:snow_golem_spawn_egg","id":511},{"name":"minecraft:snow_layer","id":78},{"name":"minecraft:snowball","id":377},{"name":"minecraft:soul_campfire","id":633},{"name":"minecraft:soul_fire","id":-237},{"name":"minecraft:soul_lantern","id":-269},{"name":"minecraft:soul_sand","id":88},{"name":"minecraft:soul_soil","id":-236},{"name":"minecraft:soul_torch","id":-268},{"name":"minecraft:sparkler","id":611},{"name":"minecraft:spawn_egg","id":732},{"name":"minecraft:spider_eye","id":279},{"name":"minecraft:spider_spawn_egg","id":450},{"name":"minecraft:spire_armor_trim_smithing_template","id":699},{"name":"minecraft:splash_potion","id":572},{"name":"minecraft:sponge","id":19},{"name":"minecraft:spore_blossom","id":-321},{"name":"minecraft:spruce_boat","id":382},{"name":"minecraft:spruce_button","id":-144},{"name":"minecraft:spruce_chest_boat","id":652},{"name":"minecraft:spruce_door","id":564},{"name":"minecraft:spruce_double_slab","id":-809},{"name":"minecraft:spruce_fence","id":-579},{"name":"minecraft:spruce_fence_gate","id":183},{"name":"minecraft:spruce_hanging_sign","id":-501},{"name":"minecraft:spruce_leaves","id":-800},{"name":"minecraft:spruce_log","id":-569},{"name":"minecraft:spruce_planks","id":-739},{"name":"minecraft:spruce_pressure_plate","id":-154},{"name":"minecraft:spruce_sign","id":587},{"name":"minecraft:spruce_slab","id":-804},{"name":"minecraft:spruce_stairs","id":134},{"name":"minecraft:spruce_standing_sign","id":-181},{"name":"minecraft:spruce_trapdoor","id":-149},{"name":"minecraft:spruce_wall_sign","id":-182},{"name":"minecraft:spruce_wood","id":-814},{"name":"minecraft:spyglass","id":636},{"name":"minecraft:squid_spawn_egg","id":454},{"name":"minecraft:stained_glass","id":723},{"name":"minecraft:stained_glass_pane","id":724},{"name":"minecraft:stained_hardened_clay","id":706},{"name":"minecraft:standing_banner","id":176},{"name":"minecraft:standing_sign","id":63},{"name":"minecraft:stick","id":323},{"name":"minecraft:sticky_piston","id":29},{"name":"minecraft:sticky_piston_arm_collision","id":-217},{"name":"minecraft:stone","id":1},{"name":"minecraft:stone_axe","id":318},{"name":"minecraft:stone_block_slab","id":44},{"name":"minecraft:stone_block_slab2","id":182},{"name":"minecraft:stone_block_slab3","id":-162},{"name":"minecraft:stone_block_slab4","id":-166},{"name":"minecraft:stone_brick_stairs","id":109},{"name":"minecraft:stone_button","id":77},{"name":"minecraft:stone_hoe","id":333},{"name":"minecraft:stone_pickaxe","id":317},{"name":"minecraft:stone_pressure_plate","id":70},{"name":"minecraft:stone_shovel","id":316},{"name":"minecraft:stone_stairs","id":67},{"name":"minecraft:stone_sword","id":315},{"name":"minecraft:stonebrick","id":98},{"name":"minecraft:stonecutter","id":245},{"name":"minecraft:stonecutter_block","id":-197},{"name":"minecraft:stray_spawn_egg","id":466},{"name":"minecraft:strider_spawn_egg","id":500},{"name":"minecraft:string","id":329},{"name":"minecraft:stripped_acacia_log","id":-8},{"name":"minecraft:stripped_acacia_wood","id":-823},{"name":"minecraft:stripped_bamboo_block","id":-528},{"name":"minecraft:stripped_birch_log","id":-6},{"name":"minecraft:stripped_birch_wood","id":-821},{"name":"minecraft:stripped_cherry_log","id":-535},{"name":"minecraft:stripped_cherry_wood","id":-545},{"name":"minecraft:stripped_crimson_hyphae","id":-300},{"name":"minecraft:stripped_crimson_stem","id":-240},{"name":"minecraft:stripped_dark_oak_log","id":-9},{"name":"minecraft:stripped_dark_oak_wood","id":-824},{"name":"minecraft:stripped_jungle_log","id":-7},{"name":"minecraft:stripped_jungle_wood","id":-822},{"name":"minecraft:stripped_mangrove_log","id":-485},{"name":"minecraft:stripped_mangrove_wood","id":-498},{"name":"minecraft:stripped_oak_log","id":-10},{"name":"minecraft:stripped_oak_wood","id":-819},{"name":"minecraft:stripped_spruce_log","id":-5},{"name":"minecraft:stripped_spruce_wood","id":-820},{"name":"minecraft:stripped_warped_hyphae","id":-301},{"name":"minecraft:stripped_warped_stem","id":-241},{"name":"minecraft:structure_block","id":252},{"name":"minecraft:structure_void","id":217},{"name":"minecraft:sugar","id":420},{"name":"minecraft:sugar_cane","id":389},{"name":"minecraft:suspicious_gravel","id":-573},{"name":"minecraft:suspicious_sand","id":-529},{"name":"minecraft:suspicious_stew","id":601},{"name":"minecraft:sweet_berries","id":288},{"name":"minecraft:sweet_berry_bush","id":-207},{"name":"minecraft:tadpole_bucket","id":641},{"name":"minecraft:tadpole_spawn_egg","id":640},{"name":"minecraft:tallgrass","id":31},{"name":"minecraft:target","id":-239},{"name":"minecraft:tide_armor_trim_smithing_template","id":696},{"name":"minecraft:tinted_glass","id":-334},{"name":"minecraft:tnt","id":46},{"name":"minecraft:tnt_minecart","id":536},{"name":"minecraft:torch","id":50},{"name":"minecraft:torchflower","id":-568},{"name":"minecraft:torchflower_crop","id":-567},{"name":"minecraft:torchflower_seeds","id":297},{"name":"minecraft:totem_of_undying","id":579},{"name":"minecraft:trader_llama_spawn_egg","id":659},{"name":"minecraft:trapdoor","id":96},{"name":"minecraft:trapped_chest","id":146},{"name":"minecraft:trial_key","id":707},{"name":"minecraft:trial_spawner","id":-315},{"name":"minecraft:trident","id":557},{"name":"minecraft:trip_wire","id":132},{"name":"minecraft:tripwire_hook","id":131},{"name":"minecraft:tropical_fish","id":267},{"name":"minecraft:tropical_fish_bucket","id":369},{"name":"minecraft:tropical_fish_spawn_egg","id":484},{"name":"minecraft:tube_coral","id":-131},{"name":"minecraft:tuff","id":-333},{"name":"minecraft:tuff_brick_double_slab","id":-756},{"name":"minecraft:tuff_brick_slab","id":-755},{"name":"minecraft:tuff_brick_stairs","id":-757},{"name":"minecraft:tuff_brick_wall","id":-758},{"name":"minecraft:tuff_bricks","id":-754},{"name":"minecraft:tuff_double_slab","id":-745},{"name":"minecraft:tuff_slab","id":-744},{"name":"minecraft:tuff_stairs","id":-746},{"name":"minecraft:tuff_wall","id":-747},{"name":"minecraft:turtle_egg","id":-159},{"name":"minecraft:turtle_helmet","id":584},{"name":"minecraft:turtle_scute","id":583},{"name":"minecraft:turtle_spawn_egg","id":490},{"name":"minecraft:twisting_vines","id":-287},{"name":"minecraft:underwater_torch","id":239},{"name":"minecraft:undyed_shulker_box","id":205},{"name":"minecraft:unknown","id":-305},{"name":"minecraft:unlit_redstone_torch","id":75},{"name":"minecraft:unpowered_comparator","id":149},{"name":"minecraft:unpowered_repeater","id":93},{"name":"minecraft:vault","id":-314},{"name":"minecraft:verdant_froglight","id":-470},{"name":"minecraft:vex_armor_trim_smithing_template","id":695},{"name":"minecraft:vex_spawn_egg","id":481},{"name":"minecraft:villager_spawn_egg","id":453},{"name":"minecraft:vindicator_spawn_egg","id":479},{"name":"minecraft:vine","id":106},{"name":"minecraft:wall_banner","id":177},{"name":"minecraft:wall_sign","id":68},{"name":"minecraft:wandering_trader_spawn_egg","id":497},{"name":"minecraft:ward_armor_trim_smithing_template","id":693},{"name":"minecraft:warden_spawn_egg","id":643},{"name":"minecraft:warped_button","id":-261},{"name":"minecraft:warped_door","id":628},{"name":"minecraft:warped_double_slab","id":-267},{"name":"minecraft:warped_fence","id":-257},{"name":"minecraft:warped_fence_gate","id":-259},{"name":"minecraft:warped_fungus","id":-229},{"name":"minecraft:warped_fungus_on_a_stick","id":629},{"name":"minecraft:warped_hanging_sign","id":-507},{"name":"minecraft:warped_hyphae","id":-298},{"name":"minecraft:warped_nylium","id":-233},{"name":"minecraft:warped_planks","id":-243},{"name":"minecraft:warped_pressure_plate","id":-263},{"name":"minecraft:warped_roots","id":-224},{"name":"minecraft:warped_sign","id":626},{"name":"minecraft:warped_slab","id":-265},{"name":"minecraft:warped_stairs","id":-255},{"name":"minecraft:warped_standing_sign","id":-251},{"name":"minecraft:warped_stem","id":-226},{"name":"minecraft:warped_trapdoor","id":-247},{"name":"minecraft:warped_wall_sign","id":-253},{"name":"minecraft:warped_wart_block","id":-227},{"name":"minecraft:water","id":9},{"name":"minecraft:water_bucket","id":365},{"name":"minecraft:waterlily","id":111},{"name":"minecraft:waxed_chiseled_copper","id":-764},{"name":"minecraft:waxed_copper","id":-344},{"name":"minecraft:waxed_copper_bulb","id":-780},{"name":"minecraft:waxed_copper_door","id":-788},{"name":"minecraft:waxed_copper_grate","id":-772},{"name":"minecraft:waxed_copper_trapdoor","id":-796},{"name":"minecraft:waxed_cut_copper","id":-351},{"name":"minecraft:waxed_cut_copper_slab","id":-365},{"name":"minecraft:waxed_cut_copper_stairs","id":-358},{"name":"minecraft:waxed_double_cut_copper_slab","id":-372},{"name":"minecraft:waxed_exposed_chiseled_copper","id":-765},{"name":"minecraft:waxed_exposed_copper","id":-345},{"name":"minecraft:waxed_exposed_copper_bulb","id":-781},{"name":"minecraft:waxed_exposed_copper_door","id":-789},{"name":"minecraft:waxed_exposed_copper_grate","id":-773},{"name":"minecraft:waxed_exposed_copper_trapdoor","id":-797},{"name":"minecraft:waxed_exposed_cut_copper","id":-352},{"name":"minecraft:waxed_exposed_cut_copper_slab","id":-366},{"name":"minecraft:waxed_exposed_cut_copper_stairs","id":-359},{"name":"minecraft:waxed_exposed_double_cut_copper_slab","id":-373},{"name":"minecraft:waxed_oxidized_chiseled_copper","id":-766},{"name":"minecraft:waxed_oxidized_copper","id":-446},{"name":"minecraft:waxed_oxidized_copper_bulb","id":-783},{"name":"minecraft:waxed_oxidized_copper_door","id":-791},{"name":"minecraft:waxed_oxidized_copper_grate","id":-775},{"name":"minecraft:waxed_oxidized_copper_trapdoor","id":-799},{"name":"minecraft:waxed_oxidized_cut_copper","id":-447},{"name":"minecraft:waxed_oxidized_cut_copper_slab","id":-449},{"name":"minecraft:waxed_oxidized_cut_copper_stairs","id":-448},{"name":"minecraft:waxed_oxidized_double_cut_copper_slab","id":-450},{"name":"minecraft:waxed_weathered_chiseled_copper","id":-767},{"name":"minecraft:waxed_weathered_copper","id":-346},{"name":"minecraft:waxed_weathered_copper_bulb","id":-782},{"name":"minecraft:waxed_weathered_copper_door","id":-790},{"name":"minecraft:waxed_weathered_copper_grate","id":-774},{"name":"minecraft:waxed_weathered_copper_trapdoor","id":-798},{"name":"minecraft:waxed_weathered_cut_copper","id":-353},{"name":"minecraft:waxed_weathered_cut_copper_slab","id":-367},{"name":"minecraft:waxed_weathered_cut_copper_stairs","id":-360},{"name":"minecraft:waxed_weathered_double_cut_copper_slab","id":-374},{"name":"minecraft:wayfinder_armor_trim_smithing_template","id":701},{"name":"minecraft:weathered_chiseled_copper","id":-762},{"name":"minecraft:weathered_copper","id":-342},{"name":"minecraft:weathered_copper_bulb","id":-778},{"name":"minecraft:weathered_copper_door","id":-786},{"name":"minecraft:weathered_copper_grate","id":-770},{"name":"minecraft:weathered_copper_trapdoor","id":-794},{"name":"minecraft:weathered_cut_copper","id":-349},{"name":"minecraft:weathered_cut_copper_slab","id":-363},{"name":"minecraft:weathered_cut_copper_stairs","id":-356},{"name":"minecraft:weathered_double_cut_copper_slab","id":-370},{"name":"minecraft:web","id":30},{"name":"minecraft:weeping_vines","id":-231},{"name":"minecraft:wheat","id":337},{"name":"minecraft:wheat_seeds","id":292},{"name":"minecraft:white_candle","id":-413},{"name":"minecraft:white_candle_cake","id":-430},{"name":"minecraft:white_carpet","id":171},{"name":"minecraft:white_concrete","id":236},{"name":"minecraft:white_concrete_powder","id":237},{"name":"minecraft:white_dye","id":414},{"name":"minecraft:white_glazed_terracotta","id":220},{"name":"minecraft:white_shulker_box","id":218},{"name":"minecraft:white_stained_glass","id":241},{"name":"minecraft:white_stained_glass_pane","id":160},{"name":"minecraft:white_terracotta","id":159},{"name":"minecraft:white_wool","id":35},{"name":"minecraft:wild_armor_trim_smithing_template","id":692},{"name":"minecraft:wind_charge","id":378},{"name":"minecraft:witch_spawn_egg","id":456},{"name":"minecraft:wither_rose","id":-216},{"name":"minecraft:wither_skeleton_spawn_egg","id":469},{"name":"minecraft:wither_spawn_egg","id":513},{"name":"minecraft:wolf_armor","id":710},{"name":"minecraft:wolf_spawn_egg","id":443},{"name":"minecraft:wood","id":726},{"name":"minecraft:wooden_axe","id":314},{"name":"minecraft:wooden_button","id":143},{"name":"minecraft:wooden_door","id":362},{"name":"minecraft:wooden_hoe","id":332},{"name":"minecraft:wooden_pickaxe","id":313},{"name":"minecraft:wooden_pressure_plate","id":72},{"name":"minecraft:wooden_shovel","id":312},{"name":"minecraft:wooden_slab","id":717},{"name":"minecraft:wooden_sword","id":311},{"name":"minecraft:wool","id":711},{"name":"minecraft:writable_book","id":521},{"name":"minecraft:written_book","id":522},{"name":"minecraft:yellow_candle","id":-417},{"name":"minecraft:yellow_candle_cake","id":-434},{"name":"minecraft:yellow_carpet","id":-600},{"name":"minecraft:yellow_concrete","id":-631},{"name":"minecraft:yellow_concrete_powder","id":-712},{"name":"minecraft:yellow_dye","id":410},{"name":"minecraft:yellow_flower","id":37},{"name":"minecraft:yellow_glazed_terracotta","id":224},{"name":"minecraft:yellow_shulker_box","id":-616},{"name":"minecraft:yellow_stained_glass","id":-676},{"name":"minecraft:yellow_stained_glass_pane","id":-646},{"name":"minecraft:yellow_terracotta","id":-727},{"name":"minecraft:yellow_wool","id":-558},{"name":"minecraft:zoglin_spawn_egg","id":503},{"name":"minecraft:zombie_horse_spawn_egg","id":473},{"name":"minecraft:zombie_pigman_spawn_egg","id":452},{"name":"minecraft:zombie_spawn_egg","id":451},{"name":"minecraft:zombie_villager_spawn_egg","id":482}] \ No newline at end of file